diff options
author | Marc Jones <marc.jones@se-eng.com> | 2015-09-24 21:38:26 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2015-11-10 00:19:01 +0100 |
commit | 2d72345f80266555aa3c358d0b7bcda083687b5c (patch) | |
tree | f7245fe14d4ba498e31ebcd7fb038fb54e91228a /src/cpu | |
parent | cb492da9134c911502905cf9ec705c54992c9df9 (diff) |
cpu/intel: Add socket BGA1284
Add an additional Sandy(Ivy)bridge processor socket.
Change-Id: I7eff7183d0c003e61fdda5350579f4d3dec7504d
Signed-off-by: Marc Jones <marc.jones@se-eng.com>
Reviewed-on: http://review.coreboot.org/12168
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: York Yang <york.yang@intel.com>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/intel/Kconfig | 1 | ||||
-rw-r--r-- | src/cpu/intel/Makefile.inc | 1 | ||||
-rw-r--r-- | src/cpu/intel/socket_BGA1284/Kconfig | 11 | ||||
-rw-r--r-- | src/cpu/intel/socket_BGA1284/Makefile.inc | 7 |
4 files changed, 20 insertions, 0 deletions
diff --git a/src/cpu/intel/Kconfig b/src/cpu/intel/Kconfig index b388c50f29..19f1c73208 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 f28c0d1ab8..4fd3c84e22 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 0000000000..402dc5c60c --- /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 0000000000..539f285d92 --- /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 |