summaryrefslogtreecommitdiffstats
path: root/src/cpu/amd/socket_S1G1
diff options
context:
space:
mode:
authorMichael Xie Michael.Xie <Michael Xie Michael.Xie@amd.com>2008-09-19 20:16:25 +0000
committerMarc Jones <marc.jones@amd.com>2008-09-19 20:16:25 +0000
commit8d183c5846d026ddb3c9ec6003bea4ece9c2985a (patch)
treeee99c017f57966e12504d1c19a5c5bf1edb43551 /src/cpu/amd/socket_S1G1
parent64caf3607ea2e0e2a74c8d4c6429dcb40ec80f86 (diff)
downloadcoreboot-8d183c5846d026ddb3c9ec6003bea4ece9c2985a.tar.gz
coreboot-8d183c5846d026ddb3c9ec6003bea4ece9c2985a.tar.bz2
coreboot-8d183c5846d026ddb3c9ec6003bea4ece9c2985a.zip
Add AMD K8 S1G1 socket support.
Signed-off-by: Michael Xie Michael.Xie@amd.com Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3585 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/amd/socket_S1G1')
-rw-r--r--src/cpu/amd/socket_S1G1/Config.lb19
-rw-r--r--src/cpu/amd/socket_S1G1/chip.h4
-rw-r--r--src/cpu/amd/socket_S1G1/socket_S1G1.c6
3 files changed, 29 insertions, 0 deletions
diff --git a/src/cpu/amd/socket_S1G1/Config.lb b/src/cpu/amd/socket_S1G1/Config.lb
new file mode 100644
index 000000000000..0ebfb8ae8775
--- /dev/null
+++ b/src/cpu/amd/socket_S1G1/Config.lb
@@ -0,0 +1,19 @@
+uses CONFIG_CHIP_NAME
+uses K8_REV_F_SUPPORT
+uses K8_HT_FREQ_1G_SUPPORT
+uses DIMM_SUPPORT
+uses CPU_SOCKET_TYPE
+
+if CONFIG_CHIP_NAME
+ config chip.h
+end
+
+default K8_REV_F_SUPPORT=1
+#Opteron K8 1G HT Support
+default K8_HT_FREQ_1G_SUPPORT=1
+default DIMM_SUPPORT=0x0204 #DDR2 and REG, S1G1
+default CPU_SOCKET_TYPE=0x12
+
+object socket_S1G1.o
+
+dir /cpu/amd/model_fxx
diff --git a/src/cpu/amd/socket_S1G1/chip.h b/src/cpu/amd/socket_S1G1/chip.h
new file mode 100644
index 000000000000..826c7067a910
--- /dev/null
+++ b/src/cpu/amd/socket_S1G1/chip.h
@@ -0,0 +1,4 @@
+extern struct chip_operations cpu_amd_socket_S1G1_ops;
+
+struct cpu_amd_socket_S1G1_config {
+};
diff --git a/src/cpu/amd/socket_S1G1/socket_S1G1.c b/src/cpu/amd/socket_S1G1/socket_S1G1.c
new file mode 100644
index 000000000000..352ecc36337f
--- /dev/null
+++ b/src/cpu/amd/socket_S1G1/socket_S1G1.c
@@ -0,0 +1,6 @@
+#include <device/device.h>
+#include "chip.h"
+
+struct chip_operations cpu_amd_socket_S1G1_ops = {
+ CHIP_NAME("Socket S1G1 CPU")
+};