blob: eaa095ba99faed825b6be122852b3776d887a325 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Michal Simek26acb3e2014-01-21 07:30:37 +01002/*
3 * (C) Copyright 2013 - 2014 Xilinx, Inc
4 *
5 * Michal Simek <michal.simek@xilinx.com>
Michal Simek26acb3e2014-01-21 07:30:37 +01006 */
7
8#include <common.h>
Simon Glassed38aef2020-05-10 11:40:03 -06009#include <command.h>
Michal Simek26acb3e2014-01-21 07:30:37 +010010#include <image.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Michal Simek26acb3e2014-01-21 07:30:37 +010012#include <spl.h>
Michal Simek26acb3e2014-01-21 07:30:37 +010013#include <asm/io.h>
14#include <asm/u-boot.h>
Ovidiu Panait9f97ced2021-11-30 18:33:57 +020015#include <linux/stringify.h>
Michal Simek26acb3e2014-01-21 07:30:37 +010016
Ovidiu Panait3d68e1f2021-11-30 18:33:50 +020017void board_boot_order(u32 *spl_boot_list)
Michal Simek26acb3e2014-01-21 07:30:37 +010018{
Ovidiu Panait3d68e1f2021-11-30 18:33:50 +020019 spl_boot_list[0] = BOOT_DEVICE_NOR;
20 spl_boot_list[1] = BOOT_DEVICE_RAM;
21 spl_boot_list[2] = BOOT_DEVICE_SPI;
Michal Simek26acb3e2014-01-21 07:30:37 +010022}
23
24/* Board initialization after bss clearance */
25void spl_board_init(void)
26{
Michal Simek26acb3e2014-01-21 07:30:37 +010027 /* enable console uart printing */
28 preloader_console_init();
29}
30
31#ifdef CONFIG_SPL_OS_BOOT
Vikas Manocha62b021c2017-04-07 15:38:13 -070032void __noreturn jump_to_image_linux(struct spl_image_info *spl_image)
Michal Simek26acb3e2014-01-21 07:30:37 +010033{
Vikas Manocha62b021c2017-04-07 15:38:13 -070034 debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg);
Michal Simek26acb3e2014-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 Glassb805c352016-09-24 18:19:54 -060038 (image_entry_arg_t)spl_image->entry_point;
Michal Simek26acb3e2014-01-21 07:30:37 +010039
Vikas Manocha62b021c2017-04-07 15:38:13 -070040 image_entry(NULL, 0, (ulong)spl_image->arg);
Michal Simek26acb3e2014-01-21 07:30:37 +010041}
Michal Simek26acb3e2014-01-21 07:30:37 +010042
43int spl_start_uboot(void)
44{
Ovidiu Panaitadc28912023-01-25 18:41:56 +020045 return 0;
Michal Simek26acb3e2014-01-21 07:30:37 +010046}
Ovidiu Panaitd482acd2023-01-25 18:41:55 +020047#endif /* CONFIG_SPL_OS_BOOT */
Michal Simek4e39ea82018-07-13 08:26:28 +020048
Simon Glassed38aef2020-05-10 11:40:03 -060049int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Michal Simek4e39ea82018-07-13 08:26:28 +020050{
Ovidiu Panait9f97ced2021-11-30 18:33:57 +020051 __asm__ __volatile__ (
52 "mts rmsr, r0;" \
53 "brai " __stringify(CONFIG_XILINX_MICROBLAZE0_VECTOR_BASE_ADDR));
Michal Simek4e39ea82018-07-13 08:26:28 +020054
55 return 0;
56}