]> git.baikalelectronics.ru Git - kernel.git/commit
x86/cpu: Add helper function to get the type of the current hybrid CPU
authorRicardo Neri <ricardo.neri-calderon@linux.intel.com>
Mon, 12 Apr 2021 14:30:42 +0000 (07:30 -0700)
committerPeter Zijlstra <peterz@infradead.org>
Mon, 19 Apr 2021 18:03:23 +0000 (20:03 +0200)
commit89444f38f09c11fc08aa899bb5b9a3b5463d750c
tree88a497d3a7d295560088a6b08c45391247ed70af
parent9a61d2cbca05c6c508a1df6735760e21b9c7c511
x86/cpu: Add helper function to get the type of the current hybrid CPU

On processors with Intel Hybrid Technology (i.e., one having more than
one type of CPU in the same package), all CPUs support the same
instruction set and enumerate the same features on CPUID. Thus, all
software can run on any CPU without restrictions. However, there may be
model-specific differences among types of CPUs. For instance, each type
of CPU may support a different number of performance counters. Also,
machine check error banks may be wired differently. Even though most
software will not care about these differences, kernel subsystems
dealing with these differences must know.

Add and expose a new helper function get_this_hybrid_cpu_type() to query
the type of the current hybrid CPU. The function will be used later in
the perf subsystem.

The Intel Software Developer's Manual defines the CPU type as 8-bit
identifier.

Signed-off-by: Ricardo Neri <ricardo.neri-calderon@linux.intel.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Tony Luck <tony.luck@intel.com>
Reviewed-by: Len Brown <len.brown@intel.com>
Acked-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/1618237865-33448-3-git-send-email-kan.liang@linux.intel.com
arch/x86/include/asm/cpu.h
arch/x86/kernel/cpu/intel.c