blob: c8e6e7424c647034015de3fa7bd64c45c5de5803 [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>
Alex Kiernan9925f1d2018-04-01 09:22:38 +000019#include <environment.h>
Bin Mengebca3df2015-10-07 20:19:13 -070020#include <net.h>
Niklaus Giger29a4c242008-11-03 22:15:34 +010021#include <vxworks.h>
Bin Mengb90ff0f2015-10-07 20:19:18 -070022#ifdef CONFIG_X86
Bin Meng447ae4f2018-04-11 22:02:19 -070023#include <vbe.h>
Bin Mengb90ff0f2015-10-07 20:19:18 -070024#include <asm/e820.h>
Bin Meng9aa12802015-10-07 20:19:19 -070025#include <linux/linkage.h>
Bin Mengb90ff0f2015-10-07 20:19:18 -070026#endif
wdenk458ded32002-09-20 10:59:08 +000027
Bin Meng9dffa522015-10-07 20:19:14 -070028/*
Bin Meng839c4e92018-04-11 22:02:14 -070029 * A very simple ELF64 loader, assumes the image is valid, returns the
Bin Meng9dffa522015-10-07 20:19:14 -070030 * entry point address.
Bin Meng839c4e92018-04-11 22:02:14 -070031 *
32 * Note if U-Boot is 32-bit, the loader assumes the to segment's
33 * physical address and size is within the lower 32-bit address space.
34 */
35static unsigned long load_elf64_image_phdr(unsigned long addr)
36{
37 Elf64_Ehdr *ehdr; /* Elf header structure pointer */
38 Elf64_Phdr *phdr; /* Program header structure pointer */
39 int i;
40
41 ehdr = (Elf64_Ehdr *)addr;
42 phdr = (Elf64_Phdr *)(addr + (ulong)ehdr->e_phoff);
43
44 /* Load each program header */
45 for (i = 0; i < ehdr->e_phnum; ++i) {
46 void *dst = (void *)(ulong)phdr->p_paddr;
47 void *src = (void *)addr + phdr->p_offset;
48
49 debug("Loading phdr %i to 0x%p (%lu bytes)\n",
50 i, dst, (ulong)phdr->p_filesz);
51 if (phdr->p_filesz)
52 memcpy(dst, src, phdr->p_filesz);
53 if (phdr->p_filesz != phdr->p_memsz)
54 memset(dst + phdr->p_filesz, 0x00,
55 phdr->p_memsz - phdr->p_filesz);
56 flush_cache((unsigned long)dst, phdr->p_filesz);
57 ++phdr;
58 }
59
Rob Bracero2846ea82018-07-31 22:57:42 -040060 if (ehdr->e_machine == EM_PPC64 && (ehdr->e_flags &
61 EF_PPC64_ELFV1_ABI)) {
62 /*
63 * For the 64-bit PowerPC ELF V1 ABI, e_entry is a function
64 * descriptor pointer with the first double word being the
65 * address of the entry point of the function.
66 */
67 uintptr_t addr = ehdr->e_entry;
68
69 return *(Elf64_Addr *)addr;
70 }
71
72 return ehdr->e_entry;
73}
74
75static unsigned long load_elf64_image_shdr(unsigned long addr)
76{
77 Elf64_Ehdr *ehdr; /* Elf header structure pointer */
78 Elf64_Shdr *shdr; /* Section header structure pointer */
79 unsigned char *strtab = 0; /* String table pointer */
80 unsigned char *image; /* Binary image pointer */
81 int i; /* Loop counter */
82
83 ehdr = (Elf64_Ehdr *)addr;
84
85 /* Find the section header string table for output info */
86 shdr = (Elf64_Shdr *)(addr + (ulong)ehdr->e_shoff +
87 (ehdr->e_shstrndx * sizeof(Elf64_Shdr)));
88
89 if (shdr->sh_type == SHT_STRTAB)
90 strtab = (unsigned char *)(addr + (ulong)shdr->sh_offset);
91
92 /* Load each appropriate section */
93 for (i = 0; i < ehdr->e_shnum; ++i) {
94 shdr = (Elf64_Shdr *)(addr + (ulong)ehdr->e_shoff +
95 (i * sizeof(Elf64_Shdr)));
96
97 if (!(shdr->sh_flags & SHF_ALLOC) ||
98 shdr->sh_addr == 0 || shdr->sh_size == 0) {
99 continue;
100 }
101
102 if (strtab) {
103 debug("%sing %s @ 0x%08lx (%ld bytes)\n",
104 (shdr->sh_type == SHT_NOBITS) ? "Clear" : "Load",
105 &strtab[shdr->sh_name],
106 (unsigned long)shdr->sh_addr,
107 (long)shdr->sh_size);
108 }
109
110 if (shdr->sh_type == SHT_NOBITS) {
111 memset((void *)(uintptr_t)shdr->sh_addr, 0,
112 shdr->sh_size);
113 } else {
114 image = (unsigned char *)addr + (ulong)shdr->sh_offset;
115 memcpy((void *)(uintptr_t)shdr->sh_addr,
116 (const void *)image, shdr->sh_size);
117 }
Neil Stainton8744d6c2018-08-20 15:46:19 +0000118 flush_cache(rounddown(shdr->sh_addr, ARCH_DMA_MINALIGN),
119 roundup((shdr->sh_addr + shdr->sh_size),
120 ARCH_DMA_MINALIGN) -
121 rounddown(shdr->sh_addr, ARCH_DMA_MINALIGN));
Rob Bracero2846ea82018-07-31 22:57:42 -0400122 }
123
124 if (ehdr->e_machine == EM_PPC64 && (ehdr->e_flags &
125 EF_PPC64_ELFV1_ABI)) {
126 /*
127 * For the 64-bit PowerPC ELF V1 ABI, e_entry is a function
128 * descriptor pointer with the first double word being the
129 * address of the entry point of the function.
130 */
131 uintptr_t addr = ehdr->e_entry;
132
133 return *(Elf64_Addr *)addr;
134 }
135
Bin Meng839c4e92018-04-11 22:02:14 -0700136 return ehdr->e_entry;
137}
138
139/*
140 * A very simple ELF loader, assumes the image is valid, returns the
141 * entry point address.
142 *
143 * The loader firstly reads the EFI class to see if it's a 64-bit image.
144 * If yes, call the ELF64 loader. Otherwise continue with the ELF32 loader.
Bin Meng9dffa522015-10-07 20:19:14 -0700145 */
146static unsigned long load_elf_image_phdr(unsigned long addr)
147{
148 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
149 Elf32_Phdr *phdr; /* Program header structure pointer */
150 int i;
151
152 ehdr = (Elf32_Ehdr *)addr;
Bin Meng839c4e92018-04-11 22:02:14 -0700153 if (ehdr->e_ident[EI_CLASS] == ELFCLASS64)
154 return load_elf64_image_phdr(addr);
155
Bin Meng9dffa522015-10-07 20:19:14 -0700156 phdr = (Elf32_Phdr *)(addr + ehdr->e_phoff);
157
158 /* Load each program header */
159 for (i = 0; i < ehdr->e_phnum; ++i) {
160 void *dst = (void *)(uintptr_t)phdr->p_paddr;
161 void *src = (void *)addr + phdr->p_offset;
Bin Meng839c4e92018-04-11 22:02:14 -0700162
Bin Meng9dffa522015-10-07 20:19:14 -0700163 debug("Loading phdr %i to 0x%p (%i bytes)\n",
164 i, dst, phdr->p_filesz);
165 if (phdr->p_filesz)
166 memcpy(dst, src, phdr->p_filesz);
167 if (phdr->p_filesz != phdr->p_memsz)
168 memset(dst + phdr->p_filesz, 0x00,
169 phdr->p_memsz - phdr->p_filesz);
170 flush_cache((unsigned long)dst, phdr->p_filesz);
171 ++phdr;
172 }
173
174 return ehdr->e_entry;
175}
176
177static unsigned long load_elf_image_shdr(unsigned long addr)
178{
179 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
180 Elf32_Shdr *shdr; /* Section header structure pointer */
181 unsigned char *strtab = 0; /* String table pointer */
182 unsigned char *image; /* Binary image pointer */
183 int i; /* Loop counter */
184
185 ehdr = (Elf32_Ehdr *)addr;
Rob Bracero2846ea82018-07-31 22:57:42 -0400186 if (ehdr->e_ident[EI_CLASS] == ELFCLASS64)
187 return load_elf64_image_shdr(addr);
Bin Meng9dffa522015-10-07 20:19:14 -0700188
189 /* Find the section header string table for output info */
190 shdr = (Elf32_Shdr *)(addr + ehdr->e_shoff +
191 (ehdr->e_shstrndx * sizeof(Elf32_Shdr)));
192
193 if (shdr->sh_type == SHT_STRTAB)
194 strtab = (unsigned char *)(addr + shdr->sh_offset);
195
196 /* Load each appropriate section */
197 for (i = 0; i < ehdr->e_shnum; ++i) {
198 shdr = (Elf32_Shdr *)(addr + ehdr->e_shoff +
199 (i * sizeof(Elf32_Shdr)));
200
201 if (!(shdr->sh_flags & SHF_ALLOC) ||
202 shdr->sh_addr == 0 || shdr->sh_size == 0) {
203 continue;
204 }
205
206 if (strtab) {
207 debug("%sing %s @ 0x%08lx (%ld bytes)\n",
208 (shdr->sh_type == SHT_NOBITS) ? "Clear" : "Load",
209 &strtab[shdr->sh_name],
210 (unsigned long)shdr->sh_addr,
211 (long)shdr->sh_size);
212 }
213
214 if (shdr->sh_type == SHT_NOBITS) {
215 memset((void *)(uintptr_t)shdr->sh_addr, 0,
216 shdr->sh_size);
217 } else {
218 image = (unsigned char *)addr + shdr->sh_offset;
219 memcpy((void *)(uintptr_t)shdr->sh_addr,
220 (const void *)image, shdr->sh_size);
221 }
222 flush_cache(shdr->sh_addr, shdr->sh_size);
223 }
224
225 return ehdr->e_entry;
226}
Mike Frysinger017e9b72008-04-13 19:42:18 -0400227
228/* Allow ports to override the default behavior */
Jeroen Hofstee553d8c32014-10-08 22:57:31 +0200229static unsigned long do_bootelf_exec(ulong (*entry)(int, char * const[]),
Bin Mengebca3df2015-10-07 20:19:13 -0700230 int argc, char * const argv[])
Mike Frysinger1f1d88d2008-01-29 18:21:05 -0500231{
Mike Frysinger017e9b72008-04-13 19:42:18 -0400232 unsigned long ret;
233
Mike Frysinger1f1d88d2008-01-29 18:21:05 -0500234 /*
Mike Frysinger017e9b72008-04-13 19:42:18 -0400235 * pass address parameter as argv[0] (aka command name),
236 * and all remaining args
237 */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000238 ret = entry(argc, argv);
Mike Frysinger1f1d88d2008-01-29 18:21:05 -0500239
Mike Frysinger017e9b72008-04-13 19:42:18 -0400240 return ret;
241}
wdenk458ded32002-09-20 10:59:08 +0000242
Bin Mengebca3df2015-10-07 20:19:13 -0700243/*
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000244 * Determine if a valid ELF image exists at the given memory location.
Bin Mengebca3df2015-10-07 20:19:13 -0700245 * First look at the ELF header magic field, then make sure that it is
246 * executable.
247 */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000248int valid_elf_image(unsigned long addr)
249{
Bin Mengebca3df2015-10-07 20:19:13 -0700250 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000251
Bin Mengebca3df2015-10-07 20:19:13 -0700252 ehdr = (Elf32_Ehdr *)addr;
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000253
254 if (!IS_ELF(*ehdr)) {
255 printf("## No elf image at address 0x%08lx\n", addr);
256 return 0;
257 }
258
259 if (ehdr->e_type != ET_EXEC) {
260 printf("## Not a 32-bit elf image at address 0x%08lx\n", addr);
261 return 0;
262 }
263
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000264 return 1;
265}
266
Bin Mengebca3df2015-10-07 20:19:13 -0700267/* Interpreter command to boot an arbitrary ELF image from memory */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000268int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk458ded32002-09-20 10:59:08 +0000269{
Bin Mengebca3df2015-10-07 20:19:13 -0700270 unsigned long addr; /* Address of the ELF image */
271 unsigned long rc; /* Return value from user code */
Tom Rinibe1b8672017-05-18 17:03:07 -0400272 char *sload = NULL;
Simon Glass00caae62017-08-03 12:22:12 -0600273 const char *ep = env_get("autostart");
wdenk458ded32002-09-20 10:59:08 +0000274 int rcode = 0;
275
Tom Rinibe1b8672017-05-18 17:03:07 -0400276 /* Consume 'bootelf' */
277 argc--; argv++;
Mike Frysingerf44a9282010-10-02 15:44:53 -0400278
Tom Rinibe1b8672017-05-18 17:03:07 -0400279 /* Check for flag. */
280 if (argc >= 1 && (argv[0][0] == '-' && \
281 (argv[0][1] == 'p' || argv[0][1] == 's'))) {
282 sload = argv[0];
283 /* Consume flag. */
284 argc--; argv++;
285 }
286 /* Check for address. */
287 if (argc >= 1 && strict_strtoul(argv[0], 16, &addr) != -EINVAL) {
288 /* Consume address */
289 argc--; argv++;
290 } else
Mike Frysingerf44a9282010-10-02 15:44:53 -0400291 addr = load_addr;
wdenk458ded32002-09-20 10:59:08 +0000292
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000293 if (!valid_elf_image(addr))
wdenk458ded32002-09-20 10:59:08 +0000294 return 1;
295
Mike Frysingerf44a9282010-10-02 15:44:53 -0400296 if (sload && sload[1] == 'p')
297 addr = load_elf_image_phdr(addr);
298 else
299 addr = load_elf_image_shdr(addr);
wdenk458ded32002-09-20 10:59:08 +0000300
Siva Durga Prasad Paladugu44c8fd32015-03-09 12:46:47 +0100301 if (ep && !strcmp(ep, "no"))
302 return rcode;
303
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000304 printf("## Starting application at 0x%08lx ...\n", addr);
wdenk458ded32002-09-20 10:59:08 +0000305
wdenk458ded32002-09-20 10:59:08 +0000306 /*
307 * pass address parameter as argv[0] (aka command name),
308 * and all remaining args
309 */
Tom Rinibe1b8672017-05-18 17:03:07 -0400310 rc = do_bootelf_exec((void *)addr, argc, argv);
wdenk458ded32002-09-20 10:59:08 +0000311 if (rc != 0)
312 rcode = 1;
313
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000314 printf("## Application terminated, rc = 0x%lx\n", rc);
Bin Mengebca3df2015-10-07 20:19:13 -0700315
wdenk458ded32002-09-20 10:59:08 +0000316 return rcode;
317}
318
Bin Mengebca3df2015-10-07 20:19:13 -0700319/*
wdenk458ded32002-09-20 10:59:08 +0000320 * Interpreter command to boot VxWorks from a memory image. The image can
321 * be either an ELF image or a raw binary. Will attempt to setup the
322 * bootline and other parameters correctly.
Bin Mengebca3df2015-10-07 20:19:13 -0700323 */
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000324int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk458ded32002-09-20 10:59:08 +0000325{
Bin Mengebca3df2015-10-07 20:19:13 -0700326 unsigned long addr; /* Address of image */
Bin Meng79c584e2018-04-11 22:02:22 -0700327 unsigned long bootaddr = 0; /* Address to put the bootline */
Bin Mengebca3df2015-10-07 20:19:13 -0700328 char *bootline; /* Text of the bootline */
329 char *tmp; /* Temporary char pointer */
330 char build_buf[128]; /* Buffer for building the bootline */
Bin Meng7f0c3c52015-10-07 20:19:15 -0700331 int ptr = 0;
Bin Mengb90ff0f2015-10-07 20:19:18 -0700332#ifdef CONFIG_X86
Bin Meng2902be82018-04-11 22:02:07 -0700333 ulong base;
Bin Mengfa5e91f2018-04-11 22:02:09 -0700334 struct e820_info *info;
Bin Meng45519922018-04-11 22:02:11 -0700335 struct e820_entry *data;
Bin Meng447ae4f2018-04-11 22:02:19 -0700336 struct efi_gop_info *gop;
337 struct vesa_mode_info *vesa = &mode_info.vesa;
Bin Mengb90ff0f2015-10-07 20:19:18 -0700338#endif
wdenk458ded32002-09-20 10:59:08 +0000339
Bin Mengebca3df2015-10-07 20:19:13 -0700340 /*
wdenk458ded32002-09-20 10:59:08 +0000341 * Check the loadaddr variable.
342 * If we don't know where the image is then we're done.
343 */
Stany MARCEL07a1a0c2013-11-27 14:48:43 +0100344 if (argc < 2)
Stefan Roese1bdd4682006-11-29 12:53:15 +0100345 addr = load_addr;
346 else
Stany MARCEL07a1a0c2013-11-27 14:48:43 +0100347 addr = simple_strtoul(argv[1], NULL, 16);
wdenk458ded32002-09-20 10:59:08 +0000348
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500349#if defined(CONFIG_CMD_NET)
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000350 /*
Bin Mengebca3df2015-10-07 20:19:13 -0700351 * Check to see if we need to tftp the image ourselves
352 * before starting
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000353 */
Stany MARCEL07a1a0c2013-11-27 14:48:43 +0100354 if ((argc == 2) && (strcmp(argv[1], "tftp") == 0)) {
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500355 if (net_loop(TFTPGET) <= 0)
wdenk458ded32002-09-20 10:59:08 +0000356 return 1;
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000357 printf("Automatic boot of VxWorks image at address 0x%08lx ...\n",
358 addr);
wdenk458ded32002-09-20 10:59:08 +0000359 }
360#endif
361
Bin Mengebca3df2015-10-07 20:19:13 -0700362 /*
363 * This should equate to
364 * NV_RAM_ADRS + NV_BOOT_OFFSET + NV_ENET_OFFSET
wdenk458ded32002-09-20 10:59:08 +0000365 * from the VxWorks BSP header files.
366 * This will vary from board to board
367 */
Tuomas Tynkkynen89969752018-01-21 18:16:42 +0200368#if defined(CONFIG_SYS_VXWORKS_MAC_PTR)
Bin Mengebca3df2015-10-07 20:19:13 -0700369 tmp = (char *)CONFIG_SYS_VXWORKS_MAC_PTR;
Simon Glass35affd72017-08-03 12:22:14 -0600370 eth_env_get_enetaddr("ethaddr", (uchar *)build_buf);
Mike Frysinger62c93d92009-02-11 18:51:43 -0500371 memcpy(tmp, build_buf, 6);
wdenk458ded32002-09-20 10:59:08 +0000372#else
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000373 puts("## Ethernet MAC address not copied to NV RAM\n");
wdenk458ded32002-09-20 10:59:08 +0000374#endif
375
Bin Meng79c584e2018-04-11 22:02:22 -0700376#ifdef CONFIG_X86
377 /*
378 * Get VxWorks's physical memory base address from environment,
379 * if we don't specify it in the environment, use a default one.
380 */
381 base = env_get_hex("vx_phys_mem_base", VXWORKS_PHYS_MEM_BASE);
382 data = (struct e820_entry *)(base + E820_DATA_OFFSET);
383 info = (struct e820_info *)(base + E820_INFO_OFFSET);
384
385 memset(info, 0, sizeof(struct e820_info));
386 info->sign = E820_SIGNATURE;
387 info->entries = install_e820_map(E820MAX, data);
388 info->addr = (info->entries - 1) * sizeof(struct e820_entry) +
389 E820_DATA_OFFSET;
390
391 /*
392 * Explicitly clear the bootloader image size otherwise if memory
393 * at this offset happens to contain some garbage data, the final
394 * available memory size for the kernel is insane.
395 */
396 *(u32 *)(base + BOOT_IMAGE_SIZE_OFFSET) = 0;
397
398 /*
399 * Prepare compatible framebuffer information block.
400 * The VESA mode has to be 32-bit RGBA.
401 */
402 if (vesa->x_resolution && vesa->y_resolution) {
403 gop = (struct efi_gop_info *)(base + EFI_GOP_INFO_OFFSET);
404 gop->magic = EFI_GOP_INFO_MAGIC;
405 gop->info.version = 0;
406 gop->info.width = vesa->x_resolution;
407 gop->info.height = vesa->y_resolution;
408 gop->info.pixel_format = EFI_GOT_RGBA8;
409 gop->info.pixels_per_scanline = vesa->bytes_per_scanline / 4;
410 gop->fb_base = vesa->phys_base_ptr;
411 gop->fb_size = vesa->bytes_per_scanline * vesa->y_resolution;
412 }
413#endif
414
wdenk8bde7f72003-06-27 21:31:46 +0000415 /*
416 * Use bootaddr to find the location in memory that VxWorks
Bin Meng9e98b7e2015-10-07 20:19:17 -0700417 * will look for the bootline string. The default value is
418 * (LOCAL_MEM_LOCAL_ADRS + BOOT_LINE_OFFSET) as defined by
419 * VxWorks BSP. For example, on PowerPC it defaults to 0x4200.
wdenk458ded32002-09-20 10:59:08 +0000420 */
Simon Glass00caae62017-08-03 12:22:12 -0600421 tmp = env_get("bootaddr");
Bin Meng9e98b7e2015-10-07 20:19:17 -0700422 if (!tmp) {
Bin Meng79c584e2018-04-11 22:02:22 -0700423#ifdef CONFIG_X86
424 bootaddr = base + X86_BOOT_LINE_OFFSET;
425#else
Bin Meng9e98b7e2015-10-07 20:19:17 -0700426 printf("## VxWorks bootline address not specified\n");
Bin Mengced71a22018-04-11 22:02:21 -0700427 return 1;
Bin Meng79c584e2018-04-11 22:02:22 -0700428#endif
Bin Mengced71a22018-04-11 22:02:21 -0700429 }
wdenk458ded32002-09-20 10:59:08 +0000430
Bin Meng79c584e2018-04-11 22:02:22 -0700431 if (!bootaddr)
432 bootaddr = simple_strtoul(tmp, NULL, 16);
wdenk458ded32002-09-20 10:59:08 +0000433
Bin Mengced71a22018-04-11 22:02:21 -0700434 /*
435 * Check to see if the bootline is defined in the 'bootargs' parameter.
436 * If it is not defined, we may be able to construct the info.
437 */
438 bootline = env_get("bootargs");
439 if (!bootline) {
440 tmp = env_get("bootdev");
441 if (tmp) {
442 strcpy(build_buf, tmp);
443 ptr = strlen(tmp);
444 } else {
445 printf("## VxWorks boot device not specified\n");
Bin Menga4092db2015-10-07 20:19:16 -0700446 }
Niklaus Giger29a4c242008-11-03 22:15:34 +0100447
Bin Mengced71a22018-04-11 22:02:21 -0700448 tmp = env_get("bootfile");
449 if (tmp)
450 ptr += sprintf(build_buf + ptr, "host:%s ", tmp);
451 else
452 ptr += sprintf(build_buf + ptr, "host:vxWorks ");
453
454 /*
455 * The following parameters are only needed if 'bootdev'
456 * is an ethernet device, otherwise they are optional.
457 */
458 tmp = env_get("ipaddr");
459 if (tmp) {
460 ptr += sprintf(build_buf + ptr, "e=%s", tmp);
461 tmp = env_get("netmask");
462 if (tmp) {
463 u32 mask = env_get_ip("netmask").s_addr;
464 ptr += sprintf(build_buf + ptr,
465 ":%08x ", ntohl(mask));
466 } else {
467 ptr += sprintf(build_buf + ptr, " ");
468 }
469 }
470
471 tmp = env_get("serverip");
472 if (tmp)
473 ptr += sprintf(build_buf + ptr, "h=%s ", tmp);
474
475 tmp = env_get("gatewayip");
476 if (tmp)
477 ptr += sprintf(build_buf + ptr, "g=%s ", tmp);
478
479 tmp = env_get("hostname");
480 if (tmp)
481 ptr += sprintf(build_buf + ptr, "tn=%s ", tmp);
482
483 tmp = env_get("othbootargs");
484 if (tmp) {
485 strcpy(build_buf + ptr, tmp);
486 ptr += strlen(tmp);
487 }
488
489 bootline = build_buf;
wdenk458ded32002-09-20 10:59:08 +0000490 }
491
Bin Mengced71a22018-04-11 22:02:21 -0700492 memcpy((void *)bootaddr, bootline, max(strlen(bootline), (size_t)255));
493 flush_cache(bootaddr, max(strlen(bootline), (size_t)255));
494 printf("## Using bootline (@ 0x%lx): %s\n", bootaddr, (char *)bootaddr);
495
wdenk8bde7f72003-06-27 21:31:46 +0000496 /*
497 * If the data at the load address is an elf image, then
498 * treat it like an elf image. Otherwise, assume that it is a
Bin Mengebca3df2015-10-07 20:19:13 -0700499 * binary image.
wdenk458ded32002-09-20 10:59:08 +0000500 */
Bin Mengebca3df2015-10-07 20:19:13 -0700501 if (valid_elf_image(addr))
Christian Gmeiner476c2fc2018-03-20 14:18:25 +0100502 addr = load_elf_image_phdr(addr);
Bin Mengebca3df2015-10-07 20:19:13 -0700503 else
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000504 puts("## Not an ELF image, assuming binary\n");
wdenk458ded32002-09-20 10:59:08 +0000505
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000506 printf("## Starting vxWorks at 0x%08lx ...\n", addr);
wdenk458ded32002-09-20 10:59:08 +0000507
Reinhard Arlt6eee21d2011-11-18 09:06:52 +0000508 dcache_disable();
Vasyl Vavrychuk3194daa2018-04-10 12:36:36 +0300509#if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI)
510 armv8_setup_psci();
511 smp_kick_all_cpus();
512#endif
513
Bin Meng9aa12802015-10-07 20:19:19 -0700514#ifdef CONFIG_X86
515 /* VxWorks on x86 uses stack to pass parameters */
516 ((asmlinkage void (*)(int))addr)(0);
517#else
Bin Mengebca3df2015-10-07 20:19:13 -0700518 ((void (*)(int))addr)(0);
Bin Meng9aa12802015-10-07 20:19:19 -0700519#endif
wdenk458ded32002-09-20 10:59:08 +0000520
Daniel Schwierzeck62e03d32012-09-16 06:55:05 +0000521 puts("## vxWorks terminated\n");
Bin Mengebca3df2015-10-07 20:19:13 -0700522
wdenk458ded32002-09-20 10:59:08 +0000523 return 1;
524}
525
wdenk0d498392003-07-01 21:06:45 +0000526U_BOOT_CMD(
Tom Rinibe1b8672017-05-18 17:03:07 -0400527 bootelf, CONFIG_SYS_MAXARGS, 0, do_bootelf,
Peter Tyser2fb26042009-01-27 18:03:12 -0600528 "Boot from an ELF image in memory",
Mike Frysingerf44a9282010-10-02 15:44:53 -0400529 "[-p|-s] [address]\n"
530 "\t- load ELF image at [address] via program headers (-p)\n"
531 "\t or via section headers (-s)"
wdenk8bde7f72003-06-27 21:31:46 +0000532);
533
wdenk0d498392003-07-01 21:06:45 +0000534U_BOOT_CMD(
Bin Mengebca3df2015-10-07 20:19:13 -0700535 bootvx, 2, 0, do_bootvx,
Peter Tyser2fb26042009-01-27 18:03:12 -0600536 "Boot vxWorks from an ELF image",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200537 " [address] - load address of vxWorks ELF image."
wdenk8bde7f72003-06-27 21:31:46 +0000538);