blob: 1c4d9e07ab05dc0e524ff816c1e3bd86d21c5f57 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#include <bootblock_common.h>
#include <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);
}