diff options
author | Wolfgang Denk <wd@denx.de> | 2009-03-18 00:40:57 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-03-18 00:40:57 +0100 |
commit | efb47346d4be024d995fe907dbd358a21651a67e (patch) | |
tree | 8acc6a1f8549cf7e4cf42116cf0d67895773cf82 /cpu/mcf547x_8x/cpu_init.c | |
parent | efa0215228a26a90c86ac03511da73cb519eb516 (diff) | |
parent | 8d8235f84d3ef3f29b7d14e741369b5824b5bb4a (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-coldfire
Diffstat (limited to 'cpu/mcf547x_8x/cpu_init.c')
-rw-r--r-- | cpu/mcf547x_8x/cpu_init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpu/mcf547x_8x/cpu_init.c b/cpu/mcf547x_8x/cpu_init.c index 1ba57835e54..96a3132b783 100644 --- a/cpu/mcf547x_8x/cpu_init.c +++ b/cpu/mcf547x_8x/cpu_init.c @@ -49,14 +49,14 @@ void cpu_init_f(void) volatile xlbarb_t *xlbarb = (volatile xlbarb_t *) MMAP_XARB; xlbarb->adrto = 0x2000; - xlbarb->datto = 0x2000; + xlbarb->datto = 0x2500; xlbarb->busto = 0x3000; - xlbarb->cfg = XARB_SR_AT | XARB_SR_DT; + xlbarb->cfg = XARB_CFG_AT | XARB_CFG_DT; /* Master Priority Enable */ - xlbarb->pri = 0; xlbarb->prien = 0xff; + xlbarb->pri = 0; #if (defined(CONFIG_SYS_CS0_BASE) && defined(CONFIG_SYS_CS0_MASK) && defined(CONFIG_SYS_CS0_CTRL)) fbcs->csar0 = CONFIG_SYS_CS0_BASE; |