mb/ocp/tiogapass: Fix GPIOs
[coreboot2.git] / src / mainboard / system76 / rpl / variants / darp9 / gpio_early.c
blobc80c798b040f1e66ab5a26447af72322e04cffb2
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <mainboard/gpio.h>
4 #include <soc/gpio.h>
6 static const struct pad_config early_gpio_table[] = {
7 PAD_CFG_NF(GPP_H10, NONE, DEEP, NF1), // UART0_RX
8 PAD_CFG_NF(GPP_H11, NONE, DEEP, NF1), // UART0_TX
9 };
11 void mainboard_configure_early_gpios(void)
13 gpio_configure_pads(early_gpio_table, ARRAY_SIZE(early_gpio_table));