blob: ca7361e05a6711776efd5f691e94732be075c196 [file] [log] [blame]
wdenk1eaeb582004-06-08 00:22:43 +00001/*
2 * Board specific setup info
3 *
4 * (C) Copyright 2003
5 * Texas Instruments, <www.ti.com>
6 * Kshitij Gupta <Kshitij@ti.com>
7 *
8 * Modified for OMAP 1610 H2 board by Nishant Kamat, Jan 2004
9 *
10 * Modified for OMAP 5912 OSK board by Rishi Bhattacharya, Apr 2004
11 * See file CREDITS for list of people who contributed to this
12 * project.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 * MA 02111-1307 USA
28 */
29
30#include <config.h>
31#include <version.h>
32
33#if defined(CONFIG_OMAP1610)
34#include <./configs/omap1510.h>
35#endif
36
37
38_TEXT_BASE:
Wolfgang Denk14d0a022010-10-07 21:51:12 +020039 .word CONFIG_SYS_TEXT_BASE /* sdram load addr from config.mk */
wdenk1eaeb582004-06-08 00:22:43 +000040
Wolfgang Denk87cb6862005-10-06 17:08:18 +020041.globl lowlevel_init
42lowlevel_init:
wdenk1eaeb582004-06-08 00:22:43 +000043
Stefan Roese6080a0e2006-05-10 10:55:16 +020044 /*------------------------------------------------------*
45 * Ensure i-cache is enabled *
46 * To configure TC regs without fetching instruction *
47 *------------------------------------------------------*/
48 mrc p15, 0, r0, c1, c0
49 orr r0, r0, #0x1000
50 mcr p15, 0, r0, c1, c0
wdenk1eaeb582004-06-08 00:22:43 +000051
52 /*------------------------------------------------------*
53 *mask all IRQs by setting all bits in the INTMR default*
54 *------------------------------------------------------*/
55 mov r1, #0xffffffff
56 ldr r0, =REG_IHL1_MIR
57 str r1, [r0]
58 ldr r0, =REG_IHL2_MIR
59 str r1, [r0]
60
61 /*------------------------------------------------------*
62 * Set up ARM CLM registers (IDLECT1) *
63 *------------------------------------------------------*/
64 ldr r0, REG_ARM_IDLECT1
65 ldr r1, VAL_ARM_IDLECT1
66 str r1, [r0]
67
68 /*------------------------------------------------------*
Stefan Roese6080a0e2006-05-10 10:55:16 +020069 * Set up ARM CLM registers (IDLECT2) *
wdenk1eaeb582004-06-08 00:22:43 +000070 *------------------------------------------------------*/
71 ldr r0, REG_ARM_IDLECT2
72 ldr r1, VAL_ARM_IDLECT2
73 str r1, [r0]
74
75 /*------------------------------------------------------*
Stefan Roese6080a0e2006-05-10 10:55:16 +020076 * Set up ARM CLM registers (IDLECT3) *
wdenk1eaeb582004-06-08 00:22:43 +000077 *------------------------------------------------------*/
78 ldr r0, REG_ARM_IDLECT3
79 ldr r1, VAL_ARM_IDLECT3
80 str r1, [r0]
81
Stefan Roese6080a0e2006-05-10 10:55:16 +020082 mov r1, #0x01 /* PER_EN bit */
wdenk1eaeb582004-06-08 00:22:43 +000083 ldr r0, REG_ARM_RSTCT2
Stefan Roese6080a0e2006-05-10 10:55:16 +020084 strh r1, [r0] /* CLKM; Peripheral reset. */
wdenk1eaeb582004-06-08 00:22:43 +000085
Stefan Roese6080a0e2006-05-10 10:55:16 +020086 /* Set CLKM to Sync-Scalable */
87 mov r1, #0x1000
wdenk1eaeb582004-06-08 00:22:43 +000088 ldr r0, REG_ARM_SYSST
Stefan Roese6080a0e2006-05-10 10:55:16 +020089
90 mov r2, #0
911: cmp r2, #1
92 streqh r1, [r0]
93 add r2, r2, #1
94 cmp r2, #0x100 /* wait for any bubbles to finish */
wdenk1eaeb582004-06-08 00:22:43 +000095 bne 1b
Stefan Roese6080a0e2006-05-10 10:55:16 +020096
wdenk1eaeb582004-06-08 00:22:43 +000097 ldr r1, VAL_ARM_CKCTL
98 ldr r0, REG_ARM_CKCTL
99 strh r1, [r0]
100
101 /* a few nops to let settle */
102 nop
103 nop
104 nop
105 nop
106 nop
107 nop
108 nop
109 nop
110 nop
111 nop
112
113 /* setup DPLL 1 */
114 /* Ramp up the clock to 96Mhz */
115 ldr r1, VAL_DPLL1_CTL
116 ldr r0, REG_DPLL1_CTL
117 strh r1, [r0]
Stefan Roese6080a0e2006-05-10 10:55:16 +0200118 ands r1, r1, #0x10 /* Check if PLL is enabled. */
119 beq lock_end /* Do not look for lock if BYPASS selected */
wdenk1eaeb582004-06-08 00:22:43 +00001202:
121 ldrh r1, [r0]
Stefan Roese6080a0e2006-05-10 10:55:16 +0200122 ands r1, r1, #0x01 /* Check the LOCK bit.*/
123 beq 2b /* loop until bit goes hi. */
wdenk1eaeb582004-06-08 00:22:43 +0000124lock_end:
125
wdenk1eaeb582004-06-08 00:22:43 +0000126 /*------------------------------------------------------*
Stefan Roese6080a0e2006-05-10 10:55:16 +0200127 * Turn off the watchdog during init... *
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200128 *------------------------------------------------------*/
wdenk1eaeb582004-06-08 00:22:43 +0000129 ldr r0, REG_WATCHDOG
130 ldr r1, WATCHDOG_VAL1
131 str r1, [r0]
132 ldr r1, WATCHDOG_VAL2
133 str r1, [r0]
134 ldr r0, REG_WSPRDOG
135 ldr r1, WSPRDOG_VAL1
136 str r1, [r0]
137 ldr r0, REG_WWPSDOG
138
139watch1Wait:
140 ldr r1, [r0]
141 tst r1, #0x10
142 bne watch1Wait
143
144 ldr r0, REG_WSPRDOG
145 ldr r1, WSPRDOG_VAL2
146 str r1, [r0]
147 ldr r0, REG_WWPSDOG
148watch2Wait:
149 ldr r1, [r0]
150 tst r1, #0x10
151 bne watch2Wait
152
wdenk1eaeb582004-06-08 00:22:43 +0000153 /* Set memory timings corresponding to the new clock speed */
Stefan Roese6080a0e2006-05-10 10:55:16 +0200154 ldr r3, VAL_SDRAM_CONFIG_SDF0
wdenk1eaeb582004-06-08 00:22:43 +0000155
156 /* Check execution location to determine current execution location
157 * and branch to appropriate initialization code.
158 */
Stefan Roese6080a0e2006-05-10 10:55:16 +0200159 mov r0, #0x10000000 /* Load physical SDRAM base. */
160 mov r1, pc /* Get current execution location. */
161 cmp r1, r0 /* Compare. */
162 bge skip_sdram /* Skip over EMIF-fast initialization if running from SDRAM. */
163
164 /* identify the device revision, -- TMX or TMP(TMS) */
165 ldr r0, REG_DEVICE_ID
166 ldr r1, [r0]
167
168 ldr r0, VAL_DEVICE_ID_TMP
169 mov r1, r1, lsl #15
170 mov r1, r1, lsr #16
171 cmp r0, r1
172 bne skip_TMP_Patch
173
174 /* Enable TMP/TMS device new features */
175 mov r0, #1
176 ldr r1, REG_TC_EMIFF_DOUBLER
177 str r0, [r1]
178
179 /* Enable new ac parameters */
180 mov r0, #0x0b
181 ldr r1, REG_SDRAM_CONFIG2
182 str r0, [r1]
183
184 ldr r3, VAL_SDRAM_CONFIG_SDF1
185
186skip_TMP_Patch:
wdenk1eaeb582004-06-08 00:22:43 +0000187
188 /*
189 * Delay for SDRAM initialization.
190 */
Stefan Roese6080a0e2006-05-10 10:55:16 +0200191 mov r0, #0x1800 /* value should be checked */
wdenk1eaeb582004-06-08 00:22:43 +00001923:
Stefan Roese6080a0e2006-05-10 10:55:16 +0200193 subs r0, r0, #0x1 /* Decrement count */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200194 bne 3b
wdenk1eaeb582004-06-08 00:22:43 +0000195
wdenk1eaeb582004-06-08 00:22:43 +0000196 /*
197 * Set SDRAM control values. Disable refresh before MRS command.
198 */
199
200 /* mobile ddr operation */
201 ldr r0, REG_SDRAM_OPERATION
202 mov r2, #07
203 str r2, [r0]
204
205 /* config register */
206 ldr r0, REG_SDRAM_CONFIG
Stefan Roese6080a0e2006-05-10 10:55:16 +0200207 str r3, [r0]
wdenk1eaeb582004-06-08 00:22:43 +0000208
209 /* manual command register */
210 ldr r0, REG_SDRAM_MANUAL_CMD
Stefan Roese6080a0e2006-05-10 10:55:16 +0200211
wdenk1eaeb582004-06-08 00:22:43 +0000212 /* issue set cke high */
213 mov r1, #CMD_SDRAM_CKE_SET_HIGH
214 str r1, [r0]
Stefan Roese6080a0e2006-05-10 10:55:16 +0200215
wdenk1eaeb582004-06-08 00:22:43 +0000216 /* issue nop */
217 mov r1, #CMD_SDRAM_NOP
218 str r1, [r0]
219
220 mov r2, #0x0100
221waitMDDR1:
222 subs r2, r2, #1
223 bne waitMDDR1 /* delay loop */
224
225 /* issue precharge */
226 mov r1, #CMD_SDRAM_PRECHARGE
227 str r1, [r0]
228
229 /* issue autorefresh x 2 */
230 mov r1, #CMD_SDRAM_AUTOREFRESH
231 str r1, [r0]
232 str r1, [r0]
233
234 /* mrs register ddr mobile */
235 ldr r0, REG_SDRAM_MRS
236 mov r1, #0x33
237 str r1, [r0]
238
239 /* emrs1 low-power register */
240 ldr r0, REG_SDRAM_EMRS1
241 /* self refresh on all banks */
242 mov r1, #0
243 str r1, [r0]
244
245 ldr r0, REG_DLL_URD_CONTROL
246 ldr r1, DLL_URD_CONTROL_VAL
247 str r1, [r0]
248
249 ldr r0, REG_DLL_LRD_CONTROL
250 ldr r1, DLL_LRD_CONTROL_VAL
251 str r1, [r0]
252
253 ldr r0, REG_DLL_WRT_CONTROL
254 ldr r1, DLL_WRT_CONTROL_VAL
255 str r1, [r0]
256
257 /* delay loop */
Stefan Roese6080a0e2006-05-10 10:55:16 +0200258 mov r0, #0x0100
wdenk1eaeb582004-06-08 00:22:43 +0000259waitMDDR2:
Stefan Roese6080a0e2006-05-10 10:55:16 +0200260 subs r0, r0, #1
wdenk1eaeb582004-06-08 00:22:43 +0000261 bne waitMDDR2
262
263 /*
264 * Delay for SDRAM initialization.
265 */
Stefan Roese6080a0e2006-05-10 10:55:16 +0200266 mov r0, #0x1800
wdenk1eaeb582004-06-08 00:22:43 +00002674:
Stefan Roese6080a0e2006-05-10 10:55:16 +0200268 subs r0, r0, #1 /* Decrement count. */
wdenk1eaeb582004-06-08 00:22:43 +0000269 bne 4b
270 b common_tc
271
272skip_sdram:
wdenk1eaeb582004-06-08 00:22:43 +0000273 ldr r0, REG_SDRAM_CONFIG
Stefan Roese6080a0e2006-05-10 10:55:16 +0200274 str r3, [r0]
wdenk1eaeb582004-06-08 00:22:43 +0000275
276common_tc:
277 /* slow interface */
278 ldr r1, VAL_TC_EMIFS_CS0_CONFIG
279 ldr r0, REG_TC_EMIFS_CS0_CONFIG
280 str r1, [r0] /* Chip Select 0 */
281
282 ldr r1, VAL_TC_EMIFS_CS1_CONFIG
283 ldr r0, REG_TC_EMIFS_CS1_CONFIG
284 str r1, [r0] /* Chip Select 1 */
Stefan Roese6080a0e2006-05-10 10:55:16 +0200285
wdenk1eaeb582004-06-08 00:22:43 +0000286 ldr r1, VAL_TC_EMIFS_CS3_CONFIG
287 ldr r0, REG_TC_EMIFS_CS3_CONFIG
288 str r1, [r0] /* Chip Select 3 */
289
Stefan Roese6080a0e2006-05-10 10:55:16 +0200290 ldr r1, VAL_TC_EMIFS_DWS
291 ldr r0, REG_TC_EMIFS_DWS
292 str r1, [r0] /* Enable EMIFS.RDY for CS1 (ether) */
293
wdenk1eaeb582004-06-08 00:22:43 +0000294#ifdef CONFIG_H2_OMAP1610
295 /* inserting additional 2 clock cycle hold time for LAN */
296 ldr r0, REG_TC_EMIFS_CS1_ADVANCED
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200297 ldr r1, VAL_TC_EMIFS_CS1_ADVANCED
wdenk1eaeb582004-06-08 00:22:43 +0000298 str r1, [r0]
299#endif
300 /* Start MPU Timer 1 */
301 ldr r0, REG_MPU_LOAD_TIMER
302 ldr r1, VAL_MPU_LOAD_TIMER
303 str r1, [r0]
304
305 ldr r0, REG_MPU_CNTL_TIMER
306 ldr r1, VAL_MPU_CNTL_TIMER
307 str r1, [r0]
308
Jon Hunter2a309f32013-04-09 16:41:31 -0500309 /*
310 * Setup a temporary stack
311 */
312 ldr sp, SRAM_STACK
313 bic sp, sp, #7 /* 8-byte alignment for ABI compliance */
314
315 /*
316 * Save the old lr(passed in ip) and the current lr to stack
317 */
318 push {ip, lr}
319
320 /*
321 * go setup pll, mux, memory
322 */
323 bl s_init
324 pop {ip, pc}
325
wdenk1eaeb582004-06-08 00:22:43 +0000326 /* back to arch calling code */
327 mov pc, lr
328
329 /* the literal pools origin */
330 .ltorg
331
Stefan Roese6080a0e2006-05-10 10:55:16 +0200332REG_DEVICE_ID: /* 32 bits */
333 .word 0xfffe2004
334REG_TC_EMIFS_CONFIG:
wdenk1eaeb582004-06-08 00:22:43 +0000335 .word 0xfffecc0c
336REG_TC_EMIFS_CS0_CONFIG: /* 32 bits */
337 .word 0xfffecc10
338REG_TC_EMIFS_CS1_CONFIG: /* 32 bits */
339 .word 0xfffecc14
340REG_TC_EMIFS_CS2_CONFIG: /* 32 bits */
341 .word 0xfffecc18
342REG_TC_EMIFS_CS3_CONFIG: /* 32 bits */
343 .word 0xfffecc1c
Stefan Roese6080a0e2006-05-10 10:55:16 +0200344REG_TC_EMIFS_DWS: /* 32 bits */
345 .word 0xfffecc40
wdenk1eaeb582004-06-08 00:22:43 +0000346#ifdef CONFIG_H2_OMAP1610
347REG_TC_EMIFS_CS1_ADVANCED: /* 32 bits */
348 .word 0xfffecc54
349#endif
350
351/* MPU clock/reset/power mode control registers */
352REG_ARM_CKCTL: /* 16 bits */
353 .word 0xfffece00
wdenk1eaeb582004-06-08 00:22:43 +0000354REG_ARM_IDLECT3: /* 16 bits */
355 .word 0xfffece24
356REG_ARM_IDLECT2: /* 16 bits */
357 .word 0xfffece08
358REG_ARM_IDLECT1: /* 16 bits */
359 .word 0xfffece04
wdenk1eaeb582004-06-08 00:22:43 +0000360REG_ARM_RSTCT2: /* 16 bits */
361 .word 0xfffece14
362REG_ARM_SYSST: /* 16 bits */
363 .word 0xfffece18
Stefan Roese6080a0e2006-05-10 10:55:16 +0200364
wdenk1eaeb582004-06-08 00:22:43 +0000365/* DPLL control registers */
366REG_DPLL1_CTL: /* 16 bits */
367 .word 0xfffecf00
368
369/* Watch Dog register */
370/* secure watchdog stop */
371REG_WSPRDOG:
372 .word 0xfffeb048
373/* watchdog write pending */
374REG_WWPSDOG:
375 .word 0xfffeb034
376
377WSPRDOG_VAL1:
378 .word 0x0000aaaa
379WSPRDOG_VAL2:
380 .word 0x00005555
381
382/* SDRAM config is: auto refresh enabled, 16 bit 4 bank,
383 counter @8192 rows, 10 ns, 8 burst */
384REG_SDRAM_CONFIG:
385 .word 0xfffecc20
Stefan Roese6080a0e2006-05-10 10:55:16 +0200386REG_SDRAM_CONFIG2:
387 .word 0xfffecc3c
388REG_TC_EMIFF_DOUBLER: /* 32 bits */
389 .word 0xfffecc60
wdenk1eaeb582004-06-08 00:22:43 +0000390
391/* Operation register */
392REG_SDRAM_OPERATION:
393 .word 0xfffecc80
394
395/* Manual command register */
396REG_SDRAM_MANUAL_CMD:
397 .word 0xfffecc84
398
399/* SDRAM MRS (New) config is: CAS latency is 2, burst length 8 */
400REG_SDRAM_MRS:
401 .word 0xfffecc70
402
403/* SDRAM MRS (New) config is: CAS latency is 2, burst length 8 */
404REG_SDRAM_EMRS1:
405 .word 0xfffecc78
406
407/* WRT DLL register */
408REG_DLL_WRT_CONTROL:
409 .word 0xfffecc68
410DLL_WRT_CONTROL_VAL:
Stefan Roese6080a0e2006-05-10 10:55:16 +0200411 .word 0x03f00002 /* Phase of 72deg, write offset +31 */
wdenk1eaeb582004-06-08 00:22:43 +0000412
413/* URD DLL register */
414REG_DLL_URD_CONTROL:
415 .word 0xfffeccc0
416DLL_URD_CONTROL_VAL:
Stefan Roese6080a0e2006-05-10 10:55:16 +0200417 .word 0x00800002 /* Phase of 72deg, read offset +31 */
wdenk1eaeb582004-06-08 00:22:43 +0000418
419/* LRD DLL register */
420REG_DLL_LRD_CONTROL:
421 .word 0xfffecccc
Stefan Roese6080a0e2006-05-10 10:55:16 +0200422DLL_LRD_CONTROL_VAL:
423 .word 0x00800002 /* read offset +31 */
wdenk1eaeb582004-06-08 00:22:43 +0000424
425REG_WATCHDOG:
426 .word 0xfffec808
Stefan Roese6080a0e2006-05-10 10:55:16 +0200427WATCHDOG_VAL1:
428 .word 0x000000f5
429WATCHDOG_VAL2:
430 .word 0x000000a0
wdenk1eaeb582004-06-08 00:22:43 +0000431
432REG_MPU_LOAD_TIMER:
Stefan Roese6080a0e2006-05-10 10:55:16 +0200433 .word 0xfffec504
wdenk1eaeb582004-06-08 00:22:43 +0000434REG_MPU_CNTL_TIMER:
435 .word 0xfffec500
Stefan Roese6080a0e2006-05-10 10:55:16 +0200436VAL_MPU_LOAD_TIMER:
437 .word 0xffffffff
438VAL_MPU_CNTL_TIMER:
439 .word 0xffffffa1
wdenk1eaeb582004-06-08 00:22:43 +0000440
441/* 96 MHz Samsung Mobile DDR */
Stefan Roese6080a0e2006-05-10 10:55:16 +0200442/* Original setting for TMX device */
443VAL_SDRAM_CONFIG_SDF0:
444 .word 0x0014e6fe
wdenk1eaeb582004-06-08 00:22:43 +0000445
Stefan Roese6080a0e2006-05-10 10:55:16 +0200446/* NEW_SYS_FREQ mode (valid only TMP/TMS devices) */
447VAL_SDRAM_CONFIG_SDF1:
448 .word 0x0114e6fe
wdenk1eaeb582004-06-08 00:22:43 +0000449
450VAL_ARM_CKCTL:
Stefan Roese6080a0e2006-05-10 10:55:16 +0200451 .word 0x2000 /* was: 0x3000, now use CLK_REF for timer input */
wdenk1eaeb582004-06-08 00:22:43 +0000452VAL_DPLL1_CTL:
453 .word 0x2830
454
455#ifdef CONFIG_OSK_OMAP5912
456VAL_TC_EMIFS_CS0_CONFIG:
457 .word 0x002130b0
458VAL_TC_EMIFS_CS1_CONFIG:
Stefan Roesed1dd22f2006-05-10 11:49:37 +0200459 .word 0x00001133
wdenk1eaeb582004-06-08 00:22:43 +0000460VAL_TC_EMIFS_CS2_CONFIG:
461 .word 0x000055f0
462VAL_TC_EMIFS_CS3_CONFIG:
Stefan Roese6080a0e2006-05-10 10:55:16 +0200463 .word 0x88013141
464VAL_TC_EMIFS_DWS: /* Enable EMIFS.RDY for CS1 access (ether) */
465 .word 0x000000c0
466VAL_DEVICE_ID_TMP: /* TMP/TMS=0xb65f, TMX=0xb58c */
467 .word 0xb65f
wdenk1eaeb582004-06-08 00:22:43 +0000468#endif
469
470#ifdef CONFIG_H2_OMAP1610
471VAL_TC_EMIFS_CS0_CONFIG:
472 .word 0x00203331
473VAL_TC_EMIFS_CS1_CONFIG:
474 .word 0x8180fff3
475VAL_TC_EMIFS_CS2_CONFIG:
476 .word 0xf800f22a
477VAL_TC_EMIFS_CS3_CONFIG:
Stefan Roese6080a0e2006-05-10 10:55:16 +0200478 .word 0x88013141
wdenk1eaeb582004-06-08 00:22:43 +0000479VAL_TC_EMIFS_CS1_ADVANCED:
480 .word 0x00000022
481#endif
482
wdenk1eaeb582004-06-08 00:22:43 +0000483VAL_ARM_IDLECT1:
484 .word 0x00000400
wdenk1eaeb582004-06-08 00:22:43 +0000485VAL_ARM_IDLECT2:
486 .word 0x00000886
487VAL_ARM_IDLECT3:
488 .word 0x00000015
489
Jon Hunter2a309f32013-04-09 16:41:31 -0500490SRAM_STACK:
491 .word CONFIG_SYS_INIT_SP_ADDR
492
wdenk1eaeb582004-06-08 00:22:43 +0000493/* command values */
Stefan Roese6080a0e2006-05-10 10:55:16 +0200494.equ CMD_SDRAM_NOP, 0x00000000
495.equ CMD_SDRAM_PRECHARGE, 0x00000001
496.equ CMD_SDRAM_AUTOREFRESH, 0x00000002
497.equ CMD_SDRAM_CKE_SET_HIGH, 0x00000007