diff options
author | Sean Rhodes <sean@starlabs.systems> | 2024-07-23 20:54:34 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-08-06 17:16:50 +0000 |
commit | b8d02d6e47fd86340b0055022d8827a9f0af003b (patch) | |
tree | 830cd028fd66d268fa6c4ce8ac0d912f471c89c1 /src | |
parent | 40e48a2659c696e5985825e405668e02e85b1eea (diff) |
mb/starlabs/starbook/rpl: Disconnect wireless GPIOs
The GPIOs for WiFi and Bluetooth are also connected to the EC.
They are controlled from there so remove the configuration here.
Change-Id: I7aef1b821420daf5ea9f6ae107021e5d406a5ec3
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83625
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/starlabs/starbook/variants/rpl/gpio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/starlabs/starbook/variants/rpl/gpio.c b/src/mainboard/starlabs/starbook/variants/rpl/gpio.c index 996d16b0e2..e1ff92851e 100644 --- a/src/mainboard/starlabs/starbook/variants/rpl/gpio.c +++ b/src/mainboard/starlabs/starbook/variants/rpl/gpio.c @@ -63,7 +63,7 @@ const struct pad_config gpio_table[] = { /* A12: PCH M.2 SSD PEDET */ PAD_NC(GPP_A12, NONE), /* A13: BlueTooth RF Kill */ - PAD_CFG_GPO(GPP_A13, 1, DEEP), + PAD_NC(GPP_A13, NONE), /* A14: Test Point 45 */ PAD_NC(GPP_A14, NONE), /* A15: Test Point 52 */ @@ -244,7 +244,7 @@ const struct pad_config gpio_table[] = { /* E2: Not Connected */ PAD_CFG_GPO(GPP_E2, 1, PLTRST), /* E3: WiFi RF Kill */ - PAD_CFG_GPO(GPP_E3, 1, DEEP), + PAD_NC(GPP_E3, NONE), /* E4: Retimer Force Power */ PAD_CFG_GPO(GPP_E4, 0, PLTRST), /* E5: Not Connected */ |