diff options
author | Markus Klotzbuecher <mk@denx.de> | 2007-01-09 16:02:48 +0100 |
---|---|---|
committer | Markus Klotzbuecher <mk@pollux.denx.de> | 2007-01-09 16:02:48 +0100 |
commit | 67fea022fa957f59653b5238c7496f80a6b70432 (patch) | |
tree | 377f8a0f90e86ba745331db84d80cafc7dbc40dc /board/spc1920/spc1920.c | |
parent | 8fc2102faa23593c80381437c09f7745a14deb40 (diff) | |
download | u-boot-imx-67fea022fa957f59653b5238c7496f80a6b70432.zip u-boot-imx-67fea022fa957f59653b5238c7496f80a6b70432.tar.gz u-boot-imx-67fea022fa957f59653b5238c7496f80a6b70432.tar.bz2 |
SPC1920: cleanup memory contoller setup
Diffstat (limited to 'board/spc1920/spc1920.c')
-rw-r--r-- | board/spc1920/spc1920.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/board/spc1920/spc1920.c b/board/spc1920/spc1920.c index 06ec60e..1f5dcb5 100644 --- a/board/spc1920/spc1920.c +++ b/board/spc1920/spc1920.c @@ -175,14 +175,9 @@ long int initdram (int board_type) /* initalize the DSP Host Port Interface */ hpi_init(); - /* PLD Setup */ - memctl->memc_or4 = CFG_OR4_PRELIM; - memctl->memc_br4 = CFG_BR4_PRELIM; - udelay(1000); - - /* PLD Setup */ - memctl->memc_or5 = CFG_OR5_PRELIM; - memctl->memc_br5 = CFG_BR5_PRELIM; + /* FRAM Setup */ + memctl->memc_or4 = CFG_OR4; + memctl->memc_br4 = CFG_BR4; udelay(1000); return (size_b0); |