blob: 6fe5151647737e2ed186d74c3def315b3116eb99 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Graeme Russb156ff02011-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 Russb156ff02011-12-23 15:57:58 +110015 */
16
17#include <common.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060018#include <log.h>
Simon Glasse47b2d62017-03-31 08:40:38 -060019#include <relocate.h>
Simon Glass401d1c42020-10-30 21:38:53 -060020#include <asm/global_data.h>
Graeme Russb156ff02011-12-23 15:57:58 +110021#include <asm/u-boot-x86.h>
Simon Glass86cfb6b2013-03-05 14:39:54 +000022#include <asm/sections.h>
Graeme Russb156ff02011-12-23 15:57:58 +110023#include <elf.h>
24
Simon Glass7282d832013-04-17 16:13:33 +000025DECLARE_GLOBAL_DATA_PTR;
26
Graeme Russa1d57b72011-12-23 21:14:22 +110027int copy_uboot_to_ram(void)
Graeme Russb156ff02011-12-23 15:57:58 +110028{
Simon Glassf196bd22017-01-16 07:03:55 -070029 size_t len = (uintptr_t)&__data_end - (uintptr_t)&__text_start;
Graeme Russb156ff02011-12-23 15:57:58 +110030
Simon Glass981dca62015-08-04 12:33:44 -060031 if (gd->flags & GD_FLG_SKIP_RELOC)
32 return 0;
Graeme Russb156ff02011-12-23 15:57:58 +110033 memcpy((void *)gd->relocaddr, (void *)&__text_start, len);
34
35 return 0;
36}
37
Graeme Russa1d57b72011-12-23 21:14:22 +110038int clear_bss(void)
Graeme Russb156ff02011-12-23 15:57:58 +110039{
40 ulong dst_addr = (ulong)&__bss_start + gd->reloc_off;
Simon Glassf196bd22017-01-16 07:03:55 -070041 size_t len = (uintptr_t)&__bss_end - (uintptr_t)&__bss_start;
Graeme Russb156ff02011-12-23 15:57:58 +110042
Simon Glass981dca62015-08-04 12:33:44 -060043 if (gd->flags & GD_FLG_SKIP_RELOC)
44 return 0;
Graeme Russb156ff02011-12-23 15:57:58 +110045 memset((void *)dst_addr, 0x00, len);
46
47 return 0;
48}
49
Simon Glassb50b1632017-01-16 07:03:54 -070050#if CONFIG_IS_ENABLED(X86_64)
51static void do_elf_reloc_fixups64(unsigned int text_base, uintptr_t size,
52 Elf64_Rela *re_src, Elf64_Rela *re_end)
53{
54 Elf64_Addr *offset_ptr_rom, *last_offset = NULL;
55 Elf64_Addr *offset_ptr_ram;
56
57 do {
Heinrich Schuchardt80df1942018-10-13 20:52:06 -070058 unsigned long long type = ELF64_R_TYPE(re_src->r_info);
59
60 if (type != R_X86_64_RELATIVE) {
61 printf("%s: unsupported relocation type 0x%llx "
62 "at %p, ", __func__, type, re_src);
63 printf("offset = 0x%llx\n", re_src->r_offset);
64 continue;
65 }
66
Simon Glassb50b1632017-01-16 07:03:54 -070067 /* Get the location from the relocation entry */
68 offset_ptr_rom = (Elf64_Addr *)(uintptr_t)re_src->r_offset;
69
70 /* Check that the location of the relocation is in .text */
71 if (offset_ptr_rom >= (Elf64_Addr *)(uintptr_t)text_base &&
72 offset_ptr_rom > last_offset) {
73 /* Switch to the in-RAM version */
74 offset_ptr_ram = (Elf64_Addr *)((ulong)offset_ptr_rom +
75 gd->reloc_off);
76
77 /* Check that the target points into .text */
78 if (*offset_ptr_ram >= text_base &&
79 *offset_ptr_ram <= text_base + size) {
80 *offset_ptr_ram = gd->reloc_off +
81 re_src->r_addend;
82 } else {
Masahiro Yamadadee37fc2018-08-06 20:47:40 +090083 debug(" %p: %lx: rom reloc %lx, ram %p, value %lx, limit %lX\n",
Simon Glassb50b1632017-01-16 07:03:54 -070084 re_src, (ulong)re_src->r_info,
85 (ulong)re_src->r_offset, offset_ptr_ram,
86 (ulong)*offset_ptr_ram, text_base + size);
87 }
88 } else {
89 debug(" %p: %lx: rom reloc %lx, last %p\n", re_src,
90 (ulong)re_src->r_info, (ulong)re_src->r_offset,
91 last_offset);
92 }
93 last_offset = offset_ptr_rom;
94
95 } while (++re_src < re_end);
96}
97#else
Simon Glassdc7e2132017-01-16 07:03:53 -070098static void do_elf_reloc_fixups32(unsigned int text_base, uintptr_t size,
99 Elf32_Rel *re_src, Elf32_Rel *re_end)
Graeme Russb156ff02011-12-23 15:57:58 +1100100{
Simon Glass62f79702013-02-28 19:26:16 +0000101 Elf32_Addr *offset_ptr_rom, *last_offset = NULL;
Graeme Russb156ff02011-12-23 15:57:58 +1100102 Elf32_Addr *offset_ptr_ram;
103
Graeme Russb156ff02011-12-23 15:57:58 +1100104 do {
Heinrich Schuchardt80df1942018-10-13 20:52:06 -0700105 unsigned int type = ELF32_R_TYPE(re_src->r_info);
106
107 if (type != R_386_RELATIVE) {
108 printf("%s: unsupported relocation type 0x%x "
109 "at %p, ", __func__, type, re_src);
110 printf("offset = 0x%x\n", re_src->r_offset);
111 continue;
112 }
113
Graeme Russb156ff02011-12-23 15:57:58 +1100114 /* Get the location from the relocation entry */
Simon Glassdc7e2132017-01-16 07:03:53 -0700115 offset_ptr_rom = (Elf32_Addr *)(uintptr_t)re_src->r_offset;
Graeme Russb156ff02011-12-23 15:57:58 +1100116
117 /* Check that the location of the relocation is in .text */
Simon Glassdc7e2132017-01-16 07:03:53 -0700118 if (offset_ptr_rom >= (Elf32_Addr *)(uintptr_t)text_base &&
Simon Glassa42bfe02015-08-04 12:33:49 -0600119 offset_ptr_rom > last_offset) {
Graeme Russb156ff02011-12-23 15:57:58 +1100120
121 /* Switch to the in-RAM version */
122 offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
123 gd->reloc_off);
124
125 /* Check that the target points into .text */
Simon Glassa42bfe02015-08-04 12:33:49 -0600126 if (*offset_ptr_ram >= text_base &&
127 *offset_ptr_ram <= text_base + size) {
Graeme Russb156ff02011-12-23 15:57:58 +1100128 *offset_ptr_ram += gd->reloc_off;
Simon Glass62f79702013-02-28 19:26:16 +0000129 } else {
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900130 debug(" %p: rom reloc %x, ram %p, value %x, limit %lX\n",
131 re_src, re_src->r_offset, offset_ptr_ram,
132 *offset_ptr_ram, text_base + size);
Graeme Russb156ff02011-12-23 15:57:58 +1100133 }
Simon Glass62f79702013-02-28 19:26:16 +0000134 } else {
135 debug(" %p: rom reloc %x, last %p\n", re_src,
136 re_src->r_offset, last_offset);
Graeme Russb156ff02011-12-23 15:57:58 +1100137 }
Simon Glass62f79702013-02-28 19:26:16 +0000138 last_offset = offset_ptr_rom;
139
Duncan Laurie0c392902012-10-23 18:04:43 +0000140 } while (++re_src < re_end);
Simon Glassdc7e2132017-01-16 07:03:53 -0700141}
Simon Glassb50b1632017-01-16 07:03:54 -0700142#endif
Simon Glassdc7e2132017-01-16 07:03:53 -0700143
144/*
145 * This function has more error checking than you might expect. Please see
146 * this commit message for more information:
147 * 62f7970a x86: Add error checking to x86 relocation code
148 */
149int do_elf_reloc_fixups(void)
150{
151 void *re_src = (void *)(&__rel_dyn_start);
152 void *re_end = (void *)(&__rel_dyn_end);
153 uint text_base;
154
155 /* The size of the region of u-boot that runs out of RAM. */
156 uintptr_t size = (uintptr_t)&__bss_end - (uintptr_t)&__text_start;
157
158 if (gd->flags & GD_FLG_SKIP_RELOC)
159 return 0;
160 if (re_src == re_end)
161 panic("No relocation data");
162
163#ifdef CONFIG_SYS_TEXT_BASE
164 text_base = CONFIG_SYS_TEXT_BASE;
165#else
166 panic("No CONFIG_SYS_TEXT_BASE");
167#endif
Simon Glassb50b1632017-01-16 07:03:54 -0700168#if CONFIG_IS_ENABLED(X86_64)
169 do_elf_reloc_fixups64(text_base, size, re_src, re_end);
170#else
Simon Glassdc7e2132017-01-16 07:03:53 -0700171 do_elf_reloc_fixups32(text_base, size, re_src, re_end);
Simon Glassb50b1632017-01-16 07:03:54 -0700172#endif
Graeme Russb156ff02011-12-23 15:57:58 +1100173
174 return 0;
175}