blob: 861e6675b3b6724244f2d4b92ee0279de3276e88 [file] [log] [blame]
Graeme Russb156ff02011-12-23 15:57:58 +11001/*
2 * (C) Copyright 2008-2011
3 * Graeme Russ, <graeme.russ@gmail.com>
4 *
5 * (C) Copyright 2002
6 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
7 *
8 * (C) Copyright 2002
9 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
10 *
11 * (C) Copyright 2002
12 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
13 * Marius Groeger <mgroeger@sysgo.de>
14 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020015 * SPDX-License-Identifier: GPL-2.0+
Graeme Russb156ff02011-12-23 15:57:58 +110016 */
17
18#include <common.h>
Simon Glass6bcb8ad2014-10-15 04:38:36 -060019#include <inttypes.h>
Graeme Russb156ff02011-12-23 15:57:58 +110020#include <asm/u-boot-x86.h>
Graeme Russa1d57b72011-12-23 21:14:22 +110021#include <asm/relocate.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{
29 size_t len = (size_t)&__data_end - (size_t)&__text_start;
30
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;
41 size_t len = (size_t)&__bss_end - (size_t)&__bss_start;
42
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 Glassdc7e2132017-01-16 07:03:53 -070050static void do_elf_reloc_fixups32(unsigned int text_base, uintptr_t size,
51 Elf32_Rel *re_src, Elf32_Rel *re_end)
Graeme Russb156ff02011-12-23 15:57:58 +110052{
Simon Glass62f79702013-02-28 19:26:16 +000053 Elf32_Addr *offset_ptr_rom, *last_offset = NULL;
Graeme Russb156ff02011-12-23 15:57:58 +110054 Elf32_Addr *offset_ptr_ram;
55
Graeme Russb156ff02011-12-23 15:57:58 +110056 do {
57 /* Get the location from the relocation entry */
Simon Glassdc7e2132017-01-16 07:03:53 -070058 offset_ptr_rom = (Elf32_Addr *)(uintptr_t)re_src->r_offset;
Graeme Russb156ff02011-12-23 15:57:58 +110059
60 /* Check that the location of the relocation is in .text */
Simon Glassdc7e2132017-01-16 07:03:53 -070061 if (offset_ptr_rom >= (Elf32_Addr *)(uintptr_t)text_base &&
Simon Glassa42bfe02015-08-04 12:33:49 -060062 offset_ptr_rom > last_offset) {
Graeme Russb156ff02011-12-23 15:57:58 +110063
64 /* Switch to the in-RAM version */
65 offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
66 gd->reloc_off);
67
68 /* Check that the target points into .text */
Simon Glassa42bfe02015-08-04 12:33:49 -060069 if (*offset_ptr_ram >= text_base &&
70 *offset_ptr_ram <= text_base + size) {
Graeme Russb156ff02011-12-23 15:57:58 +110071 *offset_ptr_ram += gd->reloc_off;
Simon Glass62f79702013-02-28 19:26:16 +000072 } else {
73 debug(" %p: rom reloc %x, ram %p, value %x,"
Simon Glass6bcb8ad2014-10-15 04:38:36 -060074 " limit %" PRIXPTR "\n", re_src,
Simon Glass62f79702013-02-28 19:26:16 +000075 re_src->r_offset, offset_ptr_ram,
76 *offset_ptr_ram,
Simon Glassa42bfe02015-08-04 12:33:49 -060077 text_base + size);
Graeme Russb156ff02011-12-23 15:57:58 +110078 }
Simon Glass62f79702013-02-28 19:26:16 +000079 } else {
80 debug(" %p: rom reloc %x, last %p\n", re_src,
81 re_src->r_offset, last_offset);
Graeme Russb156ff02011-12-23 15:57:58 +110082 }
Simon Glass62f79702013-02-28 19:26:16 +000083 last_offset = offset_ptr_rom;
84
Duncan Laurie0c392902012-10-23 18:04:43 +000085 } while (++re_src < re_end);
Simon Glassdc7e2132017-01-16 07:03:53 -070086}
87
88/*
89 * This function has more error checking than you might expect. Please see
90 * this commit message for more information:
91 * 62f7970a x86: Add error checking to x86 relocation code
92 */
93int do_elf_reloc_fixups(void)
94{
95 void *re_src = (void *)(&__rel_dyn_start);
96 void *re_end = (void *)(&__rel_dyn_end);
97 uint text_base;
98
99 /* The size of the region of u-boot that runs out of RAM. */
100 uintptr_t size = (uintptr_t)&__bss_end - (uintptr_t)&__text_start;
101
102 if (gd->flags & GD_FLG_SKIP_RELOC)
103 return 0;
104 if (re_src == re_end)
105 panic("No relocation data");
106
107#ifdef CONFIG_SYS_TEXT_BASE
108 text_base = CONFIG_SYS_TEXT_BASE;
109#else
110 panic("No CONFIG_SYS_TEXT_BASE");
111#endif
112 do_elf_reloc_fixups32(text_base, size, re_src, re_end);
Graeme Russb156ff02011-12-23 15:57:58 +1100113
114 return 0;
115}