blob: 7802f4054594fcfa311225c542eef9256d27c4f0 [file] [log] [blame]
Alexey Brodkin22723822014-02-04 12:56:15 +04001/*
2 * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <elf.h>
Alexey Brodkin9bef24d2016-08-03 20:44:39 +03009#include <asm-generic/sections.h>
10
11extern ulong __image_copy_start;
12extern ulong __ivt_end;
Alexey Brodkin22723822014-02-04 12:56:15 +040013
14DECLARE_GLOBAL_DATA_PTR;
15
Alexey Brodkin3fb80162015-02-24 19:40:36 +030016int copy_uboot_to_ram(void)
17{
18 size_t len = (size_t)&__image_copy_end - (size_t)&__image_copy_start;
19
20 memcpy((void *)gd->relocaddr, (void *)&__image_copy_start, len);
21
22 return 0;
23}
24
25int clear_bss(void)
26{
27 ulong dst_addr = (ulong)&__bss_start + gd->reloc_off;
28 size_t len = (size_t)&__bss_end - (size_t)&__bss_start;
29
30 memset((void *)dst_addr, 0x00, len);
31
32 return 0;
33}
34
Alexey Brodkin22723822014-02-04 12:56:15 +040035/*
36 * Base functionality is taken from x86 version with added ARC-specifics
37 */
38int do_elf_reloc_fixups(void)
39{
40 Elf32_Rela *re_src = (Elf32_Rela *)(&__rel_dyn_start);
41 Elf32_Rela *re_end = (Elf32_Rela *)(&__rel_dyn_end);
42
Alexey Brodkinffffcd12016-08-03 20:45:22 +030043 debug("Section .rela.dyn is located at %08x-%08x\n",
44 (unsigned int)re_src, (unsigned int)re_end);
45
Alexey Brodkin22723822014-02-04 12:56:15 +040046 Elf32_Addr *offset_ptr_rom, *last_offset = NULL;
47 Elf32_Addr *offset_ptr_ram;
48
49 do {
50 /* Get the location from the relocation entry */
51 offset_ptr_rom = (Elf32_Addr *)re_src->r_offset;
52
53 /* Check that the location of the relocation is in .text */
Alexey Brodkin1c91a3d2014-12-26 19:36:30 +030054 if (offset_ptr_rom >= (Elf32_Addr *)&__image_copy_start &&
Alexey Brodkin22723822014-02-04 12:56:15 +040055 offset_ptr_rom > last_offset) {
56 unsigned int val;
57 /* Switch to the in-RAM version */
58 offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
59 gd->reloc_off);
60
Alexey Brodkinffffcd12016-08-03 20:45:22 +030061 debug("Patching value @ %08x (relocated to %08x)\n",
62 (unsigned int)offset_ptr_rom,
63 (unsigned int)offset_ptr_ram);
64
Alexey Brodkin22723822014-02-04 12:56:15 +040065 /*
66 * Use "memcpy" because target location might be
67 * 16-bit aligned on ARC so we may need to read
68 * byte-by-byte. On attempt to read entire word by
69 * CPU throws an exception
70 */
71 memcpy(&val, offset_ptr_ram, sizeof(int));
72
Alexey Brodkin36ae5cd2014-02-18 15:10:58 +040073#ifdef __LITTLE_ENDIAN__
Alexey Brodkin22723822014-02-04 12:56:15 +040074 /* If location in ".text" section swap value */
75 if ((unsigned int)offset_ptr_rom <
Igor Guryanov20a58ac2014-12-24 17:17:11 +030076 (unsigned int)&__ivt_end)
Alexey Brodkin22723822014-02-04 12:56:15 +040077 val = (val << 16) | (val >> 16);
Alexey Brodkin36ae5cd2014-02-18 15:10:58 +040078#endif
Alexey Brodkin22723822014-02-04 12:56:15 +040079
Alexey Brodkin1c91a3d2014-12-26 19:36:30 +030080 /* Check that the target points into executable */
81 if (val >= (unsigned int)&__image_copy_start && val <=
82 (unsigned int)&__image_copy_end) {
Alexey Brodkin22723822014-02-04 12:56:15 +040083 val += gd->reloc_off;
Alexey Brodkin36ae5cd2014-02-18 15:10:58 +040084#ifdef __LITTLE_ENDIAN__
Alexey Brodkin22723822014-02-04 12:56:15 +040085 /* If location in ".text" section swap value */
86 if ((unsigned int)offset_ptr_rom <
Igor Guryanov20a58ac2014-12-24 17:17:11 +030087 (unsigned int)&__ivt_end)
Alexey Brodkin22723822014-02-04 12:56:15 +040088 val = (val << 16) | (val >> 16);
Alexey Brodkin36ae5cd2014-02-18 15:10:58 +040089#endif
Alexey Brodkin22723822014-02-04 12:56:15 +040090 memcpy(offset_ptr_ram, &val, sizeof(int));
Alexey Brodkin22723822014-02-04 12:56:15 +040091 }
Alexey Brodkin22723822014-02-04 12:56:15 +040092 }
93 last_offset = offset_ptr_rom;
94
95 } while (++re_src < re_end);
96
97 return 0;
98}