diff options
author | Jon Murphy <jpmurphy@google.com> | 2022-08-05 10:41:02 -0600 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2022-08-07 19:55:36 +0000 |
commit | 156aa9b4c7d21578a58655a20ec9acd9a7b0eaf2 (patch) | |
tree | f5061469db8f7815d1b080edf21284cd4a81a354 /src/mainboard | |
parent | ebd5be3f6667e8c0ee0eb370b7b09cc05f17bc07 (diff) |
mb/google/skyrim: Resolve boot behavior
Move GPIO init for SSD_AUX_RESET_L to ensure that eMMC devices
will be initialized in time for the nominal boot flow.
BUG=b:237701972
TEST=Boots to OS
BRANCH=none
Signed-off-by: Jon Murphy <jpmurphy@google.com>
Change-Id: I610966fd9d31581f15d8bcd51f8a116c27fd6311
Reviewed-on: https://review.coreboot.org/c/coreboot/+/66461
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/skyrim/variants/baseboard/gpio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/google/skyrim/variants/baseboard/gpio.c b/src/mainboard/google/skyrim/variants/baseboard/gpio.c index a9e45e85b6..ac36aa2091 100644 --- a/src/mainboard/google/skyrim/variants/baseboard/gpio.c +++ b/src/mainboard/google/skyrim/variants/baseboard/gpio.c @@ -197,6 +197,8 @@ static const struct soc_amd_gpio pcie_gpio_table[] = { PAD_NFO(GPIO_26, PCIE_RST0_L, HIGH), /* SD_AUX_RESET_L */ PAD_NFO(GPIO_27, PCIE_RST1_L, HIGH), + /* SSD_AUX_RESET_L */ + PAD_GPO(GPIO_6, HIGH), }; __weak void variant_pcie_gpio_table(const struct soc_amd_gpio **gpio, size_t *size) |