2 * Memory sub-system initialization code for INCA-IP development board.
4 * Copyright (c) 2003 Wolfgang Denk <wd@denx.de>
6 * See file CREDITS for list of people who contributed to this
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 #include <asm/regdef.h>
30 #define EBU_MODUL_BASE 0xB8000200
31 #define EBU_CLC(value) 0x0000(value)
32 #define EBU_CON(value) 0x0010(value)
33 #define EBU_ADDSEL0(value) 0x0020(value)
34 #define EBU_ADDSEL1(value) 0x0024(value)
35 #define EBU_ADDSEL2(value) 0x0028(value)
36 #define EBU_BUSCON0(value) 0x0060(value)
37 #define EBU_BUSCON1(value) 0x0064(value)
38 #define EBU_BUSCON2(value) 0x0068(value)
40 #define MC_MODUL_BASE 0xBF800000
41 #define MC_ERRCAUSE(value) 0x0100(value)
42 #define MC_ERRADDR(value) 0x0108(value)
43 #define MC_IOGP(value) 0x0800(value)
44 #define MC_SELFRFSH(value) 0x0A00(value)
45 #define MC_CTRLENA(value) 0x1000(value)
46 #define MC_MRSCODE(value) 0x1008(value)
47 #define MC_CFGDW(value) 0x1010(value)
48 #define MC_CFGPB0(value) 0x1018(value)
49 #define MC_LATENCY(value) 0x1038(value)
50 #define MC_TREFRESH(value) 0x1040(value)
52 #define CGU_MODUL_BASE 0xBF107000
53 #define CGU_PLL1CR(value) 0x0008(value)
54 #define CGU_DIVCR(value) 0x0010(value)
55 #define CGU_MUXCR(value) 0x0014(value)
56 #define CGU_PLL1SR(value) 0x000C(value)
64 * a0 has the clock value we are going to run at
72 sw t2, EBU_ADDSEL0(t1)
74 sw t2, EBU_ADDSEL2(t1)
76 sw t2, EBU_ADDSEL1(t1)
93 sw t2, EBU_BUSCON0(t1)
94 sw t2, EBU_BUSCON2(t1)
97 sw t2, EBU_BUSCON1(t1) /* delay slot */
102 sw t2, EBU_BUSCON0(t1)
103 sw t2, EBU_BUSCON2(t1)
105 sw t2, EBU_BUSCON1(t1)
114 * void cgu_init(long)
116 * a0 has the clock value
122 li t1, CGU_MODUL_BASE
144 sw t2, CGU_PLL1CR(t1) /* delay slot */
154 sw t2, CGU_PLL1CR(t1) /* delay slot */
161 sw t2, CGU_PLL1CR(t1)
164 lw t2, CGU_PLL1SR(t1)
178 * void sdram_init(long)
180 * a0 has the clock value
189 /* Disable memory controller before changing any of its registers */
190 sw zero, MC_CTRLENA(t1)
207 /* Set clock ratio (clkrat=1:1, rddel=3) */
211 /* Set sdram refresh rate (4K/64ms @ 100MHz) */
214 sw t2, MC_TREFRESH(t1)
218 /* Set clock ratio (clkrat=1:1, rddel=3) */
222 /* Set sdram refresh rate (4K/64ms @ 133MHz) */
225 sw t2, MC_TREFRESH(t1)
229 /* Set clock ratio (clkrat=3:2, rddel=4) */
233 /* Set sdram refresh rate (4K/64ms @ 150MHz) */
235 sw t2, MC_TREFRESH(t1)
238 /* Clear Error log registers */
239 sw zero, MC_ERRCAUSE(t1)
240 sw zero, MC_ERRADDR(t1)
242 /* Clear Power-down registers */
243 sw zero, MC_SELFRFSH(t1)
245 /* Set CAS Latency */
246 li t2, 0x00000020 /* CL = 2 */
247 sw t2, MC_MRSCODE(t1)
249 /* Set word width to 16 bit */
253 /* Set CS0 to SDRAM parameters */
257 /* Set SDRAM latency parameters */
258 li t2, 0x00026325 /* BC PC100 */
259 sw t2, MC_LATENCY(t1)
262 /* Finally enable the controller */
264 sw t2, MC_CTRLENA(t1)
276 /* EBU, CGU and SDRAM Initialization.
278 li a0, CPU_CLOCK_RATE
281 /* We rely on the fact that neither ebu_init() nor cgu_init() nor sdram_init()