Home
last modified time | relevance | path

Searched refs:X86_CR0_EM (Results 1 – 13 of 13) sorted by relevance

/openbmc/linux/arch/x86/kernel/fpu/
H A Dinit.c33 cr0 &= ~(X86_CR0_TS|X86_CR0_EM); /* clear TS and EM */ in fpu__init_cpu_generic()
35 cr0 |= X86_CR0_EM; in fpu__init_cpu_generic()
64 cr0 &= ~(X86_CR0_TS | X86_CR0_EM); in fpu__probe_without_cpuid()
/openbmc/linux/arch/x86/boot/
H A Dcpuflags.c21 if (cr0 & (X86_CR0_EM|X86_CR0_TS)) { in has_fpu()
22 cr0 &= ~(X86_CR0_EM|X86_CR0_TS); in has_fpu()
/openbmc/u-boot/arch/x86/include/asm/
H A Dprocessor-flags.h31 #define X86_CR0_EM 0x00000004 /* Emulation */ macro
/openbmc/linux/arch/x86/include/uapi/asm/
H A Dprocessor-flags.h56 #define X86_CR0_EM _BITUL(X86_CR0_EM_BIT) macro
/openbmc/u-boot/arch/x86/cpu/
H A Dsipi_vector.S54 X86_CR0_TS | X86_CR0_EM | X86_CR0_MP)), %eax
/openbmc/linux/arch/x86/kernel/
H A Drelocate_kernel_64.S141 andq $~(X86_CR0_AM | X86_CR0_WP | X86_CR0_TS | X86_CR0_EM), %rax
H A Drelocate_kernel_32.S117 andl $~(X86_CR0_PG | X86_CR0_AM | X86_CR0_WP | X86_CR0_TS | X86_CR0_EM), %eax
H A Dtraps.c1292 if (!boot_cpu_has(X86_FEATURE_FPU) && (cr0 & X86_CR0_EM)) { in DEFINE_IDTENTRY()
/openbmc/u-boot/arch/x86/cpu/i386/
H A Dcpu.c314 const u32 em_rst = ~X86_CR0_EM; in x86_cpu_init_f()
/openbmc/linux/arch/x86/kvm/
H A Dsmm.c325 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG); in enter_smm()
H A Demulate.c1095 if (ctxt->ops->get_cr(ctxt, 0) & (X86_CR0_TS | X86_CR0_EM)) in em_fninit()
1108 if (ctxt->ops->get_cr(ctxt, 0) & (X86_CR0_TS | X86_CR0_EM)) in em_fnstcw()
1124 if (ctxt->ops->get_cr(ctxt, 0) & (X86_CR0_TS | X86_CR0_EM)) in em_fnstsw()
3700 if (ctxt->ops->get_cr(ctxt, 0) & (X86_CR0_TS | X86_CR0_EM)) in check_fxsr()
5165 if (((ctxt->d & (Sse|Mmx)) && ((ops->get_cr(ctxt, 0) & X86_CR0_EM))) in x86_emulate_insn()
/openbmc/linux/tools/testing/selftests/kvm/include/x86_64/
H A Dprocessor.h1227 #define X86_CR0_EM (1UL<<2) /* Emulation */ macro
/openbmc/linux/arch/x86/include/asm/
H A Dkvm_host.h118 (~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \