]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/omap1510inn/platform.S
* Patch by George G. Davis, 19 Aug 2003:
[people/ms/u-boot.git] / board / omap1510inn / platform.S
CommitLineData
2e5983d2
WD
1/*
2 * Board specific setup info
3 *
4 * (C) Copyright 2003
5 * Texas Instruments, <www.ti.com>
6 *
7 * -- Some bits of code used from rrload's head_OMAP1510.s --
8 * Copyright (C) 2002 RidgeRun, Inc.
9 *
10 * See file CREDITS for list of people who contributed to this
11 * project.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * MA 02111-1307 USA
27 */
28
29#include <config.h>
30#include <version.h>
31
32#if defined(CONFIG_OMAP1510)
33#include <./configs/omap1510.h>
34#endif
35
36#define OMAP1510_CLKS ((1<<EN_XORPCK)|(1<<EN_PERCK)|(1<<EN_TIMCK)|(1<<EN_GPIOCK))
37
38
39_TEXT_BASE:
40 .word TEXT_BASE /* sdram load addr from config.mk */
41
42.globl platformsetup
43platformsetup:
44
945af8d7
WD
45 /*
46 * Configure 1510 pins functions to match our board.
47 */
48 ldr r0, REG_PULL_DWN_CTRL_0
49 ldr r1, VAL_PULL_DWN_CTRL_0
50 str r1, [r0]
51 ldr r0, REG_PULL_DWN_CTRL_1
52 ldr r1, VAL_PULL_DWN_CTRL_1
53 str r1, [r0]
54 ldr r0, REG_PULL_DWN_CTRL_2
55 ldr r1, VAL_PULL_DWN_CTRL_2
56 str r1, [r0]
57 ldr r0, REG_PULL_DWN_CTRL_3
58 ldr r1, VAL_PULL_DWN_CTRL_3
59 str r1, [r0]
60 ldr r0, REG_FUNC_MUX_CTRL_4
61 ldr r1, VAL_FUNC_MUX_CTRL_4
62 str r1, [r0]
63 ldr r0, REG_FUNC_MUX_CTRL_5
64 ldr r1, VAL_FUNC_MUX_CTRL_5
65 str r1, [r0]
66 ldr r0, REG_FUNC_MUX_CTRL_6
67 ldr r1, VAL_FUNC_MUX_CTRL_6
68 str r1, [r0]
69 ldr r0, REG_FUNC_MUX_CTRL_7
70 ldr r1, VAL_FUNC_MUX_CTRL_7
71 str r1, [r0]
72 ldr r0, REG_FUNC_MUX_CTRL_8
73 ldr r1, VAL_FUNC_MUX_CTRL_8
74 str r1, [r0]
75 ldr r0, REG_FUNC_MUX_CTRL_9
76 ldr r1, VAL_FUNC_MUX_CTRL_9
77 str r1, [r0]
78 ldr r0, REG_FUNC_MUX_CTRL_A
79 ldr r1, VAL_FUNC_MUX_CTRL_A
80 str r1, [r0]
81 ldr r0, REG_FUNC_MUX_CTRL_B
82 ldr r1, VAL_FUNC_MUX_CTRL_B
83 str r1, [r0]
84 ldr r0, REG_FUNC_MUX_CTRL_C
85 ldr r1, VAL_FUNC_MUX_CTRL_C
86 str r1, [r0]
6f21347d
WD
87 ldr r0, REG_FUNC_MUX_CTRL_D
88 ldr r1, VAL_FUNC_MUX_CTRL_D
89 str r1, [r0]
945af8d7
WD
90 ldr r0, REG_VOLTAGE_CTRL_0
91 ldr r1, VAL_VOLTAGE_CTRL_0
92 str r1, [r0]
93 ldr r0, REG_TEST_DBG_CTRL_0
94 ldr r1, VAL_TEST_DBG_CTRL_0
95 str r1, [r0]
96 ldr r0, REG_MOD_CONF_CTRL_0
97 ldr r1, VAL_MOD_CONF_CTRL_0
98 str r1, [r0]
2e5983d2 99
945af8d7
WD
100 /* Move to 1510 mode */
101 ldr r0, REG_COMP_MODE_CTRL_0
102 ldr r1, VAL_COMP_MODE_CTRL_0
103 str r1, [r0]
2e5983d2 104
945af8d7
WD
105 /* Set up Traffic Ctlr*/
106 ldr r0, REG_TC_IMIF_PRIO
107 mov r1, #0x0
108 str r1, [r0]
109 ldr r0, REG_TC_EMIFS_PRIO
110 str r1, [r0]
111 ldr r0, REG_TC_EMIFF_PRIO
112 str r1, [r0]
2e5983d2 113
945af8d7
WD
114 ldr r0, REG_TC_EMIFS_CONFIG
115 ldr r1, [r0]
116 bic r1, r1, #0x08 /* clear the global power-down enable PDE bit */
117 bic r1, r1, #0x01 /* write protect flash by clearing the WP bit */
118 str r1, [r0] /* EMIFS GlB Configuration. (value 0x12 most likely) */
2e5983d2 119
945af8d7
WD
120 /* Setup some clock domains */
121 ldr r1, =OMAP1510_CLKS
122 ldr r0, REG_ARM_IDLECT2
123 strh r1, [r0] /* CLKM, Clock domain control. */
2e5983d2 124
945af8d7
WD
125 mov r1, #0x01 /* PER_EN bit */
126 ldr r0, REG_ARM_RSTCT2
127 strh r1, [r0] /* CLKM; Peripheral reset. */
2e5983d2 128
945af8d7
WD
129 /* Set CLKM to Sync-Scalable */
130 /* I supposidly need to enable the dsp clock before switching */
131 mov r1, #0x1000
132 ldr r0, REG_ARM_SYSST
133 strh r1, [r0]
134 mov r0, #0x400
2e5983d2 1351:
945af8d7
WD
136 subs r0, r0, #0x1 /* wait for any bubbles to finish */
137 bne 1b
2e5983d2 138
945af8d7
WD
139 ldr r1, VAL_ARM_CKCTL /* use 12Mhz ref, PER must be <= 50Mhz so /2 */
140 ldr r0, REG_ARM_CKCTL
141 strh r1, [r0]
2e5983d2 142
945af8d7
WD
143 /* setup DPLL 1 */
144 ldr r1, VAL_DPLL1_CTL
145 ldr r0, REG_DPLL1_CTL
146 strh r1, [r0]
147 ands r1, r1, #0x10 /* Check if PLL is enabled. */
148 beq lock_end /* Do not look for lock if BYPASS selected */
2e5983d2 1492:
945af8d7
WD
150 ldrh r1, [r0]
151 ands r1, r1, #0x01 /* Check the LOCK bit. */
152 beq 2b /* ...loop until bit goes hi. */
2e5983d2
WD
153lock_end:
154
945af8d7 155 /* Set memory timings corresponding to the new clock speed */
2e5983d2 156
945af8d7
WD
157 /* Check execution location to determine current execution location
158 * and branch to appropriate initialization code.
159 */
160 mov r0, #0x10000000 /* Load physical SDRAM base. */
161 mov r1, pc /* Get current execution location. */
162 cmp r1, r0 /* Compare. */
163 bge skip_sdram /* Skip over EMIF-fast initialization if running from SDRAM. */
2e5983d2 164
945af8d7
WD
165 /*
166 * Delay for SDRAM initialization.
167 */
168 mov r3, #0x1800 /* value should be checked */
2e5983d2 1693:
945af8d7
WD
170 subs r3, r3, #0x1 /* Decrement count */
171 bne 3b
2e5983d2 172
945af8d7
WD
173 /*
174 * Set SDRAM control values. Disable refresh before MRS command.
175 */
176 ldr r0, VAL_TC_EMIFF_SDRAM_CONFIG /* get good value */
177 bic r3, r0, #0xC /* (BIT3|BIT2) ulConfig with auto-refresh disabled. */
178 orr r3, r3, #0x8000000 /* (BIT27) Disable CLK when Power down or Self-Refresh */
179 orr r3, r3, #0x4000000 /* BIT26 Power Down Enable */
180 ldr r2, REG_TC_EMIFF_SDRAM_CONFIG /* Point to configuration register. */
181 str r3, [r2] /* Store the passed value with AR disabled. */
2e5983d2 182
945af8d7
WD
183 ldr r1, VAL_TC_EMIFF_MRS /* get MRS value */
184 ldr r2, REG_TC_EMIFF_MRS /* Point to MRS register. */
185 str r1, [r2] /* Store the passed value.*/
2e5983d2 186
945af8d7
WD
187 ldr r2, REG_TC_EMIFF_SDRAM_CONFIG /* Point to configuration register. */
188 str r0, [r2] /* Store the passed value. */
2e5983d2 189
945af8d7
WD
190 /*
191 * Delay for SDRAM initialization.
192 */
193 mov r3, #0x1800
2e5983d2 1944:
945af8d7
WD
195 subs r3, r3, #1 /* Decrement count. */
196 bne 4b
2e5983d2
WD
197
198skip_sdram:
199
945af8d7
WD
200 /* slow interface */
201 ldr r1, VAL_TC_EMIFS_CS0_CONFIG
202 ldr r0, REG_TC_EMIFS_CS0_CONFIG
203 str r1, [r0] /* Chip Select 0 */
204 ldr r1, VAL_TC_EMIFS_CS1_CONFIG
205 ldr r0, REG_TC_EMIFS_CS1_CONFIG
206 str r1, [r0] /* Chip Select 1 */
207 ldr r1, VAL_TC_EMIFS_CS2_CONFIG
208 ldr r0, REG_TC_EMIFS_CS2_CONFIG
209 str r1, [r0] /* Chip Select 2 */
210 ldr r1, VAL_TC_EMIFS_CS3_CONFIG
211 ldr r0, REG_TC_EMIFS_CS3_CONFIG
212 str r1, [r0] /* Chip Select 3 */
2e5983d2
WD
213
214 /* Next, Enable the RS232 Line Drivers in the FPGA. */
215 /* Also, power on the audio CODEC's amplifier here, */
216 /* which will make a noise on the audio output. */
217 /* This is done here instead of in the kernel so there */
218 /* isn't a loud popping noise at the start of each */
219 /* song. */
220 /* Also, disable the CODEC's clocks. */
221 /* omap1510-HelenP1 [specific] */
222
945af8d7
WD
223 ldr r0, REG_FPGA_POWER
224 mov r1, #0
225 ldr r2, REG_FPGA_DIP_SWITCH
226 ldrb r3, [r2]
227 cmp r3, #0x8
228 movne r1, #0x62 /* Enable the RS232 Line Drivers in the EPLD */
229 strb r1, [r0]
230 ldr r0, REG_FPGA_AUDIO
231 mov r1, #0x0 /* Disable sound driver (CODEC clocks) */
232 strb r1, [r0]
2e5983d2 233
945af8d7 234 /* back to arch calling code */
2e5983d2
WD
235 mov pc, lr
236
237/* the literal pools origin */
945af8d7 238 .ltorg
2e5983d2
WD
239
240/* OMAP configuration registers */
241REG_FUNC_MUX_CTRL_0: /* 32 bits */
242 .word 0xfffe1000
243REG_FUNC_MUX_CTRL_1: /* 32 bits */
244 .word 0xfffe1004
245REG_FUNC_MUX_CTRL_2: /* 32 bits */
246 .word 0xfffe1008
247REG_COMP_MODE_CTRL_0: /* 32 bits */
248 .word 0xfffe100c
249REG_FUNC_MUX_CTRL_3: /* 32 bits */
250 .word 0xfffe1010
251REG_FUNC_MUX_CTRL_4: /* 32 bits */
252 .word 0xfffe1014
253REG_FUNC_MUX_CTRL_5: /* 32 bits */
254 .word 0xfffe1018
255REG_FUNC_MUX_CTRL_6: /* 32 bits */
256 .word 0xfffe101c
257REG_FUNC_MUX_CTRL_7: /* 32 bits */
258 .word 0xfffe1020
259REG_FUNC_MUX_CTRL_8: /* 32 bits */
260 .word 0xfffe1024
261REG_FUNC_MUX_CTRL_9: /* 32 bits */
262 .word 0xfffe1028
263REG_FUNC_MUX_CTRL_A: /* 32 bits */
264 .word 0xfffe102C
265REG_FUNC_MUX_CTRL_B: /* 32 bits */
266 .word 0xfffe1030
267REG_FUNC_MUX_CTRL_C: /* 32 bits */
268 .word 0xfffe1034
269REG_FUNC_MUX_CTRL_D: /* 32 bits */
270 .word 0xfffe1038
271REG_PULL_DWN_CTRL_0: /* 32 bits */
272 .word 0xfffe1040
273REG_PULL_DWN_CTRL_1: /* 32 bits */
274 .word 0xfffe1044
275REG_PULL_DWN_CTRL_2: /* 32 bits */
276 .word 0xfffe1048
277REG_PULL_DWN_CTRL_3: /* 32 bits */
278 .word 0xfffe104c
279REG_VOLTAGE_CTRL_0: /* 32 bits */
280 .word 0xfffe1060
281REG_TEST_DBG_CTRL_0: /* 32 bits */
282 .word 0xfffe1070
283REG_MOD_CONF_CTRL_0: /* 32 bits */
284 .word 0xfffe1080
285REG_TC_IMIF_PRIO: /* 32 bits */
286 .word 0xfffecc00
287REG_TC_EMIFS_PRIO: /* 32 bits */
288 .word 0xfffecc04
289REG_TC_EMIFF_PRIO: /* 32 bits */
290 .word 0xfffecc08
291REG_TC_EMIFS_CONFIG: /* 32 bits */
292 .word 0xfffecc0c
293REG_TC_EMIFS_CS0_CONFIG: /* 32 bits */
945af8d7 294 .word 0xfffecc10
2e5983d2 295REG_TC_EMIFS_CS1_CONFIG: /* 32 bits */
945af8d7 296 .word 0xfffecc14
2e5983d2 297REG_TC_EMIFS_CS2_CONFIG: /* 32 bits */
945af8d7 298 .word 0xfffecc18
2e5983d2 299REG_TC_EMIFS_CS3_CONFIG: /* 32 bits */
945af8d7 300 .word 0xfffecc1c
2e5983d2
WD
301REG_TC_EMIFF_SDRAM_CONFIG: /* 32 bits */
302 .word 0xfffecc20
303REG_TC_EMIFF_MRS: /* 32 bits */
304 .word 0xfffecc24
305/* MPU clock/reset/power mode control registers */
306REG_ARM_CKCTL: /* 16 bits */
307 .word 0xfffece00
308REG_ARM_IDLECT2: /* 16 bits */
945af8d7 309 .word 0xfffece08
2e5983d2 310REG_ARM_RSTCT2: /* 16 bits */
945af8d7 311 .word 0xfffece14
2e5983d2 312REG_ARM_SYSST: /* 16 bits */
945af8d7 313 .word 0xfffece18
2e5983d2
WD
314/* DPLL control registers */
315REG_DPLL1_CTL: /* 16 bits */
316 .word 0xfffecf00
317/* identification code register */
318REG_IDCODE: /* 32 bits */
945af8d7 319 .word 0xfffed404
2e5983d2
WD
320
321/* Innovator specific */
322REG_FPGA_LED_DIGIT: /* 8 bits (not used on Innovator) */
945af8d7 323 .word 0x08000003
2e5983d2 324REG_FPGA_POWER: /* 8 bits */
945af8d7 325 .word 0x08000005
2e5983d2
WD
326REG_FPGA_AUDIO: /* 8 bits (not used on Innovator) */
327 .word 0x0800000c
328REG_FPGA_DIP_SWITCH: /* 8 bits (not used on Innovator) */
945af8d7 329 .word 0x0800000e
2e5983d2
WD
330
331VAL_COMP_MODE_CTRL_0:
332 .word 0x0000eaef
333VAL_FUNC_MUX_CTRL_4:
334 .word 0x00000000
335VAL_FUNC_MUX_CTRL_5:
336 .word 0x00000000
337VAL_FUNC_MUX_CTRL_6:
338 .word 0x00000001
339VAL_FUNC_MUX_CTRL_7:
340 .word 0x00000000
341VAL_FUNC_MUX_CTRL_8:
342 .word 0x10001200
343VAL_FUNC_MUX_CTRL_9:
344 .word 0x01201012
345VAL_FUNC_MUX_CTRL_A:
346 .word 0x00000248
347VAL_FUNC_MUX_CTRL_B:
348 .word 0x00000248
349VAL_FUNC_MUX_CTRL_C:
350 .word 0x09000000
351VAL_FUNC_MUX_CTRL_D:
352 .word 0x00000000
353VAL_PULL_DWN_CTRL_0:
354 .word 0x11a10000
355VAL_PULL_DWN_CTRL_1:
356 .word 0x2e047fff
357VAL_PULL_DWN_CTRL_2:
6f21347d 358 .word 0xffd603a6
2e5983d2 359VAL_PULL_DWN_CTRL_3:
6f21347d 360 .word 0x00003e03
2e5983d2
WD
361VAL_VOLTAGE_CTRL_0:
362 .word 0x00000007
363VAL_TEST_DBG_CTRL_0:
364 /* See Errata 4.13, This works around a SRAM bug, for chips below ES2.5 .
945af8d7
WD
365 * This slows down internal SRAM accesses.
366 */
2e5983d2
WD
367 .word 0x00000007
368VAL_MOD_CONF_CTRL_0:
369 .word 0x0b000008
370VAL_ARM_CKCTL:
371 .word 0x010f
372VAL_DPLL1_CTL:
373 .word 0x2710
374VAL_TC_EMIFS_CS1_CONFIG_PRELIM:
375 .word 0x00001149
376VAL_TC_EMIFS_CS2_CONFIG_PRELIM:
377 .word 0x00004158
378VAL_TC_EMIFS_CS0_CONFIG:
379 .word 0x002130b0
380VAL_TC_EMIFS_CS1_CONFIG:
381 .word 0x0000f559
382VAL_TC_EMIFS_CS2_CONFIG:
383 .word 0x000055f0
384VAL_TC_EMIFS_CS3_CONFIG:
385 .word 0x00003331
386VAL_TC_EMIFF_SDRAM_CONFIG:
387 .word 0x010290fc
388VAL_TC_EMIFF_MRS:
389 .word 0x00000027