summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
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",
+};