From 953253f093302ccee1cc634772a4561ffbe32355 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Wed, 22 Apr 2009 08:56:50 +0000 Subject: This patch unifies the socket_mPGA604_800Mhz and socket_mPGA604_533Mhz to a combined socket_mPGA604. No other sockets come with clock rates, and there is no difference in code, except for the number of microcode patches included in a build. Signed-off-by: Stefan Reinauer Acked-by: Carl-Daniel Hailfinger git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4169 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/cpu/intel/socket_mPGA604/Config.lb | 5 +++++ src/cpu/intel/socket_mPGA604/chip.h | 4 ++++ src/cpu/intel/socket_mPGA604/socket_mPGA604.c | 7 +++++++ 3 files changed, 16 insertions(+) create mode 100644 src/cpu/intel/socket_mPGA604/Config.lb create mode 100644 src/cpu/intel/socket_mPGA604/chip.h create mode 100644 src/cpu/intel/socket_mPGA604/socket_mPGA604.c (limited to 'src/cpu/intel/socket_mPGA604') diff --git a/src/cpu/intel/socket_mPGA604/Config.lb b/src/cpu/intel/socket_mPGA604/Config.lb new file mode 100644 index 0000000000..21276eb455 --- /dev/null +++ b/src/cpu/intel/socket_mPGA604/Config.lb @@ -0,0 +1,5 @@ +config chip.h +object socket_mPGA604.o +dir /cpu/intel/model_f2x +dir /cpu/intel/model_f3x +dir /cpu/intel/model_f4x diff --git a/src/cpu/intel/socket_mPGA604/chip.h b/src/cpu/intel/socket_mPGA604/chip.h new file mode 100644 index 0000000000..b181737c18 --- /dev/null +++ b/src/cpu/intel/socket_mPGA604/chip.h @@ -0,0 +1,4 @@ +extern struct chip_operations cpu_intel_socket_mPGA604_800Mhz_ops; + +struct cpu_intel_socket_mPGA604_800Mhz_config { +}; diff --git a/src/cpu/intel/socket_mPGA604/socket_mPGA604.c b/src/cpu/intel/socket_mPGA604/socket_mPGA604.c new file mode 100644 index 0000000000..1d0d4fb084 --- /dev/null +++ b/src/cpu/intel/socket_mPGA604/socket_mPGA604.c @@ -0,0 +1,7 @@ +#include +#include "chip.h" + + +struct chip_operations cpu_intel_socket_mPGA604_800Mhz_ops = { + CHIP_NAME("Socket mPGA604 CPU") +}; -- cgit v1.2.3