* [U-Boot-Users] [PATCH] powerpc: Backout relocation changes.
@ 2007-11-14 5:18 Grant Likely
2007-11-14 9:17 ` Rafal Jaworowski
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Grant Likely @ 2007-11-14 5:18 UTC (permalink / raw)
To: u-boot
From: Grant Likely <grant.likely@secretlab.ca>
Ugh. I *hate* to back this change out, but these compiler flags don't
work for relocation on all versions of GCC. I've not been able to
reproduce the environment in my setup (and hence, not been able to
find a combination that *does* work), so I've got no choice but to go
back to the old gcc flags and linker script.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
---
Wolfgang,
I haven't had the opportunity to actually test this, and even if I did
I've only got 1 compiler version installed and 2 architectures to test
it on.
It is possible that it will cause breakage, but it is a straight revert
of the original patches so it should be safe. (I recommend testing
before the 1.3.0 release is cut)
Cheers,
g.
board/cogent/u-boot.lds | 1 +
board/hymod/u-boot.lds | 1 +
board/mousse/u-boot.lds | 1 +
board/rsdproto/u-boot.lds | 1 +
cpu/mpc512x/config.mk | 2 +-
cpu/mpc5xx/config.mk | 2 +-
cpu/mpc5xx/u-boot.lds | 1 +
cpu/mpc5xxx/config.mk | 2 +-
cpu/mpc5xxx/u-boot-customlayout.lds | 1 +
cpu/mpc5xxx/u-boot.lds | 1 +
cpu/mpc8220/config.mk | 2 +-
cpu/mpc8220/u-boot.lds | 1 +
cpu/mpc824x/config.mk | 2 +-
cpu/mpc824x/u-boot.lds | 1 +
cpu/mpc8260/config.mk | 2 +-
cpu/mpc8260/u-boot.lds | 1 +
cpu/mpc83xx/config.mk | 2 +-
cpu/mpc83xx/u-boot.lds | 1 +
include/common.h | 8 --------
19 files changed, 18 insertions(+), 15 deletions(-)
diff --git a/board/cogent/u-boot.lds b/board/cogent/u-boot.lds
index d87a39b..5ce2694 100644
--- a/board/cogent/u-boot.lds
+++ b/board/cogent/u-boot.lds
@@ -55,6 +55,7 @@ SECTIONS
{
*(.text)
common/environment.o(.text)
+ *(.fixup)
*(.got1)
}
_etext = .;
diff --git a/board/hymod/u-boot.lds b/board/hymod/u-boot.lds
index 9bf0f09..337a395 100644
--- a/board/hymod/u-boot.lds
+++ b/board/hymod/u-boot.lds
@@ -69,6 +69,7 @@ SECTIONS
common/environment.o(.text)
*(.text)
+ *(.fixup)
*(.got1)
}
_etext = .;
diff --git a/board/mousse/u-boot.lds b/board/mousse/u-boot.lds
index eb4d8e4..57358b8 100644
--- a/board/mousse/u-boot.lds
+++ b/board/mousse/u-boot.lds
@@ -60,6 +60,7 @@ SECTIONS
lib_generic/crc32.o (.text)
lib_generic/zlib.o (.text)
+ *(.fixup)
*(.got1)
. = ALIGN(16);
*(.rodata)
diff --git a/board/rsdproto/u-boot.lds b/board/rsdproto/u-boot.lds
index 9bd6248..70fc3a5 100644
--- a/board/rsdproto/u-boot.lds
+++ b/board/rsdproto/u-boot.lds
@@ -55,6 +55,7 @@ SECTIONS
{
cpu/mpc8260/start.o (.text)
*(.text)
+ *(.fixup)
*(.got1)
/*. = env_offset; */
}
diff --git a/cpu/mpc512x/config.mk b/cpu/mpc512x/config.mk
index 3259d53..8a07c5a 100644
--- a/cpu/mpc512x/config.mk
+++ b/cpu/mpc512x/config.mk
@@ -19,7 +19,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA
#
-PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -mrelocatable
+PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi
PLATFORM_CPPFLAGS += -DCONFIG_MPC512X -DCONFIG_E300 \
-ffixed-r2 -ffixed-r29 -msoft-float -mcpu=603e
diff --git a/cpu/mpc5xx/config.mk b/cpu/mpc5xx/config.mk
index e95b8a1..64cd600 100644
--- a/cpu/mpc5xx/config.mk
+++ b/cpu/mpc5xx/config.mk
@@ -28,7 +28,7 @@
#
-PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -mrelocatable
+PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi
PLATFORM_CPPFLAGS += -DCONFIG_5xx -ffixed-r2 -ffixed-r29 -mpowerpc -msoft-float
diff --git a/cpu/mpc5xx/u-boot.lds b/cpu/mpc5xx/u-boot.lds
index 10001b1..5b03fef 100644
--- a/cpu/mpc5xx/u-boot.lds
+++ b/cpu/mpc5xx/u-boot.lds
@@ -59,6 +59,7 @@ SECTIONS
cpu/mpc5xx/start.o (.text)
*(.text)
+ *(.fixup)
*(.got1)
}
_etext = .;
diff --git a/cpu/mpc5xxx/config.mk b/cpu/mpc5xxx/config.mk
index 0e861c4..0df51ba 100644
--- a/cpu/mpc5xxx/config.mk
+++ b/cpu/mpc5xxx/config.mk
@@ -21,7 +21,7 @@
# MA 02111-1307 USA
#
-PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -mrelocatable
+PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi
PLATFORM_CPPFLAGS += -DCONFIG_MPC5xxx -ffixed-r2 -ffixed-r29 \
-mstring -mcpu=603e -mmultiple
diff --git a/cpu/mpc5xxx/u-boot-customlayout.lds b/cpu/mpc5xxx/u-boot-customlayout.lds
index 1107943..123a14c 100644
--- a/cpu/mpc5xxx/u-boot-customlayout.lds
+++ b/cpu/mpc5xxx/u-boot-customlayout.lds
@@ -66,6 +66,7 @@ SECTIONS
common/environment.o (.ppcenv)
*(.text)
+ *(.fixup)
*(.got1)
. = ALIGN(16);
*(.rodata)
diff --git a/cpu/mpc5xxx/u-boot.lds b/cpu/mpc5xxx/u-boot.lds
index a28a3af..78818a4 100644
--- a/cpu/mpc5xxx/u-boot.lds
+++ b/cpu/mpc5xxx/u-boot.lds
@@ -55,6 +55,7 @@ SECTIONS
{
cpu/mpc5xxx/start.o (.text)
*(.text)
+ *(.fixup)
*(.got1)
. = ALIGN(16);
*(.rodata)
diff --git a/cpu/mpc8220/config.mk b/cpu/mpc8220/config.mk
index c41cafe..8e3ba54 100644
--- a/cpu/mpc8220/config.mk
+++ b/cpu/mpc8220/config.mk
@@ -21,7 +21,7 @@
# MA 02111-1307 USA
#
-PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -mrelocatable
+PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi
PLATFORM_CPPFLAGS += -DCONFIG_MPC8220 -ffixed-r2 -ffixed-r29 \
-mstring -mcpu=603e -mmultiple
diff --git a/cpu/mpc8220/u-boot.lds b/cpu/mpc8220/u-boot.lds
index a199a64..889bc77 100644
--- a/cpu/mpc8220/u-boot.lds
+++ b/cpu/mpc8220/u-boot.lds
@@ -55,6 +55,7 @@ SECTIONS
{
cpu/mpc8220/start.o (.text)
*(.text)
+ *(.fixup)
*(.got1)
. = ALIGN(16);
*(.rodata)
diff --git a/cpu/mpc824x/config.mk b/cpu/mpc824x/config.mk
index 17fdb21..66207f4 100644
--- a/cpu/mpc824x/config.mk
+++ b/cpu/mpc824x/config.mk
@@ -21,7 +21,7 @@
# MA 02111-1307 USA
#
-PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -fno-strict-aliasing -mrelocatable
+PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -fno-strict-aliasing
PLATFORM_CPPFLAGS += -DCONFIG_MPC824X -ffixed-r2 -ffixed-r29 -mstring -mcpu=603e -msoft-float
diff --git a/cpu/mpc824x/u-boot.lds b/cpu/mpc824x/u-boot.lds
index 8cbef4a..c90d1e9 100644
--- a/cpu/mpc824x/u-boot.lds
+++ b/cpu/mpc824x/u-boot.lds
@@ -55,6 +55,7 @@ SECTIONS
{
cpu/mpc824x/start.o (.text)
*(.text)
+ *(.fixup)
*(.got1)
. = ALIGN(16);
*(.rodata)
diff --git a/cpu/mpc8260/config.mk b/cpu/mpc8260/config.mk
index d401e4c..683b6fb 100644
--- a/cpu/mpc8260/config.mk
+++ b/cpu/mpc8260/config.mk
@@ -21,7 +21,7 @@
# MA 02111-1307 USA
#
-PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -mrelocatable
+PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi
PLATFORM_CPPFLAGS += -DCONFIG_8260 -DCONFIG_CPM2 -ffixed-r2 -ffixed-r29 \
-mstring -mcpu=603e -mmultiple
diff --git a/cpu/mpc8260/u-boot.lds b/cpu/mpc8260/u-boot.lds
index b8abc17..3e84f23 100644
--- a/cpu/mpc8260/u-boot.lds
+++ b/cpu/mpc8260/u-boot.lds
@@ -55,6 +55,7 @@ SECTIONS
{
cpu/mpc8260/start.o (.text)
*(.text)
+ *(.fixup)
*(.got1)
. = ALIGN(16);
*(.rodata)
diff --git a/cpu/mpc83xx/config.mk b/cpu/mpc83xx/config.mk
index 2ec395d..ecf8a60 100644
--- a/cpu/mpc83xx/config.mk
+++ b/cpu/mpc83xx/config.mk
@@ -20,7 +20,7 @@
# MA 02111-1307 USA
#
-PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -mrelocatable
+PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi
PLATFORM_CPPFLAGS += -DCONFIG_MPC83XX -DCONFIG_E300 \
-ffixed-r2 -ffixed-r29 -msoft-float
diff --git a/cpu/mpc83xx/u-boot.lds b/cpu/mpc83xx/u-boot.lds
index ca663bc..937c87a 100644
--- a/cpu/mpc83xx/u-boot.lds
+++ b/cpu/mpc83xx/u-boot.lds
@@ -52,6 +52,7 @@ SECTIONS
{
cpu/mpc83xx/start.o (.text)
*(.text)
+ *(.fixup)
*(.got1)
. = ALIGN(16);
*(.rodata)
diff --git a/include/common.h b/include/common.h
index aca281b..63ac8b0 100644
--- a/include/common.h
+++ b/include/common.h
@@ -63,19 +63,13 @@ typedef volatile unsigned char vu_char;
#endif
#elif defined(CONFIG_5xx)
#include <asm/5xx_immap.h>
-#define CONFIG_RELOC_FIXUP_WORKS
#elif defined(CONFIG_MPC5xxx)
#include <mpc5xxx.h>
-#define CONFIG_RELOC_FIXUP_WORKS
#elif defined(CONFIG_MPC512X)
#include <mpc512x.h>
#include <asm/immap_512x.h>
-#define CONFIG_RELOC_FIXUP_WORKS
#elif defined(CONFIG_MPC8220)
#include <asm/immap_8220.h>
-#define CONFIG_RELOC_FIXUP_WORKS
-#elif defined(CONFIG_824X)
-#define CONFIG_RELOC_FIXUP_WORKS
#elif defined(CONFIG_8260)
#if defined(CONFIG_MPC8247) \
|| defined(CONFIG_MPC8248) \
@@ -87,7 +81,6 @@ typedef volatile unsigned char vu_char;
#define CONFIG_MPC8260 1
#endif
#include <asm/immap_8260.h>
-#define CONFIG_RELOC_FIXUP_WORKS
#endif
#ifdef CONFIG_MPC86xx
#include <mpc86xx.h>
@@ -100,7 +93,6 @@ typedef volatile unsigned char vu_char;
#ifdef CONFIG_MPC83XX
#include <mpc83xx.h>
#include <asm/immap_83xx.h>
-#define CONFIG_RELOC_FIXUP_WORKS
#endif
#ifdef CONFIG_4xx
#include <ppc4xx.h>
^ permalink raw reply related [flat|nested] 5+ messages in thread* [U-Boot-Users] [PATCH] powerpc: Backout relocation changes.
2007-11-14 5:18 [U-Boot-Users] [PATCH] powerpc: Backout relocation changes Grant Likely
@ 2007-11-14 9:17 ` Rafal Jaworowski
2007-11-14 14:03 ` Grant Likely
2007-11-14 14:08 ` Rune Torgersen
2007-11-17 0:39 ` Wolfgang Denk
2 siblings, 1 reply; 5+ messages in thread
From: Rafal Jaworowski @ 2007-11-14 9:17 UTC (permalink / raw)
To: u-boot
Grant Likely wrote:
> From: Grant Likely <grant.likely@secretlab.ca>
>
> Ugh. I *hate* to back this change out, but these compiler flags don't
> work for relocation on all versions of GCC. I've not been able to
> reproduce the environment in my setup (and hence, not been able to
> find a combination that *does* work), so I've got no choice but to go
> back to the old gcc flags and linker script.
>
Hi Grant,
This linker script needs a similar change too: board/ads5121/u-boot.lds
kind regards,
Rafal
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot-Users] [PATCH] powerpc: Backout relocation changes.
2007-11-14 9:17 ` Rafal Jaworowski
@ 2007-11-14 14:03 ` Grant Likely
0 siblings, 0 replies; 5+ messages in thread
From: Grant Likely @ 2007-11-14 14:03 UTC (permalink / raw)
To: u-boot
On 11/14/07, Rafal Jaworowski <raj@semihalf.com> wrote:
> Grant Likely wrote:
> > From: Grant Likely <grant.likely@secretlab.ca>
> >
> > Ugh. I *hate* to back this change out, but these compiler flags don't
> > work for relocation on all versions of GCC. I've not been able to
> > reproduce the environment in my setup (and hence, not been able to
> > find a combination that *does* work), so I've got no choice but to go
> > back to the old gcc flags and linker script.
> >
>
> Hi Grant,
>
> This linker script needs a similar change too: board/ads5121/u-boot.lds
Hmmm, looks that linker script should also be moved to cpu/mpc5121
like has been done for all other powerpc boards.
Good catch, thanks!
g.
--
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.
grant.likely at secretlab.ca
(403) 399-0195
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot-Users] [PATCH] powerpc: Backout relocation changes.
2007-11-14 5:18 [U-Boot-Users] [PATCH] powerpc: Backout relocation changes Grant Likely
2007-11-14 9:17 ` Rafal Jaworowski
@ 2007-11-14 14:08 ` Rune Torgersen
2007-11-17 0:39 ` Wolfgang Denk
2 siblings, 0 replies; 5+ messages in thread
From: Rune Torgersen @ 2007-11-14 14:08 UTC (permalink / raw)
To: u-boot
> -----Original Message-----
> From: Grant Likely
> Sent: Tuesday, November 13, 2007 11:19 PM
> To: u-boot-users at lists.sourceforge.net; wd at denx.de
> Subject: [U-Boot-Users] [PATCH] powerpc: Backout relocation changes.
>
> Ugh. I *hate* to back this change out, but these compiler flags don't
> work for relocation on all versions of GCC. I've not been able to
> reproduce the environment in my setup (and hence, not been able to
> find a combination that *does* work), so I've got no choice but to go
> back to the old gcc flags and linker script.
>
> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
It works with both compiler versions here, thanks.
Tested-By: Rune Torgersen <runet@innovsys.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot-Users] [PATCH] powerpc: Backout relocation changes.
2007-11-14 5:18 [U-Boot-Users] [PATCH] powerpc: Backout relocation changes Grant Likely
2007-11-14 9:17 ` Rafal Jaworowski
2007-11-14 14:08 ` Rune Torgersen
@ 2007-11-17 0:39 ` Wolfgang Denk
2 siblings, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2007-11-17 0:39 UTC (permalink / raw)
To: u-boot
In message <20071114050501.9749.43056.stgit@trillian.cg.shawcable.net> you wrote:
> From: Grant Likely <grant.likely@secretlab.ca>
>
> Ugh. I *hate* to back this change out, but these compiler flags don't
> work for relocation on all versions of GCC. I've not been able to
> reproduce the environment in my setup (and hence, not been able to
> find a combination that *does* work), so I've got no choice but to go
> back to the old gcc flags and linker script.
>
> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
> ---
> Wolfgang,
>
> I haven't had the opportunity to actually test this, and even if I did
> I've only got 1 compiler version installed and 2 architectures to test
> it on.
>
> It is possible that it will cause breakage, but it is a straight revert
> of the original patches so it should be safe. (I recommend testing
> before the 1.3.0 release is cut)
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"Though a program be but three lines long,
someday it will have to be maintained."
- The Tao of Programming
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-11-17 0:39 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-14 5:18 [U-Boot-Users] [PATCH] powerpc: Backout relocation changes Grant Likely
2007-11-14 9:17 ` Rafal Jaworowski
2007-11-14 14:03 ` Grant Likely
2007-11-14 14:08 ` Rune Torgersen
2007-11-17 0:39 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox