aboutsummaryrefslogtreecommitdiff
path: root/board-js2x
diff options
context:
space:
mode:
authorAlexey Kardashevskiy <aik@ozlabs.ru>2015-10-26 17:36:48 +1100
committerAlexey Kardashevskiy <aik@ozlabs.ru>2015-11-03 12:00:22 +1100
commit12cbf22606c1148c64389449fb607a804cfade27 (patch)
tree58a28335dad9821b20f69cff0b4bb7b64f4fdca2 /board-js2x
parent67422f93710a872329aef197ec932f67a616c888 (diff)
downloadSLOF-12cbf22606c1148c64389449fb607a804cfade27.zip
SLOF-12cbf22606c1148c64389449fb607a804cfade27.tar.gz
SLOF-12cbf22606c1148c64389449fb607a804cfade27.tar.bz2
qemu/js2x/client: Support binutils >= 2.25.1
The recent binutils version introduces explicit definition of a TOC symbol which points to the .toc section and enforces .toc alignment to 256 rather than 8 bytes before. For now the TOC symbol points to same location as it was before - start of .toc + 0x8000; however as this might change, we should not rely on that in the source code. This changes __toc_start (for qemu and js2x boards), _got (for net-snk, takeover, rtas) in linker scripts to use explicitely defined TOC if defined and fall back to the older scheme if not. This changes r2 (the register pointing to TOC) setup code not to add 0x8000 as linker scripts do that now. Here is a bit more information about the change: https://sourceware.org/ml/binutils/2015-10/msg00124.html https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commit;h=a27e685fa0a6480bdb07e3be359558524cec89b7 Tested on 1. gcc version 4.8.3 20140911 (Red Hat 4.8.3-7) (GCC) GNU ld version 2.23.2 2. gcc version 5.2.1 20151001 (GCC) GNU ld (GNU Binutils) 2.25.51.20150930 Reported-by: William Grant <wgrant@ubuntu.com> Tested-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Diffstat (limited to 'board-js2x')
-rw-r--r--board-js2x/llfw/stage2.lds3
-rw-r--r--board-js2x/llfw/stage2_head.S2
2 files changed, 2 insertions, 3 deletions
diff --git a/board-js2x/llfw/stage2.lds b/board-js2x/llfw/stage2.lds
index f91f065..e6315c3 100644
--- a/board-js2x/llfw/stage2.lds
+++ b/board-js2x/llfw/stage2.lds
@@ -45,7 +45,8 @@ SECTIONS {
__bss_end = .;
__bss_size = (__bss_end - __bss_start);
- __toc_start = .;
+ . = ALIGN(256);
+ __toc_start = DEFINED (.TOC.) ? .TOC. : ADDR (.got) + 0x8000;
.got :
{
*(.toc .got)
diff --git a/board-js2x/llfw/stage2_head.S b/board-js2x/llfw/stage2_head.S
index 5460bfe..f3f5e0c 100644
--- a/board-js2x/llfw/stage2_head.S
+++ b/board-js2x/llfw/stage2_head.S
@@ -79,8 +79,6 @@ bsscdone:
/* ------------------------------------ */
ASM_ENTRY(toc_init)
LOAD64(r2, __toc_start)
- addi r2,r2,0x4000
- addi r2,r2,0x4000
blr
/* ------------------------------------ */