aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/intel/stargo2/Kconfig
diff options
context:
space:
mode:
authorMarc Jones <marc.jones@se-eng.com>2015-09-15 23:05:00 -0600
committerMartin Roth <martinroth@google.com>2015-11-10 00:25:14 +0100
commit3b0a626edc9d1a45324fd8e77b10e4e49155bb8f (patch)
tree75a7a0fc8084031da63f3aa3e37448ecb7d5cb54 /src/mainboard/intel/stargo2/Kconfig
parent2d72345f80266555aa3c358d0b7bcda083687b5c (diff)
mainboard/intel: Add Stargo2
The Intel Stargo2 is a communications device reference design. This mainboard uses the Sandy/Ivy Bridge and is paired with the i89xx southbridge. The FSP package is available from Intel: https://intel.com/fsp. Change-Id: I75c527f0eb0de1ee6ac13d8d276d7cf23b5b120c Signed-off-by: Marc Jones <marc.jones@se-eng.com> Reviewed-on: http://review.coreboot.org/12170 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/intel/stargo2/Kconfig')
-rw-r--r--src/mainboard/intel/stargo2/Kconfig43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/mainboard/intel/stargo2/Kconfig b/src/mainboard/intel/stargo2/Kconfig
new file mode 100644
index 0000000000..c41c6ec7fa
--- /dev/null
+++ b/src/mainboard/intel/stargo2/Kconfig
@@ -0,0 +1,43 @@
+if BOARD_INTEL_STARGO2
+
+config BOARD_SPECIFIC_OPTIONS # dummy
+ def_bool y
+ select CPU_INTEL_SOCKET_BGA1284
+ select NORTHBRIDGE_INTEL_FSP_IVYBRIDGE
+ select SOUTHBRIDGE_INTEL_FSP_I89XX
+ select BOARD_ROMSIZE_KB_4096
+ select HAVE_ACPI_TABLES
+ select HAVE_OPTION_TABLE
+ select MMCONF_SUPPORT
+ select SUPERIO_WINBOND_WPCD376I
+ select SUPERIO_INTEL_I8900
+ select SERIRQ_CONTINUOUS_MODE
+ select ENABLE_VMX
+
+config MAINBOARD_DIR
+ string
+ default intel/stargo2
+
+config MAINBOARD_PART_NUMBER
+ string
+ default "Stargo2"
+
+config MMCONF_BASE_ADDRESS
+ hex
+ default 0xf8000000
+
+config IRQ_SLOT_COUNT
+ int
+ default 18
+
+config MAX_CPUS
+ int
+ default 16
+
+
+config VGA_BIOS
+ bool
+ default n
+
+
+endif # BOARD_INTEL_STARGO2