Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 1 | /* |
| 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 Brodkin | 2f78eec | 2016-08-03 20:44:39 +0300 | [diff] [blame] | 9 | #include <asm-generic/sections.h> |
| 10 | |
| 11 | extern ulong __image_copy_start; |
| 12 | extern ulong __ivt_end; |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 13 | |
| 14 | DECLARE_GLOBAL_DATA_PTR; |
| 15 | |
Alexey Brodkin | 913e9f0 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 16 | int copy_uboot_to_ram(void) |
| 17 | { |
| 18 | size_t len = (size_t)&__image_copy_end - (size_t)&__image_copy_start; |
| 19 | |
Alexey Brodkin | c157ab9 | 2015-12-16 19:24:10 +0300 | [diff] [blame^] | 20 | if (gd->flags & GD_FLG_SKIP_RELOC) |
| 21 | return 0; |
| 22 | |
Alexey Brodkin | 913e9f0 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 23 | memcpy((void *)gd->relocaddr, (void *)&__image_copy_start, len); |
| 24 | |
| 25 | return 0; |
| 26 | } |
| 27 | |
| 28 | int clear_bss(void) |
| 29 | { |
| 30 | ulong dst_addr = (ulong)&__bss_start + gd->reloc_off; |
| 31 | size_t len = (size_t)&__bss_end - (size_t)&__bss_start; |
| 32 | |
| 33 | memset((void *)dst_addr, 0x00, len); |
| 34 | |
| 35 | return 0; |
| 36 | } |
| 37 | |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 38 | /* |
| 39 | * Base functionality is taken from x86 version with added ARC-specifics |
| 40 | */ |
| 41 | int do_elf_reloc_fixups(void) |
| 42 | { |
| 43 | Elf32_Rela *re_src = (Elf32_Rela *)(&__rel_dyn_start); |
| 44 | Elf32_Rela *re_end = (Elf32_Rela *)(&__rel_dyn_end); |
| 45 | |
Alexey Brodkin | c157ab9 | 2015-12-16 19:24:10 +0300 | [diff] [blame^] | 46 | if (gd->flags & GD_FLG_SKIP_RELOC) |
| 47 | return 0; |
| 48 | |
Alexey Brodkin | 0347812 | 2016-08-03 20:45:22 +0300 | [diff] [blame] | 49 | debug("Section .rela.dyn is located at %08x-%08x\n", |
| 50 | (unsigned int)re_src, (unsigned int)re_end); |
| 51 | |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 52 | Elf32_Addr *offset_ptr_rom, *last_offset = NULL; |
| 53 | Elf32_Addr *offset_ptr_ram; |
| 54 | |
| 55 | do { |
| 56 | /* Get the location from the relocation entry */ |
| 57 | offset_ptr_rom = (Elf32_Addr *)re_src->r_offset; |
| 58 | |
| 59 | /* Check that the location of the relocation is in .text */ |
Alexey Brodkin | b4ee139 | 2014-12-26 19:36:30 +0300 | [diff] [blame] | 60 | if (offset_ptr_rom >= (Elf32_Addr *)&__image_copy_start && |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 61 | offset_ptr_rom > last_offset) { |
| 62 | unsigned int val; |
| 63 | /* Switch to the in-RAM version */ |
| 64 | offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom + |
| 65 | gd->reloc_off); |
| 66 | |
Alexey Brodkin | 0347812 | 2016-08-03 20:45:22 +0300 | [diff] [blame] | 67 | debug("Patching value @ %08x (relocated to %08x)\n", |
| 68 | (unsigned int)offset_ptr_rom, |
| 69 | (unsigned int)offset_ptr_ram); |
| 70 | |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 71 | /* |
| 72 | * Use "memcpy" because target location might be |
| 73 | * 16-bit aligned on ARC so we may need to read |
| 74 | * byte-by-byte. On attempt to read entire word by |
| 75 | * CPU throws an exception |
| 76 | */ |
| 77 | memcpy(&val, offset_ptr_ram, sizeof(int)); |
| 78 | |
Alexey Brodkin | 79f2e2e | 2014-02-18 15:10:58 +0400 | [diff] [blame] | 79 | #ifdef __LITTLE_ENDIAN__ |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 80 | /* If location in ".text" section swap value */ |
| 81 | if ((unsigned int)offset_ptr_rom < |
Igor Guryanov | 4fec6aa | 2014-12-24 17:17:11 +0300 | [diff] [blame] | 82 | (unsigned int)&__ivt_end) |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 83 | val = (val << 16) | (val >> 16); |
Alexey Brodkin | 79f2e2e | 2014-02-18 15:10:58 +0400 | [diff] [blame] | 84 | #endif |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 85 | |
Alexey Brodkin | b4ee139 | 2014-12-26 19:36:30 +0300 | [diff] [blame] | 86 | /* Check that the target points into executable */ |
| 87 | if (val >= (unsigned int)&__image_copy_start && val <= |
| 88 | (unsigned int)&__image_copy_end) { |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 89 | val += gd->reloc_off; |
Alexey Brodkin | 79f2e2e | 2014-02-18 15:10:58 +0400 | [diff] [blame] | 90 | #ifdef __LITTLE_ENDIAN__ |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 91 | /* If location in ".text" section swap value */ |
| 92 | if ((unsigned int)offset_ptr_rom < |
Igor Guryanov | 4fec6aa | 2014-12-24 17:17:11 +0300 | [diff] [blame] | 93 | (unsigned int)&__ivt_end) |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 94 | val = (val << 16) | (val >> 16); |
Alexey Brodkin | 79f2e2e | 2014-02-18 15:10:58 +0400 | [diff] [blame] | 95 | #endif |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 96 | memcpy(offset_ptr_ram, &val, sizeof(int)); |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 97 | } |
Alexey Brodkin | b628c01 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 98 | } |
| 99 | last_offset = offset_ptr_rom; |
| 100 | |
| 101 | } while (++re_src < re_end); |
| 102 | |
| 103 | return 0; |
| 104 | } |