coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
bootblock.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #include <baseboard/variants.h>
4 #include <bootblock_common.h>
6 #include <soc/gpio.h>
7 #include <variant/gpio.h>
8 
9 static void early_config_gpio(void)
10 {
11  const struct pad_config *early_gpio_table;
12  size_t num_gpios = 0;
13 
16 }
17 
19 {
22 }
static const struct pad_config early_gpio_table[]
Definition: gpio_early.c:7
void wilco_ec_early_init(void)
wilco_ec_early_init
Definition: bootblock.c:36
__weak void bootblock_mainboard_init(void)
Definition: bootblock.c:19
const struct pad_config * variant_early_gpio_table(size_t *num)
Definition: gpio.c:204
static void early_config_gpio(void)
Definition: bootblock.c:9
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