Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/arch/x86/cpu/intel_common/
H A Dcar.S104 andl $(~(X86_CR0_CD | X86_CR0_NW)), %eax
131 orl $X86_CR0_CD, %eax
163 andl $(~(X86_CR0_CD | X86_CR0_NW)), %eax
181 orl $X86_CR0_CD, %eax
/OK3568_Linux_fs/u-boot/arch/x86/cpu/
H A Dsipi_vector.S56 orl $(X86_CR0_NW | X86_CR0_CD | X86_CR0_PE), %eax
188 andl $(~(X86_CR0_CD | X86_CR0_NW)), %eax
H A Dstart16.S35 orl $(X86_CR0_NW | X86_CR0_CD), %eax
H A Dstart.S39 orl $(X86_CR0_NW | X86_CR0_CD), %eax
/OK3568_Linux_fs/u-boot/arch/x86/cpu/i386/
H A Dcpu.c392 cr0 &= ~(X86_CR0_NW | X86_CR0_CD); in x86_enable_caches()
403 cr0 |= X86_CR0_NW | X86_CR0_CD; in x86_disable_caches()
412 return !(read_cr0() & X86_CR0_CD); in dcache_status()
/OK3568_Linux_fs/kernel/arch/x86/kernel/cpu/mtrr/
H A Dcyrix.c151 cr0 = read_cr0() | X86_CR0_CD; in prepare_set()
172 write_cr0(read_cr0() & ~X86_CR0_CD); in post_set()
H A Dgeneric.c744 cr0 = read_cr0() | X86_CR0_CD; in prepare_set()
787 write_cr0(read_cr0() & ~X86_CR0_CD); in post_set()
/OK3568_Linux_fs/u-boot/arch/x86/include/asm/
H A Dprocessor-flags.h38 #define X86_CR0_CD 0x40000000 /* Cache Disable */ macro
/OK3568_Linux_fs/kernel/drivers/edac/
H A Damd64_edac.h512 write_cr0(read_cr0() | X86_CR0_CD); in disable_caches()
518 write_cr0(read_cr0() & ~X86_CR0_CD); in enable_caches()
/OK3568_Linux_fs/kernel/arch/x86/include/uapi/asm/
H A Dprocessor-flags.h70 #define X86_CR0_CD _BITUL(X86_CR0_CD_BIT) macro
/OK3568_Linux_fs/kernel/drivers/cpufreq/
H A Dpowernow-k6.c115 write_cr0(cr0 | X86_CR0_CD); in powernow_k6_set_cpu_multiplier()
/OK3568_Linux_fs/kernel/tools/testing/selftests/kvm/include/x86_64/
H A Dprocessor.h389 #define X86_CR0_CD (1UL<<30) /* Cache Disable */ macro
/OK3568_Linux_fs/kernel/arch/x86/kvm/svm/
H A Dnested.c267 if (((vmcb12->save.cr0 & X86_CR0_CD) == 0) && (vmcb12->save.cr0 & X86_CR0_NW)) in nested_vmcb_check_save()
1221 if (((cr0 & X86_CR0_CD) == 0) && (cr0 & X86_CR0_NW)) in svm_set_nested_state()
H A Dsvm.c1200 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET); in init_vmcb()
1684 cr0 &= ~(X86_CR0_CD | X86_CR0_NW); in svm_set_cr0()
/OK3568_Linux_fs/kernel/arch/x86/include/asm/
H A Dkvm_host.h95 | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG))
/OK3568_Linux_fs/kernel/arch/x86/kvm/vmx/
H A Dvmx.c135 #define KVM_VM_CR0_ALWAYS_OFF (X86_CR0_NW | X86_CR0_CD)
4564 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET; in vmx_vcpu_reset()
7198 if (kvm_read_cr0(vcpu) & X86_CR0_CD) { in vmx_get_mt_mask()
/OK3568_Linux_fs/kernel/arch/x86/kvm/
H A Dx86.c831 unsigned long pdptr_bits = X86_CR0_CD | X86_CR0_NW | X86_CR0_PG; in kvm_set_cr0()
843 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD)) in kvm_set_cr0()
879 if (((cr0 ^ old_cr0) & X86_CR0_CD) && in kvm_set_cr0()