coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
bootblock_mainboard.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <bootblock_common.h>
4 #include <soc/gpio.h>
5 #include "gpio.h"
6 
7 static void early_config_gpio(void)
8 {
9  /* This is a hack for FSP because it does things in MemoryInit()
10  * which it shouldn't do. We have to prepare certain gpios here
11  * because of the brokenness in FSP. */
13 }
14 
16 {
18 }
static const struct pad_config early_gpio_table[]
Definition: gpio_early.c:7
#define ARRAY_SIZE(a)
Definition: helpers.h:12
void bootblock_mainboard_init(void)
static void early_config_gpio(void)
void gpio_configure_pads(const struct soc_amd_gpio *gpio_list_ptr, size_t size)
program a particular set of GPIO
Definition: gpio.c:307