blob: b135556a99d8eae5a7cf26b092a3b366ad177d66 [file] [log] [blame]
wdenkabf7a7c2003-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
wdenke65527f2004-02-12 00:47:09 +000015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenkabf7a7c2003-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
wdenke65527f2004-02-12 00:47:09 +000020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
wdenkabf7a7c2003-12-08 01:34:36 +000021 *
22 */
23
24#include <common.h>
25#include <command.h>
wdenkabf7a7c2003-12-08 01:34:36 +000026#include <image.h>
27#include <zlib.h>
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050028#include <bzlib.h>
TsiChungLiew890adcb2007-10-25 17:14:00 -050029#include <watchdog.h>
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050030#include <environment.h>
wdenkabf7a7c2003-12-08 01:34:36 +000031#include <asm/byteorder.h>
32
Wolfgang Denk6405a152006-03-31 18:32:53 +020033DECLARE_GLOBAL_DATA_PTR;
34
wdenkabf7a7c2003-12-08 01:34:36 +000035#define PHYSADDR(x) x
36
wdenke65527f2004-02-12 00:47:09 +000037#define LINUX_MAX_ENVS 256
38#define LINUX_MAX_ARGS 256
wdenkabf7a7c2003-12-08 01:34:36 +000039
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050040#ifdef CONFIG_SHOW_BOOT_PROGRESS
41# include <status_led.h>
42# define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
43#else
44# define SHOW_BOOT_PROGRESS(arg)
45#endif
wdenkabf7a7c2003-12-08 01:34:36 +000046
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010047int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
48
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050049void do_bootm_linux(cmd_tbl_t * cmdtp, int flag,
50 int argc, char *argv[],
Marian Balakowiczb4a12a92008-01-08 18:12:17 +010051 image_header_t *hdr, int verify)
wdenkabf7a7c2003-12-08 01:34:36 +000052{
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050053 ulong sp;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +010054
55 ulong rd_data, rd_len;
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050056 ulong initrd_high;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +010057 ulong initrd_start, initrd_end;
58 image_header_t *rd_hdr;
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050059 int initrd_copy_to_ram = 1;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +010060
61 ulong cmd_start, cmd_end;
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050062 char *cmdline;
63 char *s;
64 bd_t *kbd;
65 void (*kernel) (bd_t *, ulong, ulong, ulong, ulong);
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050066
67 if ((s = getenv("initrd_high")) != NULL) {
68 /* a value of "no" or a similar string will act like 0,
69 * turning the "load high" feature off. This is intentional.
70 */
71 initrd_high = simple_strtoul(s, NULL, 16);
72 if (initrd_high == ~0)
73 initrd_copy_to_ram = 0;
74 } else { /* not set, no restrictions to load high */
75 initrd_high = ~0;
76 }
77
78#ifdef CONFIG_LOGBUFFER
79 kbd = gd->bd;
80 /* Prevent initrd from overwriting logbuffer */
81 if (initrd_high < (kbd->bi_memsize - LOGBUFF_LEN - LOGBUFF_OVERHEAD))
82 initrd_high = kbd->bi_memsize - LOGBUFF_LEN - LOGBUFF_OVERHEAD;
83 debug("## Logbuffer at 0x%08lX ", kbd->bi_memsize - LOGBUFF_LEN);
84#endif
85
86 /*
87 * Booting a (Linux) kernel image
88 *
89 * Allocate space for command line and board info - the
90 * address should be as high as possible within the reach of
91 * the kernel (see CFG_BOOTMAPSZ settings), but in unused
92 * memory, which means far enough below the current stack
93 * pointer.
94 */
95 asm("movel %%a7, %%d0\n"
96 "movel %%d0, %0\n": "=d"(sp): :"%d0");
Stefan Roesefe9dae62007-08-18 14:33:02 +020097
98 debug("## Current stack ends at 0x%08lX ", sp);
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050099
100 sp -= 2048; /* just to be sure */
101 if (sp > CFG_BOOTMAPSZ)
102 sp = CFG_BOOTMAPSZ;
103 sp &= ~0xF;
104
105 debug("=> set upper limit to 0x%08lX\n", sp);
106
107 cmdline = (char *)((sp - CFG_BARGSIZE) & ~0xF);
108 kbd = (bd_t *) (((ulong) cmdline - sizeof(bd_t)) & ~0xF);
109
110 if ((s = getenv("bootargs")) == NULL)
111 s = "";
wdenkabf7a7c2003-12-08 01:34:36 +0000112
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500113 strcpy(cmdline, s);
114
115 cmd_start = (ulong) & cmdline[0];
116 cmd_end = cmd_start + strlen(cmdline);
117
118 *kbd = *(gd->bd);
119
120#ifdef DEBUG
121 printf("## cmdline at 0x%08lX ... 0x%08lX\n", cmd_start, cmd_end);
122
123 do_bdinfo(NULL, 0, 0, NULL);
124#endif
125
126 if ((s = getenv("clocks_in_mhz")) != NULL) {
127 /* convert all clock information to MHz */
128 kbd->bi_intfreq /= 1000000L;
129 kbd->bi_busfreq /= 1000000L;
130 }
131
132 kernel =
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100133 (void (*)(bd_t *, ulong, ulong, ulong, ulong))image_get_ep (hdr);
wdenkabf7a7c2003-12-08 01:34:36 +0000134
135 /*
136 * Check if there is an initrd image
137 */
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500138
wdenkabf7a7c2003-12-08 01:34:36 +0000139 if (argc >= 3) {
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500140 debug("Not skipping initrd\n");
141 SHOW_BOOT_PROGRESS(9);
wdenkabf7a7c2003-12-08 01:34:36 +0000142
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100143 rd_hdr = (image_header_t *)simple_strtoul (argv[2], NULL, 16);
144 printf ("## Loading RAMDisk Image at %08lx ...\n", rd_hdr);
wdenkabf7a7c2003-12-08 01:34:36 +0000145
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100146 if (!image_check_magic (rd_hdr)) {
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500147 puts("Bad Magic Number\n");
148 SHOW_BOOT_PROGRESS(-10);
149 do_reset(cmdtp, flag, argc, argv);
wdenkabf7a7c2003-12-08 01:34:36 +0000150 }
151
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100152 if (!image_check_hcrc (rd_hdr)) {
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500153 puts("Bad Header Checksum\n");
154 SHOW_BOOT_PROGRESS(-11);
155 do_reset(cmdtp, flag, argc, argv);
wdenkabf7a7c2003-12-08 01:34:36 +0000156 }
157
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500158 SHOW_BOOT_PROGRESS(10);
wdenkabf7a7c2003-12-08 01:34:36 +0000159
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100160 print_image_hdr (rd_hdr);
wdenkabf7a7c2003-12-08 01:34:36 +0000161
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100162 rd_data = image_get_data (rd_hdr);
163 rd_len = image_get_data_size (rd_hdr);
wdenkabf7a7c2003-12-08 01:34:36 +0000164
165 if (verify) {
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500166 puts(" Verifying Checksum ... ");
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100167 if (!image_check_dcrc_wd (rd_hdr, CHUNKSZ)) {
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500168 puts("Bad Data CRC\n");
169 SHOW_BOOT_PROGRESS(-12);
170 do_reset(cmdtp, flag, argc, argv);
wdenkabf7a7c2003-12-08 01:34:36 +0000171 }
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500172 puts("OK\n");
wdenkabf7a7c2003-12-08 01:34:36 +0000173 }
174
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500175 SHOW_BOOT_PROGRESS(11);
wdenkabf7a7c2003-12-08 01:34:36 +0000176
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100177 if (!image_check_os (rd_hdr, IH_OS_LINUX) ||
178 !image_check_arch (rd_hdr, IH_ARCH_M68K) ||
179 !image_check_type (rd_hdr, IH_TYPE_RAMDISK)) {
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500180 puts("No Linux ColdFire Ramdisk Image\n");
181 SHOW_BOOT_PROGRESS(-13);
182 do_reset(cmdtp, flag, argc, argv);
wdenkabf7a7c2003-12-08 01:34:36 +0000183 }
184
185 /*
186 * Now check if we have a multifile image
187 */
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100188 } else if (image_check_type (hdr, IH_TYPE_MULTI)) {
189 /*
190 * Get second entry data start address and len
191 */
192 SHOW_BOOT_PROGRESS (13);
193 image_multi_getimg (hdr, 1, &rd_data, &rd_len);
wdenkabf7a7c2003-12-08 01:34:36 +0000194 } else {
195 /*
196 * no initrd image
197 */
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500198 SHOW_BOOT_PROGRESS(14);
wdenkabf7a7c2003-12-08 01:34:36 +0000199
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100200 rd_len = rd_data = 0;
wdenkabf7a7c2003-12-08 01:34:36 +0000201 }
202
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100203 if (!rd_data) {
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500204 debug("No initrd\n");
wdenkabf7a7c2003-12-08 01:34:36 +0000205 }
wdenkabf7a7c2003-12-08 01:34:36 +0000206
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100207 if (rd_data) {
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500208 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100209 initrd_start = rd_data;
210 initrd_end = initrd_start + rd_len;
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500211 } else {
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100212 initrd_start = (ulong) kbd - rd_len;
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500213 initrd_start &= ~(4096 - 1); /* align on page */
wdenkabf7a7c2003-12-08 01:34:36 +0000214
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500215 if (initrd_high) {
216 ulong nsp;
wdenkabf7a7c2003-12-08 01:34:36 +0000217
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500218 /*
219 * the inital ramdisk does not need to be within
220 * CFG_BOOTMAPSZ as it is not accessed until after
221 * the mm system is initialised.
222 *
223 * do the stack bottom calculation again and see if
224 * the initrd will fit just below the monitor stack
225 * bottom without overwriting the area allocated
226 * above for command line args and board info.
227 */
228 asm("movel %%a7, %%d0\n"
229 "movel %%d0, %0\n": "=d"(nsp): :"%d0");
Stefan Roesefe9dae62007-08-18 14:33:02 +0200230
231 nsp -= 2048; /* just to be sure */
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500232 nsp &= ~0xF;
wdenkabf7a7c2003-12-08 01:34:36 +0000233
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500234 if (nsp > initrd_high) /* limit as specified */
235 nsp = initrd_high;
wdenkabf7a7c2003-12-08 01:34:36 +0000236
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100237 nsp -= rd_len;
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500238 nsp &= ~(4096 - 1); /* align on page */
wdenkabf7a7c2003-12-08 01:34:36 +0000239
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500240 if (nsp >= sp)
241 initrd_start = nsp;
242 }
wdenkabf7a7c2003-12-08 01:34:36 +0000243
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500244 SHOW_BOOT_PROGRESS(12);
wdenkabf7a7c2003-12-08 01:34:36 +0000245
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500246 debug
247 ("## initrd at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100248 rd_data, rd_data + rd_len - 1, rd_len, rd_len);
wdenkabf7a7c2003-12-08 01:34:36 +0000249
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100250 initrd_end = initrd_start + rd_len;
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500251 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
252 initrd_start, initrd_end);
Marian Balakowiczf9a67bd2008-01-08 18:11:45 +0100253
254 memmove_wd((void *)initrd_start,
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100255 (void *)rd_data, rd_len, CHUNKSZ);
wdenkabf7a7c2003-12-08 01:34:36 +0000256
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500257 puts("OK\n");
wdenkabf7a7c2003-12-08 01:34:36 +0000258 }
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500259 } else {
260 initrd_start = 0;
261 initrd_end = 0;
wdenkabf7a7c2003-12-08 01:34:36 +0000262 }
263
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500264 debug("## Transferring control to Linux (at address %08lx) ...\n",
265 (ulong) kernel);
wdenkabf7a7c2003-12-08 01:34:36 +0000266
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500267 SHOW_BOOT_PROGRESS(15);
wdenkabf7a7c2003-12-08 01:34:36 +0000268
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500269 /*
270 * Linux Kernel Parameters (passing board info data):
271 * r3: ptr to board info data
272 * r4: initrd_start or 0 if no initrd
273 * r5: initrd_end - unused if r4 is 0
274 * r6: Start of command line string
275 * r7: End of command line string
276 */
277 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
278 /* does not return */
wdenkabf7a7c2003-12-08 01:34:36 +0000279}