blob: 9ce56062d24732da8f729572c38e3d903867c583 [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
Simon Glass0f2af882020-05-10 11:40:05 -060017#include <log.h>
Simon Glass6ab91072017-03-31 08:40:38 -060018#include <relocate.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060019#include <asm/global_data.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{
Shiji Yangeff11fa2023-08-03 09:47:17 +080028 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;
Shiji Yangeff11fa2023-08-03 09:47:17 +080032 memcpy((void *)gd->relocaddr, (void *)__text_start, len);
Graeme Russ6ae6dd82011-12-23 15:57:58 +110033
34 return 0;
35}
36
Simon Glassf3d73ea2022-01-04 03:51:13 -070037#ifndef CONFIG_EFI_APP
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110038int clear_bss(void)
Graeme Russ6ae6dd82011-12-23 15:57:58 +110039{
Shiji Yangeff11fa2023-08-03 09:47:17 +080040 ulong dst_addr = (ulong)__bss_start + gd->reloc_off;
41 size_t len = (uintptr_t)__bss_end - (uintptr_t)__bss_start;
Graeme Russ6ae6dd82011-12-23 15:57:58 +110042
Simon Glassc6157732015-08-04 12:33:44 -060043 if (gd->flags & GD_FLG_SKIP_RELOC)
44 return 0;
Graeme Russ6ae6dd82011-12-23 15:57:58 +110045 memset((void *)dst_addr, 0x00, len);
46
47 return 0;
48}
Simon Glassf3d73ea2022-01-04 03:51:13 -070049#endif
Graeme Russ6ae6dd82011-12-23 15:57:58 +110050
Simon Glass010af862017-01-16 07:03:54 -070051#if CONFIG_IS_ENABLED(X86_64)
52static void do_elf_reloc_fixups64(unsigned int text_base, uintptr_t size,
53 Elf64_Rela *re_src, Elf64_Rela *re_end)
54{
55 Elf64_Addr *offset_ptr_rom, *last_offset = NULL;
56 Elf64_Addr *offset_ptr_ram;
57
58 do {
Heinrich Schuchardta7e8bb32018-10-13 20:52:06 -070059 unsigned long long type = ELF64_R_TYPE(re_src->r_info);
60
61 if (type != R_X86_64_RELATIVE) {
62 printf("%s: unsupported relocation type 0x%llx "
63 "at %p, ", __func__, type, re_src);
64 printf("offset = 0x%llx\n", re_src->r_offset);
65 continue;
66 }
67
Simon Glass010af862017-01-16 07:03:54 -070068 /* Get the location from the relocation entry */
69 offset_ptr_rom = (Elf64_Addr *)(uintptr_t)re_src->r_offset;
70
71 /* Check that the location of the relocation is in .text */
72 if (offset_ptr_rom >= (Elf64_Addr *)(uintptr_t)text_base &&
73 offset_ptr_rom > last_offset) {
74 /* Switch to the in-RAM version */
75 offset_ptr_ram = (Elf64_Addr *)((ulong)offset_ptr_rom +
76 gd->reloc_off);
77
78 /* Check that the target points into .text */
79 if (*offset_ptr_ram >= text_base &&
80 *offset_ptr_ram <= text_base + size) {
81 *offset_ptr_ram = gd->reloc_off +
82 re_src->r_addend;
83 } else {
Masahiro Yamadac7570a32018-08-06 20:47:40 +090084 debug(" %p: %lx: rom reloc %lx, ram %p, value %lx, limit %lX\n",
Simon Glass010af862017-01-16 07:03:54 -070085 re_src, (ulong)re_src->r_info,
86 (ulong)re_src->r_offset, offset_ptr_ram,
87 (ulong)*offset_ptr_ram, text_base + size);
88 }
89 } else {
90 debug(" %p: %lx: rom reloc %lx, last %p\n", re_src,
91 (ulong)re_src->r_info, (ulong)re_src->r_offset,
92 last_offset);
93 }
94 last_offset = offset_ptr_rom;
95
96 } while (++re_src < re_end);
97}
98#else
Simon Glassc8979072017-01-16 07:03:53 -070099static void do_elf_reloc_fixups32(unsigned int text_base, uintptr_t size,
100 Elf32_Rel *re_src, Elf32_Rel *re_end)
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100101{
Simon Glassb0ba9a42013-02-28 19:26:16 +0000102 Elf32_Addr *offset_ptr_rom, *last_offset = NULL;
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100103 Elf32_Addr *offset_ptr_ram;
104
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100105 do {
Heinrich Schuchardta7e8bb32018-10-13 20:52:06 -0700106 unsigned int type = ELF32_R_TYPE(re_src->r_info);
107
108 if (type != R_386_RELATIVE) {
109 printf("%s: unsupported relocation type 0x%x "
110 "at %p, ", __func__, type, re_src);
111 printf("offset = 0x%x\n", re_src->r_offset);
112 continue;
113 }
114
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100115 /* Get the location from the relocation entry */
Simon Glassc8979072017-01-16 07:03:53 -0700116 offset_ptr_rom = (Elf32_Addr *)(uintptr_t)re_src->r_offset;
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100117
118 /* Check that the location of the relocation is in .text */
Simon Glassc8979072017-01-16 07:03:53 -0700119 if (offset_ptr_rom >= (Elf32_Addr *)(uintptr_t)text_base &&
Simon Glass32ad3c02015-08-04 12:33:49 -0600120 offset_ptr_rom > last_offset) {
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100121
122 /* Switch to the in-RAM version */
123 offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
124 gd->reloc_off);
125
126 /* Check that the target points into .text */
Simon Glass32ad3c02015-08-04 12:33:49 -0600127 if (*offset_ptr_ram >= text_base &&
128 *offset_ptr_ram <= text_base + size) {
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100129 *offset_ptr_ram += gd->reloc_off;
Simon Glassb0ba9a42013-02-28 19:26:16 +0000130 } else {
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900131 debug(" %p: rom reloc %x, ram %p, value %x, limit %lX\n",
132 re_src, re_src->r_offset, offset_ptr_ram,
133 *offset_ptr_ram, text_base + size);
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100134 }
Simon Glassb0ba9a42013-02-28 19:26:16 +0000135 } else {
136 debug(" %p: rom reloc %x, last %p\n", re_src,
137 re_src->r_offset, last_offset);
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100138 }
Simon Glassb0ba9a42013-02-28 19:26:16 +0000139 last_offset = offset_ptr_rom;
140
Duncan Lauriebf4c9fb2012-10-23 18:04:43 +0000141 } while (++re_src < re_end);
Simon Glassc8979072017-01-16 07:03:53 -0700142}
Simon Glass010af862017-01-16 07:03:54 -0700143#endif
Simon Glassc8979072017-01-16 07:03:53 -0700144
145/*
146 * This function has more error checking than you might expect. Please see
147 * this commit message for more information:
148 * 62f7970a x86: Add error checking to x86 relocation code
149 */
150int do_elf_reloc_fixups(void)
151{
Shiji Yangeff11fa2023-08-03 09:47:17 +0800152 void *re_src = (void *)__rel_dyn_start;
153 void *re_end = (void *)__rel_dyn_end;
Simon Glassc8979072017-01-16 07:03:53 -0700154 uint text_base;
155
156 /* The size of the region of u-boot that runs out of RAM. */
Shiji Yangeff11fa2023-08-03 09:47:17 +0800157 uintptr_t size = (uintptr_t)__bss_end - (uintptr_t)__text_start;
Simon Glassc8979072017-01-16 07:03:53 -0700158
159 if (gd->flags & GD_FLG_SKIP_RELOC)
160 return 0;
161 if (re_src == re_end)
162 panic("No relocation data");
163
Simon Glass72cc5382022-10-20 18:22:39 -0600164#ifdef CONFIG_TEXT_BASE
165 text_base = CONFIG_TEXT_BASE;
Simon Glassc8979072017-01-16 07:03:53 -0700166#else
Simon Glass72cc5382022-10-20 18:22:39 -0600167 panic("No CONFIG_TEXT_BASE");
Simon Glassc8979072017-01-16 07:03:53 -0700168#endif
Simon Glass010af862017-01-16 07:03:54 -0700169#if CONFIG_IS_ENABLED(X86_64)
170 do_elf_reloc_fixups64(text_base, size, re_src, re_end);
171#else
Simon Glassc8979072017-01-16 07:03:53 -0700172 do_elf_reloc_fixups32(text_base, size, re_src, re_end);
Simon Glass010af862017-01-16 07:03:54 -0700173#endif
Graeme Russ6ae6dd82011-12-23 15:57:58 +1100174
175 return 0;
176}