Home
last modified time | relevance | path

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

/linux-6.15/tools/power/x86/x86_energy_perf_policy/
H A Dx86_energy_perf_policy.c1410 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-6.15/tools/power/x86/intel-speed-select/
H A Disst-config.c149 unsigned int fms, family; in update_cpu_model() local
151 __cpuid(1, fms, ebx, ecx, edx); in update_cpu_model()
152 family = (fms >> 8) & 0xf; in update_cpu_model()
153 cpu_model = (fms >> 4) & 0xf; in update_cpu_model()
155 cpu_model += ((fms >> 16) & 0xf) << 4; in update_cpu_model()
157 cpu_stepping = fms & 0xf; in update_cpu_model()
/linux-6.15/arch/x86/include/asm/
H A Dsev.h235 u32 fms; member
/linux-6.15/tools/power/x86/turbostat/
H A Dturbostat.c8288 unsigned int fms, family, model, stepping, ecx_flags, edx_flags; in process_cpuid() local
8307 __cpuid(1, fms, ebx, ecx, edx); in process_cpuid()
8308 family = (fms >> 8) & 0xf; in process_cpuid()
8309 model = (fms >> 4) & 0xf; in process_cpuid()
8310 stepping = fms & 0xf; in process_cpuid()
8312 family += (fms >> 20) & 0xff; in process_cpuid()
8314 model += ((fms >> 16) & 0xf) << 4; in process_cpuid()