]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
powerpc: Use LOAD_REG_IMMEDIATE only for constants on 64-bit
authorPaul Mackerras <paulus@samba.org>
Sat, 30 Aug 2008 01:41:12 +0000 (11:41 +1000)
committerPaul Mackerras <paulus@samba.org>
Mon, 15 Sep 2008 18:08:35 +0000 (11:08 -0700)
commite31aa453bbc4886a7bd33e5c2afa526d6f55bd7a
treefefa13c13d7b1803fdaeb92143f83b1971f0ec8d
parent1f6a93e4c35e75d547b51f56ba8139ab1a91628c
powerpc: Use LOAD_REG_IMMEDIATE only for constants on 64-bit

Using LOAD_REG_IMMEDIATE to get the address of kernel symbols
generates 5 instructions where LOAD_REG_ADDR can do it in one,
and will generate R_PPC64_ADDR16_* relocations in the output when
we get to making the kernel as a position-independent executable,
which we'd rather not have to handle.  This changes various bits
of assembly code to use LOAD_REG_ADDR when we need to get the
address of a symbol, or to use suitable position-independent code
for cases where we can't access the TOC for various reasons, or
if we're not running at the address we were linked at.

It also cleans up a few minor things; there's no reason to save and
restore SRR0/1 around RTAS calls, __mmu_off can get the return
address from LR more conveniently than the caller can supply it in
R4 (and we already assume elsewhere that EA == RA if the MMU is on
in early boot), and enable_64b_mode was using 5 instructions where
2 would do.

Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/include/asm/ppc_asm.h
arch/powerpc/kernel/cpu_setup_ppc970.S
arch/powerpc/kernel/entry_64.S
arch/powerpc/kernel/head_64.S
arch/powerpc/kernel/misc.S
arch/powerpc/platforms/iseries/exception.S