Add Intel Socket LGA771
authorSven Schnelle <svens@stackframe.org>
Fri, 2 Dec 2011 15:21:35 +0000 (16:21 +0100)
committerSven Schnelle <svens@stackframe.org>
Thu, 9 Feb 2012 20:12:34 +0000 (21:12 +0100)
Change-Id: Iee7d3ff2884d8c43ff1af498160589e551bc9cc8
Signed-off-by: Sven Schnelle <svens@stackframe.org>
Reviewed-on: http://review.coreboot.org/492
Tested-by: build bot (Jenkins)
src/cpu/intel/Kconfig
src/cpu/intel/Makefile.inc
src/cpu/intel/socket_LGA771/Kconfig [new file with mode: 0644]
src/cpu/intel/socket_LGA771/Makefile.inc [new file with mode: 0644]
src/cpu/intel/socket_LGA771/chip.h [new file with mode: 0644]
src/cpu/intel/socket_LGA771/socket_LGA771.c [new file with mode: 0644]

index 8cf30c9e49d25765a506439a289733b1ac5104fb..31c701cfe2bc64baae1560335c66d3fc4db27ac3 100644 (file)
@@ -28,3 +28,4 @@ source src/cpu/intel/socket_mPGA603/Kconfig
 source src/cpu/intel/socket_mPGA604/Kconfig
 source src/cpu/intel/socket_PGA370/Kconfig
 source src/cpu/intel/socket_441/Kconfig
+source src/cpu/intel/socket_LGA771/Kconfig
index 93ab7de036d05459d4af0ef10a01abd6096bf575..274c101fa4592b678767d2d484cb3961e609ba08 100644 (file)
@@ -16,6 +16,7 @@ subdirs-$(CONFIG_CPU_INTEL_SOCKET_MPGA604) += socket_mPGA604
 subdirs-$(CONFIG_CPU_INTEL_SOCKET_PGA370) += socket_PGA370
 subdirs-$(CONFIG_CPU_INTEL_SLOT_2) += slot_2
 subdirs-$(CONFIG_CPU_INTEL_SLOT_1) += slot_1
+subdirs-$(CONFIG_CPU_INTEL_SOCKET_LGA771) += socket_LGA771
 
 #socket_mPGA604_533Mhz
 #socket_mPGA604_800Mhz
diff --git a/src/cpu/intel/socket_LGA771/Kconfig b/src/cpu/intel/socket_LGA771/Kconfig
new file mode 100644 (file)
index 0000000..0821c3e
--- /dev/null
@@ -0,0 +1,7 @@
+config CPU_INTEL_SOCKET_LGA771
+       bool
+        select CPU_INTEL_MODEL_6FX
+        select CPU_INTEL_CORE2
+       select SSE2
+       select MMX
+       select AP_IN_SIPI_WAIT
diff --git a/src/cpu/intel/socket_LGA771/Makefile.inc b/src/cpu/intel/socket_LGA771/Makefile.inc
new file mode 100644 (file)
index 0000000..319430f
--- /dev/null
@@ -0,0 +1,11 @@
+ramstage-y += socket_LGA771.c
+subdirs-y += ../model_6ex
+subdirs-y += ../model_6fx
+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 += ../hyperthreading
+
diff --git a/src/cpu/intel/socket_LGA771/chip.h b/src/cpu/intel/socket_LGA771/chip.h
new file mode 100644 (file)
index 0000000..d3f312e
--- /dev/null
@@ -0,0 +1,4 @@
+extern struct chip_operations cpu_intel_socket_LGA771_ops;
+
+struct cpu_intel_socket_LGA771_config {
+};
diff --git a/src/cpu/intel/socket_LGA771/socket_LGA771.c b/src/cpu/intel/socket_LGA771/socket_LGA771.c
new file mode 100644 (file)
index 0000000..21a7dc9
--- /dev/null
@@ -0,0 +1,7 @@
+#include <device/device.h>
+#include "chip.h"
+
+
+struct chip_operations cpu_intel_socket_LGA771_ops = {
+       CHIP_NAME("Socket LGA771 CPU")
+};