提交 45c34e05 编写于 作者: J John Villalovos 提交者: Robert Richter

Oprofile: Change CPUIDS from decimal to hex, and add some comments

Back when the patch was submitted for "Add Xeon 7500 series support to
oprofile", Robert Richter had asked for a followon patch that
converted all the CPU ID values to hex.

I have done that here for the "i386/core_i7" and "i386/atom" class
processors in the ppro_init() function and also added some comments on
where to find documentation on the Intel processors.
Signed-off-by: NJohn L. Villalovos <john.l.villalovos@intel.com>
Signed-off-by: NRobert Richter <robert.richter@amd.com>
上级 cc49b092
...@@ -634,6 +634,18 @@ static int __init ppro_init(char **cpu_type) ...@@ -634,6 +634,18 @@ static int __init ppro_init(char **cpu_type)
if (force_arch_perfmon && cpu_has_arch_perfmon) if (force_arch_perfmon && cpu_has_arch_perfmon)
return 0; return 0;
/*
* Documentation on identifying Intel processors by CPU family
* and model can be found in the Intel Software Developer's
* Manuals (SDM):
*
* http://www.intel.com/products/processor/manuals/
*
* As of May 2010 the documentation for this was in the:
* "Intel 64 and IA-32 Architectures Software Developer's
* Manual Volume 3B: System Programming Guide", "Table B-1
* CPUID Signature Values of DisplayFamily_DisplayModel".
*/
switch (cpu_model) { switch (cpu_model) {
case 0 ... 2: case 0 ... 2:
*cpu_type = "i386/ppro"; *cpu_type = "i386/ppro";
...@@ -655,12 +667,12 @@ static int __init ppro_init(char **cpu_type) ...@@ -655,12 +667,12 @@ static int __init ppro_init(char **cpu_type)
case 15: case 23: case 15: case 23:
*cpu_type = "i386/core_2"; *cpu_type = "i386/core_2";
break; break;
case 0x1a:
case 0x2e: case 0x2e:
case 26:
spec = &op_arch_perfmon_spec; spec = &op_arch_perfmon_spec;
*cpu_type = "i386/core_i7"; *cpu_type = "i386/core_i7";
break; break;
case 28: case 0x1c:
*cpu_type = "i386/atom"; *cpu_type = "i386/atom";
break; break;
default: default:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册