blob: 1c4d9e07ab05dc0e524ff816c1e3bd86d21c5f57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* 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);
}
|