s2735 half update

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1705 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Yinghai Lu
2004-10-22 18:45:36 +00:00
parent a1653cfea5
commit ccf0bc01aa
14 changed files with 244 additions and 501 deletions

View File

@ -7,4 +7,4 @@ dir /cpu/x86/lapic
dir /cpu/x86/cache
dir /cpu/intel/microcode
dir /cpu/intel/hyperthreading
driver model_f1x_init.o
driver model_f2x_init.o

View File

@ -30,7 +30,7 @@ static uint32_t microcode_updates[] = {
};
static void model_f2x_init(device_t dev)
static void model_f2x_init(device_t cpu)
{
/* Turn on caching if we haven't already */
x86_enable_cache();
@ -48,7 +48,7 @@ static void model_f2x_init(device_t dev)
};
static struct device_operations cpu_dev_ops = {
.init = model_f1x_init,
.init = model_f2x_init,
};
static struct cpu_device_id cpu_table[] = {
{ X86_VENDOR_INTEL, 0x0f22 },

View File

@ -1,4 +1,4 @@
extern struct chip_operations cpu_intel_socket_mPGA604_533Mhz_control;
extern struct chip_operations cpu_intel_socket_mPGA604_533Mhz_ops;
struct cpu_intel_socket_mPGA604_533Mhz_config {
};

View File

@ -2,6 +2,6 @@
#include "chip.h"
struct chip_operations cpu_intel_socket_mPGA604_533Mhz_control = {
struct chip_operations cpu_intel_socket_mPGA604_533Mhz_ops = {
.name = "socket mPGA604_533Mhz",
};