aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/octopus/variants/fleex/gpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/octopus/variants/fleex/gpio.c')
-rw-r--r--src/mainboard/google/octopus/variants/fleex/gpio.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/mainboard/google/octopus/variants/fleex/gpio.c b/src/mainboard/google/octopus/variants/fleex/gpio.c
index ea7faf3ae6..920d2c26b0 100644
--- a/src/mainboard/google/octopus/variants/fleex/gpio.c
+++ b/src/mainboard/google/octopus/variants/fleex/gpio.c
@@ -86,48 +86,3 @@ const struct pad_config *variant_override_gpio_table(size_t *num)
return c;
}
-
-/* GPIOs needed prior to ramstage. */
-static const struct pad_config early_gpio_table[] = {
- /* PCH_WP_OD */
- PAD_CFG_GPI(GPIO_190, NONE, DEEP),
- /* H1_PCH_INT_ODL */
- PAD_CFG_GPI_APIC_IOS(GPIO_63, NONE, DEEP, LEVEL, INVERT, TxDRxE,
- DISPUPD),
- /* H1_SLAVE_SPI_CLK_R */
- PAD_CFG_NF(GPIO_79, NONE, DEEP, NF1),
- /* H1_SLAVE_SPI_CS_L_R */
- PAD_CFG_NF(GPIO_80, NONE, DEEP, NF1),
- /* H1_SLAVE_SPI_MISO */
- PAD_CFG_NF(GPIO_82, NONE, DEEP, NF1),
- /* H1_SLAVE_SPI_MOSI_R */
- PAD_CFG_NF(GPIO_83, NONE, DEEP, NF1),
-
- /* WLAN_PE_RST */
- PAD_CFG_GPO(GPIO_164, 0, DEEP),
-
- /*
- * ESPI_IO1 acts as ALERT# (which is open-drain) and requies a weak
- * pull-up for proper operation. Since there is no external pull present
- * on this platform, configure an internal weak pull-up.
- */
- PAD_CFG_NF_IOSSTATE_IOSTERM(GPIO_151, UP_20K, DEEP, NF2, HIZCRx1,
- ENPU),
-};
-
-const struct pad_config *variant_early_gpio_table(size_t *num)
-{
- /*
- * This is a hack to configure EN_PP3300_WLAN based on board id. Once
- * board id 0 is deprecated, we can get rid of this.
- */
- uint32_t bid = board_id();
-
- if (bid == UNDEFINED_STRAPPING_ID || bid < 1)
- gpio_output(GPIO_178, 1);
- else
- gpio_output(GPIO_178, 0);
-
- *num = ARRAY_SIZE(early_gpio_table);
- return early_gpio_table;
-}