2 * File: arch/blackfin/mach-bf548/head.S
3 * Based on: arch/blackfin/mach-bf537/head.S
4 * Author: Jeff Dionne <jeff@uclinux.org> COPYRIGHT 1998 D. Jeff Dionne
7 * Description: Startup code for Blackfin BF548
10 * Copyright 2004-2007 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 #ifdef CONFIG_BFIN_KERNEL_CLOCK
35 #include <asm/mach-common/clocks.h>
36 #include <asm/mach/mem_init.h>
41 .extern _bf53x_relocate_l1_mem
43 #define INITIAL_STACK 0xFFB01000
48 /* R0: argument of command line string, passed from uboot, save it */
50 /* Enable Cycle Counter and Nesting Of Interrupts */
51 #ifdef CONFIG_BFIN_SCRATCH_REG_CYCLES
54 R0 = SYSCFG_SNEN | SYSCFG_CCEN;
59 /* Clear Out All the data and pointer Registers*/
81 /* Clear Out All the DAG Registers*/
97 trace_buffer_init(p0,r0);
101 /* Turn off the icache */
102 p0.l = LO(IMEM_CONTROL);
103 p0.h = HI(IMEM_CONTROL);
110 /* Turn off the dcache */
111 p0.l = LO(DMEM_CONTROL);
112 p0.h = HI(DMEM_CONTROL);
119 /* Initialize stack pointer */
120 SP.L = LO(INITIAL_STACK);
121 SP.H = HI(INITIAL_STACK);
125 #ifdef CONFIG_EARLY_PRINTK
127 call _init_early_exception_vectors;
131 /* Put The Code for PLL Programming and SDRAM Programming in L1 ISRAM */
132 call _bf53x_relocate_l1_mem;
133 #ifdef CONFIG_BFIN_KERNEL_CLOCK
134 call _start_dma_code;
136 /* Code for initializing Async memory banks */
138 p2.h = hi(EBIU_AMBCTL1);
139 p2.l = lo(EBIU_AMBCTL1);
140 r0.h = hi(AMBCTL1VAL);
141 r0.l = lo(AMBCTL1VAL);
145 p2.h = hi(EBIU_AMBCTL0);
146 p2.l = lo(EBIU_AMBCTL0);
147 r0.h = hi(AMBCTL0VAL);
148 r0.l = lo(AMBCTL0VAL);
152 p2.h = hi(EBIU_AMGCTL);
153 p2.l = lo(EBIU_AMGCTL);
158 p2.h = hi(EBIU_MBSCTL);
159 p2.l = lo(EBIU_MBSCTL);
160 r0.h = hi(CONFIG_EBIU_MBSCTLVAL);
161 r0.l = lo(CONFIG_EBIU_MBSCTLVAL);
165 p2.h = hi(EBIU_MODE);
166 p2.l = lo(EBIU_MODE);
167 r0.h = hi(CONFIG_EBIU_MODEVAL);
168 r0.l = lo(CONFIG_EBIU_MODEVAL);
172 p2.h = hi(EBIU_FCTL);
173 p2.l = lo(EBIU_FCTL);
174 r0.h = hi(CONFIG_EBIU_FCTLVAL);
175 r0.l = lo(CONFIG_EBIU_FCTLVAL);
179 /* This section keeps the processor in supervisor mode
180 * during kernel boot. Switches to user mode at end of boot.
181 * See page 3-9 of Hardware Reference manual for documentation.
184 /* EVT15 = _real_start */
220 w[p0] = r0; /* watchdog off for now */
223 /* Code update for BSS size == 0
224 * Zero out the bss region.
233 lsetup (.L_clear_bss, .L_clear_bss ) lc0 = p2;
237 /* In case there is a NULL pointer reference
238 * Zero out region before stext
248 lsetup (.L_clear_zero, .L_clear_zero ) lc0 = p2;
252 /* pass the uboot arguments to the global value command line */
272 * load the current thread pointer and stack
274 r1.l = _init_thread_union;
275 r1.h = _init_thread_union;
291 #ifdef CONFIG_BFIN_KERNEL_CLOCK
292 ENTRY(_start_dma_code)
294 /* Enable PHY CLK buffer output */
311 * - [14:09] = MSEL[5:0] : CLKIN / VCO multiplication factors
312 * - [8] = BYPASS : BYPASS the PLL, run CLKIN into CCLK/SCLK
313 * - [7] = output delay (add 200ps of delay to mem signals)
314 * - [6] = input delay (add 200ps of input delay to mem signals)
315 * - [5] = PDWN : 1=All Clocks off
316 * - [3] = STOPCK : 1=Core Clock off
317 * - [1] = PLL_OFF : 1=Disable Power to PLL
318 * - [0] = DF : 1=Pass CLKIN/2 to PLL / 0=Pass CLKIN to PLL
319 * all other bits set to zero
322 p0.h = hi(PLL_LOCKCNT);
323 p0.l = lo(PLL_LOCKCNT);
328 #if defined(CONFIG_BF54x)
329 P2.H = hi(EBIU_RSTCTL);
330 P2.L = lo(EBIU_RSTCTL);
334 P2.H = hi(EBIU_SDGCTL);
335 P2.L = lo(EBIU_SDGCTL);
341 #if defined(CONFIG_BF54x)
345 if !CC JUMP .LSRR_MODE;
348 r0 = CONFIG_VCO_MULT & 63; /* Load the VCO multiplier */
349 r0 = r0 << 9; /* Shift it over, */
350 r1 = CLKIN_HALF; /* Do we need to divide CLKIN by 2?*/
352 r1 = PLL_BYPASS; /* Bypass the PLL? */
353 r1 = r1 << 8; /* Shift it over */
354 r0 = r1 | r0; /* add them all together */
357 p0.l = lo(PLL_CTL); /* Load the address */
358 cli r2; /* Disable interrupts */
360 w[p0] = r0.l; /* Set the value */
361 idle; /* Wait for the PLL to stablize */
362 sti r2; /* Enable interrupts */
369 if ! CC jump .Lcheck_again;
371 /* Configure SCLK & CCLK Dividers */
372 r0 = (CONFIG_CCLK_ACT_DIV | CONFIG_SCLK_DIV);
378 #if defined(CONFIG_BF54x)
379 P2.H = hi(EBIU_RSTCTL);
380 P2.L = lo(EBIU_RSTCTL);
383 if CC jump .Lskipddrrst;
390 p0.l = lo(EBIU_DDRCTL0);
391 p0.h = hi(EBIU_DDRCTL0);
392 r0.l = lo(mem_DDRCTL0);
393 r0.h = hi(mem_DDRCTL0);
397 p0.l = lo(EBIU_DDRCTL1);
398 p0.h = hi(EBIU_DDRCTL1);
399 r0.l = lo(mem_DDRCTL1);
400 r0.h = hi(mem_DDRCTL1);
404 p0.l = lo(EBIU_DDRCTL2);
405 p0.h = hi(EBIU_DDRCTL2);
406 r0.l = lo(mem_DDRCTL2);
407 r0.h = hi(mem_DDRCTL2);
411 p0.l = lo(EBIU_SDRRC);
412 p0.h = hi(EBIU_SDRRC);
417 p0.l = LO(EBIU_SDBCTL);
418 p0.h = HI(EBIU_SDBCTL); /* SDRAM Memory Bank Control Register */
423 P2.H = hi(EBIU_SDGCTL);
424 P2.L = lo(EBIU_SDGCTL);
427 p0.h = hi(EBIU_SDSTAT);
428 p0.l = lo(EBIU_SDSTAT);
438 R0.L = lo(mem_SDGCTL);
439 R0.H = hi(mem_SDGCTL);
448 r0.l = lo(IWR_ENABLE_ALL);
449 r0.h = hi(IWR_ENABLE_ALL);
454 ENDPROC(_start_dma_code)
455 #endif /* CONFIG_BFIN_KERNEL_CLOCK */