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 <arch/cache.h>
4 #include <bootblock_common.h>
5 #include <soc/clk.h>
6 #include <soc/wakeup.h>
7 #include <soc/cpu.h>
8 
9 /* convenient shorthand (in MB) */
10 #define SRAM_START (EXYNOS5_SRAM_BASE >> 20)
11 #define SRAM_SIZE 1
12 #define SRAM_END (SRAM_START + SRAM_SIZE) /* plus one... */
13 
15 {
17  wakeup();
18  /* Never returns. */
19  }
20 
21  /* set up dcache and MMU */
22  mmu_init();
27 
28  /* For most ARM systems, we have to initialize firmware media source
29  * (ex, SPI, SD/MMC, or eMMC) now; but for Exynos platform, that is
30  * already handled by iROM so there's no need to setup again.
31  */
32 }
void dcache_mmu_enable(void)
Definition: cache.c:53
void mmu_config_range(u32 start_mb, u32 size_mb, enum dcache_policy policy)
Definition: mmu.c:221
void mmu_init(void)
Definition: mmu.c:242
void mmu_disable_range(u32 start_mb, u32 size_mb)
Definition: mmu.c:211
@ DCACHE_WRITEBACK
Definition: cache.h:364
@ DCACHE_OFF
Definition: cache.h:363
void bootblock_soc_init(void)
Definition: bootblock.c:27
#define SRAM_SIZE
Definition: bootblock.c:11
#define SRAM_START
Definition: bootblock.c:10
#define SRAM_END
Definition: bootblock.c:12
int get_wakeup_state(void)
Definition: wakeup.c:17
@ WAKEUP_DIRECT
Definition: wakeup.h:15
void wakeup(void)
Definition: wakeup.c:6