aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel/socket_LGA1155
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2014-10-23 21:57:48 +1100
committerEdward O'Callaghan <eocallaghan@alterapraxis.com>2014-10-29 21:11:11 +0100
commit304089b0b74ef8aecbcddccf6c44ef74c26341f6 (patch)
tree9e81742cfd3e60f1a3439850220c165a419489c8 /src/cpu/intel/socket_LGA1155
parent1c6d919eb051dd8a42ee7d1758a348984ff08563 (diff)
cpu/intel: Add configuration for socket LGA1155
This allows mainboards to explicitly select LGA1155. Change-Id: Id33679b27c89038588347cb4f1a6a0e66aae3e6e Signed-off-by: Damien Zammit <damien@zamaudio.com> Reviewed-on: http://review.coreboot.org/7197 Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/cpu/intel/socket_LGA1155')
-rw-r--r--src/cpu/intel/socket_LGA1155/Kconfig11
-rw-r--r--src/cpu/intel/socket_LGA1155/Makefile.inc7
-rw-r--r--src/cpu/intel/socket_LGA1155/socket_LGA1155.c5
3 files changed, 23 insertions, 0 deletions
diff --git a/src/cpu/intel/socket_LGA1155/Kconfig b/src/cpu/intel/socket_LGA1155/Kconfig
new file mode 100644
index 0000000000..35aac3c48e
--- /dev/null
+++ b/src/cpu/intel/socket_LGA1155/Kconfig
@@ -0,0 +1,11 @@
+config CPU_INTEL_SOCKET_LGA1155
+ bool
+
+if CPU_INTEL_SOCKET_LGA1155
+
+config SOCKET_SPECIFIC_OPTIONS # dummy
+ def_bool y
+ select MMX
+ select SSE
+
+endif # CPU_INTEL_SOCKET_LGA1155
diff --git a/src/cpu/intel/socket_LGA1155/Makefile.inc b/src/cpu/intel/socket_LGA1155/Makefile.inc
new file mode 100644
index 0000000000..cbf6f06a79
--- /dev/null
+++ b/src/cpu/intel/socket_LGA1155/Makefile.inc
@@ -0,0 +1,7 @@
+ramstage-y += socket_LGA1155.c
+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_LGA1155/socket_LGA1155.c b/src/cpu/intel/socket_LGA1155/socket_LGA1155.c
new file mode 100644
index 0000000000..63c925de95
--- /dev/null
+++ b/src/cpu/intel/socket_LGA1155/socket_LGA1155.c
@@ -0,0 +1,5 @@
+#include <device/device.h>
+
+struct chip_operations cpu_intel_socket_LGA1155_ops = {
+ CHIP_NAME("Socket LGA1155 CPU")
+};