diff options
author | Jon Murphy <jpmurphy@google.com> | 2023-03-29 19:07:06 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-04-26 12:14:54 +0000 |
commit | 0f1826e2518227eaff92f61bbe9800058fbde1be (patch) | |
tree | a20ab85913cc78dd13aaf0e609049ea0de4f8e38 /src/mainboard/google/myst/bootblock.c | |
parent | 462ccbaac26b7ff271453287995bfbe6ff148b55 (diff) |
mb/google/myst: Configure WLAN
Configure PCIe Clk Source and Clk Request mapping. Configure GPIOs used
for WLAN. Mapping derived from myst schematic.
BUG=b:275965982
TEST=Builds
Signed-off-by: Jon Murphy <jpmurphy@google.com>
Change-Id: I5059be0bc011978e74ab4245e6ae037aa177ef9b
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74113
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/mainboard/google/myst/bootblock.c')
-rw-r--r-- | src/mainboard/google/myst/bootblock.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mainboard/google/myst/bootblock.c b/src/mainboard/google/myst/bootblock.c index e9d69e32bc..440466697b 100644 --- a/src/mainboard/google/myst/bootblock.c +++ b/src/mainboard/google/myst/bootblock.c @@ -23,6 +23,9 @@ void bootblock_mainboard_early_init(void) variant_tpm_gpio_table(&gpios, &num_gpios); gpio_configure_pads(gpios, num_gpios); + + variant_early_gpio_table(&gpios, &num_gpios); + gpio_configure_pads(gpios, num_gpios); } void bootblock_mainboard_init(void) |