summaryrefslogtreecommitdiff
path: root/src/cpu/intel/socket_rPGA988B
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/intel/socket_rPGA988B')
-rw-r--r--src/cpu/intel/socket_rPGA988B/Kconfig16
-rw-r--r--src/cpu/intel/socket_rPGA988B/Makefile.inc8
-rw-r--r--src/cpu/intel/socket_rPGA988B/socket_rPGA988B.c5
3 files changed, 29 insertions, 0 deletions
diff --git a/src/cpu/intel/socket_rPGA988B/Kconfig b/src/cpu/intel/socket_rPGA988B/Kconfig
new file mode 100644
index 0000000000..7e74f89fb7
--- /dev/null
+++ b/src/cpu/intel/socket_rPGA988B/Kconfig
@@ -0,0 +1,16 @@
+config CPU_INTEL_SOCKET_RPGA988B
+ bool
+
+if CPU_INTEL_SOCKET_RPGA988B
+
+config SOCKET_SPECIFIC_OPTIONS # dummy
+ def_bool y
+ select MMX
+ select SSE
+ select CACHE_AS_RAM
+
+config CACHE_MRC_BIN
+ bool
+ default n
+
+endif
diff --git a/src/cpu/intel/socket_rPGA988B/Makefile.inc b/src/cpu/intel/socket_rPGA988B/Makefile.inc
new file mode 100644
index 0000000000..d8036d1e5c
--- /dev/null
+++ b/src/cpu/intel/socket_rPGA988B/Makefile.inc
@@ -0,0 +1,8 @@
+ramstage-y += socket_rPGA988B.c
+subdirs-y += ../../x86/tsc
+subdirs-y += ../../x86/mtrr
+subdirs-y += ../../x86/lapic
+subdirs-y += ../../x86/cache
+subdirs-y += ../../x86/smm
+subdirs-y += ../microcode
+subdirs-y += ../turbo
diff --git a/src/cpu/intel/socket_rPGA988B/socket_rPGA988B.c b/src/cpu/intel/socket_rPGA988B/socket_rPGA988B.c
new file mode 100644
index 0000000000..9a18e61ed5
--- /dev/null
+++ b/src/cpu/intel/socket_rPGA988B/socket_rPGA988B.c
@@ -0,0 +1,5 @@
+#include <device/device.h>
+
+struct chip_operations cpu_intel_socket_rPGA988B_ops = {
+ CHIP_NAME("Socket rPGA988B CPU")
+};