2018-05-06 17:58:06 -04:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2004-04-18 21:13:41 +00:00
|
|
|
/*
|
2007-03-11 13:48:24 +01:00
|
|
|
* (C) Copyright 2007 Michal Simek
|
2004-04-18 21:13:41 +00:00
|
|
|
* (C) Copyright 2004 Atmark Techno, Inc.
|
|
|
|
*
|
2007-03-11 13:48:24 +01:00
|
|
|
* Michal SIMEK <monstr@monstr.eu>
|
2004-04-18 21:13:41 +00:00
|
|
|
* Yasushi SHOJI <yashi@atmark-techno.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 11:40:00 -06:00
|
|
|
#include <bootstage.h>
|
2004-04-18 21:13:41 +00:00
|
|
|
#include <command.h>
|
2019-11-14 12:57:39 -07:00
|
|
|
#include <cpu_func.h>
|
2019-08-01 09:46:52 -06:00
|
|
|
#include <env.h>
|
2016-02-22 22:55:43 -07:00
|
|
|
#include <fdt_support.h>
|
2019-12-28 10:45:07 -07:00
|
|
|
#include <hang.h>
|
2007-03-11 13:48:24 +01:00
|
|
|
#include <image.h>
|
2020-05-10 11:40:01 -06:00
|
|
|
#include <lmb.h>
|
2020-05-10 11:40:05 -06:00
|
|
|
#include <log.h>
|
2020-05-10 11:39:56 -06:00
|
|
|
#include <asm/cache.h>
|
2020-10-30 21:38:53 -06:00
|
|
|
#include <asm/global_data.h>
|
2009-04-04 12:49:11 +02:00
|
|
|
#include <u-boot/zlib.h>
|
2007-03-11 13:48:24 +01:00
|
|
|
#include <asm/byteorder.h>
|
2004-04-18 21:13:41 +00:00
|
|
|
|
2019-09-25 10:45:51 +02:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
static ulong get_sp(void)
|
|
|
|
{
|
|
|
|
ulong ret;
|
|
|
|
|
|
|
|
asm("addik %0, r1, 0" : "=r"(ret) : );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void arch_lmb_reserve(struct lmb *lmb)
|
|
|
|
{
|
2021-09-10 22:47:10 +02:00
|
|
|
arch_lmb_reserve_generic(lmb, get_sp(), gd->ram_top, 4096);
|
2019-09-25 10:45:51 +02:00
|
|
|
}
|
|
|
|
|
2019-09-25 09:47:02 +02:00
|
|
|
static void boot_jump_linux(bootm_headers_t *images, int flag)
|
2004-04-18 21:13:41 +00:00
|
|
|
{
|
2019-09-25 09:47:02 +02:00
|
|
|
void (*thekernel)(char *cmdline, ulong rd, ulong dt);
|
|
|
|
ulong dt = (ulong)images->ft_addr;
|
|
|
|
ulong rd_start = images->initrd_start;
|
|
|
|
ulong cmdline = images->cmdline_start;
|
|
|
|
int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
|
2010-04-15 18:27:17 +08:00
|
|
|
|
2013-05-02 12:51:48 +02:00
|
|
|
thekernel = (void (*)(char *, ulong, ulong))images->ep;
|
2010-04-15 18:27:17 +08:00
|
|
|
|
2019-10-17 13:16:56 +02:00
|
|
|
debug("## Transferring control to Linux (at address 0x%08lx) ",
|
|
|
|
(ulong)thekernel);
|
|
|
|
debug("cmdline 0x%08lx, ramdisk 0x%08lx, FDT 0x%08lx...\n",
|
|
|
|
cmdline, rd_start, dt);
|
|
|
|
bootstage_mark(BOOTSTAGE_ID_RUN_OS);
|
|
|
|
|
|
|
|
printf("\nStarting kernel ...%s\n\n", fake ?
|
|
|
|
"(fake run for tracing)" : "");
|
|
|
|
bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
|
2007-03-11 13:48:24 +01:00
|
|
|
|
2022-05-31 21:14:30 +03:00
|
|
|
flush_cache_all();
|
2008-09-10 22:48:09 +02:00
|
|
|
|
2019-09-25 09:47:02 +02:00
|
|
|
if (!fake) {
|
|
|
|
/*
|
|
|
|
* Linux Kernel Parameters (passing device tree):
|
|
|
|
* r5: pointer to command line
|
|
|
|
* r6: pointer to ramdisk
|
|
|
|
* r7: pointer to the fdt, followed by the board info data
|
|
|
|
*/
|
|
|
|
thekernel((char *)cmdline, rd_start, dt);
|
|
|
|
/* does not return */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void boot_prep_linux(bootm_headers_t *images)
|
|
|
|
{
|
2021-09-25 19:43:21 -06:00
|
|
|
if (CONFIG_IS_ENABLED(OF_LIBFDT) && images->ft_len) {
|
2019-10-17 14:12:48 +02:00
|
|
|
debug("using: FDT\n");
|
2019-09-25 09:47:02 +02:00
|
|
|
if (image_setup_linux(images)) {
|
|
|
|
printf("FDT creation failed! hanging...");
|
|
|
|
hang();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-10 11:40:03 -06:00
|
|
|
int do_bootm_linux(int flag, int argc, char *const argv[],
|
2019-09-25 09:47:02 +02:00
|
|
|
bootm_headers_t *images)
|
|
|
|
{
|
|
|
|
images->cmdline_start = (ulong)env_get("bootargs");
|
|
|
|
|
|
|
|
/* cmdline init is the part of 'prep' and nothing to do for 'bdt' */
|
|
|
|
if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
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);
|
2008-08-15 08:24:45 -05:00
|
|
|
return 1;
|
2004-04-18 21:13:41 +00:00
|
|
|
}
|