blob: a3b7428d851991c61067fcc052d858c26d5398c0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Alexey Brodkin22723822014-02-04 12:56:15 +04002/*
3 * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
Alexey Brodkin22723822014-02-04 12:56:15 +04004 */
5
6#include <common.h>
7#include <elf.h>
Alexey Brodkin9bef24d2016-08-03 20:44:39 +03008#include <asm-generic/sections.h>
9
10extern ulong __image_copy_start;
11extern ulong __ivt_end;
Alexey Brodkin22723822014-02-04 12:56:15 +040012
13DECLARE_GLOBAL_DATA_PTR;
14
Alexey Brodkin3fb80162015-02-24 19:40:36 +030015int copy_uboot_to_ram(void)
16{
17 size_t len = (size_t)&__image_copy_end - (size_t)&__image_copy_start;
18
Alexey Brodkin264d2982015-12-16 19:24:10 +030019 if (gd->flags & GD_FLG_SKIP_RELOC)
20 return 0;
21
Alexey Brodkin3fb80162015-02-24 19:40:36 +030022 memcpy((void *)gd->relocaddr, (void *)&__image_copy_start, len);
23
24 return 0;
25}
26
27int clear_bss(void)
28{
29 ulong dst_addr = (ulong)&__bss_start + gd->reloc_off;
30 size_t len = (size_t)&__bss_end - (size_t)&__bss_start;
31
32 memset((void *)dst_addr, 0x00, len);
33
34 return 0;
35}
36
Alexey Brodkin22723822014-02-04 12:56:15 +040037/*
38 * Base functionality is taken from x86 version with added ARC-specifics
39 */
40int do_elf_reloc_fixups(void)
41{
42 Elf32_Rela *re_src = (Elf32_Rela *)(&__rel_dyn_start);
43 Elf32_Rela *re_end = (Elf32_Rela *)(&__rel_dyn_end);
44
Alexey Brodkin264d2982015-12-16 19:24:10 +030045 if (gd->flags & GD_FLG_SKIP_RELOC)
46 return 0;
47
Alexey Brodkinffffcd12016-08-03 20:45:22 +030048 debug("Section .rela.dyn is located at %08x-%08x\n",
49 (unsigned int)re_src, (unsigned int)re_end);
50
Alexey Brodkin22723822014-02-04 12:56:15 +040051 Elf32_Addr *offset_ptr_rom, *last_offset = NULL;
52 Elf32_Addr *offset_ptr_ram;
53
54 do {
55 /* Get the location from the relocation entry */
56 offset_ptr_rom = (Elf32_Addr *)re_src->r_offset;
57
58 /* Check that the location of the relocation is in .text */
Alexey Brodkin1c91a3d2014-12-26 19:36:30 +030059 if (offset_ptr_rom >= (Elf32_Addr *)&__image_copy_start &&
Alexey Brodkin22723822014-02-04 12:56:15 +040060 offset_ptr_rom > last_offset) {
61 unsigned int val;
62 /* Switch to the in-RAM version */
63 offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
64 gd->reloc_off);
65
Alexey Brodkinffffcd12016-08-03 20:45:22 +030066 debug("Patching value @ %08x (relocated to %08x)\n",
67 (unsigned int)offset_ptr_rom,
68 (unsigned int)offset_ptr_ram);
69
Alexey Brodkin22723822014-02-04 12:56:15 +040070 /*
71 * Use "memcpy" because target location might be
72 * 16-bit aligned on ARC so we may need to read
73 * byte-by-byte. On attempt to read entire word by
74 * CPU throws an exception
75 */
76 memcpy(&val, offset_ptr_ram, sizeof(int));
77
Alexey Brodkin36ae5cd2014-02-18 15:10:58 +040078#ifdef __LITTLE_ENDIAN__
Alexey Brodkin22723822014-02-04 12:56:15 +040079 /* If location in ".text" section swap value */
80 if ((unsigned int)offset_ptr_rom <
Igor Guryanov20a58ac2014-12-24 17:17:11 +030081 (unsigned int)&__ivt_end)
Alexey Brodkin22723822014-02-04 12:56:15 +040082 val = (val << 16) | (val >> 16);
Alexey Brodkin36ae5cd2014-02-18 15:10:58 +040083#endif
Alexey Brodkin22723822014-02-04 12:56:15 +040084
Alexey Brodkin1c91a3d2014-12-26 19:36:30 +030085 /* Check that the target points into executable */
86 if (val >= (unsigned int)&__image_copy_start && val <=
87 (unsigned int)&__image_copy_end) {
Alexey Brodkin22723822014-02-04 12:56:15 +040088 val += gd->reloc_off;
Alexey Brodkin36ae5cd2014-02-18 15:10:58 +040089#ifdef __LITTLE_ENDIAN__
Alexey Brodkin22723822014-02-04 12:56:15 +040090 /* If location in ".text" section swap value */
91 if ((unsigned int)offset_ptr_rom <
Igor Guryanov20a58ac2014-12-24 17:17:11 +030092 (unsigned int)&__ivt_end)
Alexey Brodkin22723822014-02-04 12:56:15 +040093 val = (val << 16) | (val >> 16);
Alexey Brodkin36ae5cd2014-02-18 15:10:58 +040094#endif
Alexey Brodkin22723822014-02-04 12:56:15 +040095 memcpy(offset_ptr_ram, &val, sizeof(int));
Alexey Brodkin22723822014-02-04 12:56:15 +040096 }
Alexey Brodkin22723822014-02-04 12:56:15 +040097 }
98 last_offset = offset_ptr_rom;
99
100 } while (++re_src < re_end);
101
102 return 0;
103}