blob: 4ffba84eeb3ec2a3d022111f0b4f52182f947de7 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Alexey Brodkinb628c012014-02-04 12:56:15 +04002/*
3 * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
Alexey Brodkinb628c012014-02-04 12:56:15 +04004 */
5
6#include <common.h>
7#include <elf.h>
Alexey Brodkin2f78eec2016-08-03 20:44:39 +03008#include <asm-generic/sections.h>
9
10extern ulong __image_copy_start;
Alexey Brodkinf711e542018-05-29 18:09:55 +030011extern ulong __ivt_start;
Alexey Brodkin2f78eec2016-08-03 20:44:39 +030012extern ulong __ivt_end;
Alexey Brodkinf711e542018-05-29 18:09:55 +030013extern ulong __text_end;
Alexey Brodkinb628c012014-02-04 12:56:15 +040014
15DECLARE_GLOBAL_DATA_PTR;
16
Alexey Brodkin913e9f02015-02-24 19:40:36 +030017int copy_uboot_to_ram(void)
18{
19 size_t len = (size_t)&__image_copy_end - (size_t)&__image_copy_start;
20
Alexey Brodkinc157ab92015-12-16 19:24:10 +030021 if (gd->flags & GD_FLG_SKIP_RELOC)
22 return 0;
23
Alexey Brodkin913e9f02015-02-24 19:40:36 +030024 memcpy((void *)gd->relocaddr, (void *)&__image_copy_start, len);
25
26 return 0;
27}
28
29int clear_bss(void)
30{
31 ulong dst_addr = (ulong)&__bss_start + gd->reloc_off;
32 size_t len = (size_t)&__bss_end - (size_t)&__bss_start;
33
34 memset((void *)dst_addr, 0x00, len);
35
36 return 0;
37}
38
Alexey Brodkinb628c012014-02-04 12:56:15 +040039/*
40 * Base functionality is taken from x86 version with added ARC-specifics
41 */
42int do_elf_reloc_fixups(void)
43{
44 Elf32_Rela *re_src = (Elf32_Rela *)(&__rel_dyn_start);
45 Elf32_Rela *re_end = (Elf32_Rela *)(&__rel_dyn_end);
46
Alexey Brodkinc157ab92015-12-16 19:24:10 +030047 if (gd->flags & GD_FLG_SKIP_RELOC)
48 return 0;
49
Alexey Brodkin03478122016-08-03 20:45:22 +030050 debug("Section .rela.dyn is located at %08x-%08x\n",
51 (unsigned int)re_src, (unsigned int)re_end);
52
Alexey Brodkinf711e542018-05-29 18:09:55 +030053 Elf32_Addr *offset_ptr_rom;
Alexey Brodkinb628c012014-02-04 12:56:15 +040054 Elf32_Addr *offset_ptr_ram;
55
56 do {
57 /* Get the location from the relocation entry */
58 offset_ptr_rom = (Elf32_Addr *)re_src->r_offset;
59
60 /* Check that the location of the relocation is in .text */
Alexey Brodkinb4ee1392014-12-26 19:36:30 +030061 if (offset_ptr_rom >= (Elf32_Addr *)&__image_copy_start &&
Alexey Brodkinf711e542018-05-29 18:09:55 +030062 offset_ptr_rom < (Elf32_Addr *)&__image_copy_end) {
63 unsigned int val, do_swap = 0;
Alexey Brodkinb628c012014-02-04 12:56:15 +040064 /* Switch to the in-RAM version */
65 offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
66 gd->reloc_off);
67
Alexey Brodkinf711e542018-05-29 18:09:55 +030068#ifdef __LITTLE_ENDIAN__
69 /* If location in ".text" section swap value */
70 if (((u32)offset_ptr_rom >= (u32)&__text_start &&
71 (u32)offset_ptr_rom <= (u32)&__text_end)
72#if defined(__ARC700__) || defined(__ARC600__)
73 || ((u32)offset_ptr_rom >= (u32)&__ivt_start &&
74 (u32)offset_ptr_rom <= (u32)&__ivt_end)
75#endif
76 )
77 do_swap = 1;
78#endif
79
80 debug("Patching value @ %08x (relocated to %08x)%s\n",
Alexey Brodkin03478122016-08-03 20:45:22 +030081 (unsigned int)offset_ptr_rom,
Alexey Brodkinf711e542018-05-29 18:09:55 +030082 (unsigned int)offset_ptr_ram,
83 do_swap ? ", middle-endian encoded" : "");
Alexey Brodkin03478122016-08-03 20:45:22 +030084
Alexey Brodkinb628c012014-02-04 12:56:15 +040085 /*
86 * Use "memcpy" because target location might be
87 * 16-bit aligned on ARC so we may need to read
88 * byte-by-byte. On attempt to read entire word by
89 * CPU throws an exception
90 */
91 memcpy(&val, offset_ptr_ram, sizeof(int));
92
Alexey Brodkinf711e542018-05-29 18:09:55 +030093 if (do_swap)
Alexey Brodkinb628c012014-02-04 12:56:15 +040094 val = (val << 16) | (val >> 16);
95
Alexey Brodkinb4ee1392014-12-26 19:36:30 +030096 /* Check that the target points into executable */
Alexey Brodkinf711e542018-05-29 18:09:55 +030097 if (val < (unsigned int)&__image_copy_start ||
98 val > (unsigned int)&__image_copy_end) {
99 /* TODO: Use panic() instead of debug()
100 *
101 * For some reason GCC might generate
102 * fake relocation even for LD/SC of constant
103 * inderectly. See an example below:
104 * ----------------------->8--------------------
105 * static int setup_mon_len(void)
106 * {
107 * gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
108 * return 0;
109 * }
110 * ----------------------->8--------------------
111 *
112 * And that's what we get in the binary:
113 * ----------------------->8--------------------
114 * 10005cb4 <setup_mon_len>:
115 * 10005cb4: 193c 3f80 0003 2f80 st 0x32f80,[r25,60]
116 * 10005cb8: R_ARC_RELATIVE *ABS*-0x10000000
117 * 10005cbc: 7fe0 j_s.d [blink]
118 * 10005cbe: 700c mov_s r0,0
119 * ----------------------->8--------------------
120 */
121 debug("Relocation target %08x points outside of image\n",
122 val);
Alexey Brodkinb628c012014-02-04 12:56:15 +0400123 }
Alexey Brodkinb628c012014-02-04 12:56:15 +0400124
Alexey Brodkinf711e542018-05-29 18:09:55 +0300125 val += gd->reloc_off;
126
127 if (do_swap)
128 val = (val << 16) | (val >> 16);
129
130 memcpy(offset_ptr_ram, &val, sizeof(int));
131 }
Alexey Brodkinb628c012014-02-04 12:56:15 +0400132 } while (++re_src < re_end);
133
134 return 0;
135}