summaryrefslogtreecommitdiffstats
path: root/src/mainboard/amd/gardenia/bootblock/bootblock.c
blob: 27bdc0a3840ad3d37fed37a77fd39feb04cbb239 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <bootblock_common.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);
	program_gpios(gpios, num_gpios);
}