Searched refs:fms (Results 1 – 2 of 2) sorted by relevance
/Linux-v4.19/tools/power/x86/x86_energy_perf_policy/ |
D | x86_energy_perf_policy.c | 1271 unsigned int fms, family, model; in early_cpuid() local 1278 __get_cpuid(1, &fms, &ebx, &ecx, &edx); in early_cpuid() 1279 family = (fms >> 8) & 0xf; in early_cpuid() 1280 model = (fms >> 4) & 0xf; in early_cpuid() 1282 model += ((fms >> 16) & 0xf) << 4; in early_cpuid() 1306 unsigned int fms, family, model, stepping; in parse_cpuid() local 1319 __get_cpuid(1, &fms, &ebx, &ecx, &edx); in parse_cpuid() 1320 family = (fms >> 8) & 0xf; in parse_cpuid() 1321 model = (fms >> 4) & 0xf; in parse_cpuid() 1322 stepping = fms & 0xf; in parse_cpuid() [all …]
|
/Linux-v4.19/tools/power/x86/turbostat/ |
D | turbostat.c | 4442 unsigned int fms, family, model, stepping; in process_cpuid() local 4456 __cpuid(1, fms, ebx, ecx, edx); in process_cpuid() 4457 family = (fms >> 8) & 0xf; in process_cpuid() 4458 model = (fms >> 4) & 0xf; in process_cpuid() 4459 stepping = fms & 0xf; in process_cpuid() 4461 family += (fms >> 20) & 0xff; in process_cpuid() 4463 model += ((fms >> 16) & 0xf) << 4; in process_cpuid()
|