summaryrefslogtreecommitdiffstats
path: root/asm
diff options
context:
space:
mode:
authorOliver O'Halloran <oohall@gmail.com>2017-05-04 15:47:04 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-05-08 14:29:23 +1000
commit70bc370883330c8b1076555c126647a3cdf88706 (patch)
treeb4d45995b10df5bc19108475b9c94c23e1c4e1ed /asm
parent8fbf67e5b1bd5295e7795f7534832fb44889b9e6 (diff)
downloadtalos-skiboot-70bc370883330c8b1076555c126647a3cdf88706.tar.gz
talos-skiboot-70bc370883330c8b1076555c126647a3cdf88706.zip
head.S: store all of LR and CTR
When saving the CTR and LR registers the skiboot exception handlers use the 'stw' instruction which only saves the lower 32 bits of the register. Given these are both 64 bit registers this leads to some strange register dumps, for example: *********************************************** Unexpected exception 200 ! SRR0 : 0000000030016968 SRR1 : 9000000000201000 HSRR0: 0000000000000180 HSRR1: 9000000000001000 LR : 3003438830823f50 CTR : 3003438800000018 CFAR : 00000000300168fc CR : 40004208 XER: 00000000 In this dump the upper 32 bits of LR and CTR are actually stack gunk which obscures the underlying issue. Signed-off-by: Oliver O'Halloran <oohall@gmail.com> Acked-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'asm')
-rw-r--r--asm/head.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/head.S b/asm/head.S
index 8dabffd1..b10fbb55 100644
--- a/asm/head.S
+++ b/asm/head.S
@@ -198,8 +198,8 @@ _exception:
mflr %r6
stw %r3,STACK_CR(%r1)
stw %r4,STACK_XER(%r1)
- stw %r5,STACK_CTR(%r1)
- stw %r5,STACK_LR(%r1)
+ std %r5,STACK_CTR(%r1)
+ std %r5,STACK_LR(%r1)
mfspr %r3,SPR_SRR0
mfspr %r4,SPR_SRR1
mfspr %r5,SPR_HSRR0
OpenPOWER on IntegriCloud