aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/hatch/variants/baseboard
diff options
context:
space:
mode:
authorTim Wawrzynczak <twawrzynczak@chromium.org>2019-08-07 15:33:04 -0600
committerMartin Roth <martinroth@google.com>2019-08-09 01:25:46 +0000
commit08eca5dcc3659e5211eec94ef4c3c3fc4bf5d90b (patch)
treedf04efbadf5334caaa210f0f13ac18b3e02afe83 /src/mainboard/google/hatch/variants/baseboard
parentc6e37081749c3518a87a24b2b92bd9b0e293ebbf (diff)
mb/google/hatch: Refactor override_early_gpio_table
There was the potential for misuse of the override early GPIO table, because if the override early GPIO table did not have a corresponding entry in the base table, it would not get overridden, and there was no way to know except manual inspection (this has already happened here), so now all hatch mainboards are required to explicitly list out all of their required early GPIOs. TEST=booted several hatch boards, verified that they can communicate with TPM and successfully train memory Change-Id: I0552b08a284fd6fb41a09fef431a0d006b0cf0bd Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34782 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
Diffstat (limited to 'src/mainboard/google/hatch/variants/baseboard')
-rw-r--r--src/mainboard/google/hatch/variants/baseboard/gpio.c48
-rw-r--r--src/mainboard/google/hatch/variants/baseboard/include/baseboard/variants.h7
2 files changed, 4 insertions, 51 deletions
diff --git a/src/mainboard/google/hatch/variants/baseboard/gpio.c b/src/mainboard/google/hatch/variants/baseboard/gpio.c
index 38d44f336b..fcb1a614cc 100644
--- a/src/mainboard/google/hatch/variants/baseboard/gpio.c
+++ b/src/mainboard/google/hatch/variants/baseboard/gpio.c
@@ -426,48 +426,6 @@ const struct pad_config *__weak variant_sleep_gpio_table(
return default_sleep_gpio_table;
}
-/* GPIOs needed prior to ramstage. */
-static const struct pad_config early_gpio_table[] = {
- /* A12 : FPMCU_RST_ODL */
- PAD_CFG_GPO(GPP_A12, 0, DEEP),
- /* B15 : H1_SLAVE_SPI_CS_L */
- PAD_CFG_NF(GPP_B15, NONE, DEEP, NF1),
- /* B16 : H1_SLAVE_SPI_CLK */
- PAD_CFG_NF(GPP_B16, NONE, DEEP, NF1),
- /* B17 : H1_SLAVE_SPI_MISO_R */
- PAD_CFG_NF(GPP_B17, NONE, DEEP, NF1),
- /* B18 : H1_SLAVE_SPI_MOSI_R */
- PAD_CFG_NF(GPP_B18, NONE, DEEP, NF1),
- /* C14 : BT_DISABLE_L */
- PAD_CFG_GPO(GPP_C14, 0, DEEP),
- /* PCH_WP_OD */
- PAD_CFG_GPI(GPP_C20, NONE, DEEP),
- /* C21 : H1_PCH_INT_ODL */
- PAD_CFG_GPI_APIC(GPP_C21, NONE, PLTRST, LEVEL, INVERT),
- /* C23 : WLAN_PE_RST# */
- PAD_CFG_GPO(GPP_C23, 1, DEEP),
- /* E1 : M2_SSD_PEDET */
- PAD_CFG_NF(GPP_E1, NONE, DEEP, NF1),
- /* E5 : SATA_DEVSLP1 */
- PAD_CFG_NF(GPP_E5, NONE, PLTRST, NF1),
- /* F2 : MEM_CH_SEL */
- PAD_CFG_GPI(GPP_F2, NONE, PLTRST),
- /* F11 : PCH_MEM_STRAP2 */
- PAD_CFG_GPI(GPP_F11, NONE, PLTRST),
- /* F20 : PCH_MEM_STRAP0 */
- PAD_CFG_GPI(GPP_F20, NONE, PLTRST),
- /* F21 : PCH_MEM_STRAP1 */
- PAD_CFG_GPI(GPP_F21, NONE, PLTRST),
- /* F22 : PCH_MEM_STRAP3 */
- PAD_CFG_GPI(GPP_F22, NONE, PLTRST),
-};
-
-const struct pad_config *base_early_gpio_table(size_t *num)
-{
- *num = ARRAY_SIZE(early_gpio_table);
- return early_gpio_table;
-}
-
static const struct cros_gpio cros_gpios[] = {
CROS_GPIO_REC_AL(CROS_GPIO_VIRTUAL, CROS_GPIO_DEVICE_NAME),
CROS_GPIO_WP_AH(GPIO_PCH_WP, CROS_GPIO_DEVICE_NAME),
@@ -485,9 +443,3 @@ const struct pad_config *__weak override_gpio_table(size_t *num)
*num = 0;
return NULL;
}
-
-const struct pad_config *__weak override_early_gpio_table(size_t *num)
-{
- *num = 0;
- return NULL;
-}
diff --git a/src/mainboard/google/hatch/variants/baseboard/include/baseboard/variants.h b/src/mainboard/google/hatch/variants/baseboard/include/baseboard/variants.h
index 71a2362b00..920e428484 100644
--- a/src/mainboard/google/hatch/variants/baseboard/include/baseboard/variants.h
+++ b/src/mainboard/google/hatch/variants/baseboard/include/baseboard/variants.h
@@ -23,13 +23,11 @@
/*
* The next set of functions return the gpio table and fill in the number of
- * entries for each table. The "base" GPIOs live in the "hatch" variant, and
+ * entries for each table. The "base" GPIOs live in the "baseboard" variant, and
* the overrides live with the specific board (kohaku, kled, etc.).
*/
const struct pad_config *base_gpio_table(size_t *num);
-const struct pad_config *base_early_gpio_table(size_t *num);
const struct pad_config *override_gpio_table(size_t *num);
-const struct pad_config *override_early_gpio_table(size_t *num);
/* Return board specific memory configuration */
void variant_memory_params(struct cnl_mb_cfg *bcfg);
@@ -40,6 +38,9 @@ int variant_memory_sku(void);
/* Return variant specific gpio pads to be configured during sleep */
const struct pad_config *variant_sleep_gpio_table(u8 slp_typ, size_t *num);
+/* Return GPIO pads that need to be configured before ramstage */
+const struct pad_config *variant_early_gpio_table(size_t *num);
+
/* Return ChromeOS gpio table and fill in number of entries. */
const struct cros_gpio *variant_cros_gpios(size_t *num);