Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you wrote: >> .gpword works only with local symbols on certain binutils versions >> >> Signed-off-by: Vlad Lungu <[EMAIL PROTECTED]> >> --- >> cpu/mips/start.S | 9 ++++++--- >> 1 files changed, 6 insertions(+), 3 deletions(-) > > Applied, thanks a lot. > > This fixes the start.S erros/warnings.
This patch works with my two different CPUs. Thanks! > So the only obvious problem remaining for MIPS are the cache.S > warnings: > > cache.S:243: Warning: Pretending global symbol used as branch target is local. > cache.S:250: Warning: Pretending global symbol used as branch target is local. Assembler might be sensitive to global symbol references under PIC code because they should be processed through GOT in principle. Therefore, we should have set up function entry point explicitly like: diff --git a/cpu/mips/cache.S b/cpu/mips/cache.S index 8024a2e..7966079 100644 --- a/cpu/mips/cache.S +++ b/cpu/mips/cache.S @@ -239,14 +239,16 @@ NESTED(mips_cache_reset, 0, ra) */ move a1, t2 move a2, t4 - bal mips_init_icache + PTR_LA t7, mips_init_icache + jalr t7 /* * then initialize D-cache. */ move a1, t3 move a2, t5 - bal mips_init_dcache + PTR_LA t7, mips_init_dcache + jalr t7 jr RA END(mips_cache_reset) I'll post the patch later. thanks, Shinya ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ U-Boot-Users mailing list U-Boot-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/u-boot-users