blob: 0543c31ec20cff2693bb3af4cde76cb6fc11feb2 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#include <bootblock_common.h>
#include <soc/gpio.h>
#include <soc/southbridge.h>
#include "../gpio.h"
void bootblock_mainboard_early_init(void)
{
size_t num_gpios;
const struct soc_amd_gpio *gpios;
gpios = early_gpio_table(&num_gpios);
gpio_configure_pads(gpios, num_gpios);
}