Graeme Russ | b156ff0 | 2011-12-23 15:57:58 +1100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2008-2011 |
| 3 | * Graeme Russ, <graeme.russ@gmail.com> |
| 4 | * |
| 5 | * (C) Copyright 2002 |
| 6 | * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se> |
| 7 | * |
| 8 | * (C) Copyright 2002 |
| 9 | * Wolfgang Denk, DENX Software Engineering, <wd@denx.de> |
| 10 | * |
| 11 | * (C) Copyright 2002 |
| 12 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 13 | * Marius Groeger <mgroeger@sysgo.de> |
| 14 | * |
| 15 | * See file CREDITS for list of people who contributed to this |
| 16 | * project. |
| 17 | * |
| 18 | * This program is free software; you can redistribute it and/or |
| 19 | * modify it under the terms of the GNU General Public License as |
| 20 | * published by the Free Software Foundation; either version 2 of |
| 21 | * the License, or (at your option) any later version. |
| 22 | * |
| 23 | * This program is distributed in the hope that it will be useful, |
| 24 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 25 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 26 | * GNU General Public License for more details. |
| 27 | * |
| 28 | * You should have received a copy of the GNU General Public License |
| 29 | * along with this program; if not, write to the Free Software |
| 30 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 31 | * MA 02111-1307 USA |
| 32 | */ |
| 33 | |
| 34 | #include <common.h> |
Simon Glass | f697d52 | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 35 | #include <libfdt.h> |
Graeme Russ | b156ff0 | 2011-12-23 15:57:58 +1100 | [diff] [blame] | 36 | #include <malloc.h> |
| 37 | #include <asm/u-boot-x86.h> |
Graeme Russ | a1d57b7 | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 38 | #include <asm/relocate.h> |
Simon Glass | 86cfb6b | 2013-03-05 14:39:54 +0000 | [diff] [blame] | 39 | #include <asm/sections.h> |
Graeme Russ | b156ff0 | 2011-12-23 15:57:58 +1100 | [diff] [blame] | 40 | #include <elf.h> |
| 41 | |
Simon Glass | 7282d83 | 2013-04-17 16:13:33 +0000 | [diff] [blame] | 42 | DECLARE_GLOBAL_DATA_PTR; |
| 43 | |
Graeme Russ | a1d57b7 | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 44 | int copy_uboot_to_ram(void) |
Graeme Russ | b156ff0 | 2011-12-23 15:57:58 +1100 | [diff] [blame] | 45 | { |
| 46 | size_t len = (size_t)&__data_end - (size_t)&__text_start; |
| 47 | |
| 48 | memcpy((void *)gd->relocaddr, (void *)&__text_start, len); |
| 49 | |
| 50 | return 0; |
| 51 | } |
| 52 | |
Simon Glass | f697d52 | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 53 | int copy_fdt_to_ram(void) |
| 54 | { |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 55 | if (gd->new_fdt) { |
Simon Glass | f697d52 | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 56 | ulong fdt_size; |
| 57 | |
| 58 | fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32); |
| 59 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 60 | memcpy(gd->new_fdt, gd->fdt_blob, fdt_size); |
Simon Glass | f697d52 | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 61 | debug("Relocated fdt from %p to %p, size %lx\n", |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 62 | gd->fdt_blob, gd->new_fdt, fdt_size); |
| 63 | gd->fdt_blob = gd->new_fdt; |
Simon Glass | f697d52 | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | return 0; |
| 67 | } |
| 68 | |
Graeme Russ | a1d57b7 | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 69 | int clear_bss(void) |
Graeme Russ | b156ff0 | 2011-12-23 15:57:58 +1100 | [diff] [blame] | 70 | { |
| 71 | ulong dst_addr = (ulong)&__bss_start + gd->reloc_off; |
| 72 | size_t len = (size_t)&__bss_end - (size_t)&__bss_start; |
| 73 | |
| 74 | memset((void *)dst_addr, 0x00, len); |
| 75 | |
| 76 | return 0; |
| 77 | } |
| 78 | |
Simon Glass | 62f7970 | 2013-02-28 19:26:16 +0000 | [diff] [blame] | 79 | /* |
| 80 | * This function has more error checking than you might expect. Please see |
| 81 | * the commit message for more informaiton. |
| 82 | */ |
Graeme Russ | a1d57b7 | 2011-12-23 21:14:22 +1100 | [diff] [blame] | 83 | int do_elf_reloc_fixups(void) |
Graeme Russ | b156ff0 | 2011-12-23 15:57:58 +1100 | [diff] [blame] | 84 | { |
| 85 | Elf32_Rel *re_src = (Elf32_Rel *)(&__rel_dyn_start); |
| 86 | Elf32_Rel *re_end = (Elf32_Rel *)(&__rel_dyn_end); |
| 87 | |
Simon Glass | 62f7970 | 2013-02-28 19:26:16 +0000 | [diff] [blame] | 88 | Elf32_Addr *offset_ptr_rom, *last_offset = NULL; |
Graeme Russ | b156ff0 | 2011-12-23 15:57:58 +1100 | [diff] [blame] | 89 | Elf32_Addr *offset_ptr_ram; |
| 90 | |
| 91 | /* The size of the region of u-boot that runs out of RAM. */ |
| 92 | uintptr_t size = (uintptr_t)&__bss_end - (uintptr_t)&__text_start; |
| 93 | |
| 94 | do { |
| 95 | /* Get the location from the relocation entry */ |
| 96 | offset_ptr_rom = (Elf32_Addr *)re_src->r_offset; |
| 97 | |
| 98 | /* Check that the location of the relocation is in .text */ |
Simon Glass | 62f7970 | 2013-02-28 19:26:16 +0000 | [diff] [blame] | 99 | if (offset_ptr_rom >= (Elf32_Addr *)CONFIG_SYS_TEXT_BASE && |
| 100 | offset_ptr_rom > last_offset) { |
Graeme Russ | b156ff0 | 2011-12-23 15:57:58 +1100 | [diff] [blame] | 101 | |
| 102 | /* Switch to the in-RAM version */ |
| 103 | offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom + |
| 104 | gd->reloc_off); |
| 105 | |
| 106 | /* Check that the target points into .text */ |
| 107 | if (*offset_ptr_ram >= CONFIG_SYS_TEXT_BASE && |
Gabe Black | 842d338 | 2012-11-03 11:41:25 +0000 | [diff] [blame] | 108 | *offset_ptr_ram <= |
Graeme Russ | b156ff0 | 2011-12-23 15:57:58 +1100 | [diff] [blame] | 109 | (CONFIG_SYS_TEXT_BASE + size)) { |
| 110 | *offset_ptr_ram += gd->reloc_off; |
Simon Glass | 62f7970 | 2013-02-28 19:26:16 +0000 | [diff] [blame] | 111 | } else { |
| 112 | debug(" %p: rom reloc %x, ram %p, value %x," |
| 113 | " limit %lx\n", re_src, |
| 114 | re_src->r_offset, offset_ptr_ram, |
| 115 | *offset_ptr_ram, |
| 116 | CONFIG_SYS_TEXT_BASE + size); |
Graeme Russ | b156ff0 | 2011-12-23 15:57:58 +1100 | [diff] [blame] | 117 | } |
Simon Glass | 62f7970 | 2013-02-28 19:26:16 +0000 | [diff] [blame] | 118 | } else { |
| 119 | debug(" %p: rom reloc %x, last %p\n", re_src, |
| 120 | re_src->r_offset, last_offset); |
Graeme Russ | b156ff0 | 2011-12-23 15:57:58 +1100 | [diff] [blame] | 121 | } |
Simon Glass | 62f7970 | 2013-02-28 19:26:16 +0000 | [diff] [blame] | 122 | last_offset = offset_ptr_rom; |
| 123 | |
Duncan Laurie | 0c39290 | 2012-10-23 18:04:43 +0000 | [diff] [blame] | 124 | } while (++re_src < re_end); |
Graeme Russ | b156ff0 | 2011-12-23 15:57:58 +1100 | [diff] [blame] | 125 | |
| 126 | return 0; |
| 127 | } |