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
mainboard/intel/avenuecity_crb: Update full IIO configuration
[coreboot2.git]
/
src
/
mainboard
/
google
/
rauru
/
bootblock.c
blob
578ec7558a0b4b85a07a61cb2fd66ba6df16dfbf
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <bootblock_common.h>
4
#include <soc/spi.h>
5
6
#include
"gpio.h"
7
8
static void
usb3_hub_reset
(
void
)
9
{
10
gpio_output
(
GPIO
(
USB_RST
),
1
);
11
}
12
13
void
bootblock_mainboard_init
(
void
)
14
{
15
mtk_snfc_init
();
16
usb3_hub_reset
();
17
}