summaryrefslogtreecommitdiffstats
path: root/cpu/mpc83xx
diff options
context:
space:
mode:
authorMarian Balakowicz <m8@semihalf.com>2006-03-14 16:12:48 +0100
committerMarian Balakowicz <m8@semihalf.com>2006-03-14 16:12:48 +0100
commit6d8ae5abb5311bd8e306a5a060dcfbeb0874a169 (patch)
tree2eab4767461b8142b7cc24a96bb468dc07b8d8b5 /cpu/mpc83xx
parente24e0f0744f4d28d7642c88052b712e91dbbf203 (diff)
downloadblackbird-obmc-uboot-6d8ae5abb5311bd8e306a5a060dcfbeb0874a169.tar.gz
blackbird-obmc-uboot-6d8ae5abb5311bd8e306a5a060dcfbeb0874a169.zip
Add sync in do_reset() routine for MPC83xx after RPR register
was written to. It is need on some targets when BAT translation is enabled.
Diffstat (limited to 'cpu/mpc83xx')
-rw-r--r--cpu/mpc83xx/cpu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpu/mpc83xx/cpu.c b/cpu/mpc83xx/cpu.c
index e49e4fe0ee..63f82422f5 100644
--- a/cpu/mpc83xx/cpu.c
+++ b/cpu/mpc83xx/cpu.c
@@ -93,6 +93,8 @@ do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
/* enable Reset Control Reg */
immap->reset.rpr = 0x52535445;
+ __asm__ __volatile__ ("sync");
+ __asm__ __volatile__ ("isync");
/* confirm Reset Control Reg is enabled */
while(!((immap->reset.rcer) & RCER_CRE));
OpenPOWER on IntegriCloud