blob: c3bb4eb67f1bb9ce9180f9d06656fd0af6ee3d2b [file] [log] [blame]
Markus Klotzbücheraf646e82006-02-07 20:48:45 +01001/*
2 * Most of this taken from Redboot hal_platform_setup.h with cleanup
3 *
4 * NOTE: I haven't clean this up considerably, just enough to get it
5 * running. See hal_platform_setup.h for the source. See
6 * board/cradle/lowlevel_init.S for another PXA250 setup that is
7 * much cleaner.
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Wolfgang Denk951a9542006-03-06 23:18:48 +010019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Markus Klotzbücheraf646e82006-02-07 20:48:45 +010020 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28#include <config.h>
29#include <version.h>
30#include <asm/arch/pxa-regs.h>
31
32DRAM_SIZE: .long CFG_DRAM_SIZE
33
34/* wait for coprocessor write complete */
Wolfgang Denk951a9542006-03-06 23:18:48 +010035.macro CPWAIT reg
36 mrc p15,0,\reg,c2,c0,0
37 mov \reg,\reg
38 sub pc,pc,#4
39.endm
Markus Klotzbücheraf646e82006-02-07 20:48:45 +010040
41
Markus Klotzbücher9d803d82006-02-08 18:56:28 +010042.macro wait time
Wolfgang Denk951a9542006-03-06 23:18:48 +010043 ldr r2, =OSCR
44 mov r3, #0
45 str r3, [r2]
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100460:
Wolfgang Denk951a9542006-03-06 23:18:48 +010047 ldr r3, [r2]
48 cmp r3, \time
49 bls 0b
Markus Klotzbücher9d803d82006-02-08 18:56:28 +010050.endm
Wolfgang Denk951a9542006-03-06 23:18:48 +010051
Markus Klotzbücheraf646e82006-02-07 20:48:45 +010052/*
Wolfgang Denk951a9542006-03-06 23:18:48 +010053 * Memory setup
Markus Klotzbücheraf646e82006-02-07 20:48:45 +010054 */
55
56.globl lowlevel_init
57lowlevel_init:
58 /* Set up GPIO pins first ----------------------------------------- */
Wolfgang Denk951a9542006-03-06 23:18:48 +010059 mov r10, lr
Markus Klotzbücheraf646e82006-02-07 20:48:45 +010060
Wolfgang Denk951a9542006-03-06 23:18:48 +010061 /* Configure GPIO Pins 41 - 48 as UART1 / altern. Fkt. 2 */
62 ldr r0, =0x40E10438 @ GPIO41 FFRXD
63 ldr r1, =0x802
64 str r1, [r0]
Markus Klotzbücheraf646e82006-02-07 20:48:45 +010065
Wolfgang Denk951a9542006-03-06 23:18:48 +010066 ldr r0, =0x40E1043C @ GPIO42 FFTXD
67 ldr r1, =0x802
68 str r1, [r0]
Markus Klotzbücheraf646e82006-02-07 20:48:45 +010069
Wolfgang Denk951a9542006-03-06 23:18:48 +010070 ldr r0, =0x40E10440 @ GPIO43 FFCTS
71 ldr r1, =0x802
72 str r1, [r0]
Markus Klotzbücheraf646e82006-02-07 20:48:45 +010073
Wolfgang Denk951a9542006-03-06 23:18:48 +010074 ldr r0, =0x40E10444 @ GPIO 44 FFDCD
75 ldr r1, =0x802
76 str r1, [r0]
Markus Klotzbücheraf646e82006-02-07 20:48:45 +010077
Wolfgang Denk951a9542006-03-06 23:18:48 +010078 ldr r0, =0x40E10448 @ GPIO 45 FFDSR
79 ldr r1, =0x802
80 str r1, [r0]
Markus Klotzbücheraf646e82006-02-07 20:48:45 +010081
Wolfgang Denk951a9542006-03-06 23:18:48 +010082 ldr r0, =0x40E1044C @ GPIO 46 FFRI
83 ldr r1, =0x802
84 str r1, [r0]
Markus Klotzbücheraf646e82006-02-07 20:48:45 +010085
Wolfgang Denk951a9542006-03-06 23:18:48 +010086 ldr r0, =0x40E10450 @ GPIO 47 FFDTR
87 ldr r1, =0x802
88 str r1, [r0]
Markus Klotzbücheraf646e82006-02-07 20:48:45 +010089
Wolfgang Denk951a9542006-03-06 23:18:48 +010090 ldr r0, =0x40E10454 @ GPIO 48
91 ldr r1, =0x802
92 str r1, [r0]
93
94 /* tebrandt - ASCR, clear the RDH bit */
95 ldr r0, =ASCR
96 ldr r1, [r0]
97 bic r1, r1, #0x80000000
98 str r1, [r0]
99
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100100 /* ---------------------------------------------------------------- */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100101 /* Enable memory interface */
102 /* */
103 /* The sequence below is based on the recommended init steps */
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100104 /* detailed in the Intel PXA250 Operating Systems Developers Guide, */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100105 /* Chapter 10. */
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100106 /* ---------------------------------------------------------------- */
107
108 /* ---------------------------------------------------------------- */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100109 /* Step 1: Wait for at least 200 microsedonds to allow internal */
110 /* clocks to settle. Only necessary after hard reset... */
111 /* FIXME: can be optimized later */
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100112 /* ---------------------------------------------------------------- */
113
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100114 /* mk: replaced with wait macro */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100115/* ldr r3, =OSCR /\* reset the OS Timer Count to zero *\/ */
116/* mov r2, #0 */
117/* str r2, [r3] */
118/* ldr r4, =0x300 /\* really 0x2E1 is about 200usec, *\/ */
119/* /\* so 0x300 should be plenty *\/ */
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100120/* 1: */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100121/* ldr r2, [r3] */
122/* cmp r4, r2 */
123/* bgt 1b */
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100124 wait #300
Wolfgang Denk951a9542006-03-06 23:18:48 +0100125
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100126mem_init:
127
128 /* configure the MEMCLKCFG register */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100129 ldr r1, =MEMCLKCFG
130 ldr r2, =0x00010001
131 str r2, [r1] @ WRITE
132 ldr r2, [r1] @ DELAY UNTIL WRITTEN
133
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100134 /* set CSADRCFG[0] to data flash SRAM mode */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100135 ldr r1, =CSADRCFG0
136 ldr r2, =0x00320809
137 str r2, [r1] @ WRITE
138 ldr r2, [r1] @ DELAY UNTIL WRITTEN
139
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100140 /* set CSADRCFG[1] to data flash SRAM mode */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100141 ldr r1, =CSADRCFG1
142 ldr r2, =0x00320809
143 str r2, [r1] @ WRITE
144 ldr r2, [r1] @ DELAY UNTIL WRITTEN
145
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100146 /* set MSC 0 register for SRAM memory */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100147 ldr r1, =MSC0
148 ldr r2, =0x11191119
149 str r2, [r1] @ WRITE
150 ldr r2, [r1] @ DELAY UNTIL WRITTEN
151
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100152 /* set CSADRCFG[2] to data flash SRAM mode */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100153 ldr r1, =CSADRCFG2
154 ldr r2, =0x00320809
155 str r2, [r1] @ WRITE
156 ldr r2, [r1] @ DELAY UNTIL WRITTEN
157
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100158 /* set CSADRCFG[3] to VLIO mode */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100159 ldr r1, =CSADRCFG3
160 ldr r2, =0x0032080B
161 str r2, [r1] @ WRITE
162 ldr r2, [r1] @ DELAY UNTIL WRITTEN
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100163
164 /* set MSC 1 register for VLIO memory */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100165 ldr r1, =MSC1
166 ldr r2, =0x123C1119
167 str r2, [r1] @ WRITE
168 ldr r2, [r1] @ DELAY UNTIL WRITTEN
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100169
170#if 0
171 /* This does not work in Zylonite. -SC */
172 ldr r0, =0x15fffff0
173 ldr r1, =0xb10b
174 str r1, [r0]
175 str r1, [r0, #4]
176#endif
177
178 /* Configure ACCR Register */
179 ldr r0, =ACCR @ ACCR
180 ldr r1, =0x0180b108
181 str r1, [r0]
182 ldr r1, [r0]
183
184 /* Configure MDCNFG Register */
185 ldr r0, =MDCNFG @ MDCNFG
186 ldr r1, =0x403
187 str r1, [r0]
188 ldr r1, [r0]
189
190 /* Perform Resistive Compensation by configuring RCOMP register */
191 ldr r1, =RCOMP @ RCOMP
192 ldr r2, =0x000000ff
193 str r2, [r1]
194 ldr r2, [r1]
195
196 /* Configure MDMRS Register for SDCS0 */
197 ldr r1, =MDMRS @ MDMRS
198 ldr r2, =0x60000023
199 ldr r3, [r1]
200 orr r2, r2, r3
201 str r2, [r1]
202 ldr r2, [r1]
203
204 /* Configure MDMRS Register for SDCS1 */
205 ldr r1, =MDMRS @ MDMRS
206 ldr r2, =0xa0000023
207 ldr r3, [r1]
208 orr r2, r2, r3
209 str r2, [r1]
210 ldr r2, [r1]
211
212 /* Configure MDREFR */
213 ldr r1, =MDREFR @ MDREFR
214 ldr r2, =0x00000006
215 str r2, [r1]
216 ldr r2, [r1]
217
218 /* Configure EMPI */
219 ldr r1, =EMPI @ EMPI
220 ldr r2, =0x80000000
221 str r2, [r1]
222 ldr r2, [r1]
223
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100224 /* Hardware DDR Read-Strobe Delay Calibration */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100225 ldr r0, =DDR_HCAL @ DDR_HCAL
226 ldr r1, =0x803ffc07 @ the offset is correct? -SC
227 str r1, [r0]
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100228 wait #5
Wolfgang Denk951a9542006-03-06 23:18:48 +0100229 ldr r1, [r0]
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100230
231 /* Here we assume the hardware calibration alwasy be successful. -SC */
232 /* Set DMCEN bit in MDCNFG Register */
233 ldr r0, =MDCNFG @ MDCNFG
234 ldr r1, [r0]
235 orr r1, r1, #0x40000000 @ enable SDRAM for Normal Access
236 str r1, [r0]
237
238 /* scrub/init SDRAM if enabled/present */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100239/* ldr r11, =0xa0000000 /\* base address of SDRAM (CFG_DRAM_BASE) *\/ */
240/* ldr r12, =0x04000000 /\* size of memory to scrub (CFG_DRAM_SIZE) *\/ */
241/* mov r8,r12 /\* save DRAM size (mk: why???) *\/ */
242 ldr r8, =0xa0000000 /* base address of SDRAM (CFG_DRAM_BASE) */
243 ldr r9, =0x04000000 /* size of memory to scrub (CFG_DRAM_SIZE) */
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100244 mov r0, #0 /* scrub with 0x0000:0000 */
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100245 mov r1, #0
Wolfgang Denk951a9542006-03-06 23:18:48 +0100246 mov r2, #0
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100247 mov r3, #0
Wolfgang Denk951a9542006-03-06 23:18:48 +0100248 mov r4, #0
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100249 mov r5, #0
Wolfgang Denk951a9542006-03-06 23:18:48 +0100250 mov r6, #0
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100251 mov r7, #0
Wolfgang Denk951a9542006-03-06 23:18:48 +010025210: /* fastScrubLoop */
253 subs r9, r9, #32 /* 32 bytes/line */
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100254 stmia r8!, {r0-r7}
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100255 beq 15f
256 b 10b
257
25815:
259 /* Mask all interrupts */
260 mov r1, #0
261 mcr p6, 0, r1, c1, c0, 0 @ ICMR
262
263 /* Disable software and data breakpoints */
264 mov r0, #0
Wolfgang Denk951a9542006-03-06 23:18:48 +0100265 mcr p15,0,r0,c14,c8,0 /* ibcr0 */
266 mcr p15,0,r0,c14,c9,0 /* ibcr1 */
267 mcr p15,0,r0,c14,c4,0 /* dbcon */
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100268
269 /* Enable all debug functionality */
270 mov r0,#0x80000000
Wolfgang Denk951a9542006-03-06 23:18:48 +0100271 mcr p14,0,r0,c10,c0,0 /* dcsr */
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100272
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100273 /* We are finished with Intel's memory controller initialisation */
274
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100275 /* ---------------------------------------------------------------- */
Wolfgang Denk951a9542006-03-06 23:18:48 +0100276 /* End lowlevel_init */
Markus Klotzbücheraf646e82006-02-07 20:48:45 +0100277 /* ---------------------------------------------------------------- */
278
279endlowlevel_init:
280
Wolfgang Denk951a9542006-03-06 23:18:48 +0100281 mov pc, lr
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100282
283/*
284@********************************************************************************
285@ DDR calibration
Wolfgang Denk951a9542006-03-06 23:18:48 +0100286@
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100287@ This function is used to calibrate DQS delay lines.
Wolfgang Denk951a9542006-03-06 23:18:48 +0100288@ Monahans supports three ways to do it. One is software
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100289@ calibration. Two is hardware calibration. Three is hybrid
290@ calibration.
291@
292@ TBD
293@ -SC
294ddr_calibration:
295
296 @ Case 1: Write the correct delay value once
Wolfgang Denk951a9542006-03-06 23:18:48 +0100297 @ Configure DDR_SCAL Register
298 ldr r0, =DDR_SCAL @ DDR_SCAL
299q ldr r1, =0xaf2f2f2f
300 str r1, [r0]
301 ldr r1, [r0]
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100302*/
303/* @ Case 2: Software Calibration
304 @ Write test pattern to memory
Wolfgang Denk951a9542006-03-06 23:18:48 +0100305 ldr r5, =0x0faf0faf @ Data Pattern
306 ldr r4, =0xa0000000 @ DDR ram
307 str r5, [r4]
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100308
Wolfgang Denk951a9542006-03-06 23:18:48 +0100309 mov r1, =0x0 @ delay count
310 mov r6, =0x0
311 mov r7, =0x0
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100312ddr_loop1:
Wolfgang Denk951a9542006-03-06 23:18:48 +0100313 add r1, r1, =0x1
314 cmp r1, =0xf
315 ble end_loop
316 mov r3, r1
317 mov r0, r1, lsl #30
318 orr r3, r3, r0
319 mov r0, r1, lsl #22
320 orr r3, r3, r0
321 mov r0, r1, lsl #14
322 orr r3, r3, r0
323 orr r3, r3, =0x80000000
324 ldr r2, =DDR_SCAL
325 str r3, [r2]
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100326
Wolfgang Denk951a9542006-03-06 23:18:48 +0100327 ldr r2, [r4]
328 cmp r2, r5
329 bne ddr_loop1
330 mov r6, r1
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100331ddr_loop2:
Wolfgang Denk951a9542006-03-06 23:18:48 +0100332 add r1, r1, =0x1
333 cmp r1, =0xf
334 ble end_loop
335 mov r3, r1
336 mov r0, r1, lsl #30
337 orr r3, r3, r0
338 mov r0, r1, lsl #22
339 orr r3, r3, r0
340 mov r0, r1, lsl #14
341 orr r3, r3, r0
342 orr r3, r3, =0x80000000
343 ldr r2, =DDR_SCAL
344 str r3, [r2]
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100345
Wolfgang Denk951a9542006-03-06 23:18:48 +0100346 ldr r2, [r4]
347 cmp r2, r5
348 be ddr_loop2
349 mov r7, r2
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100350
Wolfgang Denk951a9542006-03-06 23:18:48 +0100351 add r3, r6, r7
352 lsr r3, r3, =0x1
353 mov r0, r1, lsl #30
354 orr r3, r3, r0
355 mov r0, r1, lsl #22
356 orr r3, r3, r0
357 mov r0, r1, lsl #14
358 orr r3, r3, r0
359 orr r3, r3, =0x80000000
360 ldr r2, =DDR_SCAL
361
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100362end_loop:
363
364 @ Case 3: Hardware Calibratoin
Wolfgang Denk951a9542006-03-06 23:18:48 +0100365 ldr r0, =DDR_HCAL @ DDR_HCAL
366 ldr r1, =0x803ffc07 @ the offset is correct? -SC
367 str r1, [r0]
368 wait #5
369 ldr r1, [r0]
370 mov pc, lr
Markus Klotzbücher9d803d82006-02-08 18:56:28 +0100371*/