repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mb/hardkernel/odroid-h4: Correct number of jacks in hda_verb.c
[coreboot.git]
/
src
/
mainboard
/
starlabs
/
starfighter
/
bootblock.c
blob
ca48bb1ab22b5c8a8994fababfdba690c5e7455e
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <bootblock_common.h>
4
#include <soc/gpio.h>
5
#include <variants.h>
6
7
void
bootblock_mainboard_init
(
void
)
8
{
9
const struct
pad_config
*
pads
;
10
size_t
num
;
11
12
pads
=
variant_early_gpio_table
(&
num
);
13
gpio_configure_pads
(
pads
,
num
);
14
}