[coreboot-gerrit] New patch to review for coreboot: 9c2d158 Added new cpu socket rPGA988B

Philipp Deppenwiese (zaolin@das-labor.org) gerrit at coreboot.org
Mon May 5 04:45:32 CEST 2014


Philipp Deppenwiese (zaolin at das-labor.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5662

-gerrit

commit 9c2d1581cd8394a3c3d6c7ae3fcc755aecbe24f6
Author: Zaolin <zaolin at das-labor.org>
Date:   Mon May 5 04:43:04 2014 +0200

    Added new cpu socket rPGA988B
    
    Change-Id: I73f3f38e4c8d729a48213e6467d36eb225cd4fc6
    Signed-off-by: Zaolin <zaolin at das-labor.org>
---
 src/cpu/intel/Kconfig                           |  1 +
 src/cpu/intel/Makefile.inc                      |  1 +
 src/cpu/intel/socket_rPGA988B/Kconfig           | 16 ++++++++++++++++
 src/cpu/intel/socket_rPGA988B/Makefile.inc      |  8 ++++++++
 src/cpu/intel/socket_rPGA988B/socket_rPGA988B.c |  5 +++++
 5 files changed, 31 insertions(+)

diff --git a/src/cpu/intel/Kconfig b/src/cpu/intel/Kconfig
index af03619..cf58e90 100644
--- a/src/cpu/intel/Kconfig
+++ b/src/cpu/intel/Kconfig
@@ -35,6 +35,7 @@ source src/cpu/intel/socket_441/Kconfig
 source src/cpu/intel/socket_LGA771/Kconfig
 source src/cpu/intel/socket_LGA775/Kconfig
 source src/cpu/intel/socket_rPGA989/Kconfig
+source src/cpu/intel/socket_rPGA988B/Kconfig
 # Architecture specific features
 source src/cpu/intel/fit/Kconfig
 source src/cpu/intel/turbo/Kconfig
diff --git a/src/cpu/intel/Makefile.inc b/src/cpu/intel/Makefile.inc
index 964369d..81ccb4a 100644
--- a/src/cpu/intel/Makefile.inc
+++ b/src/cpu/intel/Makefile.inc
@@ -15,6 +15,7 @@ subdirs-$(CONFIG_CPU_INTEL_SOCKET_MPGA603) += socket_mPGA603
 subdirs-$(CONFIG_CPU_INTEL_SOCKET_MPGA604) += socket_mPGA604
 subdirs-$(CONFIG_CPU_INTEL_SOCKET_PGA370) += socket_PGA370
 subdirs-$(CONFIG_CPU_INTEL_SOCKET_RPGA989) += socket_rPGA989
+subdirs-$(CONFIG_CPU_INTEL_SOCKET_RPGA988B) += socket_rPGA988B
 subdirs-$(CONFIG_NORTHBRIDGE_INTEL_NEHALEM) += model_2065x
 subdirs-$(CONFIG_NORTHBRIDGE_INTEL_SANDYBRIDGE) += model_206ax
 subdirs-$(CONFIG_NORTHBRIDGE_INTEL_IVYBRIDGE) += model_206ax
diff --git a/src/cpu/intel/socket_rPGA988B/Kconfig b/src/cpu/intel/socket_rPGA988B/Kconfig
new file mode 100644
index 0000000..7e74f89
--- /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 0000000..d8036d1
--- /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 0000000..9a18e61
--- /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")
+};



More information about the coreboot-gerrit mailing list