public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2] Oprofile: Change CPUIDS from decimal to hex, and add some comments
@ 2010-05-07 16:41 John Villalovos
  2010-05-10 12:33 ` Robert Richter
  0 siblings, 1 reply; 2+ messages in thread
From: John Villalovos @ 2010-05-07 16:41 UTC (permalink / raw)
  To: andi, linux-kernel, x86, robert.richter, oprofile-list

Version 2:

Incorporating suggested changes from Robert Richter.

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: John L. Villalovos <john.l.villalovos@intel.com>

diff --git a/arch/x86/oprofile/nmi_int.c b/arch/x86/oprofile/nmi_int.c
index 9f001d9..2de5f44 100644
--- a/arch/x86/oprofile/nmi_int.c
+++ b/arch/x86/oprofile/nmi_int.c
@@ -586,6 +586,13 @@ static int __init ppro_init(char **cpu_type)
 	if (force_arch_perfmon && cpu_has_arch_perfmon)
 		return 0;
 
+	/* Documentation on identifying Intel processors by CPU Family and Model
+	 * can be found in the Intel Software Developer's Manual (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) {
 	case 0 ... 2:
 		*cpu_type = "i386/ppro";
@@ -607,12 +614,12 @@ static int __init ppro_init(char **cpu_type)
 	case 15: case 23:
 		*cpu_type = "i386/core_2";
 		break;
+	case 0x1a:
 	case 0x2e:
-	case 26:
 		spec = &op_arch_perfmon_spec;
 		*cpu_type = "i386/core_i7";
 		break;
-	case 28:
+	case 0x1c:
 		*cpu_type = "i386/atom";
 		break;
 	default:


-- 
John Villalovos
Intel Corporation on-site partner engineer at Red Hat, Inc.


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH V2] Oprofile: Change CPUIDS from decimal to hex, and add some comments
  2010-05-07 16:41 [PATCH V2] Oprofile: Change CPUIDS from decimal to hex, and add some comments John Villalovos
@ 2010-05-10 12:33 ` Robert Richter
  0 siblings, 0 replies; 2+ messages in thread
From: Robert Richter @ 2010-05-10 12:33 UTC (permalink / raw)
  To: John Villalovos
  Cc: andi@firstfloor.org, linux-kernel@vger.kernel.org, x86@kernel.org,
	oprofile-list@lists.sf.net

On 07.05.10 12:41:40, John Villalovos wrote:
> Version 2:
> 
> Incorporating suggested changes from Robert Richter.
> 
> 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: John L. Villalovos <john.l.villalovos@intel.com>
> 
> diff --git a/arch/x86/oprofile/nmi_int.c b/arch/x86/oprofile/nmi_int.c
> index 9f001d9..2de5f44 100644
> --- a/arch/x86/oprofile/nmi_int.c
> +++ b/arch/x86/oprofile/nmi_int.c
> @@ -586,6 +586,13 @@ static int __init ppro_init(char **cpu_type)
>  	if (force_arch_perfmon && cpu_has_arch_perfmon)
>  		return 0;
>  
> +	/* Documentation on identifying Intel processors by CPU Family and Model
> +	 * can be found in the Intel Software Developer's Manual (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) {
>  	case 0 ... 2:
>  		*cpu_type = "i386/ppro";

Patch applied, thanks John. I made some small style changes to your
comment:

       /*
        * 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".
        */

-Robert

-- 
Advanced Micro Devices, Inc.
Operating System Research Center
email: robert.richter@amd.com


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-05-10 12:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-07 16:41 [PATCH V2] Oprofile: Change CPUIDS from decimal to hex, and add some comments John Villalovos
2010-05-10 12:33 ` Robert Richter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox