repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cpu/x86/smm/pci_resource_store: Store DEV/VEN ID
[coreboot2.git]
/
src
/
mainboard
/
intel
/
minnow3
/
bootblock.c
blob
e2a339138ff90650e507cc78b2e61e634f91bb8f
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <bootblock_common.h>
4
#include <soc/gpio.h>
5
6
#include
"gpio.h"
7
8
void
bootblock_mainboard_early_init
(
void
)
9
{
10
const struct
pad_config
*
pads
;
11
size_t
num
;
12
13
pads
=
early_gpio_table
(&
num
);
14
gpio_configure_pads
(
pads
,
num
);
15
}