blob: 7a98f1513137f278e12eb2fd8d60274033ed36db [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>
wdenkc0218802003-03-27 12:09:35 +000010#include <asm/addrspace.h>
11
Wolfgang Denkd87080b2006-03-31 18:32:53 +020012DECLARE_GLOBAL_DATA_PTR;
13
wdenkc0218802003-03-27 12:09:35 +000014#define LINUX_MAX_ENVS 256
15#define LINUX_MAX_ARGS 256
16
Paul Burton7a9d1092013-11-09 10:22:08 +000017#if defined(CONFIG_MALTA)
18#define mips_boot_malta 1
Daniel Schwierzeckb87493f2013-05-30 19:04:20 +020019#else
Paul Burton7a9d1092013-11-09 10:22:08 +000020#define mips_boot_malta 0
Daniel Schwierzeckb87493f2013-05-30 19:04:20 +020021#endif
22
Daniel Schwierzeck25fc6642015-01-14 21:44:13 +010023#if defined(CONFIG_MIPS_BOOT_CMDLINE_LEGACY)
24#define mips_boot_cmdline_legacy 1
25#else
26#define mips_boot_cmdline_legacy 0
27#endif
28
Daniel Schwierzeckca65e582015-01-14 21:44:13 +010029#if defined(CONFIG_MIPS_BOOT_ENV_LEGACY)
30#define mips_boot_env_legacy 1
31#else
32#define mips_boot_env_legacy 0
33#endif
34
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +020035static int linux_argc;
36static char **linux_argv;
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +020037static char *linux_argp;
wdenkc0218802003-03-27 12:09:35 +000038
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +020039static char **linux_env;
40static char *linux_env_p;
41static int linux_env_idx;
wdenkc0218802003-03-27 12:09:35 +000042
Daniel Schwierzeckf66cc1e2013-05-09 17:10:06 +020043static ulong arch_get_sp(void)
44{
45 ulong ret;
46
47 __asm__ __volatile__("move %0, $sp" : "=r"(ret) : );
48
49 return ret;
50}
51
52void arch_lmb_reserve(struct lmb *lmb)
53{
54 ulong sp;
55
56 sp = arch_get_sp();
57 debug("## Current stack ends at 0x%08lx\n", sp);
58
59 /* adjust sp by 4K to be safe */
60 sp -= 4096;
61 lmb_reserve(lmb, sp, CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp);
62}
63
Daniel Schwierzeckc9639422014-11-16 01:27:23 +010064static int boot_setup_linux(bootm_headers_t *images)
65{
66 int ret;
67 ulong rd_len;
68
69 rd_len = images->rd_end - images->rd_start;
70 ret = boot_ramdisk_high(&images->lmb, images->rd_start,
71 rd_len, &images->initrd_start, &images->initrd_end);
72 if (ret)
73 return ret;
74
75 return 0;
76}
77
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +020078static void linux_cmdline_init(void)
79{
80 linux_argc = 1;
81 linux_argv = (char **)UNCACHED_SDRAM(gd->bd->bi_boot_params);
82 linux_argv[0] = 0;
83 linux_argp = (char *)(linux_argv + LINUX_MAX_ARGS);
84}
85
86static void linux_cmdline_set(const char *value, size_t len)
87{
88 linux_argv[linux_argc] = linux_argp;
89 memcpy(linux_argp, value, len);
90 linux_argp[len] = 0;
91
92 linux_argp += len + 1;
93 linux_argc++;
94}
95
96static void linux_cmdline_dump(void)
97{
98 int i;
99
100 debug("## cmdline argv at 0x%p, argp at 0x%p\n",
101 linux_argv, linux_argp);
102
103 for (i = 1; i < linux_argc; i++)
104 debug(" arg %03d: %s\n", i, linux_argv[i]);
105}
106
Daniel Schwierzeck25fc6642015-01-14 21:44:13 +0100107static void linux_cmdline_legacy(bootm_headers_t *images)
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200108{
109 const char *bootargs, *next, *quote;
110
111 linux_cmdline_init();
112
113 bootargs = getenv("bootargs");
114 if (!bootargs)
115 return;
116
117 next = bootargs;
118
119 while (bootargs && *bootargs && linux_argc < LINUX_MAX_ARGS) {
120 quote = strchr(bootargs, '"');
121 next = strchr(bootargs, ' ');
122
123 while (next && quote && quote < next) {
124 /*
125 * we found a left quote before the next blank
126 * now we have to find the matching right quote
127 */
128 next = strchr(quote + 1, '"');
129 if (next) {
130 quote = strchr(next + 1, '"');
131 next = strchr(next + 1, ' ');
132 }
133 }
134
135 if (!next)
136 next = bootargs + strlen(bootargs);
137
138 linux_cmdline_set(bootargs, next - bootargs);
139
140 if (*next)
141 next++;
142
143 bootargs = next;
144 }
Daniel Schwierzeck25fc6642015-01-14 21:44:13 +0100145}
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200146
Daniel Schwierzeck8cec7252015-01-14 21:44:13 +0100147static void linux_cmdline_append(bootm_headers_t *images)
148{
149 char buf[24];
150 ulong mem, rd_start, rd_size;
151
152 /* append mem */
153 mem = gd->ram_size >> 20;
154 sprintf(buf, "mem=%luM", mem);
155 linux_cmdline_set(buf, strlen(buf));
156
157 /* append rd_start and rd_size */
158 rd_start = images->initrd_start;
159 rd_size = images->initrd_end - images->initrd_start;
160
161 if (rd_size) {
162 sprintf(buf, "rd_start=0x%08lX", rd_start);
163 linux_cmdline_set(buf, strlen(buf));
164 sprintf(buf, "rd_size=0x%lX", rd_size);
165 linux_cmdline_set(buf, strlen(buf));
166 }
167}
168
Daniel Schwierzeck25fc6642015-01-14 21:44:13 +0100169static void boot_cmdline_linux(bootm_headers_t *images)
170{
171 if (mips_boot_cmdline_legacy) {
172 linux_cmdline_legacy(images);
Daniel Schwierzeck8cec7252015-01-14 21:44:13 +0100173
174 if (!mips_boot_env_legacy)
175 linux_cmdline_append(images);
176
Daniel Schwierzeck25fc6642015-01-14 21:44:13 +0100177 linux_cmdline_dump();
178 }
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200179}
180
Daniel Schwierzeck15f8aa92013-05-09 17:10:06 +0200181static void linux_env_init(void)
182{
183 linux_env = (char **)(((ulong) linux_argp + 15) & ~15);
184 linux_env[0] = 0;
185 linux_env_p = (char *)(linux_env + LINUX_MAX_ENVS);
186 linux_env_idx = 0;
187}
188
189static void linux_env_set(const char *env_name, const char *env_val)
190{
191 if (linux_env_idx < LINUX_MAX_ENVS - 1) {
192 linux_env[linux_env_idx] = linux_env_p;
193
194 strcpy(linux_env_p, env_name);
195 linux_env_p += strlen(env_name);
196
Paul Burton7a9d1092013-11-09 10:22:08 +0000197 if (mips_boot_malta) {
Daniel Schwierzeckb87493f2013-05-30 19:04:20 +0200198 linux_env_p++;
199 linux_env[++linux_env_idx] = linux_env_p;
200 } else {
201 *linux_env_p++ = '=';
202 }
Daniel Schwierzeck15f8aa92013-05-09 17:10:06 +0200203
204 strcpy(linux_env_p, env_val);
205 linux_env_p += strlen(env_val);
206
207 linux_env_p++;
208 linux_env[++linux_env_idx] = 0;
209 }
210}
211
Daniel Schwierzeckca65e582015-01-14 21:44:13 +0100212static void linux_env_legacy(bootm_headers_t *images)
wdenkc0218802003-03-27 12:09:35 +0000213{
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200214 char env_buf[12];
Daniel Schwierzeck15f8aa92013-05-09 17:10:06 +0200215 const char *cp;
Daniel Schwierzeck6c154552013-05-09 17:10:06 +0200216 ulong rd_start, rd_size;
wdenkc0218802003-03-27 12:09:35 +0000217
wdenk5da627a2003-10-09 20:09:04 +0000218#ifdef CONFIG_MEMSIZE_IN_BYTES
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200219 sprintf(env_buf, "%lu", (ulong)gd->ram_size);
220 debug("## Giving linux memsize in bytes, %lu\n", (ulong)gd->ram_size);
wdenk5da627a2003-10-09 20:09:04 +0000221#else
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200222 sprintf(env_buf, "%lu", (ulong)(gd->ram_size >> 20));
223 debug("## Giving linux memsize in MB, %lu\n",
Daniel Schwierzeck45bde482013-05-09 17:10:06 +0200224 (ulong)(gd->ram_size >> 20));
wdenk5da627a2003-10-09 20:09:04 +0000225#endif /* CONFIG_MEMSIZE_IN_BYTES */
wdenkc0218802003-03-27 12:09:35 +0000226
Daniel Schwierzeck6c154552013-05-09 17:10:06 +0200227 rd_start = UNCACHED_SDRAM(images->initrd_start);
228 rd_size = images->initrd_end - images->initrd_start;
229
Daniel Schwierzeck15f8aa92013-05-09 17:10:06 +0200230 linux_env_init();
231
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200232 linux_env_set("memsize", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000233
Daniel Schwierzeck6c154552013-05-09 17:10:06 +0200234 sprintf(env_buf, "0x%08lX", rd_start);
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200235 linux_env_set("initrd_start", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000236
Daniel Schwierzeck6c154552013-05-09 17:10:06 +0200237 sprintf(env_buf, "0x%lX", rd_size);
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200238 linux_env_set("initrd_size", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000239
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200240 sprintf(env_buf, "0x%08X", (uint) (gd->bd->bi_flashstart));
241 linux_env_set("flash_start", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000242
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200243 sprintf(env_buf, "0x%X", (uint) (gd->bd->bi_flashsize));
244 linux_env_set("flash_size", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000245
Jason McMullane7c37452008-06-08 23:56:00 -0400246 cp = getenv("ethaddr");
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200247 if (cp)
Jason McMullane7c37452008-06-08 23:56:00 -0400248 linux_env_set("ethaddr", cp);
Jason McMullane7c37452008-06-08 23:56:00 -0400249
250 cp = getenv("eth1addr");
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200251 if (cp)
Jason McMullane7c37452008-06-08 23:56:00 -0400252 linux_env_set("eth1addr", cp);
Daniel Schwierzeckb87493f2013-05-30 19:04:20 +0200253
Paul Burtond18d49d2013-11-26 17:45:25 +0000254 if (mips_boot_malta) {
255 sprintf(env_buf, "%un8r", gd->baudrate);
256 linux_env_set("modetty0", env_buf);
257 }
Gabor Juhos0ea72132013-01-07 02:53:41 +0000258}
Jason McMullane7c37452008-06-08 23:56:00 -0400259
Daniel Schwierzeckca65e582015-01-14 21:44:13 +0100260static void boot_prep_linux(bootm_headers_t *images)
261{
262 if (mips_boot_env_legacy)
263 linux_env_legacy(images);
264}
265
Gabor Juhos0ea72132013-01-07 02:53:41 +0000266static void boot_jump_linux(bootm_headers_t *images)
267{
Daniel Schwierzeckc4b37842013-05-09 17:10:06 +0200268 typedef void __noreturn (*kernel_entry_t)(int, ulong, ulong, ulong);
269 kernel_entry_t kernel = (kernel_entry_t) images->ep;
Daniel Schwierzeckb87493f2013-05-30 19:04:20 +0200270 ulong linux_extra = 0;
Gabor Juhos0ea72132013-01-07 02:53:41 +0000271
Daniel Schwierzeckc4b37842013-05-09 17:10:06 +0200272 debug("## Transferring control to Linux (at address %p) ...\n", kernel);
Gabor Juhos0ea72132013-01-07 02:53:41 +0000273
274 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
275
Paul Burton7a9d1092013-11-09 10:22:08 +0000276 if (mips_boot_malta)
Daniel Schwierzeckb87493f2013-05-30 19:04:20 +0200277 linux_extra = gd->ram_size;
278
Gabor Juhos0ea72132013-01-07 02:53:41 +0000279 /* we assume that the kernel is in place */
280 printf("\nStarting kernel ...\n\n");
281
Daniel Schwierzeckb87493f2013-05-30 19:04:20 +0200282 kernel(linux_argc, (ulong)linux_argv, (ulong)linux_env, linux_extra);
Gabor Juhos0ea72132013-01-07 02:53:41 +0000283}
284
285int do_bootm_linux(int flag, int argc, char * const argv[],
286 bootm_headers_t *images)
287{
Daniel Schwierzeckc9639422014-11-16 01:27:23 +0100288 int ret;
289
Gabor Juhos9c170e22013-01-07 02:53:42 +0000290 /* No need for those on MIPS */
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200291 if (flag & BOOTM_STATE_OS_BD_T)
Gabor Juhos9c170e22013-01-07 02:53:42 +0000292 return -1;
293
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200294 if (flag & BOOTM_STATE_OS_CMDLINE) {
295 boot_cmdline_linux(images);
296 return 0;
297 }
298
Gabor Juhos9c170e22013-01-07 02:53:42 +0000299 if (flag & BOOTM_STATE_OS_PREP) {
300 boot_prep_linux(images);
301 return 0;
302 }
303
304 if (flag & BOOTM_STATE_OS_GO) {
305 boot_jump_linux(images);
306 return 0;
307 }
Gabor Juhos0ea72132013-01-07 02:53:41 +0000308
Daniel Schwierzeckc9639422014-11-16 01:27:23 +0100309 ret = boot_setup_linux(images);
310 if (ret)
311 return ret;
312
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200313 boot_cmdline_linux(images);
Gabor Juhos0ea72132013-01-07 02:53:41 +0000314 boot_prep_linux(images);
Gabor Juhose08634c2013-01-07 02:53:40 +0000315 boot_jump_linux(images);
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200316
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100317 /* does not return */
Kumar Gala40d7e992008-08-15 08:24:45 -0500318 return 1;
wdenkc0218802003-03-27 12:09:35 +0000319}