blob: 3d57a5a8593cb2d1c8726f4ca524d0dfd9badf91 [file] [log] [blame]
Michal Simek9d242742014-01-21 07:30:37 +01001/*
2 * (C) Copyright 2013 - 2014 Xilinx, Inc
3 *
4 * Michal Simek <michal.simek@xilinx.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
10#include <image.h>
11#include <spl.h>
Michal Simek9d242742014-01-21 07:30:37 +010012#include <asm/io.h>
13#include <asm/u-boot.h>
14
15DECLARE_GLOBAL_DATA_PTR;
16
17bool boot_linux;
18
19u32 spl_boot_device(void)
20{
21 return BOOT_DEVICE_NOR;
22}
23
24/* Board initialization after bss clearance */
25void spl_board_init(void)
26{
Michal Simek9d242742014-01-21 07:30:37 +010027 /* enable console uart printing */
28 preloader_console_init();
29}
30
31#ifdef CONFIG_SPL_OS_BOOT
Vikas Manocha5bf52502017-04-07 15:38:13 -070032void __noreturn jump_to_image_linux(struct spl_image_info *spl_image)
Michal Simek9d242742014-01-21 07:30:37 +010033{
Vikas Manocha5bf52502017-04-07 15:38:13 -070034 debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg);
Michal Simek9d242742014-01-21 07:30:37 +010035 typedef void (*image_entry_arg_t)(char *, ulong, ulong)
36 __attribute__ ((noreturn));
37 image_entry_arg_t image_entry =
Simon Glassca12e652016-09-24 18:19:54 -060038 (image_entry_arg_t)spl_image->entry_point;
Michal Simek9d242742014-01-21 07:30:37 +010039
Vikas Manocha5bf52502017-04-07 15:38:13 -070040 image_entry(NULL, 0, (ulong)spl_image->arg);
Michal Simek9d242742014-01-21 07:30:37 +010041}
42#endif /* CONFIG_SPL_OS_BOOT */
43
44int spl_start_uboot(void)
45{
46#ifdef CONFIG_SPL_OS_BOOT
47 if (boot_linux)
48 return 0;
49#endif
50
51 return 1;
52}