diff options
author | Martin Roth <martinroth@chromium.org> | 2021-08-09 10:39:27 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-08-28 17:42:22 +0000 |
commit | dd6c7331ac6692816484438f2f2950060c6e55c9 (patch) | |
tree | 58e20ae0ebb11346566d2630c5c6c727340ba66f /src/mainboard/amd/bilby | |
parent | f032221bd1486c6c04bb19ad202bb5c6b525f8b0 (diff) |
mb/(amd,google): Update SPI Kconfig settings based on devicetree
This takes the devicetree SPI settings and moves them into Kconfig.
BUG=b:195943311
TEST=boot guybrush & majolica and verify spi settings.
Signed-off-by: Martin Roth <martinroth@chromium.org>
Change-Id: Icce1d57761465ae8255e5d9ce8679f3fdcb0ceed
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56885
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Diffstat (limited to 'src/mainboard/amd/bilby')
-rw-r--r-- | src/mainboard/amd/bilby/Kconfig | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/src/mainboard/amd/bilby/Kconfig b/src/mainboard/amd/bilby/Kconfig index daa6b6ef54..34c7f90e6c 100644 --- a/src/mainboard/amd/bilby/Kconfig +++ b/src/mainboard/amd/bilby/Kconfig @@ -92,20 +92,27 @@ config VGA_BIOS_DGPU_FILE string default "3rdparty/amd_blobs/picasso/PicassoGenericVbios.bin" +if !EM100 # EM100 defaults in soc/amd/common/blocks/spi/Kconfig config EFS_SPI_READ_MODE - int - default 0 if EM100 - default 3 + default 3 # Quad IO (1-1-4) config EFS_SPI_SPEED - int - default 3 if EM100 - default 0 + default 0 # 66MHz config EFS_SPI_MICRON_FLAG - int default 0 +config NORMAL_READ_SPI_SPEED + default 1 # 33MHz + +config ALT_SPI_SPEED + default 1 # 33MHz + +config TPM_SPI_SPEED + default 1 # 33MHz + +endif # !EM100 + choice prompt "DDI-0 connector type" default CONNECT_DP_ON_DDI_0 |