]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
85xx: Ensure BSS segment isn't linked at address 0
authorPeter Tyser <ptyser@xes-inc.com>
Wed, 7 Oct 2009 16:45:00 +0000 (11:45 -0500)
committerWolfgang Denk <wd@denx.de>
Wed, 7 Oct 2009 22:33:47 +0000 (00:33 +0200)
When U-Boot is relocated from flash to RAM pointers are modified
accordingly.  However, pointers initialzed with NULL values should not
be modified so that they maintain their intended NULL value.  If the
BSS segment is linked at address 0 its address will not be
updated as necessary during relocation.

This is a temporary workaround.  The end goal is to add support to
U-Boot to dynamically locate the BSS at an arbitrary address at
runtime.  When the ability to fixup the BSS inteligently is
added, this workaround can be removed and the 85xx link script
can put the BSS at a fixed address at link time.

Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
cpu/mpc85xx/u-boot.lds

index a347cd154b68fd12f21670b1dedeeb6e275e1354..183dce9514dc4fef2105d5385fcbe8a853f76e17 100644 (file)
@@ -131,6 +131,17 @@ SECTIONS
 
   . = RESET_VECTOR_ADDRESS + 0x4;
 
+  /*
+   * Make sure that the bss segment isn't linked at 0x0, otherwise its
+   * address won't be updated during relocation fixups.  Note that
+   * this is a temporary fix.  Code to dynamically the fixup the bss
+   * location will be added in the future.  When the bss relocation
+   * fixup code is present this workaround should be removed.
+   */
+#if (RESET_VECTOR_ADDRESS == 0xfffffffc)
+  . |= 0x10;
+#endif
+
   __bss_start = .;
   .bss (NOLOAD)       :
   {