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>
|
|
|
|
#include <command.h>
|
|
|
|
#include <image.h>
|
|
|
|
#include <u-boot/zlib.h>
|
|
|
|
#include <asm/byteorder.h>
|
2018-09-26 13:55:16 +00:00
|
|
|
#include <asm/csr.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)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-12-26 05:55:49 +00:00
|
|
|
int arch_fixup_fdt(void *blob)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
|
|
|
|
{
|
2018-09-26 13:55:08 +00:00
|
|
|
void (*kernel)(ulong hart, void *dtb);
|
2017-12-26 05:55:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* allow the PREP bootm subcommand, it is required for bootm to work
|
|
|
|
*/
|
|
|
|
if (flag & BOOTM_STATE_OS_PREP)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
|
|
|
|
return 1;
|
|
|
|
|
2018-09-26 13:55:08 +00:00
|
|
|
kernel = (void (*)(ulong, void *))images->ep;
|
2017-12-26 05:55:49 +00:00
|
|
|
|
|
|
|
bootstage_mark(BOOTSTAGE_ID_RUN_OS);
|
|
|
|
|
|
|
|
debug("## Transferring control to Linux (at address %08lx) ...\n",
|
2018-09-26 13:55:08 +00:00
|
|
|
(ulong)kernel);
|
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-03-13 06:59:41 +00:00
|
|
|
}
|
2017-12-26 05:55:49 +00:00
|
|
|
|
|
|
|
/* we assume that the kernel is in place */
|
|
|
|
printf("\nStarting kernel ...\n\n");
|
|
|
|
|
|
|
|
cleanup_before_linux();
|
2018-09-26 13:55:16 +00:00
|
|
|
|
2017-12-26 05:55:49 +00:00
|
|
|
if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
|
2018-09-26 13:55:16 +00:00
|
|
|
kernel(csr_read(mhartid), images->ft_addr);
|
2018-03-13 06:59:41 +00:00
|
|
|
|
2017-12-26 05:55:49 +00:00
|
|
|
/* does not return */
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|