• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <device/mmio.h>
4 #include <bootblock_common.h>
5 #include <console/console.h>
6 #include <soc/addressmap.h>
7 
bootblock_soc_init(void)8 void bootblock_soc_init(void)
9 {
10 	printk(BIOS_INFO, "Boot mode: %d\n", read32((uint32_t *)FU540_MSEL));
11 }
12