diff options
author | Wolfgang Denk <wd@denx.de> | 2008-10-12 23:25:50 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-10-12 23:25:50 +0200 |
commit | 1e841086df55d6b8f2efcf0e5dfb5fc52a0c7bbe (patch) | |
tree | e649f78027dcb8432d90f99aed284d711b36582d /cpu/mpc83xx/spd_sdram.c | |
parent | 33af3e6656e84660d397b5dd95abab2dccc36f83 (diff) | |
parent | 72c55878ecb1f0fdc8bc13516e5cb18fbae505e7 (diff) | |
download | u-boot-imx-1e841086df55d6b8f2efcf0e5dfb5fc52a0c7bbe.zip u-boot-imx-1e841086df55d6b8f2efcf0e5dfb5fc52a0c7bbe.tar.gz u-boot-imx-1e841086df55d6b8f2efcf0e5dfb5fc52a0c7bbe.tar.bz2 |
Merge branch 'master' of ssh://10.10.0.7/home/wd/git/u-boot/master
Diffstat (limited to 'cpu/mpc83xx/spd_sdram.c')
-rw-r--r-- | cpu/mpc83xx/spd_sdram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc83xx/spd_sdram.c b/cpu/mpc83xx/spd_sdram.c index 76f2474..f4a0e90 100644 --- a/cpu/mpc83xx/spd_sdram.c +++ b/cpu/mpc83xx/spd_sdram.c @@ -274,7 +274,7 @@ long int spd_sdram() /* * Set up LAWBAR for all of DDR. */ - ecm->bar = ((CFG_DDR_SDRAM_BASE>>12) & 0xfffff); + ecm->bar = CFG_DDR_SDRAM_BASE & 0xfffff000; ecm->ar = (LAWAR_EN | LAWAR_TRGT_IF_DDR | (LAWAR_SIZE & law_size)); debug("DDR:bar=0x%08x\n", ecm->bar); debug("DDR:ar=0x%08x\n", ecm->ar); |