From 1a08f582b54ec9fff0f356a824647ee40b3a5008 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Wed, 28 Oct 2009 16:52:48 +0000 Subject: preliminary Intel D945GCLF Atom+i945 support. ram init fails, as the i945 driver currently only supports the mobile version of the chipset.. Not sure how much sense it makes to check this in, but since it's a nice and cheap board, maybe someone wants to work on this. Signed-off-by: Stefan Reinauer Acked-by: Ronald G. Minnich git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4879 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/cpu/intel/socket_441/Config.lb | 3 +++ src/cpu/intel/socket_441/chip.h | 4 ++++ src/cpu/intel/socket_441/socket_441.c | 7 +++++++ 3 files changed, 14 insertions(+) create mode 100644 src/cpu/intel/socket_441/Config.lb create mode 100644 src/cpu/intel/socket_441/chip.h create mode 100644 src/cpu/intel/socket_441/socket_441.c (limited to 'src/cpu/intel/socket_441') diff --git a/src/cpu/intel/socket_441/Config.lb b/src/cpu/intel/socket_441/Config.lb new file mode 100644 index 0000000000..c43c5c7183 --- /dev/null +++ b/src/cpu/intel/socket_441/Config.lb @@ -0,0 +1,3 @@ +config chip.h +object socket_441.o +dir /cpu/intel/model_106cx diff --git a/src/cpu/intel/socket_441/chip.h b/src/cpu/intel/socket_441/chip.h new file mode 100644 index 0000000000..4c99ed63df --- /dev/null +++ b/src/cpu/intel/socket_441/chip.h @@ -0,0 +1,4 @@ +extern struct chip_operations cpu_intel_socket_441_ops; + +struct cpu_intel_socket_441_config { +}; diff --git a/src/cpu/intel/socket_441/socket_441.c b/src/cpu/intel/socket_441/socket_441.c new file mode 100644 index 0000000000..48c91c5882 --- /dev/null +++ b/src/cpu/intel/socket_441/socket_441.c @@ -0,0 +1,7 @@ +#include +#include "chip.h" + + +struct chip_operations cpu_intel_socket_441_ops = { + CHIP_NAME("Socket 441 CPU") +}; -- cgit v1.2.3