1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2008-2011
13 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
19 #include <asm/u-boot-x86.h>
20 #include <asm/sections.h>
23 DECLARE_GLOBAL_DATA_PTR;
25 int copy_uboot_to_ram(void)
27 size_t len = (uintptr_t)&__data_end - (uintptr_t)&__text_start;
29 if (gd->flags & GD_FLG_SKIP_RELOC)
31 memcpy((void *)gd->relocaddr, (void *)&__text_start, len);
38 ulong dst_addr = (ulong)&__bss_start + gd->reloc_off;
39 size_t len = (uintptr_t)&__bss_end - (uintptr_t)&__bss_start;
41 if (gd->flags & GD_FLG_SKIP_RELOC)
43 memset((void *)dst_addr, 0x00, len);
48 #if CONFIG_IS_ENABLED(X86_64)
49 static void do_elf_reloc_fixups64(unsigned int text_base, uintptr_t size,
50 Elf64_Rela *re_src, Elf64_Rela *re_end)
52 Elf64_Addr *offset_ptr_rom, *last_offset = NULL;
53 Elf64_Addr *offset_ptr_ram;
56 unsigned long long type = ELF64_R_TYPE(re_src->r_info);
58 if (type != R_X86_64_RELATIVE) {
59 printf("%s: unsupported relocation type 0x%llx "
60 "at %p, ", __func__, type, re_src);
61 printf("offset = 0x%llx\n", re_src->r_offset);
65 /* Get the location from the relocation entry */
66 offset_ptr_rom = (Elf64_Addr *)(uintptr_t)re_src->r_offset;
68 /* Check that the location of the relocation is in .text */
69 if (offset_ptr_rom >= (Elf64_Addr *)(uintptr_t)text_base &&
70 offset_ptr_rom > last_offset) {
71 /* Switch to the in-RAM version */
72 offset_ptr_ram = (Elf64_Addr *)((ulong)offset_ptr_rom +
75 /* Check that the target points into .text */
76 if (*offset_ptr_ram >= text_base &&
77 *offset_ptr_ram <= text_base + size) {
78 *offset_ptr_ram = gd->reloc_off +
81 debug(" %p: %lx: rom reloc %lx, ram %p, value %lx, limit %lX\n",
82 re_src, (ulong)re_src->r_info,
83 (ulong)re_src->r_offset, offset_ptr_ram,
84 (ulong)*offset_ptr_ram, text_base + size);
87 debug(" %p: %lx: rom reloc %lx, last %p\n", re_src,
88 (ulong)re_src->r_info, (ulong)re_src->r_offset,
91 last_offset = offset_ptr_rom;
93 } while (++re_src < re_end);
96 static void do_elf_reloc_fixups32(unsigned int text_base, uintptr_t size,
97 Elf32_Rel *re_src, Elf32_Rel *re_end)
99 Elf32_Addr *offset_ptr_rom, *last_offset = NULL;
100 Elf32_Addr *offset_ptr_ram;
103 unsigned int type = ELF32_R_TYPE(re_src->r_info);
105 if (type != R_386_RELATIVE) {
106 printf("%s: unsupported relocation type 0x%x "
107 "at %p, ", __func__, type, re_src);
108 printf("offset = 0x%x\n", re_src->r_offset);
112 /* Get the location from the relocation entry */
113 offset_ptr_rom = (Elf32_Addr *)(uintptr_t)re_src->r_offset;
115 /* Check that the location of the relocation is in .text */
116 if (offset_ptr_rom >= (Elf32_Addr *)(uintptr_t)text_base &&
117 offset_ptr_rom > last_offset) {
119 /* Switch to the in-RAM version */
120 offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
123 /* Check that the target points into .text */
124 if (*offset_ptr_ram >= text_base &&
125 *offset_ptr_ram <= text_base + size) {
126 *offset_ptr_ram += gd->reloc_off;
128 debug(" %p: rom reloc %x, ram %p, value %x, limit %lX\n",
129 re_src, re_src->r_offset, offset_ptr_ram,
130 *offset_ptr_ram, text_base + size);
133 debug(" %p: rom reloc %x, last %p\n", re_src,
134 re_src->r_offset, last_offset);
136 last_offset = offset_ptr_rom;
138 } while (++re_src < re_end);
143 * This function has more error checking than you might expect. Please see
144 * this commit message for more information:
145 * 62f7970a x86: Add error checking to x86 relocation code
147 int do_elf_reloc_fixups(void)
149 void *re_src = (void *)(&__rel_dyn_start);
150 void *re_end = (void *)(&__rel_dyn_end);
153 /* The size of the region of u-boot that runs out of RAM. */
154 uintptr_t size = (uintptr_t)&__bss_end - (uintptr_t)&__text_start;
156 if (gd->flags & GD_FLG_SKIP_RELOC)
158 if (re_src == re_end)
159 panic("No relocation data");
161 #ifdef CONFIG_SYS_TEXT_BASE
162 text_base = CONFIG_SYS_TEXT_BASE;
164 panic("No CONFIG_SYS_TEXT_BASE");
166 #if CONFIG_IS_ENABLED(X86_64)
167 do_elf_reloc_fixups64(text_base, size, re_src, re_end);
169 do_elf_reloc_fixups32(text_base, size, re_src, re_end);