2 * Startup Code for S3C44B0 CPU-core
7 * http://www.dave-tech.it
8 * http://www.wawnet.biz
9 * mailto:info@wawnet.biz
11 * See file CREDITS for list of people who contributed to this
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.
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.
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,
42 add pc, pc, #0x0c000000
43 add pc, pc, #0x0c000000
44 add pc, pc, #0x0c000000
45 add pc, pc, #0x0c000000
46 add pc, pc, #0x0c000000
47 add pc, pc, #0x0c000000
48 add pc, pc, #0x0c000000
50 .balignl 16,0xdeadbeef
54 *************************************************************************
56 * Startup Code (reset vector)
58 * do important init only if we don't start from memory!
59 * relocate u-boot to ram
61 * jump to second stage
63 *************************************************************************
74 * These are defined in the board-specific linker script.
85 /* IRQ stack memory (calculated at run-time) */
86 .globl IRQ_STACK_START
90 /* IRQ stack memory (calculated at run-time) */
91 .globl FIQ_STACK_START
98 * the actual reset code
103 * set the cpu to SVC32 mode
111 * we do sys-critical inits only at reboot,
112 * not when booting from ram!
115 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
118 * before relocating, we have to setup RAM timing
119 * because memory timing is board-dependend, you will
120 * find a lowlevel_init.S in your board directory.
125 #ifndef CONFIG_SKIP_RELOCATE_UBOOT
126 relocate: /* relocate U-Boot to RAM */
127 adr r0, _start /* r0 <- current position of code */
128 ldr r1, _TEXT_BASE /* test if we run from flash or RAM */
129 cmp r0, r1 /* don't reloc during debug */
132 ldr r2, _armboot_start
134 sub r2, r3, r2 /* r2 <- size of armboot */
135 add r2, r0, r2 /* r2 <- source end address */
138 ldmia r0!, {r3-r10} /* copy from source address [r0] */
139 stmia r1!, {r3-r10} /* copy to target address [r1] */
140 cmp r0, r2 /* until source end addreee [r2] */
144 now copy to sram the interrupt vector
155 #endif /* CONFIG_SKIP_RELOCATE_UBOOT */
157 /* Set up the stack */
159 ldr r0, _TEXT_BASE /* upper 128 KiB: relocated uboot */
160 sub r0, r0, #CFG_MALLOC_LEN /* malloc area */
161 sub r0, r0, #CFG_GBL_DATA_SIZE /* bdinfo */
162 #ifdef CONFIG_USE_IRQ
163 sub r0, r0, #(CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ)
165 sub sp, r0, #12 /* leave 3 words for abort-stack */
167 ldr pc, _start_armboot
169 _start_armboot: .word start_armboot
173 *************************************************************************
175 * CPU_init_critical registers
177 * setup important registers
178 * setup memory timing
180 *************************************************************************
183 #define INTCON (0x01c00000+0x200000)
184 #define INTMSK (0x01c00000+0x20000c)
185 #define LOCKTIME (0x01c00000+0x18000c)
186 #define PLLCON (0x01c00000+0x180000)
187 #define CLKCON (0x01c00000+0x180004)
188 #define WTCON (0x01c00000+0x130000)
190 /* disable watch dog */
196 * mask all IRQs by clearing all bits in the INTMRs
206 /* Set Clock Control Register */
213 #if CONFIG_S3C44B0_CLOCK_SPEED==66
214 ldr r0, =0x34031 /* 66MHz (Quartz=11MHz) */
215 #elif CONFIG_S3C44B0_CLOCK_SPEED==75
216 ldr r0, =0x610c1 /*B2: Xtal=20mhz Fclk=75MHz */
218 # error CONFIG_S3C44B0_CLOCK_SPEED undefined
230 /*************************************************/
231 /* interrupt vectors */
232 /*************************************************/
235 b undefined_instruction
243 /*************************************************/
245 undefined_instruction:
262 /* we *should* never reach this */