aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/amd/socket_940
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/amd/socket_940')
-rw-r--r--src/cpu/amd/socket_940/Config.lb3
-rw-r--r--src/cpu/amd/socket_940/chip.h4
-rw-r--r--src/cpu/amd/socket_940/socket_940.c7
3 files changed, 14 insertions, 0 deletions
diff --git a/src/cpu/amd/socket_940/Config.lb b/src/cpu/amd/socket_940/Config.lb
new file mode 100644
index 0000000000..9f0e6c689a
--- /dev/null
+++ b/src/cpu/amd/socket_940/Config.lb
@@ -0,0 +1,3 @@
+config chip.h
+object socket_940.o
+dir /cpu/amd/model_fxx
diff --git a/src/cpu/amd/socket_940/chip.h b/src/cpu/amd/socket_940/chip.h
new file mode 100644
index 0000000000..69002a27f1
--- /dev/null
+++ b/src/cpu/amd/socket_940/chip.h
@@ -0,0 +1,4 @@
+extern struct chip_control cpu_amd_socket_940_control;
+
+struct cpu_amd_socket_940_config {
+};
diff --git a/src/cpu/amd/socket_940/socket_940.c b/src/cpu/amd/socket_940/socket_940.c
new file mode 100644
index 0000000000..91bfc37ec8
--- /dev/null
+++ b/src/cpu/amd/socket_940/socket_940.c
@@ -0,0 +1,7 @@
+#include <device/chip.h>
+#include "chip.h"
+
+
+struct chip_control cpu_amd_socket_940_control = {
+ .name = "socket 940",
+};