summaryrefslogtreecommitdiffstats
path: root/src/mainboard/system76/gaze16/variants/gaze16-3050/gpio_early.c
blob: 8c97e7f45eab4b9b27f1bc153169330d9ed46d53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */

#include <soc/gpio.h>
#include <variant/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
	PAD_CFG_NF(GPP_F19, NONE, DEEP, NF1), // NB_ENAVDD
	PAD_CFG_GPO(GPP_F8, 0, DEEP), // DGPU_RST#_PCH
	PAD_CFG_GPO(GPP_F9, 0, DEEP), // DGPU_PWR_EN
};

void variant_configure_early_gpios(void)
{
	gpio_configure_pads(early_gpio_table, ARRAY_SIZE(early_gpio_table));
}