blob: 050f9d07c2f0c34afbf4d8c3c8c781c46ec6cc05 [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 Glass6bcb8ad2014-10-15 04:38:36 -060018#include <inttypes.h>
Simon Glasse47b2d62017-03-31 08:40:38 -060019#include <relocate.h>
Graeme Russb156ff02011-12-23 15:57:58 +110020#include <asm/u-boot-x86.h>
Simon Glass86cfb6b2013-03-05 14:39:54 +000021#include <asm/sections.h>
Graeme Russb156ff02011-12-23 15:57:58 +110022#include <elf.h>
23
Simon Glass7282d832013-04-17 16:13:33 +000024DECLARE_GLOBAL_DATA_PTR;
25
Graeme Russa1d57b72011-12-23 21:14:22 +110026int copy_uboot_to_ram(void)
Graeme Russb156ff02011-12-23 15:57:58 +110027{
Simon Glassf196bd22017-01-16 07:03:55 -070028 size_t len = (uintptr_t)&__data_end - (uintptr_t)&__text_start;
Graeme Russb156ff02011-12-23 15:57:58 +110029
Simon Glass981dca62015-08-04 12:33:44 -060030 if (gd->flags & GD_FLG_SKIP_RELOC)
31 return 0;
Graeme Russb156ff02011-12-23 15:57:58 +110032 memcpy((void *)gd->relocaddr, (void *)&__text_start, len);
33
34 return 0;
35}
36
Graeme Russa1d57b72011-12-23 21:14:22 +110037int clear_bss(void)
Graeme Russb156ff02011-12-23 15:57:58 +110038{
39 ulong dst_addr = (ulong)&__bss_start + gd->reloc_off;
Simon Glassf196bd22017-01-16 07:03:55 -070040 size_t len = (uintptr_t)&__bss_end - (uintptr_t)&__bss_start;
Graeme Russb156ff02011-12-23 15:57:58 +110041
Simon Glass981dca62015-08-04 12:33:44 -060042 if (gd->flags & GD_FLG_SKIP_RELOC)
43 return 0;
Graeme Russb156ff02011-12-23 15:57:58 +110044 memset((void *)dst_addr, 0x00, len);
45
46 return 0;
47}
48
Simon Glassb50b1632017-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 {
57 /* Get the location from the relocation entry */
58 offset_ptr_rom = (Elf64_Addr *)(uintptr_t)re_src->r_offset;
59
60 /* Check that the location of the relocation is in .text */
61 if (offset_ptr_rom >= (Elf64_Addr *)(uintptr_t)text_base &&
62 offset_ptr_rom > last_offset) {
63 /* Switch to the in-RAM version */
64 offset_ptr_ram = (Elf64_Addr *)((ulong)offset_ptr_rom +
65 gd->reloc_off);
66
67 /* Check that the target points into .text */
68 if (*offset_ptr_ram >= text_base &&
69 *offset_ptr_ram <= text_base + size) {
70 *offset_ptr_ram = gd->reloc_off +
71 re_src->r_addend;
72 } else {
73 debug(" %p: %lx: rom reloc %lx, ram %p, value %lx, limit %"
74 PRIXPTR "\n",
75 re_src, (ulong)re_src->r_info,
76 (ulong)re_src->r_offset, offset_ptr_ram,
77 (ulong)*offset_ptr_ram, text_base + size);
78 }
79 } else {
80 debug(" %p: %lx: rom reloc %lx, last %p\n", re_src,
81 (ulong)re_src->r_info, (ulong)re_src->r_offset,
82 last_offset);
83 }
84 last_offset = offset_ptr_rom;
85
86 } while (++re_src < re_end);
87}
88#else
Simon Glassdc7e2132017-01-16 07:03:53 -070089static void do_elf_reloc_fixups32(unsigned int text_base, uintptr_t size,
90 Elf32_Rel *re_src, Elf32_Rel *re_end)
Graeme Russb156ff02011-12-23 15:57:58 +110091{
Simon Glass62f79702013-02-28 19:26:16 +000092 Elf32_Addr *offset_ptr_rom, *last_offset = NULL;
Graeme Russb156ff02011-12-23 15:57:58 +110093 Elf32_Addr *offset_ptr_ram;
94
Graeme Russb156ff02011-12-23 15:57:58 +110095 do {
96 /* Get the location from the relocation entry */
Simon Glassdc7e2132017-01-16 07:03:53 -070097 offset_ptr_rom = (Elf32_Addr *)(uintptr_t)re_src->r_offset;
Graeme Russb156ff02011-12-23 15:57:58 +110098
99 /* Check that the location of the relocation is in .text */
Simon Glassdc7e2132017-01-16 07:03:53 -0700100 if (offset_ptr_rom >= (Elf32_Addr *)(uintptr_t)text_base &&
Simon Glassa42bfe02015-08-04 12:33:49 -0600101 offset_ptr_rom > last_offset) {
Graeme Russb156ff02011-12-23 15:57:58 +1100102
103 /* Switch to the in-RAM version */
104 offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
105 gd->reloc_off);
106
107 /* Check that the target points into .text */
Simon Glassa42bfe02015-08-04 12:33:49 -0600108 if (*offset_ptr_ram >= text_base &&
109 *offset_ptr_ram <= text_base + size) {
Graeme Russb156ff02011-12-23 15:57:58 +1100110 *offset_ptr_ram += gd->reloc_off;
Simon Glass62f79702013-02-28 19:26:16 +0000111 } else {
112 debug(" %p: rom reloc %x, ram %p, value %x,"
Simon Glass6bcb8ad2014-10-15 04:38:36 -0600113 " limit %" PRIXPTR "\n", re_src,
Simon Glass62f79702013-02-28 19:26:16 +0000114 re_src->r_offset, offset_ptr_ram,
115 *offset_ptr_ram,
Simon Glassa42bfe02015-08-04 12:33:49 -0600116 text_base + size);
Graeme Russb156ff02011-12-23 15:57:58 +1100117 }
Simon Glass62f79702013-02-28 19:26:16 +0000118 } else {
119 debug(" %p: rom reloc %x, last %p\n", re_src,
120 re_src->r_offset, last_offset);
Graeme Russb156ff02011-12-23 15:57:58 +1100121 }
Simon Glass62f79702013-02-28 19:26:16 +0000122 last_offset = offset_ptr_rom;
123
Duncan Laurie0c392902012-10-23 18:04:43 +0000124 } while (++re_src < re_end);
Simon Glassdc7e2132017-01-16 07:03:53 -0700125}
Simon Glassb50b1632017-01-16 07:03:54 -0700126#endif
Simon Glassdc7e2132017-01-16 07:03:53 -0700127
128/*
129 * This function has more error checking than you might expect. Please see
130 * this commit message for more information:
131 * 62f7970a x86: Add error checking to x86 relocation code
132 */
133int do_elf_reloc_fixups(void)
134{
135 void *re_src = (void *)(&__rel_dyn_start);
136 void *re_end = (void *)(&__rel_dyn_end);
137 uint text_base;
138
139 /* The size of the region of u-boot that runs out of RAM. */
140 uintptr_t size = (uintptr_t)&__bss_end - (uintptr_t)&__text_start;
141
142 if (gd->flags & GD_FLG_SKIP_RELOC)
143 return 0;
144 if (re_src == re_end)
145 panic("No relocation data");
146
147#ifdef CONFIG_SYS_TEXT_BASE
148 text_base = CONFIG_SYS_TEXT_BASE;
149#else
150 panic("No CONFIG_SYS_TEXT_BASE");
151#endif
Simon Glassb50b1632017-01-16 07:03:54 -0700152#if CONFIG_IS_ENABLED(X86_64)
153 do_elf_reloc_fixups64(text_base, size, re_src, re_end);
154#else
Simon Glassdc7e2132017-01-16 07:03:53 -0700155 do_elf_reloc_fixups32(text_base, size, re_src, re_end);
Simon Glassb50b1632017-01-16 07:03:54 -0700156#endif
Graeme Russb156ff02011-12-23 15:57:58 +1100157
158 return 0;
159}