blob: 894873b975497c3b027dd5ba12ecdf376dc6eae7 [file] [log] [blame]
TsiChungLiewa605aac2007-08-16 05:04:31 -05001/*
2 * (C) Copyright 2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <command.h>
26#include <malloc.h>
27#include <asm/immap.h>
28
TsiChungLiewa605aac2007-08-16 05:04:31 -050029int checkboard (void) {
30 ulong val;
31 uchar val8;
32
33 puts ("Board: ");
34 puts("Freescale M5249EVB");
35 val8 = ((uchar)~((uchar)mbar2_readLong(MCFSIM_GPIO1_READ) >> 4)) & 0xf;
36 printf(" (Switch=%1X)\n", val8);
37
38 /*
39 * Set LED on
40 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020041 val = mbar2_readLong(MCFSIM_GPIO1_OUT) & ~CONFIG_SYS_GPIO1_LED;
TsiChungLiewa605aac2007-08-16 05:04:31 -050042 mbar2_writeLong(MCFSIM_GPIO1_OUT, val); /* Set LED on */
43
44 return 0;
45};
46
47
Becky Bruce9973e3c2008-06-09 16:03:40 -050048phys_size_t initdram (int board_type) {
TsiChungLiewa605aac2007-08-16 05:04:31 -050049 unsigned long junk = 0xa5a59696;
50
51 /*
52 * Note:
53 * RC = ([(RefreshTime/#rows) / (1/BusClk)] / 16) - 1
54 */
55
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020056#ifdef CONFIG_SYS_FAST_CLK
TsiChungLiewa605aac2007-08-16 05:04:31 -050057 /*
58 * Busclk=70MHz, RefreshTime=64ms, #rows=4096 (4K)
59 * SO=1, NAM=0, COC=0, RTIM=01 (6clk refresh), RC=39
60 */
61 mbar_writeShort(MCFSIM_DCR, 0x8239);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020062#elif CONFIG_SYS_PLL_BYPASS
TsiChungLiewa605aac2007-08-16 05:04:31 -050063 /*
64 * Busclk=5.6448MHz, RefreshTime=64ms, #rows=8192 (8K)
65 * SO=1, NAM=0, COC=0, RTIM=01 (6clk refresh), RC=02
66 */
67 mbar_writeShort(MCFSIM_DCR, 0x8202);
68#else
69 /*
70 * Busclk=36MHz, RefreshTime=64ms, #rows=4096 (4K)
71 * SO=1, NAM=0, COC=0, RTIM=01 (6clk refresh), RC=22 (562 bus clock cycles)
72 */
73 mbar_writeShort(MCFSIM_DCR, 0x8222);
74#endif
75
76 /*
77 * SDRAM starts at 0x0000_0000, CASL=10, CBM=010, PS=10 (16bit port),
78 * PM=1 (continuous page mode)
79 */
80
81 /* RE=0 (keep auto-refresh disabled while setting up registers) */
82 mbar_writeLong(MCFSIM_DACR0, 0x00003324);
83
84 /* BAM=007c (bits 22,21 are bank selects; 256kB blocks) */
85 mbar_writeLong(MCFSIM_DMR0, 0x01fc0001);
86
87 /** Precharge sequence **/
88 mbar_writeLong(MCFSIM_DACR0, 0x0000332c); /* Set DACR0[IP] (bit 3) */
89 *((volatile unsigned long *) 0x00) = junk; /* write to a memory location to init. precharge */
90 udelay(0x10); /* Allow several Precharge cycles */
91
92 /** Refresh Sequence **/
93 mbar_writeLong(MCFSIM_DACR0, 0x0000b324); /* Enable the refresh bit, DACR0[RE] (bit 15) */
94 udelay(0x7d0); /* Allow gobs of refresh cycles */
95
96 /** Mode Register initialization **/
97 mbar_writeLong(MCFSIM_DACR0, 0x0000b364); /* Enable DACR0[IMRS] (bit 6); RE remains enabled */
98 *((volatile unsigned long *) 0x800) = junk; /* Access RAM to initialize the mode register */
99
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200100 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
TsiChungLiewa605aac2007-08-16 05:04:31 -0500101};
102
103
104int testdram (void) {
105 /* TODO: XXX XXX XXX */
106 printf ("DRAM test not implemented!\n");
107
108 return (0);
109}