2 * BF561 coreB bootstrap file
4 * Copyright 2007-2009 Analog Devices Inc.
5 * Philippe Gerum <rpm@xenomai.org>
7 * Licensed under the GPL-2 or later.
10 #include <linux/linkage.h>
11 #include <linux/init.h>
12 #include <asm/blackfin.h>
13 #include <asm/asm-offsets.h>
14 #include <asm/trace.h>
17 * This code must come first as CoreB is hardcoded (in hardware)
18 * to start at the beginning of its L1 instruction memory.
20 .section .l1.text.head
22 /* Lay the initial stack into the L1 scratch area of Core B */
23 #define INITIAL_STACK (COREB_L1_SCRATCH_START + L1_SCRATCH_LENGTH - 12)
25 ENTRY(_coreb_trampoline_start)
26 /* Enable Cycle Counter and Nesting Of Interrupts */
27 #ifdef CONFIG_BFIN_SCRATCH_REG_CYCLES
30 R0 = SYSCFG_SNEN | SYSCFG_CCEN;
34 /* Optimization register tricks: keep a base value in the
35 * reserved P registers so we use the load/store with an
36 * offset syntax. R0 = [P5 + <constant>];
42 p5.h = hi(COREMMR_BASE);
44 /* Zero out registers required by Blackfin ABI */
46 /* Disable circular buffers */
52 /* Disable hardware loops in case we were started by 'go' */
57 * Clear ITEST_COMMAND and DTEST_COMMAND registers,
58 * Leaving these as non-zero can confuse the emulator
60 [p5 + (DTEST_COMMAND - COREMMR_BASE)] = r6;
61 [p5 + (ITEST_COMMAND - COREMMR_BASE)] = r6;
64 trace_buffer_init(p0,r0);
66 /* Turn off the icache */
67 r1 = [p5 + (IMEM_CONTROL - COREMMR_BASE)];
68 BITCLR (r1, ENICPLB_P);
69 [p5 + (IMEM_CONTROL - COREMMR_BASE)] = r1;
72 /* Turn off the dcache */
73 r1 = [p5 + (DMEM_CONTROL - COREMMR_BASE)];
74 BITCLR (r1, ENDCPLB_P);
75 [p5 + (DMEM_CONTROL - COREMMR_BASE)] = r1;
78 /* in case of double faults, save a few things */
79 p1.l = _initial_pda_coreb;
80 p1.h = _initial_pda_coreb;
82 #ifdef CONFIG_DEBUG_DOUBLEFAULT
83 /* Only save these if we are storing them,
84 * This happens here, since L1 gets clobbered
88 r0 = [p0 + PDA_DF_RETX];
89 r1 = [p0 + PDA_DF_DCPLB];
90 r2 = [p0 + PDA_DF_ICPLB];
91 r3 = [p0 + PDA_DF_SEQSTAT];
92 [p1 + PDA_INIT_DF_RETX] = r0;
93 [p1 + PDA_INIT_DF_DCPLB] = r1;
94 [p1 + PDA_INIT_DF_ICPLB] = r2;
95 [p1 + PDA_INIT_DF_SEQSTAT] = r3;
97 [p1 + PDA_INIT_RETX] = r4;
99 /* Initialize stack pointer */
100 sp.l = lo(INITIAL_STACK);
101 sp.h = hi(INITIAL_STACK);
105 /* This section keeps the processor in supervisor mode
106 * during core B startup. Branches to the idle task.
109 /* EVT15 = _real_start */
113 [p5 + (EVT15 - COREMMR_BASE)] = p1;
123 #if defined(ANOMALY_05000281)
130 ENDPROC(_coreb_trampoline_start)
132 #ifdef CONFIG_HOTPLUG_CPU
135 sp.l = lo(INITIAL_STACK);
136 sp.h = hi(INITIAL_STACK);
145 R0 = IWR_DISABLE_ALL;
146 P0.H = hi(SYSMMR_BASE);
147 P0.L = lo(SYSMMR_BASE);
148 [P0 + (SICB_IWR0 - SYSMMR_BASE)] = R0;
149 [P0 + (SICB_IWR1 - SYSMMR_BASE)] = R0;
152 p0.h = hi(COREB_L1_CODE_START);
153 p0.l = lo(COREB_L1_CODE_START);
162 p0.l = lo(WDOGB_CTL);
163 p0.h = hi(WDOGB_CTL);
165 w[p0] = r0; /* Clear the watchdog. */
169 * switch to IDLE stack.
171 p0.l = _secondary_stack;
172 p0.h = _secondary_stack;
176 #ifdef CONFIG_HOTPLUG_CPU
177 p0.l = _hotplug_coreb;
178 p0.h = _hotplug_coreb;
186 #ifdef CONFIG_HOTPLUG_CPU
189 call _secondary_start_kernel;
192 ENDPROC(_coreb_start)