blob: 7797782563bb7f6dc736440fa6fa7aa0818a9e5a [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>
9#include <asm/sections.h>
10
11DECLARE_GLOBAL_DATA_PTR;
12
13/*
14 * Base functionality is taken from x86 version with added ARC-specifics
15 */
16int do_elf_reloc_fixups(void)
17{
18 Elf32_Rela *re_src = (Elf32_Rela *)(&__rel_dyn_start);
19 Elf32_Rela *re_end = (Elf32_Rela *)(&__rel_dyn_end);
20
21 Elf32_Addr *offset_ptr_rom, *last_offset = NULL;
22 Elf32_Addr *offset_ptr_ram;
23
24 do {
25 /* Get the location from the relocation entry */
26 offset_ptr_rom = (Elf32_Addr *)re_src->r_offset;
27
28 /* Check that the location of the relocation is in .text */
Alexey Brodkin1c91a3d2014-12-26 19:36:30 +030029 if (offset_ptr_rom >= (Elf32_Addr *)&__image_copy_start &&
Alexey Brodkin22723822014-02-04 12:56:15 +040030 offset_ptr_rom > last_offset) {
31 unsigned int val;
32 /* Switch to the in-RAM version */
33 offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
34 gd->reloc_off);
35
36 /*
37 * Use "memcpy" because target location might be
38 * 16-bit aligned on ARC so we may need to read
39 * byte-by-byte. On attempt to read entire word by
40 * CPU throws an exception
41 */
42 memcpy(&val, offset_ptr_ram, sizeof(int));
43
Alexey Brodkin36ae5cd2014-02-18 15:10:58 +040044#ifdef __LITTLE_ENDIAN__
Alexey Brodkin22723822014-02-04 12:56:15 +040045 /* If location in ".text" section swap value */
46 if ((unsigned int)offset_ptr_rom <
Igor Guryanov20a58ac2014-12-24 17:17:11 +030047 (unsigned int)&__ivt_end)
Alexey Brodkin22723822014-02-04 12:56:15 +040048 val = (val << 16) | (val >> 16);
Alexey Brodkin36ae5cd2014-02-18 15:10:58 +040049#endif
Alexey Brodkin22723822014-02-04 12:56:15 +040050
Alexey Brodkin1c91a3d2014-12-26 19:36:30 +030051 /* Check that the target points into executable */
52 if (val >= (unsigned int)&__image_copy_start && val <=
53 (unsigned int)&__image_copy_end) {
Alexey Brodkin22723822014-02-04 12:56:15 +040054 val += gd->reloc_off;
Alexey Brodkin36ae5cd2014-02-18 15:10:58 +040055#ifdef __LITTLE_ENDIAN__
Alexey Brodkin22723822014-02-04 12:56:15 +040056 /* If location in ".text" section swap value */
57 if ((unsigned int)offset_ptr_rom <
Igor Guryanov20a58ac2014-12-24 17:17:11 +030058 (unsigned int)&__ivt_end)
Alexey Brodkin22723822014-02-04 12:56:15 +040059 val = (val << 16) | (val >> 16);
Alexey Brodkin36ae5cd2014-02-18 15:10:58 +040060#endif
Alexey Brodkin22723822014-02-04 12:56:15 +040061 memcpy(offset_ptr_ram, &val, sizeof(int));
Alexey Brodkin22723822014-02-04 12:56:15 +040062 }
Alexey Brodkin22723822014-02-04 12:56:15 +040063 }
64 last_offset = offset_ptr_rom;
65
66 } while (++re_src < re_end);
67
68 return 0;
69}