util/intelp2m: Print the current project version
[coreboot2.git] / src / mainboard / system76 / whl-u / gpio_early.c
blob80f37c65535e172ee5b167ee32c4b7fc955e4472
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_C20, NONE, DEEP, NF1), // UART2_RXD
8 PAD_CFG_NF(GPP_C21, NONE, DEEP, NF1), // UART2_TXD
9 };
11 void mainboard_configure_early_gpios(void)
13 gpio_configure_pads(early_gpio_table, ARRAY_SIZE(early_gpio_table));