2 * Common Blackfin startup code
4 * Copyright 2004-2008 Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
9 #include <linux/linkage.h>
10 #include <linux/init.h>
11 #include <asm/blackfin.h>
12 #include <asm/thread_info.h>
13 #include <asm/trace.h>
14 #include <asm/asm-offsets.h>
18 ENTRY(__init_clear_bss)
21 if cc jump .L_bss_done;
25 lsetup (1f, 1f) lc0 = p2;
29 ENDPROC(__init_clear_bss)
32 /* R0: argument of command line string, passed from uboot, save it */
35 /* Enable Cycle Counter and Nesting Of Interrupts */
36 #ifdef CONFIG_BFIN_SCRATCH_REG_CYCLES
39 R0 = SYSCFG_SNEN | SYSCFG_CCEN;
43 /* Optimization register tricks: keep a base value in the
44 * reserved P registers so we use the load/store with an
45 * offset syntax. R0 = [P5 + <constant>];
51 p5.h = hi(COREMMR_BASE);
53 /* Zero out registers required by Blackfin ABI */
55 /* Disable circular buffers */
61 /* Disable hardware loops in case we were started by 'go' */
66 * Clear ITEST_COMMAND and DTEST_COMMAND registers,
67 * Leaving these as non-zero can confuse the emulator
69 [p5 + (DTEST_COMMAND - COREMMR_BASE)] = r6;
70 [p5 + (ITEST_COMMAND - COREMMR_BASE)] = r6;
73 trace_buffer_init(p0,r0);
75 /* Turn off the icache */
76 r1 = [p5 + (IMEM_CONTROL - COREMMR_BASE)];
77 BITCLR (r1, ENICPLB_P);
78 [p5 + (IMEM_CONTROL - COREMMR_BASE)] = r1;
81 /* Turn off the dcache */
82 r1 = [p5 + (DMEM_CONTROL - COREMMR_BASE)];
83 BITCLR (r1, ENDCPLB_P);
84 [p5 + (DMEM_CONTROL - COREMMR_BASE)] = r1;
87 /* in case of double faults, save a few things */
91 #ifdef CONFIG_DEBUG_DOUBLEFAULT
92 /* Only save these if we are storing them,
93 * This happens here, since L1 gets clobbered
97 r0 = [p0 + PDA_DF_RETX];
98 r1 = [p0 + PDA_DF_DCPLB];
99 r2 = [p0 + PDA_DF_ICPLB];
100 r3 = [p0 + PDA_DF_SEQSTAT];
101 [p1 + PDA_INIT_DF_RETX] = r0;
102 [p1 + PDA_INIT_DF_DCPLB] = r1;
103 [p1 + PDA_INIT_DF_ICPLB] = r2;
104 [p1 + PDA_INIT_DF_SEQSTAT] = r3;
106 [p1 + PDA_INIT_RETX] = r4;
108 /* Initialize stack pointer */
109 sp.l = _init_thread_union + THREAD_SIZE;
110 sp.h = _init_thread_union + THREAD_SIZE;
114 #ifdef CONFIG_EARLY_PRINTK
115 call _init_early_exception_vectors;
116 r0 = (EVT_IVHW | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
121 /* Zero out all of the fun bss regions */
122 #if L1_DATA_A_LENGTH > 0
127 call __init_clear_bss
129 #if L1_DATA_B_LENGTH > 0
134 call __init_clear_bss
141 call __init_clear_bss
147 call __init_clear_bss
149 /* Put The Code for PLL Programming and SDRAM Programming in L1 ISRAM */
150 call _bfin_relocate_l1_mem;
152 #ifdef CONFIG_ROMKERNEL
153 call _bfin_relocate_xip_data;
156 #ifdef CONFIG_BFIN_KERNEL_CLOCK
157 /* Only use on-chip scratch space for stack when absolutely required
158 * to avoid Anomaly 05000227 ... we know the init_clocks() func only
159 * uses L1 text and stack space and no other memory region.
161 # define KERNEL_CLOCK_STACK (L1_SCRATCH_START + L1_SCRATCH_LENGTH - 12)
162 sp.l = lo(KERNEL_CLOCK_STACK);
163 sp.h = hi(KERNEL_CLOCK_STACK);
165 sp = usp; /* usp hasn't been touched, so restore from there */
168 /* This section keeps the processor in supervisor mode
169 * during kernel boot. Switches to user mode at end of boot.
170 * See page 3-9 of Hardware Reference manual for documentation.
173 /* EVT15 = _real_start */
177 [p5 + (EVT15 - COREMMR_BASE)] = p1;
180 #ifdef CONFIG_EARLY_PRINTK
181 r0 = (EVT_IVG15 | EVT_IVHW | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU) (z);
188 #ifdef CONFIG_EARLY_PRINTK
205 /* A little BF561 glue ... */
207 # define WDOG_CTL WDOGA_CTL
211 /* Enable nested interrupts */
213 /* watchdog off for now */
219 /* Pass the u-boot arguments to the global value command line */
223 sp += -12 + 4; /* +4 is for reti loading above */
226 jump.l _start_kernel;