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/system76/cml-u/dt: Make use of chipset devicetree
[coreboot.git]
/
src
/
soc
/
intel
/
common
/
reset.c
blob
c6c394bd442a76af7d7fb1f947800d825688bd96
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <arch/cache.h>
4
#include <cf9_reset.h>
5
#include <console/console.h>
6
#include <halt.h>
7
#include <reset.h>
8
9
#include
"reset.h"
10
11
void
global_reset
(
void
)
12
{
13
printk
(
BIOS_INFO
,
"%s() called!
\n
"
,
__func__
);
14
cf9_reset_prepare
();
15
dcache_clean_all
();
16
do_global_reset
();
17
halt
();
18
}
19
20
void
do_board_reset
(
void
)
21
{
22
full_reset
();
23
}