blob: 257390b56079eaa0f55adc0d4e33f124c9792fad [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>
9#include <command.h>
wdenkc0218802003-03-27 12:09:35 +000010#include <image.h>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020011#include <u-boot/zlib.h>
wdenkc0218802003-03-27 12:09:35 +000012#include <asm/byteorder.h>
13#include <asm/addrspace.h>
14
Wolfgang Denkd87080b2006-03-31 18:32:53 +020015DECLARE_GLOBAL_DATA_PTR;
16
wdenkc0218802003-03-27 12:09:35 +000017#define LINUX_MAX_ENVS 256
18#define LINUX_MAX_ARGS 256
19
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +020020static int linux_argc;
21static char **linux_argv;
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +020022static char *linux_argp;
wdenkc0218802003-03-27 12:09:35 +000023
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +020024static char **linux_env;
25static char *linux_env_p;
26static int linux_env_idx;
wdenkc0218802003-03-27 12:09:35 +000027
Daniel Schwierzeckf66cc1e2013-05-09 17:10:06 +020028static ulong arch_get_sp(void)
29{
30 ulong ret;
31
32 __asm__ __volatile__("move %0, $sp" : "=r"(ret) : );
33
34 return ret;
35}
36
37void arch_lmb_reserve(struct lmb *lmb)
38{
39 ulong sp;
40
41 sp = arch_get_sp();
42 debug("## Current stack ends at 0x%08lx\n", sp);
43
44 /* adjust sp by 4K to be safe */
45 sp -= 4096;
46 lmb_reserve(lmb, sp, CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp);
47}
48
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +020049static void linux_cmdline_init(void)
50{
51 linux_argc = 1;
52 linux_argv = (char **)UNCACHED_SDRAM(gd->bd->bi_boot_params);
53 linux_argv[0] = 0;
54 linux_argp = (char *)(linux_argv + LINUX_MAX_ARGS);
55}
56
57static void linux_cmdline_set(const char *value, size_t len)
58{
59 linux_argv[linux_argc] = linux_argp;
60 memcpy(linux_argp, value, len);
61 linux_argp[len] = 0;
62
63 linux_argp += len + 1;
64 linux_argc++;
65}
66
67static void linux_cmdline_dump(void)
68{
69 int i;
70
71 debug("## cmdline argv at 0x%p, argp at 0x%p\n",
72 linux_argv, linux_argp);
73
74 for (i = 1; i < linux_argc; i++)
75 debug(" arg %03d: %s\n", i, linux_argv[i]);
76}
77
78static void boot_cmdline_linux(bootm_headers_t *images)
79{
80 const char *bootargs, *next, *quote;
81
82 linux_cmdline_init();
83
84 bootargs = getenv("bootargs");
85 if (!bootargs)
86 return;
87
88 next = bootargs;
89
90 while (bootargs && *bootargs && linux_argc < LINUX_MAX_ARGS) {
91 quote = strchr(bootargs, '"');
92 next = strchr(bootargs, ' ');
93
94 while (next && quote && quote < next) {
95 /*
96 * we found a left quote before the next blank
97 * now we have to find the matching right quote
98 */
99 next = strchr(quote + 1, '"');
100 if (next) {
101 quote = strchr(next + 1, '"');
102 next = strchr(next + 1, ' ');
103 }
104 }
105
106 if (!next)
107 next = bootargs + strlen(bootargs);
108
109 linux_cmdline_set(bootargs, next - bootargs);
110
111 if (*next)
112 next++;
113
114 bootargs = next;
115 }
116
117 linux_cmdline_dump();
118}
119
Daniel Schwierzeck15f8aa92013-05-09 17:10:06 +0200120static void linux_env_init(void)
121{
122 linux_env = (char **)(((ulong) linux_argp + 15) & ~15);
123 linux_env[0] = 0;
124 linux_env_p = (char *)(linux_env + LINUX_MAX_ENVS);
125 linux_env_idx = 0;
126}
127
128static void linux_env_set(const char *env_name, const char *env_val)
129{
130 if (linux_env_idx < LINUX_MAX_ENVS - 1) {
131 linux_env[linux_env_idx] = linux_env_p;
132
133 strcpy(linux_env_p, env_name);
134 linux_env_p += strlen(env_name);
135
136 *linux_env_p++ = '=';
137
138 strcpy(linux_env_p, env_val);
139 linux_env_p += strlen(env_val);
140
141 linux_env_p++;
142 linux_env[++linux_env_idx] = 0;
143 }
144}
145
Gabor Juhos0ea72132013-01-07 02:53:41 +0000146static void boot_prep_linux(bootm_headers_t *images)
wdenkc0218802003-03-27 12:09:35 +0000147{
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200148 char env_buf[12];
Daniel Schwierzeck15f8aa92013-05-09 17:10:06 +0200149 const char *cp;
wdenkc0218802003-03-27 12:09:35 +0000150
wdenk5da627a2003-10-09 20:09:04 +0000151#ifdef CONFIG_MEMSIZE_IN_BYTES
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200152 sprintf(env_buf, "%lu", (ulong)gd->ram_size);
153 debug("## Giving linux memsize in bytes, %lu\n", (ulong)gd->ram_size);
wdenk5da627a2003-10-09 20:09:04 +0000154#else
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200155 sprintf(env_buf, "%lu", (ulong)(gd->ram_size >> 20));
156 debug("## Giving linux memsize in MB, %lu\n",
Daniel Schwierzeck45bde482013-05-09 17:10:06 +0200157 (ulong)(gd->ram_size >> 20));
wdenk5da627a2003-10-09 20:09:04 +0000158#endif /* CONFIG_MEMSIZE_IN_BYTES */
wdenkc0218802003-03-27 12:09:35 +0000159
Daniel Schwierzeck15f8aa92013-05-09 17:10:06 +0200160 linux_env_init();
161
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200162 linux_env_set("memsize", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000163
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200164 sprintf(env_buf, "0x%08X", (uint) UNCACHED_SDRAM(images->rd_start));
165 linux_env_set("initrd_start", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000166
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200167 sprintf(env_buf, "0x%X", (uint) (images->rd_end - images->rd_start));
168 linux_env_set("initrd_size", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000169
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200170 sprintf(env_buf, "0x%08X", (uint) (gd->bd->bi_flashstart));
171 linux_env_set("flash_start", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000172
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200173 sprintf(env_buf, "0x%X", (uint) (gd->bd->bi_flashsize));
174 linux_env_set("flash_size", env_buf);
wdenkc0218802003-03-27 12:09:35 +0000175
Jason McMullane7c37452008-06-08 23:56:00 -0400176 cp = getenv("ethaddr");
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200177 if (cp)
Jason McMullane7c37452008-06-08 23:56:00 -0400178 linux_env_set("ethaddr", cp);
Jason McMullane7c37452008-06-08 23:56:00 -0400179
180 cp = getenv("eth1addr");
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200181 if (cp)
Jason McMullane7c37452008-06-08 23:56:00 -0400182 linux_env_set("eth1addr", cp);
Gabor Juhos0ea72132013-01-07 02:53:41 +0000183}
Jason McMullane7c37452008-06-08 23:56:00 -0400184
Gabor Juhos0ea72132013-01-07 02:53:41 +0000185static void boot_jump_linux(bootm_headers_t *images)
186{
Daniel Schwierzeckc4b37842013-05-09 17:10:06 +0200187 typedef void __noreturn (*kernel_entry_t)(int, ulong, ulong, ulong);
188 kernel_entry_t kernel = (kernel_entry_t) images->ep;
Gabor Juhos0ea72132013-01-07 02:53:41 +0000189
Daniel Schwierzeckc4b37842013-05-09 17:10:06 +0200190 debug("## Transferring control to Linux (at address %p) ...\n", kernel);
Gabor Juhos0ea72132013-01-07 02:53:41 +0000191
192 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
193
194 /* we assume that the kernel is in place */
195 printf("\nStarting kernel ...\n\n");
196
Daniel Schwierzeckc4b37842013-05-09 17:10:06 +0200197 kernel(linux_argc, (ulong)linux_argv, (ulong)linux_env, 0);
Gabor Juhos0ea72132013-01-07 02:53:41 +0000198}
199
200int do_bootm_linux(int flag, int argc, char * const argv[],
201 bootm_headers_t *images)
202{
Gabor Juhos9c170e22013-01-07 02:53:42 +0000203 /* No need for those on MIPS */
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200204 if (flag & BOOTM_STATE_OS_BD_T)
Gabor Juhos9c170e22013-01-07 02:53:42 +0000205 return -1;
206
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200207 if (flag & BOOTM_STATE_OS_CMDLINE) {
208 boot_cmdline_linux(images);
209 return 0;
210 }
211
Gabor Juhos9c170e22013-01-07 02:53:42 +0000212 if (flag & BOOTM_STATE_OS_PREP) {
213 boot_prep_linux(images);
214 return 0;
215 }
216
217 if (flag & BOOTM_STATE_OS_GO) {
218 boot_jump_linux(images);
219 return 0;
220 }
Gabor Juhos0ea72132013-01-07 02:53:41 +0000221
Daniel Schwierzeck59e8cbd2013-05-09 17:10:06 +0200222 boot_cmdline_linux(images);
Gabor Juhos0ea72132013-01-07 02:53:41 +0000223 boot_prep_linux(images);
Gabor Juhose08634c2013-01-07 02:53:40 +0000224 boot_jump_linux(images);
Daniel Schwierzecke51a6b72012-06-03 23:46:04 +0200225
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100226 /* does not return */
Kumar Gala40d7e992008-08-15 08:24:45 -0500227 return 1;
wdenkc0218802003-03-27 12:09:35 +0000228}