f50b6625d9
Change-Id: I7378aa7d6156ece3ab3959707a69f45886f86d21 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43593 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
13 lines
271 B
C
13 lines
271 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include <baseboard/variants.h>
|
|
#include <bootblock_common.h>
|
|
|
|
void bootblock_mainboard_init(void)
|
|
{
|
|
const struct pad_config *pads;
|
|
size_t num;
|
|
|
|
pads = variant_early_gpio_table(&num);
|
|
gpio_configure_pads(pads, num);
|
|
}
|