2 * File: arch/blackfin/mach-bf537/head.S
3 * Based on: arch/blackfin/mach-bf533/head.S
4 * Author: Jeff Dionne <jeff@uclinux.org> COPYRIGHT 1998 D. Jeff Dionne
7 * Description: Startup code for Blackfin BF537
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 #ifdef CONFIG_BFIN_KERNEL_CLOCK
34 #include <asm/mach-common/clocks.h>
35 #include <asm/mach/mem_init.h>
38 .extern _bf53x_relocate_l1_mem
42 ENTRY(_mach_early_start)
43 /* Initialise General-Purpose I/O Modules on BF537 */
44 p0.h = hi(BFIN_PORT_MUX);
45 p0.l = lo(BFIN_PORT_MUX);
46 R0 = (PGDE_UART | PFTE_UART)(Z);
47 W[P0] = R0.L; /* Enable both UARTS */
50 /* Enable peripheral function of PORTF for UART0 and UART1 */
57 /* Initialise UART - when booting from u-boot, the UART is not disabled
58 * so if we dont initalize here, our serial console gets hosed */
59 p0.h = hi(BFIN_UART_LCR);
60 p0.l = lo(BFIN_UART_LCR);
62 w[p0] = r0.L; /* To enable DLL writes */
65 p0.h = hi(BFIN_UART_DLL);
66 p0.l = lo(BFIN_UART_DLL);
71 p0.h = hi(BFIN_UART_DLH);
72 p0.l = lo(BFIN_UART_DLH);
77 p0.h = hi(BFIN_UART_GCTL);
78 p0.l = lo(BFIN_UART_GCTL);
80 w[p0] = r0.L; /* To enable UART clock */
84 ENDPROC(_mach_early_start)
89 #ifdef CONFIG_BFIN_KERNEL_CLOCK
90 ENTRY(_start_dma_code)
92 /* Enable PHY CLK buffer output */
109 * - [14:09] = MSEL[5:0] : CLKIN / VCO multiplication factors
110 * - [8] = BYPASS : BYPASS the PLL, run CLKIN into CCLK/SCLK
111 * - [7] = output delay (add 200ps of delay to mem signals)
112 * - [6] = input delay (add 200ps of input delay to mem signals)
113 * - [5] = PDWN : 1=All Clocks off
114 * - [3] = STOPCK : 1=Core Clock off
115 * - [1] = PLL_OFF : 1=Disable Power to PLL
116 * - [0] = DF : 1=Pass CLKIN/2 to PLL / 0=Pass CLKIN to PLL
117 * all other bits set to zero
120 p0.h = hi(PLL_LOCKCNT);
121 p0.l = lo(PLL_LOCKCNT);
126 P2.H = hi(EBIU_SDGCTL);
127 P2.L = lo(EBIU_SDGCTL);
133 r0 = CONFIG_VCO_MULT & 63; /* Load the VCO multiplier */
134 r0 = r0 << 9; /* Shift it over, */
135 r1 = CLKIN_HALF; /* Do we need to divide CLKIN by 2?*/
137 r1 = PLL_BYPASS; /* Bypass the PLL? */
138 r1 = r1 << 8; /* Shift it over */
139 r0 = r1 | r0; /* add them all together */
142 p0.l = lo(PLL_CTL); /* Load the address */
143 cli r2; /* Disable interrupts */
145 w[p0] = r0.l; /* Set the value */
146 idle; /* Wait for the PLL to stablize */
147 sti r2; /* Enable interrupts */
154 if ! CC jump .Lcheck_again;
156 /* Configure SCLK & CCLK Dividers */
157 r0 = (CONFIG_CCLK_ACT_DIV | CONFIG_SCLK_DIV);
163 p0.l = lo(EBIU_SDRRC);
164 p0.h = hi(EBIU_SDRRC);
169 P2.H = hi(EBIU_SDGCTL);
170 P2.L = lo(EBIU_SDGCTL);
173 p0.h = hi(EBIU_SDSTAT);
174 p0.l = lo(EBIU_SDSTAT);
184 R0.L = lo(mem_SDGCTL);
185 R0.H = hi(mem_SDGCTL);
192 ENDPROC(_start_dma_code)
193 #endif /* CONFIG_BFIN_KERNEL_CLOCK */