summaryrefslogtreecommitdiffstats
path: root/cf-code
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2018-06-12 09:36:28 +1000
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2018-06-12 09:36:28 +1000
commit4d919148fb35ed6121f9d18b6e18493e1b36edaa (patch)
tree2e878750926661596116c1d6670a33cf1fbd4cae /cf-code
parent771359e9f460532ce702a8eb344a753066a8f533 (diff)
downloadcf-fsi-4d919148fb35ed6121f9d18b6e18493e1b36edaa.tar.gz
cf-fsi-4d919148fb35ed6121f9d18b6e18493e1b36edaa.zip
Don't clobber d0 in interrupts
And keep them masked during breaks Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'cf-code')
-rw-r--r--cf-code/cf-fsi-fw.S5
1 files changed, 5 insertions, 0 deletions
diff --git a/cf-code/cf-fsi-fw.S b/cf-code/cf-fsi-fw.S
index 9fa5804..44a02d2 100644
--- a/cf-code/cf-fsi-fw.S
+++ b/cf-code/cf-fsi-fw.S
@@ -297,6 +297,9 @@ arbitration_request:
0: move.b %a1@(ARB_REG),%d1
bne 1f
+ /* Mask interrupts */
+ move.w #0x2007,%sr
+
/* Got it, re-load the GPIO caches */
move.l %a5@(0),%DCLK
move.l %a4@(0),%DDAT
@@ -570,9 +573,11 @@ config_gpio_in:
* Note: Must only clobber %d0
*/
_int:
+ move.l %d0,%a7@-
addq.l #1,%a1@(INT_CNT)
moveq.l #CVIC_SW_IRQ,%d0
move.l %d0,%a2@(CVIC_SW_IRQ_CLR)
+ move.l %a7@+,%d0
rte
/* Bad exception handler */
OpenPOWER on IntegriCloud