]> git.ipfire.org Git - thirdparty/u-boot.git/blame - cmd/elf.c
armv8: ls1088aqds: Enable mdio commands on u-boot prompt
[thirdparty/u-boot.git] / cmd / elf.c
CommitLineData
458ded34
WD
1/*
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>
458ded34 18#include <elf.h>
9925f1db 19#include <environment.h>
ebca3df7 20#include <net.h>
29a4c24d 21#include <vxworks.h>
b90ff0fd 22#ifdef CONFIG_X86
447ae4f7 23#include <vbe.h>
b90ff0fd 24#include <asm/e820.h>
9aa1280a 25#include <linux/linkage.h>
b90ff0fd 26#endif
458ded34 27
9dffa52d 28/*
839c4e9c 29 * A very simple ELF64 loader, assumes the image is valid, returns the
9dffa52d 30 * entry point address.
839c4e9c
BM
31 *
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
60 return ehdr->e_entry;
61}
62
63/*
64 * A very simple ELF loader, assumes the image is valid, returns the
65 * entry point address.
66 *
67 * The loader firstly reads the EFI class to see if it's a 64-bit image.
68 * If yes, call the ELF64 loader. Otherwise continue with the ELF32 loader.
9dffa52d
BM
69 */
70static unsigned long load_elf_image_phdr(unsigned long addr)
71{
72 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
73 Elf32_Phdr *phdr; /* Program header structure pointer */
74 int i;
75
76 ehdr = (Elf32_Ehdr *)addr;
839c4e9c
BM
77 if (ehdr->e_ident[EI_CLASS] == ELFCLASS64)
78 return load_elf64_image_phdr(addr);
79
9dffa52d
BM
80 phdr = (Elf32_Phdr *)(addr + ehdr->e_phoff);
81
82 /* Load each program header */
83 for (i = 0; i < ehdr->e_phnum; ++i) {
84 void *dst = (void *)(uintptr_t)phdr->p_paddr;
85 void *src = (void *)addr + phdr->p_offset;
839c4e9c 86
9dffa52d
BM
87 debug("Loading phdr %i to 0x%p (%i bytes)\n",
88 i, dst, phdr->p_filesz);
89 if (phdr->p_filesz)
90 memcpy(dst, src, phdr->p_filesz);
91 if (phdr->p_filesz != phdr->p_memsz)
92 memset(dst + phdr->p_filesz, 0x00,
93 phdr->p_memsz - phdr->p_filesz);
94 flush_cache((unsigned long)dst, phdr->p_filesz);
95 ++phdr;
96 }
97
98 return ehdr->e_entry;
99}
100
101static unsigned long load_elf_image_shdr(unsigned long addr)
102{
103 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
104 Elf32_Shdr *shdr; /* Section header structure pointer */
105 unsigned char *strtab = 0; /* String table pointer */
106 unsigned char *image; /* Binary image pointer */
107 int i; /* Loop counter */
108
109 ehdr = (Elf32_Ehdr *)addr;
110
111 /* Find the section header string table for output info */
112 shdr = (Elf32_Shdr *)(addr + ehdr->e_shoff +
113 (ehdr->e_shstrndx * sizeof(Elf32_Shdr)));
114
115 if (shdr->sh_type == SHT_STRTAB)
116 strtab = (unsigned char *)(addr + shdr->sh_offset);
117
118 /* Load each appropriate section */
119 for (i = 0; i < ehdr->e_shnum; ++i) {
120 shdr = (Elf32_Shdr *)(addr + ehdr->e_shoff +
121 (i * sizeof(Elf32_Shdr)));
122
123 if (!(shdr->sh_flags & SHF_ALLOC) ||
124 shdr->sh_addr == 0 || shdr->sh_size == 0) {
125 continue;
126 }
127
128 if (strtab) {
129 debug("%sing %s @ 0x%08lx (%ld bytes)\n",
130 (shdr->sh_type == SHT_NOBITS) ? "Clear" : "Load",
131 &strtab[shdr->sh_name],
132 (unsigned long)shdr->sh_addr,
133 (long)shdr->sh_size);
134 }
135
136 if (shdr->sh_type == SHT_NOBITS) {
137 memset((void *)(uintptr_t)shdr->sh_addr, 0,
138 shdr->sh_size);
139 } else {
140 image = (unsigned char *)addr + shdr->sh_offset;
141 memcpy((void *)(uintptr_t)shdr->sh_addr,
142 (const void *)image, shdr->sh_size);
143 }
144 flush_cache(shdr->sh_addr, shdr->sh_size);
145 }
146
147 return ehdr->e_entry;
148}
017e9b79
MF
149
150/* Allow ports to override the default behavior */
553d8c3a 151static unsigned long do_bootelf_exec(ulong (*entry)(int, char * const[]),
ebca3df7 152 int argc, char * const argv[])
1f1d88dd 153{
017e9b79
MF
154 unsigned long ret;
155
017e9b79
MF
156 /*
157 * pass address parameter as argv[0] (aka command name),
158 * and all remaining args
159 */
62e03d33 160 ret = entry(argc, argv);
1f1d88dd 161
017e9b79
MF
162 return ret;
163}
458ded34 164
ebca3df7 165/*
62e03d33 166 * Determine if a valid ELF image exists at the given memory location.
ebca3df7
BM
167 * First look at the ELF header magic field, then make sure that it is
168 * executable.
169 */
62e03d33
DS
170int valid_elf_image(unsigned long addr)
171{
ebca3df7 172 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
62e03d33 173
ebca3df7 174 ehdr = (Elf32_Ehdr *)addr;
62e03d33
DS
175
176 if (!IS_ELF(*ehdr)) {
177 printf("## No elf image at address 0x%08lx\n", addr);
178 return 0;
179 }
180
181 if (ehdr->e_type != ET_EXEC) {
182 printf("## Not a 32-bit elf image at address 0x%08lx\n", addr);
183 return 0;
184 }
185
62e03d33
DS
186 return 1;
187}
188
ebca3df7 189/* Interpreter command to boot an arbitrary ELF image from memory */
62e03d33 190int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
458ded34 191{
ebca3df7
BM
192 unsigned long addr; /* Address of the ELF image */
193 unsigned long rc; /* Return value from user code */
be1b8679 194 char *sload = NULL;
00caae6d 195 const char *ep = env_get("autostart");
458ded34
WD
196 int rcode = 0;
197
be1b8679
TR
198 /* Consume 'bootelf' */
199 argc--; argv++;
f44a928e 200
be1b8679
TR
201 /* Check for flag. */
202 if (argc >= 1 && (argv[0][0] == '-' && \
203 (argv[0][1] == 'p' || argv[0][1] == 's'))) {
204 sload = argv[0];
205 /* Consume flag. */
206 argc--; argv++;
207 }
208 /* Check for address. */
209 if (argc >= 1 && strict_strtoul(argv[0], 16, &addr) != -EINVAL) {
210 /* Consume address */
211 argc--; argv++;
212 } else
f44a928e 213 addr = load_addr;
458ded34 214
62e03d33 215 if (!valid_elf_image(addr))
458ded34
WD
216 return 1;
217
f44a928e
MF
218 if (sload && sload[1] == 'p')
219 addr = load_elf_image_phdr(addr);
220 else
221 addr = load_elf_image_shdr(addr);
458ded34 222
44c8fd3a
SDPP
223 if (ep && !strcmp(ep, "no"))
224 return rcode;
225
62e03d33 226 printf("## Starting application at 0x%08lx ...\n", addr);
458ded34 227
458ded34
WD
228 /*
229 * pass address parameter as argv[0] (aka command name),
230 * and all remaining args
231 */
be1b8679 232 rc = do_bootelf_exec((void *)addr, argc, argv);
458ded34
WD
233 if (rc != 0)
234 rcode = 1;
235
62e03d33 236 printf("## Application terminated, rc = 0x%lx\n", rc);
ebca3df7 237
458ded34
WD
238 return rcode;
239}
240
ebca3df7 241/*
458ded34
WD
242 * Interpreter command to boot VxWorks from a memory image. The image can
243 * be either an ELF image or a raw binary. Will attempt to setup the
244 * bootline and other parameters correctly.
ebca3df7 245 */
62e03d33 246int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
458ded34 247{
ebca3df7 248 unsigned long addr; /* Address of image */
79c584e5 249 unsigned long bootaddr = 0; /* Address to put the bootline */
ebca3df7
BM
250 char *bootline; /* Text of the bootline */
251 char *tmp; /* Temporary char pointer */
252 char build_buf[128]; /* Buffer for building the bootline */
7f0c3c51 253 int ptr = 0;
b90ff0fd 254#ifdef CONFIG_X86
2902be86 255 ulong base;
fa5e91f7 256 struct e820_info *info;
45519924 257 struct e820_entry *data;
447ae4f7
BM
258 struct efi_gop_info *gop;
259 struct vesa_mode_info *vesa = &mode_info.vesa;
b90ff0fd 260#endif
ebca3df7
BM
261
262 /*
458ded34
WD
263 * Check the loadaddr variable.
264 * If we don't know where the image is then we're done.
265 */
07a1a0c9 266 if (argc < 2)
1bdd4683
SR
267 addr = load_addr;
268 else
07a1a0c9 269 addr = simple_strtoul(argv[1], NULL, 16);
458ded34 270
baa26db4 271#if defined(CONFIG_CMD_NET)
62e03d33 272 /*
ebca3df7
BM
273 * Check to see if we need to tftp the image ourselves
274 * before starting
62e03d33 275 */
07a1a0c9 276 if ((argc == 2) && (strcmp(argv[1], "tftp") == 0)) {
bc0571fc 277 if (net_loop(TFTPGET) <= 0)
458ded34 278 return 1;
62e03d33
DS
279 printf("Automatic boot of VxWorks image at address 0x%08lx ...\n",
280 addr);
458ded34
WD
281 }
282#endif
283
ebca3df7
BM
284 /*
285 * This should equate to
286 * NV_RAM_ADRS + NV_BOOT_OFFSET + NV_ENET_OFFSET
458ded34
WD
287 * from the VxWorks BSP header files.
288 * This will vary from board to board
289 */
8996975f 290#if defined(CONFIG_SYS_VXWORKS_MAC_PTR)
ebca3df7 291 tmp = (char *)CONFIG_SYS_VXWORKS_MAC_PTR;
35affd7a 292 eth_env_get_enetaddr("ethaddr", (uchar *)build_buf);
62c93d92 293 memcpy(tmp, build_buf, 6);
458ded34 294#else
62e03d33 295 puts("## Ethernet MAC address not copied to NV RAM\n");
458ded34
WD
296#endif
297
79c584e5
BM
298#ifdef CONFIG_X86
299 /*
300 * Get VxWorks's physical memory base address from environment,
301 * if we don't specify it in the environment, use a default one.
302 */
303 base = env_get_hex("vx_phys_mem_base", VXWORKS_PHYS_MEM_BASE);
304 data = (struct e820_entry *)(base + E820_DATA_OFFSET);
305 info = (struct e820_info *)(base + E820_INFO_OFFSET);
306
307 memset(info, 0, sizeof(struct e820_info));
308 info->sign = E820_SIGNATURE;
309 info->entries = install_e820_map(E820MAX, data);
310 info->addr = (info->entries - 1) * sizeof(struct e820_entry) +
311 E820_DATA_OFFSET;
312
313 /*
314 * Explicitly clear the bootloader image size otherwise if memory
315 * at this offset happens to contain some garbage data, the final
316 * available memory size for the kernel is insane.
317 */
318 *(u32 *)(base + BOOT_IMAGE_SIZE_OFFSET) = 0;
319
320 /*
321 * Prepare compatible framebuffer information block.
322 * The VESA mode has to be 32-bit RGBA.
323 */
324 if (vesa->x_resolution && vesa->y_resolution) {
325 gop = (struct efi_gop_info *)(base + EFI_GOP_INFO_OFFSET);
326 gop->magic = EFI_GOP_INFO_MAGIC;
327 gop->info.version = 0;
328 gop->info.width = vesa->x_resolution;
329 gop->info.height = vesa->y_resolution;
330 gop->info.pixel_format = EFI_GOT_RGBA8;
331 gop->info.pixels_per_scanline = vesa->bytes_per_scanline / 4;
332 gop->fb_base = vesa->phys_base_ptr;
333 gop->fb_size = vesa->bytes_per_scanline * vesa->y_resolution;
334 }
335#endif
336
8bde7f77
WD
337 /*
338 * Use bootaddr to find the location in memory that VxWorks
9e98b7e3
BM
339 * will look for the bootline string. The default value is
340 * (LOCAL_MEM_LOCAL_ADRS + BOOT_LINE_OFFSET) as defined by
341 * VxWorks BSP. For example, on PowerPC it defaults to 0x4200.
458ded34 342 */
00caae6d 343 tmp = env_get("bootaddr");
9e98b7e3 344 if (!tmp) {
79c584e5
BM
345#ifdef CONFIG_X86
346 bootaddr = base + X86_BOOT_LINE_OFFSET;
347#else
9e98b7e3 348 printf("## VxWorks bootline address not specified\n");
ced71a2f 349 return 1;
79c584e5 350#endif
ced71a2f
BM
351 }
352
79c584e5
BM
353 if (!bootaddr)
354 bootaddr = simple_strtoul(tmp, NULL, 16);
ced71a2f
BM
355
356 /*
357 * Check to see if the bootline is defined in the 'bootargs' parameter.
358 * If it is not defined, we may be able to construct the info.
359 */
360 bootline = env_get("bootargs");
361 if (!bootline) {
362 tmp = env_get("bootdev");
363 if (tmp) {
364 strcpy(build_buf, tmp);
365 ptr = strlen(tmp);
366 } else {
367 printf("## VxWorks boot device not specified\n");
368 }
369
370 tmp = env_get("bootfile");
371 if (tmp)
372 ptr += sprintf(build_buf + ptr, "host:%s ", tmp);
373 else
374 ptr += sprintf(build_buf + ptr, "host:vxWorks ");
458ded34 375
9e98b7e3 376 /*
ced71a2f
BM
377 * The following parameters are only needed if 'bootdev'
378 * is an ethernet device, otherwise they are optional.
9e98b7e3 379 */
ced71a2f
BM
380 tmp = env_get("ipaddr");
381 if (tmp) {
382 ptr += sprintf(build_buf + ptr, "e=%s", tmp);
383 tmp = env_get("netmask");
192bc694 384 if (tmp) {
ced71a2f 385 u32 mask = env_get_ip("netmask").s_addr;
9e98b7e3 386 ptr += sprintf(build_buf + ptr,
ced71a2f
BM
387 ":%08x ", ntohl(mask));
388 } else {
389 ptr += sprintf(build_buf + ptr, " ");
a4092dbd 390 }
ced71a2f 391 }
458ded34 392
ced71a2f
BM
393 tmp = env_get("serverip");
394 if (tmp)
395 ptr += sprintf(build_buf + ptr, "h=%s ", tmp);
a4092dbd 396
ced71a2f
BM
397 tmp = env_get("gatewayip");
398 if (tmp)
399 ptr += sprintf(build_buf + ptr, "g=%s ", tmp);
458ded34 400
ced71a2f
BM
401 tmp = env_get("hostname");
402 if (tmp)
403 ptr += sprintf(build_buf + ptr, "tn=%s ", tmp);
9e98b7e3 404
ced71a2f
BM
405 tmp = env_get("othbootargs");
406 if (tmp) {
407 strcpy(build_buf + ptr, tmp);
408 ptr += strlen(tmp);
9e98b7e3 409 }
29a4c24d 410
ced71a2f 411 bootline = build_buf;
458ded34
WD
412 }
413
ced71a2f
BM
414 memcpy((void *)bootaddr, bootline, max(strlen(bootline), (size_t)255));
415 flush_cache(bootaddr, max(strlen(bootline), (size_t)255));
416 printf("## Using bootline (@ 0x%lx): %s\n", bootaddr, (char *)bootaddr);
417
8bde7f77
WD
418 /*
419 * If the data at the load address is an elf image, then
420 * treat it like an elf image. Otherwise, assume that it is a
ebca3df7 421 * binary image.
458ded34 422 */
ebca3df7 423 if (valid_elf_image(addr))
476c2fcd 424 addr = load_elf_image_phdr(addr);
ebca3df7 425 else
62e03d33 426 puts("## Not an ELF image, assuming binary\n");
458ded34 427
62e03d33 428 printf("## Starting vxWorks at 0x%08lx ...\n", addr);
458ded34 429
6eee21da 430 dcache_disable();
3194daa1
VV
431#if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI)
432 armv8_setup_psci();
433 smp_kick_all_cpus();
434#endif
435
9aa1280a
BM
436#ifdef CONFIG_X86
437 /* VxWorks on x86 uses stack to pass parameters */
438 ((asmlinkage void (*)(int))addr)(0);
439#else
ebca3df7 440 ((void (*)(int))addr)(0);
9aa1280a 441#endif
458ded34 442
62e03d33 443 puts("## vxWorks terminated\n");
ebca3df7 444
458ded34
WD
445 return 1;
446}
447
0d498393 448U_BOOT_CMD(
be1b8679 449 bootelf, CONFIG_SYS_MAXARGS, 0, do_bootelf,
2fb2604d 450 "Boot from an ELF image in memory",
f44a928e
MF
451 "[-p|-s] [address]\n"
452 "\t- load ELF image at [address] via program headers (-p)\n"
453 "\t or via section headers (-s)"
8bde7f77
WD
454);
455
0d498393 456U_BOOT_CMD(
ebca3df7 457 bootvx, 2, 0, do_bootvx,
2fb2604d 458 "Boot vxWorks from an ELF image",
a89c33db 459 " [address] - load address of vxWorks ELF image."
8bde7f77 460);