mb/google/rauru: Implement regulator interface
[coreboot2.git] / src / mainboard / google / skyrim / variants / markarth / gpio.c
blobc3202280464ff58e43bc56677a9bde5fe4cab421
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #include <baseboard/gpio.h>
3 #include <baseboard/variants.h>
4 #include <gpio.h>
6 /* GPIO configuration in ramstage */
7 static const struct soc_amd_gpio override_gpio_table[] = {
8 /* SOC_PEN_DETECT_ODL => Unused */
9 PAD_NC(GPIO_3),
10 /* EN_PWR_FP => Unused */
11 PAD_NC(GPIO_4),
12 /* EN_PWR_WWAN_X => Unused */
13 PAD_NC(GPIO_8),
14 /* SOC_FP_INT_L => Unused */
15 PAD_NC(GPIO_24),
16 /* SD_AUX_RST_SOC_L => Unused */
17 PAD_NC(GPIO_27),
18 /* WWAN_RST_L => Unused */
19 PAD_NC(GPIO_42),
22 void variant_override_gpio_table(const struct soc_amd_gpio **gpio, size_t *size)
24 *size = ARRAY_SIZE(override_gpio_table);
25 *gpio = override_gpio_table;