blob: e289799c1ee3c42247f308465494a356eb087691 [file] [log] [blame]
wdenkc0218802003-03-27 12:09:35 +00001/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkc0218802003-03-27 12:09:35 +00006 */
7
8#include <common.h>
wdenkc0218802003-03-27 12:09:35 +00009#include <image.h>
Daniel Schwierzeck5002d8c2015-01-14 21:44:13 +010010#include <fdt_support.h>
wdenkc0218802003-03-27 12:09:35 +000011#include <asm/addrspace.h>
12
Wolfgang Denkd87080b2006-03-31 18:32:53 +020013DECLARE_GLOBAL_DATA_PTR;
14
wdenkc0218802003-03-27 12:09:35 +000015#define LINUX_MAX_ENVS 256
16#define LINUX_MAX_ARGS 256
17
Paul Burton7a9d1092013-11-09 10:22:08 +000018#if defined(CONFIG_MALTA)
19#define mips_boot_malta 1
Daniel Schwierzeckb87493f2013-05-30 19:04:20 +020020#else
Paul Burton7a9d1092013-11-09 10:22:08 +000021#define mips_boot_malta 0
Daniel Schwierzeckb87493f2013-05-30 19:04:20 +020022#endif
23
Daniel Schwierzeck25fc6642015-01-14 21:44:13 +010024#if defined(CONFIG_MIPS_BOOT_CMDLINE_LEGACY)
25#define mips_boot_cmdline_legacy 1
26#else
27#define mips_boot_cmdline_legacy 0
28#endif
29
Daniel Schwierzeckca65e582015-01-14 21:44:13 +010030#if defined(CONFIG_MIPS_BOOT_ENV_LEGACY)
31#define mips_boot_env_legacy 1
32#else
33#define mips_boot_env_legacy 0
34#endif
35
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +020036static int linux_argc;
37static char **linux_argv;
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +020038static char *linux_argp;
wdenkc0218802003-03-27 12:09:35 +000039
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +020040static char **linux_env;
41static char *linux_env_p;
42static int linux_env_idx;
wdenkc0218802003-03-27 12:09:35 +000043
Daniel Schwierzeckf66cc1e2013-05-09 17:10:06 +020044static ulong arch_get_sp(void)
45{
46 ulong ret;
47
48 __asm__ __volatile__("move %0, $sp" : "=r"(ret) : );
49
50 return ret;
51}
52
53void arch_lmb_reserve(struct lmb *lmb)
54{
55 ulong sp;
56
57 sp = arch_get_sp();
58 debug("## Current stack ends at 0x%08lx\n", sp);
59
60 /* adjust sp by 4K to be safe */
61 sp -= 4096;
62 lmb_reserve(lmb, sp, CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp);
63}
64
Daniel Schwierzeckc9639422014-11-16 01:27:23 +010065static int boot_setup_linux(bootm_headers_t *images)
66{
67 int ret;
68 ulong rd_len;
69
70 rd_len = images->rd_end - images->rd_start;
71 ret = boot_ramdisk_high(&images->lmb, images->rd_start,
72 rd_len, &images->initrd_start, &images->initrd_end);
73 if (ret)
74 return ret;
75
Daniel Schwierzeck5002d8c2015-01-14 21:44:13 +010076#if defined(CONFIG_MIPS_BOOT_FDT) && defined(CONFIG_OF_LIBFDT)
77 if (images->ft_len) {
78 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr);
79
80 ret = boot_relocate_fdt(&images->lmb, &images->ft_addr,
81 &images->ft_len);
82 if (ret)
83 return ret;
84 }
85#endif
86
Daniel Schwierzeckc9639422014-11-16 01:27:23 +010087 return 0;
88}
89
Daniel Schwierzeck5002d8c2015-01-14 21:44:13 +010090static void boot_setup_fdt(bootm_headers_t *images)
91{
92#if defined(CONFIG_MIPS_BOOT_FDT) && defined(CONFIG_OF_LIBFDT)
93 u64 mem_start = 0;
94 u64 mem_size = gd->ram_size;
95
96 debug("## setup FDT\n");
97
98 fdt_chosen(images->ft_addr, 1);
99 fdt_fixup_memory_banks(images->ft_addr, &mem_start, &mem_size, 1);
100 fdt_fixup_ethernet(images->ft_addr);
101 fdt_initrd(images->ft_addr, images->initrd_start, images->initrd_end, 1);
102
103#if defined(CONFIG_OF_BOARD_SETUP)
104 ft_board_setup(images->ft_addr, gd->bd);
105#endif
106#endif
107}
108
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200109static void linux_cmdline_init(void)
110{
111 linux_argc = 1;
112 linux_argv = (char **)UNCACHED_SDRAM(gd->bd->bi_boot_params);
113 linux_argv[0] = 0;
114 linux_argp = (char *)(linux_argv + LINUX_MAX_ARGS);
115}
116
117static void linux_cmdline_set(const char *value, size_t len)
118{
119 linux_argv[linux_argc] = linux_argp;
120 memcpy(linux_argp, value, len);
121 linux_argp[len] = 0;
122
123 linux_argp += len + 1;
124 linux_argc++;
125}
126
127static void linux_cmdline_dump(void)
128{
129 int i;
130
131 debug("## cmdline argv at 0x%p, argp at 0x%p\n",
132 linux_argv, linux_argp);
133
134 for (i = 1; i < linux_argc; i++)
135 debug(" arg %03d: %s\n", i, linux_argv[i]);
136}
137
Daniel Schwierzeck25fc6642015-01-14 21:44:13 +0100138static void linux_cmdline_legacy(bootm_headers_t *images)
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200139{
140 const char *bootargs, *next, *quote;
141
142 linux_cmdline_init();
143
144 bootargs = getenv("bootargs");
145 if (!bootargs)
146 return;
147
148 next = bootargs;
149
150 while (bootargs && *bootargs && linux_argc < LINUX_MAX_ARGS) {
151 quote = strchr(bootargs, '"');
152 next = strchr(bootargs, ' ');
153
154 while (next && quote && quote < next) {
155 /*
156 * we found a left quote before the next blank
157 * now we have to find the matching right quote
158 */
159 next = strchr(quote + 1, '"');
160 if (next) {
161 quote = strchr(next + 1, '"');
162 next = strchr(next + 1, ' ');
163 }
164 }
165
166 if (!next)
167 next = bootargs + strlen(bootargs);
168
169 linux_cmdline_set(bootargs, next - bootargs);
170
171 if (*next)
172 next++;
173
174 bootargs = next;
175 }
Daniel Schwierzeck25fc6642015-01-14 21:44:13 +0100176}
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200177
Daniel Schwierzeck8cec7252015-01-14 21:44:13 +0100178static void linux_cmdline_append(bootm_headers_t *images)
179{
180 char buf[24];
181 ulong mem, rd_start, rd_size;
182
183 /* append mem */
184 mem = gd->ram_size >> 20;
185 sprintf(buf, "mem=%luM", mem);
186 linux_cmdline_set(buf, strlen(buf));
187
188 /* append rd_start and rd_size */
189 rd_start = images->initrd_start;
190 rd_size = images->initrd_end - images->initrd_start;
191
192 if (rd_size) {
193 sprintf(buf, "rd_start=0x%08lX", rd_start);
194 linux_cmdline_set(buf, strlen(buf));
195 sprintf(buf, "rd_size=0x%lX", rd_size);
196 linux_cmdline_set(buf, strlen(buf));
197 }
198}
199
Daniel Schwierzeck25fc6642015-01-14 21:44:13 +0100200static void boot_cmdline_linux(bootm_headers_t *images)
201{
Daniel Schwierzeck5002d8c2015-01-14 21:44:13 +0100202 if (mips_boot_cmdline_legacy && !images->ft_len) {
Daniel Schwierzeck25fc6642015-01-14 21:44:13 +0100203 linux_cmdline_legacy(images);
Daniel Schwierzeck8cec7252015-01-14 21:44:13 +0100204
205 if (!mips_boot_env_legacy)
206 linux_cmdline_append(images);
207
Daniel Schwierzeck25fc6642015-01-14 21:44:13 +0100208 linux_cmdline_dump();
209 }
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200210}
211
Daniel Schwierzeck15f8aa92013-05-09 17:10:06 +0200212static void linux_env_init(void)
213{
214 linux_env = (char **)(((ulong) linux_argp + 15) & ~15);
215 linux_env[0] = 0;
216 linux_env_p = (char *)(linux_env + LINUX_MAX_ENVS);
217 linux_env_idx = 0;
218}
219
220static void linux_env_set(const char *env_name, const char *env_val)
221{
222 if (linux_env_idx < LINUX_MAX_ENVS - 1) {
223 linux_env[linux_env_idx] = linux_env_p;
224
225 strcpy(linux_env_p, env_name);
226 linux_env_p += strlen(env_name);
227
Paul Burton7a9d1092013-11-09 10:22:08 +0000228 if (mips_boot_malta) {
Daniel Schwierzeckb87493f2013-05-30 19:04:20 +0200229 linux_env_p++;
230 linux_env[++linux_env_idx] = linux_env_p;
231 } else {
232 *linux_env_p++ = '=';
233 }
Daniel Schwierzeck15f8aa92013-05-09 17:10:06 +0200234
235 strcpy(linux_env_p, env_val);
236 linux_env_p += strlen(env_val);
237
238 linux_env_p++;
239 linux_env[++linux_env_idx] = 0;
240 }
241}
242
Daniel Schwierzeckca65e582015-01-14 21:44:13 +0100243static void linux_env_legacy(bootm_headers_t *images)
wdenkc0218802003-03-27 12:09:35 +0000244{
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200245 char env_buf[12];
Daniel Schwierzeck15f8aa92013-05-09 17:10:06 +0200246 const char *cp;
Daniel Schwierzeck6c154552013-05-09 17:10:06 +0200247 ulong rd_start, rd_size;
wdenkc0218802003-03-27 12:09:35 +0000248
wdenk5da627a2003-10-09 20:09:04 +0000249#ifdef CONFIG_MEMSIZE_IN_BYTES
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200250 sprintf(env_buf, "%lu", (ulong)gd->ram_size);
251 debug("## Giving linux memsize in bytes, %lu\n", (ulong)gd->ram_size);
wdenk5da627a2003-10-09 20:09:04 +0000252#else
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200253 sprintf(env_buf, "%lu", (ulong)(gd->ram_size >> 20));
254 debug("## Giving linux memsize in MB, %lu\n",
Daniel Schwierzeck45bde482013-05-09 17:10:06 +0200255 (ulong)(gd->ram_size >> 20));
wdenk5da627a2003-10-09 20:09:04 +0000256#endif /* CONFIG_MEMSIZE_IN_BYTES */
wdenkc0218802003-03-27 12:09:35 +0000257
Daniel Schwierzeck6c154552013-05-09 17:10:06 +0200258 rd_start = UNCACHED_SDRAM(images->initrd_start);
259 rd_size = images->initrd_end - images->initrd_start;
260
Daniel Schwierzeck15f8aa92013-05-09 17:10:06 +0200261 linux_env_init();
262
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200263 linux_env_set("memsize", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000264
Daniel Schwierzeck6c154552013-05-09 17:10:06 +0200265 sprintf(env_buf, "0x%08lX", rd_start);
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200266 linux_env_set("initrd_start", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000267
Daniel Schwierzeck6c154552013-05-09 17:10:06 +0200268 sprintf(env_buf, "0x%lX", rd_size);
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200269 linux_env_set("initrd_size", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000270
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200271 sprintf(env_buf, "0x%08X", (uint) (gd->bd->bi_flashstart));
272 linux_env_set("flash_start", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000273
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200274 sprintf(env_buf, "0x%X", (uint) (gd->bd->bi_flashsize));
275 linux_env_set("flash_size", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000276
Jason McMullane7c37452008-06-08 23:56:00 -0400277 cp = getenv("ethaddr");
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200278 if (cp)
Jason McMullane7c37452008-06-08 23:56:00 -0400279 linux_env_set("ethaddr", cp);
Jason McMullane7c37452008-06-08 23:56:00 -0400280
281 cp = getenv("eth1addr");
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200282 if (cp)
Jason McMullane7c37452008-06-08 23:56:00 -0400283 linux_env_set("eth1addr", cp);
Daniel Schwierzeckb87493f2013-05-30 19:04:20 +0200284
Paul Burtond18d49d2013-11-26 17:45:25 +0000285 if (mips_boot_malta) {
286 sprintf(env_buf, "%un8r", gd->baudrate);
287 linux_env_set("modetty0", env_buf);
288 }
Gabor Juhos0ea72132013-01-07 02:53:41 +0000289}
Jason McMullane7c37452008-06-08 23:56:00 -0400290
Daniel Schwierzeckca65e582015-01-14 21:44:13 +0100291static void boot_prep_linux(bootm_headers_t *images)
292{
Daniel Schwierzeck5002d8c2015-01-14 21:44:13 +0100293 if (mips_boot_env_legacy && !images->ft_len)
Daniel Schwierzeckca65e582015-01-14 21:44:13 +0100294 linux_env_legacy(images);
Daniel Schwierzeck5002d8c2015-01-14 21:44:13 +0100295
296 if (images->ft_len)
297 boot_setup_fdt(images);
Daniel Schwierzeckca65e582015-01-14 21:44:13 +0100298}
299
Gabor Juhos0ea72132013-01-07 02:53:41 +0000300static void boot_jump_linux(bootm_headers_t *images)
301{
Daniel Schwierzeckc4b37842013-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 Schwierzeckb87493f2013-05-30 19:04:20 +0200304 ulong linux_extra = 0;
Gabor Juhos0ea72132013-01-07 02:53:41 +0000305
Daniel Schwierzeckc4b37842013-05-09 17:10:06 +0200306 debug("## Transferring control to Linux (at address %p) ...\n", kernel);
Gabor Juhos0ea72132013-01-07 02:53:41 +0000307
308 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
309
Paul Burton7a9d1092013-11-09 10:22:08 +0000310 if (mips_boot_malta)
Daniel Schwierzeckb87493f2013-05-30 19:04:20 +0200311 linux_extra = gd->ram_size;
312
Daniel Schwierzecke13a50b2015-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 Juhos0ea72132013-01-07 02:53:41 +0000319
Daniel Schwierzeck90b1c9f2015-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 Juhos0ea72132013-01-07 02:53:41 +0000325}
326
327int do_bootm_linux(int flag, int argc, char * const argv[],
328 bootm_headers_t *images)
329{
Daniel Schwierzeckc9639422014-11-16 01:27:23 +0100330 int ret;
331
Gabor Juhos9c170e22013-01-07 02:53:42 +0000332 /* No need for those on MIPS */
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200333 if (flag & BOOTM_STATE_OS_BD_T)
Gabor Juhos9c170e22013-01-07 02:53:42 +0000334 return -1;
335
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200336 if (flag & BOOTM_STATE_OS_CMDLINE) {
337 boot_cmdline_linux(images);
338 return 0;
339 }
340
Gabor Juhos9c170e22013-01-07 02:53:42 +0000341 if (flag & BOOTM_STATE_OS_PREP) {
342 boot_prep_linux(images);
343 return 0;
344 }
345
346 if (flag & BOOTM_STATE_OS_GO) {
347 boot_jump_linux(images);
348 return 0;
349 }
Gabor Juhos0ea72132013-01-07 02:53:41 +0000350
Daniel Schwierzeckc9639422014-11-16 01:27:23 +0100351 ret = boot_setup_linux(images);
352 if (ret)
353 return ret;
354
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200355 boot_cmdline_linux(images);
Gabor Juhos0ea72132013-01-07 02:53:41 +0000356 boot_prep_linux(images);
Gabor Juhose08634c2013-01-07 02:53:40 +0000357 boot_jump_linux(images);
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200358
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100359 /* does not return */
Kumar Gala40d7e992008-08-15 08:24:45 -0500360 return 1;
wdenkc0218802003-03-27 12:09:35 +0000361}