blob: 556b1804e04020d6fdd28d487269af18f1e876db [file] [log] [blame]
wdenkbb1b8262003-03-27 12:09:35 +00001/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24#include <common.h>
25#include <command.h>
wdenkbb1b8262003-03-27 12:09:35 +000026#include <image.h>
27#include <zlib.h>
28#include <asm/byteorder.h>
29#include <asm/addrspace.h>
30
Wolfgang Denk6405a152006-03-31 18:32:53 +020031DECLARE_GLOBAL_DATA_PTR;
32
wdenkbb1b8262003-03-27 12:09:35 +000033#define LINUX_MAX_ENVS 256
34#define LINUX_MAX_ARGS 256
35
wdenkbb1b8262003-03-27 12:09:35 +000036extern image_header_t header; /* from cmd_bootm.c */
37
wdenk57b2d802003-06-27 21:31:46 +000038extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
39
wdenkbb1b8262003-03-27 12:09:35 +000040static int linux_argc;
41static char ** linux_argv;
42
43static char ** linux_env;
44static char * linux_env_p;
45static int linux_env_idx;
46
47static void linux_params_init (ulong start, char * commandline);
48static void linux_env_set (char * env_name, char * env_val);
49
50
wdenk9b7f3842003-10-09 20:09:04 +000051void do_bootm_linux (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[],
52 ulong addr, ulong * len_ptr, int verify)
wdenkbb1b8262003-03-27 12:09:35 +000053{
wdenk9b7f3842003-10-09 20:09:04 +000054 ulong len = 0, checksum;
55 ulong initrd_start, initrd_end;
56 ulong data;
57 void (*theKernel) (int, char **, char **, int *);
58 image_header_t *hdr = &header;
59 char *commandline = getenv ("bootargs");
60 char env_buf[12];
wdenkbb1b8262003-03-27 12:09:35 +000061
wdenk9b7f3842003-10-09 20:09:04 +000062 theKernel =
63 (void (*)(int, char **, char **, int *)) ntohl (hdr->ih_ep);
wdenkbb1b8262003-03-27 12:09:35 +000064
wdenk9b7f3842003-10-09 20:09:04 +000065 /*
66 * Check if there is an initrd image
67 */
68 if (argc >= 3) {
Heiko Schocher8a8ec532007-07-13 09:54:17 +020069 show_boot_progress (9);
wdenkbb1b8262003-03-27 12:09:35 +000070
wdenk9b7f3842003-10-09 20:09:04 +000071 addr = simple_strtoul (argv[2], NULL, 16);
wdenkbb1b8262003-03-27 12:09:35 +000072
wdenk9b7f3842003-10-09 20:09:04 +000073 printf ("## Loading Ramdisk Image at %08lx ...\n", addr);
wdenkbb1b8262003-03-27 12:09:35 +000074
wdenk9b7f3842003-10-09 20:09:04 +000075 /* Copy header so we can blank CRC field for re-calculation */
76 memcpy (&header, (char *) addr, sizeof (image_header_t));
wdenkbb1b8262003-03-27 12:09:35 +000077
wdenk9b7f3842003-10-09 20:09:04 +000078 if (ntohl (hdr->ih_magic) != IH_MAGIC) {
79 printf ("Bad Magic Number\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +020080 show_boot_progress (-10);
wdenk9b7f3842003-10-09 20:09:04 +000081 do_reset (cmdtp, flag, argc, argv);
82 }
wdenkbb1b8262003-03-27 12:09:35 +000083
wdenk9b7f3842003-10-09 20:09:04 +000084 data = (ulong) & header;
85 len = sizeof (image_header_t);
wdenkbb1b8262003-03-27 12:09:35 +000086
wdenk9b7f3842003-10-09 20:09:04 +000087 checksum = ntohl (hdr->ih_hcrc);
88 hdr->ih_hcrc = 0;
wdenkbb1b8262003-03-27 12:09:35 +000089
Wolfgang Denkf6a692b2005-12-04 00:40:34 +010090 if (crc32 (0, (uchar *) data, len) != checksum) {
wdenk9b7f3842003-10-09 20:09:04 +000091 printf ("Bad Header Checksum\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +020092 show_boot_progress (-11);
wdenk9b7f3842003-10-09 20:09:04 +000093 do_reset (cmdtp, flag, argc, argv);
94 }
wdenkbb1b8262003-03-27 12:09:35 +000095
Heiko Schocher8a8ec532007-07-13 09:54:17 +020096 show_boot_progress (10);
wdenkbb1b8262003-03-27 12:09:35 +000097
wdenk9b7f3842003-10-09 20:09:04 +000098 print_image_hdr (hdr);
wdenkbb1b8262003-03-27 12:09:35 +000099
wdenk9b7f3842003-10-09 20:09:04 +0000100 data = addr + sizeof (image_header_t);
101 len = ntohl (hdr->ih_size);
wdenkbb1b8262003-03-27 12:09:35 +0000102
wdenk9b7f3842003-10-09 20:09:04 +0000103 if (verify) {
104 ulong csum = 0;
wdenkbb1b8262003-03-27 12:09:35 +0000105
wdenk9b7f3842003-10-09 20:09:04 +0000106 printf (" Verifying Checksum ... ");
Wolfgang Denkf6a692b2005-12-04 00:40:34 +0100107 csum = crc32 (0, (uchar *) data, len);
wdenk9b7f3842003-10-09 20:09:04 +0000108 if (csum != ntohl (hdr->ih_dcrc)) {
109 printf ("Bad Data CRC\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200110 show_boot_progress (-12);
wdenk9b7f3842003-10-09 20:09:04 +0000111 do_reset (cmdtp, flag, argc, argv);
112 }
113 printf ("OK\n");
114 }
wdenkbb1b8262003-03-27 12:09:35 +0000115
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200116 show_boot_progress (11);
wdenkbb1b8262003-03-27 12:09:35 +0000117
wdenk9b7f3842003-10-09 20:09:04 +0000118 if ((hdr->ih_os != IH_OS_LINUX) ||
119 (hdr->ih_arch != IH_CPU_MIPS) ||
120 (hdr->ih_type != IH_TYPE_RAMDISK)) {
121 printf ("No Linux MIPS Ramdisk Image\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200122 show_boot_progress (-13);
wdenk9b7f3842003-10-09 20:09:04 +0000123 do_reset (cmdtp, flag, argc, argv);
124 }
wdenkbb1b8262003-03-27 12:09:35 +0000125
wdenk9b7f3842003-10-09 20:09:04 +0000126 /*
127 * Now check if we have a multifile image
128 */
129 } else if ((hdr->ih_type == IH_TYPE_MULTI) && (len_ptr[1])) {
130 ulong tail = ntohl (len_ptr[0]) % 4;
131 int i;
wdenkbb1b8262003-03-27 12:09:35 +0000132
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200133 show_boot_progress (13);
wdenkbb1b8262003-03-27 12:09:35 +0000134
wdenk9b7f3842003-10-09 20:09:04 +0000135 /* skip kernel length and terminator */
136 data = (ulong) (&len_ptr[2]);
137 /* skip any additional image length fields */
138 for (i = 1; len_ptr[i]; ++i)
139 data += 4;
140 /* add kernel length, and align */
141 data += ntohl (len_ptr[0]);
142 if (tail) {
143 data += 4 - tail;
144 }
wdenkbb1b8262003-03-27 12:09:35 +0000145
wdenk9b7f3842003-10-09 20:09:04 +0000146 len = ntohl (len_ptr[1]);
wdenkbb1b8262003-03-27 12:09:35 +0000147
wdenk9b7f3842003-10-09 20:09:04 +0000148 } else {
149 /*
150 * no initrd image
151 */
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200152 show_boot_progress (14);
wdenkbb1b8262003-03-27 12:09:35 +0000153
wdenk9b7f3842003-10-09 20:09:04 +0000154 data = 0;
155 }
wdenkbb1b8262003-03-27 12:09:35 +0000156
157#ifdef DEBUG
wdenk9b7f3842003-10-09 20:09:04 +0000158 if (!data) {
159 printf ("No initrd\n");
160 }
wdenkbb1b8262003-03-27 12:09:35 +0000161#endif
162
wdenk9b7f3842003-10-09 20:09:04 +0000163 if (data) {
164 initrd_start = data;
165 initrd_end = initrd_start + len;
166 } else {
167 initrd_start = 0;
168 initrd_end = 0;
169 }
wdenkbb1b8262003-03-27 12:09:35 +0000170
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200171 show_boot_progress (15);
wdenkbb1b8262003-03-27 12:09:35 +0000172
173#ifdef DEBUG
wdenk9b7f3842003-10-09 20:09:04 +0000174 printf ("## Transferring control to Linux (at address %08lx) ...\n",
175 (ulong) theKernel);
wdenkbb1b8262003-03-27 12:09:35 +0000176#endif
177
wdenk4ea537d2003-12-07 18:32:37 +0000178 linux_params_init (UNCACHED_SDRAM (gd->bd->bi_boot_params), commandline);
wdenkbb1b8262003-03-27 12:09:35 +0000179
wdenk9b7f3842003-10-09 20:09:04 +0000180#ifdef CONFIG_MEMSIZE_IN_BYTES
181 sprintf (env_buf, "%lu", gd->ram_size);
182#ifdef DEBUG
183 printf ("## Giving linux memsize in bytes, %lu\n", gd->ram_size);
184#endif
185#else
186 sprintf (env_buf, "%lu", gd->ram_size >> 20);
187#ifdef DEBUG
188 printf ("## Giving linux memsize in MB, %lu\n", gd->ram_size >> 20);
189#endif
190#endif /* CONFIG_MEMSIZE_IN_BYTES */
wdenkbb1b8262003-03-27 12:09:35 +0000191
wdenk9b7f3842003-10-09 20:09:04 +0000192 linux_env_set ("memsize", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000193
wdenk4ea537d2003-12-07 18:32:37 +0000194 sprintf (env_buf, "0x%08X", (uint) UNCACHED_SDRAM (initrd_start));
wdenk9b7f3842003-10-09 20:09:04 +0000195 linux_env_set ("initrd_start", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000196
wdenk9b7f3842003-10-09 20:09:04 +0000197 sprintf (env_buf, "0x%X", (uint) (initrd_end - initrd_start));
198 linux_env_set ("initrd_size", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000199
wdenk9b7f3842003-10-09 20:09:04 +0000200 sprintf (env_buf, "0x%08X", (uint) (gd->bd->bi_flashstart));
201 linux_env_set ("flash_start", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000202
wdenk9b7f3842003-10-09 20:09:04 +0000203 sprintf (env_buf, "0x%X", (uint) (gd->bd->bi_flashsize));
204 linux_env_set ("flash_size", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000205
wdenk9b7f3842003-10-09 20:09:04 +0000206 /* we assume that the kernel is in place */
207 printf ("\nStarting kernel ...\n\n");
208
209 theKernel (linux_argc, linux_argv, linux_env, 0);
wdenkbb1b8262003-03-27 12:09:35 +0000210}
211
wdenk9b7f3842003-10-09 20:09:04 +0000212static void linux_params_init (ulong start, char *line)
wdenkbb1b8262003-03-27 12:09:35 +0000213{
wdenk9b7f3842003-10-09 20:09:04 +0000214 char *next, *quote, *argp;
wdenkbb1b8262003-03-27 12:09:35 +0000215
wdenk9b7f3842003-10-09 20:09:04 +0000216 linux_argc = 1;
217 linux_argv = (char **) start;
218 linux_argv[0] = 0;
219 argp = (char *) (linux_argv + LINUX_MAX_ARGS);
wdenkbb1b8262003-03-27 12:09:35 +0000220
wdenk9b7f3842003-10-09 20:09:04 +0000221 next = line;
wdenkbb1b8262003-03-27 12:09:35 +0000222
wdenk9b7f3842003-10-09 20:09:04 +0000223 while (line && *line && linux_argc < LINUX_MAX_ARGS) {
224 quote = strchr (line, '"');
225 next = strchr (line, ' ');
wdenkbb1b8262003-03-27 12:09:35 +0000226
wdenk9b7f3842003-10-09 20:09:04 +0000227 while (next != NULL && quote != NULL && quote < next) {
228 /* we found a left quote before the next blank
229 * now we have to find the matching right quote
230 */
231 next = strchr (quote + 1, '"');
232 if (next != NULL) {
233 quote = strchr (next + 1, '"');
234 next = strchr (next + 1, ' ');
235 }
236 }
wdenk57b2d802003-06-27 21:31:46 +0000237
wdenk9b7f3842003-10-09 20:09:04 +0000238 if (next == NULL) {
239 next = line + strlen (line);
240 }
wdenkbb1b8262003-03-27 12:09:35 +0000241
wdenk9b7f3842003-10-09 20:09:04 +0000242 linux_argv[linux_argc] = argp;
243 memcpy (argp, line, next - line);
244 argp[next - line] = 0;
wdenkbb1b8262003-03-27 12:09:35 +0000245
wdenk9b7f3842003-10-09 20:09:04 +0000246 argp += next - line + 1;
247 linux_argc++;
wdenk57b2d802003-06-27 21:31:46 +0000248
wdenk9b7f3842003-10-09 20:09:04 +0000249 if (*next)
250 next++;
wdenk57b2d802003-06-27 21:31:46 +0000251
wdenk9b7f3842003-10-09 20:09:04 +0000252 line = next;
253 }
wdenkbb1b8262003-03-27 12:09:35 +0000254
wdenk9b7f3842003-10-09 20:09:04 +0000255 linux_env = (char **) (((ulong) argp + 15) & ~15);
256 linux_env[0] = 0;
257 linux_env_p = (char *) (linux_env + LINUX_MAX_ENVS);
258 linux_env_idx = 0;
wdenkbb1b8262003-03-27 12:09:35 +0000259}
260
wdenk9b7f3842003-10-09 20:09:04 +0000261static void linux_env_set (char *env_name, char *env_val)
wdenkbb1b8262003-03-27 12:09:35 +0000262{
wdenk9b7f3842003-10-09 20:09:04 +0000263 if (linux_env_idx < LINUX_MAX_ENVS - 1) {
264 linux_env[linux_env_idx] = linux_env_p;
wdenkbb1b8262003-03-27 12:09:35 +0000265
wdenk9b7f3842003-10-09 20:09:04 +0000266 strcpy (linux_env_p, env_name);
267 linux_env_p += strlen (env_name);
wdenkbb1b8262003-03-27 12:09:35 +0000268
wdenk9b7f3842003-10-09 20:09:04 +0000269 strcpy (linux_env_p, "=");
270 linux_env_p += 1;
wdenkbb1b8262003-03-27 12:09:35 +0000271
wdenk9b7f3842003-10-09 20:09:04 +0000272 strcpy (linux_env_p, env_val);
273 linux_env_p += strlen (env_val);
wdenk57b2d802003-06-27 21:31:46 +0000274
wdenk9b7f3842003-10-09 20:09:04 +0000275 linux_env_p++;
276 linux_env[++linux_env_idx] = 0;
277 }
wdenkbb1b8262003-03-27 12:09:35 +0000278}