2 * (C) Copyright 2007-2008
3 * Stelian Pop <stelian.pop@leadtechdesign.com>
4 * Lead Tech Design <www.leadtechdesign.com>
5 * Copyright (C) 2008 Ronetix Ilko Iliev (www.ronetix.at)
6 * Copyright (C) 2009 Jean-Christopher PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 #include <asm/sizes.h>
29 #include <asm/arch/at91sam9261.h>
30 #include <asm/arch/at91sam9261_matrix.h>
31 #include <asm/arch/at91sam9_smc.h>
32 #include <asm/arch/at91_common.h>
33 #include <asm/arch/at91_pmc.h>
34 #include <asm/arch/at91_rstc.h>
35 #include <asm/arch/clk.h>
36 #include <asm/arch/gpio.h>
37 #include <asm/arch/io.h>
38 #include <asm/arch/hardware.h>
40 #include <atmel_lcdc.h>
41 #include <dataflash.h>
42 #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_DRIVER_DM9000)
47 DECLARE_GLOBAL_DATA_PTR;
49 /* ------------------------------------------------------------------------- */
51 * Miscelaneous platform dependent initialisations
54 #ifdef CONFIG_CMD_NAND
55 static void pm9261_nand_hw_init(void)
60 csa = at91_sys_read(AT91_MATRIX_EBICSA);
61 at91_sys_write(AT91_MATRIX_EBICSA,
62 csa | AT91_MATRIX_CS3A_SMC_SMARTMEDIA);
64 /* Configure SMC CS3 for NAND/SmartMedia */
65 at91_sys_write(AT91_SMC_SETUP(3),
66 AT91_SMC_NWESETUP_(1) | AT91_SMC_NCS_WRSETUP_(0) |
67 AT91_SMC_NRDSETUP_(1) | AT91_SMC_NCS_RDSETUP_(0));
68 at91_sys_write(AT91_SMC_PULSE(3),
69 AT91_SMC_NWEPULSE_(3) | AT91_SMC_NCS_WRPULSE_(3) |
70 AT91_SMC_NRDPULSE_(3) | AT91_SMC_NCS_RDPULSE_(3));
71 at91_sys_write(AT91_SMC_CYCLE(3),
72 AT91_SMC_NWECYCLE_(5) | AT91_SMC_NRDCYCLE_(5));
73 at91_sys_write(AT91_SMC_MODE(3),
74 AT91_SMC_READMODE | AT91_SMC_WRITEMODE |
75 AT91_SMC_EXNWMODE_DISABLE |
76 #ifdef CONFIG_SYS_NAND_DBW_16
78 #else /* CONFIG_SYS_NAND_DBW_8 */
83 /* Configure RDY/BSY */
84 at91_set_gpio_input(AT91_PIN_PA16, 1);
86 /* Enable NandFlash */
87 at91_set_gpio_output(AT91_PIN_PC14, 1);
89 at91_set_A_periph(AT91_PIN_PC0, 0); /* NANDOE */
90 at91_set_A_periph(AT91_PIN_PC1, 0); /* NANDWE */
95 #ifdef CONFIG_DRIVER_DM9000
96 static void pm9261_dm9000_hw_init(void)
98 /* Configure SMC CS2 for DM9000 */
99 at91_sys_write(AT91_SMC_SETUP(2),
100 AT91_SMC_NWESETUP_(2) | AT91_SMC_NCS_WRSETUP_(0) |
101 AT91_SMC_NRDSETUP_(2) | AT91_SMC_NCS_RDSETUP_(0));
102 at91_sys_write(AT91_SMC_PULSE(2),
103 AT91_SMC_NWEPULSE_(4) | AT91_SMC_NCS_WRPULSE_(8) |
104 AT91_SMC_NRDPULSE_(4) | AT91_SMC_NCS_RDPULSE_(8));
105 at91_sys_write(AT91_SMC_CYCLE(2),
106 AT91_SMC_NWECYCLE_(16) | AT91_SMC_NRDCYCLE_(16));
107 at91_sys_write(AT91_SMC_MODE(2),
108 AT91_SMC_READMODE | AT91_SMC_WRITEMODE |
109 AT91_SMC_EXNWMODE_DISABLE |
110 AT91_SMC_BAT_WRITE | AT91_SMC_DBW_16 |
113 /* Configure Interrupt pin as input, no pull-up */
114 at91_set_gpio_input(AT91_PIN_PA24, 0);
119 vidinfo_t panel_info = {
123 vl_sync: ATMEL_LCDC_INVLINE_INVERTED |
124 ATMEL_LCDC_INVFRAME_INVERTED,
133 mmio: AT91SAM9261_LCDC_BASE,
136 void lcd_enable(void)
138 at91_set_gpio_value(AT91_PIN_PA22, 0); /* power up */
141 void lcd_disable(void)
143 at91_set_gpio_value(AT91_PIN_PA22, 1); /* power down */
146 static void pm9261_lcd_hw_init(void)
148 at91_set_A_periph(AT91_PIN_PB1, 0); /* LCDHSYNC */
149 at91_set_A_periph(AT91_PIN_PB2, 0); /* LCDDOTCK */
150 at91_set_A_periph(AT91_PIN_PB3, 0); /* LCDDEN */
151 at91_set_A_periph(AT91_PIN_PB4, 0); /* LCDCC */
152 at91_set_A_periph(AT91_PIN_PB7, 0); /* LCDD2 */
153 at91_set_A_periph(AT91_PIN_PB8, 0); /* LCDD3 */
154 at91_set_A_periph(AT91_PIN_PB9, 0); /* LCDD4 */
155 at91_set_A_periph(AT91_PIN_PB10, 0); /* LCDD5 */
156 at91_set_A_periph(AT91_PIN_PB11, 0); /* LCDD6 */
157 at91_set_A_periph(AT91_PIN_PB12, 0); /* LCDD7 */
158 at91_set_A_periph(AT91_PIN_PB15, 0); /* LCDD10 */
159 at91_set_A_periph(AT91_PIN_PB16, 0); /* LCDD11 */
160 at91_set_A_periph(AT91_PIN_PB17, 0); /* LCDD12 */
161 at91_set_A_periph(AT91_PIN_PB18, 0); /* LCDD13 */
162 at91_set_A_periph(AT91_PIN_PB19, 0); /* LCDD14 */
163 at91_set_A_periph(AT91_PIN_PB20, 0); /* LCDD15 */
164 at91_set_B_periph(AT91_PIN_PB23, 0); /* LCDD18 */
165 at91_set_B_periph(AT91_PIN_PB24, 0); /* LCDD19 */
166 at91_set_B_periph(AT91_PIN_PB25, 0); /* LCDD20 */
167 at91_set_B_periph(AT91_PIN_PB26, 0); /* LCDD21 */
168 at91_set_B_periph(AT91_PIN_PB27, 0); /* LCDD22 */
169 at91_set_B_periph(AT91_PIN_PB28, 0); /* LCDD23 */
171 at91_sys_write(AT91_PMC_SCER, AT91_PMC_HCK1);
173 gd->fb_base = AT91SAM9261_SRAM_BASE;
176 #ifdef CONFIG_LCD_INFO
180 extern flash_info_t flash_info[];
182 void lcd_show_board_info(void)
184 ulong dram_size, nand_size, flash_size, dataflash_size;
188 lcd_printf ("%s\n", U_BOOT_VERSION);
189 lcd_printf ("(C) 2009 Ronetix GmbH\n");
190 lcd_printf ("support@ronetix.at\n");
191 lcd_printf ("%s CPU at %s MHz",
193 strmhz(temp, get_cpu_clk_rate()));
196 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
197 dram_size += gd->bd->bi_dram[i].size;
200 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
201 nand_size += nand_info[i].size;
204 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++)
205 flash_size += flash_info[i].size;
208 for (i = 0; i < CONFIG_SYS_MAX_DATAFLASH_BANKS; i++)
209 dataflash_size += (unsigned int) dataflash_info[i].Device.pages_number *
210 dataflash_info[i].Device.pages_size;
212 lcd_printf ("%ld MB SDRAM, %ld MB NAND\n%ld MB NOR Flash\n"
213 "%ld MB DataFlash\n",
217 dataflash_size >> 20);
219 #endif /* CONFIG_LCD_INFO */
221 #endif /* CONFIG_LCD */
228 at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9261_ID_PIOA);
229 at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9261_ID_PIOC);
231 /* arch number of PM9261-Board */
232 gd->bd->bi_arch_number = MACH_TYPE_PM9261;
234 /* adress of boot parameters */
235 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
237 at91_serial_hw_init();
238 #ifdef CONFIG_CMD_NAND
239 pm9261_nand_hw_init();
241 #ifdef CONFIG_HAS_DATAFLASH
242 at91_spi0_hw_init(1 << 0);
244 #ifdef CONFIG_DRIVER_DM9000
245 pm9261_dm9000_hw_init();
248 pm9261_lcd_hw_init();
253 #ifdef CONFIG_DRIVER_DM9000
254 int board_eth_init(bd_t *bis)
256 return dm9000_initialize(bis);
262 gd->bd->bi_dram[0].start = PHYS_SDRAM;
263 gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
267 #ifdef CONFIG_RESET_PHY_R
270 #ifdef CONFIG_DRIVER_DM9000
272 * Initialize ethernet HW addr prior to starting Linux,
280 #ifdef CONFIG_DISPLAY_BOARDINFO
281 int checkboard (void)
285 printf ("Board : Ronetix PM9261\n");
286 printf ("Crystal frequency: %8s MHz\n",
287 strmhz(buf, get_main_clk_rate()));
288 printf ("CPU clock : %8s MHz\n",
289 strmhz(buf, get_cpu_clk_rate()));
290 printf ("Master clock : %8s MHz\n",
291 strmhz(buf, get_mck_clk_rate()));