Home
last modified time | relevance | path

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

/linux/tools/power/x86/turbostat/
H A Dturbostat.c9248 unsigned int ebx_tsc; in process_cpuid() local
9253 eax_crystal = ebx_tsc = crystal_hz = edx = 0; in process_cpuid()
9254 __cpuid(0x15, eax_crystal, ebx_tsc, crystal_hz, edx); in process_cpuid()
9256 if (ebx_tsc != 0) { in process_cpuid()
9258 …"CPUID(0x15): eax_crystal: %d ebx_tsc: %d ecx_crystal_hz: %d\n", eax_crystal, ebx_tsc, crystal_hz); in process_cpuid()
9264 tsc_hz = (unsigned long long)crystal_hz *ebx_tsc / eax_crystal; in process_cpuid()
9266 …"TSC: %lld MHz (%d Hz * %d / %d / 1000000)\n", tsc_hz / 1000000, crystal_hz, ebx_tsc, eax_crystal); in process_cpuid()