summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvy Jian <ivy_jian@compal.corp-partner.google.com>2021-04-23 11:26:47 +0800
committerPatrick Georgi <pgeorgi@google.com>2021-04-26 08:29:15 +0000
commitc20f33960cbf57aa33a1b8ea32799511dabbb18c (patch)
treea1ef0231afb5ea0906cba4e4ec35e0d83fd4119d
parent4f4eba9149d1f087cdfdff4194b8762263114117 (diff)
downloadcoreboot-c20f33960cbf57aa33a1b8ea32799511dabbb18c.tar.gz
coreboot-c20f33960cbf57aa33a1b8ea32799511dabbb18c.tar.bz2
coreboot-c20f33960cbf57aa33a1b8ea32799511dabbb18c.zip
mb/google/mancomb: PCIe GPIOs - enable enables, disable resets
To train PCIe devices, the devices need to be enabled and taken out of reset. This patch does the bare minimum needed to train PCIe. It is not intended to handle timings, which will be addressed later. Copy the enables for WLAN into early GPIO Init so that they're enabled before FSP-M runs and trains the PCIe busses. Again, this patch is the minimum to let the FSP train the PCIe busses. BUG=b:182202136 TEST=Boot guybrush from NVME. Signed-off-by: Ivy Jian <ivy_jian@compal.corp-partner.google.com> Change-Id: I5e3e9fe21f44b832e26b0942759ae2ec96ec6c82 Reviewed-on: https://review.coreboot.org/c/coreboot/+/52621 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: EricR Lai <ericr_lai@compal.corp-partner.google.com>
-rw-r--r--src/mainboard/google/mancomb/variants/baseboard/gpio.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/mainboard/google/mancomb/variants/baseboard/gpio.c b/src/mainboard/google/mancomb/variants/baseboard/gpio.c
index f647bec4138b..a9346a3a5f22 100644
--- a/src/mainboard/google/mancomb/variants/baseboard/gpio.c
+++ b/src/mainboard/google/mancomb/variants/baseboard/gpio.c
@@ -20,7 +20,7 @@ static const struct soc_amd_gpio base_gpio_table[] = {
/* AGPIO5 */
PAD_NC(GPIO_5),
/* EN_PP3300_WLAN */
- PAD_GPO(GPIO_6, LOW),
+ PAD_GPO(GPIO_6, HIGH),
/* AGPIO7 */
PAD_NC(GPIO_7),
/* EN_PP3300_LAN */
@@ -59,7 +59,7 @@ static const struct soc_amd_gpio base_gpio_table[] = {
PAD_NF(GPIO_27, PCIE_RST1_L, PULL_NONE),
/* GPIO_28: Not available */
/* WLAN_AUX_RESET */
- PAD_GPO(GPIO_29, HIGH),
+ PAD_GPO(GPIO_29, LOW),
/* ESPI_CS_L */
PAD_NF(GPIO_30, ESPI_CS_L, PULL_NONE),
/* AGPIO31 */
@@ -68,7 +68,7 @@ static const struct soc_amd_gpio base_gpio_table[] = {
PAD_NC(GPIO_32),
/* GPIO_33 - GPIO_39: Not available */
/* SSD_AUX_RESET_L */
- PAD_GPO(GPIO_40, LOW),
+ PAD_GPO(GPIO_40, HIGH),
/* GPIO_41: Not available */
/* EGPIO42 */
PAD_NC(GPIO_42),
@@ -80,7 +80,7 @@ static const struct soc_amd_gpio base_gpio_table[] = {
/* AGPIO69 */
PAD_NC(GPIO_69),
/* SD_AUX_RESET_L */
- PAD_GPO(GPIO_70, LOW),
+ PAD_GPO(GPIO_70, HIGH),
/* GPIO_71 - GPIO_73: Not available */
/* EGPIO74 */
PAD_NC(GPIO_74),
@@ -138,7 +138,7 @@ static const struct soc_amd_gpio base_gpio_table[] = {
/* AGPIO129 */
PAD_NC(GPIO_129),
/* WLAN_DISABLE */
- PAD_GPO(GPIO_130, HIGH),
+ PAD_GPO(GPIO_130, LOW),
/* CLK_REQ3_L */
PAD_NF(GPIO_131, CLK_REQ3_L, PULL_NONE),
/* BT_DISABLE */
@@ -165,6 +165,10 @@ static const struct soc_amd_gpio base_gpio_table[] = {
/* Early GPIO configuration */
static const struct soc_amd_gpio early_gpio_table[] = {
+ /* EN_PP3300_WLAN */
+ PAD_GPO(GPIO_6, HIGH),
+ /* WLAN_DISABLE */
+ PAD_GPO(GPIO_130, LOW),
/* GSC_SOC_INT_L */
PAD_INT(GPIO_3, PULL_NONE, EDGE_LOW, STATUS_DELIVERY),
/* I2C3_SCL */