blob: cc974c2d60d7dfb4f5f8aa28f47a54b01ff50e9e [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>
TsiChungLiew688e8eb2007-10-25 17:14:00 -050029#include <watchdog.h>
TsiChungLiew8ae158c2007-08-16 15:05:11 -050030#include <environment.h>
wdenk4e5ca3e2003-12-08 01:34:36 +000031#include <asm/byteorder.h>
32
Wolfgang Denkd87080b2006-03-31 18:32:53 +020033DECLARE_GLOBAL_DATA_PTR;
34
wdenk4e5ca3e2003-12-08 01:34:36 +000035#define PHYSADDR(x) x
36
wdenkbf9e3b32004-02-12 00:47:09 +000037#define LINUX_MAX_ENVS 256
38#define LINUX_MAX_ARGS 256
wdenk4e5ca3e2003-12-08 01:34:36 +000039
TsiChungLiew688e8eb2007-10-25 17:14:00 -050040#define CHUNKSZ (64 * 1024)
41
TsiChungLiew8ae158c2007-08-16 15:05:11 -050042#ifdef CONFIG_SHOW_BOOT_PROGRESS
43# include <status_led.h>
44# define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
45#else
46# define SHOW_BOOT_PROGRESS(arg)
47#endif
wdenk4e5ca3e2003-12-08 01:34:36 +000048
TsiChungLiew8ae158c2007-08-16 15:05:11 -050049extern image_header_t header;
wdenkbf9e3b32004-02-12 00:47:09 +000050
TsiChungLiew8ae158c2007-08-16 15:05:11 -050051void do_bootm_linux(cmd_tbl_t * cmdtp, int flag,
52 int argc, char *argv[],
53 ulong addr, ulong * len_ptr, int verify)
wdenk4e5ca3e2003-12-08 01:34:36 +000054{
TsiChungLiew8ae158c2007-08-16 15:05:11 -050055 ulong sp;
56 ulong len, checksum;
wdenk4e5ca3e2003-12-08 01:34:36 +000057 ulong initrd_start, initrd_end;
TsiChungLiew8ae158c2007-08-16 15:05:11 -050058 ulong cmd_start, cmd_end;
59 ulong initrd_high;
wdenk4e5ca3e2003-12-08 01:34:36 +000060 ulong data;
TsiChungLiew8ae158c2007-08-16 15:05:11 -050061 int initrd_copy_to_ram = 1;
62 char *cmdline;
63 char *s;
64 bd_t *kbd;
65 void (*kernel) (bd_t *, ulong, ulong, ulong, ulong);
wdenk4e5ca3e2003-12-08 01:34:36 +000066 image_header_t *hdr = &header;
wdenk4e5ca3e2003-12-08 01:34:36 +000067
TsiChungLiew8ae158c2007-08-16 15:05:11 -050068 if ((s = getenv("initrd_high")) != NULL) {
69 /* a value of "no" or a similar string will act like 0,
70 * turning the "load high" feature off. This is intentional.
71 */
72 initrd_high = simple_strtoul(s, NULL, 16);
73 if (initrd_high == ~0)
74 initrd_copy_to_ram = 0;
75 } else { /* not set, no restrictions to load high */
76 initrd_high = ~0;
77 }
78
79#ifdef CONFIG_LOGBUFFER
80 kbd = gd->bd;
81 /* Prevent initrd from overwriting logbuffer */
82 if (initrd_high < (kbd->bi_memsize - LOGBUFF_LEN - LOGBUFF_OVERHEAD))
83 initrd_high = kbd->bi_memsize - LOGBUFF_LEN - LOGBUFF_OVERHEAD;
84 debug("## Logbuffer at 0x%08lX ", kbd->bi_memsize - LOGBUFF_LEN);
85#endif
86
87 /*
88 * Booting a (Linux) kernel image
89 *
90 * Allocate space for command line and board info - the
91 * address should be as high as possible within the reach of
92 * the kernel (see CFG_BOOTMAPSZ settings), but in unused
93 * memory, which means far enough below the current stack
94 * pointer.
95 */
96 asm("movel %%a7, %%d0\n"
97 "movel %%d0, %0\n": "=d"(sp): :"%d0");
Stefan Roese8280f6a2007-08-18 14:33:02 +020098
99 debug("## Current stack ends at 0x%08lX ", sp);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500100
101 sp -= 2048; /* just to be sure */
102 if (sp > CFG_BOOTMAPSZ)
103 sp = CFG_BOOTMAPSZ;
104 sp &= ~0xF;
105
106 debug("=> set upper limit to 0x%08lX\n", sp);
107
108 cmdline = (char *)((sp - CFG_BARGSIZE) & ~0xF);
109 kbd = (bd_t *) (((ulong) cmdline - sizeof(bd_t)) & ~0xF);
110
111 if ((s = getenv("bootargs")) == NULL)
112 s = "";
113
114 strcpy(cmdline, s);
115
116 cmd_start = (ulong) & cmdline[0];
117 cmd_end = cmd_start + strlen(cmdline);
118
119 *kbd = *(gd->bd);
120
121#ifdef DEBUG
122 printf("## cmdline at 0x%08lX ... 0x%08lX\n", cmd_start, cmd_end);
123
124 do_bdinfo(NULL, 0, 0, NULL);
125#endif
126
127 if ((s = getenv("clocks_in_mhz")) != NULL) {
128 /* convert all clock information to MHz */
129 kbd->bi_intfreq /= 1000000L;
130 kbd->bi_busfreq /= 1000000L;
131 }
132
133 kernel =
134 (void (*)(bd_t *, ulong, ulong, ulong, ulong))ntohl(hdr->ih_ep);
wdenk4e5ca3e2003-12-08 01:34:36 +0000135
136 /*
137 * Check if there is an initrd image
138 */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500139
wdenk4e5ca3e2003-12-08 01:34:36 +0000140 if (argc >= 3) {
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500141 debug("Not skipping initrd\n");
142 SHOW_BOOT_PROGRESS(9);
wdenk4e5ca3e2003-12-08 01:34:36 +0000143
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500144 addr = simple_strtoul(argv[2], NULL, 16);
wdenk4e5ca3e2003-12-08 01:34:36 +0000145
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500146 printf("## Loading RAMDisk Image at %08lx ...\n", addr);
wdenk4e5ca3e2003-12-08 01:34:36 +0000147
148 /* Copy header so we can blank CRC field for re-calculation */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500149 memmove(&header, (char *)addr, sizeof(image_header_t));
wdenk4e5ca3e2003-12-08 01:34:36 +0000150
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500151 if (ntohl(hdr->ih_magic) != IH_MAGIC) {
152 puts("Bad Magic Number\n");
153 SHOW_BOOT_PROGRESS(-10);
154 do_reset(cmdtp, flag, argc, argv);
wdenk4e5ca3e2003-12-08 01:34:36 +0000155 }
156
157 data = (ulong) & header;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500158 len = sizeof(image_header_t);
wdenk4e5ca3e2003-12-08 01:34:36 +0000159
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500160 checksum = ntohl(hdr->ih_hcrc);
wdenk4e5ca3e2003-12-08 01:34:36 +0000161 hdr->ih_hcrc = 0;
162
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500163 if (crc32(0, (uchar *) data, len) != checksum) {
164 puts("Bad Header Checksum\n");
165 SHOW_BOOT_PROGRESS(-11);
166 do_reset(cmdtp, flag, argc, argv);
wdenk4e5ca3e2003-12-08 01:34:36 +0000167 }
168
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500169 SHOW_BOOT_PROGRESS(10);
wdenk4e5ca3e2003-12-08 01:34:36 +0000170
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500171 print_image_hdr(hdr);
wdenk4e5ca3e2003-12-08 01:34:36 +0000172
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500173 data = addr + sizeof(image_header_t);
174 len = ntohl(hdr->ih_size);
wdenk4e5ca3e2003-12-08 01:34:36 +0000175
176 if (verify) {
177 ulong csum = 0;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500178#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
179 ulong cdata = data, edata = cdata + len;
180#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
wdenk4e5ca3e2003-12-08 01:34:36 +0000181
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500182 puts(" Verifying Checksum ... ");
183
184#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
185
186 while (cdata < edata) {
187 ulong chunk = edata - cdata;
188
189 if (chunk > CHUNKSZ)
190 chunk = CHUNKSZ;
191 csum = crc32(csum, (uchar *) cdata, chunk);
192 cdata += chunk;
193
194 WATCHDOG_RESET();
wdenk4e5ca3e2003-12-08 01:34:36 +0000195 }
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500196#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
197 csum = crc32(0, (uchar *) data, len);
198#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
199
200 if (csum != ntohl(hdr->ih_dcrc)) {
201 puts("Bad Data CRC\n");
202 SHOW_BOOT_PROGRESS(-12);
203 do_reset(cmdtp, flag, argc, argv);
204 }
205 puts("OK\n");
wdenk4e5ca3e2003-12-08 01:34:36 +0000206 }
207
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500208 SHOW_BOOT_PROGRESS(11);
wdenk4e5ca3e2003-12-08 01:34:36 +0000209
210 if ((hdr->ih_os != IH_OS_LINUX) ||
wdenkbf9e3b32004-02-12 00:47:09 +0000211 (hdr->ih_arch != IH_CPU_M68K) ||
wdenk4e5ca3e2003-12-08 01:34:36 +0000212 (hdr->ih_type != IH_TYPE_RAMDISK)) {
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500213 puts("No Linux ColdFire Ramdisk Image\n");
214 SHOW_BOOT_PROGRESS(-13);
215 do_reset(cmdtp, flag, argc, argv);
wdenk4e5ca3e2003-12-08 01:34:36 +0000216 }
217
218 /*
219 * Now check if we have a multifile image
220 */
221 } else if ((hdr->ih_type == IH_TYPE_MULTI) && (len_ptr[1])) {
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500222 u_long tail = ntohl(len_ptr[0]) % 4;
wdenk4e5ca3e2003-12-08 01:34:36 +0000223 int i;
224
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500225 SHOW_BOOT_PROGRESS(13);
wdenk4e5ca3e2003-12-08 01:34:36 +0000226
227 /* skip kernel length and terminator */
228 data = (ulong) (&len_ptr[2]);
229 /* skip any additional image length fields */
230 for (i = 1; len_ptr[i]; ++i)
231 data += 4;
232 /* add kernel length, and align */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500233 data += ntohl(len_ptr[0]);
wdenk4e5ca3e2003-12-08 01:34:36 +0000234 if (tail) {
235 data += 4 - tail;
236 }
237
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500238 len = ntohl(len_ptr[1]);
wdenk4e5ca3e2003-12-08 01:34:36 +0000239
240 } else {
241 /*
242 * no initrd image
243 */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500244 SHOW_BOOT_PROGRESS(14);
wdenk4e5ca3e2003-12-08 01:34:36 +0000245
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500246 len = data = 0;
wdenk4e5ca3e2003-12-08 01:34:36 +0000247 }
248
wdenk4e5ca3e2003-12-08 01:34:36 +0000249 if (!data) {
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500250 debug("No initrd\n");
wdenk4e5ca3e2003-12-08 01:34:36 +0000251 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000252
253 if (data) {
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500254 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
255 initrd_start = data;
256 initrd_end = initrd_start + len;
257 } else {
258 initrd_start = (ulong) kbd - len;
259 initrd_start &= ~(4096 - 1); /* align on page */
260
261 if (initrd_high) {
262 ulong nsp;
263
264 /*
265 * the inital ramdisk does not need to be within
266 * CFG_BOOTMAPSZ as it is not accessed until after
267 * the mm system is initialised.
268 *
269 * do the stack bottom calculation again and see if
270 * the initrd will fit just below the monitor stack
271 * bottom without overwriting the area allocated
272 * above for command line args and board info.
273 */
274 asm("movel %%a7, %%d0\n"
275 "movel %%d0, %0\n": "=d"(nsp): :"%d0");
Stefan Roese8280f6a2007-08-18 14:33:02 +0200276
277 nsp -= 2048; /* just to be sure */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500278 nsp &= ~0xF;
279
280 if (nsp > initrd_high) /* limit as specified */
281 nsp = initrd_high;
282
283 nsp -= len;
284 nsp &= ~(4096 - 1); /* align on page */
285
286 if (nsp >= sp)
287 initrd_start = nsp;
288 }
289
290 SHOW_BOOT_PROGRESS(12);
291
292 debug
293 ("## initrd at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
294 data, data + len - 1, len, len);
295
296 initrd_end = initrd_start + len;
297 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
298 initrd_start, initrd_end);
299#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
300 {
301 size_t l = len;
302 void *to = (void *)initrd_start;
303 void *from = (void *)data;
304
305 while (l > 0) {
306 size_t tail =
307 (l > CHUNKSZ) ? CHUNKSZ : l;
308 WATCHDOG_RESET();
309 memmove(to, from, tail);
310 to += tail;
311 from += tail;
312 l -= tail;
313 }
314 }
315#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
316 memmove((void *)initrd_start, (void *)data, len);
317#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
318 puts("OK\n");
319 }
wdenk4e5ca3e2003-12-08 01:34:36 +0000320 } else {
321 initrd_start = 0;
322 initrd_end = 0;
323 }
324
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500325 debug("## Transferring control to Linux (at address %08lx) ...\n",
326 (ulong) kernel);
wdenk4e5ca3e2003-12-08 01:34:36 +0000327
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500328 SHOW_BOOT_PROGRESS(15);
wdenk4e5ca3e2003-12-08 01:34:36 +0000329
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500330 /*
331 * Linux Kernel Parameters (passing board info data):
332 * r3: ptr to board info data
333 * r4: initrd_start or 0 if no initrd
334 * r5: initrd_end - unused if r4 is 0
335 * r6: Start of command line string
336 * r7: End of command line string
337 */
338 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
339 /* does not return */
wdenk4e5ca3e2003-12-08 01:34:36 +0000340}