blob: 22475dc3cbff63247609f9acdc5f802d6380f7bd [file] [log] [blame]
wdenk458ded32002-09-20 10:59:08 +00001/*
2 * Copyright (c) 2001 William L. Pitts
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms are freely
6 * permitted provided that the above copyright notice and this
7 * paragraph and the following disclaimer are duplicated in all
8 * such forms.
9 *
10 * This software is provided "AS IS" and without any express or
11 * implied warranties, including, without limitation, the implied
12 * warranties of merchantability and fitness for a particular
13 * purpose.
14 */
15
16#include <common.h>
Jeroen Hofstee73063c02014-10-08 22:57:51 +020017#include <bootm.h>
wdenk458ded32002-09-20 10:59:08 +000018#include <command.h>
19#include <linux/ctype.h>
20#include <net.h>
wdenk458ded32002-09-20 10:59:08 +000021#include <elf.h>
Niklaus Giger29a4c242008-11-03 22:15:34 +010022#include <vxworks.h>
wdenk458ded32002-09-20 10:59:08 +000023
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020024#if defined(CONFIG_WALNUT) || defined(CONFIG_SYS_VXWORKS_MAC_PTR)
Wolfgang Denkd87080b2006-03-31 18:32:53 +020025DECLARE_GLOBAL_DATA_PTR;
26#endif
wdenk458ded32002-09-20 10:59:08 +000027
Mike Frysingerf44a9282010-10-02 15:44:53 -040028static unsigned long load_elf_image_phdr(unsigned long addr);
29static unsigned long load_elf_image_shdr(unsigned long addr);
Mike Frysinger017e9b72008-04-13 19:42:18 -040030
31/* Allow ports to override the default behavior */
Jeroen Hofstee553d8c32014-10-08 22:57:31 +020032static unsigned long do_bootelf_exec(ulong (*entry)(int, char * const[]),
Wolfgang Denk54841ab2010-06-28 22:00:46 +020033 int argc, char * const argv[])
Mike Frysinger1f1d88d2008-01-29 18:21:05 -050034{
Mike Frysinger017e9b72008-04-13 19:42:18 -040035 unsigned long ret;
36
Mike Frysinger1f1d88d2008-01-29 18:21:05 -050037 /*
38 * QNX images require the data cache is disabled.
39 * Data cache is already flushed, so just turn it off.
40 */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +000041 int dcache = dcache_status();
Mike Frysinger017e9b72008-04-13 19:42:18 -040042 if (dcache)
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +000043 dcache_disable();
Mike Frysinger1f1d88d2008-01-29 18:21:05 -050044
Mike Frysinger017e9b72008-04-13 19:42:18 -040045 /*
46 * pass address parameter as argv[0] (aka command name),
47 * and all remaining args
48 */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +000049 ret = entry(argc, argv);
Mike Frysinger1f1d88d2008-01-29 18:21:05 -050050
Mike Frysinger017e9b72008-04-13 19:42:18 -040051 if (dcache)
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +000052 dcache_enable();
Mike Frysinger017e9b72008-04-13 19:42:18 -040053
54 return ret;
55}
wdenk458ded32002-09-20 10:59:08 +000056
57/* ======================================================================
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +000058 * Determine if a valid ELF image exists at the given memory location.
59 * First looks at the ELF header magic field, the makes sure that it is
60 * executable and makes sure that it is for a PowerPC.
61 * ====================================================================== */
62int valid_elf_image(unsigned long addr)
63{
64 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
65
66 /* -------------------------------------------------- */
67
68 ehdr = (Elf32_Ehdr *) addr;
69
70 if (!IS_ELF(*ehdr)) {
71 printf("## No elf image at address 0x%08lx\n", addr);
72 return 0;
73 }
74
75 if (ehdr->e_type != ET_EXEC) {
76 printf("## Not a 32-bit elf image at address 0x%08lx\n", addr);
77 return 0;
78 }
79
80#if 0
81 if (ehdr->e_machine != EM_PPC) {
82 printf("## Not a PowerPC elf image at address 0x%08lx\n", addr);
83 return 0;
84 }
85#endif
86
87 return 1;
88}
89
90/* ======================================================================
wdenk458ded32002-09-20 10:59:08 +000091 * Interpreter command to boot an arbitrary ELF image from memory.
92 * ====================================================================== */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +000093int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk458ded32002-09-20 10:59:08 +000094{
95 unsigned long addr; /* Address of the ELF image */
96 unsigned long rc; /* Return value from user code */
Mike Frysingerf44a9282010-10-02 15:44:53 -040097 char *sload, *saddr;
Siva Durga Prasad Paladugu44c8fd32015-03-09 12:46:47 +010098 const char *ep = getenv("autostart");
wdenk458ded32002-09-20 10:59:08 +000099
100 /* -------------------------------------------------- */
101 int rcode = 0;
102
Mike Frysingerf44a9282010-10-02 15:44:53 -0400103 sload = saddr = NULL;
104 if (argc == 3) {
105 sload = argv[1];
106 saddr = argv[2];
107 } else if (argc == 2) {
108 if (argv[1][0] == '-')
109 sload = argv[1];
110 else
111 saddr = argv[1];
112 }
113
114 if (saddr)
115 addr = simple_strtoul(saddr, NULL, 16);
wdenk458ded32002-09-20 10:59:08 +0000116 else
Mike Frysingerf44a9282010-10-02 15:44:53 -0400117 addr = load_addr;
wdenk458ded32002-09-20 10:59:08 +0000118
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000119 if (!valid_elf_image(addr))
wdenk458ded32002-09-20 10:59:08 +0000120 return 1;
121
Mike Frysingerf44a9282010-10-02 15:44:53 -0400122 if (sload && sload[1] == 'p')
123 addr = load_elf_image_phdr(addr);
124 else
125 addr = load_elf_image_shdr(addr);
wdenk458ded32002-09-20 10:59:08 +0000126
Siva Durga Prasad Paladugu44c8fd32015-03-09 12:46:47 +0100127 if (ep && !strcmp(ep, "no"))
128 return rcode;
129
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000130 printf("## Starting application at 0x%08lx ...\n", addr);
wdenk458ded32002-09-20 10:59:08 +0000131
wdenk458ded32002-09-20 10:59:08 +0000132 /*
133 * pass address parameter as argv[0] (aka command name),
134 * and all remaining args
135 */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000136 rc = do_bootelf_exec((void *)addr, argc - 1, argv + 1);
wdenk458ded32002-09-20 10:59:08 +0000137 if (rc != 0)
138 rcode = 1;
139
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000140 printf("## Application terminated, rc = 0x%lx\n", rc);
wdenk458ded32002-09-20 10:59:08 +0000141 return rcode;
142}
143
144/* ======================================================================
145 * Interpreter command to boot VxWorks from a memory image. The image can
146 * be either an ELF image or a raw binary. Will attempt to setup the
147 * bootline and other parameters correctly.
148 * ====================================================================== */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000149int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk458ded32002-09-20 10:59:08 +0000150{
wdenk458ded32002-09-20 10:59:08 +0000151 unsigned long addr; /* Address of image */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000152 unsigned long bootaddr; /* Address to put the bootline */
wdenk458ded32002-09-20 10:59:08 +0000153 char *bootline; /* Text of the bootline */
154 char *tmp; /* Temporary char pointer */
Niklaus Giger29a4c242008-11-03 22:15:34 +0100155 char build_buf[128]; /* Buffer for building the bootline */
wdenk458ded32002-09-20 10:59:08 +0000156
Niklaus Giger29a4c242008-11-03 22:15:34 +0100157 /* ---------------------------------------------------
158 *
wdenk458ded32002-09-20 10:59:08 +0000159 * Check the loadaddr variable.
160 * If we don't know where the image is then we're done.
161 */
162
Stany MARCEL07a1a0c2013-11-27 14:48:43 +0100163 if (argc < 2)
Stefan Roese1bdd4682006-11-29 12:53:15 +0100164 addr = load_addr;
165 else
Stany MARCEL07a1a0c2013-11-27 14:48:43 +0100166 addr = simple_strtoul(argv[1], NULL, 16);
wdenk458ded32002-09-20 10:59:08 +0000167
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500168#if defined(CONFIG_CMD_NET)
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000169 /*
170 * Check to see if we need to tftp the image ourselves before starting
171 */
Stany MARCEL07a1a0c2013-11-27 14:48:43 +0100172 if ((argc == 2) && (strcmp(argv[1], "tftp") == 0)) {
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500173 if (net_loop(TFTPGET) <= 0)
wdenk458ded32002-09-20 10:59:08 +0000174 return 1;
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000175 printf("Automatic boot of VxWorks image at address 0x%08lx ...\n",
176 addr);
wdenk458ded32002-09-20 10:59:08 +0000177 }
178#endif
179
180 /* This should equate
181 * to NV_RAM_ADRS + NV_BOOT_OFFSET + NV_ENET_OFFSET
182 * from the VxWorks BSP header files.
183 * This will vary from board to board
184 */
185
Stefan Roesec157d8e2005-08-01 16:41:48 +0200186#if defined(CONFIG_WALNUT)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200187 tmp = (char *) CONFIG_SYS_NVRAM_BASE_ADDR + 0x500;
Heiko Schocher76756e42009-03-26 07:33:59 +0100188 eth_getenv_enetaddr("ethaddr", (uchar *)build_buf);
Mike Frysinger62c93d92009-02-11 18:51:43 -0500189 memcpy(tmp, &build_buf[3], 3);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200190#elif defined(CONFIG_SYS_VXWORKS_MAC_PTR)
191 tmp = (char *) CONFIG_SYS_VXWORKS_MAC_PTR;
Heiko Schocher76756e42009-03-26 07:33:59 +0100192 eth_getenv_enetaddr("ethaddr", (uchar *)build_buf);
Mike Frysinger62c93d92009-02-11 18:51:43 -0500193 memcpy(tmp, build_buf, 6);
wdenk458ded32002-09-20 10:59:08 +0000194#else
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000195 puts("## Ethernet MAC address not copied to NV RAM\n");
wdenk458ded32002-09-20 10:59:08 +0000196#endif
197
wdenk8bde7f72003-06-27 21:31:46 +0000198 /*
199 * Use bootaddr to find the location in memory that VxWorks
200 * will look for the bootline string. The default value for
201 * PowerPC is LOCAL_MEM_LOCAL_ADRS + BOOT_LINE_OFFSET which
202 * defaults to 0x4200
wdenk458ded32002-09-20 10:59:08 +0000203 */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000204 tmp = getenv("bootaddr");
Reinhard Arlt1b3e0b12013-02-04 09:37:11 +0000205 if (!tmp)
Niklaus Giger29a4c242008-11-03 22:15:34 +0100206 bootaddr = CONFIG_SYS_VXWORKS_BOOT_ADDR;
wdenk458ded32002-09-20 10:59:08 +0000207 else
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000208 bootaddr = simple_strtoul(tmp, NULL, 16);
wdenk458ded32002-09-20 10:59:08 +0000209
wdenk8bde7f72003-06-27 21:31:46 +0000210 /*
211 * Check to see if the bootline is defined in the 'bootargs'
212 * parameter. If it is not defined, we may be able to
213 * construct the info
wdenk458ded32002-09-20 10:59:08 +0000214 */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000215 bootline = getenv("bootargs");
216 if (bootline) {
Masahiro Yamadab4141192014-11-07 03:03:31 +0900217 memcpy((void *)bootaddr, bootline,
218 max(strlen(bootline), (size_t)255));
219 flush_cache(bootaddr, max(strlen(bootline), (size_t)255));
wdenk458ded32002-09-20 10:59:08 +0000220 } else {
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000221 sprintf(build_buf, CONFIG_SYS_VXWORKS_BOOT_DEVICE);
222 tmp = getenv("bootfile");
223 if (tmp)
224 sprintf(&build_buf[strlen(build_buf)],
Niklaus Giger29a4c242008-11-03 22:15:34 +0100225 "%s:%s ", CONFIG_SYS_VXWORKS_SERVERNAME, tmp);
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000226 else
227 sprintf(&build_buf[strlen(build_buf)],
Niklaus Giger29a4c242008-11-03 22:15:34 +0100228 "%s:file ", CONFIG_SYS_VXWORKS_SERVERNAME);
wdenk458ded32002-09-20 10:59:08 +0000229
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000230 tmp = getenv("ipaddr");
231 if (tmp)
232 sprintf(&build_buf[strlen(build_buf)], "e=%s ", tmp);
Niklaus Giger29a4c242008-11-03 22:15:34 +0100233
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000234 tmp = getenv("serverip");
235 if (tmp)
236 sprintf(&build_buf[strlen(build_buf)], "h=%s ", tmp);
wdenk458ded32002-09-20 10:59:08 +0000237
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000238 tmp = getenv("hostname");
239 if (tmp)
240 sprintf(&build_buf[strlen(build_buf)], "tn=%s ", tmp);
241
Niklaus Giger29a4c242008-11-03 22:15:34 +0100242#ifdef CONFIG_SYS_VXWORKS_ADD_PARAMS
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000243 sprintf(&build_buf[strlen(build_buf)],
Niklaus Giger29a4c242008-11-03 22:15:34 +0100244 CONFIG_SYS_VXWORKS_ADD_PARAMS);
wdenk458ded32002-09-20 10:59:08 +0000245#endif
Niklaus Giger29a4c242008-11-03 22:15:34 +0100246
Masahiro Yamadab4141192014-11-07 03:03:31 +0900247 memcpy((void *)bootaddr, build_buf,
248 max(strlen(build_buf), (size_t)255));
249 flush_cache(bootaddr, max(strlen(build_buf), (size_t)255));
wdenk458ded32002-09-20 10:59:08 +0000250 }
251
wdenk8bde7f72003-06-27 21:31:46 +0000252 /*
253 * If the data at the load address is an elf image, then
254 * treat it like an elf image. Otherwise, assume that it is a
255 * binary image
wdenk458ded32002-09-20 10:59:08 +0000256 */
257
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000258 if (valid_elf_image(addr)) {
259 addr = load_elf_image_shdr(addr);
wdenk458ded32002-09-20 10:59:08 +0000260 } else {
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000261 puts("## Not an ELF image, assuming binary\n");
wdenk458ded32002-09-20 10:59:08 +0000262 /* leave addr as load_addr */
263 }
264
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000265 printf("## Using bootline (@ 0x%lx): %s\n", bootaddr,
wdenk458ded32002-09-20 10:59:08 +0000266 (char *) bootaddr);
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000267 printf("## Starting vxWorks at 0x%08lx ...\n", addr);
wdenk458ded32002-09-20 10:59:08 +0000268
Reinhard Arlt6eee21d2011-11-18 09:06:52 +0000269 dcache_disable();
270 ((void (*)(int)) addr) (0);
wdenk458ded32002-09-20 10:59:08 +0000271
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000272 puts("## vxWorks terminated\n");
wdenk458ded32002-09-20 10:59:08 +0000273 return 1;
274}
275
wdenk458ded32002-09-20 10:59:08 +0000276/* ======================================================================
277 * A very simple elf loader, assumes the image is valid, returns the
278 * entry point address.
279 * ====================================================================== */
Mike Frysingerf44a9282010-10-02 15:44:53 -0400280static unsigned long load_elf_image_phdr(unsigned long addr)
281{
282 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
283 Elf32_Phdr *phdr; /* Program header structure pointer */
284 int i;
285
286 ehdr = (Elf32_Ehdr *) addr;
287 phdr = (Elf32_Phdr *) (addr + ehdr->e_phoff);
288
289 /* Load each program header */
290 for (i = 0; i < ehdr->e_phnum; ++i) {
Daniel Schwierzeckb0d60a92012-09-16 06:55:06 +0000291 void *dst = (void *)(uintptr_t) phdr->p_paddr;
Mike Frysingerf44a9282010-10-02 15:44:53 -0400292 void *src = (void *) addr + phdr->p_offset;
293 debug("Loading phdr %i to 0x%p (%i bytes)\n",
294 i, dst, phdr->p_filesz);
295 if (phdr->p_filesz)
296 memcpy(dst, src, phdr->p_filesz);
297 if (phdr->p_filesz != phdr->p_memsz)
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000298 memset(dst + phdr->p_filesz, 0x00,
299 phdr->p_memsz - phdr->p_filesz);
Mike Frysingerf44a9282010-10-02 15:44:53 -0400300 flush_cache((unsigned long)dst, phdr->p_filesz);
301 ++phdr;
302 }
303
304 return ehdr->e_entry;
305}
306
307static unsigned long load_elf_image_shdr(unsigned long addr)
wdenk458ded32002-09-20 10:59:08 +0000308{
309 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
310 Elf32_Shdr *shdr; /* Section header structure pointer */
311 unsigned char *strtab = 0; /* String table pointer */
312 unsigned char *image; /* Binary image pointer */
313 int i; /* Loop counter */
314
315 /* -------------------------------------------------- */
316
317 ehdr = (Elf32_Ehdr *) addr;
318
319 /* Find the section header string table for output info */
320 shdr = (Elf32_Shdr *) (addr + ehdr->e_shoff +
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000321 (ehdr->e_shstrndx * sizeof(Elf32_Shdr)));
wdenk458ded32002-09-20 10:59:08 +0000322
323 if (shdr->sh_type == SHT_STRTAB)
324 strtab = (unsigned char *) (addr + shdr->sh_offset);
325
326 /* Load each appropriate section */
327 for (i = 0; i < ehdr->e_shnum; ++i) {
328 shdr = (Elf32_Shdr *) (addr + ehdr->e_shoff +
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000329 (i * sizeof(Elf32_Shdr)));
wdenk458ded32002-09-20 10:59:08 +0000330
331 if (!(shdr->sh_flags & SHF_ALLOC)
332 || shdr->sh_addr == 0 || shdr->sh_size == 0) {
333 continue;
334 }
335
336 if (strtab) {
Niklaus Giger3c972842009-07-23 23:31:58 +0200337 debug("%sing %s @ 0x%08lx (%ld bytes)\n",
wdenk458ded32002-09-20 10:59:08 +0000338 (shdr->sh_type == SHT_NOBITS) ?
339 "Clear" : "Load",
340 &strtab[shdr->sh_name],
341 (unsigned long) shdr->sh_addr,
342 (long) shdr->sh_size);
343 }
344
345 if (shdr->sh_type == SHT_NOBITS) {
Daniel Schwierzeckb0d60a92012-09-16 06:55:06 +0000346 memset((void *)(uintptr_t) shdr->sh_addr, 0,
347 shdr->sh_size);
wdenk458ded32002-09-20 10:59:08 +0000348 } else {
349 image = (unsigned char *) addr + shdr->sh_offset;
Daniel Schwierzeckb0d60a92012-09-16 06:55:06 +0000350 memcpy((void *)(uintptr_t) shdr->sh_addr,
wdenk458ded32002-09-20 10:59:08 +0000351 (const void *) image,
352 shdr->sh_size);
353 }
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000354 flush_cache(shdr->sh_addr, shdr->sh_size);
wdenk458ded32002-09-20 10:59:08 +0000355 }
356
357 return ehdr->e_entry;
358}
359
360/* ====================================================================== */
wdenk0d498392003-07-01 21:06:45 +0000361U_BOOT_CMD(
Mike Frysingerf44a9282010-10-02 15:44:53 -0400362 bootelf, 3, 0, do_bootelf,
Peter Tyser2fb26042009-01-27 18:03:12 -0600363 "Boot from an ELF image in memory",
Mike Frysingerf44a9282010-10-02 15:44:53 -0400364 "[-p|-s] [address]\n"
365 "\t- load ELF image at [address] via program headers (-p)\n"
366 "\t or via section headers (-s)"
wdenk8bde7f72003-06-27 21:31:46 +0000367);
368
wdenk0d498392003-07-01 21:06:45 +0000369U_BOOT_CMD(
370 bootvx, 2, 0, do_bootvx,
Peter Tyser2fb26042009-01-27 18:03:12 -0600371 "Boot vxWorks from an ELF image",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200372 " [address] - load address of vxWorks ELF image."
wdenk8bde7f72003-06-27 21:31:46 +0000373);