2 * File: arch/blackfin/mach-bf533/head.S
4 * Author: Jeff Dionne <jeff@uclinux.org> COPYRIGHT 1998 D. Jeff Dionne
7 * Description: bf533 startup file
10 * Copyright 2004-2006 Analog Devices Inc.
12 * Bugs: Enter bugs at http://blackfin.uclinux.org/
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (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, see the file COPYING, or write
26 * to the Free Software Foundation, Inc.,
27 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 #include <linux/linkage.h>
31 #include <linux/init.h>
32 #include <asm/blackfin.h>
33 #include <asm/trace.h>
34 #if CONFIG_BFIN_KERNEL_CLOCK
35 #include <asm/mach-common/clocks.h>
36 #include <asm/mach/mem_init.h>
44 .extern _bf53x_relocate_l1_mem
46 #define INITIAL_STACK 0xFFB01000
51 /* R0: argument of command line string, passed from uboot, save it */
53 /* Enable Cycle Counter and Nesting Of Interrupts */
54 #ifdef CONFIG_BFIN_SCRATCH_REG_CYCLES
57 R0 = SYSCFG_SNEN | SYSCFG_CCEN;
62 /* Clear Out All the data and pointer Registers */
84 /* Clear Out All the DAG Registers */
100 trace_buffer_init(p0,r0);
104 p0.h = hi(FIO_MASKA_C);
105 p0.l = lo(FIO_MASKA_C);
107 w[p0] = r0.L; /* Disable all interrupts */
110 p0.h = hi(FIO_MASKB_C);
111 p0.l = lo(FIO_MASKB_C);
113 w[p0] = r0.L; /* Disable all interrupts */
116 /* Turn off the icache */
117 p0.l = LO(IMEM_CONTROL);
118 p0.h = HI(IMEM_CONTROL);
123 /* Anomaly 05000125 */
134 /* Turn off the dcache */
135 p0.l = LO(DMEM_CONTROL);
136 p0.h = HI(DMEM_CONTROL);
141 /* Anomaly 05000125 */
152 /* Initialise UART - when booting from u-boot, the UART is not disabled
153 * so if we dont initalize here, our serial console gets hosed */
157 w[p0] = r0.L; /* To enable DLL writes */
172 p0.h = hi(UART_GCTL);
173 p0.l = lo(UART_GCTL);
175 w[p0] = r0.L; /* To enable UART clock */
178 /* Initialize stack pointer */
179 sp.l = lo(INITIAL_STACK);
180 sp.h = hi(INITIAL_STACK);
184 /* Put The Code for PLL Programming and SDRAM Programming in L1 ISRAM */
185 call _bf53x_relocate_l1_mem;
186 #if CONFIG_BFIN_KERNEL_CLOCK
187 call _start_dma_code;
190 /* Code for initializing Async memory banks */
192 p2.h = hi(EBIU_AMBCTL1);
193 p2.l = lo(EBIU_AMBCTL1);
194 r0.h = hi(AMBCTL1VAL);
195 r0.l = lo(AMBCTL1VAL);
199 p2.h = hi(EBIU_AMBCTL0);
200 p2.l = lo(EBIU_AMBCTL0);
201 r0.h = hi(AMBCTL0VAL);
202 r0.l = lo(AMBCTL0VAL);
206 p2.h = hi(EBIU_AMGCTL);
207 p2.l = lo(EBIU_AMGCTL);
212 /* This section keeps the processor in supervisor mode
213 * during kernel boot. Switches to user mode at end of boot.
214 * See page 3-9 of Hardware Reference manual for documentation.
217 /* EVT15 = _real_start */
251 w[p0] = r0; /* watchdog off for now */
254 /* Code update for BSS size == 0
255 * Zero out the bss region.
264 lsetup (.L_clear_bss, .L_clear_bss) lc0 = p2;
268 /* In case there is a NULL pointer reference
269 * Zero out region before stext
279 lsetup (.L_clear_zero, .L_clear_zero) lc0 = p2;
283 /* pass the uboot arguments to the global value command line */
302 * load the current thread pointer and stack
304 r1.l = _init_thread_union;
305 r1.h = _init_thread_union;
313 jump.l _start_kernel;
319 #if CONFIG_BFIN_KERNEL_CLOCK
320 ENTRY(_start_dma_code)
330 * - [14:09] = MSEL[5:0] : CLKIN / VCO multiplication factors
331 * - [8] = BYPASS : BYPASS the PLL, run CLKIN into CCLK/SCLK
332 * - [7] = output delay (add 200ps of delay to mem signals)
333 * - [6] = input delay (add 200ps of input delay to mem signals)
334 * - [5] = PDWN : 1=All Clocks off
335 * - [3] = STOPCK : 1=Core Clock off
336 * - [1] = PLL_OFF : 1=Disable Power to PLL
337 * - [0] = DF : 1=Pass CLKIN/2 to PLL / 0=Pass CLKIN to PLL
338 * all other bits set to zero
341 p0.h = hi(PLL_LOCKCNT);
342 p0.l = lo(PLL_LOCKCNT);
347 P2.H = hi(EBIU_SDGCTL);
348 P2.L = lo(EBIU_SDGCTL);
354 r0 = CONFIG_VCO_MULT & 63; /* Load the VCO multiplier */
355 r0 = r0 << 9; /* Shift it over, */
356 r1 = CLKIN_HALF; /* Do we need to divide CLKIN by 2?*/
358 r1 = PLL_BYPASS; /* Bypass the PLL? */
359 r1 = r1 << 8; /* Shift it over */
360 r0 = r1 | r0; /* add them all together */
363 p0.l = lo(PLL_CTL); /* Load the address */
364 cli r2; /* Disable interrupts */
366 w[p0] = r0.l; /* Set the value */
367 idle; /* Wait for the PLL to stablize */
368 sti r2; /* Enable interrupts */
375 if ! CC jump .Lcheck_again;
377 /* Configure SCLK & CCLK Dividers */
378 r0 = (CONFIG_CCLK_ACT_DIV | CONFIG_SCLK_DIV);
384 p0.l = lo(EBIU_SDRRC);
385 p0.h = hi(EBIU_SDRRC);
390 p0.l = LO(EBIU_SDBCTL);
391 p0.h = HI(EBIU_SDBCTL); /* SDRAM Memory Bank Control Register */
396 P2.H = hi(EBIU_SDGCTL);
397 P2.L = lo(EBIU_SDGCTL);
400 p0.h = hi(EBIU_SDSTAT);
401 p0.l = lo(EBIU_SDSTAT);
411 R0.L = lo(mem_SDGCTL);
412 R0.H = hi(mem_SDGCTL);
420 r0.l = lo(IWR_ENABLE_ALL);
421 r0.h = hi(IWR_ENABLE_ALL);
426 ENDPROC(_start_dma_code)
427 #endif /* CONFIG_BFIN_KERNEL_CLOCK */
432 * Set up the usable of RAM stuff. Size of RAM is determined then
433 * an initial stack set up at the end.