/* 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;
}