diff options
author | Wolfgang Denk <wd@denx.de> | 2008-07-13 14:44:04 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-13 14:44:04 +0200 |
commit | 0740ac26f4e590bf5b4e7b9a9886208dc2dacb32 (patch) | |
tree | 5d18fcb91d491f602c17c550af70a9a092b883f8 /board/freescale | |
parent | af577da58642b81eb94067e3d9e9dc6998cd620d (diff) | |
parent | 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82 (diff) | |
download | u-boot-imx-0740ac26f4e590bf5b4e7b9a9886208dc2dacb32.zip u-boot-imx-0740ac26f4e590bf5b4e7b9a9886208dc2dacb32.tar.gz u-boot-imx-0740ac26f4e590bf5b4e7b9a9886208dc2dacb32.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-coldfire
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/m5235evb/m5235evb.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/freescale/m5235evb/m5235evb.c b/board/freescale/m5235evb/m5235evb.c index c2c8fe8..bd8a4e5 100644 --- a/board/freescale/m5235evb/m5235evb.c +++ b/board/freescale/m5235evb/m5235evb.c @@ -75,9 +75,11 @@ phys_size_t initdram(int board_type) sdram->dacr0 = SDRAMC_DARCn_BA(CFG_SDRAM_BASE) | SDRAMC_DARCn_CASL_C1 | SDRAMC_DARCn_CBM_CMD20 | SDRAMC_DARCn_PS_32; + asm("nop"); /* Initialize DMR0 */ sdram->dmr0 = ((dramsize - 1) & 0xFFFC0000) | SDRAMC_DMRn_V; + asm("nop"); /* Set IP (bit 3) in DACR */ sdram->dacr0 |= SDRAMC_DARCn_IP; @@ -100,6 +102,7 @@ phys_size_t initdram(int board_type) /* Finish the configuration by issuing the MRS. */ sdram->dacr0 |= SDRAMC_DARCn_IMRS; + asm("nop"); /* Write to the SDRAM Mode Register */ *(u32 *) (CFG_SDRAM_BASE + 0x400) = 0xA5A59696; |