All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][XENOPROFILE] add support for Intel CORE microarchitecture
@ 2006-10-02 16:12 Andrew Theurer
  0 siblings, 0 replies; only message in thread
From: Andrew Theurer @ 2006-10-02 16:12 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: text/plain, Size: 166 bytes --]

This adds support for core and core2 chips.  Tested on Woodcrest 
processors.  Requires Oprofile 0.9.2.

-Andrew

Signed-off-by: Andrew Theurer <habanero@us.ibm.com>

[-- Attachment #2: oprofile-core2-suport.patch --]
[-- Type: text/x-patch, Size: 1327 bytes --]

diff -Naurp xen-unstable.hg-11684/xen/arch/x86/oprofile/nmi_int.c xen-unstable.hg-11684-oprofile/xen/arch/x86/oprofile/nmi_int.c
--- xen-unstable.hg-11684/xen/arch/x86/oprofile/nmi_int.c	2006-10-02 10:55:35.000000000 -0500
+++ xen-unstable.hg-11684-oprofile/xen/arch/x86/oprofile/nmi_int.c	2006-10-02 10:58:35.000000000 -0500
@@ -305,22 +305,24 @@ static int __init ppro_init(char *cpu_ty
 {
 	__u8 cpu_model = current_cpu_data.x86_model;
 
-	if (cpu_model > 0xd) {
+	if (cpu_model > 15) {
 		printk("xenoprof: Initialization failed. "
 		       "Intel processor model %d for P6 class family is not "
 		       "supported\n", cpu_model);
 		return 0;
 	}
-
-	if (cpu_model == 9) {
+	else if (cpu_model == 15)
+		strncpy (cpu_type, "i386/core_2", XENOPROF_CPU_TYPE_SIZE - 1);
+	else if (cpu_model == 14)
+		strncpy (cpu_type, "i386/core", XENOPROF_CPU_TYPE_SIZE - 1);
+	else if (cpu_model == 9)
 		strncpy (cpu_type, "i386/p6_mobile", XENOPROF_CPU_TYPE_SIZE - 1);
-	} else if (cpu_model > 5) {
+	else if (cpu_model > 5)
 		strncpy (cpu_type, "i386/piii", XENOPROF_CPU_TYPE_SIZE - 1);
-	} else if (cpu_model > 2) {
+	else if (cpu_model > 2)
 		strncpy (cpu_type, "i386/pii", XENOPROF_CPU_TYPE_SIZE - 1);
-	} else {
+	else
 		strncpy (cpu_type, "i386/ppro", XENOPROF_CPU_TYPE_SIZE - 1);
-	}
 
 	model = &op_ppro_spec;
 	return 1;

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-10-02 16:12 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-02 16:12 [PATCH][XENOPROFILE] add support for Intel CORE microarchitecture Andrew Theurer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.