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-only */
2 
3 #include <bootblock_common.h>
4 #include <soc/clk.h>
5 #include <soc/wakeup.h>
6 
8 {
10  wakeup();
11  /* Never returns. */
12  }
13 
14  /* For most ARM systems, we have to initialize firmware media source
15  * (ex, SPI, SD/MMC, or eMMC) now; but for Exynos platform, that is
16  * already handled by iROM so there's no need to setup again.
17  */
18 }
void bootblock_soc_init(void)
Definition: bootblock.c:27
int get_wakeup_state(void)
Definition: wakeup.c:17
@ WAKEUP_DIRECT
Definition: wakeup.h:15
void wakeup(void)
Definition: wakeup.c:6