blob: 8719510002399a5cb1e5ccaed3332b7410edb6bb [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkbb1b8262003-03-27 12:09:35 +00002/*
3 * (C) Copyright 2003
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkbb1b8262003-03-27 12:09:35 +00005 */
6
Simon Glass0726d9d2023-12-15 20:14:13 -07007#include <bootm.h>
Simon Glass1ea97892020-05-10 11:40:00 -06008#include <bootstage.h>
Simon Glass79fd2142019-08-01 09:46:43 -06009#include <env.h>
wdenkbb1b8262003-03-27 12:09:35 +000010#include <image.h>
Daniel Schwierzeck8d7ff4d2015-01-14 21:44:13 +010011#include <fdt_support.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
wdenkbb1b8262003-03-27 12:09:35 +000013#include <asm/addrspace.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Purna Chandra Mandal432549f2016-04-18 18:31:38 +053015#include <asm/io.h>
wdenkbb1b8262003-03-27 12:09:35 +000016
Wolfgang Denk6405a152006-03-31 18:32:53 +020017DECLARE_GLOBAL_DATA_PTR;
18
wdenkbb1b8262003-03-27 12:09:35 +000019#define LINUX_MAX_ENVS 256
20#define LINUX_MAX_ARGS 256
21
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +020022static int linux_argc;
23static char **linux_argv;
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +020024static char *linux_argp;
wdenkbb1b8262003-03-27 12:09:35 +000025
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +020026static char **linux_env;
27static char *linux_env_p;
28static int linux_env_idx;
wdenkbb1b8262003-03-27 12:09:35 +000029
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +020030static void linux_cmdline_init(void)
31{
32 linux_argc = 1;
Daniel Schwierzecke61db372020-07-12 01:46:15 +020033 linux_argv = (char **)CKSEG1ADDR(gd->bd->bi_boot_params);
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +020034 linux_argv[0] = 0;
35 linux_argp = (char *)(linux_argv + LINUX_MAX_ARGS);
36}
37
38static void linux_cmdline_set(const char *value, size_t len)
39{
40 linux_argv[linux_argc] = linux_argp;
41 memcpy(linux_argp, value, len);
42 linux_argp[len] = 0;
43
44 linux_argp += len + 1;
45 linux_argc++;
46}
47
48static void linux_cmdline_dump(void)
49{
50 int i;
51
52 debug("## cmdline argv at 0x%p, argp at 0x%p\n",
53 linux_argv, linux_argp);
54
55 for (i = 1; i < linux_argc; i++)
56 debug(" arg %03d: %s\n", i, linux_argv[i]);
57}
58
Simon Glassdf00afa2022-09-06 20:26:50 -060059static void linux_cmdline_legacy(struct bootm_headers *images)
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +020060{
61 const char *bootargs, *next, *quote;
62
63 linux_cmdline_init();
64
Simon Glass64b723f2017-08-03 12:22:12 -060065 bootargs = env_get("bootargs");
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +020066 if (!bootargs)
67 return;
68
69 next = bootargs;
70
71 while (bootargs && *bootargs && linux_argc < LINUX_MAX_ARGS) {
72 quote = strchr(bootargs, '"');
73 next = strchr(bootargs, ' ');
74
75 while (next && quote && quote < next) {
76 /*
77 * we found a left quote before the next blank
78 * now we have to find the matching right quote
79 */
80 next = strchr(quote + 1, '"');
81 if (next) {
82 quote = strchr(next + 1, '"');
83 next = strchr(next + 1, ' ');
84 }
85 }
86
87 if (!next)
88 next = bootargs + strlen(bootargs);
89
90 linux_cmdline_set(bootargs, next - bootargs);
91
92 if (*next)
93 next++;
94
95 bootargs = next;
96 }
Daniel Schwierzeckf9749fa2015-01-14 21:44:13 +010097}
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +020098
Simon Glassdf00afa2022-09-06 20:26:50 -060099static void linux_cmdline_append(struct bootm_headers *images)
Daniel Schwierzeck2edd5282015-01-14 21:44:13 +0100100{
101 char buf[24];
102 ulong mem, rd_start, rd_size;
103
104 /* append mem */
105 mem = gd->ram_size >> 20;
106 sprintf(buf, "mem=%luM", mem);
107 linux_cmdline_set(buf, strlen(buf));
108
109 /* append rd_start and rd_size */
110 rd_start = images->initrd_start;
111 rd_size = images->initrd_end - images->initrd_start;
112
113 if (rd_size) {
114 sprintf(buf, "rd_start=0x%08lX", rd_start);
115 linux_cmdline_set(buf, strlen(buf));
116 sprintf(buf, "rd_size=0x%lX", rd_size);
117 linux_cmdline_set(buf, strlen(buf));
118 }
119}
120
Daniel Schwierzeck46145fb2013-05-09 17:10:06 +0200121static void linux_env_init(void)
122{
123 linux_env = (char **)(((ulong) linux_argp + 15) & ~15);
124 linux_env[0] = 0;
125 linux_env_p = (char *)(linux_env + LINUX_MAX_ENVS);
126 linux_env_idx = 0;
127}
128
129static void linux_env_set(const char *env_name, const char *env_val)
130{
131 if (linux_env_idx < LINUX_MAX_ENVS - 1) {
132 linux_env[linux_env_idx] = linux_env_p;
133
134 strcpy(linux_env_p, env_name);
135 linux_env_p += strlen(env_name);
136
Daniel Schwierzeck735bb012015-11-01 17:36:15 +0100137 if (CONFIG_IS_ENABLED(MALTA)) {
Daniel Schwierzeck0dfa0b32013-05-30 19:04:20 +0200138 linux_env_p++;
139 linux_env[++linux_env_idx] = linux_env_p;
140 } else {
141 *linux_env_p++ = '=';
142 }
Daniel Schwierzeck46145fb2013-05-09 17:10:06 +0200143
144 strcpy(linux_env_p, env_val);
145 linux_env_p += strlen(env_val);
146
147 linux_env_p++;
148 linux_env[++linux_env_idx] = 0;
149 }
150}
151
Simon Glassdf00afa2022-09-06 20:26:50 -0600152static void linux_env_legacy(struct bootm_headers *images)
wdenkbb1b8262003-03-27 12:09:35 +0000153{
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200154 char env_buf[12];
Daniel Schwierzeck46145fb2013-05-09 17:10:06 +0200155 const char *cp;
Daniel Schwierzeckeaadb1a2013-05-09 17:10:06 +0200156 ulong rd_start, rd_size;
wdenkbb1b8262003-03-27 12:09:35 +0000157
Daniel Schwierzeck735bb012015-11-01 17:36:15 +0100158 if (CONFIG_IS_ENABLED(MEMSIZE_IN_BYTES)) {
159 sprintf(env_buf, "%lu", (ulong)gd->ram_size);
160 debug("## Giving linux memsize in bytes, %lu\n",
161 (ulong)gd->ram_size);
162 } else {
163 sprintf(env_buf, "%lu", (ulong)(gd->ram_size >> 20));
164 debug("## Giving linux memsize in MB, %lu\n",
165 (ulong)(gd->ram_size >> 20));
166 }
wdenkbb1b8262003-03-27 12:09:35 +0000167
Daniel Schwierzecke61db372020-07-12 01:46:15 +0200168 rd_start = CKSEG1ADDR(images->initrd_start);
Daniel Schwierzeckeaadb1a2013-05-09 17:10:06 +0200169 rd_size = images->initrd_end - images->initrd_start;
170
Daniel Schwierzeck46145fb2013-05-09 17:10:06 +0200171 linux_env_init();
172
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200173 linux_env_set("memsize", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000174
Daniel Schwierzeckeaadb1a2013-05-09 17:10:06 +0200175 sprintf(env_buf, "0x%08lX", rd_start);
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200176 linux_env_set("initrd_start", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000177
Daniel Schwierzeckeaadb1a2013-05-09 17:10:06 +0200178 sprintf(env_buf, "0x%lX", rd_size);
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200179 linux_env_set("initrd_size", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000180
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200181 sprintf(env_buf, "0x%08X", (uint) (gd->bd->bi_flashstart));
182 linux_env_set("flash_start", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000183
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200184 sprintf(env_buf, "0x%X", (uint) (gd->bd->bi_flashsize));
185 linux_env_set("flash_size", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000186
Simon Glass64b723f2017-08-03 12:22:12 -0600187 cp = env_get("ethaddr");
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200188 if (cp)
Jason McMullancfbe4572008-06-08 23:56:00 -0400189 linux_env_set("ethaddr", cp);
Jason McMullancfbe4572008-06-08 23:56:00 -0400190
Simon Glass64b723f2017-08-03 12:22:12 -0600191 cp = env_get("eth1addr");
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200192 if (cp)
Jason McMullancfbe4572008-06-08 23:56:00 -0400193 linux_env_set("eth1addr", cp);
Daniel Schwierzeck0dfa0b32013-05-30 19:04:20 +0200194
Daniel Schwierzeck735bb012015-11-01 17:36:15 +0100195 if (CONFIG_IS_ENABLED(MALTA)) {
Paul Burton43c4f592013-11-26 17:45:25 +0000196 sprintf(env_buf, "%un8r", gd->baudrate);
197 linux_env_set("modetty0", env_buf);
198 }
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100199}
200
Simon Glassdf00afa2022-09-06 20:26:50 -0600201static int boot_reloc_fdt(struct bootm_headers *images)
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100202{
203 /*
204 * In case of legacy uImage's, relocation of FDT is already done
Simon Glassd90f94f2023-12-15 20:14:19 -0700205 * by bootm_run_states() and should not repeated in 'bootm prep'.
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100206 */
207 if (images->state & BOOTM_STATE_FDT) {
208 debug("## FDT already relocated\n");
209 return 0;
210 }
211
212#if CONFIG_IS_ENABLED(MIPS_BOOT_FDT) && CONFIG_IS_ENABLED(OF_LIBFDT)
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530213 boot_fdt_add_mem_rsv_regions(images->ft_addr);
214 return boot_relocate_fdt(&images->ft_addr, &images->ft_len);
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100215#else
216 return 0;
217#endif
218}
219
Alexey Brodkin91a31592018-01-24 20:47:09 +0300220#if CONFIG_IS_ENABLED(MIPS_BOOT_FDT) && CONFIG_IS_ENABLED(OF_LIBFDT)
Purna Chandra Mandal432549f2016-04-18 18:31:38 +0530221int arch_fixup_fdt(void *blob)
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100222{
Stefan Roesea13a2aa2020-08-12 13:16:36 +0200223 u64 mem_start = virt_to_phys((void *)gd->ram_base);
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100224 u64 mem_size = gd->ram_size;
225
226 return fdt_fixup_memory_banks(blob, &mem_start, &mem_size, 1);
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000227}
Alexey Brodkin91a31592018-01-24 20:47:09 +0300228#endif
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000229
Simon Glassdf00afa2022-09-06 20:26:50 -0600230static int boot_setup_fdt(struct bootm_headers *images)
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100231{
Horatiu Vultur3639e4e2019-04-24 17:21:29 +0200232 images->initrd_start = virt_to_phys((void *)images->initrd_start);
233 images->initrd_end = virt_to_phys((void *)images->initrd_end);
Simon Glass30762dd2023-11-12 08:27:44 -0700234
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530235 return image_setup_libfdt(images, images->ft_addr, true);
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100236}
237
Simon Glassdf00afa2022-09-06 20:26:50 -0600238static void boot_prep_linux(struct bootm_headers *images)
Daniel Schwierzeckc07dc602015-01-14 21:44:13 +0100239{
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100240 if (CONFIG_IS_ENABLED(MIPS_BOOT_FDT) && images->ft_len) {
241 boot_reloc_fdt(images);
Daniel Schwierzeck8d7ff4d2015-01-14 21:44:13 +0100242 boot_setup_fdt(images);
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100243 } else {
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100244 if (CONFIG_IS_ENABLED(MIPS_BOOT_CMDLINE_LEGACY)) {
245 linux_cmdline_legacy(images);
246
Zubair Lutfullah Kakakhel4c55ab42017-07-11 16:47:51 +0100247 if (!CONFIG_IS_ENABLED(MIPS_BOOT_ENV_LEGACY))
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100248 linux_cmdline_append(images);
249
250 linux_cmdline_dump();
251 }
Zubair Lutfullah Kakakhel4c55ab42017-07-11 16:47:51 +0100252
253 if (CONFIG_IS_ENABLED(MIPS_BOOT_ENV_LEGACY))
254 linux_env_legacy(images);
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100255 }
Daniel Schwierzeckc07dc602015-01-14 21:44:13 +0100256}
257
Simon Glassdf00afa2022-09-06 20:26:50 -0600258static void boot_jump_linux(struct bootm_headers *images)
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000259{
Daniel Schwierzeck0b95a7c2013-05-09 17:10:06 +0200260 typedef void __noreturn (*kernel_entry_t)(int, ulong, ulong, ulong);
261 kernel_entry_t kernel = (kernel_entry_t) images->ep;
Daniel Schwierzeck0dfa0b32013-05-30 19:04:20 +0200262 ulong linux_extra = 0;
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000263
Daniel Schwierzeck0b95a7c2013-05-09 17:10:06 +0200264 debug("## Transferring control to Linux (at address %p) ...\n", kernel);
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000265
266 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
267
Daniel Schwierzeck735bb012015-11-01 17:36:15 +0100268 if (CONFIG_IS_ENABLED(MALTA))
Daniel Schwierzeck0dfa0b32013-05-30 19:04:20 +0200269 linux_extra = gd->ram_size;
270
Simon Glassf499b4d2023-02-05 15:36:19 -0700271#if IS_ENABLED(CONFIG_BOOTSTAGE_FDT)
Daniel Schwierzeck1a4797c2015-01-14 21:44:13 +0100272 bootstage_fdt_add_report();
273#endif
Simon Glasscd197952023-02-05 15:36:20 -0700274#if IS_ENABLED(CONFIG_BOOTSTAGE_REPORT)
Daniel Schwierzeck1a4797c2015-01-14 21:44:13 +0100275 bootstage_report();
276#endif
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000277
developer5cbbd712020-04-21 09:28:25 +0200278 if (CONFIG_IS_ENABLED(RESTORE_EXCEPTION_VECTOR_BASE))
279 trap_restore();
280
Daniel Schwierzeckd1b29d22015-02-22 16:58:30 +0100281 if (images->ft_len)
282 kernel(-2, (ulong)images->ft_addr, 0, 0);
283 else
284 kernel(linux_argc, (ulong)linux_argv, (ulong)linux_env,
285 linux_extra);
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000286}
287
Simon Glass0726d9d2023-12-15 20:14:13 -0700288int do_bootm_linux(int flag, struct bootm_info *bmi)
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000289{
Simon Glass0726d9d2023-12-15 20:14:13 -0700290 struct bootm_headers *images = bmi->images;
291
Gabor Juhos7f959fd2013-01-07 02:53:42 +0000292 /* No need for those on MIPS */
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +0200293 if (flag & BOOTM_STATE_OS_BD_T)
Gabor Juhos7f959fd2013-01-07 02:53:42 +0000294 return -1;
295
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100296 /*
297 * Cmdline init has been moved to 'bootm prep' because it has to be
298 * done after relocation of ramdisk to always pass correct values
299 * for rd_start and rd_size to Linux kernel.
300 */
301 if (flag & BOOTM_STATE_OS_CMDLINE)
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +0200302 return 0;
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +0200303
Gabor Juhos7f959fd2013-01-07 02:53:42 +0000304 if (flag & BOOTM_STATE_OS_PREP) {
305 boot_prep_linux(images);
306 return 0;
307 }
308
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100309 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
Gabor Juhos7f959fd2013-01-07 02:53:42 +0000310 boot_jump_linux(images);
311 return 0;
312 }
Jason McMullancfbe4572008-06-08 23:56:00 -0400313
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100314 /* does not return */
Kumar Gala48626aa2008-08-15 08:24:45 -0500315 return 1;
wdenkbb1b8262003-03-27 12:09:35 +0000316}