aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel/model_206ax/Kconfig
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2012-04-04 00:09:50 +0200
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-04-05 21:10:25 +0200
commit5c55463f500528b69c47a06da22339fa85d70b7e (patch)
treed36dfe145f135afa5453f6dd4fdbb32f14be5ef5 /src/cpu/intel/model_206ax/Kconfig
parent00636b0daefc3c499990744226a0e1a316d71731 (diff)
Add support for Intel Sandybridge CPU
Change-Id: I9f37e291c00c0640c6600d8fdd6dcc13c3e5b8d5 Signed-off-by: Duncan Laurie <dlaurie@google.com> Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/855 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/cpu/intel/model_206ax/Kconfig')
-rw-r--r--src/cpu/intel/model_206ax/Kconfig53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/cpu/intel/model_206ax/Kconfig b/src/cpu/intel/model_206ax/Kconfig
new file mode 100644
index 0000000000..c11f21ad65
--- /dev/null
+++ b/src/cpu/intel/model_206ax/Kconfig
@@ -0,0 +1,53 @@
+config CPU_INTEL_MODEL_206AX
+ bool
+
+config CPU_INTEL_MODEL_306AX
+ bool
+
+if CPU_INTEL_MODEL_206AX || CPU_INTEL_MODEL_306AX
+
+config CPU_SPECIFIC_OPTIONS
+ def_bool y
+ select SMP
+ select SSE2
+ select UDELAY_LAPIC
+ select SMM_TSEG
+ #select AP_IN_SIPI_WAIT
+
+config BOOTBLOCK_CPU_INIT
+ string
+ default "cpu/intel/model_206ax/bootblock.c"
+
+config SERIAL_CPU_INIT
+ bool
+ default n
+
+config SMM_TSEG_SIZE
+ hex
+ default 0x800000
+
+config ENABLE_VMX
+ bool "Enable VMX for virtualization"
+ default n
+
+endif
+
+if CPU_INTEL_MODEL_206AX
+ config CPU_MODEL_NAME
+ string
+ default "Intel SandyBridge CPU"
+
+ config CPU_MODEL_INDEX
+ hex
+ default 0x2a
+endif
+
+if CPU_INTEL_MODEL_306AX
+ config CPU_MODEL_NAME
+ string
+ default "Intel IvyBridge CPU"
+
+ config CPU_MODEL_INDEX
+ hex
+ default 0x3a
+endif