• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <console/console.h>
4 #include <program_loading.h>
5 
6 void qemu_power8_main(void);
7 
8 /* The qemu part of all this is very, very non-hardware like.
9  * So it gets its own bootblock.
10  */
qemu_power8_main(void)11 void qemu_power8_main(void)
12 {
13 	if (CONFIG(BOOTBLOCK_CONSOLE)) {
14 		console_init();
15 	}
16 
17 	run_romstage();
18 }
19