- Bug fixes to the P-III support

- Initial Pentium-M support


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1718 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Eric Biederman
2004-10-27 01:18:16 +00:00
parent eefdb03898
commit 3566b3d545
10 changed files with 136 additions and 5 deletions

View File

@@ -26,7 +26,7 @@ static uint32_t microcode_updates[] = {
};
static void model_f0x_init(device_t dev)
static void model_6xx_init(device_t dev)
{
/* Turn on caching if we haven't already */
x86_enable_cache();
@@ -40,7 +40,7 @@ static void model_f0x_init(device_t dev)
};
static struct device_operations cpu_dev_ops = {
.init = model_f0x_init,
.init = model_6xx_init,
};
static struct cpu_device_id cpu_table[] = {
{ X86_VENDOR_INTEL, 0x0672 },