2 * U-boot - start.S Startup file of u-boot for BF533/BF561
4 * Copyright (c) 2005-2007 Analog Devices Inc.
6 * This file is based on head.S
7 * Copyright (c) 2003 Metrowerks/Motorola
10 * The Silver Hammer Group, Ltd.
11 * (c) 1995, Dionne & Associates
12 * (c) 1995, DKG Display Tech.
14 * See file CREDITS for list of people who contributed to this
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
34 * Note: A change in this file subsequently requires a change in
35 * board/$(board_name)/config.mk for a valid u-boot.bin
40 #include <linux/config.h>
42 #include <asm/blackfin.h>
67 * As per HW reference manual DAG registers,
68 * DATA and Address resgister shall be zero'd
69 * in initialization, after a reset state
71 r1 = 0; /* Data registers zero'd */
79 p0 = 0; /* Address registers zero'd */
86 i0 = 0; /* DAG Registers zero'd */
104 * Set loop counters to zero, to make sure that
105 * hw loops are disabled.
113 /* Check soft reset status */
115 p0.l = SWRST & 0xFFFF;
119 if !cc jump no_soft_reset;
121 /* Clear Soft reset */
129 /* Clear EVT registers */
130 p0.h = (EVT_EMULATION_ADDR >> 16);
131 p0.l = (EVT_EMULATION_ADDR & 0xFFFF);
135 LSETUP(4,4) lc0 = p1;
144 sp.l = (0xffb01000 & 0xFFFF);
145 sp.h = (0xffb01000 >> 16);
148 * Check if the code is in SDRAM
149 * If the code is in SDRAM, skip SDRAM initializaiton
155 if cc jump sdram_initialized;
157 /* relocate into to RAM */
170 p2.l = (CFG_MONITOR_BASE & 0xffff);
171 p2.h = (CFG_MONITOR_BASE >> 16);
174 p4.l = ((CFG_MONITOR_BASE + CFG_MONITOR_LEN) & 0xffff);
175 p4.h = ((CFG_MONITOR_BASE + CFG_MONITOR_LEN) >> 16);
184 r0.h = (CONFIG_STACKBASE >> 16);
185 r0.l = (CONFIG_STACKBASE & 0xFFFF);
190 * This next section keeps the processor in supervisor mode
191 * during kernel boot. Switches to user mode at end of boot.
192 * See page 3-9 of Hardware Reference manual for documentation.
195 /* To keep ourselves in the supervisor mode */
196 p0.l = (EVT_IVG15_ADDR & 0xFFFF);
197 p0.h = (EVT_IVG15_ADDR >> 16);
203 p0.l = (IMASK & 0xFFFF);
204 p0.h = (IMASK >> 16);
205 r0.l = LO(IVG15_POS);
206 r0.h = HI(IVG15_POS);
221 #ifdef CONFIG_EZKIT561
222 p0.l = (WDOG_CTL & 0xFFFF);
223 p0.h = (WDOG_CTL >> 16);
224 r0 = WATCHDOG_DISABLE(z);
228 /* DMA reset code to Hi of L1 SRAM */
230 P1.H = hi(SYSMMR_BASE); /* P1 Points to the beginning of SYSTEM MMR Space */
231 P1.L = lo(SYSMMR_BASE);
233 R0.H = reset_start; /* Source Address (high) */
234 R0.L = reset_start; /* Source Address (low) */
237 R2 = R1 - R0; /* Count */
238 R1.H = hi(L1_ISRAM); /* Destination Address (high) */
239 R1.L = lo(L1_ISRAM); /* Destination Address (low) */
240 R3.L = DMAEN; /* Source DMAConfig Value (8-bit words) */
241 R4.L = (DI_EN | WNR | DMAEN); /* Destination DMAConfig Value (8-bit words) */
245 W[P1+OFFSET_(MDMA_S0_X_MODIFY)] = R6; /* Source Modify = 1 */
246 W[P1+OFFSET_(MDMA_D0_X_MODIFY)] = R6; /* Destination Modify = 1 */
248 [P1+OFFSET_(MDMA_S0_START_ADDR)] = R0; /* Set Source Base Address */
249 W[P1+OFFSET_(MDMA_S0_X_COUNT)] = R2; /* Set Source Count */
250 /* Set Source DMAConfig = DMA Enable,
251 Memory Read, 8-Bit Transfers, 1-D DMA, Flow - Stop */
252 W[P1+OFFSET_(MDMA_S0_CONFIG)] = R3;
254 [P1+OFFSET_(MDMA_D0_START_ADDR)] = R1; /* Set Destination Base Address */
255 W[P1+OFFSET_(MDMA_D0_X_COUNT)] = R2; /* Set Destination Count */
256 /* Set Destination DMAConfig = DMA Enable,
257 Memory Write, 8-Bit Transfers, 1-D DMA, Flow - Stop, IOC */
258 W[P1+OFFSET_(MDMA_D0_CONFIG)] = R4;
261 p0.h = hi(MDMA_D0_IRQ_STATUS);
262 p0.l = lo(MDMA_D0_IRQ_STATUS);
265 if ! CC jump WAIT_DMA_DONE
268 W[P1+OFFSET_(MDMA_D0_IRQ_STATUS)] = R0; /* Write 1 to clear DMA interrupt */
270 /* Initialize BSS Section with 0 s */
280 lsetup (_clear_bss, _clear_bss_end ) lc1 = p3;
282 if CC jump _clear_bss_skip;
294 p0.h = WDOG_CNT >> 16;
295 p0.l = WDOG_CNT & 0xffff;
298 p0.h = WDOG_CTL >> 16;
299 p0.l = WDOG_CTL & 0xffff;