|
|
@ -23,6 +23,41 @@ |
|
|
|
#include <linux/linkage.h> |
|
|
|
#endif |
|
|
|
|
|
|
|
/*
|
|
|
|
* A very simple ELF64 loader, assumes the image is valid, returns the |
|
|
|
* entry point address. |
|
|
|
* |
|
|
|
* Note if U-Boot is 32-bit, the loader assumes the to segment's |
|
|
|
* physical address and size is within the lower 32-bit address space. |
|
|
|
*/ |
|
|
|
static unsigned long load_elf64_image_phdr(unsigned long addr) |
|
|
|
{ |
|
|
|
Elf64_Ehdr *ehdr; /* Elf header structure pointer */ |
|
|
|
Elf64_Phdr *phdr; /* Program header structure pointer */ |
|
|
|
int i; |
|
|
|
|
|
|
|
ehdr = (Elf64_Ehdr *)addr; |
|
|
|
phdr = (Elf64_Phdr *)(addr + (ulong)ehdr->e_phoff); |
|
|
|
|
|
|
|
/* Load each program header */ |
|
|
|
for (i = 0; i < ehdr->e_phnum; ++i) { |
|
|
|
void *dst = (void *)(ulong)phdr->p_paddr; |
|
|
|
void *src = (void *)addr + phdr->p_offset; |
|
|
|
|
|
|
|
debug("Loading phdr %i to 0x%p (%lu bytes)\n", |
|
|
|
i, dst, (ulong)phdr->p_filesz); |
|
|
|
if (phdr->p_filesz) |
|
|
|
memcpy(dst, src, phdr->p_filesz); |
|
|
|
if (phdr->p_filesz != phdr->p_memsz) |
|
|
|
memset(dst + phdr->p_filesz, 0x00, |
|
|
|
phdr->p_memsz - phdr->p_filesz); |
|
|
|
flush_cache((unsigned long)dst, phdr->p_filesz); |
|
|
|
++phdr; |
|
|
|
} |
|
|
|
|
|
|
|
return ehdr->e_entry; |
|
|
|
} |
|
|
|
|
|
|
|
/*
|
|
|
|
* A very simple elf loader, assumes the image is valid, returns the |
|
|
|
* entry point address. |
|
|
@ -34,6 +69,9 @@ static unsigned long load_elf_image_phdr(unsigned long addr) |
|
|
|
int i; |
|
|
|
|
|
|
|
ehdr = (Elf32_Ehdr *)addr; |
|
|
|
if (ehdr->e_ident[EI_CLASS] == ELFCLASS64) |
|
|
|
return load_elf64_image_phdr(addr); |
|
|
|
|
|
|
|
phdr = (Elf32_Phdr *)(addr + ehdr->e_phoff); |
|
|
|
|
|
|
|
/* Load each program header */ |
|
|
@ -54,6 +92,55 @@ static unsigned long load_elf_image_phdr(unsigned long addr) |
|
|
|
return ehdr->e_entry; |
|
|
|
} |
|
|
|
|
|
|
|
static unsigned long load_elf64_image_shdr(unsigned long addr) |
|
|
|
{ |
|
|
|
Elf64_Ehdr *ehdr; /* Elf header structure pointer */ |
|
|
|
Elf64_Shdr *shdr; /* Section header structure pointer */ |
|
|
|
unsigned char *strtab = 0; /* String table pointer */ |
|
|
|
unsigned char *image; /* Binary image pointer */ |
|
|
|
int i; /* Loop counter */ |
|
|
|
|
|
|
|
ehdr = (Elf64_Ehdr *)addr; |
|
|
|
|
|
|
|
/* Find the section header string table for output info */ |
|
|
|
shdr = (Elf64_Shdr *)(addr + ehdr->e_shoff + |
|
|
|
(ehdr->e_shstrndx * sizeof(Elf64_Shdr))); |
|
|
|
|
|
|
|
if (shdr->sh_type == SHT_STRTAB) |
|
|
|
strtab = (unsigned char *)(addr + shdr->sh_offset); |
|
|
|
|
|
|
|
/* Load each appropriate section */ |
|
|
|
for (i = 0; i < ehdr->e_shnum; ++i) { |
|
|
|
shdr = (Elf64_Shdr *)(addr + ehdr->e_shoff + |
|
|
|
(i * sizeof(Elf64_Shdr))); |
|
|
|
|
|
|
|
if (!(shdr->sh_flags & SHF_ALLOC) || |
|
|
|
shdr->sh_addr == 0 || shdr->sh_size == 0) { |
|
|
|
continue; |
|
|
|
} |
|
|
|
|
|
|
|
if (strtab) { |
|
|
|
debug("%sing %s @ 0x%08lx (%ld bytes)\n", |
|
|
|
(shdr->sh_type == SHT_NOBITS) ? "Clear" : "Load", |
|
|
|
&strtab[shdr->sh_name], |
|
|
|
(unsigned long)shdr->sh_addr, |
|
|
|
(long)shdr->sh_size); |
|
|
|
} |
|
|
|
|
|
|
|
if (shdr->sh_type == SHT_NOBITS) { |
|
|
|
memset((void *)(uintptr_t)shdr->sh_addr, 0, |
|
|
|
shdr->sh_size); |
|
|
|
} else { |
|
|
|
image = (unsigned char *)addr + shdr->sh_offset; |
|
|
|
memcpy((void *)(uintptr_t)shdr->sh_addr, |
|
|
|
(const void *)image, shdr->sh_size); |
|
|
|
} |
|
|
|
flush_cache(shdr->sh_addr, shdr->sh_size); |
|
|
|
} |
|
|
|
|
|
|
|
return ehdr->e_entry; |
|
|
|
} |
|
|
|
|
|
|
|
static unsigned long load_elf_image_shdr(unsigned long addr) |
|
|
|
{ |
|
|
|
Elf32_Ehdr *ehdr; /* Elf header structure pointer */ |
|
|
@ -63,6 +150,8 @@ static unsigned long load_elf_image_shdr(unsigned long addr) |
|
|
|
int i; /* Loop counter */ |
|
|
|
|
|
|
|
ehdr = (Elf32_Ehdr *)addr; |
|
|
|
if (ehdr->e_ident[EI_CLASS] == ELFCLASS64) |
|
|
|
return load_elf64_image_shdr(addr); |
|
|
|
|
|
|
|
/* Find the section header string table for output info */ |
|
|
|
shdr = (Elf32_Shdr *)(addr + ehdr->e_shoff + |
|
|
|