2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-12-26 05:55:49 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Andes Technology Corporation
|
|
|
|
* Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
|
|
|
|
* Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
|
|
|
|
* Rick Chen, Andes Technology Corporation <rick@andestech.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:00 +00:00
|
|
|
#include <bootstage.h>
|
2017-12-26 05:55:49 +00:00
|
|
|
#include <command.h>
|
2018-11-22 10:26:32 +00:00
|
|
|
#include <dm.h>
|
2019-12-28 17:44:54 +00:00
|
|
|
#include <fdt_support.h>
|
2019-12-28 17:45:07 +00:00
|
|
|
#include <hang.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2018-11-22 10:26:32 +00:00
|
|
|
#include <dm/root.h>
|
2017-12-26 05:55:49 +00:00
|
|
|
#include <image.h>
|
|
|
|
#include <asm/byteorder.h>
|
2018-09-26 13:55:16 +00:00
|
|
|
#include <asm/csr.h>
|
2019-03-17 18:28:38 +00:00
|
|
|
#include <asm/smp.h>
|
2018-10-15 09:20:59 +00:00
|
|
|
#include <dm/device.h>
|
|
|
|
#include <dm/root.h>
|
|
|
|
#include <u-boot/zlib.h>
|
2017-12-26 05:55:49 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2018-04-23 05:59:46 +00:00
|
|
|
__weak void board_quiesce_devices(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-11-22 10:26:32 +00:00
|
|
|
/**
|
|
|
|
* announce_and_cleanup() - Print message and prepare for kernel boot
|
|
|
|
*
|
|
|
|
* @fake: non-zero to do everything except actually boot
|
|
|
|
*/
|
|
|
|
static void announce_and_cleanup(int fake)
|
2017-12-26 05:55:49 +00:00
|
|
|
{
|
2018-11-22 10:26:32 +00:00
|
|
|
printf("\nStarting kernel ...%s\n\n", fake ?
|
|
|
|
"(fake run for tracing)" : "");
|
|
|
|
bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
|
|
|
|
#ifdef CONFIG_BOOTSTAGE_FDT
|
|
|
|
bootstage_fdt_add_report();
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_BOOTSTAGE_REPORT
|
|
|
|
bootstage_report();
|
|
|
|
#endif
|
2017-12-26 05:55:49 +00:00
|
|
|
|
2018-11-22 10:26:32 +00:00
|
|
|
#ifdef CONFIG_USB_DEVICE
|
|
|
|
udc_disconnect();
|
|
|
|
#endif
|
2017-12-26 05:55:49 +00:00
|
|
|
|
2018-11-22 10:26:32 +00:00
|
|
|
board_quiesce_devices();
|
2017-12-26 05:55:49 +00:00
|
|
|
|
2018-11-22 10:26:32 +00:00
|
|
|
/*
|
|
|
|
* Call remove function of all devices with a removal flag set.
|
|
|
|
* This may be useful for last-stage operations, like cancelling
|
|
|
|
* of DMA operation or releasing device internal buffers.
|
|
|
|
*/
|
|
|
|
dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
|
2017-12-26 05:55:49 +00:00
|
|
|
|
2018-11-22 10:26:32 +00:00
|
|
|
cleanup_before_linux();
|
|
|
|
}
|
2017-12-26 05:55:49 +00:00
|
|
|
|
2018-11-22 10:26:32 +00:00
|
|
|
static void boot_prep_linux(bootm_headers_t *images)
|
|
|
|
{
|
2017-12-26 05:55:49 +00:00
|
|
|
if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
|
|
|
|
#ifdef CONFIG_OF_LIBFDT
|
|
|
|
debug("using: FDT\n");
|
|
|
|
if (image_setup_linux(images)) {
|
|
|
|
printf("FDT creation failed! hanging...");
|
|
|
|
hang();
|
|
|
|
}
|
|
|
|
#endif
|
2018-11-22 10:26:32 +00:00
|
|
|
} else {
|
|
|
|
printf("Device tree not found or missing FDT support\n");
|
|
|
|
hang();
|
2018-03-13 06:59:41 +00:00
|
|
|
}
|
2018-11-22 10:26:32 +00:00
|
|
|
}
|
2017-12-26 05:55:49 +00:00
|
|
|
|
2018-11-22 10:26:32 +00:00
|
|
|
static void boot_jump_linux(bootm_headers_t *images, int flag)
|
|
|
|
{
|
|
|
|
void (*kernel)(ulong hart, void *dtb);
|
|
|
|
int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
|
2019-03-17 18:28:38 +00:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
int ret;
|
|
|
|
#endif
|
2017-12-26 05:55:49 +00:00
|
|
|
|
2018-11-22 10:26:32 +00:00
|
|
|
kernel = (void (*)(ulong, void *))images->ep;
|
2018-10-15 09:20:59 +00:00
|
|
|
|
2018-11-22 10:26:32 +00:00
|
|
|
bootstage_mark(BOOTSTAGE_ID_RUN_OS);
|
|
|
|
|
2018-12-21 15:13:41 +00:00
|
|
|
debug("## Transferring control to kernel (at address %08lx) ...\n",
|
2018-11-22 10:26:32 +00:00
|
|
|
(ulong)kernel);
|
2018-09-26 13:55:16 +00:00
|
|
|
|
2018-11-22 10:26:32 +00:00
|
|
|
announce_and_cleanup(fake);
|
2018-03-13 06:59:41 +00:00
|
|
|
|
2018-11-22 10:26:32 +00:00
|
|
|
if (!fake) {
|
2019-03-17 18:28:38 +00:00
|
|
|
if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
ret = smp_call_function(images->ep,
|
2019-12-08 22:28:51 +00:00
|
|
|
(ulong)images->ft_addr, 0, 0);
|
2019-03-17 18:28:38 +00:00
|
|
|
if (ret)
|
|
|
|
hang();
|
|
|
|
#endif
|
2018-12-12 14:12:46 +00:00
|
|
|
kernel(gd->arch.boot_hart, images->ft_addr);
|
2019-03-17 18:28:38 +00:00
|
|
|
}
|
2018-11-22 10:26:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
int do_bootm_linux(int flag, int argc, char *const argv[],
|
2018-11-22 10:26:32 +00:00
|
|
|
bootm_headers_t *images)
|
|
|
|
{
|
|
|
|
/* No need for those on RISC-V */
|
|
|
|
if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
|
|
|
|
return -1;
|
2017-12-26 05:55:49 +00:00
|
|
|
|
2018-11-22 10:26:32 +00:00
|
|
|
if (flag & BOOTM_STATE_OS_PREP) {
|
|
|
|
boot_prep_linux(images);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
|
|
|
|
boot_jump_linux(images, flag);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
boot_prep_linux(images);
|
|
|
|
boot_jump_linux(images, flag);
|
|
|
|
return 0;
|
2017-12-26 05:55:49 +00:00
|
|
|
}
|
2018-12-21 15:13:41 +00:00
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
int do_bootm_vxworks(int flag, int argc, char *const argv[],
|
2018-12-21 15:13:41 +00:00
|
|
|
bootm_headers_t *images)
|
|
|
|
{
|
|
|
|
return do_bootm_linux(flag, argc, argv, images);
|
|
|
|
}
|