diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-10-29 04:48:44 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-10-29 04:48:44 +0000 |
commit | 00a889c8aabd7b731622d5ff0e765f69e158de2b (patch) | |
tree | fb10bfbf6a71bcc8ad583feb6b0c706abb86b6fa /src/cpu/intel/socket_mPGA478 | |
parent | debb11fc1fe5f5560015ab9905f1ccc2e08c73e0 (diff) |
Support for Intel Core Duo and Core 2 Duo (tm) CPUs.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3702 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/intel/socket_mPGA478')
-rw-r--r-- | src/cpu/intel/socket_mPGA478/Config.lb | 4 | ||||
-rw-r--r-- | src/cpu/intel/socket_mPGA478/chip.h | 4 | ||||
-rw-r--r-- | src/cpu/intel/socket_mPGA478/socket_mPGA478.c | 7 |
3 files changed, 15 insertions, 0 deletions
diff --git a/src/cpu/intel/socket_mPGA478/Config.lb b/src/cpu/intel/socket_mPGA478/Config.lb new file mode 100644 index 0000000000..a68eeebb62 --- /dev/null +++ b/src/cpu/intel/socket_mPGA478/Config.lb @@ -0,0 +1,4 @@ +config chip.h +object socket_mPGA478.o +dir /cpu/intel/model_69x +dir /cpu/intel/model_6dx diff --git a/src/cpu/intel/socket_mPGA478/chip.h b/src/cpu/intel/socket_mPGA478/chip.h new file mode 100644 index 0000000000..8cc29b1726 --- /dev/null +++ b/src/cpu/intel/socket_mPGA478/chip.h @@ -0,0 +1,4 @@ +extern struct chip_operations cpu_intel_socket_mPGA478_ops; + +struct cpu_intel_socket_mPGA478_config { +}; diff --git a/src/cpu/intel/socket_mPGA478/socket_mPGA478.c b/src/cpu/intel/socket_mPGA478/socket_mPGA478.c new file mode 100644 index 0000000000..da32966215 --- /dev/null +++ b/src/cpu/intel/socket_mPGA478/socket_mPGA478.c @@ -0,0 +1,7 @@ +#include <device/device.h> +#include "chip.h" + + +struct chip_operations cpu_intel_socket_mPGA478_ops = { + CHIP_NAME("Socket mPGA478 CPU") +}; |