From cc0dc7f839f5ccc3361e186f6bbc4c9a48155c78 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Mon, 4 Oct 2010 20:43:55 +0000 Subject: Add missing Intel Pentium II/III era CPU IDs. Add links to the respective Intel specification updates or manuals where the IDs are listed. Mention the possible core steppings of each CPU ID. There are duplicate IDs in model_6xx and model_68x for now, not sure if those should be eliminated, but there were already duplicates before this patch, so that's probably an extra issue to look into. Abuild-tested. Signed-off-by: Uwe Hermann Acked-by: Uwe Hermann git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5909 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/cpu/intel/model_6bx/model_6bx_init.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'src/cpu/intel/model_6bx') diff --git a/src/cpu/intel/model_6bx/model_6bx_init.c b/src/cpu/intel/model_6bx/model_6bx_init.c index 89807cbe0e..a8883ecc65 100644 --- a/src/cpu/intel/model_6bx/model_6bx_init.c +++ b/src/cpu/intel/model_6bx/model_6bx_init.c @@ -86,9 +86,16 @@ static struct device_operations cpu_dev_ops = { .init = model_6bx_init, }; +/* + * Pentium III Processor Identification and Package Information. + * http://www.intel.com/design/pentiumiii/qit/update.pdf + * + * Intel Pentium III Processor Specification Update + * http://download.intel.com/design/intarch/specupdt/24445358.pdf + */ static struct cpu_device_id cpu_table[] = { - { X86_VENDOR_INTEL, 0x06B1 }, - { X86_VENDOR_INTEL, 0x06B4 }, /* Low Voltage PIII Micro-FCBGA Socket 479 */ + { X86_VENDOR_INTEL, 0x06b1 }, /* Pentium III/Celeron, tA1/A1/FPA1 */ + { X86_VENDOR_INTEL, 0x06b4 }, /* Pentium III, tB1/FPB1 */ { 0, 0 }, }; -- cgit v1.2.3