diff options
author | Fred Reitberger <reitbergerfred@gmail.com> | 2023-03-23 13:29:01 -0400 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-04-19 22:25:34 +0000 |
commit | 3c8a8c2eb042c8f80e6445cf66c445747ddd421f (patch) | |
tree | 2bea6ca41dd0a317e63208589d7a5a01a57e805c /src/mainboard/amd/birman/Kconfig | |
parent | fb5d1573c35876b0557b5a117d2dde025e88b956 (diff) |
mb/amd/birman/ec.c: Update EC configuration
Update the EC GPIO values for Birman, per schematic # 105-D67000-00B
Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com>
Change-Id: Icd9df120f555eb06f920f6263a8d2ab45c05baec
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73971
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/amd/birman/Kconfig')
-rw-r--r-- | src/mainboard/amd/birman/Kconfig | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/mainboard/amd/birman/Kconfig b/src/mainboard/amd/birman/Kconfig index 7fa541c824..d27c38b504 100644 --- a/src/mainboard/amd/birman/Kconfig +++ b/src/mainboard/amd/birman/Kconfig @@ -76,6 +76,51 @@ config CHROMEOS # We don't have recovery buttons, so we can't manually enable devmode. select GBB_FLAG_FORCE_DEV_SWITCH_ON +config ENABLE_EVAL_CARD + bool "Enable Eval Card" + help + Enable the Eval Card PCIe slot + +config ENABLE_EVAL_19V + bool "Enable 19V rail for Eval Card" + depends on ENABLE_EVAL_CARD + help + Enable the 19V rail for Eval Card PCIe slot + +choice + prompt "DT SLOT/M.2 SSD1 ENABLE" + default ENABLE_DT_SLOT + help + Either DT slot or M.2 SSD1 can be used, as they are sharing PCIe lanes. + +config ENABLE_DT_SLOT + bool "Enable DT slot" + +config ENABLE_M2_SSD1 + bool "Enable M.2 SSD1" + +config DISABLE_DT_M2 + bool "Disable both DT and M.2 slot" + +endchoice + +choice + prompt "WLAN/WWAN Selection" + default WLAN0_WWAN0 + help + WLAN and WWAN lane configuration + +config WLAN0_WWAN0 + bool "Both WLAN and WWAN Enabled (1 lane each)" + +config WLAN01 + bool "Only WLAN Enabled (2 lanes WLAN, 0 lanes WWAN)" + +config WWAN01 + bool "Only WWAN Enabled (2 lanes WWAN, 0 lanes WLAN)" + +endchoice + if !EM100 # EM100 defaults in soc/amd/common/blocks/spi/Kconfig config EFS_SPI_READ_MODE default 3 # Quad IO (1-1-4) |