aboutsummaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@openbios.org>2004-10-19 10:30:32 +0000
committerStefan Reinauer <stepan@openbios.org>2004-10-19 10:30:32 +0000
commitde24e61df7699a1770a81d6969efa8254bd75a5f (patch)
tree261cf355e190f2c279d0a7bc0a1027958595b20b /src/cpu
parent9f12caaf103884678e467a102afe378bd6b98348 (diff)
- add support for socket 754
- fix configuration creation for amd solo (doesn't compile yet) git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1690 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/amd/socket_754/Config.lb3
-rw-r--r--src/cpu/amd/socket_754/chip.h4
-rw-r--r--src/cpu/amd/socket_754/socket_754.c7
3 files changed, 14 insertions, 0 deletions
diff --git a/src/cpu/amd/socket_754/Config.lb b/src/cpu/amd/socket_754/Config.lb
new file mode 100644
index 0000000000..cf16a0e73c
--- /dev/null
+++ b/src/cpu/amd/socket_754/Config.lb
@@ -0,0 +1,3 @@
+config chip.h
+object socket_754.o
+dir /cpu/amd/model_fxx
diff --git a/src/cpu/amd/socket_754/chip.h b/src/cpu/amd/socket_754/chip.h
new file mode 100644
index 0000000000..d9f3600b2c
--- /dev/null
+++ b/src/cpu/amd/socket_754/chip.h
@@ -0,0 +1,4 @@
+extern struct chip_operations cpu_amd_socket_754_ops;
+
+struct cpu_amd_socket_754_config {
+};
diff --git a/src/cpu/amd/socket_754/socket_754.c b/src/cpu/amd/socket_754/socket_754.c
new file mode 100644
index 0000000000..6274e6d55a
--- /dev/null
+++ b/src/cpu/amd/socket_754/socket_754.c
@@ -0,0 +1,7 @@
+#include <device/device.h>
+#include "chip.h"
+
+
+struct chip_operations cpu_amd_socket_754_ops = {
+ .name = "socket 754",
+};