blob: a7eddd3205ca069486b0a533c404a67bcd03a99b [file] [log] [blame]
wdenkbb1b8262003-03-27 12:09:35 +00001/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkbb1b8262003-03-27 12:09:35 +00006 */
7
8#include <common.h>
wdenkbb1b8262003-03-27 12:09:35 +00009#include <image.h>
Daniel Schwierzeck8d7ff4d2015-01-14 21:44:13 +010010#include <fdt_support.h>
wdenkbb1b8262003-03-27 12:09:35 +000011#include <asm/addrspace.h>
12
Wolfgang Denk6405a152006-03-31 18:32:53 +020013DECLARE_GLOBAL_DATA_PTR;
14
wdenkbb1b8262003-03-27 12:09:35 +000015#define LINUX_MAX_ENVS 256
16#define LINUX_MAX_ARGS 256
17
Paul Burton10a74b52013-11-09 10:22:08 +000018#if defined(CONFIG_MALTA)
19#define mips_boot_malta 1
Daniel Schwierzeck0dfa0b32013-05-30 19:04:20 +020020#else
Paul Burton10a74b52013-11-09 10:22:08 +000021#define mips_boot_malta 0
Daniel Schwierzeck0dfa0b32013-05-30 19:04:20 +020022#endif
23
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +020024static int linux_argc;
25static char **linux_argv;
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +020026static char *linux_argp;
wdenkbb1b8262003-03-27 12:09:35 +000027
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +020028static char **linux_env;
29static char *linux_env_p;
30static int linux_env_idx;
wdenkbb1b8262003-03-27 12:09:35 +000031
Daniel Schwierzeck22d1c232013-05-09 17:10:06 +020032static ulong arch_get_sp(void)
33{
34 ulong ret;
35
36 __asm__ __volatile__("move %0, $sp" : "=r"(ret) : );
37
38 return ret;
39}
40
41void arch_lmb_reserve(struct lmb *lmb)
42{
43 ulong sp;
44
45 sp = arch_get_sp();
46 debug("## Current stack ends at 0x%08lx\n", sp);
47
48 /* adjust sp by 4K to be safe */
49 sp -= 4096;
50 lmb_reserve(lmb, sp, CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp);
51}
52
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +020053static void linux_cmdline_init(void)
54{
55 linux_argc = 1;
56 linux_argv = (char **)UNCACHED_SDRAM(gd->bd->bi_boot_params);
57 linux_argv[0] = 0;
58 linux_argp = (char *)(linux_argv + LINUX_MAX_ARGS);
59}
60
61static void linux_cmdline_set(const char *value, size_t len)
62{
63 linux_argv[linux_argc] = linux_argp;
64 memcpy(linux_argp, value, len);
65 linux_argp[len] = 0;
66
67 linux_argp += len + 1;
68 linux_argc++;
69}
70
71static void linux_cmdline_dump(void)
72{
73 int i;
74
75 debug("## cmdline argv at 0x%p, argp at 0x%p\n",
76 linux_argv, linux_argp);
77
78 for (i = 1; i < linux_argc; i++)
79 debug(" arg %03d: %s\n", i, linux_argv[i]);
80}
81
Daniel Schwierzeckf9749fa2015-01-14 21:44:13 +010082static void linux_cmdline_legacy(bootm_headers_t *images)
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +020083{
84 const char *bootargs, *next, *quote;
85
86 linux_cmdline_init();
87
88 bootargs = getenv("bootargs");
89 if (!bootargs)
90 return;
91
92 next = bootargs;
93
94 while (bootargs && *bootargs && linux_argc < LINUX_MAX_ARGS) {
95 quote = strchr(bootargs, '"');
96 next = strchr(bootargs, ' ');
97
98 while (next && quote && quote < next) {
99 /*
100 * we found a left quote before the next blank
101 * now we have to find the matching right quote
102 */
103 next = strchr(quote + 1, '"');
104 if (next) {
105 quote = strchr(next + 1, '"');
106 next = strchr(next + 1, ' ');
107 }
108 }
109
110 if (!next)
111 next = bootargs + strlen(bootargs);
112
113 linux_cmdline_set(bootargs, next - bootargs);
114
115 if (*next)
116 next++;
117
118 bootargs = next;
119 }
Daniel Schwierzeckf9749fa2015-01-14 21:44:13 +0100120}
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +0200121
Daniel Schwierzeck2edd5282015-01-14 21:44:13 +0100122static void linux_cmdline_append(bootm_headers_t *images)
123{
124 char buf[24];
125 ulong mem, rd_start, rd_size;
126
127 /* append mem */
128 mem = gd->ram_size >> 20;
129 sprintf(buf, "mem=%luM", mem);
130 linux_cmdline_set(buf, strlen(buf));
131
132 /* append rd_start and rd_size */
133 rd_start = images->initrd_start;
134 rd_size = images->initrd_end - images->initrd_start;
135
136 if (rd_size) {
137 sprintf(buf, "rd_start=0x%08lX", rd_start);
138 linux_cmdline_set(buf, strlen(buf));
139 sprintf(buf, "rd_size=0x%lX", rd_size);
140 linux_cmdline_set(buf, strlen(buf));
141 }
142}
143
Daniel Schwierzeck46145fb2013-05-09 17:10:06 +0200144static void linux_env_init(void)
145{
146 linux_env = (char **)(((ulong) linux_argp + 15) & ~15);
147 linux_env[0] = 0;
148 linux_env_p = (char *)(linux_env + LINUX_MAX_ENVS);
149 linux_env_idx = 0;
150}
151
152static void linux_env_set(const char *env_name, const char *env_val)
153{
154 if (linux_env_idx < LINUX_MAX_ENVS - 1) {
155 linux_env[linux_env_idx] = linux_env_p;
156
157 strcpy(linux_env_p, env_name);
158 linux_env_p += strlen(env_name);
159
Paul Burton10a74b52013-11-09 10:22:08 +0000160 if (mips_boot_malta) {
Daniel Schwierzeck0dfa0b32013-05-30 19:04:20 +0200161 linux_env_p++;
162 linux_env[++linux_env_idx] = linux_env_p;
163 } else {
164 *linux_env_p++ = '=';
165 }
Daniel Schwierzeck46145fb2013-05-09 17:10:06 +0200166
167 strcpy(linux_env_p, env_val);
168 linux_env_p += strlen(env_val);
169
170 linux_env_p++;
171 linux_env[++linux_env_idx] = 0;
172 }
173}
174
Daniel Schwierzeckc07dc602015-01-14 21:44:13 +0100175static void linux_env_legacy(bootm_headers_t *images)
wdenkbb1b8262003-03-27 12:09:35 +0000176{
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200177 char env_buf[12];
Daniel Schwierzeck46145fb2013-05-09 17:10:06 +0200178 const char *cp;
Daniel Schwierzeckeaadb1a2013-05-09 17:10:06 +0200179 ulong rd_start, rd_size;
wdenkbb1b8262003-03-27 12:09:35 +0000180
wdenk9b7f3842003-10-09 20:09:04 +0000181#ifdef CONFIG_MEMSIZE_IN_BYTES
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200182 sprintf(env_buf, "%lu", (ulong)gd->ram_size);
183 debug("## Giving linux memsize in bytes, %lu\n", (ulong)gd->ram_size);
wdenk9b7f3842003-10-09 20:09:04 +0000184#else
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200185 sprintf(env_buf, "%lu", (ulong)(gd->ram_size >> 20));
186 debug("## Giving linux memsize in MB, %lu\n",
Daniel Schwierzeck40f30c02013-05-09 17:10:06 +0200187 (ulong)(gd->ram_size >> 20));
wdenk9b7f3842003-10-09 20:09:04 +0000188#endif /* CONFIG_MEMSIZE_IN_BYTES */
wdenkbb1b8262003-03-27 12:09:35 +0000189
Daniel Schwierzeckeaadb1a2013-05-09 17:10:06 +0200190 rd_start = UNCACHED_SDRAM(images->initrd_start);
191 rd_size = images->initrd_end - images->initrd_start;
192
Daniel Schwierzeck46145fb2013-05-09 17:10:06 +0200193 linux_env_init();
194
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200195 linux_env_set("memsize", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000196
Daniel Schwierzeckeaadb1a2013-05-09 17:10:06 +0200197 sprintf(env_buf, "0x%08lX", rd_start);
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200198 linux_env_set("initrd_start", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000199
Daniel Schwierzeckeaadb1a2013-05-09 17:10:06 +0200200 sprintf(env_buf, "0x%lX", rd_size);
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200201 linux_env_set("initrd_size", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000202
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200203 sprintf(env_buf, "0x%08X", (uint) (gd->bd->bi_flashstart));
204 linux_env_set("flash_start", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000205
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200206 sprintf(env_buf, "0x%X", (uint) (gd->bd->bi_flashsize));
207 linux_env_set("flash_size", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000208
Jason McMullancfbe4572008-06-08 23:56:00 -0400209 cp = getenv("ethaddr");
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200210 if (cp)
Jason McMullancfbe4572008-06-08 23:56:00 -0400211 linux_env_set("ethaddr", cp);
Jason McMullancfbe4572008-06-08 23:56:00 -0400212
213 cp = getenv("eth1addr");
Daniel Schwierzeck83010eb2012-06-03 23:46:04 +0200214 if (cp)
Jason McMullancfbe4572008-06-08 23:56:00 -0400215 linux_env_set("eth1addr", cp);
Daniel Schwierzeck0dfa0b32013-05-30 19:04:20 +0200216
Paul Burton43c4f592013-11-26 17:45:25 +0000217 if (mips_boot_malta) {
218 sprintf(env_buf, "%un8r", gd->baudrate);
219 linux_env_set("modetty0", env_buf);
220 }
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100221}
222
223static int boot_reloc_ramdisk(bootm_headers_t *images)
224{
225 ulong rd_len = images->rd_end - images->rd_start;
226
227 /*
228 * In case of legacy uImage's, relocation of ramdisk is already done
229 * by do_bootm_states() and should not repeated in 'bootm prep'.
230 */
231 if (images->state & BOOTM_STATE_RAMDISK) {
232 debug("## Ramdisk already relocated\n");
233 return 0;
234 }
235
236 return boot_ramdisk_high(&images->lmb, images->rd_start,
237 rd_len, &images->initrd_start, &images->initrd_end);
238}
239
240static int boot_reloc_fdt(bootm_headers_t *images)
241{
242 /*
243 * In case of legacy uImage's, relocation of FDT is already done
244 * by do_bootm_states() and should not repeated in 'bootm prep'.
245 */
246 if (images->state & BOOTM_STATE_FDT) {
247 debug("## FDT already relocated\n");
248 return 0;
249 }
250
251#if CONFIG_IS_ENABLED(MIPS_BOOT_FDT) && CONFIG_IS_ENABLED(OF_LIBFDT)
252 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr);
253 return boot_relocate_fdt(&images->lmb, &images->ft_addr,
254 &images->ft_len);
255#else
256 return 0;
257#endif
258}
259
260int arch_fixup_memory_node(void *blob)
261{
262#if CONFIG_IS_ENABLED(MIPS_BOOT_FDT) && CONFIG_IS_ENABLED(OF_LIBFDT)
263 u64 mem_start = 0;
264 u64 mem_size = gd->ram_size;
265
266 return fdt_fixup_memory_banks(blob, &mem_start, &mem_size, 1);
267#else
268 return 0;
269#endif
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000270}
271
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100272static int boot_setup_fdt(bootm_headers_t *images)
273{
274 return image_setup_libfdt(images, images->ft_addr, images->ft_len,
275 &images->lmb);
276}
277
Daniel Schwierzeckc07dc602015-01-14 21:44:13 +0100278static void boot_prep_linux(bootm_headers_t *images)
279{
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100280 boot_reloc_ramdisk(images);
Daniel Schwierzeck8d7ff4d2015-01-14 21:44:13 +0100281
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100282 if (CONFIG_IS_ENABLED(MIPS_BOOT_FDT) && images->ft_len) {
283 boot_reloc_fdt(images);
Daniel Schwierzeck8d7ff4d2015-01-14 21:44:13 +0100284 boot_setup_fdt(images);
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100285 } else {
286 if (CONFIG_IS_ENABLED(CONFIG_MIPS_BOOT_ENV_LEGACY))
287 linux_env_legacy(images);
288
289 if (CONFIG_IS_ENABLED(MIPS_BOOT_CMDLINE_LEGACY)) {
290 linux_cmdline_legacy(images);
291
292 if (!CONFIG_IS_ENABLED(CONFIG_MIPS_BOOT_ENV_LEGACY))
293 linux_cmdline_append(images);
294
295 linux_cmdline_dump();
296 }
297 }
Daniel Schwierzeckc07dc602015-01-14 21:44:13 +0100298}
299
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000300static void boot_jump_linux(bootm_headers_t *images)
301{
Daniel Schwierzeck0b95a7c2013-05-09 17:10:06 +0200302 typedef void __noreturn (*kernel_entry_t)(int, ulong, ulong, ulong);
303 kernel_entry_t kernel = (kernel_entry_t) images->ep;
Daniel Schwierzeck0dfa0b32013-05-30 19:04:20 +0200304 ulong linux_extra = 0;
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000305
Daniel Schwierzeck0b95a7c2013-05-09 17:10:06 +0200306 debug("## Transferring control to Linux (at address %p) ...\n", kernel);
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000307
308 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
309
Paul Burton10a74b52013-11-09 10:22:08 +0000310 if (mips_boot_malta)
Daniel Schwierzeck0dfa0b32013-05-30 19:04:20 +0200311 linux_extra = gd->ram_size;
312
Daniel Schwierzeck1a4797c2015-01-14 21:44:13 +0100313#ifdef CONFIG_BOOTSTAGE_FDT
314 bootstage_fdt_add_report();
315#endif
316#ifdef CONFIG_BOOTSTAGE_REPORT
317 bootstage_report();
318#endif
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000319
Daniel Schwierzeckd1b29d22015-02-22 16:58:30 +0100320 if (images->ft_len)
321 kernel(-2, (ulong)images->ft_addr, 0, 0);
322 else
323 kernel(linux_argc, (ulong)linux_argv, (ulong)linux_env,
324 linux_extra);
Gabor Juhos72cb5f02013-01-07 02:53:41 +0000325}
326
327int do_bootm_linux(int flag, int argc, char * const argv[],
328 bootm_headers_t *images)
329{
Gabor Juhos7f959fd2013-01-07 02:53:42 +0000330 /* No need for those on MIPS */
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +0200331 if (flag & BOOTM_STATE_OS_BD_T)
Gabor Juhos7f959fd2013-01-07 02:53:42 +0000332 return -1;
333
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100334 /*
335 * Cmdline init has been moved to 'bootm prep' because it has to be
336 * done after relocation of ramdisk to always pass correct values
337 * for rd_start and rd_size to Linux kernel.
338 */
339 if (flag & BOOTM_STATE_OS_CMDLINE)
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +0200340 return 0;
Daniel Schwierzeckeb782d62013-05-09 17:10:06 +0200341
Gabor Juhos7f959fd2013-01-07 02:53:42 +0000342 if (flag & BOOTM_STATE_OS_PREP) {
343 boot_prep_linux(images);
344 return 0;
345 }
346
Daniel Schwierzeck20a8b1c2015-11-01 17:36:14 +0100347 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
Gabor Juhos7f959fd2013-01-07 02:53:42 +0000348 boot_jump_linux(images);
349 return 0;
350 }
Jason McMullancfbe4572008-06-08 23:56:00 -0400351
Marian Balakowiczdf8ff332008-03-12 10:33:00 +0100352 /* does not return */
Kumar Gala48626aa2008-08-15 08:24:45 -0500353 return 1;
wdenkbb1b8262003-03-27 12:09:35 +0000354}