Lines Matching refs:edx
92 unsigned int ecx, edx, ext_ecx, ext_edx; member
280 uint32_t ecx, edx, tmp; in amd_init_levelling() local
282 cpuid(0x00000001, &tmp, &tmp, &ecx, &edx); in amd_init_levelling()
286 edx &= opt_cpuid_mask_edx; in amd_init_levelling()
289 edx &= m->edx; in amd_init_levelling()
295 edx |= cpufeat_mask(X86_FEATURE_APIC); in amd_init_levelling()
300 cpuidmask_defaults._1cd = ((uint64_t)ecx << 32) | edx; in amd_init_levelling()
304 uint32_t ecx, edx, tmp; in amd_init_levelling() local
306 cpuid(0x80000001, &tmp, &tmp, &ecx, &edx); in amd_init_levelling()
310 edx &= opt_cpuid_mask_ext_edx; in amd_init_levelling()
313 edx &= m->ext_edx; in amd_init_levelling()
317 edx |= cpufeat_mask(X86_FEATURE_APIC); in amd_init_levelling()
319 cpuidmask_defaults.e1cd = ((uint64_t)ecx << 32) | edx; in amd_init_levelling()
504 u32 eax, ebx, ecx, edx; in amd_get_topology() local
506 cpuid(0x8000001e, &eax, &ebx, &ecx, &edx); in amd_get_topology()