blob: ed9625b221fe1d76abf424840e80dc6ab920b0ab [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>
17#include <command.h>
wdenk458ded32002-09-20 10:59:08 +000018#include <elf.h>
Bin Meng53f3afb2015-10-07 20:19:13 -070019#include <net.h>
Niklaus Gigerf662b232008-11-03 22:15:34 +010020#include <vxworks.h>
Bin Meng321e8602015-10-07 20:19:18 -070021#ifdef CONFIG_X86
22#include <asm/e820.h>
Bin Mengf6900e22015-10-07 20:19:19 -070023#include <linux/linkage.h>
Bin Meng321e8602015-10-07 20:19:18 -070024#endif
wdenk458ded32002-09-20 10:59:08 +000025
Bin Meng8c77af62015-10-07 20:19:14 -070026/*
27 * A very simple elf loader, assumes the image is valid, returns the
28 * entry point address.
29 */
30static unsigned long load_elf_image_phdr(unsigned long addr)
31{
32 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
33 Elf32_Phdr *phdr; /* Program header structure pointer */
34 int i;
35
36 ehdr = (Elf32_Ehdr *)addr;
37 phdr = (Elf32_Phdr *)(addr + ehdr->e_phoff);
38
39 /* Load each program header */
40 for (i = 0; i < ehdr->e_phnum; ++i) {
41 void *dst = (void *)(uintptr_t)phdr->p_paddr;
42 void *src = (void *)addr + phdr->p_offset;
43 debug("Loading phdr %i to 0x%p (%i bytes)\n",
44 i, dst, phdr->p_filesz);
45 if (phdr->p_filesz)
46 memcpy(dst, src, phdr->p_filesz);
47 if (phdr->p_filesz != phdr->p_memsz)
48 memset(dst + phdr->p_filesz, 0x00,
49 phdr->p_memsz - phdr->p_filesz);
50 flush_cache((unsigned long)dst, phdr->p_filesz);
51 ++phdr;
52 }
53
54 return ehdr->e_entry;
55}
56
57static unsigned long load_elf_image_shdr(unsigned long addr)
58{
59 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
60 Elf32_Shdr *shdr; /* Section header structure pointer */
61 unsigned char *strtab = 0; /* String table pointer */
62 unsigned char *image; /* Binary image pointer */
63 int i; /* Loop counter */
64
65 ehdr = (Elf32_Ehdr *)addr;
66
67 /* Find the section header string table for output info */
68 shdr = (Elf32_Shdr *)(addr + ehdr->e_shoff +
69 (ehdr->e_shstrndx * sizeof(Elf32_Shdr)));
70
71 if (shdr->sh_type == SHT_STRTAB)
72 strtab = (unsigned char *)(addr + shdr->sh_offset);
73
74 /* Load each appropriate section */
75 for (i = 0; i < ehdr->e_shnum; ++i) {
76 shdr = (Elf32_Shdr *)(addr + ehdr->e_shoff +
77 (i * sizeof(Elf32_Shdr)));
78
79 if (!(shdr->sh_flags & SHF_ALLOC) ||
80 shdr->sh_addr == 0 || shdr->sh_size == 0) {
81 continue;
82 }
83
84 if (strtab) {
85 debug("%sing %s @ 0x%08lx (%ld bytes)\n",
86 (shdr->sh_type == SHT_NOBITS) ? "Clear" : "Load",
87 &strtab[shdr->sh_name],
88 (unsigned long)shdr->sh_addr,
89 (long)shdr->sh_size);
90 }
91
92 if (shdr->sh_type == SHT_NOBITS) {
93 memset((void *)(uintptr_t)shdr->sh_addr, 0,
94 shdr->sh_size);
95 } else {
96 image = (unsigned char *)addr + shdr->sh_offset;
97 memcpy((void *)(uintptr_t)shdr->sh_addr,
98 (const void *)image, shdr->sh_size);
99 }
100 flush_cache(shdr->sh_addr, shdr->sh_size);
101 }
102
103 return ehdr->e_entry;
104}
Mike Frysingere60644a2008-04-13 19:42:18 -0400105
106/* Allow ports to override the default behavior */
Jeroen Hofstee3cc2a742014-10-08 22:57:31 +0200107static unsigned long do_bootelf_exec(ulong (*entry)(int, char * const[]),
Bin Meng53f3afb2015-10-07 20:19:13 -0700108 int argc, char * const argv[])
Mike Frysingerf79507e2008-01-29 18:21:05 -0500109{
Mike Frysingere60644a2008-04-13 19:42:18 -0400110 unsigned long ret;
111
Mike Frysingerf79507e2008-01-29 18:21:05 -0500112 /*
Mike Frysingere60644a2008-04-13 19:42:18 -0400113 * pass address parameter as argv[0] (aka command name),
114 * and all remaining args
115 */
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000116 ret = entry(argc, argv);
Mike Frysingerf79507e2008-01-29 18:21:05 -0500117
Mike Frysingere60644a2008-04-13 19:42:18 -0400118 return ret;
119}
wdenk458ded32002-09-20 10:59:08 +0000120
Bin Meng53f3afb2015-10-07 20:19:13 -0700121/*
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000122 * Determine if a valid ELF image exists at the given memory location.
Bin Meng53f3afb2015-10-07 20:19:13 -0700123 * First look at the ELF header magic field, then make sure that it is
124 * executable.
125 */
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000126int valid_elf_image(unsigned long addr)
127{
Bin Meng53f3afb2015-10-07 20:19:13 -0700128 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000129
Bin Meng53f3afb2015-10-07 20:19:13 -0700130 ehdr = (Elf32_Ehdr *)addr;
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000131
132 if (!IS_ELF(*ehdr)) {
133 printf("## No elf image at address 0x%08lx\n", addr);
134 return 0;
135 }
136
137 if (ehdr->e_type != ET_EXEC) {
138 printf("## Not a 32-bit elf image at address 0x%08lx\n", addr);
139 return 0;
140 }
141
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000142 return 1;
143}
144
Bin Meng53f3afb2015-10-07 20:19:13 -0700145/* Interpreter command to boot an arbitrary ELF image from memory */
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000146int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk458ded32002-09-20 10:59:08 +0000147{
Bin Meng53f3afb2015-10-07 20:19:13 -0700148 unsigned long addr; /* Address of the ELF image */
149 unsigned long rc; /* Return value from user code */
Tom Rini3c95c792017-05-18 17:03:07 -0400150 char *sload = NULL;
Siva Durga Prasad Paladugu3825bfa2015-03-09 12:46:47 +0100151 const char *ep = getenv("autostart");
wdenk458ded32002-09-20 10:59:08 +0000152 int rcode = 0;
153
Tom Rini3c95c792017-05-18 17:03:07 -0400154 /* Consume 'bootelf' */
155 argc--; argv++;
Mike Frysingere6dc29f2010-10-02 15:44:53 -0400156
Tom Rini3c95c792017-05-18 17:03:07 -0400157 /* Check for flag. */
158 if (argc >= 1 && (argv[0][0] == '-' && \
159 (argv[0][1] == 'p' || argv[0][1] == 's'))) {
160 sload = argv[0];
161 /* Consume flag. */
162 argc--; argv++;
163 }
164 /* Check for address. */
165 if (argc >= 1 && strict_strtoul(argv[0], 16, &addr) != -EINVAL) {
166 /* Consume address */
167 argc--; argv++;
168 } else
Mike Frysingere6dc29f2010-10-02 15:44:53 -0400169 addr = load_addr;
wdenk458ded32002-09-20 10:59:08 +0000170
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000171 if (!valid_elf_image(addr))
wdenk458ded32002-09-20 10:59:08 +0000172 return 1;
173
Mike Frysingere6dc29f2010-10-02 15:44:53 -0400174 if (sload && sload[1] == 'p')
175 addr = load_elf_image_phdr(addr);
176 else
177 addr = load_elf_image_shdr(addr);
wdenk458ded32002-09-20 10:59:08 +0000178
Siva Durga Prasad Paladugu3825bfa2015-03-09 12:46:47 +0100179 if (ep && !strcmp(ep, "no"))
180 return rcode;
181
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000182 printf("## Starting application at 0x%08lx ...\n", addr);
wdenk458ded32002-09-20 10:59:08 +0000183
wdenk458ded32002-09-20 10:59:08 +0000184 /*
185 * pass address parameter as argv[0] (aka command name),
186 * and all remaining args
187 */
Tom Rini3c95c792017-05-18 17:03:07 -0400188 rc = do_bootelf_exec((void *)addr, argc, argv);
wdenk458ded32002-09-20 10:59:08 +0000189 if (rc != 0)
190 rcode = 1;
191
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000192 printf("## Application terminated, rc = 0x%lx\n", rc);
Bin Meng53f3afb2015-10-07 20:19:13 -0700193
wdenk458ded32002-09-20 10:59:08 +0000194 return rcode;
195}
196
Bin Meng53f3afb2015-10-07 20:19:13 -0700197/*
wdenk458ded32002-09-20 10:59:08 +0000198 * Interpreter command to boot VxWorks from a memory image. The image can
199 * be either an ELF image or a raw binary. Will attempt to setup the
200 * bootline and other parameters correctly.
Bin Meng53f3afb2015-10-07 20:19:13 -0700201 */
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000202int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk458ded32002-09-20 10:59:08 +0000203{
Bin Meng53f3afb2015-10-07 20:19:13 -0700204 unsigned long addr; /* Address of image */
205 unsigned long bootaddr; /* Address to put the bootline */
206 char *bootline; /* Text of the bootline */
207 char *tmp; /* Temporary char pointer */
208 char build_buf[128]; /* Buffer for building the bootline */
Bin Meng0401c862015-10-07 20:19:15 -0700209 int ptr = 0;
Bin Meng321e8602015-10-07 20:19:18 -0700210#ifdef CONFIG_X86
211 struct e820info *info;
212 struct e820entry *data;
213#endif
wdenk458ded32002-09-20 10:59:08 +0000214
Bin Meng53f3afb2015-10-07 20:19:13 -0700215 /*
wdenk458ded32002-09-20 10:59:08 +0000216 * Check the loadaddr variable.
217 * If we don't know where the image is then we're done.
218 */
Stany MARCELe5deaf582013-11-27 14:48:43 +0100219 if (argc < 2)
Stefan Roese00487782006-11-29 12:53:15 +0100220 addr = load_addr;
221 else
Stany MARCELe5deaf582013-11-27 14:48:43 +0100222 addr = simple_strtoul(argv[1], NULL, 16);
wdenk458ded32002-09-20 10:59:08 +0000223
Jon Loeliger54324d02007-07-08 17:51:39 -0500224#if defined(CONFIG_CMD_NET)
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000225 /*
Bin Meng53f3afb2015-10-07 20:19:13 -0700226 * Check to see if we need to tftp the image ourselves
227 * before starting
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000228 */
Stany MARCELe5deaf582013-11-27 14:48:43 +0100229 if ((argc == 2) && (strcmp(argv[1], "tftp") == 0)) {
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500230 if (net_loop(TFTPGET) <= 0)
wdenk458ded32002-09-20 10:59:08 +0000231 return 1;
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000232 printf("Automatic boot of VxWorks image at address 0x%08lx ...\n",
233 addr);
wdenk458ded32002-09-20 10:59:08 +0000234 }
235#endif
236
Bin Meng53f3afb2015-10-07 20:19:13 -0700237 /*
238 * This should equate to
239 * NV_RAM_ADRS + NV_BOOT_OFFSET + NV_ENET_OFFSET
wdenk458ded32002-09-20 10:59:08 +0000240 * from the VxWorks BSP header files.
241 * This will vary from board to board
242 */
Stefan Roese326c9712005-08-01 16:41:48 +0200243#if defined(CONFIG_WALNUT)
Bin Meng53f3afb2015-10-07 20:19:13 -0700244 tmp = (char *)CONFIG_SYS_NVRAM_BASE_ADDR + 0x500;
Heiko Schocher50219e62009-03-26 07:33:59 +0100245 eth_getenv_enetaddr("ethaddr", (uchar *)build_buf);
Mike Frysinger8bcee042009-02-11 18:51:43 -0500246 memcpy(tmp, &build_buf[3], 3);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200247#elif defined(CONFIG_SYS_VXWORKS_MAC_PTR)
Bin Meng53f3afb2015-10-07 20:19:13 -0700248 tmp = (char *)CONFIG_SYS_VXWORKS_MAC_PTR;
Heiko Schocher50219e62009-03-26 07:33:59 +0100249 eth_getenv_enetaddr("ethaddr", (uchar *)build_buf);
Mike Frysinger8bcee042009-02-11 18:51:43 -0500250 memcpy(tmp, build_buf, 6);
wdenk458ded32002-09-20 10:59:08 +0000251#else
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000252 puts("## Ethernet MAC address not copied to NV RAM\n");
wdenk458ded32002-09-20 10:59:08 +0000253#endif
254
wdenk57b2d802003-06-27 21:31:46 +0000255 /*
256 * Use bootaddr to find the location in memory that VxWorks
Bin Mengfb694b92015-10-07 20:19:17 -0700257 * will look for the bootline string. The default value is
258 * (LOCAL_MEM_LOCAL_ADRS + BOOT_LINE_OFFSET) as defined by
259 * VxWorks BSP. For example, on PowerPC it defaults to 0x4200.
wdenk458ded32002-09-20 10:59:08 +0000260 */
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000261 tmp = getenv("bootaddr");
Bin Mengfb694b92015-10-07 20:19:17 -0700262 if (!tmp) {
263 printf("## VxWorks bootline address not specified\n");
264 } else {
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000265 bootaddr = simple_strtoul(tmp, NULL, 16);
wdenk458ded32002-09-20 10:59:08 +0000266
Bin Mengfb694b92015-10-07 20:19:17 -0700267 /*
268 * Check to see if the bootline is defined in the 'bootargs'
269 * parameter. If it is not defined, we may be able to
270 * construct the info.
271 */
272 bootline = getenv("bootargs");
273 if (bootline) {
274 memcpy((void *)bootaddr, bootline,
275 max(strlen(bootline), (size_t)255));
276 flush_cache(bootaddr, max(strlen(bootline),
277 (size_t)255));
278 } else {
279 tmp = getenv("bootdev");
Ben Whitten34fd6c92015-12-30 13:05:58 +0000280 if (tmp) {
281 strcpy(build_buf, tmp);
282 ptr = strlen(tmp);
283 } else
Bin Mengfb694b92015-10-07 20:19:17 -0700284 printf("## VxWorks boot device not specified\n");
wdenk458ded32002-09-20 10:59:08 +0000285
Bin Mengfb694b92015-10-07 20:19:17 -0700286 tmp = getenv("bootfile");
287 if (tmp)
288 ptr += sprintf(build_buf + ptr,
289 "host:%s ", tmp);
290 else
291 ptr += sprintf(build_buf + ptr,
292 "host:vxWorks ");
293
294 /*
295 * The following parameters are only needed if 'bootdev'
296 * is an ethernet device, otherwise they are optional.
297 */
298 tmp = getenv("ipaddr");
Bin Mengbf0ba252015-10-07 20:19:16 -0700299 if (tmp) {
Bin Mengfb694b92015-10-07 20:19:17 -0700300 ptr += sprintf(build_buf + ptr, "e=%s", tmp);
301 tmp = getenv("netmask");
302 if (tmp) {
303 u32 mask = getenv_ip("netmask").s_addr;
304 ptr += sprintf(build_buf + ptr,
305 ":%08x ", ntohl(mask));
306 } else {
307 ptr += sprintf(build_buf + ptr, " ");
308 }
Bin Mengbf0ba252015-10-07 20:19:16 -0700309 }
wdenk458ded32002-09-20 10:59:08 +0000310
Bin Mengfb694b92015-10-07 20:19:17 -0700311 tmp = getenv("serverip");
312 if (tmp)
313 ptr += sprintf(build_buf + ptr, "h=%s ", tmp);
wdenk458ded32002-09-20 10:59:08 +0000314
Bin Mengfb694b92015-10-07 20:19:17 -0700315 tmp = getenv("gatewayip");
316 if (tmp)
317 ptr += sprintf(build_buf + ptr, "g=%s ", tmp);
Bin Mengbf0ba252015-10-07 20:19:16 -0700318
Bin Mengfb694b92015-10-07 20:19:17 -0700319 tmp = getenv("hostname");
320 if (tmp)
321 ptr += sprintf(build_buf + ptr, "tn=%s ", tmp);
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000322
Bin Mengfb694b92015-10-07 20:19:17 -0700323 tmp = getenv("othbootargs");
Ben Whitten34fd6c92015-12-30 13:05:58 +0000324 if (tmp) {
325 strcpy(build_buf + ptr, tmp);
326 ptr += strlen(tmp);
327 }
Niklaus Gigerf662b232008-11-03 22:15:34 +0100328
Bin Mengfb694b92015-10-07 20:19:17 -0700329 memcpy((void *)bootaddr, build_buf,
330 max(strlen(build_buf), (size_t)255));
331 flush_cache(bootaddr, max(strlen(build_buf),
332 (size_t)255));
333 }
334
335 printf("## Using bootline (@ 0x%lx): %s\n", bootaddr,
336 (char *)bootaddr);
wdenk458ded32002-09-20 10:59:08 +0000337 }
338
Bin Meng321e8602015-10-07 20:19:18 -0700339#ifdef CONFIG_X86
340 /*
341 * Since E820 information is critical to the kernel, if we don't
342 * specify these in the environments, use a default one.
343 */
344 tmp = getenv("e820data");
345 if (tmp)
346 data = (struct e820entry *)simple_strtoul(tmp, NULL, 16);
347 else
348 data = (struct e820entry *)VXWORKS_E820_DATA_ADDR;
349 tmp = getenv("e820info");
350 if (tmp)
351 info = (struct e820info *)simple_strtoul(tmp, NULL, 16);
352 else
353 info = (struct e820info *)VXWORKS_E820_INFO_ADDR;
354
355 memset(info, 0, sizeof(struct e820info));
356 info->sign = E820_SIGNATURE;
357 info->entries = install_e820_map(E820MAX, data);
358 info->addr = (info->entries - 1) * sizeof(struct e820entry) +
359 VXWORKS_E820_DATA_ADDR;
360#endif
361
wdenk57b2d802003-06-27 21:31:46 +0000362 /*
363 * If the data at the load address is an elf image, then
364 * treat it like an elf image. Otherwise, assume that it is a
Bin Meng53f3afb2015-10-07 20:19:13 -0700365 * binary image.
wdenk458ded32002-09-20 10:59:08 +0000366 */
Bin Meng53f3afb2015-10-07 20:19:13 -0700367 if (valid_elf_image(addr))
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000368 addr = load_elf_image_shdr(addr);
Bin Meng53f3afb2015-10-07 20:19:13 -0700369 else
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000370 puts("## Not an ELF image, assuming binary\n");
wdenk458ded32002-09-20 10:59:08 +0000371
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000372 printf("## Starting vxWorks at 0x%08lx ...\n", addr);
wdenk458ded32002-09-20 10:59:08 +0000373
Reinhard Arlt4fa117c2011-11-18 09:06:52 +0000374 dcache_disable();
Bin Mengf6900e22015-10-07 20:19:19 -0700375#ifdef CONFIG_X86
376 /* VxWorks on x86 uses stack to pass parameters */
377 ((asmlinkage void (*)(int))addr)(0);
378#else
Bin Meng53f3afb2015-10-07 20:19:13 -0700379 ((void (*)(int))addr)(0);
Bin Mengf6900e22015-10-07 20:19:19 -0700380#endif
wdenk458ded32002-09-20 10:59:08 +0000381
Daniel Schwierzeckfa87af32012-09-16 06:55:05 +0000382 puts("## vxWorks terminated\n");
Bin Meng53f3afb2015-10-07 20:19:13 -0700383
wdenk458ded32002-09-20 10:59:08 +0000384 return 1;
385}
386
wdenkf287a242003-07-01 21:06:45 +0000387U_BOOT_CMD(
Tom Rini3c95c792017-05-18 17:03:07 -0400388 bootelf, CONFIG_SYS_MAXARGS, 0, do_bootelf,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600389 "Boot from an ELF image in memory",
Mike Frysingere6dc29f2010-10-02 15:44:53 -0400390 "[-p|-s] [address]\n"
391 "\t- load ELF image at [address] via program headers (-p)\n"
392 "\t or via section headers (-s)"
wdenk57b2d802003-06-27 21:31:46 +0000393);
394
wdenkf287a242003-07-01 21:06:45 +0000395U_BOOT_CMD(
Bin Meng53f3afb2015-10-07 20:19:13 -0700396 bootvx, 2, 0, do_bootvx,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600397 "Boot vxWorks from an ELF image",
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200398 " [address] - load address of vxWorks ELF image."
wdenk57b2d802003-06-27 21:31:46 +0000399);