blob: ecbd0927e07cf6d55f8b30449cfb910230f9e0bd [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Graeme Russ6ae6dd82011-12-23 15:57:58 +11002/*
3 * (C) Copyright 2008-2011
4 * Graeme Russ, <graeme.russ@gmail.com>
5 *
6 * (C) Copyright 2002
7 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
8 *
9 * (C) Copyright 2002
10 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
11 *
12 * (C) Copyright 2002
13 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
14 * Marius Groeger <mgroeger@sysgo.de>
Graeme Russ6ae6dd82011-12-23 15:57:58 +110015 */
16
17#include <common.h>
Simon Glass0f2af882020-05-10 11:40:05 -060018#include <log.h>
Simon Glass6ab91072017-03-31 08:40:38 -060019#include <relocate.h>
Graeme Russ6ae6dd82011-12-23 15:57:58 +110020#include <asm/u-boot-x86.h>
Simon Glass3e93e332013-03-05 14:39:54 +000021#include <asm/sections.h>
Graeme Russ6ae6dd82011-12-23 15:57:58 +110022#include <elf.h>
23
Simon Glassbb6306c2013-04-17 16:13:33 +000024DECLARE_GLOBAL_DATA_PTR;
25
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110026int copy_uboot_to_ram(void)
Graeme Russ6ae6dd82011-12-23 15:57:58 +110027{
Simon Glass878201b2017-01-16 07:03:55 -070028 size_t len = (uintptr_t)&__data_end - (uintptr_t)&__text_start;
Graeme Russ6ae6dd82011-12-23 15:57:58 +110029
Simon Glassc6157732015-08-04 12:33:44 -060030 if (gd->flags & GD_FLG_SKIP_RELOC)
31 return 0;
Graeme Russ6ae6dd82011-12-23 15:57:58 +110032 memcpy((void *)gd->relocaddr, (void *)&__text_start, len);
33
34 return 0;
35}
36
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110037int clear_bss(void)
Graeme Russ6ae6dd82011-12-23 15:57:58 +110038{
39 ulong dst_addr = (ulong)&__bss_start + gd->reloc_off;
Simon Glass878201b2017-01-16 07:03:55 -070040 size_t len = (uintptr_t)&__bss_end - (uintptr_t)&__bss_start;
Graeme Russ6ae6dd82011-12-23 15:57:58 +110041
Simon Glassc6157732015-08-04 12:33:44 -060042 if (gd->flags & GD_FLG_SKIP_RELOC)
43 return 0;
Graeme Russ6ae6dd82011-12-23 15:57:58 +110044 memset((void *)dst_addr, 0x00, len);
45
46 return 0;
47}
48
Simon Glass010af862017-01-16 07:03:54 -070049#if CONFIG_IS_ENABLED(X86_64)
50static void do_elf_reloc_fixups64(unsigned int text_base, uintptr_t size,
51 Elf64_Rela *re_src, Elf64_Rela *re_end)
52{
53 Elf64_Addr *offset_ptr_rom, *last_offset = NULL;
54 Elf64_Addr *offset_ptr_ram;
55
56 do {
Heinrich Schuchardta7e8bb32018-10-13 20:52:06 -070057 unsigned long long type = ELF64_R_TYPE(re_src->r_info);
58
59 if (type != R_X86_64_RELATIVE) {
60 printf("%s: unsupported relocation type 0x%llx "
61 "at %p, ", __func__, type, re_src);
62 printf("offset = 0x%llx\n", re_src->r_offset);
63 continue;
64 }
65
Simon Glass010af862017-01-16 07:03:54 -070066 /* Get the location from the relocation entry */
67 offset_ptr_rom = (Elf64_Addr *)(uintptr_t)re_src->r_offset;
68
69 /* Check that the location of the relocation is in .text */
70 if (offset_ptr_rom >= (Elf64_Addr *)(uintptr_t)text_base &&
71 offset_ptr_rom > last_offset) {
72 /* Switch to the in-RAM version */
73 offset_ptr_ram = (Elf64_Addr *)((ulong)offset_ptr_rom +
74 gd->reloc_off);
75
76 /* Check that the target points into .text */
77 if (*offset_ptr_ram >= text_base &&
78 *offset_ptr_ram <= text_base + size) {
79 *offset_ptr_ram = gd->reloc_off +
80 re_src->r_addend;
81 } else {
Masahiro Yamadac7570a32018-08-06 20:47:40 +090082 debug(" %p: %lx: rom reloc %lx, ram %p, value %lx, limit %lX\n",
Simon Glass010af862017-01-16 07:03:54 -070083 re_src, (ulong)re_src->r_info,
84 (ulong)re_src->r_offset, offset_ptr_ram,
85 (ulong)*offset_ptr_ram, text_base + size);
86 }
87 } else {
88 debug(" %p: %lx: rom reloc %lx, last %p\n", re_src,
89 (ulong)re_src->r_info, (ulong)re_src->r_offset,
90 last_offset);
91 }
92 last_offset = offset_ptr_rom;
93
94 } while (++re_src < re_end);
95}
96#else
Simon Glassc8979072017-01-16 07:03:53 -070097static void do_elf_reloc_fixups32(unsigned int text_base, uintptr_t size,
98 Elf32_Rel *re_src, Elf32_Rel *re_end)
Graeme Russ6ae6dd82011-12-23 15:57:58 +110099{
Simon Glassb0ba9a42013-02-28 19:26:16 +0000100 Elf32_Addr *offset_ptr_rom, *last_offset = NULL;
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100101 Elf32_Addr *offset_ptr_ram;
102
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100103 do {
Heinrich Schuchardta7e8bb32018-10-13 20:52:06 -0700104 unsigned int type = ELF32_R_TYPE(re_src->r_info);
105
106 if (type != R_386_RELATIVE) {
107 printf("%s: unsupported relocation type 0x%x "
108 "at %p, ", __func__, type, re_src);
109 printf("offset = 0x%x\n", re_src->r_offset);
110 continue;
111 }
112
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100113 /* Get the location from the relocation entry */
Simon Glassc8979072017-01-16 07:03:53 -0700114 offset_ptr_rom = (Elf32_Addr *)(uintptr_t)re_src->r_offset;
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100115
116 /* Check that the location of the relocation is in .text */
Simon Glassc8979072017-01-16 07:03:53 -0700117 if (offset_ptr_rom >= (Elf32_Addr *)(uintptr_t)text_base &&
Simon Glass32ad3c02015-08-04 12:33:49 -0600118 offset_ptr_rom > last_offset) {
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100119
120 /* Switch to the in-RAM version */
121 offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
122 gd->reloc_off);
123
124 /* Check that the target points into .text */
Simon Glass32ad3c02015-08-04 12:33:49 -0600125 if (*offset_ptr_ram >= text_base &&
126 *offset_ptr_ram <= text_base + size) {
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100127 *offset_ptr_ram += gd->reloc_off;
Simon Glassb0ba9a42013-02-28 19:26:16 +0000128 } else {
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900129 debug(" %p: rom reloc %x, ram %p, value %x, limit %lX\n",
130 re_src, re_src->r_offset, offset_ptr_ram,
131 *offset_ptr_ram, text_base + size);
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100132 }
Simon Glassb0ba9a42013-02-28 19:26:16 +0000133 } else {
134 debug(" %p: rom reloc %x, last %p\n", re_src,
135 re_src->r_offset, last_offset);
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100136 }
Simon Glassb0ba9a42013-02-28 19:26:16 +0000137 last_offset = offset_ptr_rom;
138
Duncan Lauriebf4c9fb2012-10-23 18:04:43 +0000139 } while (++re_src < re_end);
Simon Glassc8979072017-01-16 07:03:53 -0700140}
Simon Glass010af862017-01-16 07:03:54 -0700141#endif
Simon Glassc8979072017-01-16 07:03:53 -0700142
143/*
144 * This function has more error checking than you might expect. Please see
145 * this commit message for more information:
146 * 62f7970a x86: Add error checking to x86 relocation code
147 */
148int do_elf_reloc_fixups(void)
149{
150 void *re_src = (void *)(&__rel_dyn_start);
151 void *re_end = (void *)(&__rel_dyn_end);
152 uint text_base;
153
154 /* The size of the region of u-boot that runs out of RAM. */
155 uintptr_t size = (uintptr_t)&__bss_end - (uintptr_t)&__text_start;
156
157 if (gd->flags & GD_FLG_SKIP_RELOC)
158 return 0;
159 if (re_src == re_end)
160 panic("No relocation data");
161
162#ifdef CONFIG_SYS_TEXT_BASE
163 text_base = CONFIG_SYS_TEXT_BASE;
164#else
165 panic("No CONFIG_SYS_TEXT_BASE");
166#endif
Simon Glass010af862017-01-16 07:03:54 -0700167#if CONFIG_IS_ENABLED(X86_64)
168 do_elf_reloc_fixups64(text_base, size, re_src, re_end);
169#else
Simon Glassc8979072017-01-16 07:03:53 -0700170 do_elf_reloc_fixups32(text_base, size, re_src, re_end);
Simon Glass010af862017-01-16 07:03:54 -0700171#endif
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100172
173 return 0;
174}