blob: c5082a0925e8ee0348cf0f9efe789c48c71a70c4 [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
Stelian Pop19883ae2008-05-08 14:52:34 +020075static void at91cap9_slowclock_hw_init(void)
76{
77 /*
78 * On AT91CAP9 revC CPUs, the slow clock can be based on an
79 * internal impreciseRC oscillator or an external 32kHz oscillator.
80 * Switch to the latter.
81 */
82#define ARCH_ID_AT91CAP9_REVB 0x399
83#define ARCH_ID_AT91CAP9_REVC 0x601
84 if (at91_sys_read(AT91_PMC_VER) == ARCH_ID_AT91CAP9_REVC) {
85 unsigned i, tmp = at91_sys_read(AT91_SCKCR);
86 if ((tmp & AT91CAP9_SCKCR_OSCSEL) == AT91CAP9_SCKCR_OSCSEL_RC) {
87 extern void timer_init(void);
88 timer_init();
89 tmp |= AT91CAP9_SCKCR_OSC32EN;
90 at91_sys_write(AT91_SCKCR, tmp);
91 for (i = 0; i < 1200; i++)
92 udelay(1000);
93 tmp |= AT91CAP9_SCKCR_OSCSEL_32;
94 at91_sys_write(AT91_SCKCR, tmp);
95 udelay(200);
96 tmp &= ~AT91CAP9_SCKCR_RCEN;
97 at91_sys_write(AT91_SCKCR, tmp);
98 }
99 }
100}
101
Stelian Pop6afcabf2008-02-07 16:37:54 +0000102static void at91cap9_nor_hw_init(void)
103{
Stelian Pop983c1db2008-03-26 20:52:32 +0100104 unsigned long csa;
105
Stelian Pop6afcabf2008-02-07 16:37:54 +0000106 /* Ensure EBI supply is 3.3V */
Stelian Pop983c1db2008-03-26 20:52:32 +0100107 csa = at91_sys_read(AT91_MATRIX_EBICSA);
108 at91_sys_write(AT91_MATRIX_EBICSA,
109 csa | AT91_MATRIX_EBI_VDDIOMSEL_3_3V);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000110 /* Configure SMC CS0 for parallel flash */
Stelian Pop983c1db2008-03-26 20:52:32 +0100111 at91_sys_write(AT91_SMC_SETUP(0),
112 AT91_SMC_NWESETUP_(4) | AT91_SMC_NCS_WRSETUP_(2) |
113 AT91_SMC_NRDSETUP_(4) | AT91_SMC_NCS_RDSETUP_(2));
114 at91_sys_write(AT91_SMC_PULSE(0),
115 AT91_SMC_NWEPULSE_(8) | AT91_SMC_NCS_WRPULSE_(10) |
116 AT91_SMC_NRDPULSE_(8) | AT91_SMC_NCS_RDPULSE_(10));
117 at91_sys_write(AT91_SMC_CYCLE(0),
118 AT91_SMC_NWECYCLE_(16) | AT91_SMC_NRDCYCLE_(16));
119 at91_sys_write(AT91_SMC_MODE(0),
120 AT91_SMC_READMODE | AT91_SMC_WRITEMODE |
121 AT91_SMC_EXNWMODE_DISABLE | AT91_SMC_BAT_WRITE |
122 AT91_SMC_DBW_16 | AT91_SMC_TDF_(1));
Stelian Pop6afcabf2008-02-07 16:37:54 +0000123}
124
125#ifdef CONFIG_CMD_NAND
126static void at91cap9_nand_hw_init(void)
127{
Stelian Pop983c1db2008-03-26 20:52:32 +0100128 unsigned long csa;
129
Stelian Pop6afcabf2008-02-07 16:37:54 +0000130 /* Enable CS3 */
Stelian Pop983c1db2008-03-26 20:52:32 +0100131 csa = at91_sys_read(AT91_MATRIX_EBICSA);
132 at91_sys_write(AT91_MATRIX_EBICSA,
133 csa | AT91_MATRIX_EBI_CS3A_SMC_SMARTMEDIA |
134 AT91_MATRIX_EBI_VDDIOMSEL_3_3V);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000135
136 /* Configure SMC CS3 for NAND/SmartMedia */
Stelian Pop983c1db2008-03-26 20:52:32 +0100137 at91_sys_write(AT91_SMC_SETUP(3),
138 AT91_SMC_NWESETUP_(2) | AT91_SMC_NCS_WRSETUP_(1) |
139 AT91_SMC_NRDSETUP_(2) | AT91_SMC_NCS_RDSETUP_(1));
140 at91_sys_write(AT91_SMC_PULSE(3),
141 AT91_SMC_NWEPULSE_(4) | AT91_SMC_NCS_WRPULSE_(6) |
142 AT91_SMC_NRDPULSE_(4) | AT91_SMC_NCS_RDPULSE_(6));
143 at91_sys_write(AT91_SMC_CYCLE(3),
144 AT91_SMC_NWECYCLE_(8) | AT91_SMC_NRDCYCLE_(8));
145 at91_sys_write(AT91_SMC_MODE(3),
146 AT91_SMC_READMODE | AT91_SMC_WRITEMODE |
147 AT91_SMC_EXNWMODE_DISABLE |
Stelian Pop1c90df32008-05-08 20:52:14 +0200148#ifdef CFG_NAND_DBW_16
149 AT91_SMC_DBW_16 |
150#else /* CFG_NAND_DBW_8 */
151 AT91_SMC_DBW_8 |
152#endif
153 AT91_SMC_TDF_(1));
Stelian Pop6afcabf2008-02-07 16:37:54 +0000154
Stelian Pop983c1db2008-03-26 20:52:32 +0100155 at91_sys_write(AT91_PMC_PCER, 1 << AT91CAP9_ID_PIOABCD);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000156
157 /* RDY/BSY is not connected */
158
159 /* Enable NandFlash */
Stelian Pop983c1db2008-03-26 20:52:32 +0100160 at91_set_gpio_output(AT91_PIN_PD15, 1);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000161}
162#endif
163
164#ifdef CONFIG_HAS_DATAFLASH
165static void at91cap9_spi_hw_init(void)
166{
Stelian Pop983c1db2008-03-26 20:52:32 +0100167 at91_set_B_periph(AT91_PIN_PA5, 0); /* SPI0_NPCS0 */
Stelian Pop6afcabf2008-02-07 16:37:54 +0000168
Stelian Pop983c1db2008-03-26 20:52:32 +0100169 at91_set_B_periph(AT91_PIN_PA0, 0); /* SPI0_MISO */
170 at91_set_B_periph(AT91_PIN_PA1, 0); /* SPI0_MOSI */
171 at91_set_B_periph(AT91_PIN_PA2, 0); /* SPI0_SPCK */
Stelian Pop6afcabf2008-02-07 16:37:54 +0000172
Stelian Pop983c1db2008-03-26 20:52:32 +0100173 /* Enable clock */
174 at91_sys_write(AT91_PMC_PCER, 1 << AT91CAP9_ID_SPI0);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000175}
176#endif
177
178#ifdef CONFIG_MACB
179static void at91cap9_macb_hw_init(void)
180{
Stelian Pop6afcabf2008-02-07 16:37:54 +0000181 /* Enable clock */
Stelian Pop983c1db2008-03-26 20:52:32 +0100182 at91_sys_write(AT91_PMC_PCER, 1 << AT91CAP9_ID_EMAC);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000183
184 /*
185 * Disable pull-up on:
186 * RXDV (PB22) => PHY normal mode (not Test mode)
187 * ERX0 (PB25) => PHY ADDR0
188 * ERX1 (PB26) => PHY ADDR1 => PHYADDR = 0x0
189 *
190 * PHY has internal pull-down
191 */
Stelian Pop983c1db2008-03-26 20:52:32 +0100192 writel(pin_to_mask(AT91_PIN_PB22) |
193 pin_to_mask(AT91_PIN_PB25) |
194 pin_to_mask(AT91_PIN_PB26),
195 pin_to_controller(AT91_PIN_PA0) + PIO_PUDR);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000196
197 /* Need to reset PHY -> 500ms reset */
Stelian Pop983c1db2008-03-26 20:52:32 +0100198 at91_sys_write(AT91_RSTC_MR, AT91_RSTC_KEY |
Stelian Pop19bd6882008-05-22 00:15:40 +0200199 (AT91_RSTC_ERSTL & (0x0D << 8)) |
Stelian Pop983c1db2008-03-26 20:52:32 +0100200 AT91_RSTC_URSTEN);
201
202 at91_sys_write(AT91_RSTC_CR, AT91_RSTC_KEY | AT91_RSTC_EXTRST);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000203
204 /* Wait for end hardware reset */
Stelian Pop983c1db2008-03-26 20:52:32 +0100205 while (!(at91_sys_read(AT91_RSTC_SR) & AT91_RSTC_NRSTL));
Stelian Pop6afcabf2008-02-07 16:37:54 +0000206
Stelian Pop19bd6882008-05-22 00:15:40 +0200207 /* Restore NRST value */
208 at91_sys_write(AT91_RSTC_MR, AT91_RSTC_KEY |
209 (AT91_RSTC_ERSTL & (0x0 << 8)) |
210 AT91_RSTC_URSTEN);
211
Stelian Pop6afcabf2008-02-07 16:37:54 +0000212 /* Re-enable pull-up */
Stelian Pop983c1db2008-03-26 20:52:32 +0100213 writel(pin_to_mask(AT91_PIN_PB22) |
214 pin_to_mask(AT91_PIN_PB25) |
215 pin_to_mask(AT91_PIN_PB26),
216 pin_to_controller(AT91_PIN_PA0) + PIO_PUER);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000217
Stelian Pop983c1db2008-03-26 20:52:32 +0100218 at91_set_A_periph(AT91_PIN_PB21, 0); /* ETXCK_EREFCK */
219 at91_set_A_periph(AT91_PIN_PB22, 0); /* ERXDV */
220 at91_set_A_periph(AT91_PIN_PB25, 0); /* ERX0 */
221 at91_set_A_periph(AT91_PIN_PB26, 0); /* ERX1 */
222 at91_set_A_periph(AT91_PIN_PB27, 0); /* ERXER */
223 at91_set_A_periph(AT91_PIN_PB28, 0); /* ETXEN */
224 at91_set_A_periph(AT91_PIN_PB23, 0); /* ETX0 */
225 at91_set_A_periph(AT91_PIN_PB24, 0); /* ETX1 */
226 at91_set_A_periph(AT91_PIN_PB30, 0); /* EMDIO */
227 at91_set_A_periph(AT91_PIN_PB29, 0); /* EMDC */
228
229#ifndef CONFIG_RMII
230 at91_set_B_periph(AT91_PIN_PC25, 0); /* ECRS */
231 at91_set_B_periph(AT91_PIN_PC26, 0); /* ECOL */
232 at91_set_B_periph(AT91_PIN_PC22, 0); /* ERX2 */
233 at91_set_B_periph(AT91_PIN_PC23, 0); /* ERX3 */
234 at91_set_B_periph(AT91_PIN_PC27, 0); /* ERXCK */
235 at91_set_B_periph(AT91_PIN_PC20, 0); /* ETX2 */
236 at91_set_B_periph(AT91_PIN_PC21, 0); /* ETX3 */
237 at91_set_B_periph(AT91_PIN_PC24, 0); /* ETXER */
Stelian Pop6afcabf2008-02-07 16:37:54 +0000238#endif
Stelian Pop6afcabf2008-02-07 16:37:54 +0000239 /* Unlock EMAC, 3 0 2 1 sequence */
240#define MP_MAC_KEY0 0x5969cb2a
241#define MP_MAC_KEY1 0xb4a1872e
242#define MP_MAC_KEY2 0x05683fbc
243#define MP_MAC_KEY3 0x3634fba4
244#define UNLOCK_MAC 0x00000008
Stelian Pop983c1db2008-03-26 20:52:32 +0100245 writel(MP_MAC_KEY3, MP_BLOCK_3_BASE + 0x3c);
246 writel(MP_MAC_KEY0, MP_BLOCK_3_BASE + 0x30);
247 writel(MP_MAC_KEY2, MP_BLOCK_3_BASE + 0x38);
248 writel(MP_MAC_KEY1, MP_BLOCK_3_BASE + 0x34);
249 writel(UNLOCK_MAC, MP_BLOCK_3_BASE + 0x40);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000250}
251#endif
252
253#ifdef CONFIG_USB_OHCI_NEW
254static void at91cap9_uhp_hw_init(void)
255{
256 /* Unlock USB OHCI, 3 2 0 1 sequence */
257#define MP_OHCI_KEY0 0x896c11ca
258#define MP_OHCI_KEY1 0x68ebca21
259#define MP_OHCI_KEY2 0x4823efbc
260#define MP_OHCI_KEY3 0x8651aae4
261#define UNLOCK_OHCI 0x00000010
Stelian Pop983c1db2008-03-26 20:52:32 +0100262 writel(MP_OHCI_KEY3, MP_BLOCK_3_BASE + 0x3c);
263 writel(MP_OHCI_KEY2, MP_BLOCK_3_BASE + 0x38);
264 writel(MP_OHCI_KEY0, MP_BLOCK_3_BASE + 0x30);
265 writel(MP_OHCI_KEY1, MP_BLOCK_3_BASE + 0x34);
266 writel(UNLOCK_OHCI, MP_BLOCK_3_BASE + 0x40);
Stelian Pop6afcabf2008-02-07 16:37:54 +0000267}
268#endif
269
Stelian Popc139b172008-05-08 14:52:29 +0200270#ifdef CONFIG_LCD
271vidinfo_t panel_info = {
272 vl_col: 240,
273 vl_row: 320,
274 vl_clk: 4965000,
275 vl_sync: ATMEL_LCDC_INVLINE_INVERTED |
276 ATMEL_LCDC_INVFRAME_INVERTED,
277 vl_bpix: 3,
278 vl_tft: 1,
279 vl_hsync_len: 5,
280 vl_left_margin: 1,
281 vl_right_margin:33,
282 vl_vsync_len: 1,
283 vl_upper_margin:1,
284 vl_lower_margin:0,
285 mmio: AT91CAP9_LCDC_BASE,
286};
287
288void lcd_enable(void)
289{
290 at91_set_gpio_value(AT91_PIN_PC0, 0); /* power up */
291}
292
293void lcd_disable(void)
294{
295 at91_set_gpio_value(AT91_PIN_PC0, 1); /* power down */
296}
297
298static void at91cap9_lcd_hw_init(void)
299{
300 at91_set_A_periph(AT91_PIN_PC1, 0); /* LCDHSYNC */
301 at91_set_A_periph(AT91_PIN_PC2, 0); /* LCDDOTCK */
302 at91_set_A_periph(AT91_PIN_PC3, 0); /* LCDDEN */
303 at91_set_B_periph(AT91_PIN_PB9, 0); /* LCDCC */
304 at91_set_A_periph(AT91_PIN_PC6, 0); /* LCDD2 */
305 at91_set_A_periph(AT91_PIN_PC7, 0); /* LCDD3 */
306 at91_set_A_periph(AT91_PIN_PC8, 0); /* LCDD4 */
307 at91_set_A_periph(AT91_PIN_PC9, 0); /* LCDD5 */
308 at91_set_A_periph(AT91_PIN_PC10, 0); /* LCDD6 */
309 at91_set_A_periph(AT91_PIN_PC11, 0); /* LCDD7 */
310 at91_set_A_periph(AT91_PIN_PC14, 0); /* LCDD10 */
311 at91_set_A_periph(AT91_PIN_PC15, 0); /* LCDD11 */
312 at91_set_A_periph(AT91_PIN_PC16, 0); /* LCDD12 */
313 at91_set_A_periph(AT91_PIN_PC17, 0); /* LCDD13 */
314 at91_set_A_periph(AT91_PIN_PC18, 0); /* LCDD14 */
315 at91_set_A_periph(AT91_PIN_PC19, 0); /* LCDD15 */
316 at91_set_A_periph(AT91_PIN_PC22, 0); /* LCDD18 */
317 at91_set_A_periph(AT91_PIN_PC23, 0); /* LCDD19 */
318 at91_set_A_periph(AT91_PIN_PC24, 0); /* LCDD20 */
319 at91_set_A_periph(AT91_PIN_PC25, 0); /* LCDD21 */
320 at91_set_A_periph(AT91_PIN_PC26, 0); /* LCDD22 */
321 at91_set_A_periph(AT91_PIN_PC27, 0); /* LCDD23 */
322
323 at91_sys_write(AT91_PMC_PCER, 1 << AT91CAP9_ID_LCDC);
324
325 gd->fb_base = 0;
326}
327#endif
328
Stelian Pop6afcabf2008-02-07 16:37:54 +0000329int board_init(void)
330{
331 /* Enable Ctrlc */
332 console_init_f();
333
334 /* arch number of AT91CAP9ADK-Board */
335 gd->bd->bi_arch_number = MACH_TYPE_AT91CAP9ADK;
336 /* adress of boot parameters */
337 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
338
339 at91cap9_serial_hw_init();
Stelian Pop19883ae2008-05-08 14:52:34 +0200340 at91cap9_slowclock_hw_init();
Stelian Pop6afcabf2008-02-07 16:37:54 +0000341 at91cap9_nor_hw_init();
342#ifdef CONFIG_CMD_NAND
343 at91cap9_nand_hw_init();
344#endif
345#ifdef CONFIG_HAS_DATAFLASH
346 at91cap9_spi_hw_init();
347#endif
348#ifdef CONFIG_MACB
349 at91cap9_macb_hw_init();
350#endif
351#ifdef CONFIG_USB_OHCI_NEW
352 at91cap9_uhp_hw_init();
353#endif
Stelian Popc139b172008-05-08 14:52:29 +0200354#ifdef CONFIG_LCD
355 at91cap9_lcd_hw_init();
356#endif
Stelian Pop6afcabf2008-02-07 16:37:54 +0000357 return 0;
358}
359
360int dram_init(void)
361{
362 gd->bd->bi_dram[0].start = PHYS_SDRAM;
363 gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
364 return 0;
365}
366
367#ifdef CONFIG_RESET_PHY_R
368void reset_phy(void)
369{
370#ifdef CONFIG_MACB
371 /*
372 * Initialize ethernet HW addr prior to starting Linux,
373 * needed for nfsroot
374 */
375 eth_init(gd->bd);
376#endif
377}
378#endif