summaryrefslogtreecommitdiffstats
path: root/cpu/mpc83xx
diff options
context:
space:
mode:
authorMarian Balakowicz <m8@semihalf.com>2006-03-14 16:01:25 +0100
committerMarian Balakowicz <m8@semihalf.com>2006-03-14 16:01:25 +0100
commita7c66ad2e52b49a7cf5efb9665dd0527db96ea29 (patch)
tree769f2ff028287adac1c3fd6ecb4bffb55df2c676 /cpu/mpc83xx
parent6e53e27c5017e4a9505dce47b3167501a2c02299 (diff)
downloadblackbird-obmc-uboot-a7c66ad2e52b49a7cf5efb9665dd0527db96ea29.tar.gz
blackbird-obmc-uboot-a7c66ad2e52b49a7cf5efb9665dd0527db96ea29.zip
Correct shift offsets in icache_status and dcache_status for MPC83xx.
Diffstat (limited to 'cpu/mpc83xx')
-rw-r--r--cpu/mpc83xx/start.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mpc83xx/start.S b/cpu/mpc83xx/start.S
index 46c748f790..324f6c36fe 100644
--- a/cpu/mpc83xx/start.S
+++ b/cpu/mpc83xx/start.S
@@ -796,7 +796,7 @@ icache_disable:
.globl icache_status
icache_status:
mfspr r3, HID0
- rlwinm r3, r3, HID0_ICE_SHIFT, 31, 31
+ rlwinm r3, r3, (31 - HID0_ICE_SHIFT + 1), 31, 31
blr
.globl dcache_enable
@@ -828,7 +828,7 @@ dcache_disable:
.globl dcache_status
dcache_status:
mfspr r3, HID0
- rlwinm r3, r3, HID0_DCE_SHIFT, 31, 31
+ rlwinm r3, r3, (31 - HID0_DCE_SHIFT + 1), 31, 31
blr
.globl get_pvr
OpenPOWER on IntegriCloud