relocate.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. #include <common.h>
  34. #include <libfdt.h>
  35. #include <malloc.h>
  36. #include <asm/u-boot-x86.h>
  37. #include <asm/relocate.h>
  38. #include <elf.h>
  39. int copy_uboot_to_ram(void)
  40. {
  41. size_t len = (size_t)&__data_end - (size_t)&__text_start;
  42. memcpy((void *)gd->relocaddr, (void *)&__text_start, len);
  43. return 0;
  44. }
  45. int copy_fdt_to_ram(void)
  46. {
  47. if (gd->new_fdt) {
  48. ulong fdt_size;
  49. fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
  50. memcpy(gd->new_fdt, gd->fdt_blob, fdt_size);
  51. debug("Relocated fdt from %p to %p, size %lx\n",
  52. gd->fdt_blob, gd->new_fdt, fdt_size);
  53. gd->fdt_blob = gd->new_fdt;
  54. }
  55. return 0;
  56. }
  57. int clear_bss(void)
  58. {
  59. ulong dst_addr = (ulong)&__bss_start + gd->reloc_off;
  60. size_t len = (size_t)&__bss_end - (size_t)&__bss_start;
  61. memset((void *)dst_addr, 0x00, len);
  62. return 0;
  63. }
  64. /*
  65. * This function has more error checking than you might expect. Please see
  66. * the commit message for more informaiton.
  67. */
  68. int do_elf_reloc_fixups(void)
  69. {
  70. Elf32_Rel *re_src = (Elf32_Rel *)(&__rel_dyn_start);
  71. Elf32_Rel *re_end = (Elf32_Rel *)(&__rel_dyn_end);
  72. Elf32_Addr *offset_ptr_rom, *last_offset = NULL;
  73. Elf32_Addr *offset_ptr_ram;
  74. /* The size of the region of u-boot that runs out of RAM. */
  75. uintptr_t size = (uintptr_t)&__bss_end - (uintptr_t)&__text_start;
  76. do {
  77. /* Get the location from the relocation entry */
  78. offset_ptr_rom = (Elf32_Addr *)re_src->r_offset;
  79. /* Check that the location of the relocation is in .text */
  80. if (offset_ptr_rom >= (Elf32_Addr *)CONFIG_SYS_TEXT_BASE &&
  81. offset_ptr_rom > last_offset) {
  82. /* Switch to the in-RAM version */
  83. offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
  84. gd->reloc_off);
  85. /* Check that the target points into .text */
  86. if (*offset_ptr_ram >= CONFIG_SYS_TEXT_BASE &&
  87. *offset_ptr_ram <=
  88. (CONFIG_SYS_TEXT_BASE + size)) {
  89. *offset_ptr_ram += gd->reloc_off;
  90. } else {
  91. debug(" %p: rom reloc %x, ram %p, value %x,"
  92. " limit %lx\n", re_src,
  93. re_src->r_offset, offset_ptr_ram,
  94. *offset_ptr_ram,
  95. CONFIG_SYS_TEXT_BASE + size);
  96. }
  97. } else {
  98. debug(" %p: rom reloc %x, last %p\n", re_src,
  99. re_src->r_offset, last_offset);
  100. }
  101. last_offset = offset_ptr_rom;
  102. } while (++re_src < re_end);
  103. return 0;
  104. }