aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/tidus/Kconfig
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2015-12-25 01:15:41 -0600
committerStefan Reinauer <stefan.reinauer@coreboot.org>2016-01-21 02:47:29 +0100
commit89683c0d2676b462be58a09c9a7df55cc1c9b57a (patch)
tree2b71c55247cca98a3f33acbe8e87f1cff896e6cc /src/mainboard/google/tidus/Kconfig
parent5f4ee47c6c6e9ed0b49f3c39192249a7ab5ceed2 (diff)
google/tidus: initial upstream migration
Migrate google/tidus (Lenovo ThinkCentre Chromebox) from Chromium tree to upstream, using google/guado as a baseline. TEST=built and booted tidus with full functionality Change-Id: I9d7a976345566bee63226d1a44ba7d5ec137a742 Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/12801 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/google/tidus/Kconfig')
-rw-r--r--src/mainboard/google/tidus/Kconfig64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/mainboard/google/tidus/Kconfig b/src/mainboard/google/tidus/Kconfig
new file mode 100644
index 0000000000..4ec9e78184
--- /dev/null
+++ b/src/mainboard/google/tidus/Kconfig
@@ -0,0 +1,64 @@
+if BOARD_GOOGLE_TIDUS
+
+config BOARD_SPECIFIC_OPTIONS # dummy
+ def_bool y
+ select SOC_INTEL_BROADWELL
+ select BOARD_ROMSIZE_KB_8192
+ select SUPERIO_ITE_IT8772F
+ select HAVE_ACPI_TABLES
+ select HAVE_OPTION_TABLE
+ select HAVE_ACPI_RESUME
+ select MMCONF_SUPPORT
+ select HAVE_SMI_HANDLER
+ select MAINBOARD_HAS_CHROMEOS
+ select MAINBOARD_HAS_LPC_TPM
+
+config CHROMEOS
+ select CHROMEOS_VBNV_CMOS
+ select CHROMEOS_RAMOOPS_DYNAMIC
+ select VIRTUAL_DEV_SWITCH
+ select PHYSICAL_REC_SWITCH
+
+config VBOOT_RAMSTAGE_INDEX
+ hex
+ default 0x2
+
+config VBOOT_REFCODE_INDEX
+ hex
+ default 0x3
+
+config MAINBOARD_DIR
+ string
+ default google/tidus
+
+config MAINBOARD_PART_NUMBER
+ string
+ default "Tidus"
+
+config IRQ_SLOT_COUNT
+ int
+ default 18
+
+config MAX_CPUS
+ int
+ default 8
+
+config VGA_BIOS_FILE
+ string
+ default "pci8086,0166.rom"
+
+config HAVE_IFD_BIN
+ bool
+ default n
+
+config HAVE_ME_BIN
+ bool
+ default n
+
+
+config MAINBOARD_FAMILY
+ string
+ depends on GENERATE_SMBIOS_TABLES
+ default "Google_Tidus"
+
+endif