blob: bea97441b14570293dcdafbbe6fa0acbc65fa816 [file] [log] [blame]
wdenk4e5ca3e2003-12-08 01:34:36 +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
wdenkbf9e3b32004-02-12 00:47:09 +000015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk4e5ca3e2003-12-08 01:34:36 +000016 * 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
wdenkbf9e3b32004-02-12 00:47:09 +000020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
wdenk4e5ca3e2003-12-08 01:34:36 +000021 *
22 */
23
24#include <common.h>
25#include <command.h>
wdenk4e5ca3e2003-12-08 01:34:36 +000026#include <image.h>
27#include <zlib.h>
TsiChungLiew8ae158c2007-08-16 15:05:11 -050028#include <bzlib.h>
29#include <environment.h>
wdenk4e5ca3e2003-12-08 01:34:36 +000030#include <asm/byteorder.h>
31
Wolfgang Denkd87080b2006-03-31 18:32:53 +020032DECLARE_GLOBAL_DATA_PTR;
33
wdenk4e5ca3e2003-12-08 01:34:36 +000034#define PHYSADDR(x) x
35
wdenkbf9e3b32004-02-12 00:47:09 +000036#define LINUX_MAX_ENVS 256
37#define LINUX_MAX_ARGS 256
wdenk4e5ca3e2003-12-08 01:34:36 +000038
TsiChungLiew8ae158c2007-08-16 15:05:11 -050039#ifdef CONFIG_SHOW_BOOT_PROGRESS
40# include <status_led.h>
41# define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
42#else
43# define SHOW_BOOT_PROGRESS(arg)
44#endif
wdenk4e5ca3e2003-12-08 01:34:36 +000045
TsiChungLiew8ae158c2007-08-16 15:05:11 -050046extern image_header_t header;
wdenkbf9e3b32004-02-12 00:47:09 +000047
TsiChungLiew8ae158c2007-08-16 15:05:11 -050048void do_bootm_linux(cmd_tbl_t * cmdtp, int flag,
49 int argc, char *argv[],
50 ulong addr, ulong * len_ptr, int verify)
wdenk4e5ca3e2003-12-08 01:34:36 +000051{
TsiChungLiew8ae158c2007-08-16 15:05:11 -050052 ulong sp;
53 ulong len, checksum;
wdenk4e5ca3e2003-12-08 01:34:36 +000054 ulong initrd_start, initrd_end;
TsiChungLiew8ae158c2007-08-16 15:05:11 -050055 ulong cmd_start, cmd_end;
56 ulong initrd_high;
wdenk4e5ca3e2003-12-08 01:34:36 +000057 ulong data;
TsiChungLiew8ae158c2007-08-16 15:05:11 -050058 int initrd_copy_to_ram = 1;
59 char *cmdline;
60 char *s;
61 bd_t *kbd;
62 void (*kernel) (bd_t *, ulong, ulong, ulong, ulong);
wdenk4e5ca3e2003-12-08 01:34:36 +000063 image_header_t *hdr = &header;
wdenk4e5ca3e2003-12-08 01:34:36 +000064
TsiChungLiew8ae158c2007-08-16 15:05:11 -050065 if ((s = getenv("initrd_high")) != NULL) {
66 /* a value of "no" or a similar string will act like 0,
67 * turning the "load high" feature off. This is intentional.
68 */
69 initrd_high = simple_strtoul(s, NULL, 16);
70 if (initrd_high == ~0)
71 initrd_copy_to_ram = 0;
72 } else { /* not set, no restrictions to load high */
73 initrd_high = ~0;
74 }
75
76#ifdef CONFIG_LOGBUFFER
77 kbd = gd->bd;
78 /* Prevent initrd from overwriting logbuffer */
79 if (initrd_high < (kbd->bi_memsize - LOGBUFF_LEN - LOGBUFF_OVERHEAD))
80 initrd_high = kbd->bi_memsize - LOGBUFF_LEN - LOGBUFF_OVERHEAD;
81 debug("## Logbuffer at 0x%08lX ", kbd->bi_memsize - LOGBUFF_LEN);
82#endif
83
84 /*
85 * Booting a (Linux) kernel image
86 *
87 * Allocate space for command line and board info - the
88 * address should be as high as possible within the reach of
89 * the kernel (see CFG_BOOTMAPSZ settings), but in unused
90 * memory, which means far enough below the current stack
91 * pointer.
92 */
93 asm("movel %%a7, %%d0\n"
94 "movel %%d0, %0\n": "=d"(sp): :"%d0");
Stefan Roese8280f6a2007-08-18 14:33:02 +020095
96 debug("## Current stack ends at 0x%08lX ", sp);
TsiChungLiew8ae158c2007-08-16 15:05:11 -050097
98 sp -= 2048; /* just to be sure */
99 if (sp > CFG_BOOTMAPSZ)
100 sp = CFG_BOOTMAPSZ;
101 sp &= ~0xF;
102
103 debug("=> set upper limit to 0x%08lX\n", sp);
104
105 cmdline = (char *)((sp - CFG_BARGSIZE) & ~0xF);
106 kbd = (bd_t *) (((ulong) cmdline - sizeof(bd_t)) & ~0xF);
107
108 if ((s = getenv("bootargs")) == NULL)
109 s = "";
110
111 strcpy(cmdline, s);
112
113 cmd_start = (ulong) & cmdline[0];
114 cmd_end = cmd_start + strlen(cmdline);
115
116 *kbd = *(gd->bd);
117
118#ifdef DEBUG
119 printf("## cmdline at 0x%08lX ... 0x%08lX\n", cmd_start, cmd_end);
120
121 do_bdinfo(NULL, 0, 0, NULL);
122#endif
123
124 if ((s = getenv("clocks_in_mhz")) != NULL) {
125 /* convert all clock information to MHz */
126 kbd->bi_intfreq /= 1000000L;
127 kbd->bi_busfreq /= 1000000L;
128 }
129
130 kernel =
131 (void (*)(bd_t *, ulong, ulong, ulong, ulong))ntohl(hdr->ih_ep);
wdenk4e5ca3e2003-12-08 01:34:36 +0000132
133 /*
134 * Check if there is an initrd image
135 */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500136
wdenk4e5ca3e2003-12-08 01:34:36 +0000137 if (argc >= 3) {
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500138 debug("Not skipping initrd\n");
139 SHOW_BOOT_PROGRESS(9);
wdenk4e5ca3e2003-12-08 01:34:36 +0000140
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500141 addr = simple_strtoul(argv[2], NULL, 16);
wdenk4e5ca3e2003-12-08 01:34:36 +0000142
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500143 printf("## Loading RAMDisk Image at %08lx ...\n", addr);
wdenk4e5ca3e2003-12-08 01:34:36 +0000144
145 /* Copy header so we can blank CRC field for re-calculation */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500146 memmove(&header, (char *)addr, sizeof(image_header_t));
wdenk4e5ca3e2003-12-08 01:34:36 +0000147
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500148 if (ntohl(hdr->ih_magic) != IH_MAGIC) {
149 puts("Bad Magic Number\n");
150 SHOW_BOOT_PROGRESS(-10);
151 do_reset(cmdtp, flag, argc, argv);
wdenk4e5ca3e2003-12-08 01:34:36 +0000152 }
153
154 data = (ulong) & header;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500155 len = sizeof(image_header_t);
wdenk4e5ca3e2003-12-08 01:34:36 +0000156
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500157 checksum = ntohl(hdr->ih_hcrc);
wdenk4e5ca3e2003-12-08 01:34:36 +0000158 hdr->ih_hcrc = 0;
159
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500160 if (crc32(0, (uchar *) data, len) != checksum) {
161 puts("Bad Header Checksum\n");
162 SHOW_BOOT_PROGRESS(-11);
163 do_reset(cmdtp, flag, argc, argv);
wdenk4e5ca3e2003-12-08 01:34:36 +0000164 }
165
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500166 SHOW_BOOT_PROGRESS(10);
wdenk4e5ca3e2003-12-08 01:34:36 +0000167
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500168 print_image_hdr(hdr);
wdenk4e5ca3e2003-12-08 01:34:36 +0000169
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500170 data = addr + sizeof(image_header_t);
171 len = ntohl(hdr->ih_size);
wdenk4e5ca3e2003-12-08 01:34:36 +0000172
173 if (verify) {
174 ulong csum = 0;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500175#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
176 ulong cdata = data, edata = cdata + len;
177#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
wdenk4e5ca3e2003-12-08 01:34:36 +0000178
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500179 puts(" Verifying Checksum ... ");
180
181#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
182
183 while (cdata < edata) {
184 ulong chunk = edata - cdata;
185
186 if (chunk > CHUNKSZ)
187 chunk = CHUNKSZ;
188 csum = crc32(csum, (uchar *) cdata, chunk);
189 cdata += chunk;
190
191 WATCHDOG_RESET();
wdenk4e5ca3e2003-12-08 01:34:36 +0000192 }
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500193#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
194 csum = crc32(0, (uchar *) data, len);
195#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
196
197 if (csum != ntohl(hdr->ih_dcrc)) {
198 puts("Bad Data CRC\n");
199 SHOW_BOOT_PROGRESS(-12);
200 do_reset(cmdtp, flag, argc, argv);
201 }
202 puts("OK\n");
wdenk4e5ca3e2003-12-08 01:34:36 +0000203 }
204
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500205 SHOW_BOOT_PROGRESS(11);
wdenk4e5ca3e2003-12-08 01:34:36 +0000206
207 if ((hdr->ih_os != IH_OS_LINUX) ||
wdenkbf9e3b32004-02-12 00:47:09 +0000208 (hdr->ih_arch != IH_CPU_M68K) ||
wdenk4e5ca3e2003-12-08 01:34:36 +0000209 (hdr->ih_type != IH_TYPE_RAMDISK)) {
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500210 puts("No Linux ColdFire Ramdisk Image\n");
211 SHOW_BOOT_PROGRESS(-13);
212 do_reset(cmdtp, flag, argc, argv);
wdenk4e5ca3e2003-12-08 01:34:36 +0000213 }
214
215 /*
216 * Now check if we have a multifile image
217 */
218 } else if ((hdr->ih_type == IH_TYPE_MULTI) && (len_ptr[1])) {
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500219 u_long tail = ntohl(len_ptr[0]) % 4;
wdenk4e5ca3e2003-12-08 01:34:36 +0000220 int i;
221
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500222 SHOW_BOOT_PROGRESS(13);
wdenk4e5ca3e2003-12-08 01:34:36 +0000223
224 /* skip kernel length and terminator */
225 data = (ulong) (&len_ptr[2]);
226 /* skip any additional image length fields */
227 for (i = 1; len_ptr[i]; ++i)
228 data += 4;
229 /* add kernel length, and align */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500230 data += ntohl(len_ptr[0]);
wdenk4e5ca3e2003-12-08 01:34:36 +0000231 if (tail) {
232 data += 4 - tail;
233 }
234
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500235 len = ntohl(len_ptr[1]);
wdenk4e5ca3e2003-12-08 01:34:36 +0000236
237 } else {
238 /*
239 * no initrd image
240 */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500241 SHOW_BOOT_PROGRESS(14);
wdenk4e5ca3e2003-12-08 01:34:36 +0000242
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500243 len = data = 0;
wdenk4e5ca3e2003-12-08 01:34:36 +0000244 }
245
wdenk4e5ca3e2003-12-08 01:34:36 +0000246 if (!data) {
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500247 debug("No initrd\n");
wdenk4e5ca3e2003-12-08 01:34:36 +0000248 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000249
250 if (data) {
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500251 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
252 initrd_start = data;
253 initrd_end = initrd_start + len;
254 } else {
255 initrd_start = (ulong) kbd - len;
256 initrd_start &= ~(4096 - 1); /* align on page */
257
258 if (initrd_high) {
259 ulong nsp;
260
261 /*
262 * the inital ramdisk does not need to be within
263 * CFG_BOOTMAPSZ as it is not accessed until after
264 * the mm system is initialised.
265 *
266 * do the stack bottom calculation again and see if
267 * the initrd will fit just below the monitor stack
268 * bottom without overwriting the area allocated
269 * above for command line args and board info.
270 */
271 asm("movel %%a7, %%d0\n"
272 "movel %%d0, %0\n": "=d"(nsp): :"%d0");
Stefan Roese8280f6a2007-08-18 14:33:02 +0200273
274 nsp -= 2048; /* just to be sure */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500275 nsp &= ~0xF;
276
277 if (nsp > initrd_high) /* limit as specified */
278 nsp = initrd_high;
279
280 nsp -= len;
281 nsp &= ~(4096 - 1); /* align on page */
282
283 if (nsp >= sp)
284 initrd_start = nsp;
285 }
286
287 SHOW_BOOT_PROGRESS(12);
288
289 debug
290 ("## initrd at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
291 data, data + len - 1, len, len);
292
293 initrd_end = initrd_start + len;
294 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
295 initrd_start, initrd_end);
296#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
297 {
298 size_t l = len;
299 void *to = (void *)initrd_start;
300 void *from = (void *)data;
301
302 while (l > 0) {
303 size_t tail =
304 (l > CHUNKSZ) ? CHUNKSZ : l;
305 WATCHDOG_RESET();
306 memmove(to, from, tail);
307 to += tail;
308 from += tail;
309 l -= tail;
310 }
311 }
312#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
313 memmove((void *)initrd_start, (void *)data, len);
314#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
315 puts("OK\n");
316 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000317 } else {
318 initrd_start = 0;
319 initrd_end = 0;
320 }
321
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500322 debug("## Transferring control to Linux (at address %08lx) ...\n",
323 (ulong) kernel);
wdenk4e5ca3e2003-12-08 01:34:36 +0000324
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500325 SHOW_BOOT_PROGRESS(15);
wdenk4e5ca3e2003-12-08 01:34:36 +0000326
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500327 /*
328 * Linux Kernel Parameters (passing board info data):
329 * r3: ptr to board info data
330 * r4: initrd_start or 0 if no initrd
331 * r5: initrd_end - unused if r4 is 0
332 * r6: Start of command line string
333 * r7: End of command line string
334 */
335 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
336 /* does not return */
wdenk4e5ca3e2003-12-08 01:34:36 +0000337}