blob: 952d5a90ee9635650697ca594293f83354c6a0be [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
36#ifdef CONFIG_SHOW_BOOT_PROGRESS
37# include <status_led.h>
38# define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
39#else
40# define SHOW_BOOT_PROGRESS(arg)
41#endif
42
43extern image_header_t header; /* from cmd_bootm.c */
44
wdenk57b2d802003-06-27 21:31:46 +000045extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
46
wdenkbb1b8262003-03-27 12:09:35 +000047static int linux_argc;
48static char ** linux_argv;
49
50static char ** linux_env;
51static char * linux_env_p;
52static int linux_env_idx;
53
54static void linux_params_init (ulong start, char * commandline);
55static void linux_env_set (char * env_name, char * env_val);
56
57
wdenk9b7f3842003-10-09 20:09:04 +000058void do_bootm_linux (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[],
59 ulong addr, ulong * len_ptr, int verify)
wdenkbb1b8262003-03-27 12:09:35 +000060{
wdenk9b7f3842003-10-09 20:09:04 +000061 ulong len = 0, checksum;
62 ulong initrd_start, initrd_end;
63 ulong data;
64 void (*theKernel) (int, char **, char **, int *);
65 image_header_t *hdr = &header;
66 char *commandline = getenv ("bootargs");
67 char env_buf[12];
wdenkbb1b8262003-03-27 12:09:35 +000068
wdenk9b7f3842003-10-09 20:09:04 +000069 theKernel =
70 (void (*)(int, char **, char **, int *)) ntohl (hdr->ih_ep);
wdenkbb1b8262003-03-27 12:09:35 +000071
wdenk9b7f3842003-10-09 20:09:04 +000072 /*
73 * Check if there is an initrd image
74 */
75 if (argc >= 3) {
76 SHOW_BOOT_PROGRESS (9);
wdenkbb1b8262003-03-27 12:09:35 +000077
wdenk9b7f3842003-10-09 20:09:04 +000078 addr = simple_strtoul (argv[2], NULL, 16);
wdenkbb1b8262003-03-27 12:09:35 +000079
wdenk9b7f3842003-10-09 20:09:04 +000080 printf ("## Loading Ramdisk Image at %08lx ...\n", addr);
wdenkbb1b8262003-03-27 12:09:35 +000081
wdenk9b7f3842003-10-09 20:09:04 +000082 /* Copy header so we can blank CRC field for re-calculation */
83 memcpy (&header, (char *) addr, sizeof (image_header_t));
wdenkbb1b8262003-03-27 12:09:35 +000084
wdenk9b7f3842003-10-09 20:09:04 +000085 if (ntohl (hdr->ih_magic) != IH_MAGIC) {
86 printf ("Bad Magic Number\n");
87 SHOW_BOOT_PROGRESS (-10);
88 do_reset (cmdtp, flag, argc, argv);
89 }
wdenkbb1b8262003-03-27 12:09:35 +000090
wdenk9b7f3842003-10-09 20:09:04 +000091 data = (ulong) & header;
92 len = sizeof (image_header_t);
wdenkbb1b8262003-03-27 12:09:35 +000093
wdenk9b7f3842003-10-09 20:09:04 +000094 checksum = ntohl (hdr->ih_hcrc);
95 hdr->ih_hcrc = 0;
wdenkbb1b8262003-03-27 12:09:35 +000096
Wolfgang Denkf6a692b2005-12-04 00:40:34 +010097 if (crc32 (0, (uchar *) data, len) != checksum) {
wdenk9b7f3842003-10-09 20:09:04 +000098 printf ("Bad Header Checksum\n");
99 SHOW_BOOT_PROGRESS (-11);
100 do_reset (cmdtp, flag, argc, argv);
101 }
wdenkbb1b8262003-03-27 12:09:35 +0000102
wdenk9b7f3842003-10-09 20:09:04 +0000103 SHOW_BOOT_PROGRESS (10);
wdenkbb1b8262003-03-27 12:09:35 +0000104
wdenk9b7f3842003-10-09 20:09:04 +0000105 print_image_hdr (hdr);
wdenkbb1b8262003-03-27 12:09:35 +0000106
wdenk9b7f3842003-10-09 20:09:04 +0000107 data = addr + sizeof (image_header_t);
108 len = ntohl (hdr->ih_size);
wdenkbb1b8262003-03-27 12:09:35 +0000109
wdenk9b7f3842003-10-09 20:09:04 +0000110 if (verify) {
111 ulong csum = 0;
wdenkbb1b8262003-03-27 12:09:35 +0000112
wdenk9b7f3842003-10-09 20:09:04 +0000113 printf (" Verifying Checksum ... ");
Wolfgang Denkf6a692b2005-12-04 00:40:34 +0100114 csum = crc32 (0, (uchar *) data, len);
wdenk9b7f3842003-10-09 20:09:04 +0000115 if (csum != ntohl (hdr->ih_dcrc)) {
116 printf ("Bad Data CRC\n");
117 SHOW_BOOT_PROGRESS (-12);
118 do_reset (cmdtp, flag, argc, argv);
119 }
120 printf ("OK\n");
121 }
wdenkbb1b8262003-03-27 12:09:35 +0000122
wdenk9b7f3842003-10-09 20:09:04 +0000123 SHOW_BOOT_PROGRESS (11);
wdenkbb1b8262003-03-27 12:09:35 +0000124
wdenk9b7f3842003-10-09 20:09:04 +0000125 if ((hdr->ih_os != IH_OS_LINUX) ||
126 (hdr->ih_arch != IH_CPU_MIPS) ||
127 (hdr->ih_type != IH_TYPE_RAMDISK)) {
128 printf ("No Linux MIPS Ramdisk Image\n");
129 SHOW_BOOT_PROGRESS (-13);
130 do_reset (cmdtp, flag, argc, argv);
131 }
wdenkbb1b8262003-03-27 12:09:35 +0000132
wdenk9b7f3842003-10-09 20:09:04 +0000133 /*
134 * Now check if we have a multifile image
135 */
136 } else if ((hdr->ih_type == IH_TYPE_MULTI) && (len_ptr[1])) {
137 ulong tail = ntohl (len_ptr[0]) % 4;
138 int i;
wdenkbb1b8262003-03-27 12:09:35 +0000139
wdenk9b7f3842003-10-09 20:09:04 +0000140 SHOW_BOOT_PROGRESS (13);
wdenkbb1b8262003-03-27 12:09:35 +0000141
wdenk9b7f3842003-10-09 20:09:04 +0000142 /* skip kernel length and terminator */
143 data = (ulong) (&len_ptr[2]);
144 /* skip any additional image length fields */
145 for (i = 1; len_ptr[i]; ++i)
146 data += 4;
147 /* add kernel length, and align */
148 data += ntohl (len_ptr[0]);
149 if (tail) {
150 data += 4 - tail;
151 }
wdenkbb1b8262003-03-27 12:09:35 +0000152
wdenk9b7f3842003-10-09 20:09:04 +0000153 len = ntohl (len_ptr[1]);
wdenkbb1b8262003-03-27 12:09:35 +0000154
wdenk9b7f3842003-10-09 20:09:04 +0000155 } else {
156 /*
157 * no initrd image
158 */
159 SHOW_BOOT_PROGRESS (14);
wdenkbb1b8262003-03-27 12:09:35 +0000160
wdenk9b7f3842003-10-09 20:09:04 +0000161 data = 0;
162 }
wdenkbb1b8262003-03-27 12:09:35 +0000163
164#ifdef DEBUG
wdenk9b7f3842003-10-09 20:09:04 +0000165 if (!data) {
166 printf ("No initrd\n");
167 }
wdenkbb1b8262003-03-27 12:09:35 +0000168#endif
169
wdenk9b7f3842003-10-09 20:09:04 +0000170 if (data) {
171 initrd_start = data;
172 initrd_end = initrd_start + len;
173 } else {
174 initrd_start = 0;
175 initrd_end = 0;
176 }
wdenkbb1b8262003-03-27 12:09:35 +0000177
wdenk9b7f3842003-10-09 20:09:04 +0000178 SHOW_BOOT_PROGRESS (15);
wdenkbb1b8262003-03-27 12:09:35 +0000179
180#ifdef DEBUG
wdenk9b7f3842003-10-09 20:09:04 +0000181 printf ("## Transferring control to Linux (at address %08lx) ...\n",
182 (ulong) theKernel);
wdenkbb1b8262003-03-27 12:09:35 +0000183#endif
184
wdenk4ea537d2003-12-07 18:32:37 +0000185 linux_params_init (UNCACHED_SDRAM (gd->bd->bi_boot_params), commandline);
wdenkbb1b8262003-03-27 12:09:35 +0000186
wdenk9b7f3842003-10-09 20:09:04 +0000187#ifdef CONFIG_MEMSIZE_IN_BYTES
188 sprintf (env_buf, "%lu", gd->ram_size);
189#ifdef DEBUG
190 printf ("## Giving linux memsize in bytes, %lu\n", gd->ram_size);
191#endif
192#else
193 sprintf (env_buf, "%lu", gd->ram_size >> 20);
194#ifdef DEBUG
195 printf ("## Giving linux memsize in MB, %lu\n", gd->ram_size >> 20);
196#endif
197#endif /* CONFIG_MEMSIZE_IN_BYTES */
wdenkbb1b8262003-03-27 12:09:35 +0000198
wdenk9b7f3842003-10-09 20:09:04 +0000199 linux_env_set ("memsize", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000200
wdenk4ea537d2003-12-07 18:32:37 +0000201 sprintf (env_buf, "0x%08X", (uint) UNCACHED_SDRAM (initrd_start));
wdenk9b7f3842003-10-09 20:09:04 +0000202 linux_env_set ("initrd_start", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000203
wdenk9b7f3842003-10-09 20:09:04 +0000204 sprintf (env_buf, "0x%X", (uint) (initrd_end - initrd_start));
205 linux_env_set ("initrd_size", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000206
wdenk9b7f3842003-10-09 20:09:04 +0000207 sprintf (env_buf, "0x%08X", (uint) (gd->bd->bi_flashstart));
208 linux_env_set ("flash_start", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000209
wdenk9b7f3842003-10-09 20:09:04 +0000210 sprintf (env_buf, "0x%X", (uint) (gd->bd->bi_flashsize));
211 linux_env_set ("flash_size", env_buf);
wdenkbb1b8262003-03-27 12:09:35 +0000212
wdenk9b7f3842003-10-09 20:09:04 +0000213 /* we assume that the kernel is in place */
214 printf ("\nStarting kernel ...\n\n");
215
216 theKernel (linux_argc, linux_argv, linux_env, 0);
wdenkbb1b8262003-03-27 12:09:35 +0000217}
218
wdenk9b7f3842003-10-09 20:09:04 +0000219static void linux_params_init (ulong start, char *line)
wdenkbb1b8262003-03-27 12:09:35 +0000220{
wdenk9b7f3842003-10-09 20:09:04 +0000221 char *next, *quote, *argp;
wdenkbb1b8262003-03-27 12:09:35 +0000222
wdenk9b7f3842003-10-09 20:09:04 +0000223 linux_argc = 1;
224 linux_argv = (char **) start;
225 linux_argv[0] = 0;
226 argp = (char *) (linux_argv + LINUX_MAX_ARGS);
wdenkbb1b8262003-03-27 12:09:35 +0000227
wdenk9b7f3842003-10-09 20:09:04 +0000228 next = line;
wdenkbb1b8262003-03-27 12:09:35 +0000229
wdenk9b7f3842003-10-09 20:09:04 +0000230 while (line && *line && linux_argc < LINUX_MAX_ARGS) {
231 quote = strchr (line, '"');
232 next = strchr (line, ' ');
wdenkbb1b8262003-03-27 12:09:35 +0000233
wdenk9b7f3842003-10-09 20:09:04 +0000234 while (next != NULL && quote != NULL && quote < next) {
235 /* we found a left quote before the next blank
236 * now we have to find the matching right quote
237 */
238 next = strchr (quote + 1, '"');
239 if (next != NULL) {
240 quote = strchr (next + 1, '"');
241 next = strchr (next + 1, ' ');
242 }
243 }
wdenk57b2d802003-06-27 21:31:46 +0000244
wdenk9b7f3842003-10-09 20:09:04 +0000245 if (next == NULL) {
246 next = line + strlen (line);
247 }
wdenkbb1b8262003-03-27 12:09:35 +0000248
wdenk9b7f3842003-10-09 20:09:04 +0000249 linux_argv[linux_argc] = argp;
250 memcpy (argp, line, next - line);
251 argp[next - line] = 0;
wdenkbb1b8262003-03-27 12:09:35 +0000252
wdenk9b7f3842003-10-09 20:09:04 +0000253 argp += next - line + 1;
254 linux_argc++;
wdenk57b2d802003-06-27 21:31:46 +0000255
wdenk9b7f3842003-10-09 20:09:04 +0000256 if (*next)
257 next++;
wdenk57b2d802003-06-27 21:31:46 +0000258
wdenk9b7f3842003-10-09 20:09:04 +0000259 line = next;
260 }
wdenkbb1b8262003-03-27 12:09:35 +0000261
wdenk9b7f3842003-10-09 20:09:04 +0000262 linux_env = (char **) (((ulong) argp + 15) & ~15);
263 linux_env[0] = 0;
264 linux_env_p = (char *) (linux_env + LINUX_MAX_ENVS);
265 linux_env_idx = 0;
wdenkbb1b8262003-03-27 12:09:35 +0000266}
267
wdenk9b7f3842003-10-09 20:09:04 +0000268static void linux_env_set (char *env_name, char *env_val)
wdenkbb1b8262003-03-27 12:09:35 +0000269{
wdenk9b7f3842003-10-09 20:09:04 +0000270 if (linux_env_idx < LINUX_MAX_ENVS - 1) {
271 linux_env[linux_env_idx] = linux_env_p;
wdenkbb1b8262003-03-27 12:09:35 +0000272
wdenk9b7f3842003-10-09 20:09:04 +0000273 strcpy (linux_env_p, env_name);
274 linux_env_p += strlen (env_name);
wdenkbb1b8262003-03-27 12:09:35 +0000275
wdenk9b7f3842003-10-09 20:09:04 +0000276 strcpy (linux_env_p, "=");
277 linux_env_p += 1;
wdenkbb1b8262003-03-27 12:09:35 +0000278
wdenk9b7f3842003-10-09 20:09:04 +0000279 strcpy (linux_env_p, env_val);
280 linux_env_p += strlen (env_val);
wdenk57b2d802003-06-27 21:31:46 +0000281
wdenk9b7f3842003-10-09 20:09:04 +0000282 linux_env_p++;
283 linux_env[++linux_env_idx] = 0;
284 }
wdenkbb1b8262003-03-27 12:09:35 +0000285}