Add some trivial numbers for 945, and Core2 Duo E8200 Intel parts
Sorry, but I've forgotten where I found them. :\ Signed-off-by: Peter Stuge <peter@stuge.se> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4705 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
9536c06d18
commit
4c5786b1f9
|
@ -278,6 +278,7 @@ static struct cpu_device_id cpu_table[] = {
|
|||
{ X86_VENDOR_INTEL, 0x06fa }, /* Intel Core 2 Solo/Core Duo */
|
||||
{ X86_VENDOR_INTEL, 0x06fb }, /* Intel Core 2 Solo/Core Duo */
|
||||
{ X86_VENDOR_INTEL, 0x06fd }, /* Intel Core 2 Solo/Core Duo */
|
||||
{ X86_VENDOR_INTEL, 0x10676 }, /* Core2 Duo E8200 */
|
||||
{ 0, 0 },
|
||||
};
|
||||
|
||||
|
|
|
@ -44,6 +44,18 @@ static void udelay(u32 us)
|
|||
case 3:
|
||||
fsb = 667;
|
||||
break;
|
||||
case 2:
|
||||
fsb = 800;
|
||||
break;
|
||||
case 0:
|
||||
fsb = 1067;
|
||||
break;
|
||||
case 4:
|
||||
fsb = 1333;
|
||||
break;
|
||||
case 6:
|
||||
fsb = 1600;
|
||||
break;
|
||||
}
|
||||
|
||||
msr = rdmsr(0x198);
|
||||
|
|
Loading…
Reference in New Issue