blob: b22fbc998248ba95ba68883dbaee9adfa0c3f687 [file] [log] [blame]
Simon Schwarz0a672d42012-03-15 04:01:45 +00001/* Copyright (C) 2011
2 * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
3 * - Added prep subcommand support
4 * - Reorganized source - modeled after powerpc version
5 *
wdenkc6097192002-11-03 00:24:07 +00006 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
9 *
10 * Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenk232c1502004-03-12 00:14:09 +000019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenkc6097192002-11-03 00:24:07 +000020 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
wdenk232c1502004-03-12 00:14:09 +000024 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
wdenkc6097192002-11-03 00:24:07 +000025 */
26
27#include <common.h>
28#include <command.h>
wdenkc6097192002-11-03 00:24:07 +000029#include <image.h>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020030#include <u-boot/zlib.h>
wdenkc6097192002-11-03 00:24:07 +000031#include <asm/byteorder.h>
John Rigby2d1916e2010-10-13 13:57:36 -060032#include <libfdt.h>
33#include <fdt_support.h>
Simon Schwarz0a672d42012-03-15 04:01:45 +000034#include <asm/bootm.h>
Pali Rohár89e6f132012-10-19 02:00:04 +000035#include <linux/compiler.h>
wdenkc6097192002-11-03 00:24:07 +000036
Wolfgang Denkd87080b2006-03-31 18:32:53 +020037DECLARE_GLOBAL_DATA_PTR;
38
wdenkc6097192002-11-03 00:24:07 +000039static struct tag *params;
John Rigby2d1916e2010-10-13 13:57:36 -060040
Simon Schwarz0a672d42012-03-15 04:01:45 +000041static ulong get_sp(void)
42{
43 ulong ret;
44
45 asm("mov %0, sp" : "=r"(ret) : );
46 return ret;
47}
48
John Rigby2d1916e2010-10-13 13:57:36 -060049void arch_lmb_reserve(struct lmb *lmb)
50{
51 ulong sp;
52
53 /*
54 * Booting a (Linux) kernel image
55 *
56 * Allocate space for command line and board info - the
57 * address should be as high as possible within the reach of
58 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
59 * memory, which means far enough below the current stack
60 * pointer.
61 */
62 sp = get_sp();
63 debug("## Current stack ends at 0x%08lx ", sp);
64
Rob Herringfcfa6962012-06-28 03:54:11 +000065 /* adjust sp by 4K to be safe */
66 sp -= 4096;
John Rigby2d1916e2010-10-13 13:57:36 -060067 lmb_reserve(lmb, sp,
68 gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size - sp);
69}
70
Simon Glassbce1b922013-06-19 21:15:10 -070071/**
72 * announce_and_cleanup() - Print message and prepare for kernel boot
73 *
74 * @fake: non-zero to do everything except actually boot
75 */
76static void announce_and_cleanup(int fake)
Simon Schwarz0a672d42012-03-15 04:01:45 +000077{
Simon Glassbce1b922013-06-19 21:15:10 -070078 printf("\nStarting kernel ...%s\n\n", fake ?
79 "(fake run for tracing)" : "");
Simon Schwarz0a672d42012-03-15 04:01:45 +000080 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glass94fd1312012-09-28 08:56:37 +000081#ifdef CONFIG_BOOTSTAGE_FDT
Simon Glassbce1b922013-06-19 21:15:10 -070082 if (flag == BOOTM_STATE_OS_FAKE_GO)
83 bootstage_fdt_add_report();
Simon Glass94fd1312012-09-28 08:56:37 +000084#endif
Simon Schwarz0a672d42012-03-15 04:01:45 +000085#ifdef CONFIG_BOOTSTAGE_REPORT
86 bootstage_report();
87#endif
88
89#ifdef CONFIG_USB_DEVICE
90 udc_disconnect();
91#endif
92 cleanup_before_linux();
93}
94
wdenk5779d8d2003-12-06 23:55:10 +000095static void setup_start_tag (bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +000096{
Simon Schwarz0a672d42012-03-15 04:01:45 +000097 params = (struct tag *)bd->bi_boot_params;
wdenkc6097192002-11-03 00:24:07 +000098
wdenk5779d8d2003-12-06 23:55:10 +000099 params->hdr.tag = ATAG_CORE;
100 params->hdr.size = tag_size (tag_core);
wdenkc6097192002-11-03 00:24:07 +0000101
wdenk5779d8d2003-12-06 23:55:10 +0000102 params->u.core.flags = 0;
103 params->u.core.pagesize = 0;
104 params->u.core.rootdev = 0;
wdenkc6097192002-11-03 00:24:07 +0000105
wdenk5779d8d2003-12-06 23:55:10 +0000106 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000107}
wdenkc6097192002-11-03 00:24:07 +0000108
Simon Schwarz0a672d42012-03-15 04:01:45 +0000109static void setup_memory_tags(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000110{
wdenk5779d8d2003-12-06 23:55:10 +0000111 int i;
wdenkc6097192002-11-03 00:24:07 +0000112
wdenk5779d8d2003-12-06 23:55:10 +0000113 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
114 params->hdr.tag = ATAG_MEM;
115 params->hdr.size = tag_size (tag_mem32);
wdenkc6097192002-11-03 00:24:07 +0000116
wdenk5779d8d2003-12-06 23:55:10 +0000117 params->u.mem.start = bd->bi_dram[i].start;
118 params->u.mem.size = bd->bi_dram[i].size;
wdenkc6097192002-11-03 00:24:07 +0000119
wdenk5779d8d2003-12-06 23:55:10 +0000120 params = tag_next (params);
121 }
wdenkc6097192002-11-03 00:24:07 +0000122}
123
Simon Schwarz0a672d42012-03-15 04:01:45 +0000124static void setup_commandline_tag(bd_t *bd, char *commandline)
wdenkc6097192002-11-03 00:24:07 +0000125{
wdenk5779d8d2003-12-06 23:55:10 +0000126 char *p;
wdenkc6097192002-11-03 00:24:07 +0000127
wdenk109c0e32004-03-23 21:43:07 +0000128 if (!commandline)
129 return;
130
wdenk5779d8d2003-12-06 23:55:10 +0000131 /* eat leading white space */
132 for (p = commandline; *p == ' '; p++);
wdenkc6097192002-11-03 00:24:07 +0000133
wdenk5779d8d2003-12-06 23:55:10 +0000134 /* skip non-existent command lines so the kernel will still
135 * use its default command line.
136 */
137 if (*p == '\0')
138 return;
wdenkc6097192002-11-03 00:24:07 +0000139
wdenk5779d8d2003-12-06 23:55:10 +0000140 params->hdr.tag = ATAG_CMDLINE;
141 params->hdr.size =
142 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
wdenkc6097192002-11-03 00:24:07 +0000143
wdenk5779d8d2003-12-06 23:55:10 +0000144 strcpy (params->u.cmdline.cmdline, p);
wdenkc6097192002-11-03 00:24:07 +0000145
wdenk5779d8d2003-12-06 23:55:10 +0000146 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000147}
wdenkc6097192002-11-03 00:24:07 +0000148
Simon Schwarz0a672d42012-03-15 04:01:45 +0000149static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
wdenkc6097192002-11-03 00:24:07 +0000150{
wdenk5779d8d2003-12-06 23:55:10 +0000151 /* an ATAG_INITRD node tells the kernel where the compressed
152 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
153 */
wdenk498b8db2004-04-18 22:26:17 +0000154 params->hdr.tag = ATAG_INITRD2;
wdenk5779d8d2003-12-06 23:55:10 +0000155 params->hdr.size = tag_size (tag_initrd);
wdenkc6097192002-11-03 00:24:07 +0000156
wdenk5779d8d2003-12-06 23:55:10 +0000157 params->u.initrd.start = initrd_start;
158 params->u.initrd.size = initrd_end - initrd_start;
wdenkc6097192002-11-03 00:24:07 +0000159
wdenk5779d8d2003-12-06 23:55:10 +0000160 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000161}
wdenkc6097192002-11-03 00:24:07 +0000162
Simon Glassc19d13b2013-05-08 08:06:02 +0000163static void setup_serial_tag(struct tag **tmp)
wdenk3a574cb2005-05-19 22:39:42 +0000164{
165 struct tag *params = *tmp;
166 struct tag_serialnr serialnr;
wdenk3a574cb2005-05-19 22:39:42 +0000167
168 get_board_serial(&serialnr);
169 params->hdr.tag = ATAG_SERIAL;
170 params->hdr.size = tag_size (tag_serialnr);
171 params->u.serialnr.low = serialnr.low;
172 params->u.serialnr.high= serialnr.high;
173 params = tag_next (params);
174 *tmp = params;
175}
wdenk3a574cb2005-05-19 22:39:42 +0000176
Simon Glassc19d13b2013-05-08 08:06:02 +0000177static void setup_revision_tag(struct tag **in_params)
wdenk289f9322005-01-12 00:15:14 +0000178{
179 u32 rev = 0;
wdenk289f9322005-01-12 00:15:14 +0000180
181 rev = get_board_rev();
wdenk289f9322005-01-12 00:15:14 +0000182 params->hdr.tag = ATAG_REVISION;
183 params->hdr.size = tag_size (tag_revision);
184 params->u.revision.rev = rev;
185 params = tag_next (params);
186}
wdenk289f9322005-01-12 00:15:14 +0000187
Simon Schwarz0a672d42012-03-15 04:01:45 +0000188static void setup_end_tag(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000189{
wdenk5779d8d2003-12-06 23:55:10 +0000190 params->hdr.tag = ATAG_NONE;
191 params->hdr.size = 0;
wdenkc6097192002-11-03 00:24:07 +0000192}
193
Pali Rohár89e6f132012-10-19 02:00:04 +0000194__weak void setup_board_tags(struct tag **in_params) {}
195
Simon Schwarz0a672d42012-03-15 04:01:45 +0000196/* Subcommand: PREP */
197static void boot_prep_linux(bootm_headers_t *images)
198{
Simon Schwarz0a672d42012-03-15 04:01:45 +0000199 char *commandline = getenv("bootargs");
Simon Schwarz0a672d42012-03-15 04:01:45 +0000200
Simon Glassc19d13b2013-05-08 08:06:02 +0000201 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
Simon Schwarz0a672d42012-03-15 04:01:45 +0000202#ifdef CONFIG_OF_LIBFDT
Simon Schwarz0a672d42012-03-15 04:01:45 +0000203 debug("using: FDT\n");
Simon Glass6caa1952013-05-08 08:06:03 +0000204 if (image_setup_linux(images)) {
Simon Schwarz0a672d42012-03-15 04:01:45 +0000205 printf("FDT creation failed! hanging...");
206 hang();
207 }
Simon Schwarz0a672d42012-03-15 04:01:45 +0000208#endif
Simon Glassc19d13b2013-05-08 08:06:02 +0000209 } else if (BOOTM_ENABLE_TAGS) {
Simon Schwarz0a672d42012-03-15 04:01:45 +0000210 debug("using: ATAGS\n");
211 setup_start_tag(gd->bd);
Simon Glassc19d13b2013-05-08 08:06:02 +0000212 if (BOOTM_ENABLE_SERIAL_TAG)
213 setup_serial_tag(&params);
214 if (BOOTM_ENABLE_CMDLINE_TAG)
215 setup_commandline_tag(gd->bd, commandline);
216 if (BOOTM_ENABLE_REVISION_TAG)
217 setup_revision_tag(&params);
218 if (BOOTM_ENABLE_MEMORY_TAGS)
219 setup_memory_tags(gd->bd);
220 if (BOOTM_ENABLE_INITRD_TAG) {
221 if (images->rd_start && images->rd_end) {
222 setup_initrd_tag(gd->bd, images->rd_start,
223 images->rd_end);
224 }
225 }
Pali Rohár89e6f132012-10-19 02:00:04 +0000226 setup_board_tags(&params);
Simon Schwarz0a672d42012-03-15 04:01:45 +0000227 setup_end_tag(gd->bd);
Simon Glassc19d13b2013-05-08 08:06:02 +0000228 } else {
Simon Schwarz0a672d42012-03-15 04:01:45 +0000229 printf("FDT and ATAGS support not compiled in - hanging\n");
230 hang();
Simon Schwarz0a672d42012-03-15 04:01:45 +0000231 }
232}
233
234/* Subcommand: GO */
Simon Glassbce1b922013-06-19 21:15:10 -0700235static void boot_jump_linux(bootm_headers_t *images, int flag)
Simon Schwarz0a672d42012-03-15 04:01:45 +0000236{
237 unsigned long machid = gd->bd->bi_arch_number;
238 char *s;
239 void (*kernel_entry)(int zero, int arch, uint params);
Stephen Warren17239972012-04-19 11:34:00 +0000240 unsigned long r2;
Simon Glassbce1b922013-06-19 21:15:10 -0700241 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
Simon Schwarz0a672d42012-03-15 04:01:45 +0000242
243 kernel_entry = (void (*)(int, int, uint))images->ep;
244
245 s = getenv("machid");
246 if (s) {
247 strict_strtoul(s, 16, &machid);
248 printf("Using machid 0x%lx from environment\n", machid);
249 }
250
251 debug("## Transferring control to Linux (at address %08lx)" \
252 "...\n", (ulong) kernel_entry);
253 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Simon Glassbce1b922013-06-19 21:15:10 -0700254 announce_and_cleanup(fake);
Stephen Warren17239972012-04-19 11:34:00 +0000255
Simon Glassc19d13b2013-05-08 08:06:02 +0000256 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
Stephen Warren17239972012-04-19 11:34:00 +0000257 r2 = (unsigned long)images->ft_addr;
258 else
Stephen Warren17239972012-04-19 11:34:00 +0000259 r2 = gd->bd->bi_boot_params;
260
Simon Glassbce1b922013-06-19 21:15:10 -0700261 if (!fake)
262 kernel_entry(0, machid, r2);
Simon Schwarz0a672d42012-03-15 04:01:45 +0000263}
264
265/* Main Entry point for arm bootm implementation
266 *
267 * Modeled after the powerpc implementation
268 * DIFFERENCE: Instead of calling prep and go at the end
269 * they are called if subcommand is equal 0.
270 */
271int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
272{
273 /* No need for those on ARM */
274 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
275 return -1;
276
277 if (flag & BOOTM_STATE_OS_PREP) {
278 boot_prep_linux(images);
279 return 0;
280 }
281
Simon Glassbce1b922013-06-19 21:15:10 -0700282 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
283 boot_jump_linux(images, flag);
Simon Schwarz0a672d42012-03-15 04:01:45 +0000284 return 0;
285 }
286
287 boot_prep_linux(images);
Simon Glassbce1b922013-06-19 21:15:10 -0700288 boot_jump_linux(images, flag);
Simon Schwarz0a672d42012-03-15 04:01:45 +0000289 return 0;
John Rigby2d1916e2010-10-13 13:57:36 -0600290}
Marek Vasut44f074c2012-03-14 21:52:45 +0000291
292#ifdef CONFIG_CMD_BOOTZ
293
294struct zimage_header {
295 uint32_t code[9];
296 uint32_t zi_magic;
297 uint32_t zi_start;
298 uint32_t zi_end;
299};
300
301#define LINUX_ARM_ZIMAGE_MAGIC 0x016f2818
302
303int bootz_setup(void *image, void **start, void **end)
304{
305 struct zimage_header *zi = (struct zimage_header *)image;
306
307 if (zi->zi_magic != LINUX_ARM_ZIMAGE_MAGIC) {
308 puts("Bad Linux ARM zImage magic!\n");
309 return 1;
310 }
311
312 *start = (void *)zi->zi_start;
313 *end = (void *)zi->zi_end;
314
315 debug("Kernel image @ 0x%08x [ 0x%08x - 0x%08x ]\n",
316 (uint32_t)image, (uint32_t)*start, (uint32_t)*end);
317
318 return 0;
319}
320#endif /* CONFIG_CMD_BOOTZ */