2 * (C) Copyright 2007-2008
3 * Stelian Pop <stelian@popies.net>
4 * Lead Tech Design <www.leadtechdesign.com>
6 * SPDX-License-Identifier: GPL-2.0+
11 #include <asm/arch/clk.h>
12 #include <asm/arch/at91sam9g45_matrix.h>
13 #include <asm/arch/at91sam9_smc.h>
14 #include <asm/arch/at91_common.h>
15 #include <asm/arch/gpio.h>
16 #include <asm/arch/clk.h>
18 #include <linux/mtd/nand.h>
19 #include <atmel_lcdc.h>
20 #include <atmel_mci.h>
21 #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
26 DECLARE_GLOBAL_DATA_PTR;
28 /* ------------------------------------------------------------------------- */
30 * Miscelaneous platform dependent initialisations
33 #ifdef CONFIG_CMD_NAND
34 void at91sam9m10g45ek_nand_hw_init(void)
36 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
37 struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
41 csa = readl(&matrix->ebicsa);
42 csa |= AT91_MATRIX_EBI_CS3A_SMC_SMARTMEDIA;
43 writel(csa, &matrix->ebicsa);
45 /* Configure SMC CS3 for NAND/SmartMedia */
46 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
47 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
49 writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(3) |
50 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(2),
52 writel(AT91_SMC_CYCLE_NWE(7) | AT91_SMC_CYCLE_NRD(4),
54 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
55 AT91_SMC_MODE_EXNW_DISABLE |
56 #ifdef CONFIG_SYS_NAND_DBW_16
57 AT91_SMC_MODE_DBW_16 |
58 #else /* CONFIG_SYS_NAND_DBW_8 */
61 AT91_SMC_MODE_TDF_CYCLE(3),
64 at91_periph_clk_enable(ATMEL_ID_PIOC);
66 /* Configure RDY/BSY */
67 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
69 /* Enable NandFlash */
70 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
74 #if defined(CONFIG_SPL_BUILD)
78 void at91_spl_board_init(void)
81 * On the at91sam9m10g45ek board, the chip wm9711 stays in the
82 * test mode, so it needs do some action to exit test mode.
84 at91_periph_clk_enable(ATMEL_ID_PIODE);
85 at91_set_gpio_output(AT91_PIN_PD7, 0);
86 at91_set_gpio_output(AT91_PIN_PD8, 0);
87 at91_set_pio_pullup(AT91_PIO_PORTD, 7, 1);
88 at91_set_pio_pullup(AT91_PIO_PORTD, 8, 1);
90 #ifdef CONFIG_SYS_USE_MMC
92 #elif CONFIG_SYS_USE_NANDFLASH
93 at91sam9m10g45ek_nand_hw_init();
97 #include <asm/arch/atmel_mpddrc.h>
98 static void ddr2_conf(struct atmel_mpddrc_config *ddr2)
100 ddr2->md = (ATMEL_MPDDRC_MD_DBW_16_BITS | ATMEL_MPDDRC_MD_DDR2_SDRAM);
102 ddr2->cr = (ATMEL_MPDDRC_CR_NC_COL_10 |
103 ATMEL_MPDDRC_CR_NR_ROW_14 |
104 ATMEL_MPDDRC_CR_DQMS_SHARED |
105 ATMEL_MPDDRC_CR_CAS_DDR_CAS3);
109 ddr2->tpr0 = (6 << ATMEL_MPDDRC_TPR0_TRAS_OFFSET |/* 6*7.5 = 45 ns */
110 2 << ATMEL_MPDDRC_TPR0_TRCD_OFFSET |/* 2*7.5 = 15 ns */
111 2 << ATMEL_MPDDRC_TPR0_TWR_OFFSET | /* 2*7.5 = 15 ns */
112 8 << ATMEL_MPDDRC_TPR0_TRC_OFFSET | /* 8*7.5 = 60 ns */
113 2 << ATMEL_MPDDRC_TPR0_TRP_OFFSET | /* 2*7.5 = 15 ns */
114 1 << ATMEL_MPDDRC_TPR0_TRRD_OFFSET | /* 1*7.5= 7.5 ns*/
115 1 << ATMEL_MPDDRC_TPR0_TWTR_OFFSET | /* 1 clk cycle */
116 2 << ATMEL_MPDDRC_TPR0_TMRD_OFFSET); /* 2 clk cycles */
118 ddr2->tpr1 = (2 << ATMEL_MPDDRC_TPR1_TXP_OFFSET | /* 2*7.5 = 15 ns */
119 200 << ATMEL_MPDDRC_TPR1_TXSRD_OFFSET |
120 16 << ATMEL_MPDDRC_TPR1_TXSNR_OFFSET |
121 14 << ATMEL_MPDDRC_TPR1_TRFC_OFFSET);
123 ddr2->tpr2 = (1 << ATMEL_MPDDRC_TPR2_TRTP_OFFSET |
124 0 << ATMEL_MPDDRC_TPR2_TRPA_OFFSET |
125 7 << ATMEL_MPDDRC_TPR2_TXARDS_OFFSET |
126 2 << ATMEL_MPDDRC_TPR2_TXARD_OFFSET);
131 struct atmel_mpddrc_config ddr2;
135 at91_system_clk_enable(AT91_PMC_DDR);
137 /* DDRAM2 Controller initialize */
138 ddr2_init(ATMEL_BASE_DDRSDRC0, ATMEL_BASE_CS6, &ddr2);
142 #ifdef CONFIG_CMD_USB
143 static void at91sam9m10g45ek_usb_hw_init(void)
145 at91_periph_clk_enable(ATMEL_ID_PIODE);
147 at91_set_gpio_output(AT91_PIN_PD1, 0);
148 at91_set_gpio_output(AT91_PIN_PD3, 0);
153 static void at91sam9m10g45ek_macb_hw_init(void)
155 struct at91_port *pioa = (struct at91_port *)ATMEL_BASE_PIOA;
157 at91_periph_clk_enable(ATMEL_ID_EMAC);
160 * Disable pull-up on:
161 * RXDV (PA15) => PHY normal mode (not Test mode)
162 * ERX0 (PA12) => PHY ADDR0
163 * ERX1 (PA13) => PHY ADDR1 => PHYADDR = 0x0
165 * PHY has internal pull-down
167 writel(pin_to_mask(AT91_PIN_PA15) |
168 pin_to_mask(AT91_PIN_PA12) |
169 pin_to_mask(AT91_PIN_PA13),
174 /* Re-enable pull-up */
175 writel(pin_to_mask(AT91_PIN_PA15) |
176 pin_to_mask(AT91_PIN_PA12) |
177 pin_to_mask(AT91_PIN_PA13),
187 vidinfo_t panel_info = {
191 .vl_sync = ATMEL_LCDC_INVLINE_NORMAL |
192 ATMEL_LCDC_INVFRAME_NORMAL,
197 .vl_right_margin = 1,
199 .vl_upper_margin = 40,
200 .vl_lower_margin = 1,
201 .mmio = ATMEL_BASE_LCDC,
205 void lcd_enable(void)
207 at91_set_A_periph(AT91_PIN_PE6, 1); /* power up */
210 void lcd_disable(void)
212 at91_set_A_periph(AT91_PIN_PE6, 0); /* power down */
215 static void at91sam9m10g45ek_lcd_hw_init(void)
217 at91_set_A_periph(AT91_PIN_PE0, 0); /* LCDDPWR */
218 at91_set_A_periph(AT91_PIN_PE2, 0); /* LCDCC */
219 at91_set_A_periph(AT91_PIN_PE3, 0); /* LCDVSYNC */
220 at91_set_A_periph(AT91_PIN_PE4, 0); /* LCDHSYNC */
221 at91_set_A_periph(AT91_PIN_PE5, 0); /* LCDDOTCK */
223 at91_set_A_periph(AT91_PIN_PE7, 0); /* LCDD0 */
224 at91_set_A_periph(AT91_PIN_PE8, 0); /* LCDD1 */
225 at91_set_A_periph(AT91_PIN_PE9, 0); /* LCDD2 */
226 at91_set_A_periph(AT91_PIN_PE10, 0); /* LCDD3 */
227 at91_set_A_periph(AT91_PIN_PE11, 0); /* LCDD4 */
228 at91_set_A_periph(AT91_PIN_PE12, 0); /* LCDD5 */
229 at91_set_A_periph(AT91_PIN_PE13, 0); /* LCDD6 */
230 at91_set_A_periph(AT91_PIN_PE14, 0); /* LCDD7 */
231 at91_set_A_periph(AT91_PIN_PE15, 0); /* LCDD8 */
232 at91_set_A_periph(AT91_PIN_PE16, 0); /* LCDD9 */
233 at91_set_A_periph(AT91_PIN_PE17, 0); /* LCDD10 */
234 at91_set_A_periph(AT91_PIN_PE18, 0); /* LCDD11 */
235 at91_set_A_periph(AT91_PIN_PE19, 0); /* LCDD12 */
236 at91_set_B_periph(AT91_PIN_PE20, 0); /* LCDD13 */
237 at91_set_A_periph(AT91_PIN_PE21, 0); /* LCDD14 */
238 at91_set_A_periph(AT91_PIN_PE22, 0); /* LCDD15 */
239 at91_set_A_periph(AT91_PIN_PE23, 0); /* LCDD16 */
240 at91_set_A_periph(AT91_PIN_PE24, 0); /* LCDD17 */
241 at91_set_A_periph(AT91_PIN_PE25, 0); /* LCDD18 */
242 at91_set_A_periph(AT91_PIN_PE26, 0); /* LCDD19 */
243 at91_set_A_periph(AT91_PIN_PE27, 0); /* LCDD20 */
244 at91_set_B_periph(AT91_PIN_PE28, 0); /* LCDD21 */
245 at91_set_A_periph(AT91_PIN_PE29, 0); /* LCDD22 */
246 at91_set_A_periph(AT91_PIN_PE30, 0); /* LCDD23 */
248 at91_periph_clk_enable(ATMEL_ID_LCDC);
250 gd->fb_base = CONFIG_AT91SAM9G45_LCD_BASE;
253 #ifdef CONFIG_LCD_INFO
257 void lcd_show_board_info(void)
259 ulong dram_size, nand_size;
263 lcd_printf ("%s\n", U_BOOT_VERSION);
264 lcd_printf ("(C) 2008 ATMEL Corp\n");
265 lcd_printf ("at91support@atmel.com\n");
266 lcd_printf ("%s CPU at %s MHz\n",
268 strmhz(temp, get_cpu_clk_rate()));
271 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
272 dram_size += gd->bd->bi_dram[i].size;
274 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
275 nand_size += nand_info[i]->size;
276 lcd_printf (" %ld MB SDRAM, %ld MB NAND\n",
280 #endif /* CONFIG_LCD_INFO */
283 #ifdef CONFIG_GENERIC_ATMEL_MCI
284 int board_mmc_init(bd_t *bis)
288 return atmel_mci_init((void *)ATMEL_BASE_MCI0);
292 int board_early_init_f(void)
294 at91_seriald_hw_init();
300 /* arch number of AT91SAM9M10G45EK-Board */
301 #ifdef CONFIG_AT91SAM9M10G45EK
302 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9M10G45EK;
303 #elif defined CONFIG_AT91SAM9G45EKES
304 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9G45EKES;
307 /* adress of boot parameters */
308 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
310 #ifdef CONFIG_CMD_NAND
311 at91sam9m10g45ek_nand_hw_init();
313 #ifdef CONFIG_CMD_USB
314 at91sam9m10g45ek_usb_hw_init();
316 #ifdef CONFIG_HAS_DATAFLASH
317 at91_spi0_hw_init(1 << 0);
319 #ifdef CONFIG_ATMEL_SPI
320 at91_spi0_hw_init(1 << 4);
323 at91sam9m10g45ek_macb_hw_init();
326 at91sam9m10g45ek_lcd_hw_init();
333 gd->ram_size = get_ram_size((void *) CONFIG_SYS_SDRAM_BASE,
334 CONFIG_SYS_SDRAM_SIZE);
338 #ifdef CONFIG_RESET_PHY_R
344 int board_eth_init(bd_t *bis)
348 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x00);
353 /* SPI chip select control */
354 #ifdef CONFIG_ATMEL_SPI
357 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
359 return bus == 0 && cs < 2;
362 void spi_cs_activate(struct spi_slave *slave)
366 at91_set_gpio_output(AT91_PIN_PB18, 0);
370 at91_set_gpio_output(AT91_PIN_PB3, 0);
375 void spi_cs_deactivate(struct spi_slave *slave)
379 at91_set_gpio_output(AT91_PIN_PB18, 1);
383 at91_set_gpio_output(AT91_PIN_PB3, 1);
387 #endif /* CONFIG_ATMEL_SPI */