summaryrefslogtreecommitdiff
path: root/src/cpu/intel/socket_rPGA988B
diff options
context:
space:
mode:
authorZaolin <zaolin@das-labor.org>2014-05-06 21:30:54 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2014-05-13 21:58:16 +0200
commit3d68b1a62af20894fc0137a9658587f12b84e004 (patch)
tree7a2529e47611192c3a9115be7671fd7a88374bcc /src/cpu/intel/socket_rPGA988B
parent580b1ad618315220d554b08db0cbafdebaf2114e (diff)
downloadcoreboot-3d68b1a62af20894fc0137a9658587f12b84e004.tar.xz
cpu/intel: Add CPU socket rPGA988B
Used by the Lenovo ThinkPad T520 Change-Id: I1009616cc4c18ebd0e3be7ceb50398617b49e3a3 Signed-off-by: Philipp Deppenwiese <zaolin@das-labor.org> Reviewed-on: http://review.coreboot.org/5671 Reviewed-by: Idwer Vollering <vidwer@gmail.com> Tested-by: build bot (Jenkins)
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")
+};