diff options
author | Nick Vaccaro <nvaccaro@google.com> | 2017-08-28 17:34:36 -0700 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2017-09-28 18:28:59 +0000 |
commit | d3e00ab209bde3026082ec6656cefa6dc23de38a (patch) | |
tree | ae8a1c9a136048afbdc1ab3e3e312ab5541fa0c0 /src/mainboard/google/zoombini/Kconfig | |
parent | bc652b97172b70374c2dbf05dbc225c793be4308 (diff) |
google/zoombini: Add new board
Add zoombini board files using cannonlake and FSP 2.0.
Copied most initial files from poppy and cannonlake_rvp.
BUG=b:64395641
BRANCH=None
TEST=Compiles successfully using "./util/abuild/abuild
-p none -t google/zoombini -x -a"
Change-Id: I13ebaae403d08f1b2e6881eeba4dc1787c792b4e
Signed-off-by: Nick Vaccaro <nvaccaro@google.com>
Reviewed-on: https://review.coreboot.org/21273
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/mainboard/google/zoombini/Kconfig')
-rw-r--r-- | src/mainboard/google/zoombini/Kconfig | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/src/mainboard/google/zoombini/Kconfig b/src/mainboard/google/zoombini/Kconfig new file mode 100644 index 0000000000..f95dba192f --- /dev/null +++ b/src/mainboard/google/zoombini/Kconfig @@ -0,0 +1,80 @@ + +config BOARD_GOOGLE_BASEBOARD_ZOOMBINI + def_bool n + select BOARD_ID_AUTO + select BOARD_ROMSIZE_KB_16384 + select DRIVERS_I2C_GENERIC + select EC_GOOGLE_CHROMEEC + select EC_GOOGLE_CHROMEEC_LPC + select HAVE_ACPI_TABLES + select MAINBOARD_HAS_CHROMEOS + select SOC_INTEL_CANNONLAKE + +if BOARD_GOOGLE_BASEBOARD_ZOOMBINI + +config BASEBOARD_ZOOMBINI_LAPTOP + def_bool n + select SYSTEM_TYPE_LAPTOP + +config DEVICETREE + string + default "variants/baseboard/devicetree.cb" + +config DRIVER_TPM_I2C_BUS + depends on ZOOMBINI_USE_I2C_TPM + default 0x1 + +config DRIVER_TPM_I2C_ADDR + depends on ZOOMBINI_USE_I2C_TPM + default 0x50 + +config DRIVER_TPM_SPI_BUS + depends on ZOOMBINI_USE_SPI_TPM + default 0x1 + +config GBB_HWID + string + depends on CHROMEOS + default "ZOOMBINI TEST 5722" if BOARD_GOOGLE_ZOOMBINI + +config MAINBOARD_DIR + string + default "google/zoombini" + +config MAINBOARD_FAMILY + string + default "Google_Zoombini" if BOARD_GOOGLE_ZOOMBINI + +config MAINBOARD_PART_NUMBER + string + default "Zoombini" if BOARD_GOOGLE_ZOOMBINI + +config MAINBOARD_VENDOR + string + default "Google" + +config VARIANT_DIR + string + default "zoombini" if BOARD_GOOGLE_ZOOMBINI + +config VBOOT + select EC_GOOGLE_CHROMEEC_SWITCHES + select VBOOT_LID_SWITCH if BASEBOARD_ZOOMBINI_LAPTOP + +# Select this option to enable use of cr50 I2C TPM on zoombini. +config ZOOMBINI_USE_I2C_TPM + bool + default n + select I2C_TPM + select MAINBOARD_HAS_I2C_TPM_CR50 + select TPM2 + +# Select this option to enable use of cr50 SPI TPM on zoombini. +config ZOOMBINI_USE_SPI_TPM + bool + default y + select MAINBOARD_HAS_SPI_TPM_CR50 + select SPI_TPM + select TPM2 + +endif # BOARD_GOOGLE_BASEBOARD_ZOOMBINI |