]> Git Repo - u-boot.git/blame - cmd/elf.c
dm: cpu: Fix print_cpuinfo() output
[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
2846ea81
RB
60 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 }
8744d6c5
NS
118 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));
2846ea81
RB
122 }
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
839c4e9c
BM
136 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.
9dffa52d
BM
145 */
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;
839c4e9c
BM
153 if (ehdr->e_ident[EI_CLASS] == ELFCLASS64)
154 return load_elf64_image_phdr(addr);
155
9dffa52d
BM
156 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;
839c4e9c 162
9dffa52d
BM
163 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;
2846ea81
RB
186 if (ehdr->e_ident[EI_CLASS] == ELFCLASS64)
187 return load_elf64_image_shdr(addr);
9dffa52d
BM
188
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 }
18f201ea
NS
222 flush_cache(rounddown(shdr->sh_addr, ARCH_DMA_MINALIGN),
223 roundup((shdr->sh_addr + shdr->sh_size),
224 ARCH_DMA_MINALIGN) -
225 rounddown(shdr->sh_addr, ARCH_DMA_MINALIGN));
9dffa52d
BM
226 }
227
228 return ehdr->e_entry;
229}
017e9b79
MF
230
231/* Allow ports to override the default behavior */
553d8c3a 232static unsigned long do_bootelf_exec(ulong (*entry)(int, char * const[]),
ebca3df7 233 int argc, char * const argv[])
1f1d88dd 234{
017e9b79
MF
235 unsigned long ret;
236
017e9b79
MF
237 /*
238 * pass address parameter as argv[0] (aka command name),
239 * and all remaining args
240 */
62e03d33 241 ret = entry(argc, argv);
1f1d88dd 242
017e9b79
MF
243 return ret;
244}
458ded34 245
ebca3df7 246/*
62e03d33 247 * Determine if a valid ELF image exists at the given memory location.
ebca3df7
BM
248 * First look at the ELF header magic field, then make sure that it is
249 * executable.
250 */
62e03d33
DS
251int valid_elf_image(unsigned long addr)
252{
ebca3df7 253 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
62e03d33 254
ebca3df7 255 ehdr = (Elf32_Ehdr *)addr;
62e03d33
DS
256
257 if (!IS_ELF(*ehdr)) {
258 printf("## No elf image at address 0x%08lx\n", addr);
259 return 0;
260 }
261
262 if (ehdr->e_type != ET_EXEC) {
263 printf("## Not a 32-bit elf image at address 0x%08lx\n", addr);
264 return 0;
265 }
266
62e03d33
DS
267 return 1;
268}
269
ebca3df7 270/* Interpreter command to boot an arbitrary ELF image from memory */
62e03d33 271int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
458ded34 272{
ebca3df7
BM
273 unsigned long addr; /* Address of the ELF image */
274 unsigned long rc; /* Return value from user code */
be1b8679 275 char *sload = NULL;
00caae6d 276 const char *ep = env_get("autostart");
458ded34
WD
277 int rcode = 0;
278
be1b8679
TR
279 /* Consume 'bootelf' */
280 argc--; argv++;
f44a928e 281
be1b8679
TR
282 /* Check for flag. */
283 if (argc >= 1 && (argv[0][0] == '-' && \
284 (argv[0][1] == 'p' || argv[0][1] == 's'))) {
285 sload = argv[0];
286 /* Consume flag. */
287 argc--; argv++;
288 }
289 /* Check for address. */
290 if (argc >= 1 && strict_strtoul(argv[0], 16, &addr) != -EINVAL) {
291 /* Consume address */
292 argc--; argv++;
293 } else
f44a928e 294 addr = load_addr;
458ded34 295
62e03d33 296 if (!valid_elf_image(addr))
458ded34
WD
297 return 1;
298
f44a928e
MF
299 if (sload && sload[1] == 'p')
300 addr = load_elf_image_phdr(addr);
301 else
302 addr = load_elf_image_shdr(addr);
458ded34 303
44c8fd3a
SDPP
304 if (ep && !strcmp(ep, "no"))
305 return rcode;
306
62e03d33 307 printf("## Starting application at 0x%08lx ...\n", addr);
458ded34 308
458ded34
WD
309 /*
310 * pass address parameter as argv[0] (aka command name),
311 * and all remaining args
312 */
be1b8679 313 rc = do_bootelf_exec((void *)addr, argc, argv);
458ded34
WD
314 if (rc != 0)
315 rcode = 1;
316
62e03d33 317 printf("## Application terminated, rc = 0x%lx\n", rc);
ebca3df7 318
458ded34
WD
319 return rcode;
320}
321
ebca3df7 322/*
458ded34
WD
323 * Interpreter command to boot VxWorks from a memory image. The image can
324 * be either an ELF image or a raw binary. Will attempt to setup the
325 * bootline and other parameters correctly.
ebca3df7 326 */
62e03d33 327int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
458ded34 328{
ebca3df7 329 unsigned long addr; /* Address of image */
79c584e5 330 unsigned long bootaddr = 0; /* Address to put the bootline */
ebca3df7
BM
331 char *bootline; /* Text of the bootline */
332 char *tmp; /* Temporary char pointer */
333 char build_buf[128]; /* Buffer for building the bootline */
7f0c3c51 334 int ptr = 0;
b90ff0fd 335#ifdef CONFIG_X86
2902be86 336 ulong base;
fa5e91f7 337 struct e820_info *info;
45519924 338 struct e820_entry *data;
447ae4f7
BM
339 struct efi_gop_info *gop;
340 struct vesa_mode_info *vesa = &mode_info.vesa;
b90ff0fd 341#endif
ebca3df7
BM
342
343 /*
458ded34
WD
344 * Check the loadaddr variable.
345 * If we don't know where the image is then we're done.
346 */
07a1a0c9 347 if (argc < 2)
1bdd4683
SR
348 addr = load_addr;
349 else
07a1a0c9 350 addr = simple_strtoul(argv[1], NULL, 16);
458ded34 351
baa26db4 352#if defined(CONFIG_CMD_NET)
62e03d33 353 /*
ebca3df7
BM
354 * Check to see if we need to tftp the image ourselves
355 * before starting
62e03d33 356 */
07a1a0c9 357 if ((argc == 2) && (strcmp(argv[1], "tftp") == 0)) {
bc0571fc 358 if (net_loop(TFTPGET) <= 0)
458ded34 359 return 1;
62e03d33
DS
360 printf("Automatic boot of VxWorks image at address 0x%08lx ...\n",
361 addr);
458ded34
WD
362 }
363#endif
364
ebca3df7
BM
365 /*
366 * This should equate to
367 * NV_RAM_ADRS + NV_BOOT_OFFSET + NV_ENET_OFFSET
458ded34
WD
368 * from the VxWorks BSP header files.
369 * This will vary from board to board
370 */
8996975f 371#if defined(CONFIG_SYS_VXWORKS_MAC_PTR)
ebca3df7 372 tmp = (char *)CONFIG_SYS_VXWORKS_MAC_PTR;
35affd7a 373 eth_env_get_enetaddr("ethaddr", (uchar *)build_buf);
62c93d92 374 memcpy(tmp, build_buf, 6);
458ded34 375#else
62e03d33 376 puts("## Ethernet MAC address not copied to NV RAM\n");
458ded34
WD
377#endif
378
79c584e5
BM
379#ifdef CONFIG_X86
380 /*
381 * Get VxWorks's physical memory base address from environment,
382 * if we don't specify it in the environment, use a default one.
383 */
384 base = env_get_hex("vx_phys_mem_base", VXWORKS_PHYS_MEM_BASE);
385 data = (struct e820_entry *)(base + E820_DATA_OFFSET);
386 info = (struct e820_info *)(base + E820_INFO_OFFSET);
387
388 memset(info, 0, sizeof(struct e820_info));
389 info->sign = E820_SIGNATURE;
390 info->entries = install_e820_map(E820MAX, data);
391 info->addr = (info->entries - 1) * sizeof(struct e820_entry) +
392 E820_DATA_OFFSET;
393
394 /*
395 * Explicitly clear the bootloader image size otherwise if memory
396 * at this offset happens to contain some garbage data, the final
397 * available memory size for the kernel is insane.
398 */
399 *(u32 *)(base + BOOT_IMAGE_SIZE_OFFSET) = 0;
400
401 /*
402 * Prepare compatible framebuffer information block.
403 * The VESA mode has to be 32-bit RGBA.
404 */
405 if (vesa->x_resolution && vesa->y_resolution) {
406 gop = (struct efi_gop_info *)(base + EFI_GOP_INFO_OFFSET);
407 gop->magic = EFI_GOP_INFO_MAGIC;
408 gop->info.version = 0;
409 gop->info.width = vesa->x_resolution;
410 gop->info.height = vesa->y_resolution;
411 gop->info.pixel_format = EFI_GOT_RGBA8;
412 gop->info.pixels_per_scanline = vesa->bytes_per_scanline / 4;
413 gop->fb_base = vesa->phys_base_ptr;
414 gop->fb_size = vesa->bytes_per_scanline * vesa->y_resolution;
415 }
416#endif
417
8bde7f77
WD
418 /*
419 * Use bootaddr to find the location in memory that VxWorks
9e98b7e3
BM
420 * will look for the bootline string. The default value is
421 * (LOCAL_MEM_LOCAL_ADRS + BOOT_LINE_OFFSET) as defined by
422 * VxWorks BSP. For example, on PowerPC it defaults to 0x4200.
458ded34 423 */
00caae6d 424 tmp = env_get("bootaddr");
9e98b7e3 425 if (!tmp) {
79c584e5
BM
426#ifdef CONFIG_X86
427 bootaddr = base + X86_BOOT_LINE_OFFSET;
428#else
9e98b7e3 429 printf("## VxWorks bootline address not specified\n");
ced71a2f 430 return 1;
79c584e5 431#endif
ced71a2f
BM
432 }
433
79c584e5
BM
434 if (!bootaddr)
435 bootaddr = simple_strtoul(tmp, NULL, 16);
ced71a2f
BM
436
437 /*
438 * Check to see if the bootline is defined in the 'bootargs' parameter.
439 * If it is not defined, we may be able to construct the info.
440 */
441 bootline = env_get("bootargs");
442 if (!bootline) {
443 tmp = env_get("bootdev");
444 if (tmp) {
445 strcpy(build_buf, tmp);
446 ptr = strlen(tmp);
447 } else {
448 printf("## VxWorks boot device not specified\n");
449 }
450
451 tmp = env_get("bootfile");
452 if (tmp)
453 ptr += sprintf(build_buf + ptr, "host:%s ", tmp);
454 else
455 ptr += sprintf(build_buf + ptr, "host:vxWorks ");
458ded34 456
9e98b7e3 457 /*
ced71a2f
BM
458 * The following parameters are only needed if 'bootdev'
459 * is an ethernet device, otherwise they are optional.
9e98b7e3 460 */
ced71a2f
BM
461 tmp = env_get("ipaddr");
462 if (tmp) {
463 ptr += sprintf(build_buf + ptr, "e=%s", tmp);
464 tmp = env_get("netmask");
192bc694 465 if (tmp) {
ced71a2f 466 u32 mask = env_get_ip("netmask").s_addr;
9e98b7e3 467 ptr += sprintf(build_buf + ptr,
ced71a2f
BM
468 ":%08x ", ntohl(mask));
469 } else {
470 ptr += sprintf(build_buf + ptr, " ");
a4092dbd 471 }
ced71a2f 472 }
458ded34 473
ced71a2f
BM
474 tmp = env_get("serverip");
475 if (tmp)
476 ptr += sprintf(build_buf + ptr, "h=%s ", tmp);
a4092dbd 477
ced71a2f
BM
478 tmp = env_get("gatewayip");
479 if (tmp)
480 ptr += sprintf(build_buf + ptr, "g=%s ", tmp);
458ded34 481
ced71a2f
BM
482 tmp = env_get("hostname");
483 if (tmp)
484 ptr += sprintf(build_buf + ptr, "tn=%s ", tmp);
9e98b7e3 485
ced71a2f
BM
486 tmp = env_get("othbootargs");
487 if (tmp) {
488 strcpy(build_buf + ptr, tmp);
489 ptr += strlen(tmp);
9e98b7e3 490 }
29a4c24d 491
ced71a2f 492 bootline = build_buf;
458ded34
WD
493 }
494
ced71a2f
BM
495 memcpy((void *)bootaddr, bootline, max(strlen(bootline), (size_t)255));
496 flush_cache(bootaddr, max(strlen(bootline), (size_t)255));
497 printf("## Using bootline (@ 0x%lx): %s\n", bootaddr, (char *)bootaddr);
498
8bde7f77
WD
499 /*
500 * If the data at the load address is an elf image, then
501 * treat it like an elf image. Otherwise, assume that it is a
ebca3df7 502 * binary image.
458ded34 503 */
ebca3df7 504 if (valid_elf_image(addr))
476c2fcd 505 addr = load_elf_image_phdr(addr);
ebca3df7 506 else
62e03d33 507 puts("## Not an ELF image, assuming binary\n");
458ded34 508
62e03d33 509 printf("## Starting vxWorks at 0x%08lx ...\n", addr);
458ded34 510
6eee21da 511 dcache_disable();
3194daa1
VV
512#if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI)
513 armv8_setup_psci();
514 smp_kick_all_cpus();
515#endif
516
9aa1280a
BM
517#ifdef CONFIG_X86
518 /* VxWorks on x86 uses stack to pass parameters */
519 ((asmlinkage void (*)(int))addr)(0);
520#else
ebca3df7 521 ((void (*)(int))addr)(0);
9aa1280a 522#endif
458ded34 523
62e03d33 524 puts("## vxWorks terminated\n");
ebca3df7 525
458ded34
WD
526 return 1;
527}
528
0d498393 529U_BOOT_CMD(
be1b8679 530 bootelf, CONFIG_SYS_MAXARGS, 0, do_bootelf,
2fb2604d 531 "Boot from an ELF image in memory",
f44a928e
MF
532 "[-p|-s] [address]\n"
533 "\t- load ELF image at [address] via program headers (-p)\n"
534 "\t or via section headers (-s)"
8bde7f77
WD
535);
536
0d498393 537U_BOOT_CMD(
ebca3df7 538 bootvx, 2, 0, do_bootvx,
2fb2604d 539 "Boot vxWorks from an ELF image",
a89c33db 540 " [address] - load address of vxWorks ELF image."
8bde7f77 541);
This page took 0.385341 seconds and 4 git commands to generate.