Searched refs:fms (Results 1 - 4 of 4) sorted by relevance

/linux-master/tools/power/x86/x86_energy_perf_policy/
H A Dx86_energy_perf_policy.c1410 unsigned int fms, family, model; local
1412 get_cpuid_or_exit(1, &fms, &ebx, &ecx, &edx);
1413 family = (fms >> 8) & 0xf;
1414 model = (fms >> 4) & 0xf;
1416 model += ((fms >> 16) & 0xf) << 4;
1440 unsigned int fms, family, model, stepping; local
1453 get_cpuid_or_exit(1, &fms, &ebx, &ecx, &edx);
1454 family = (fms >> 8) & 0xf;
1455 model = (fms >> 4) & 0xf;
1456 stepping = fms
[all...]
/linux-master/arch/x86/include/asm/
H A Dsev.h147 u32 fms; member in struct:snp_secrets_page_layout
/linux-master/tools/power/x86/intel-speed-select/
H A Disst-config.c146 unsigned int fms, family; local
148 __cpuid(1, fms, ebx, ecx, edx);
149 family = (fms >> 8) & 0xf;
150 cpu_model = (fms >> 4) & 0xf;
152 cpu_model += ((fms >> 16) & 0xf) << 4;
154 cpu_stepping = fms & 0xf;
/linux-master/tools/power/x86/turbostat/
H A Dturbostat.c6735 unsigned int fms, family, model, stepping, ecx_flags, edx_flags; local
6754 __cpuid(1, fms, ebx, ecx, edx);
6755 family = (fms >> 8) & 0xf;
6756 model = (fms >> 4) & 0xf;
6757 stepping = fms & 0xf;
6759 family += (fms >> 20) & 0xff;
6761 model += ((fms >> 16) & 0xf) << 4;

Completed in 337 milliseconds