summaryrefslogtreecommitdiff
path: root/src/mainboard/google/skyrim/variants/markarth/gpio.c
blob: 9753179b09c775d972b005016f42dbe1aefade8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <baseboard/gpio.h>
#include <baseboard/variants.h>
#include <gpio.h>

/* GPIO configuration in ramstage */
static const struct soc_amd_gpio override_gpio_table[] = {

	/* SOC_PEN_DETECT_ODL => Unused */
	PAD_NC(GPIO_3),
	/* EN_PWR_FP => Unused */
	PAD_NC(GPIO_4),
	/* EN_PWR_WWAN_X => Unused */
	PAD_NC(GPIO_8),
	/* SOC_FP_INT_L => Unused */
	PAD_NC(GPIO_24),
	/* SD_AUX_RST_SOC_L => Unused */
	PAD_NC(GPIO_27),
	/* WWAN_RST_L => Unused */
	PAD_NC(GPIO_42),
};

void variant_override_gpio_table(const struct soc_amd_gpio **gpio, size_t *size)
{
	*size = ARRAY_SIZE(override_gpio_table);
	*gpio = override_gpio_table;
}