Searched refs:fms (Results 1 – 3 of 3) sorted by relevance
/linux/tools/power/x86/x86_energy_perf_policy/ |
H A D | x86_energy_perf_policy.c | 1410 unsigned int fms, family, model; in early_cpuid() local 1412 get_cpuid_or_exit(1, &fms, &ebx, &ecx, &edx); in early_cpuid() 1413 family = (fms >> 8) & 0xf; in early_cpuid() 1414 model = (fms >> 4) & 0xf; in early_cpuid() 1416 model += ((fms >> 16) & 0xf) << 4; in early_cpuid() 1440 unsigned int fms, family, model, stepping; in parse_cpuid() local 1453 get_cpuid_or_exit(1, &fms, &ebx, &ecx, &edx); in parse_cpuid() 1454 family = (fms >> 8) & 0xf; in parse_cpuid() 1455 model = (fms >> 4) & 0xf; in parse_cpuid() 1456 stepping = fms & 0xf; in parse_cpuid() [all …]
|
/linux/tools/power/x86/intel-speed-select/ |
H A D | isst-config.c | 148 unsigned int fms, family; in update_cpu_model() local 150 __cpuid(1, fms, ebx, ecx, edx); in update_cpu_model() 151 family = (fms >> 8) & 0xf; in update_cpu_model() 152 cpu_model = (fms >> 4) & 0xf; in update_cpu_model() 154 cpu_model += ((fms >> 16) & 0xf) << 4; in update_cpu_model() 156 cpu_stepping = fms & 0xf; in update_cpu_model()
|
/linux/arch/x86/include/asm/ |
H A D | sev.h | 235 u32 fms; member
|