[coreboot-gerrit] New patch to review for coreboot: cpu/intel: Add socket BGA1284

Marc Jones (marc@marcjonesconsulting.com) gerrit at coreboot.org
Fri Oct 23 19:33:34 CEST 2015


Marc Jones (marc at marcjonesconsulting.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12168

-gerrit

commit 630e8282ed5d304c339ee8cade10eda579ff340d
Author: Marc Jones <marc.jones at se-eng.com>
Date:   Thu Sep 24 21:38:26 2015 -0600

    cpu/intel: Add socket BGA1284
    
    Add an additional Sandy(Ivy)bridge processor socket.
    
    Change-Id: I7eff7183d0c003e61fdda5350579f4d3dec7504d
    Signed-off-by: Marc Jones <marc.jones at se-eng.com>
---
 src/cpu/intel/Kconfig                     |  1 +
 src/cpu/intel/Makefile.inc                |  1 +
 src/cpu/intel/socket_BGA1284/Kconfig      | 11 +++++++++++
 src/cpu/intel/socket_BGA1284/Makefile.inc |  7 +++++++
 4 files changed, 20 insertions(+)

diff --git a/src/cpu/intel/Kconfig b/src/cpu/intel/Kconfig
index b388c50..19f1c73 100644
--- a/src/cpu/intel/Kconfig
+++ b/src/cpu/intel/Kconfig
@@ -25,6 +25,7 @@ source src/cpu/intel/haswell/Kconfig
 source src/cpu/intel/slot_2/Kconfig
 source src/cpu/intel/slot_1/Kconfig
 source src/cpu/intel/socket_BGA956/Kconfig
+source src/cpu/intel/socket_BGA1284/Kconfig
 source src/cpu/intel/socket_FC_PGA370/Kconfig
 source src/cpu/intel/socket_mFCBGA479/Kconfig
 source src/cpu/intel/socket_mFCPGA478/Kconfig
diff --git a/src/cpu/intel/Makefile.inc b/src/cpu/intel/Makefile.inc
index f28c0d1..4fd3c84 100644
--- a/src/cpu/intel/Makefile.inc
+++ b/src/cpu/intel/Makefile.inc
@@ -6,6 +6,7 @@
 subdirs-$(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE) += fit
 subdirs-$(CONFIG_CPU_INTEL_SOCKET_441) += socket_441
 subdirs-$(CONFIG_CPU_INTEL_SOCKET_BGA956) += socket_BGA956
+subdirs-$(CONFIG_CPU_INTEL_SOCKET_BGA1284) += socket_BGA1284
 subdirs-$(CONFIG_CPU_INTEL_EP80579) += ep80579
 subdirs-$(CONFIG_CPU_INTEL_SOCKET_FC_PGA370) += socket_FC_PGA370
 subdirs-$(CONFIG_CPU_INTEL_SOCKET_MFCBGA479) += socket_mFCBGA479
diff --git a/src/cpu/intel/socket_BGA1284/Kconfig b/src/cpu/intel/socket_BGA1284/Kconfig
new file mode 100644
index 0000000..402dc5c
--- /dev/null
+++ b/src/cpu/intel/socket_BGA1284/Kconfig
@@ -0,0 +1,11 @@
+config CPU_INTEL_SOCKET_BGA1284
+	bool
+
+if CPU_INTEL_SOCKET_BGA1284
+
+config SOCKET_SPECIFIC_OPTIONS # dummy
+	def_bool y
+	select MMX
+	select SSE
+
+endif
diff --git a/src/cpu/intel/socket_BGA1284/Makefile.inc b/src/cpu/intel/socket_BGA1284/Makefile.inc
new file mode 100644
index 0000000..539f285
--- /dev/null
+++ b/src/cpu/intel/socket_BGA1284/Makefile.inc
@@ -0,0 +1,7 @@
+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



More information about the coreboot-gerrit mailing list