diff options
author | Dave Jones <davej@redhat.com> | 2009-01-14 14:22:14 -0500 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2009-01-14 14:22:14 -0500 |
commit | c4fde827f9b1d73732a70bc7a191209e8e1c9664 (patch) | |
tree | c0bd09600714be3e96d57d3c14afb646ab5cfe2b /Intel | |
parent | 8c0cca2b1b92cef61e143438e1ded7860fb54ee9 (diff) |
Add Nehalem.
http://download.intel.com/design/processor/specupdt/320836.pdf
Diffstat (limited to 'Intel')
-rw-r--r-- | Intel/identify-family6-extended.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Intel/identify-family6-extended.c b/Intel/identify-family6-extended.c index 9635087..4e56fa5 100644 --- a/Intel/identify-family6-extended.c +++ b/Intel/identify-family6-extended.c @@ -4,6 +4,7 @@ * Licensed under the terms of the GNU GPL License version 2. * * Intel family 6 specific decoding (Core family). + * All the CPUs described in this file have cpu->emodel set to 1 */ #include <stdio.h> @@ -204,6 +205,24 @@ SLGAS 723 m-FCBGA M-0 1.20/(n/a)/(n/a) 800 N/A 10 1 (Celeron) } break; + case 26: + /* + * SLBCJ C-0 0x000106A4 3.20 / 6.40/ 1066 8MB + * SLBCK C-0 0x000106A4 2.93 / 4.80/ 1066 8MB + * SLBCH C-0 0x000106A4 2.66 / 4.80/ 1066 8MB + */ + add_to_cpuname("Core i7 (Nehalem)"); + switch (cpu->MHz) { + case 3200: add_to_cpuname(" [C-0][SLBCJ]"); + break; + case 2930: add_to_cpuname(" [C-0][SLBCK]"); + break; + case 2660: add_to_cpuname(" [C-0][SLBCH]"); + break; + } + break; + + default: add_to_cpuname("Unknown model. "); } |