blob: 9b71424dfe60a009db9b86bc78ace8ae13dd3def [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +09002/*
3 * (C) Copyright 2003
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
Nobuhiro Iwamatsu752a5952008-09-17 11:08:36 +09006 * (c) Copyright 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7 * (c) Copyright 2008 Renesas Solutions Corp.
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +09008 */
9
10#include <common.h>
11#include <command.h>
Simon Glassed38aef2020-05-10 11:40:03 -060012#include <env.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060013#include <image.h>
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090014#include <asm/byteorder.h>
Marek Vasut35c6d0e2021-09-10 22:47:16 +020015#include <asm/global_data.h>
Nobuhiro Iwamatsu3db60552010-12-08 13:46:36 +090016#include <asm/zimage.h>
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090017
Marek Vasut35c6d0e2021-09-10 22:47:16 +020018DECLARE_GLOBAL_DATA_PTR;
19
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020020#ifdef CONFIG_SYS_DEBUG
Nobuhiro Iwamatsu752a5952008-09-17 11:08:36 +090021static void hexdump(unsigned char *buf, int len)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090022{
23 int i;
24
25 for (i = 0; i < len; i++) {
26 if ((i % 16) == 0)
Nobuhiro Iwamatsu752a5952008-09-17 11:08:36 +090027 printf("%s%08x: ", i ? "\n" : "",
28 (unsigned int)&buf[i]);
29 printf("%02x ", buf[i]);
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090030 }
Nobuhiro Iwamatsu752a5952008-09-17 11:08:36 +090031 printf("\n");
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090032}
33#endif
34
Nobuhiro Iwamatsu190f4f72010-09-28 12:14:57 +090035#ifdef CONFIG_SH_SDRAM_OFFSET
36#define GET_INITRD_START(initrd, linux) (initrd - linux + CONFIG_SH_SDRAM_OFFSET)
37#else
38#define GET_INITRD_START(initrd, linux) (initrd - linux)
39#endif
40
41static void set_sh_linux_param(unsigned long param_addr, unsigned long data)
42{
43 *(unsigned long *)(param_addr) = data;
44}
45
46static unsigned long sh_check_cmd_arg(char *cmdline, char *key, int base)
47{
48 unsigned long val = 0;
49 char *p = strstr(cmdline, key);
50 if (p) {
51 p += strlen(key);
52 val = simple_strtol(p, NULL, base);
53 }
54 return val;
55}
56
Simon Glassed38aef2020-05-10 11:40:03 -060057int do_bootm_linux(int flag, int argc, char *const argv[],
58 bootm_headers_t *images)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090059{
Nobuhiro Iwamatsu752a5952008-09-17 11:08:36 +090060 /* Linux kernel load address */
Kumar Gala93467bc2008-08-15 08:24:36 -050061 void (*kernel) (void) = (void (*)(void))images->ep;
Nobuhiro Iwamatsu752a5952008-09-17 11:08:36 +090062 /* empty_zero_page */
Nobuhiro Iwamatsue58917e2008-09-18 19:34:36 +090063 unsigned char *param
64 = (unsigned char *)image_get_load(images->legacy_hdr_os);
Nobuhiro Iwamatsu752a5952008-09-17 11:08:36 +090065 /* Linux kernel command line */
Nobuhiro Iwamatsu190f4f72010-09-28 12:14:57 +090066 char *cmdline = (char *)param + COMMAND_LINE;
Nobuhiro Iwamatsu752a5952008-09-17 11:08:36 +090067 /* PAGE_SIZE */
Nobuhiro Iwamatsue58917e2008-09-18 19:34:36 +090068 unsigned long size = images->ep - (unsigned long)param;
Simon Glass64b723f2017-08-03 12:22:12 -060069 char *bootargs = env_get("bootargs");
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090070
Andreas Bießmannda233ce2013-07-02 13:57:44 +020071 /*
72 * allow the PREP bootm subcommand, it is required for bootm to work
73 */
74 if (flag & BOOTM_STATE_OS_PREP)
75 return 0;
76
Kumar Gala18178bc2008-10-21 17:25:45 -050077 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
78 return 1;
79
Nobuhiro Iwamatsu3db60552010-12-08 13:46:36 +090080 /* Clear zero page */
81 memset(param, 0, size);
Nobuhiro Iwamatsu190f4f72010-09-28 12:14:57 +090082
83 /* Set commandline */
Nobuhiro Iwamatsu752a5952008-09-17 11:08:36 +090084 strcpy(cmdline, bootargs);
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +090085
Nobuhiro Iwamatsu190f4f72010-09-28 12:14:57 +090086 /* Initrd */
87 if (images->rd_start || images->rd_end) {
Nobuhiro Iwamatsu0b43bd82010-10-19 17:14:15 +090088 unsigned long ramdisk_flags = 0;
Nobuhiro Iwamatsu190f4f72010-09-28 12:14:57 +090089 int val = sh_check_cmd_arg(bootargs, CMD_ARG_RD_PROMPT, 10);
90 if (val == 1)
91 ramdisk_flags |= RD_PROMPT;
92 else
93 ramdisk_flags &= ~RD_PROMPT;
Wolfgang Denk1136f692010-10-27 22:48:30 +020094
Nobuhiro Iwamatsu190f4f72010-09-28 12:14:57 +090095 val = sh_check_cmd_arg(bootargs, CMD_ARG_RD_DOLOAD, 10);
96 if (val == 1)
97 ramdisk_flags |= RD_DOLOAD;
98 else
99 ramdisk_flags &= ~RD_DOLOAD;
100
101 set_sh_linux_param((unsigned long)param + MOUNT_ROOT_RDONLY, 0x0001);
102 set_sh_linux_param((unsigned long)param + RAMDISK_FLAGS, ramdisk_flags);
103 set_sh_linux_param((unsigned long)param + ORIG_ROOT_DEV, 0x0200);
104 set_sh_linux_param((unsigned long)param + LOADER_TYPE, 0x0001);
105 set_sh_linux_param((unsigned long)param + INITRD_START,
106 GET_INITRD_START(images->rd_start, CONFIG_SYS_SDRAM_BASE));
107 set_sh_linux_param((unsigned long)param + INITRD_SIZE,
108 images->rd_end - images->rd_start);
109 }
110
111 /* Boot kernel */
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900112 kernel();
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100113
Nobuhiro Iwamatsu3db60552010-12-08 13:46:36 +0900114 /* does not return */
Kumar Gala48626aa2008-08-15 08:24:45 -0500115 return 1;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900116}
Marek Vasut35c6d0e2021-09-10 22:47:16 +0200117
118static ulong get_sp(void)
119{
120 ulong ret;
121
122 asm("mov r15, %0" : "=r"(ret) : );
123 return ret;
124}
125
126void arch_lmb_reserve(struct lmb *lmb)
127{
128 arch_lmb_reserve_generic(lmb, get_sp(), gd->ram_top, 4096);
129}