diff options
Diffstat (limited to 'src/mainboard/system76/darp7/gpio_early.c')
-rw-r--r-- | src/mainboard/system76/darp7/gpio_early.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/mainboard/system76/darp7/gpio_early.c b/src/mainboard/system76/darp7/gpio_early.c new file mode 100644 index 0000000000..80f37c6553 --- /dev/null +++ b/src/mainboard/system76/darp7/gpio_early.c @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include <mainboard/gpio.h> +#include <soc/gpio.h> + +static const struct pad_config early_gpio_table[] = { + PAD_CFG_NF(GPP_C20, NONE, DEEP, NF1), // UART2_RXD + PAD_CFG_NF(GPP_C21, NONE, DEEP, NF1), // UART2_TXD +}; + +void mainboard_configure_early_gpios(void) +{ + gpio_configure_pads(early_gpio_table, ARRAY_SIZE(early_gpio_table)); +} |