2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-01-21 06:30:37 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2013 - 2014 Xilinx, Inc
|
|
|
|
*
|
|
|
|
* Michal Simek <michal.simek@xilinx.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <image.h>
|
|
|
|
#include <spl.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/u-boot.h>
|
|
|
|
|
|
|
|
bool boot_linux;
|
|
|
|
|
|
|
|
u32 spl_boot_device(void)
|
|
|
|
{
|
|
|
|
return BOOT_DEVICE_NOR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Board initialization after bss clearance */
|
|
|
|
void spl_board_init(void)
|
|
|
|
{
|
|
|
|
/* enable console uart printing */
|
|
|
|
preloader_console_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_SPL_OS_BOOT
|
2017-04-07 22:38:13 +00:00
|
|
|
void __noreturn jump_to_image_linux(struct spl_image_info *spl_image)
|
2014-01-21 06:30:37 +00:00
|
|
|
{
|
2017-04-07 22:38:13 +00:00
|
|
|
debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg);
|
2014-01-21 06:30:37 +00:00
|
|
|
typedef void (*image_entry_arg_t)(char *, ulong, ulong)
|
|
|
|
__attribute__ ((noreturn));
|
|
|
|
image_entry_arg_t image_entry =
|
2016-09-25 00:19:54 +00:00
|
|
|
(image_entry_arg_t)spl_image->entry_point;
|
2014-01-21 06:30:37 +00:00
|
|
|
|
2017-04-07 22:38:13 +00:00
|
|
|
image_entry(NULL, 0, (ulong)spl_image->arg);
|
2014-01-21 06:30:37 +00:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_SPL_OS_BOOT */
|
|
|
|
|
|
|
|
int spl_start_uboot(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_SPL_OS_BOOT
|
|
|
|
if (boot_linux)
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2018-07-13 06:26:28 +00:00
|
|
|
|
|
|
|
int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|
|
|
{
|
|
|
|
__asm__ __volatile__ ("mts rmsr, r0;" \
|
|
|
|
"bra r0");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|