Home
last modified time | relevance | path

Searched refs:X86_CR0_CD (Results 1 – 12 of 12) sorted by relevance

/linux-6.1.9/arch/x86/kernel/cpu/mtrr/
Dcyrix.c151 cr0 = read_cr0() | X86_CR0_CD; in prepare_set()
172 write_cr0(read_cr0() & ~X86_CR0_CD); in post_set()
Dgeneric.c743 cr0 = read_cr0() | X86_CR0_CD; in prepare_set()
786 write_cr0(read_cr0() & ~X86_CR0_CD); in post_set()
/linux-6.1.9/drivers/edac/
Damd64_edac.h529 write_cr0(read_cr0() | X86_CR0_CD); in disable_caches()
535 write_cr0(read_cr0() & ~X86_CR0_CD); in enable_caches()
/linux-6.1.9/arch/x86/include/uapi/asm/
Dprocessor-flags.h70 #define X86_CR0_CD _BITUL(X86_CR0_CD_BIT) macro
/linux-6.1.9/drivers/cpufreq/
Dpowernow-k6.c115 write_cr0(cr0 | X86_CR0_CD); in powernow_k6_set_cpu_multiplier()
/linux-6.1.9/arch/x86/kvm/
Dkvm_cache_regs.h12 #define X86_CR0_PDPTR_BITS (X86_CR0_CD | X86_CR0_NW | X86_CR0_PG)
Dx86.c924 if (((cr0 ^ old_cr0) & X86_CR0_CD) && in kvm_post_set_cr0()
944 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD)) in kvm_set_cr0()
12106 new_cr0 |= (old_cr0 & (X86_CR0_NW | X86_CR0_CD)); in kvm_vcpu_reset()
12108 new_cr0 |= X86_CR0_NW | X86_CR0_CD; in kvm_vcpu_reset()
/linux-6.1.9/tools/testing/selftests/kvm/include/x86_64/
Dprocessor.h888 #define X86_CR0_CD (1UL<<30) /* Cache Disable */ macro
/linux-6.1.9/arch/x86/kvm/svm/
Dnested.c287 if (CC((save->cr0 & X86_CR0_CD) == 0 && (save->cr0 & X86_CR0_NW)) || in __nested_vmcb_check_save()
1630 if (((cr0 & X86_CR0_CD) == 0) && (cr0 & X86_CR0_NW)) in svm_set_nested_state()
Dsvm.c1799 hcr0 &= ~(X86_CR0_CD | X86_CR0_NW); in svm_set_cr0()
/linux-6.1.9/arch/x86/include/asm/
Dkvm_host.h115 | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG))
/linux-6.1.9/arch/x86/kvm/vmx/
Dvmx.c143 #define KVM_VM_CR0_ALWAYS_OFF (X86_CR0_NW | X86_CR0_CD)
7463 if (kvm_read_cr0(vcpu) & X86_CR0_CD) { in vmx_get_mt_mask()