/* SPDX-License-Identifier: GPL-2.0-only */ #include #include #include #include /* Early pad configuration in bootblock */ static const struct pad_config early_gpio_table[] = { /* WWAN_RST# */ PAD_CFG_GPO(GPP_F14, 0, PLTRST), /* WWAN_PWR_EN */ PAD_CFG_GPO(GPP_F21, 1, DEEP), }; void variant_configure_early_gpio_pads(void) { gpio_configure_pads(early_gpio_table, ARRAY_SIZE(early_gpio_table)); }