aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel/socket_mFCBGA479
diff options
context:
space:
mode:
authorJoseph Smith <joe@settoplinux.org>2010-04-09 11:10:25 +0000
committerStefan Reinauer <stepan@openbios.org>2010-04-09 11:10:25 +0000
commit7488e049df9899dd7062b2ffe393b3e9a6f50dc5 (patch)
treea226c1f16a9220abb947ba46d26570e065494aa5 /src/cpu/intel/socket_mFCBGA479
parent853263b963b4cacb4f7fa3a7f2c68dcbd094f1d7 (diff)
1. This patch adds CAR for Intel P6 series processors.
2. Add support for Micro-FCBGA 479 Celeron and PIII's 3. Add support for model_6bx and microcode updates 4. Add support for CAR and Tinybootblock on RCA RM4100 and Thomson IP1000 Build and boot tested. Signed-off-by: Joseph Smith <joe@settoplinux.org> The change to CAR reveiled a few more warnings in the ICH4 and i830 code, I fixed them on the fly. Checking this in because my last two commits broke Joseph's CAR patch. This version fixes the issues. Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5388 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/intel/socket_mFCBGA479')
-rw-r--r--src/cpu/intel/socket_mFCBGA479/Kconfig5
-rw-r--r--src/cpu/intel/socket_mFCBGA479/Makefile.inc8
-rw-r--r--src/cpu/intel/socket_mFCBGA479/chip.h4
-rw-r--r--src/cpu/intel/socket_mFCBGA479/socket_mFCBGA479.c6
4 files changed, 23 insertions, 0 deletions
diff --git a/src/cpu/intel/socket_mFCBGA479/Kconfig b/src/cpu/intel/socket_mFCBGA479/Kconfig
new file mode 100644
index 0000000000..5576623be0
--- /dev/null
+++ b/src/cpu/intel/socket_mFCBGA479/Kconfig
@@ -0,0 +1,5 @@
+config CPU_INTEL_SOCKET_MFCBGA479
+ bool
+ select CPU_INTEL_MODEL_6BX
+ select MMX
+ select SSE
diff --git a/src/cpu/intel/socket_mFCBGA479/Makefile.inc b/src/cpu/intel/socket_mFCBGA479/Makefile.inc
new file mode 100644
index 0000000000..4bdbab5e99
--- /dev/null
+++ b/src/cpu/intel/socket_mFCBGA479/Makefile.inc
@@ -0,0 +1,8 @@
+obj-y += socket_mFCBGA479.o
+subdirs-y += ../model_6bx
+subdirs-y += ../../x86/tsc
+subdirs-y += ../../x86/mtrr
+subdirs-y += ../../x86/lapic
+subdirs-y += ../../x86/cache
+subdirs-y += ../../x86/smm
+subdirs-y += ../microcode
diff --git a/src/cpu/intel/socket_mFCBGA479/chip.h b/src/cpu/intel/socket_mFCBGA479/chip.h
new file mode 100644
index 0000000000..9dee4a9e46
--- /dev/null
+++ b/src/cpu/intel/socket_mFCBGA479/chip.h
@@ -0,0 +1,4 @@
+extern struct chip_operations cpu_intel_socket_mFCBGA479_ops;
+
+struct cpu_intel_socket_mFCBGA479_config {
+};
diff --git a/src/cpu/intel/socket_mFCBGA479/socket_mFCBGA479.c b/src/cpu/intel/socket_mFCBGA479/socket_mFCBGA479.c
new file mode 100644
index 0000000000..4c0bc72976
--- /dev/null
+++ b/src/cpu/intel/socket_mFCBGA479/socket_mFCBGA479.c
@@ -0,0 +1,6 @@
+#include <device/device.h>
+#include "chip.h"
+
+struct chip_operations cpu_intel_socket_mFCBGA479_ops = {
+ CHIP_NAME("Micro-FCBGA 479 CPU")
+};