blob: 85b9307d456100b45dc09507ab0b9586ea38e90e [file] [log] [blame]
Jeremy Soller6cb18a52023-06-23 16:01:24 -06001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <mainboard/gpio.h>
4#include <soc/gpio.h>
5
6static const struct pad_config early_gpio_table[] = {
7 PAD_CFG_GPO(GPP_A14, 0, DEEP), // DGPU_PWR_EN
8 PAD_CFG_GPO(GPP_B2, 0, DEEP), // DGPU_RST#_PCH
9 PAD_CFG_NF(GPP_H10, NONE, DEEP, NF1), // UART0_RX
10 PAD_CFG_NF(GPP_H11, NONE, DEEP, NF1), // UART0_TX
11};
12
13void mainboard_configure_early_gpios(void)
14{
15 gpio_configure_pads(early_gpio_table, ARRAY_SIZE(early_gpio_table));
16}