summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorYinghai Lu <yinghailu@gmail.com>2006-10-04 21:04:49 +0000
committerYinghai Lu <yinghailu@gmail.com>2006-10-04 21:04:49 +0000
commit15b8ea74735044bf6cd88b178ce0468e027aca7c (patch)
tree82e3f85213ce2432da3a168af69690017e375805 /src/cpu
parent8d22a5dc69f018f2861410e8628623537f009e2c (diff)
downloadcoreboot-15b8ea74735044bf6cd88b178ce0468e027aca7c.tar.xz
socket 939
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2437 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/amd/socket_939/Config.lb9
-rw-r--r--src/cpu/amd/socket_939/chip.h4
-rw-r--r--src/cpu/amd/socket_939/socket_939.c6
3 files changed, 19 insertions, 0 deletions
diff --git a/src/cpu/amd/socket_939/Config.lb b/src/cpu/amd/socket_939/Config.lb
new file mode 100644
index 0000000000..e0c3ccec1d
--- /dev/null
+++ b/src/cpu/amd/socket_939/Config.lb
@@ -0,0 +1,9 @@
+uses CONFIG_CHIP_NAME
+
+if CONFIG_CHIP_NAME
+ config chip.h
+end
+
+object socket_939.o
+
+dir /cpu/amd/model_fxx
diff --git a/src/cpu/amd/socket_939/chip.h b/src/cpu/amd/socket_939/chip.h
new file mode 100644
index 0000000000..2a635b7477
--- /dev/null
+++ b/src/cpu/amd/socket_939/chip.h
@@ -0,0 +1,4 @@
+extern struct chip_operations cpu_amd_socket_939_ops;
+
+struct cpu_amd_socket_939_config {
+};
diff --git a/src/cpu/amd/socket_939/socket_939.c b/src/cpu/amd/socket_939/socket_939.c
new file mode 100644
index 0000000000..2661bc4cd3
--- /dev/null
+++ b/src/cpu/amd/socket_939/socket_939.c
@@ -0,0 +1,6 @@
+#include <device/device.h>
+#include "chip.h"
+
+struct chip_operations cpu_amd_socket_939_ops = {
+ CHIP_NAME("socket 939")
+};