blob: cba457fcc9ee1a8b7edd79cc965de16501c65dd6 [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
28#include <common.h>
29#include <command.h>
wdenkc6097192002-11-03 00:24:07 +000030#include <image.h>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020031#include <u-boot/zlib.h>
wdenkc6097192002-11-03 00:24:07 +000032#include <asm/byteorder.h>
John Rigby2d1916e2010-10-13 13:57:36 -060033#include <fdt.h>
34#include <libfdt.h>
35#include <fdt_support.h>
Simon Schwarz0a672d42012-03-15 04:01:45 +000036#include <asm/bootm.h>
wdenkc6097192002-11-03 00:24:07 +000037
Wolfgang Denkd87080b2006-03-31 18:32:53 +020038DECLARE_GLOBAL_DATA_PTR;
39
Simon Schwarz0a672d42012-03-15 04:01:45 +000040#if defined(CONFIG_SETUP_MEMORY_TAGS) || \
41 defined(CONFIG_CMDLINE_TAG) || \
42 defined(CONFIG_INITRD_TAG) || \
43 defined(CONFIG_SERIAL_TAG) || \
44 defined(CONFIG_REVISION_TAG)
wdenkc6097192002-11-03 00:24:07 +000045static struct tag *params;
John Rigby2d1916e2010-10-13 13:57:36 -060046#endif
47
Simon Schwarz0a672d42012-03-15 04:01:45 +000048static ulong get_sp(void)
49{
50 ulong ret;
51
52 asm("mov %0, sp" : "=r"(ret) : );
53 return ret;
54}
55
John Rigby2d1916e2010-10-13 13:57:36 -060056void arch_lmb_reserve(struct lmb *lmb)
57{
58 ulong sp;
59
60 /*
61 * Booting a (Linux) kernel image
62 *
63 * Allocate space for command line and board info - the
64 * address should be as high as possible within the reach of
65 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
66 * memory, which means far enough below the current stack
67 * pointer.
68 */
69 sp = get_sp();
70 debug("## Current stack ends at 0x%08lx ", sp);
71
72 /* adjust sp by 1K to be safe */
73 sp -= 1024;
74 lmb_reserve(lmb, sp,
75 gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size - sp);
76}
77
John Rigby2d1916e2010-10-13 13:57:36 -060078#ifdef CONFIG_OF_LIBFDT
John Rigby2d1916e2010-10-13 13:57:36 -060079static int fixup_memory_node(void *blob)
80{
81 bd_t *bd = gd->bd;
82 int bank;
83 u64 start[CONFIG_NR_DRAM_BANKS];
84 u64 size[CONFIG_NR_DRAM_BANKS];
85
86 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
87 start[bank] = bd->bi_dram[bank].start;
88 size[bank] = bd->bi_dram[bank].size;
89 }
90
91 return fdt_fixup_memory_banks(blob, start, size, CONFIG_NR_DRAM_BANKS);
92}
John Rigby2d1916e2010-10-13 13:57:36 -060093#endif
wdenkc6097192002-11-03 00:24:07 +000094
Simon Schwarz0a672d42012-03-15 04:01:45 +000095static void announce_and_cleanup(void)
96{
97 printf("\nStarting kernel ...\n\n");
98 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
99#ifdef CONFIG_BOOTSTAGE_REPORT
100 bootstage_report();
101#endif
102
103#ifdef CONFIG_USB_DEVICE
104 udc_disconnect();
105#endif
106 cleanup_before_linux();
107}
108
109#if defined(CONFIG_SETUP_MEMORY_TAGS) || \
110 defined(CONFIG_CMDLINE_TAG) || \
111 defined(CONFIG_INITRD_TAG) || \
112 defined(CONFIG_SERIAL_TAG) || \
113 defined(CONFIG_REVISION_TAG)
wdenk5779d8d2003-12-06 23:55:10 +0000114static void setup_start_tag (bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000115{
Simon Schwarz0a672d42012-03-15 04:01:45 +0000116 params = (struct tag *)bd->bi_boot_params;
wdenkc6097192002-11-03 00:24:07 +0000117
wdenk5779d8d2003-12-06 23:55:10 +0000118 params->hdr.tag = ATAG_CORE;
119 params->hdr.size = tag_size (tag_core);
wdenkc6097192002-11-03 00:24:07 +0000120
wdenk5779d8d2003-12-06 23:55:10 +0000121 params->u.core.flags = 0;
122 params->u.core.pagesize = 0;
123 params->u.core.rootdev = 0;
wdenkc6097192002-11-03 00:24:07 +0000124
wdenk5779d8d2003-12-06 23:55:10 +0000125 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000126}
Simon Schwarz0a672d42012-03-15 04:01:45 +0000127#endif
wdenkc6097192002-11-03 00:24:07 +0000128
wdenk699b13a2002-11-03 18:03:52 +0000129#ifdef CONFIG_SETUP_MEMORY_TAGS
Simon Schwarz0a672d42012-03-15 04:01:45 +0000130static void setup_memory_tags(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000131{
wdenk5779d8d2003-12-06 23:55:10 +0000132 int i;
wdenkc6097192002-11-03 00:24:07 +0000133
wdenk5779d8d2003-12-06 23:55:10 +0000134 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
135 params->hdr.tag = ATAG_MEM;
136 params->hdr.size = tag_size (tag_mem32);
wdenkc6097192002-11-03 00:24:07 +0000137
wdenk5779d8d2003-12-06 23:55:10 +0000138 params->u.mem.start = bd->bi_dram[i].start;
139 params->u.mem.size = bd->bi_dram[i].size;
wdenkc6097192002-11-03 00:24:07 +0000140
wdenk5779d8d2003-12-06 23:55:10 +0000141 params = tag_next (params);
142 }
wdenkc6097192002-11-03 00:24:07 +0000143}
Simon Schwarz0a672d42012-03-15 04:01:45 +0000144#endif
wdenkc6097192002-11-03 00:24:07 +0000145
Simon Schwarz0a672d42012-03-15 04:01:45 +0000146#ifdef CONFIG_CMDLINE_TAG
147static void setup_commandline_tag(bd_t *bd, char *commandline)
wdenkc6097192002-11-03 00:24:07 +0000148{
wdenk5779d8d2003-12-06 23:55:10 +0000149 char *p;
wdenkc6097192002-11-03 00:24:07 +0000150
wdenk109c0e32004-03-23 21:43:07 +0000151 if (!commandline)
152 return;
153
wdenk5779d8d2003-12-06 23:55:10 +0000154 /* eat leading white space */
155 for (p = commandline; *p == ' '; p++);
wdenkc6097192002-11-03 00:24:07 +0000156
wdenk5779d8d2003-12-06 23:55:10 +0000157 /* skip non-existent command lines so the kernel will still
158 * use its default command line.
159 */
160 if (*p == '\0')
161 return;
wdenkc6097192002-11-03 00:24:07 +0000162
wdenk5779d8d2003-12-06 23:55:10 +0000163 params->hdr.tag = ATAG_CMDLINE;
164 params->hdr.size =
165 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
wdenkc6097192002-11-03 00:24:07 +0000166
wdenk5779d8d2003-12-06 23:55:10 +0000167 strcpy (params->u.cmdline.cmdline, p);
wdenkc6097192002-11-03 00:24:07 +0000168
wdenk5779d8d2003-12-06 23:55:10 +0000169 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000170}
Simon Schwarz0a672d42012-03-15 04:01:45 +0000171#endif
wdenkc6097192002-11-03 00:24:07 +0000172
wdenk699b13a2002-11-03 18:03:52 +0000173#ifdef CONFIG_INITRD_TAG
Simon Schwarz0a672d42012-03-15 04:01:45 +0000174static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
wdenkc6097192002-11-03 00:24:07 +0000175{
wdenk5779d8d2003-12-06 23:55:10 +0000176 /* an ATAG_INITRD node tells the kernel where the compressed
177 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
178 */
wdenk498b8db2004-04-18 22:26:17 +0000179 params->hdr.tag = ATAG_INITRD2;
wdenk5779d8d2003-12-06 23:55:10 +0000180 params->hdr.size = tag_size (tag_initrd);
wdenkc6097192002-11-03 00:24:07 +0000181
wdenk5779d8d2003-12-06 23:55:10 +0000182 params->u.initrd.start = initrd_start;
183 params->u.initrd.size = initrd_end - initrd_start;
wdenkc6097192002-11-03 00:24:07 +0000184
wdenk5779d8d2003-12-06 23:55:10 +0000185 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000186}
Simon Schwarz0a672d42012-03-15 04:01:45 +0000187#endif
wdenkc6097192002-11-03 00:24:07 +0000188
wdenk3a574cb2005-05-19 22:39:42 +0000189#ifdef CONFIG_SERIAL_TAG
Simon Schwarz0a672d42012-03-15 04:01:45 +0000190void setup_serial_tag(struct tag **tmp)
wdenk3a574cb2005-05-19 22:39:42 +0000191{
192 struct tag *params = *tmp;
193 struct tag_serialnr serialnr;
194 void get_board_serial(struct tag_serialnr *serialnr);
195
196 get_board_serial(&serialnr);
197 params->hdr.tag = ATAG_SERIAL;
198 params->hdr.size = tag_size (tag_serialnr);
199 params->u.serialnr.low = serialnr.low;
200 params->u.serialnr.high= serialnr.high;
201 params = tag_next (params);
202 *tmp = params;
203}
204#endif
205
wdenk289f9322005-01-12 00:15:14 +0000206#ifdef CONFIG_REVISION_TAG
207void setup_revision_tag(struct tag **in_params)
208{
209 u32 rev = 0;
wdenk289f9322005-01-12 00:15:14 +0000210 u32 get_board_rev(void);
211
212 rev = get_board_rev();
wdenk289f9322005-01-12 00:15:14 +0000213 params->hdr.tag = ATAG_REVISION;
214 params->hdr.size = tag_size (tag_revision);
215 params->u.revision.rev = rev;
216 params = tag_next (params);
217}
Simon Schwarz0a672d42012-03-15 04:01:45 +0000218#endif
wdenk289f9322005-01-12 00:15:14 +0000219
Simon Schwarz0a672d42012-03-15 04:01:45 +0000220#if defined(CONFIG_SETUP_MEMORY_TAGS) || \
221 defined(CONFIG_CMDLINE_TAG) || \
222 defined(CONFIG_INITRD_TAG) || \
223 defined(CONFIG_SERIAL_TAG) || \
224 defined(CONFIG_REVISION_TAG)
225static void setup_end_tag(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000226{
wdenk5779d8d2003-12-06 23:55:10 +0000227 params->hdr.tag = ATAG_NONE;
228 params->hdr.size = 0;
wdenkc6097192002-11-03 00:24:07 +0000229}
Simon Schwarz0a672d42012-03-15 04:01:45 +0000230#endif
wdenkc6097192002-11-03 00:24:07 +0000231
Simon Schwarz0a672d42012-03-15 04:01:45 +0000232#ifdef CONFIG_OF_LIBFDT
233static int create_fdt(bootm_headers_t *images)
John Rigby2d1916e2010-10-13 13:57:36 -0600234{
Simon Schwarz0a672d42012-03-15 04:01:45 +0000235 ulong of_size = images->ft_len;
236 char **of_flat_tree = &images->ft_addr;
237 ulong *initrd_start = &images->initrd_start;
238 ulong *initrd_end = &images->initrd_end;
239 struct lmb *lmb = &images->lmb;
240 ulong rd_len;
241 int ret;
John Rigby2d1916e2010-10-13 13:57:36 -0600242
Simon Schwarz0a672d42012-03-15 04:01:45 +0000243 debug("using: FDT\n");
244
245 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
246
247 rd_len = images->rd_end - images->rd_start;
248 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
249 initrd_start, initrd_end);
250 if (ret)
251 return ret;
252
253 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
254 if (ret)
255 return ret;
256
257 fdt_chosen(*of_flat_tree, 1);
258 fixup_memory_node(*of_flat_tree);
259 fdt_initrd(*of_flat_tree, *initrd_start, *initrd_end, 1);
260
261 return 0;
262}
263#endif
264
265/* Subcommand: PREP */
266static void boot_prep_linux(bootm_headers_t *images)
267{
268#ifdef CONFIG_CMDLINE_TAG
269 char *commandline = getenv("bootargs");
270#endif
271
272#ifdef CONFIG_OF_LIBFDT
273 if (images->ft_len) {
274 debug("using: FDT\n");
275 if (create_fdt(images)) {
276 printf("FDT creation failed! hanging...");
277 hang();
278 }
279 } else
280#endif
281 {
282#if defined(CONFIG_SETUP_MEMORY_TAGS) || \
283 defined(CONFIG_CMDLINE_TAG) || \
284 defined(CONFIG_INITRD_TAG) || \
285 defined(CONFIG_SERIAL_TAG) || \
286 defined(CONFIG_REVISION_TAG)
287 debug("using: ATAGS\n");
288 setup_start_tag(gd->bd);
289#ifdef CONFIG_SERIAL_TAG
290 setup_serial_tag(&params);
291#endif
292#ifdef CONFIG_CMDLINE_TAG
293 setup_commandline_tag(gd->bd, commandline);
294#endif
295#ifdef CONFIG_REVISION_TAG
296 setup_revision_tag(&params);
297#endif
298#ifdef CONFIG_SETUP_MEMORY_TAGS
299 setup_memory_tags(gd->bd);
300#endif
301#ifdef CONFIG_INITRD_TAG
302 if (images->rd_start && images->rd_end)
303 setup_initrd_tag(gd->bd, images->rd_start,
304 images->rd_end);
305#endif
306 setup_end_tag(gd->bd);
307#else /* all tags */
308 printf("FDT and ATAGS support not compiled in - hanging\n");
309 hang();
310#endif /* all tags */
311 }
312}
313
314/* Subcommand: GO */
315static void boot_jump_linux(bootm_headers_t *images)
316{
317 unsigned long machid = gd->bd->bi_arch_number;
318 char *s;
319 void (*kernel_entry)(int zero, int arch, uint params);
Stephen Warren17239972012-04-19 11:34:00 +0000320 unsigned long r2;
Simon Schwarz0a672d42012-03-15 04:01:45 +0000321
322 kernel_entry = (void (*)(int, int, uint))images->ep;
323
324 s = getenv("machid");
325 if (s) {
326 strict_strtoul(s, 16, &machid);
327 printf("Using machid 0x%lx from environment\n", machid);
328 }
329
330 debug("## Transferring control to Linux (at address %08lx)" \
331 "...\n", (ulong) kernel_entry);
332 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
333 announce_and_cleanup();
Stephen Warren17239972012-04-19 11:34:00 +0000334
335#ifdef CONFIG_OF_LIBFDT
336 if (images->ft_len)
337 r2 = (unsigned long)images->ft_addr;
338 else
339#endif
340 r2 = gd->bd->bi_boot_params;
341
342 kernel_entry(0, machid, r2);
Simon Schwarz0a672d42012-03-15 04:01:45 +0000343}
344
345/* Main Entry point for arm bootm implementation
346 *
347 * Modeled after the powerpc implementation
348 * DIFFERENCE: Instead of calling prep and go at the end
349 * they are called if subcommand is equal 0.
350 */
351int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
352{
353 /* No need for those on ARM */
354 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
355 return -1;
356
357 if (flag & BOOTM_STATE_OS_PREP) {
358 boot_prep_linux(images);
359 return 0;
360 }
361
362 if (flag & BOOTM_STATE_OS_GO) {
363 boot_jump_linux(images);
364 return 0;
365 }
366
367 boot_prep_linux(images);
368 boot_jump_linux(images);
369 return 0;
John Rigby2d1916e2010-10-13 13:57:36 -0600370}
Marek Vasut44f074c2012-03-14 21:52:45 +0000371
372#ifdef CONFIG_CMD_BOOTZ
373
374struct zimage_header {
375 uint32_t code[9];
376 uint32_t zi_magic;
377 uint32_t zi_start;
378 uint32_t zi_end;
379};
380
381#define LINUX_ARM_ZIMAGE_MAGIC 0x016f2818
382
383int bootz_setup(void *image, void **start, void **end)
384{
385 struct zimage_header *zi = (struct zimage_header *)image;
386
387 if (zi->zi_magic != LINUX_ARM_ZIMAGE_MAGIC) {
388 puts("Bad Linux ARM zImage magic!\n");
389 return 1;
390 }
391
392 *start = (void *)zi->zi_start;
393 *end = (void *)zi->zi_end;
394
395 debug("Kernel image @ 0x%08x [ 0x%08x - 0x%08x ]\n",
396 (uint32_t)image, (uint32_t)*start, (uint32_t)*end);
397
398 return 0;
399}
400#endif /* CONFIG_CMD_BOOTZ */