blob: ed10755d9c1846b7313ad2e46a17b36511f97c71 [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 Glasse47b2d62017-03-31 08:40:38 -060018#include <relocate.h>
Graeme Russb156ff02011-12-23 15:57:58 +110019#include <asm/u-boot-x86.h>
Simon Glass86cfb6b2013-03-05 14:39:54 +000020#include <asm/sections.h>
Graeme Russb156ff02011-12-23 15:57:58 +110021#include <elf.h>
22
Simon Glass7282d832013-04-17 16:13:33 +000023DECLARE_GLOBAL_DATA_PTR;
24
Graeme Russa1d57b72011-12-23 21:14:22 +110025int copy_uboot_to_ram(void)
Graeme Russb156ff02011-12-23 15:57:58 +110026{
Simon Glassf196bd22017-01-16 07:03:55 -070027 size_t len = (uintptr_t)&__data_end - (uintptr_t)&__text_start;
Graeme Russb156ff02011-12-23 15:57:58 +110028
Simon Glass981dca62015-08-04 12:33:44 -060029 if (gd->flags & GD_FLG_SKIP_RELOC)
30 return 0;
Graeme Russb156ff02011-12-23 15:57:58 +110031 memcpy((void *)gd->relocaddr, (void *)&__text_start, len);
32
33 return 0;
34}
35
Graeme Russa1d57b72011-12-23 21:14:22 +110036int clear_bss(void)
Graeme Russb156ff02011-12-23 15:57:58 +110037{
38 ulong dst_addr = (ulong)&__bss_start + gd->reloc_off;
Simon Glassf196bd22017-01-16 07:03:55 -070039 size_t len = (uintptr_t)&__bss_end - (uintptr_t)&__bss_start;
Graeme Russb156ff02011-12-23 15:57:58 +110040
Simon Glass981dca62015-08-04 12:33:44 -060041 if (gd->flags & GD_FLG_SKIP_RELOC)
42 return 0;
Graeme Russb156ff02011-12-23 15:57:58 +110043 memset((void *)dst_addr, 0x00, len);
44
45 return 0;
46}
47
Simon Glassb50b1632017-01-16 07:03:54 -070048#if CONFIG_IS_ENABLED(X86_64)
49static void do_elf_reloc_fixups64(unsigned int text_base, uintptr_t size,
50 Elf64_Rela *re_src, Elf64_Rela *re_end)
51{
52 Elf64_Addr *offset_ptr_rom, *last_offset = NULL;
53 Elf64_Addr *offset_ptr_ram;
54
55 do {
56 /* Get the location from the relocation entry */
57 offset_ptr_rom = (Elf64_Addr *)(uintptr_t)re_src->r_offset;
58
59 /* Check that the location of the relocation is in .text */
60 if (offset_ptr_rom >= (Elf64_Addr *)(uintptr_t)text_base &&
61 offset_ptr_rom > last_offset) {
62 /* Switch to the in-RAM version */
63 offset_ptr_ram = (Elf64_Addr *)((ulong)offset_ptr_rom +
64 gd->reloc_off);
65
66 /* Check that the target points into .text */
67 if (*offset_ptr_ram >= text_base &&
68 *offset_ptr_ram <= text_base + size) {
69 *offset_ptr_ram = gd->reloc_off +
70 re_src->r_addend;
71 } else {
Masahiro Yamadadee37fc2018-08-06 20:47:40 +090072 debug(" %p: %lx: rom reloc %lx, ram %p, value %lx, limit %lX\n",
Simon Glassb50b1632017-01-16 07:03:54 -070073 re_src, (ulong)re_src->r_info,
74 (ulong)re_src->r_offset, offset_ptr_ram,
75 (ulong)*offset_ptr_ram, text_base + size);
76 }
77 } else {
78 debug(" %p: %lx: rom reloc %lx, last %p\n", re_src,
79 (ulong)re_src->r_info, (ulong)re_src->r_offset,
80 last_offset);
81 }
82 last_offset = offset_ptr_rom;
83
84 } while (++re_src < re_end);
85}
86#else
Simon Glassdc7e2132017-01-16 07:03:53 -070087static void do_elf_reloc_fixups32(unsigned int text_base, uintptr_t size,
88 Elf32_Rel *re_src, Elf32_Rel *re_end)
Graeme Russb156ff02011-12-23 15:57:58 +110089{
Simon Glass62f79702013-02-28 19:26:16 +000090 Elf32_Addr *offset_ptr_rom, *last_offset = NULL;
Graeme Russb156ff02011-12-23 15:57:58 +110091 Elf32_Addr *offset_ptr_ram;
92
Graeme Russb156ff02011-12-23 15:57:58 +110093 do {
94 /* Get the location from the relocation entry */
Simon Glassdc7e2132017-01-16 07:03:53 -070095 offset_ptr_rom = (Elf32_Addr *)(uintptr_t)re_src->r_offset;
Graeme Russb156ff02011-12-23 15:57:58 +110096
97 /* Check that the location of the relocation is in .text */
Simon Glassdc7e2132017-01-16 07:03:53 -070098 if (offset_ptr_rom >= (Elf32_Addr *)(uintptr_t)text_base &&
Simon Glassa42bfe02015-08-04 12:33:49 -060099 offset_ptr_rom > last_offset) {
Graeme Russb156ff02011-12-23 15:57:58 +1100100
101 /* Switch to the in-RAM version */
102 offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
103 gd->reloc_off);
104
105 /* Check that the target points into .text */
Simon Glassa42bfe02015-08-04 12:33:49 -0600106 if (*offset_ptr_ram >= text_base &&
107 *offset_ptr_ram <= text_base + size) {
Graeme Russb156ff02011-12-23 15:57:58 +1100108 *offset_ptr_ram += gd->reloc_off;
Simon Glass62f79702013-02-28 19:26:16 +0000109 } else {
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900110 debug(" %p: rom reloc %x, ram %p, value %x, limit %lX\n",
111 re_src, re_src->r_offset, offset_ptr_ram,
112 *offset_ptr_ram, text_base + size);
Graeme Russb156ff02011-12-23 15:57:58 +1100113 }
Simon Glass62f79702013-02-28 19:26:16 +0000114 } else {
115 debug(" %p: rom reloc %x, last %p\n", re_src,
116 re_src->r_offset, last_offset);
Graeme Russb156ff02011-12-23 15:57:58 +1100117 }
Simon Glass62f79702013-02-28 19:26:16 +0000118 last_offset = offset_ptr_rom;
119
Duncan Laurie0c392902012-10-23 18:04:43 +0000120 } while (++re_src < re_end);
Simon Glassdc7e2132017-01-16 07:03:53 -0700121}
Simon Glassb50b1632017-01-16 07:03:54 -0700122#endif
Simon Glassdc7e2132017-01-16 07:03:53 -0700123
124/*
125 * This function has more error checking than you might expect. Please see
126 * this commit message for more information:
127 * 62f7970a x86: Add error checking to x86 relocation code
128 */
129int do_elf_reloc_fixups(void)
130{
131 void *re_src = (void *)(&__rel_dyn_start);
132 void *re_end = (void *)(&__rel_dyn_end);
133 uint text_base;
134
135 /* The size of the region of u-boot that runs out of RAM. */
136 uintptr_t size = (uintptr_t)&__bss_end - (uintptr_t)&__text_start;
137
138 if (gd->flags & GD_FLG_SKIP_RELOC)
139 return 0;
140 if (re_src == re_end)
141 panic("No relocation data");
142
143#ifdef CONFIG_SYS_TEXT_BASE
144 text_base = CONFIG_SYS_TEXT_BASE;
145#else
146 panic("No CONFIG_SYS_TEXT_BASE");
147#endif
Simon Glassb50b1632017-01-16 07:03:54 -0700148#if CONFIG_IS_ENABLED(X86_64)
149 do_elf_reloc_fixups64(text_base, size, re_src, re_end);
150#else
Simon Glassdc7e2132017-01-16 07:03:53 -0700151 do_elf_reloc_fixups32(text_base, size, re_src, re_end);
Simon Glassb50b1632017-01-16 07:03:54 -0700152#endif
Graeme Russb156ff02011-12-23 15:57:58 +1100153
154 return 0;
155}