From 5c55463f500528b69c47a06da22339fa85d70b7e Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Wed, 4 Apr 2012 00:09:50 +0200 Subject: Add support for Intel Sandybridge CPU Change-Id: I9f37e291c00c0640c6600d8fdd6dcc13c3e5b8d5 Signed-off-by: Duncan Laurie Signed-off-by: Stefan Reinauer Reviewed-on: http://review.coreboot.org/855 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich --- src/cpu/intel/socket_rPGA989/Kconfig | 16 ++++++++++++++++ src/cpu/intel/socket_rPGA989/Makefile.inc | 8 ++++++++ src/cpu/intel/socket_rPGA989/chip.h | 4 ++++ src/cpu/intel/socket_rPGA989/socket_rPGA989.c | 6 ++++++ 4 files changed, 34 insertions(+) create mode 100644 src/cpu/intel/socket_rPGA989/Kconfig create mode 100644 src/cpu/intel/socket_rPGA989/Makefile.inc create mode 100644 src/cpu/intel/socket_rPGA989/chip.h create mode 100644 src/cpu/intel/socket_rPGA989/socket_rPGA989.c (limited to 'src/cpu/intel/socket_rPGA989') diff --git a/src/cpu/intel/socket_rPGA989/Kconfig b/src/cpu/intel/socket_rPGA989/Kconfig new file mode 100644 index 0000000000..11ac25fd3a --- /dev/null +++ b/src/cpu/intel/socket_rPGA989/Kconfig @@ -0,0 +1,16 @@ +config CPU_INTEL_SOCKET_RPGA989 + bool + +if CPU_INTEL_SOCKET_RPGA989 + +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_rPGA989/Makefile.inc b/src/cpu/intel/socket_rPGA989/Makefile.inc new file mode 100644 index 0000000000..b5d679a5a2 --- /dev/null +++ b/src/cpu/intel/socket_rPGA989/Makefile.inc @@ -0,0 +1,8 @@ +ramstage-y += socket_rPGA989.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_rPGA989/chip.h b/src/cpu/intel/socket_rPGA989/chip.h new file mode 100644 index 0000000000..f843e74738 --- /dev/null +++ b/src/cpu/intel/socket_rPGA989/chip.h @@ -0,0 +1,4 @@ +extern struct chip_operations cpu_intel_socket_rPGA989_ops; + +struct cpu_intel_socket_rPGA989_config { +}; diff --git a/src/cpu/intel/socket_rPGA989/socket_rPGA989.c b/src/cpu/intel/socket_rPGA989/socket_rPGA989.c new file mode 100644 index 0000000000..2484571559 --- /dev/null +++ b/src/cpu/intel/socket_rPGA989/socket_rPGA989.c @@ -0,0 +1,6 @@ +#include +#include "chip.h" + +struct chip_operations cpu_intel_socket_rPGA989_ops = { + CHIP_NAME("Socket rPGA989 CPU") +}; -- cgit v1.2.3