diff options
author | Brian Stegmiller <bjs@us.ibm.com> | 2015-12-08 11:05:42 -0600 |
---|---|---|
committer | Patrick Williams <iawillia@us.ibm.com> | 2015-12-11 15:30:28 -0600 |
commit | 65c6950b2ba6f5aa230afaab30975c02dac0e6b5 (patch) | |
tree | 15d9bd53915e4d03df73b02b117c82f096777cc8 /src/kernel | |
parent | 744c4705770773154148ed8678cbfa609c2d60d4 (diff) | |
download | talos-hostboot-65c6950b2ba6f5aa230afaab30975c02dac0e6b5.tar.gz talos-hostboot-65c6950b2ba6f5aa230afaab30975c02dac0e6b5.zip |
Fix attention instruction
Change-Id: I61e4f0d9b15222929a56fe8f8aa9bb029c4b8260
RTC: 142156
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/22542
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/kernel')
-rw-r--r-- | src/kernel/forceattn_p8.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/forceattn_p8.S b/src/kernel/forceattn_p8.S index fc373abdb..30725e9b3 100644 --- a/src/kernel/forceattn_p8.S +++ b/src/kernel/forceattn_p8.S @@ -5,7 +5,7 @@ # # OpenPOWER HostBoot Project # -# Contributors Listed Below - COPYRIGHT 2012,2014 +# Contributors Listed Below - COPYRIGHT 2012,2015 # [+] International Business Machines Corp. # # @@ -29,7 +29,7 @@ p8_force_attn: li r0, 1 mfspr r9, HID0 - insrdi r9,r0,1,31 /* Turn on bit 31. */ + insrdi r9,r0,1,3 /* Turn on bit 3 */ sync mtspr HID0,r9 /* Enable attentions */ mfspr r9, HID0 |