diff options
author | Ivy Jian <ivy_jian@compal.corp-partner.google.com> | 2021-05-12 09:58:00 +0800 |
---|---|---|
committer | Werner Zeh <werner.zeh@siemens.com> | 2021-05-14 04:31:34 +0000 |
commit | 2ea6c4e98779449aeab91770e17bf4efa80bbc6d (patch) | |
tree | 7e4616ba3369ff81cd26636515683e27723225b4 /src/mainboard/google | |
parent | 61908e6be798e6293100ff419afa9bb52dc9ae3a (diff) |
mb/google/mancomb: Update HUB_RST_L setting in GPIO
Configure USB HUB_RESET_L gpio to high.
BUG=b:187485847
TEST=Build and boot from USB to OS, check the USB function.
Signed-off-by: Ivy Jian <ivy_jian@compal.corp-partner.google.com>
Change-Id: I94e4806c7463030df31f8d819510f9533a622f2a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54078
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/mancomb/variants/baseboard/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/mancomb/variants/baseboard/gpio.c b/src/mainboard/google/mancomb/variants/baseboard/gpio.c index f8291172b6..5ccbc10051 100644 --- a/src/mainboard/google/mancomb/variants/baseboard/gpio.c +++ b/src/mainboard/google/mancomb/variants/baseboard/gpio.c @@ -51,7 +51,7 @@ static const struct soc_amd_gpio base_gpio_table[] = { /* AC_PRES */ PAD_NF(GPIO_23, AC_PRES, PULL_UP), /* HUB_RST_L */ - PAD_GPO(GPIO_24, LOW), + PAD_GPO(GPIO_24, HIGH), /* GPIO_25: Not available */ /* TODO: change back to PCIE_RST_L when we figure out why PCIE_RST doesn't go high. */ PAD_GPO(GPIO_26, HIGH), |