blob: e353cea18152b66b6a826864d882713c4cc557d0 [file] [log] [blame]
Stelian Pop6afcabf2008-02-07 16:37:54 +00001/*
2 * (C) Copyright 2007-2008
Stelian Pop567fb852008-05-08 22:52:09 +02003 * Stelian Pop <stelian.pop@leadtechdesign.com>
Stelian Pop6afcabf2008-02-07 16:37:54 +00004 * Lead Tech Design <www.leadtechdesign.com>
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <common.h>
Stelian Pop983c1db2008-03-26 20:52:32 +010026#include <asm/arch/at91cap9.h>
27#include <asm/arch/at91cap9_matrix.h>
Stelian Pop4f6c8102008-05-08 20:52:10 +020028#include <asm/arch/at91sam9_smc.h>
Stelian Pop983c1db2008-03-26 20:52:32 +010029#include <asm/arch/at91_pmc.h>
30#include <asm/arch/at91_rstc.h>
31#include <asm/arch/gpio.h>
32#include <asm/arch/io.h>
Stelian Popc139b172008-05-08 14:52:29 +020033#include <lcd.h>
34#include <atmel_lcdc.h>
Jean-Christophe PLAGNIOL-VILLARD64d79202008-02-17 14:15:30 +010035#if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
36#include <net.h>
37#endif
Stelian Pop6afcabf2008-02-07 16:37:54 +000038
39#define MP_BLOCK_3_BASE 0xFDF00000
40
41DECLARE_GLOBAL_DATA_PTR;
42
43/* ------------------------------------------------------------------------- */
44/*
45 * Miscelaneous platform dependent initialisations
46 */
47
48static void at91cap9_serial_hw_init(void)
49{
50#ifdef CONFIG_USART0
Stelian Pop983c1db2008-03-26 20:52:32 +010051 at91_set_A_periph(AT91_PIN_PA22, 1); /* TXD0 */
52 at91_set_A_periph(AT91_PIN_PA23, 0); /* RXD0 */
53 at91_sys_write(AT91_PMC_PCER, 1 << AT91_ID_US0);
Stelian Pop6afcabf2008-02-07 16:37:54 +000054#endif
55
56#ifdef CONFIG_USART1
Stelian Pop983c1db2008-03-26 20:52:32 +010057 at91_set_A_periph(AT91_PIN_PD0, 1); /* TXD1 */
58 at91_set_A_periph(AT91_PIN_PD1, 0); /* RXD1 */
59 at91_sys_write(AT91_PMC_PCER, 1 << AT91_ID_US1);
Stelian Pop6afcabf2008-02-07 16:37:54 +000060#endif
61
62#ifdef CONFIG_USART2
Stelian Pop983c1db2008-03-26 20:52:32 +010063 at91_set_A_periph(AT91_PIN_PD2, 1); /* TXD2 */
64 at91_set_A_periph(AT91_PIN_PD3, 0); /* RXD2 */
65 at91_sys_write(AT91_PMC_PCER, 1 << AT91_ID_US2);
Stelian Pop6afcabf2008-02-07 16:37:54 +000066#endif
67
68#ifdef CONFIG_USART3 /* DBGU */
Stelian Pop983c1db2008-03-26 20:52:32 +010069 at91_set_A_periph(AT91_PIN_PC30, 0); /* DRXD */
70 at91_set_A_periph(AT91_PIN_PC31, 1); /* DTXD */
71 at91_sys_write(AT91_PMC_PCER, 1 << AT91_ID_SYS);
Stelian Pop6afcabf2008-02-07 16:37:54 +000072#endif
Stelian Pop6afcabf2008-02-07 16:37:54 +000073}
74
75static void at91cap9_nor_hw_init(void)
76{
Stelian Pop983c1db2008-03-26 20:52:32 +010077 unsigned long csa;
78
Stelian Pop6afcabf2008-02-07 16:37:54 +000079 /* Ensure EBI supply is 3.3V */
Stelian Pop983c1db2008-03-26 20:52:32 +010080 csa = at91_sys_read(AT91_MATRIX_EBICSA);
81 at91_sys_write(AT91_MATRIX_EBICSA,
82 csa | AT91_MATRIX_EBI_VDDIOMSEL_3_3V);
Stelian Pop6afcabf2008-02-07 16:37:54 +000083 /* Configure SMC CS0 for parallel flash */
Stelian Pop983c1db2008-03-26 20:52:32 +010084 at91_sys_write(AT91_SMC_SETUP(0),
85 AT91_SMC_NWESETUP_(4) | AT91_SMC_NCS_WRSETUP_(2) |
86 AT91_SMC_NRDSETUP_(4) | AT91_SMC_NCS_RDSETUP_(2));
87 at91_sys_write(AT91_SMC_PULSE(0),
88 AT91_SMC_NWEPULSE_(8) | AT91_SMC_NCS_WRPULSE_(10) |
89 AT91_SMC_NRDPULSE_(8) | AT91_SMC_NCS_RDPULSE_(10));
90 at91_sys_write(AT91_SMC_CYCLE(0),
91 AT91_SMC_NWECYCLE_(16) | AT91_SMC_NRDCYCLE_(16));
92 at91_sys_write(AT91_SMC_MODE(0),
93 AT91_SMC_READMODE | AT91_SMC_WRITEMODE |
94 AT91_SMC_EXNWMODE_DISABLE | AT91_SMC_BAT_WRITE |
95 AT91_SMC_DBW_16 | AT91_SMC_TDF_(1));
Stelian Pop6afcabf2008-02-07 16:37:54 +000096}
97
98#ifdef CONFIG_CMD_NAND
99static void at91cap9_nand_hw_init(void)
100{
Stelian Pop983c1db2008-03-26 20:52:32 +0100101 unsigned long csa;
102
Stelian Pop6afcabf2008-02-07 16:37:54 +0000103 /* Enable CS3 */
Stelian Pop983c1db2008-03-26 20:52:32 +0100104 csa = at91_sys_read(AT91_MATRIX_EBICSA);
105 at91_sys_write(AT91_MATRIX_EBICSA,
106 csa | AT91_MATRIX_EBI_CS3A_SMC_SMARTMEDIA |
107 AT91_MATRIX_EBI_VDDIOMSEL_3_3V);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000108
109 /* Configure SMC CS3 for NAND/SmartMedia */
Stelian Pop983c1db2008-03-26 20:52:32 +0100110 at91_sys_write(AT91_SMC_SETUP(3),
111 AT91_SMC_NWESETUP_(2) | AT91_SMC_NCS_WRSETUP_(1) |
112 AT91_SMC_NRDSETUP_(2) | AT91_SMC_NCS_RDSETUP_(1));
113 at91_sys_write(AT91_SMC_PULSE(3),
114 AT91_SMC_NWEPULSE_(4) | AT91_SMC_NCS_WRPULSE_(6) |
115 AT91_SMC_NRDPULSE_(4) | AT91_SMC_NCS_RDPULSE_(6));
116 at91_sys_write(AT91_SMC_CYCLE(3),
117 AT91_SMC_NWECYCLE_(8) | AT91_SMC_NRDCYCLE_(8));
118 at91_sys_write(AT91_SMC_MODE(3),
119 AT91_SMC_READMODE | AT91_SMC_WRITEMODE |
120 AT91_SMC_EXNWMODE_DISABLE |
Stelian Pop1c90df32008-05-08 20:52:14 +0200121#ifdef CFG_NAND_DBW_16
122 AT91_SMC_DBW_16 |
123#else /* CFG_NAND_DBW_8 */
124 AT91_SMC_DBW_8 |
125#endif
126 AT91_SMC_TDF_(1));
Stelian Pop6afcabf2008-02-07 16:37:54 +0000127
Stelian Pop983c1db2008-03-26 20:52:32 +0100128 at91_sys_write(AT91_PMC_PCER, 1 << AT91CAP9_ID_PIOABCD);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000129
130 /* RDY/BSY is not connected */
131
132 /* Enable NandFlash */
Stelian Pop983c1db2008-03-26 20:52:32 +0100133 at91_set_gpio_output(AT91_PIN_PD15, 1);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000134}
135#endif
136
137#ifdef CONFIG_HAS_DATAFLASH
138static void at91cap9_spi_hw_init(void)
139{
Stelian Pop983c1db2008-03-26 20:52:32 +0100140 at91_set_B_periph(AT91_PIN_PA5, 0); /* SPI0_NPCS0 */
Stelian Pop6afcabf2008-02-07 16:37:54 +0000141
Stelian Pop983c1db2008-03-26 20:52:32 +0100142 at91_set_B_periph(AT91_PIN_PA0, 0); /* SPI0_MISO */
143 at91_set_B_periph(AT91_PIN_PA1, 0); /* SPI0_MOSI */
144 at91_set_B_periph(AT91_PIN_PA2, 0); /* SPI0_SPCK */
Stelian Pop6afcabf2008-02-07 16:37:54 +0000145
Stelian Pop983c1db2008-03-26 20:52:32 +0100146 /* Enable clock */
147 at91_sys_write(AT91_PMC_PCER, 1 << AT91CAP9_ID_SPI0);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000148}
149#endif
150
151#ifdef CONFIG_MACB
152static void at91cap9_macb_hw_init(void)
153{
Stelian Pop6afcabf2008-02-07 16:37:54 +0000154 /* Enable clock */
Stelian Pop983c1db2008-03-26 20:52:32 +0100155 at91_sys_write(AT91_PMC_PCER, 1 << AT91CAP9_ID_EMAC);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000156
157 /*
158 * Disable pull-up on:
159 * RXDV (PB22) => PHY normal mode (not Test mode)
160 * ERX0 (PB25) => PHY ADDR0
161 * ERX1 (PB26) => PHY ADDR1 => PHYADDR = 0x0
162 *
163 * PHY has internal pull-down
164 */
Stelian Pop983c1db2008-03-26 20:52:32 +0100165 writel(pin_to_mask(AT91_PIN_PB22) |
166 pin_to_mask(AT91_PIN_PB25) |
167 pin_to_mask(AT91_PIN_PB26),
168 pin_to_controller(AT91_PIN_PA0) + PIO_PUDR);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000169
170 /* Need to reset PHY -> 500ms reset */
Stelian Pop983c1db2008-03-26 20:52:32 +0100171 at91_sys_write(AT91_RSTC_MR, AT91_RSTC_KEY |
172 AT91_RSTC_ERSTL | (0x0D << 8) |
173 AT91_RSTC_URSTEN);
174
175 at91_sys_write(AT91_RSTC_CR, AT91_RSTC_KEY | AT91_RSTC_EXTRST);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000176
177 /* Wait for end hardware reset */
Stelian Pop983c1db2008-03-26 20:52:32 +0100178 while (!(at91_sys_read(AT91_RSTC_SR) & AT91_RSTC_NRSTL));
Stelian Pop6afcabf2008-02-07 16:37:54 +0000179
180 /* Re-enable pull-up */
Stelian Pop983c1db2008-03-26 20:52:32 +0100181 writel(pin_to_mask(AT91_PIN_PB22) |
182 pin_to_mask(AT91_PIN_PB25) |
183 pin_to_mask(AT91_PIN_PB26),
184 pin_to_controller(AT91_PIN_PA0) + PIO_PUER);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000185
Stelian Pop983c1db2008-03-26 20:52:32 +0100186 at91_set_A_periph(AT91_PIN_PB21, 0); /* ETXCK_EREFCK */
187 at91_set_A_periph(AT91_PIN_PB22, 0); /* ERXDV */
188 at91_set_A_periph(AT91_PIN_PB25, 0); /* ERX0 */
189 at91_set_A_periph(AT91_PIN_PB26, 0); /* ERX1 */
190 at91_set_A_periph(AT91_PIN_PB27, 0); /* ERXER */
191 at91_set_A_periph(AT91_PIN_PB28, 0); /* ETXEN */
192 at91_set_A_periph(AT91_PIN_PB23, 0); /* ETX0 */
193 at91_set_A_periph(AT91_PIN_PB24, 0); /* ETX1 */
194 at91_set_A_periph(AT91_PIN_PB30, 0); /* EMDIO */
195 at91_set_A_periph(AT91_PIN_PB29, 0); /* EMDC */
196
197#ifndef CONFIG_RMII
198 at91_set_B_periph(AT91_PIN_PC25, 0); /* ECRS */
199 at91_set_B_periph(AT91_PIN_PC26, 0); /* ECOL */
200 at91_set_B_periph(AT91_PIN_PC22, 0); /* ERX2 */
201 at91_set_B_periph(AT91_PIN_PC23, 0); /* ERX3 */
202 at91_set_B_periph(AT91_PIN_PC27, 0); /* ERXCK */
203 at91_set_B_periph(AT91_PIN_PC20, 0); /* ETX2 */
204 at91_set_B_periph(AT91_PIN_PC21, 0); /* ETX3 */
205 at91_set_B_periph(AT91_PIN_PC24, 0); /* ETXER */
Stelian Pop6afcabf2008-02-07 16:37:54 +0000206#endif
Stelian Pop6afcabf2008-02-07 16:37:54 +0000207 /* Unlock EMAC, 3 0 2 1 sequence */
208#define MP_MAC_KEY0 0x5969cb2a
209#define MP_MAC_KEY1 0xb4a1872e
210#define MP_MAC_KEY2 0x05683fbc
211#define MP_MAC_KEY3 0x3634fba4
212#define UNLOCK_MAC 0x00000008
Stelian Pop983c1db2008-03-26 20:52:32 +0100213 writel(MP_MAC_KEY3, MP_BLOCK_3_BASE + 0x3c);
214 writel(MP_MAC_KEY0, MP_BLOCK_3_BASE + 0x30);
215 writel(MP_MAC_KEY2, MP_BLOCK_3_BASE + 0x38);
216 writel(MP_MAC_KEY1, MP_BLOCK_3_BASE + 0x34);
217 writel(UNLOCK_MAC, MP_BLOCK_3_BASE + 0x40);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000218}
219#endif
220
221#ifdef CONFIG_USB_OHCI_NEW
222static void at91cap9_uhp_hw_init(void)
223{
224 /* Unlock USB OHCI, 3 2 0 1 sequence */
225#define MP_OHCI_KEY0 0x896c11ca
226#define MP_OHCI_KEY1 0x68ebca21
227#define MP_OHCI_KEY2 0x4823efbc
228#define MP_OHCI_KEY3 0x8651aae4
229#define UNLOCK_OHCI 0x00000010
Stelian Pop983c1db2008-03-26 20:52:32 +0100230 writel(MP_OHCI_KEY3, MP_BLOCK_3_BASE + 0x3c);
231 writel(MP_OHCI_KEY2, MP_BLOCK_3_BASE + 0x38);
232 writel(MP_OHCI_KEY0, MP_BLOCK_3_BASE + 0x30);
233 writel(MP_OHCI_KEY1, MP_BLOCK_3_BASE + 0x34);
234 writel(UNLOCK_OHCI, MP_BLOCK_3_BASE + 0x40);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000235}
236#endif
237
Stelian Popc139b172008-05-08 14:52:29 +0200238#ifdef CONFIG_LCD
239vidinfo_t panel_info = {
240 vl_col: 240,
241 vl_row: 320,
242 vl_clk: 4965000,
243 vl_sync: ATMEL_LCDC_INVLINE_INVERTED |
244 ATMEL_LCDC_INVFRAME_INVERTED,
245 vl_bpix: 3,
246 vl_tft: 1,
247 vl_hsync_len: 5,
248 vl_left_margin: 1,
249 vl_right_margin:33,
250 vl_vsync_len: 1,
251 vl_upper_margin:1,
252 vl_lower_margin:0,
253 mmio: AT91CAP9_LCDC_BASE,
254};
255
256void lcd_enable(void)
257{
258 at91_set_gpio_value(AT91_PIN_PC0, 0); /* power up */
259}
260
261void lcd_disable(void)
262{
263 at91_set_gpio_value(AT91_PIN_PC0, 1); /* power down */
264}
265
266static void at91cap9_lcd_hw_init(void)
267{
268 at91_set_A_periph(AT91_PIN_PC1, 0); /* LCDHSYNC */
269 at91_set_A_periph(AT91_PIN_PC2, 0); /* LCDDOTCK */
270 at91_set_A_periph(AT91_PIN_PC3, 0); /* LCDDEN */
271 at91_set_B_periph(AT91_PIN_PB9, 0); /* LCDCC */
272 at91_set_A_periph(AT91_PIN_PC6, 0); /* LCDD2 */
273 at91_set_A_periph(AT91_PIN_PC7, 0); /* LCDD3 */
274 at91_set_A_periph(AT91_PIN_PC8, 0); /* LCDD4 */
275 at91_set_A_periph(AT91_PIN_PC9, 0); /* LCDD5 */
276 at91_set_A_periph(AT91_PIN_PC10, 0); /* LCDD6 */
277 at91_set_A_periph(AT91_PIN_PC11, 0); /* LCDD7 */
278 at91_set_A_periph(AT91_PIN_PC14, 0); /* LCDD10 */
279 at91_set_A_periph(AT91_PIN_PC15, 0); /* LCDD11 */
280 at91_set_A_periph(AT91_PIN_PC16, 0); /* LCDD12 */
281 at91_set_A_periph(AT91_PIN_PC17, 0); /* LCDD13 */
282 at91_set_A_periph(AT91_PIN_PC18, 0); /* LCDD14 */
283 at91_set_A_periph(AT91_PIN_PC19, 0); /* LCDD15 */
284 at91_set_A_periph(AT91_PIN_PC22, 0); /* LCDD18 */
285 at91_set_A_periph(AT91_PIN_PC23, 0); /* LCDD19 */
286 at91_set_A_periph(AT91_PIN_PC24, 0); /* LCDD20 */
287 at91_set_A_periph(AT91_PIN_PC25, 0); /* LCDD21 */
288 at91_set_A_periph(AT91_PIN_PC26, 0); /* LCDD22 */
289 at91_set_A_periph(AT91_PIN_PC27, 0); /* LCDD23 */
290
291 at91_sys_write(AT91_PMC_PCER, 1 << AT91CAP9_ID_LCDC);
292
293 gd->fb_base = 0;
294}
295#endif
296
Stelian Pop6afcabf2008-02-07 16:37:54 +0000297int board_init(void)
298{
299 /* Enable Ctrlc */
300 console_init_f();
301
302 /* arch number of AT91CAP9ADK-Board */
303 gd->bd->bi_arch_number = MACH_TYPE_AT91CAP9ADK;
304 /* adress of boot parameters */
305 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
306
307 at91cap9_serial_hw_init();
308 at91cap9_nor_hw_init();
309#ifdef CONFIG_CMD_NAND
310 at91cap9_nand_hw_init();
311#endif
312#ifdef CONFIG_HAS_DATAFLASH
313 at91cap9_spi_hw_init();
314#endif
315#ifdef CONFIG_MACB
316 at91cap9_macb_hw_init();
317#endif
318#ifdef CONFIG_USB_OHCI_NEW
319 at91cap9_uhp_hw_init();
320#endif
Stelian Popc139b172008-05-08 14:52:29 +0200321#ifdef CONFIG_LCD
322 at91cap9_lcd_hw_init();
323#endif
Stelian Pop6afcabf2008-02-07 16:37:54 +0000324 return 0;
325}
326
327int dram_init(void)
328{
329 gd->bd->bi_dram[0].start = PHYS_SDRAM;
330 gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
331 return 0;
332}
333
334#ifdef CONFIG_RESET_PHY_R
335void reset_phy(void)
336{
337#ifdef CONFIG_MACB
338 /*
339 * Initialize ethernet HW addr prior to starting Linux,
340 * needed for nfsroot
341 */
342 eth_init(gd->bd);
343#endif
344}
345#endif