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 <asm/blackfin.h>
32 #include <asm/trace.h>
33 #if CONFIG_BFIN_KERNEL_CLOCK
34 #include <asm/mach/mem_init.h>
42 .extern _bf53x_relocate_l1_mem
44 #define INITIAL_STACK 0xFFB01000
50 /* R0: argument of command line string, passed from uboot, save it */
52 /* Set the SYSCFG register */
54 SYSCFG = R0; /*Enable Cycle Counter and Nesting Of Interrupts(3rd Bit)*/
57 /* Clear Out All the data and pointer Registers*/
79 /* Clear Out All the DAG Registers*/
95 trace_buffer_start(p0,r0);
99 /* Turn off the icache */
100 p0.l = (IMEM_CONTROL & 0xFFFF);
101 p0.h = (IMEM_CONTROL >> 16);
108 /* Turn off the dcache */
109 p0.l = (DMEM_CONTROL & 0xFFFF);
110 p0.h = (DMEM_CONTROL >> 16);
117 /* Initialize stack pointer */
118 SP.L = LO(INITIAL_STACK);
119 SP.H = HI(INITIAL_STACK);
123 /* Put The Code for PLL Programming and SDRAM Programming in L1 ISRAM */
124 call _bf53x_relocate_l1_mem;
125 #if CONFIG_BFIN_KERNEL_CLOCK
126 call _start_dma_code;
128 /* Code for initializing Async memory banks */
130 p2.h = hi(EBIU_AMBCTL1);
131 p2.l = lo(EBIU_AMBCTL1);
132 r0.h = hi(AMBCTL1VAL);
133 r0.l = lo(AMBCTL1VAL);
137 p2.h = hi(EBIU_AMBCTL0);
138 p2.l = lo(EBIU_AMBCTL0);
139 r0.h = hi(AMBCTL0VAL);
140 r0.l = lo(AMBCTL0VAL);
144 p2.h = hi(EBIU_AMGCTL);
145 p2.l = lo(EBIU_AMGCTL);
150 /* This section keeps the processor in supervisor mode
151 * during kernel boot. Switches to user mode at end of boot.
152 * See page 3-9 of Hardware Reference manual for documentation.
155 /* EVT15 = _real_start */
190 w[p0] = r0; /* watchdog off for now */
193 /* Code update for BSS size == 0
194 * Zero out the bss region.
203 lsetup (.L_clear_bss, .L_clear_bss ) lc0 = p2;
207 /* In case there is a NULL pointer reference
208 * Zero out region before stext
218 lsetup (.L_clear_zero, .L_clear_zero ) lc0 = p2;
222 /* pass the uboot arguments to the global value command line */
242 * load the current thread pointer and stack
244 r1.l = _init_thread_union;
245 r1.h = _init_thread_union;
258 #if CONFIG_BFIN_KERNEL_CLOCK
259 ENTRY(_start_dma_code)
261 /* Enable PHY CLK buffer output */
278 * - [14:09] = MSEL[5:0] : CLKIN / VCO multiplication factors
279 * - [8] = BYPASS : BYPASS the PLL, run CLKIN into CCLK/SCLK
280 * - [7] = output delay (add 200ps of delay to mem signals)
281 * - [6] = input delay (add 200ps of input delay to mem signals)
282 * - [5] = PDWN : 1=All Clocks off
283 * - [3] = STOPCK : 1=Core Clock off
284 * - [1] = PLL_OFF : 1=Disable Power to PLL
285 * - [0] = DF : 1=Pass CLKIN/2 to PLL / 0=Pass CLKIN to PLL
286 * all other bits set to zero
289 p0.h = hi(PLL_LOCKCNT);
290 p0.l = lo(PLL_LOCKCNT);
295 P2.H = hi(EBIU_SDGCTL);
296 P2.L = lo(EBIU_SDGCTL);
302 r0 = CONFIG_VCO_MULT & 63; /* Load the VCO multiplier */
303 r0 = r0 << 9; /* Shift it over, */
304 r1 = CLKIN_HALF; /* Do we need to divide CLKIN by 2?*/
306 r1 = PLL_BYPASS; /* Bypass the PLL? */
307 r1 = r1 << 8; /* Shift it over */
308 r0 = r1 | r0; /* add them all together */
311 p0.l = lo(PLL_CTL); /* Load the address */
312 cli r2; /* Disable interrupts */
314 w[p0] = r0.l; /* Set the value */
315 idle; /* Wait for the PLL to stablize */
316 sti r2; /* Enable interrupts */
323 if ! CC jump .Lcheck_again;
325 /* Configure SCLK & CCLK Dividers */
326 r0 = (CONFIG_CCLK_ACT_DIV | CONFIG_SCLK_DIV);
332 p0.l = lo(EBIU_SDRRC);
333 p0.h = hi(EBIU_SDRRC);
338 p0.l = (EBIU_SDBCTL & 0xFFFF);
339 p0.h = (EBIU_SDBCTL >> 16); /* SDRAM Memory Bank Control Register */
344 P2.H = hi(EBIU_SDGCTL);
345 P2.L = lo(EBIU_SDGCTL);
348 p0.h = hi(EBIU_SDSTAT);
349 p0.l = lo(EBIU_SDSTAT);
359 R0.L = lo(mem_SDGCTL);
360 R0.H = hi(mem_SDGCTL);
368 r0.l = lo(IWR_ENABLE_ALL);
369 r0.h = hi(IWR_ENABLE_ALL);
374 #endif /* CONFIG_BFIN_KERNEL_CLOCK */
377 /* No more interrupts to be handled*/
381 #if defined(CONFIG_MTD_M25P80)
383 * The following code fix the SPI flash reboot issue,
384 * /CS signal of the chip which is using PF10 return to GPIO mode
386 p0.h = hi(PORTF_FER);
387 p0.l = lo(PORTF_FER);
392 /* /CS return to high */
399 /* Delay some time, This is necessary */
403 lsetup (_delay_lab1,_delay_lab1_end ) lc1 = p1;
408 lsetup (_delay_lab0,_delay_lab0_end ) lc0 = p0;
417 /* Clear the bits 13-15 in SWRST if they werent cleared */
423 /* Clear the IMASK register */
429 /* Clear the ILAT register */
436 /* Disable the WDOG TIMER */
443 /* Clear the sticky bit incase it is already set */
450 /* Program the count value */
458 /* Program WDOG_STAT if necessary */
463 if !CC JUMP .LWRITESTAT;
465 if !CC JUMP .LWRITESTAT;
469 /* When watch dog timer is enabled,
470 * a write to STAT will load the contents of CNT to STAT
473 P0.h = hi(WDOG_STAT);
479 /* Enable the reset event */
489 /* Enable the wdog counter */
502 * Set up the usable of RAM stuff. Size of RAM is determined then
503 * an initial stack set up at the end.