blob: cdb19751058815b19e274ba32c7293690c5ce99f [file] [log] [blame]
Simon Schwarz6a597b92012-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 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +020012 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +000013 */
14
15#include <common.h>
16#include <command.h>
wdenkc6097192002-11-03 00:24:07 +000017#include <image.h>
Jeroen Hofstee506f0e52014-10-08 22:57:54 +020018#include <vxworks.h>
Jean-Christophe PLAGNIOL-VILLARD6bb94492009-04-04 12:49:11 +020019#include <u-boot/zlib.h>
wdenkc6097192002-11-03 00:24:07 +000020#include <asm/byteorder.h>
John Rigbyab51f1e2010-10-13 13:57:36 -060021#include <libfdt.h>
22#include <fdt_support.h>
Simon Schwarz6a597b92012-03-15 04:01:45 +000023#include <asm/bootm.h>
Marc Zyngier855ca662014-07-12 14:24:03 +010024#include <asm/secure.h>
Pali Rohár5ebe4f12012-10-19 02:00:04 +000025#include <linux/compiler.h>
Eric Nelsonb7c236b2014-09-30 15:40:01 -070026#include <bootm.h>
27#include <vxworks.h>
wdenkc6097192002-11-03 00:24:07 +000028
Andre Przywara8de142c2013-09-19 18:06:45 +020029#if defined(CONFIG_ARMV7_NONSEC) || defined(CONFIG_ARMV7_VIRT)
Andre Przywarafe7d9252013-09-19 18:06:43 +020030#include <asm/armv7.h>
31#endif
32
Wolfgang Denk6405a152006-03-31 18:32:53 +020033DECLARE_GLOBAL_DATA_PTR;
34
wdenkc6097192002-11-03 00:24:07 +000035static struct tag *params;
John Rigbyab51f1e2010-10-13 13:57:36 -060036
Simon Schwarz6a597b92012-03-15 04:01:45 +000037static ulong get_sp(void)
38{
39 ulong ret;
40
41 asm("mov %0, sp" : "=r"(ret) : );
42 return ret;
43}
44
John Rigbyab51f1e2010-10-13 13:57:36 -060045void arch_lmb_reserve(struct lmb *lmb)
46{
47 ulong sp;
48
49 /*
50 * Booting a (Linux) kernel image
51 *
52 * Allocate space for command line and board info - the
53 * address should be as high as possible within the reach of
54 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
55 * memory, which means far enough below the current stack
56 * pointer.
57 */
58 sp = get_sp();
59 debug("## Current stack ends at 0x%08lx ", sp);
60
Rob Herring13137f32012-06-28 03:54:11 +000061 /* adjust sp by 4K to be safe */
62 sp -= 4096;
John Rigbyab51f1e2010-10-13 13:57:36 -060063 lmb_reserve(lmb, sp,
64 gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size - sp);
65}
66
Simon Glass3c26c582013-06-19 21:15:10 -070067/**
68 * announce_and_cleanup() - Print message and prepare for kernel boot
69 *
70 * @fake: non-zero to do everything except actually boot
71 */
72static void announce_and_cleanup(int fake)
John Rigbyab51f1e2010-10-13 13:57:36 -060073{
Simon Glass3c26c582013-06-19 21:15:10 -070074 printf("\nStarting kernel ...%s\n\n", fake ?
75 "(fake run for tracing)" : "");
Simon Schwarz6a597b92012-03-15 04:01:45 +000076 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glass0fa36a42012-09-28 08:56:37 +000077#ifdef CONFIG_BOOTSTAGE_FDT
Mela Custodio5625c8b2014-02-20 00:16:56 +090078 bootstage_fdt_add_report();
Simon Glass0fa36a42012-09-28 08:56:37 +000079#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +000080#ifdef CONFIG_BOOTSTAGE_REPORT
81 bootstage_report();
82#endif
Wolfgang Denk20ec3672008-09-08 23:26:22 +020083
Simon Schwarz6a597b92012-03-15 04:01:45 +000084#ifdef CONFIG_USB_DEVICE
85 udc_disconnect();
John Rigbyab51f1e2010-10-13 13:57:36 -060086#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +000087 cleanup_before_linux();
88}
wdenkc6097192002-11-03 00:24:07 +000089
wdenk86765902003-12-06 23:55:10 +000090static void setup_start_tag (bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +000091{
Simon Schwarz6a597b92012-03-15 04:01:45 +000092 params = (struct tag *)bd->bi_boot_params;
wdenkc6097192002-11-03 00:24:07 +000093
wdenk86765902003-12-06 23:55:10 +000094 params->hdr.tag = ATAG_CORE;
95 params->hdr.size = tag_size (tag_core);
wdenkc6097192002-11-03 00:24:07 +000096
wdenk86765902003-12-06 23:55:10 +000097 params->u.core.flags = 0;
98 params->u.core.pagesize = 0;
99 params->u.core.rootdev = 0;
wdenkc6097192002-11-03 00:24:07 +0000100
wdenk86765902003-12-06 23:55:10 +0000101 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000102}
wdenkc6097192002-11-03 00:24:07 +0000103
Simon Schwarz6a597b92012-03-15 04:01:45 +0000104static void setup_memory_tags(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000105{
wdenk86765902003-12-06 23:55:10 +0000106 int i;
wdenkc6097192002-11-03 00:24:07 +0000107
wdenk86765902003-12-06 23:55:10 +0000108 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
109 params->hdr.tag = ATAG_MEM;
110 params->hdr.size = tag_size (tag_mem32);
wdenkc6097192002-11-03 00:24:07 +0000111
wdenk86765902003-12-06 23:55:10 +0000112 params->u.mem.start = bd->bi_dram[i].start;
113 params->u.mem.size = bd->bi_dram[i].size;
wdenkc6097192002-11-03 00:24:07 +0000114
wdenk86765902003-12-06 23:55:10 +0000115 params = tag_next (params);
116 }
wdenkc6097192002-11-03 00:24:07 +0000117}
wdenkc6097192002-11-03 00:24:07 +0000118
Simon Schwarz6a597b92012-03-15 04:01:45 +0000119static void setup_commandline_tag(bd_t *bd, char *commandline)
wdenkc6097192002-11-03 00:24:07 +0000120{
wdenk86765902003-12-06 23:55:10 +0000121 char *p;
wdenkc6097192002-11-03 00:24:07 +0000122
wdenkf16b5162004-03-23 21:43:07 +0000123 if (!commandline)
124 return;
125
wdenk86765902003-12-06 23:55:10 +0000126 /* eat leading white space */
127 for (p = commandline; *p == ' '; p++);
wdenkc6097192002-11-03 00:24:07 +0000128
wdenk86765902003-12-06 23:55:10 +0000129 /* skip non-existent command lines so the kernel will still
130 * use its default command line.
131 */
132 if (*p == '\0')
133 return;
wdenkc6097192002-11-03 00:24:07 +0000134
wdenk86765902003-12-06 23:55:10 +0000135 params->hdr.tag = ATAG_CMDLINE;
136 params->hdr.size =
137 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
wdenkc6097192002-11-03 00:24:07 +0000138
wdenk86765902003-12-06 23:55:10 +0000139 strcpy (params->u.cmdline.cmdline, p);
wdenkc6097192002-11-03 00:24:07 +0000140
wdenk86765902003-12-06 23:55:10 +0000141 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000142}
wdenkc6097192002-11-03 00:24:07 +0000143
Simon Schwarz6a597b92012-03-15 04:01:45 +0000144static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
wdenkc6097192002-11-03 00:24:07 +0000145{
wdenk86765902003-12-06 23:55:10 +0000146 /* an ATAG_INITRD node tells the kernel where the compressed
147 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
148 */
wdenk19c8fb72004-04-18 22:26:17 +0000149 params->hdr.tag = ATAG_INITRD2;
wdenk86765902003-12-06 23:55:10 +0000150 params->hdr.size = tag_size (tag_initrd);
wdenkc6097192002-11-03 00:24:07 +0000151
wdenk86765902003-12-06 23:55:10 +0000152 params->u.initrd.start = initrd_start;
153 params->u.initrd.size = initrd_end - initrd_start;
wdenkc6097192002-11-03 00:24:07 +0000154
wdenk86765902003-12-06 23:55:10 +0000155 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000156}
wdenkc6097192002-11-03 00:24:07 +0000157
Simon Glass50ad2212013-05-08 08:06:02 +0000158static void setup_serial_tag(struct tag **tmp)
wdenka21ad7b2005-05-19 22:39:42 +0000159{
160 struct tag *params = *tmp;
161 struct tag_serialnr serialnr;
wdenka21ad7b2005-05-19 22:39:42 +0000162
163 get_board_serial(&serialnr);
164 params->hdr.tag = ATAG_SERIAL;
165 params->hdr.size = tag_size (tag_serialnr);
166 params->u.serialnr.low = serialnr.low;
167 params->u.serialnr.high= serialnr.high;
168 params = tag_next (params);
169 *tmp = params;
170}
wdenka21ad7b2005-05-19 22:39:42 +0000171
Simon Glass50ad2212013-05-08 08:06:02 +0000172static void setup_revision_tag(struct tag **in_params)
wdenkcb99da52005-01-12 00:15:14 +0000173{
174 u32 rev = 0;
wdenkcb99da52005-01-12 00:15:14 +0000175
176 rev = get_board_rev();
wdenkcb99da52005-01-12 00:15:14 +0000177 params->hdr.tag = ATAG_REVISION;
178 params->hdr.size = tag_size (tag_revision);
179 params->u.revision.rev = rev;
180 params = tag_next (params);
181}
wdenkcb99da52005-01-12 00:15:14 +0000182
Simon Schwarz6a597b92012-03-15 04:01:45 +0000183static void setup_end_tag(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000184{
wdenk86765902003-12-06 23:55:10 +0000185 params->hdr.tag = ATAG_NONE;
186 params->hdr.size = 0;
wdenkc6097192002-11-03 00:24:07 +0000187}
Simon Schwarz6a597b92012-03-15 04:01:45 +0000188
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000189__weak void setup_board_tags(struct tag **in_params) {}
190
Marc Zyngier855ca662014-07-12 14:24:03 +0100191#ifdef CONFIG_ARM64
Andre Przywarafe7d9252013-09-19 18:06:43 +0200192static void do_nonsec_virt_switch(void)
193{
David Feng85fd5f12013-12-14 11:47:35 +0800194 smp_kick_all_cpus();
York Sunb7ebd102014-03-31 14:40:32 -0700195 flush_dcache_all(); /* flush cache before swtiching to EL2 */
David Feng85fd5f12013-12-14 11:47:35 +0800196 armv8_switch_to_el2();
197#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
198 armv8_switch_to_el1();
199#endif
Andre Przywarafe7d9252013-09-19 18:06:43 +0200200}
Marc Zyngier855ca662014-07-12 14:24:03 +0100201#endif
Andre Przywarafe7d9252013-09-19 18:06:43 +0200202
Simon Schwarz6a597b92012-03-15 04:01:45 +0000203/* Subcommand: PREP */
204static void boot_prep_linux(bootm_headers_t *images)
205{
Simon Schwarz6a597b92012-03-15 04:01:45 +0000206 char *commandline = getenv("bootargs");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000207
Simon Glass50ad2212013-05-08 08:06:02 +0000208 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000209#ifdef CONFIG_OF_LIBFDT
Simon Schwarz6a597b92012-03-15 04:01:45 +0000210 debug("using: FDT\n");
Simon Glass653909f2013-05-08 08:06:03 +0000211 if (image_setup_linux(images)) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000212 printf("FDT creation failed! hanging...");
213 hang();
214 }
Simon Schwarz6a597b92012-03-15 04:01:45 +0000215#endif
Simon Glass50ad2212013-05-08 08:06:02 +0000216 } else if (BOOTM_ENABLE_TAGS) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000217 debug("using: ATAGS\n");
218 setup_start_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000219 if (BOOTM_ENABLE_SERIAL_TAG)
220 setup_serial_tag(&params);
221 if (BOOTM_ENABLE_CMDLINE_TAG)
222 setup_commandline_tag(gd->bd, commandline);
223 if (BOOTM_ENABLE_REVISION_TAG)
224 setup_revision_tag(&params);
225 if (BOOTM_ENABLE_MEMORY_TAGS)
226 setup_memory_tags(gd->bd);
227 if (BOOTM_ENABLE_INITRD_TAG) {
228 if (images->rd_start && images->rd_end) {
229 setup_initrd_tag(gd->bd, images->rd_start,
230 images->rd_end);
231 }
232 }
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000233 setup_board_tags(&params);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000234 setup_end_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000235 } else {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000236 printf("FDT and ATAGS support not compiled in - hanging\n");
237 hang();
Simon Schwarz6a597b92012-03-15 04:01:45 +0000238 }
239}
240
241/* Subcommand: GO */
Simon Glass3c26c582013-06-19 21:15:10 -0700242static void boot_jump_linux(bootm_headers_t *images, int flag)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000243{
David Feng85fd5f12013-12-14 11:47:35 +0800244#ifdef CONFIG_ARM64
Tom Rini67d604e2014-08-14 06:42:35 -0400245 void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
246 void *res2);
David Feng85fd5f12013-12-14 11:47:35 +0800247 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
248
Tom Rini67d604e2014-08-14 06:42:35 -0400249 kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
250 void *res2))images->ep;
David Feng85fd5f12013-12-14 11:47:35 +0800251
252 debug("## Transferring control to Linux (at address %lx)...\n",
253 (ulong) kernel_entry);
254 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
255
256 announce_and_cleanup(fake);
257
Marc Zyngier915a09e2014-07-12 14:23:58 +0100258 if (!fake) {
259 do_nonsec_virt_switch();
Tom Rini67d604e2014-08-14 06:42:35 -0400260 kernel_entry(images->ft_addr, NULL, NULL, NULL);
Marc Zyngier915a09e2014-07-12 14:23:58 +0100261 }
David Feng85fd5f12013-12-14 11:47:35 +0800262#else
Simon Schwarz6a597b92012-03-15 04:01:45 +0000263 unsigned long machid = gd->bd->bi_arch_number;
264 char *s;
265 void (*kernel_entry)(int zero, int arch, uint params);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000266 unsigned long r2;
Simon Glass3c26c582013-06-19 21:15:10 -0700267 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000268
269 kernel_entry = (void (*)(int, int, uint))images->ep;
270
271 s = getenv("machid");
272 if (s) {
273 strict_strtoul(s, 16, &machid);
274 printf("Using machid 0x%lx from environment\n", machid);
275 }
276
277 debug("## Transferring control to Linux (at address %08lx)" \
278 "...\n", (ulong) kernel_entry);
279 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Simon Glass3c26c582013-06-19 21:15:10 -0700280 announce_and_cleanup(fake);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000281
Simon Glass50ad2212013-05-08 08:06:02 +0000282 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
Stephen Warrenc570fba2012-04-19 11:34:00 +0000283 r2 = (unsigned long)images->ft_addr;
284 else
Stephen Warrenc570fba2012-04-19 11:34:00 +0000285 r2 = gd->bd->bi_boot_params;
286
Marc Zyngier915a09e2014-07-12 14:23:58 +0100287 if (!fake) {
Marc Zyngier855ca662014-07-12 14:24:03 +0100288#if defined(CONFIG_ARMV7_NONSEC) || defined(CONFIG_ARMV7_VIRT)
289 armv7_init_nonsec();
290 secure_ram_addr(_do_nonsec_entry)(kernel_entry,
291 0, machid, r2);
292#else
Simon Glass3c26c582013-06-19 21:15:10 -0700293 kernel_entry(0, machid, r2);
Marc Zyngier855ca662014-07-12 14:24:03 +0100294#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100295 }
David Feng85fd5f12013-12-14 11:47:35 +0800296#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +0000297}
298
299/* Main Entry point for arm bootm implementation
300 *
301 * Modeled after the powerpc implementation
302 * DIFFERENCE: Instead of calling prep and go at the end
303 * they are called if subcommand is equal 0.
304 */
Eric Nelsonb7c236b2014-09-30 15:40:01 -0700305int do_bootm_linux(int flag, int argc, char * const argv[],
306 bootm_headers_t *images)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000307{
308 /* No need for those on ARM */
309 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
310 return -1;
311
312 if (flag & BOOTM_STATE_OS_PREP) {
313 boot_prep_linux(images);
314 return 0;
315 }
316
Simon Glass3c26c582013-06-19 21:15:10 -0700317 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
318 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000319 return 0;
320 }
321
322 boot_prep_linux(images);
Simon Glass3c26c582013-06-19 21:15:10 -0700323 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000324 return 0;
John Rigbyab51f1e2010-10-13 13:57:36 -0600325}
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000326
327#ifdef CONFIG_CMD_BOOTZ
328
329struct zimage_header {
330 uint32_t code[9];
331 uint32_t zi_magic;
332 uint32_t zi_start;
333 uint32_t zi_end;
334};
335
336#define LINUX_ARM_ZIMAGE_MAGIC 0x016f2818
337
Simon Glass5f1afdd2013-07-04 13:26:10 -0700338int bootz_setup(ulong image, ulong *start, ulong *end)
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000339{
Simon Glass5f1afdd2013-07-04 13:26:10 -0700340 struct zimage_header *zi;
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000341
Simon Glass5f1afdd2013-07-04 13:26:10 -0700342 zi = (struct zimage_header *)map_sysmem(image, 0);
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000343 if (zi->zi_magic != LINUX_ARM_ZIMAGE_MAGIC) {
344 puts("Bad Linux ARM zImage magic!\n");
345 return 1;
346 }
347
Simon Glass5f1afdd2013-07-04 13:26:10 -0700348 *start = zi->zi_start;
349 *end = zi->zi_end;
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000350
Simon Glass5f1afdd2013-07-04 13:26:10 -0700351 printf("Kernel image @ %#08lx [ %#08lx - %#08lx ]\n", image, *start,
352 *end);
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000353
354 return 0;
355}
Simon Glass5f1afdd2013-07-04 13:26:10 -0700356
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000357#endif /* CONFIG_CMD_BOOTZ */
Miao Yan1bd54562013-11-28 17:51:38 +0800358
359#if defined(CONFIG_BOOTM_VXWORKS)
360void boot_prep_vxworks(bootm_headers_t *images)
361{
362#if defined(CONFIG_OF_LIBFDT)
363 int off;
364
365 if (images->ft_addr) {
366 off = fdt_path_offset(images->ft_addr, "/memory");
367 if (off < 0) {
Ma Haijun62358242014-07-12 14:24:06 +0100368 if (arch_fixup_fdt(images->ft_addr))
Miao Yan1bd54562013-11-28 17:51:38 +0800369 puts("## WARNING: fixup memory failed!\n");
370 }
371 }
372#endif
373 cleanup_before_linux();
374}
375void boot_jump_vxworks(bootm_headers_t *images)
376{
377 /* ARM VxWorks requires device tree physical address to be passed */
378 ((void (*)(void *))images->ep)(images->ft_addr);
379}
380#endif