Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved. |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <elf.h> |
Alexey Brodkin | 9bef24d | 2016-08-03 20:44:39 +0300 | [diff] [blame] | 8 | #include <asm-generic/sections.h> |
| 9 | |
| 10 | extern ulong __image_copy_start; |
| 11 | extern ulong __ivt_end; |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 12 | |
| 13 | DECLARE_GLOBAL_DATA_PTR; |
| 14 | |
Alexey Brodkin | 3fb8016 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 15 | int copy_uboot_to_ram(void) |
| 16 | { |
| 17 | size_t len = (size_t)&__image_copy_end - (size_t)&__image_copy_start; |
| 18 | |
Alexey Brodkin | 264d298 | 2015-12-16 19:24:10 +0300 | [diff] [blame] | 19 | if (gd->flags & GD_FLG_SKIP_RELOC) |
| 20 | return 0; |
| 21 | |
Alexey Brodkin | 3fb8016 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 22 | memcpy((void *)gd->relocaddr, (void *)&__image_copy_start, len); |
| 23 | |
| 24 | return 0; |
| 25 | } |
| 26 | |
| 27 | int 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 Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 37 | /* |
| 38 | * Base functionality is taken from x86 version with added ARC-specifics |
| 39 | */ |
| 40 | int 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 Brodkin | 264d298 | 2015-12-16 19:24:10 +0300 | [diff] [blame] | 45 | if (gd->flags & GD_FLG_SKIP_RELOC) |
| 46 | return 0; |
| 47 | |
Alexey Brodkin | ffffcd1 | 2016-08-03 20:45:22 +0300 | [diff] [blame] | 48 | debug("Section .rela.dyn is located at %08x-%08x\n", |
| 49 | (unsigned int)re_src, (unsigned int)re_end); |
| 50 | |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 51 | 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 Brodkin | 1c91a3d | 2014-12-26 19:36:30 +0300 | [diff] [blame] | 59 | if (offset_ptr_rom >= (Elf32_Addr *)&__image_copy_start && |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 60 | 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 Brodkin | ffffcd1 | 2016-08-03 20:45:22 +0300 | [diff] [blame] | 66 | debug("Patching value @ %08x (relocated to %08x)\n", |
| 67 | (unsigned int)offset_ptr_rom, |
| 68 | (unsigned int)offset_ptr_ram); |
| 69 | |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 70 | /* |
| 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 Brodkin | 36ae5cd | 2014-02-18 15:10:58 +0400 | [diff] [blame] | 78 | #ifdef __LITTLE_ENDIAN__ |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 79 | /* If location in ".text" section swap value */ |
| 80 | if ((unsigned int)offset_ptr_rom < |
Igor Guryanov | 20a58ac | 2014-12-24 17:17:11 +0300 | [diff] [blame] | 81 | (unsigned int)&__ivt_end) |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 82 | val = (val << 16) | (val >> 16); |
Alexey Brodkin | 36ae5cd | 2014-02-18 15:10:58 +0400 | [diff] [blame] | 83 | #endif |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 84 | |
Alexey Brodkin | 1c91a3d | 2014-12-26 19:36:30 +0300 | [diff] [blame] | 85 | /* Check that the target points into executable */ |
| 86 | if (val >= (unsigned int)&__image_copy_start && val <= |
| 87 | (unsigned int)&__image_copy_end) { |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 88 | val += gd->reloc_off; |
Alexey Brodkin | 36ae5cd | 2014-02-18 15:10:58 +0400 | [diff] [blame] | 89 | #ifdef __LITTLE_ENDIAN__ |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 90 | /* If location in ".text" section swap value */ |
| 91 | if ((unsigned int)offset_ptr_rom < |
Igor Guryanov | 20a58ac | 2014-12-24 17:17:11 +0300 | [diff] [blame] | 92 | (unsigned int)&__ivt_end) |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 93 | val = (val << 16) | (val >> 16); |
Alexey Brodkin | 36ae5cd | 2014-02-18 15:10:58 +0400 | [diff] [blame] | 94 | #endif |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 95 | memcpy(offset_ptr_ram, &val, sizeof(int)); |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 96 | } |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 97 | } |
| 98 | last_offset = offset_ptr_rom; |
| 99 | |
| 100 | } while (++re_src < re_end); |
| 101 | |
| 102 | return 0; |
| 103 | } |