2 * Memory sub-system initialization code for AR9 board.
4 * Copyright (c) 2003 Wolfgang Denk <wd@denx.de>
5 * Copyright (c) 2005 Andre Messerschmidt Infineon
7 * See file CREDITS for list of people who contributed to this
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 peng liu May 25, 2006, for PLL setting after reset, 05252006
30 #include <asm/regdef.h>
32 #if defined(CONFIG_USE_DDR_RAM)
34 #if defined(CONFIG_CPU_111M_RAM_111M) || defined(CONFIG_CPU_333M_RAM_111M)
35 # include "ar9_ddr111_settings.h"
36 #elif defined(CONFIG_CPU_166M_RAM_166M) || defined(CONFIG_CPU_333M_RAM_166M) || defined(CONFIG_CPU_500M_RAM_166M)
37 # include "ar9_ddr166_settings.h"
38 #elif defined(CONFIG_CPU_442M_RAM_147M)
39 # include "ar9_ddr166_settings.h"
40 #elif defined(CONFIG_CPU_393M_RAM_196M)
41 # ifdef CONFIG_ETRON_RAM
42 # include "etron_ddr196_settings.h"
44 # include "ar9_ddr196_settings.h"
46 #elif defined(CONFIG_CPU_442M_RAM_221M)
47 # include "ar9_ddr221_settings.h"
48 #elif defined(CONFIG_CPU_500M_RAM_250M)
49 # include "ar9_ddr250_settings.h"
51 # warning "missing definition for ddr_settings.h, use default!"
52 # include "ar9_ddr_settings.h"
54 #endif /* CONFIG_USE_DDR_RAM */
56 #if defined(CONFIG_USE_DDR_RAM) && !defined(MC_DC0_VALUE)
57 #error "missing include of ddr_settings.h"
60 #define EBU_MODUL_BASE 0xBE105300
61 #define EBU_CLC(value) 0x0000(value)
62 #define EBU_CON(value) 0x0010(value)
63 #define EBU_ADDSEL0(value) 0x0020(value)
64 #define EBU_ADDSEL1(value) 0x0024(value)
65 #define EBU_ADDSEL2(value) 0x0028(value)
66 #define EBU_ADDSEL3(value) 0x002C(value)
67 #define EBU_BUSCON0(value) 0x0060(value)
68 #define EBU_BUSCON1(value) 0x0064(value)
69 #define EBU_BUSCON2(value) 0x0068(value)
70 #define EBU_BUSCON3(value) 0x006C(value)
72 #define MC_MODUL_BASE 0xBF800000
73 #define MC_ERRCAUSE(value) 0x0010(value)
74 #define MC_ERRADDR(value) 0x0020(value)
75 #define MC_CON(value) 0x0060(value)
77 #define MC_SRAM_ENABLE 0x00000004
78 #define MC_SDRAM_ENABLE 0x00000002
79 #define MC_DDRRAM_ENABLE 0x00000001
81 #define MC_SDR_MODUL_BASE 0xBF800200
82 #define MC_IOGP(value) 0x0000(value)
83 #define MC_CTRLENA(value) 0x0010(value)
84 #define MC_MRSCODE(value) 0x0020(value)
85 #define MC_CFGDW(value) 0x0030(value)
86 #define MC_CFGPB0(value) 0x0040(value)
87 #define MC_LATENCY(value) 0x0080(value)
88 #define MC_TREFRESH(value) 0x0090(value)
89 #define MC_SELFRFSH(value) 0x00A0(value)
91 #define MC_DDR_MODUL_BASE 0xBF801000
92 #define MC_DC00(value) 0x0000(value)
93 #define MC_DC01(value) 0x0010(value)
94 #define MC_DC02(value) 0x0020(value)
95 #define MC_DC03(value) 0x0030(value)
96 #define MC_DC04(value) 0x0040(value)
97 #define MC_DC05(value) 0x0050(value)
98 #define MC_DC06(value) 0x0060(value)
99 #define MC_DC07(value) 0x0070(value)
100 #define MC_DC08(value) 0x0080(value)
101 #define MC_DC09(value) 0x0090(value)
102 #define MC_DC10(value) 0x00A0(value)
103 #define MC_DC11(value) 0x00B0(value)
104 #define MC_DC12(value) 0x00C0(value)
105 #define MC_DC13(value) 0x00D0(value)
106 #define MC_DC14(value) 0x00E0(value)
107 #define MC_DC15(value) 0x00F0(value)
108 #define MC_DC16(value) 0x0100(value)
109 #define MC_DC17(value) 0x0110(value)
110 #define MC_DC18(value) 0x0120(value)
111 #define MC_DC19(value) 0x0130(value)
112 #define MC_DC20(value) 0x0140(value)
113 #define MC_DC21(value) 0x0150(value)
114 #define MC_DC22(value) 0x0160(value)
115 #define MC_DC23(value) 0x0170(value)
116 #define MC_DC24(value) 0x0180(value)
117 #define MC_DC25(value) 0x0190(value)
118 #define MC_DC26(value) 0x01A0(value)
119 #define MC_DC27(value) 0x01B0(value)
120 #define MC_DC28(value) 0x01C0(value)
121 #define MC_DC29(value) 0x01D0(value)
122 #define MC_DC30(value) 0x01E0(value)
123 #define MC_DC31(value) 0x01F0(value)
124 #define MC_DC32(value) 0x0200(value)
125 #define MC_DC33(value) 0x0210(value)
126 #define MC_DC34(value) 0x0220(value)
127 #define MC_DC35(value) 0x0230(value)
128 #define MC_DC36(value) 0x0240(value)
129 #define MC_DC37(value) 0x0250(value)
130 #define MC_DC38(value) 0x0260(value)
131 #define MC_DC39(value) 0x0270(value)
132 #define MC_DC40(value) 0x0280(value)
133 #define MC_DC41(value) 0x0290(value)
134 #define MC_DC42(value) 0x02A0(value)
135 #define MC_DC43(value) 0x02B0(value)
136 #define MC_DC44(value) 0x02C0(value)
137 #define MC_DC45(value) 0x02D0(value)
138 #define MC_DC46(value) 0x02E0(value)
140 #define RCU_OFFSET 0xBF203000
141 #define RCU_RST_REQ (RCU_OFFSET + 0x0010)
142 #define RCU_STS (RCU_OFFSET + 0x0014)
144 #define CGU_OFFSET 0xBF103000
145 #define PLL0_CFG (CGU_OFFSET + 0x0004)
146 #define PLL1_CFG (CGU_OFFSET + 0x0008)
147 #define PLL2_CFG (CGU_OFFSET + 0x000C)
148 #define CGU_SYS (CGU_OFFSET + 0x0010)
149 #define CGU_UPDATE (CGU_OFFSET + 0x0014)
150 #define IF_CLK (CGU_OFFSET + 0x0018)
151 #define CGU_SMD (CGU_OFFSET + 0x0020)
152 #define CGU_CT1SR (CGU_OFFSET + 0x0028)
153 #define CGU_CT2SR (CGU_OFFSET + 0x002C)
154 #define CGU_PCMCR (CGU_OFFSET + 0x0030)
155 #define PCI_CR_PCI (CGU_OFFSET + 0x0034)
156 #define CGU_OSC_CTRL (CGU_OFFSET + 0x001C)
157 #define CGU_MIPS_PWR_DWN (CGU_OFFSET + 0x0038)
158 #define CLK_MEASURE (CGU_OFFSET + 0x003C)
160 #define pll1_36MHz_CONFIG 0x9800f25f
166 * void ebu_init(void)
172 #if defined(CONFIG_EBU_ADDSEL0) || defined(CONFIG_EBU_ADDSEL1) || \
173 defined(CONFIG_EBU_ADDSEL2) || defined(CONFIG_EBU_ADDSEL3) || \
174 defined(CONFIG_EBU_BUSCON0) || defined(CONFIG_EBU_BUSCON1) || \
175 defined(CONFIG_EBU_BUSCON2) || defined(CONFIG_EBU_BUSCON3)
177 li t1, EBU_MODUL_BASE
178 #if defined(CONFIG_EBU_ADDSEL0)
179 li t2, CONFIG_EBU_ADDSEL0
180 sw t2, EBU_ADDSEL0(t1)
182 #if defined(CONFIG_EBU_ADDSEL1)
183 li t2, CONFIG_EBU_ADDSEL1
184 sw t2, EBU_ADDSEL1(t1)
186 #if defined(CONFIG_EBU_ADDSEL2)
187 li t2, CONFIG_EBU_ADDSEL2
188 sw t2, EBU_ADDSEL2(t1)
190 #if defined(CONFIG_EBU_ADDSEL3)
191 li t2, CONFIG_EBU_ADDSEL3
192 sw t2, EBU_ADDSEL3(t1)
195 #if defined(CONFIG_EBU_BUSCON0)
196 li t2, CONFIG_EBU_BUSCON0
197 sw t2, EBU_BUSCON0(t1)
199 #if defined(CONFIG_EBU_BUSCON1)
200 li t2, CONFIG_EBU_BUSCON1
201 sw t2, EBU_BUSCON1(t1)
203 #if defined(CONFIG_EBU_BUSCON2)
204 li t2, CONFIG_EBU_BUSCON2
205 sw t2, EBU_BUSCON2(t1)
207 #if defined(CONFIG_EBU_BUSCON3)
208 li t2, CONFIG_EBU_BUSCON3
209 sw t2, EBU_BUSCON3(t1)
221 * void cgu_init(long)
223 * a0 has the clock value
230 beq t2,a0,freq_up2date
235 #if defined(CONFIG_CPU_333M_RAM_166M) && defined(CONFIG_USE_PLL1)
237 li a1, pll1_36MHz_CONFIG
241 #if defined(CONFIG_CLASS_II_DDR_PAD)
244 sw a1, 0(t1) // Turn on DDR PAD Class II to INC drive.
263 #ifndef CONFIG_USE_DDR_RAM
265 * void sdram_init(long)
267 * a0 has the clock value
273 /* SDRAM Initialization
277 /* Clear Error log registers */
278 sw zero, MC_ERRCAUSE(t1)
279 sw zero, MC_ERRADDR(t1)
281 /* Enable SDRAM module in memory controller */
282 li t3, MC_SDRAM_ENABLE
287 li t1, MC_SDR_MODUL_BASE
289 /* disable the controller */
291 sw t2, MC_CTRLENA(t1)
299 /* Set CAS Latency */
301 sw t2, MC_MRSCODE(t1)
303 /* Set CS0 to SDRAM parameters */
307 /* Set SDRAM latency parameters */
308 li t2, 0x00036325; /* BC PC100 */
309 sw t2, MC_LATENCY(t1)
311 /* Set SDRAM refresh rate */
313 sw t2, MC_TREFRESH(t1)
315 /* Clear Power-down registers */
316 sw zero, MC_SELFRFSH(t1)
318 /* Finally enable the controller */
320 sw t2, MC_CTRLENA(t1)
327 #endif /* !CONFIG_USE_DDR_RAM */
329 #ifdef CONFIG_USE_DDR_RAM
331 * void ddrram_init(long)
333 * a0 has the clock value
339 /* DDR-DRAM Initialization
343 /* Clear Error log registers */
344 sw zero, MC_ERRCAUSE(t1)
345 sw zero, MC_ERRADDR(t1)
347 /* Enable DDR module in memory controller */
348 li t3, MC_DDRRAM_ENABLE
353 li t1, MC_DDR_MODUL_BASE
355 /* Write configuration to DDR controller registers */
504 #endif /* CONFIG_USE_DDR_RAM */
509 /* EBU, CGU and SDRAM/DDR-RAM Initialization.
512 /* We rely on the fact that non of the following ..._init() functions
515 #if defined(CONFIG_SYS_EBU_BOOT)
522 #endif /* CONFIG_SYS_EBU_BOOT */
527 #ifdef CONFIG_SYS_EBU_BOOT
528 #ifndef CONFIG_SYS_RAMBOOT
529 #ifdef CONFIG_USE_DDR_RAM
536 #endif /* CONFIG_SYS_RAMBOOT */
537 #endif /* CONFIG_SYS_EBU_BOOT */