Symbol: cpuid_eax
arch/x86/events/amd/ibs.c
1527
max_level = cpuid_eax(0x80000000);
arch/x86/events/amd/ibs.c
1531
caps = cpuid_eax(IBS_CPUID_FEATURES);
arch/x86/include/asm/acrn.h
35
return cpuid_eax(ACRN_CPUID_TIMING_INFO);
arch/x86/kernel/cpu/amd.c
1208
tlb_lld_2m = (cpuid_eax(0x80000005) >> 16) & 0xff;
arch/x86/kernel/cpu/amd.c
562
if (c->extended_cpuid_level >= 0x8000001f && (cpuid_eax(0x8000001f) & BIT(0)))
arch/x86/kernel/cpu/amd.c
698
level = cpuid_eax(1);
arch/x86/kernel/cpu/bhyve.c
36
bhyve_cpuid_max = cpuid_eax(bhyve_cpuid_base);
arch/x86/kernel/cpu/bhyve.c
47
return cpuid_eax(cpuid_leaf);
arch/x86/kernel/cpu/centaur.c
124
unsigned int eax = cpuid_eax(10);
arch/x86/kernel/cpu/centaur.c
189
if (cpuid_eax(0x80000000) >= 0x80000005) {
arch/x86/kernel/cpu/centaur.c
27
if (cpuid_eax(0xC0000000) >= 0xC0000001) {
arch/x86/kernel/cpu/common.c
1030
c->x86_capability[CPUID_6_EAX] = cpuid_eax(0x00000006);
arch/x86/kernel/cpu/common.c
1057
eax = cpuid_eax(0x80000000);
arch/x86/kernel/cpu/common.c
1079
c->x86_capability[CPUID_8000_001F_EAX] = cpuid_eax(0x8000001f);
arch/x86/kernel/cpu/common.c
1082
c->x86_capability[CPUID_8000_0021_EAX] = cpuid_eax(0x80000021);
arch/x86/kernel/cpu/common.c
2528
curr_info->cpuid_level = cpuid_eax(0);
arch/x86/kernel/cpu/common.c
356
c->cpuid_level = cpuid_eax(0);
arch/x86/kernel/cpu/hygon.c
246
tlb_lld_2m = (cpuid_eax(0x80000005) >> 16) & 0xff;
arch/x86/kernel/cpu/intel.c
199
c->cpuid_level = cpuid_eax(0);
arch/x86/kernel/cpu/intel.c
543
unsigned eax = cpuid_eax(10);
arch/x86/kernel/cpu/mce/core.c
123
m->cpuid = cpuid_eax(1);
arch/x86/kernel/cpu/mce/inject.c
122
m->cpuid = cpuid_eax(1);
arch/x86/kernel/cpu/microcode/amd.c
956
csig->sig = cpuid_eax(0x00000001);
arch/x86/kernel/cpu/microcode/intel.c
125
sig->sig = cpuid_eax(1);
arch/x86/kernel/cpu/mshyperv.c
355
eax = cpuid_eax(HYPERV_CPUID_FEATURES);
arch/x86/kernel/cpu/mshyperv.c
469
hv_max_functions = cpuid_eax(HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS);
arch/x86/kernel/cpu/mshyperv.c
515
ms_hyperv.features = cpuid_eax(HYPERV_CPUID_FEATURES);
arch/x86/kernel/cpu/mshyperv.c
519
ms_hyperv.hints = cpuid_eax(HYPERV_CPUID_ENLIGHTMENT_INFO);
arch/x86/kernel/cpu/mshyperv.c
521
hv_max_functions_eax = cpuid_eax(HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS);
arch/x86/kernel/cpu/mshyperv.c
528
ms_hyperv.max_vp_index = cpuid_eax(HYPERV_CPUID_IMPLEMENT_LIMITS);
arch/x86/kernel/cpu/mshyperv.c
554
eax = cpuid_eax(HYPERV_CPUID_VIRT_STACK_PROPERTIES);
arch/x86/kernel/cpu/mshyperv.c
568
ms_hyperv.isolation_config_a = cpuid_eax(HYPERV_CPUID_ISOLATION_CONFIG);
arch/x86/kernel/cpu/mshyperv.c
621
cpuid_eax(HYPERV_CPUID_NESTED_FEATURES);
arch/x86/kernel/cpu/scattered.c
81
max_level = cpuid_eax(cb->level & 0xffff0000);
arch/x86/kernel/cpu/topology_common.c
171
c->topo.cpu_type = cpuid_eax(0x1a);
arch/x86/kernel/cpu/transmeta.c
15
xlvl = cpuid_eax(0x80860000);
arch/x86/kernel/cpu/transmeta.c
34
max = cpuid_eax(0x80860000);
arch/x86/kernel/cpu/zhaoxin.c
26
if (cpuid_eax(0xC0000000) >= 0xC0000001) {
arch/x86/kernel/cpu/zhaoxin.c
75
unsigned int eax = cpuid_eax(10);
arch/x86/kernel/kvm.c
921
return cpuid_eax(kvm_cpuid_base() | KVM_CPUID_FEATURES);
arch/x86/kvm/cpuid.c
1351
WRITE_ONCE(max_cpuid_80000000, cpuid_eax(0x80000000));
arch/x86/kvm/cpuid.c
689
if (cpuid_eax(base) < cpuid.function)
arch/x86/kvm/mmu/spte.c
57
return cpuid_eax(0x80000008) & 0xff;
arch/x86/kvm/svm/svm.c
5282
if (cpuid_eax(0x80000000) < 0x8000001f)
arch/x86/kvm/vmx/vmx.c
2684
return cpuid_eax(0) >= 0x12 && (cpuid_eax(0x12) & BIT(0));
arch/x86/kvm/vmx/vmx.c
747
u32 eax = cpuid_eax(0x00000001), i;
arch/x86/pci/xen.c
523
uint32_t eax = cpuid_eax(xen_cpuid_base() + 4);
arch/x86/virt/svm/sev.c
625
eax = cpuid_eax(0x80000025);
arch/x86/xen/enlighten_hvm.c
262
return cpuid_eax(xen_cpuid_base() + 4) & XEN_HVM_CPUID_EXT_DEST_ID;
arch/x86/xen/enlighten_hvm.c
98
eax = cpuid_eax(base + 1);
arch/x86/xen/enlighten_pv.c
185
eax = cpuid_eax(0x80000000);
arch/x86/xen/enlighten_pv.c
187
eax = cpuid_eax(0x80000008);
drivers/cpufreq/powernow-k7.c
126
maxei = cpuid_eax(0x80000000);
drivers/cpufreq/powernow-k7.c
456
etuple = cpuid_eax(0x80000001);
drivers/cpufreq/powernow-k8.c
467
eax = cpuid_eax(CPUID_PROCESSOR_SIGNATURE);
drivers/cpufreq/powernow-k8.c
476
eax = cpuid_eax(CPUID_GET_MAX_CAPABILITIES);
drivers/cpufreq/powernow-k8.c
672
thiscpuid = cpuid_eax(CPUID_PROCESSOR_SIGNATURE);
drivers/dma/ioat/dca.c
66
eax = cpuid_eax(CPUID_LEAF_DCA);
drivers/platform/x86/amd/hfi/hfi.c
212
nr_class_id = cpuid_eax(AMD_HETERO_CPUID_27);
drivers/ras/amd/fmpm.c
586
cpuid = cpuid_eax(1);
drivers/ras/amd/fmpm.c
729
fmp->fru_arch = cpuid_eax(1);
drivers/virt/acrn/hsm.c
510
if (!(cpuid_eax(ACRN_CPUID_FEATURES) & ACRN_FEATURE_PRIVILEGED_VM))
drivers/xen/events/events_base.c
2208
if ((cpuid_eax(xen_cpuid_base() + 4) & XEN_HVM_CPUID_UPCALL_VECTOR) &&
drivers/xen/grant-table.c
1532
if (cpuid_eax(base) < 5)
tools/power/cpupower/utils/helpers/cpuid.c
116
cpuid_level = cpuid_eax(0);
tools/power/cpupower/utils/helpers/cpuid.c
117
ext_cpuid_level = cpuid_eax(0x80000000);
tools/power/cpupower/utils/helpers/cpuid.c
169
(cpuid_eax(6) & (1 << 1)))
tools/power/cpupower/utils/helpers/helpers.h
160
unsigned int cpuid_eax(unsigned int op);