Home
last modified time | relevance | path

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

/openbmc/linux/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 …]
/openbmc/qemu/scripts/
H A Ddecodetree.py1111 fms = t.replace('0', '1')
1112 fms = fms.replace('.', '0')
1113 fms = fms.replace('-', '0')
1119 fms = int(fms, 2)
1123 fixedmask = (fixedmask << shift) | fms
/openbmc/linux/arch/x86/include/asm/
H A Dsev.h132 u32 fms; member
/openbmc/linux/tools/power/x86/intel-speed-select/
H A Disst-config.c144 unsigned int fms, family; in update_cpu_model() local
146 __cpuid(1, fms, ebx, ecx, edx); in update_cpu_model()
147 family = (fms >> 8) & 0xf; in update_cpu_model()
148 cpu_model = (fms >> 4) & 0xf; in update_cpu_model()
150 cpu_model += ((fms >> 16) & 0xf) << 4; in update_cpu_model()
152 cpu_stepping = fms & 0xf; in update_cpu_model()
/openbmc/linux/tools/power/x86/turbostat/
H A Dturbostat.c5521 unsigned int fms, family, model, stepping, ecx_flags, edx_flags; in process_cpuid() local
5540 __cpuid(1, fms, ebx, ecx, edx); in process_cpuid()
5541 family = (fms >> 8) & 0xf; in process_cpuid()
5542 model = (fms >> 4) & 0xf; in process_cpuid()
5543 stepping = fms & 0xf; in process_cpuid()
5545 family += (fms >> 20) & 0xff; in process_cpuid()
5547 model += ((fms >> 16) & 0xf) << 4; in process_cpuid()
/openbmc/ipmitool/
H A Dconfigure.ac149 CFLAGS="$CFLAGS -fms-extensions"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/ssiapi/ssiapi/
H A D0002-boost-Backport-clang-support.patch38 +// Detecting `-fms-extension` compiler flag assuming that _MSC_VER defined when that flag is used.