]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/ixp/start.S
Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / arch / arm / cpu / ixp / start.S
1 /* vi: set ts=8 sw=8 noet: */
2 /*
3  *  u-boot - Startup Code for XScale IXP
4  *
5  * Copyright (C) 2003   Kyle Harris <kharris@nexus-tech.net>
6  *
7  * Based on startup code example contained in the
8  * Intel IXP4xx Programmer's Guide and past u-boot Start.S
9  * samples.
10  *
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 <asm-offsets.h>
31 #include <config.h>
32 #include <version.h>
33 #include <asm/arch/ixp425.h>
34
35 #define MMU_Control_M  0x001    /* Enable MMU */
36 #define MMU_Control_A  0x002    /* Enable address alignment faults */
37 #define MMU_Control_C  0x004    /* Enable cache */
38 #define MMU_Control_W  0x008    /* Enable write-buffer */
39 #define MMU_Control_P  0x010    /* Compatability: 32 bit code */
40 #define MMU_Control_D  0x020    /* Compatability: 32 bit data */
41 #define MMU_Control_L  0x040    /* Compatability: */
42 #define MMU_Control_B  0x080    /* Enable Big-Endian */
43 #define MMU_Control_S  0x100    /* Enable system protection */
44 #define MMU_Control_R  0x200    /* Enable ROM protection */
45 #define MMU_Control_I  0x1000   /* Enable Instruction cache */
46 #define MMU_Control_X  0x2000   /* Set interrupt vectors at 0xFFFF0000 */
47 #define MMU_Control_Init (MMU_Control_P|MMU_Control_D|MMU_Control_L)
48
49
50 /*
51  * Macro definitions
52  */
53         /* Delay a bit */
54         .macro DELAY_FOR cycles, reg0
55         ldr     \reg0, =\cycles
56         subs    \reg0, \reg0, #1
57         subne   pc,  pc, #0xc
58         .endm
59
60         /* wait for coprocessor write complete */
61         .macro CPWAIT reg
62         mrc  p15,0,\reg,c2,c0,0
63         mov  \reg,\reg
64         sub  pc,pc,#4
65         .endm
66
67 .globl _start
68 _start:
69         ldr     pc, _reset
70         ldr     pc, _undefined_instruction
71         ldr     pc, _software_interrupt
72         ldr     pc, _prefetch_abort
73         ldr     pc, _data_abort
74         ldr     pc, _not_used
75         ldr     pc, _irq
76         ldr     pc, _fiq
77
78 _reset:                 .word reset
79 _undefined_instruction: .word undefined_instruction
80 _software_interrupt:    .word software_interrupt
81 _prefetch_abort:        .word prefetch_abort
82 _data_abort:            .word data_abort
83 _not_used:              .word not_used
84 _irq:                   .word irq
85 _fiq:                   .word fiq
86
87         .balignl 16,0xdeadbeef
88
89
90 /*
91  * Startup Code (reset vector)
92  *
93  * do important init only if we don't start from memory!
94  * - relocate armboot to ram
95  * - setup stack
96  * - jump to second stage
97  */
98
99 .globl _TEXT_BASE
100 _TEXT_BASE:
101 #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_TEXT_BASE)
102         .word   CONFIG_SPL_TEXT_BASE
103 #else
104         .word   CONFIG_SYS_TEXT_BASE
105 #endif
106
107 /*
108  * These are defined in the board-specific linker script.
109  * Subtracting _start from them lets the linker put their
110  * relative position in the executable instead of leaving
111  * them null.
112  */
113 .globl _bss_start_ofs
114 _bss_start_ofs:
115         .word __bss_start - _start
116
117 .globl _bss_end_ofs
118 _bss_end_ofs:
119         .word __bss_end - _start
120
121 .globl _end_ofs
122 _end_ofs:
123         .word _end - _start
124
125 #ifdef CONFIG_USE_IRQ
126 /* IRQ stack memory (calculated at run-time) */
127 .globl IRQ_STACK_START
128 IRQ_STACK_START:
129         .word   0x0badc0de
130
131 /* IRQ stack memory (calculated at run-time) */
132 .globl FIQ_STACK_START
133 FIQ_STACK_START:
134         .word 0x0badc0de
135 #endif
136
137 /* IRQ stack memory (calculated at run-time) + 8 bytes */
138 .globl IRQ_STACK_START_IN
139 IRQ_STACK_START_IN:
140         .word   0x0badc0de
141
142 /*
143  * the actual reset code
144  */
145
146 reset:
147         /* disable mmu, set big-endian */
148         mov     r0, #0xf8
149         mcr     p15, 0, r0, c1, c0, 0
150         CPWAIT  r0
151
152         /* invalidate I & D caches & BTB */
153         mcr     p15, 0, r0, c7, c7, 0
154         CPWAIT  r0
155
156         /* invalidate I & Data TLB */
157         mcr     p15, 0, r0, c8, c7, 0
158         CPWAIT r0
159
160         /* drain write and fill buffers */
161         mcr     p15, 0, r0, c7, c10, 4
162         CPWAIT  r0
163
164         /* disable write buffer coalescing */
165         mrc     p15, 0, r0, c1, c0, 1
166         orr     r0, r0, #1
167         mcr     p15, 0, r0, c1, c0, 1
168         CPWAIT  r0
169
170         /* set EXP CS0 to the optimum timing */
171         ldr     r1, =CONFIG_SYS_EXP_CS0
172         ldr     r2, =IXP425_EXP_CS0
173         str     r1, [r2]
174
175         /* make sure flash is visible at 0 */
176         mov     r1, #CONFIG_SYS_SDR_CONFIG
177         ldr     r2, =IXP425_SDR_CONFIG
178         str     r1, [r2]
179
180         /* disable refresh cycles */
181         mov     r1, #0
182         ldr     r3, =IXP425_SDR_REFRESH
183         str     r1, [r3]
184
185         /* send nop command */
186         mov     r1, #3
187         ldr     r4, =IXP425_SDR_IR
188         str     r1, [r4]
189         DELAY_FOR 0x4000, r0
190
191         /* set SDRAM internal refresh val */
192         ldr     r1, =CONFIG_SYS_SDRAM_REFRESH_CNT
193         str     r1, [r3]
194         DELAY_FOR 0x4000, r0
195
196         /* send precharge-all command to close all open banks */
197         mov     r1, #2
198         str     r1, [r4]
199         DELAY_FOR 0x4000, r0
200
201         /* provide 8 auto-refresh cycles */
202         mov     r1, #4
203         mov     r5, #8
204 111:    str     r1, [r4]
205         DELAY_FOR 0x100, r0
206         subs    r5, r5, #1
207         bne     111b
208
209         /* set mode register in sdram */
210         mov     r1, #CONFIG_SYS_SDR_MODE_CONFIG
211         str     r1, [r4]
212         DELAY_FOR 0x4000, r0
213
214         /* send normal operation command */
215         mov     r1, #6
216         str     r1, [r4]
217         DELAY_FOR 0x4000, r0
218
219         /* invalidate I & D caches & BTB */
220         mcr     p15, 0, r0, c7, c7, 0
221         CPWAIT  r0
222
223         /* invalidate I & Data TLB */
224         mcr     p15, 0, r0, c8, c7, 0
225         CPWAIT r0
226
227         /* drain write and fill buffers */
228         mcr     p15, 0, r0, c7, c10, 4
229         CPWAIT  r0
230
231         /* remove flash mirror at 0x00000000 */
232         ldr     r2, =IXP425_EXP_CFG0
233         ldr     r1, [r2]
234         bic     r1, r1, #0x80000000
235         str     r1, [r2]
236
237         /* invalidate I & Data TLB */
238         mcr     p15, 0, r0, c8, c7, 0
239         CPWAIT r0
240
241         /* enable I cache */
242         mrc     p15, 0, r0, c1, c0, 0
243         orr     r0, r0, #MMU_Control_I
244         mcr     p15, 0, r0, c1, c0, 0
245         CPWAIT  r0
246
247         mrs     r0,cpsr                 /* set the cpu to SVC32 mode        */
248         bic     r0,r0,#0x1f             /* (superviser mode, M=10011)       */
249         orr     r0,r0,#0x13
250         msr     cpsr,r0
251
252         bl      _main
253
254 /*------------------------------------------------------------------------------*/
255
256         .globl  c_runtime_cpu_setup
257 c_runtime_cpu_setup:
258
259         bx      lr
260
261 /****************************************************************************/
262 /*                                                                          */
263 /* Interrupt handling                                                       */
264 /*                                                                          */
265 /****************************************************************************/
266
267 /* IRQ stack frame                                                          */
268
269 #define S_FRAME_SIZE    72
270
271 #define S_OLD_R0        68
272 #define S_PSR           64
273 #define S_PC            60
274 #define S_LR            56
275 #define S_SP            52
276
277 #define S_IP            48
278 #define S_FP            44
279 #define S_R10           40
280 #define S_R9            36
281 #define S_R8            32
282 #define S_R7            28
283 #define S_R6            24
284 #define S_R5            20
285 #define S_R4            16
286 #define S_R3            12
287 #define S_R2            8
288 #define S_R1            4
289 #define S_R0            0
290
291 #define MODE_SVC 0x13
292
293         /* use bad_save_user_regs for abort/prefetch/undef/swi ...          */
294
295         .macro  bad_save_user_regs
296         sub     sp, sp, #S_FRAME_SIZE
297         stmia   sp, {r0 - r12}                  /* Calling r0-r12           */
298         add     r8, sp, #S_PC
299
300         ldr     r2, IRQ_STACK_START_IN
301         ldmia   r2, {r2 - r4}                   /* get pc, cpsr, old_r0     */
302         add     r0, sp, #S_FRAME_SIZE           /* restore sp_SVC           */
303
304         add     r5, sp, #S_SP
305         mov     r1, lr
306         stmia   r5, {r0 - r4}                   /* save sp_SVC, lr_SVC, pc, cpsr, old_r */
307         mov     r0, sp
308         .endm
309
310
311         /* use irq_save_user_regs / irq_restore_user_regs for                */
312         /* IRQ/FIQ handling                                                  */
313
314         .macro  irq_save_user_regs
315         sub     sp, sp, #S_FRAME_SIZE
316         stmia   sp, {r0 - r12}                  /* Calling r0-r12            */
317         add     r8, sp, #S_PC
318         stmdb   r8, {sp, lr}^                   /* Calling SP, LR            */
319         str     lr, [r8, #0]                    /* Save calling PC           */
320         mrs     r6, spsr
321         str     r6, [r8, #4]                    /* Save CPSR                 */
322         str     r0, [r8, #8]                    /* Save OLD_R0               */
323         mov     r0, sp
324         .endm
325
326         .macro  irq_restore_user_regs
327         ldmia   sp, {r0 - lr}^                  @ Calling r0 - lr
328         mov     r0, r0
329         ldr     lr, [sp, #S_PC]                 @ Get PC
330         add     sp, sp, #S_FRAME_SIZE
331         subs    pc, lr, #4                      @ return & move spsr_svc into cpsr
332         .endm
333
334         .macro get_bad_stack
335         ldr     r13, IRQ_STACK_START_IN         @ setup our mode stack
336
337         str     lr, [r13]                       @ save caller lr / spsr
338         mrs     lr, spsr
339         str     lr, [r13, #4]
340
341         mov     r13, #MODE_SVC                  @ prepare SVC-Mode
342         msr     spsr_c, r13
343         mov     lr, pc
344         movs    pc, lr
345         .endm
346
347         .macro get_irq_stack                    @ setup IRQ stack
348         ldr     sp, IRQ_STACK_START
349         .endm
350
351         .macro get_fiq_stack                    @ setup FIQ stack
352         ldr     sp, FIQ_STACK_START
353         .endm
354
355
356 /****************************************************************************/
357 /*                                                                          */
358 /* exception handlers                                                       */
359 /*                                                                          */
360 /****************************************************************************/
361
362         .align  5
363 undefined_instruction:
364         get_bad_stack
365         bad_save_user_regs
366         bl      do_undefined_instruction
367
368         .align  5
369 software_interrupt:
370         get_bad_stack
371         bad_save_user_regs
372         bl      do_software_interrupt
373
374         .align  5
375 prefetch_abort:
376         get_bad_stack
377         bad_save_user_regs
378         bl      do_prefetch_abort
379
380         .align  5
381 data_abort:
382         get_bad_stack
383         bad_save_user_regs
384         bl      do_data_abort
385
386         .align  5
387 not_used:
388         get_bad_stack
389         bad_save_user_regs
390         bl      do_not_used
391
392 #ifdef CONFIG_USE_IRQ
393
394         .align  5
395 irq:
396         get_irq_stack
397         irq_save_user_regs
398         bl      do_irq
399         irq_restore_user_regs
400
401         .align  5
402 fiq:
403         get_fiq_stack
404         irq_save_user_regs              /* someone ought to write a more    */
405         bl      do_fiq                  /* effiction fiq_save_user_regs     */
406         irq_restore_user_regs
407
408 #else
409
410         .align  5
411 irq:
412         get_bad_stack
413         bad_save_user_regs
414         bl      do_irq
415
416         .align  5
417 fiq:
418         get_bad_stack
419         bad_save_user_regs
420         bl      do_fiq
421
422 #endif
423
424 /****************************************************************************/
425 /*                                                                          */
426 /* Reset function: Use Watchdog to reset                                    */
427 /*                                                                          */
428 /****************************************************************************/
429
430         .align  5
431 .globl reset_cpu
432
433 reset_cpu:
434         ldr     r1, =0x482e
435         ldr     r2, =IXP425_OSWK
436         str     r1, [r2]
437         ldr     r1, =0x0fff
438         ldr     r2, =IXP425_OSWT
439         str     r1, [r2]
440         ldr     r1, =0x5
441         ldr     r2, =IXP425_OSWE
442         str     r1, [r2]
443         b       reset_endless
444
445 reset_endless:
446         b       reset_endless