2 * Board functions for mini-box PICOSAM9G45 (AT91SAM9G45) based board
3 * (C) Copyright 2015 Inter Act B.V.
6 * U-Boot file: board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c
7 * (C) Copyright 2007-2008
8 * Stelian Pop <stelian@popies.net>
9 * Lead Tech Design <www.leadtechdesign.com>
11 * SPDX-License-Identifier: GPL-2.0+
16 #include <asm/arch/clk.h>
17 #include <asm/arch/at91sam9g45_matrix.h>
18 #include <asm/arch/at91sam9_smc.h>
19 #include <asm/arch/at91_common.h>
20 #include <asm/arch/gpio.h>
21 #include <asm/arch/clk.h>
23 #include <linux/mtd/nand.h>
24 #include <atmel_lcdc.h>
25 #include <atmel_mci.h>
26 #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
31 DECLARE_GLOBAL_DATA_PTR;
33 /* ------------------------------------------------------------------------- */
35 * Miscelaneous platform dependent initialisations
38 #if defined(CONFIG_SPL_BUILD)
41 void at91_spl_board_init(void)
43 #ifdef CONFIG_SYS_USE_MMC
48 #include <asm/arch/atmel_mpddrc.h>
49 static void ddr2_conf(struct atmel_mpddrc_config *ddr2)
51 ddr2->md = (ATMEL_MPDDRC_MD_DBW_16_BITS | ATMEL_MPDDRC_MD_DDR2_SDRAM);
53 ddr2->cr = (ATMEL_MPDDRC_CR_NC_COL_10 |
54 ATMEL_MPDDRC_CR_NR_ROW_14 |
55 ATMEL_MPDDRC_CR_DQMS_SHARED |
56 ATMEL_MPDDRC_CR_CAS_DDR_CAS3);
60 ddr2->tpr0 = (6 << ATMEL_MPDDRC_TPR0_TRAS_OFFSET |/* 6*7.5 = 45 ns */
61 2 << ATMEL_MPDDRC_TPR0_TRCD_OFFSET |/* 2*7.5 = 15 ns */
62 2 << ATMEL_MPDDRC_TPR0_TWR_OFFSET | /* 2*7.5 = 15 ns */
63 8 << ATMEL_MPDDRC_TPR0_TRC_OFFSET | /* 8*7.5 = 60 ns */
64 2 << ATMEL_MPDDRC_TPR0_TRP_OFFSET | /* 2*7.5 = 15 ns */
65 1 << ATMEL_MPDDRC_TPR0_TRRD_OFFSET | /* 1*7.5= 7.5 ns*/
66 1 << ATMEL_MPDDRC_TPR0_TWTR_OFFSET | /* 1 clk cycle */
67 2 << ATMEL_MPDDRC_TPR0_TMRD_OFFSET); /* 2 clk cycles */
69 ddr2->tpr1 = (2 << ATMEL_MPDDRC_TPR1_TXP_OFFSET | /* 2*7.5 = 15 ns */
70 200 << ATMEL_MPDDRC_TPR1_TXSRD_OFFSET |
71 16 << ATMEL_MPDDRC_TPR1_TXSNR_OFFSET |
72 14 << ATMEL_MPDDRC_TPR1_TRFC_OFFSET);
74 ddr2->tpr2 = (1 << ATMEL_MPDDRC_TPR2_TRTP_OFFSET |
75 0 << ATMEL_MPDDRC_TPR2_TRPA_OFFSET |
76 7 << ATMEL_MPDDRC_TPR2_TXARDS_OFFSET |
77 2 << ATMEL_MPDDRC_TPR2_TXARD_OFFSET);
82 struct at91_matrix *mat = (struct at91_matrix *)ATMEL_BASE_MATRIX;
83 struct atmel_mpddrc_config ddr2;
88 at91_system_clk_enable(AT91_PMC_DDR);
90 /* Chip select 1 is for DDR2/SDRAM */
91 csa = readl(&mat->ebicsa);
92 csa |= AT91_MATRIX_EBI_CS1A_SDRAMC;
93 csa &= ~AT91_MATRIX_EBI_VDDIOMSEL_3_3V;
94 writel(csa, &mat->ebicsa);
96 /* DDRAM2 Controller initialize */
97 ddr2_init(ATMEL_BASE_DDRSDRC0, ATMEL_BASE_CS6, &ddr2);
98 ddr2_init(ATMEL_BASE_DDRSDRC1, ATMEL_BASE_CS1, &ddr2);
102 #ifdef CONFIG_CMD_USB
103 static void picosam9g45_usb_hw_init(void)
105 at91_periph_clk_enable(ATMEL_ID_PIODE);
107 at91_set_gpio_output(AT91_PIN_PD1, 0);
108 at91_set_gpio_output(AT91_PIN_PD3, 0);
113 static void picosam9g45_macb_hw_init(void)
115 struct at91_port *pioa = (struct at91_port *)ATMEL_BASE_PIOA;
117 at91_periph_clk_enable(ATMEL_ID_EMAC);
120 * Disable pull-up on:
121 * RXDV (PA15) => PHY normal mode (not Test mode)
122 * ERX0 (PA12) => PHY ADDR0
123 * ERX1 (PA13) => PHY ADDR1 => PHYADDR = 0x0
125 * PHY has internal pull-down
127 writel(pin_to_mask(AT91_PIN_PA15) |
128 pin_to_mask(AT91_PIN_PA12) |
129 pin_to_mask(AT91_PIN_PA13),
134 /* Re-enable pull-up */
135 writel(pin_to_mask(AT91_PIN_PA15) |
136 pin_to_mask(AT91_PIN_PA12) |
137 pin_to_mask(AT91_PIN_PA13),
147 vidinfo_t panel_info = {
151 .vl_sync = ATMEL_LCDC_INVLINE_NORMAL |
152 ATMEL_LCDC_INVFRAME_NORMAL,
157 .vl_right_margin = 1,
159 .vl_upper_margin = 40,
160 .vl_lower_margin = 1,
161 .mmio = ATMEL_BASE_LCDC,
165 void lcd_enable(void)
167 at91_set_A_periph(AT91_PIN_PE6, 1); /* power up */
170 void lcd_disable(void)
172 at91_set_A_periph(AT91_PIN_PE6, 0); /* power down */
175 static void picosam9g45_lcd_hw_init(void)
177 at91_set_A_periph(AT91_PIN_PE0, 0); /* LCDDPWR */
178 at91_set_A_periph(AT91_PIN_PE2, 0); /* LCDCC */
179 at91_set_A_periph(AT91_PIN_PE3, 0); /* LCDVSYNC */
180 at91_set_A_periph(AT91_PIN_PE4, 0); /* LCDHSYNC */
181 at91_set_A_periph(AT91_PIN_PE5, 0); /* LCDDOTCK */
183 at91_set_A_periph(AT91_PIN_PE7, 0); /* LCDD0 */
184 at91_set_A_periph(AT91_PIN_PE8, 0); /* LCDD1 */
185 at91_set_A_periph(AT91_PIN_PE9, 0); /* LCDD2 */
186 at91_set_A_periph(AT91_PIN_PE10, 0); /* LCDD3 */
187 at91_set_A_periph(AT91_PIN_PE11, 0); /* LCDD4 */
188 at91_set_A_periph(AT91_PIN_PE12, 0); /* LCDD5 */
189 at91_set_A_periph(AT91_PIN_PE13, 0); /* LCDD6 */
190 at91_set_A_periph(AT91_PIN_PE14, 0); /* LCDD7 */
191 at91_set_A_periph(AT91_PIN_PE15, 0); /* LCDD8 */
192 at91_set_A_periph(AT91_PIN_PE16, 0); /* LCDD9 */
193 at91_set_A_periph(AT91_PIN_PE17, 0); /* LCDD10 */
194 at91_set_A_periph(AT91_PIN_PE18, 0); /* LCDD11 */
195 at91_set_A_periph(AT91_PIN_PE19, 0); /* LCDD12 */
196 at91_set_B_periph(AT91_PIN_PE20, 0); /* LCDD13 */
197 at91_set_A_periph(AT91_PIN_PE21, 0); /* LCDD14 */
198 at91_set_A_periph(AT91_PIN_PE22, 0); /* LCDD15 */
199 at91_set_A_periph(AT91_PIN_PE23, 0); /* LCDD16 */
200 at91_set_A_periph(AT91_PIN_PE24, 0); /* LCDD17 */
201 at91_set_A_periph(AT91_PIN_PE25, 0); /* LCDD18 */
202 at91_set_A_periph(AT91_PIN_PE26, 0); /* LCDD19 */
203 at91_set_A_periph(AT91_PIN_PE27, 0); /* LCDD20 */
204 at91_set_B_periph(AT91_PIN_PE28, 0); /* LCDD21 */
205 at91_set_A_periph(AT91_PIN_PE29, 0); /* LCDD22 */
206 at91_set_A_periph(AT91_PIN_PE30, 0); /* LCDD23 */
208 at91_periph_clk_enable(ATMEL_ID_LCDC);
210 gd->fb_base = CONFIG_AT91SAM9G45_LCD_BASE;
213 #ifdef CONFIG_LCD_INFO
217 void lcd_show_board_info(void)
223 lcd_printf("%s\n", U_BOOT_VERSION);
224 lcd_printf("(C) 2015 Inter Act B.V.\n");
225 lcd_printf("support@interact.nl\n");
226 lcd_printf("%s CPU at %s MHz\n",
228 strmhz(temp, get_cpu_clk_rate()));
231 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
232 dram_size += gd->bd->bi_dram[i].size;
233 lcd_printf(" %ld MB SDRAM\n", dram_size >> 20);
235 #endif /* CONFIG_LCD_INFO */
238 #ifdef CONFIG_GENERIC_ATMEL_MCI
239 int board_mmc_init(bd_t *bis)
243 return atmel_mci_init((void *)ATMEL_BASE_MCI0);
247 int board_early_init_f(void)
249 at91_seriald_hw_init();
255 gd->bd->bi_arch_number = MACH_TYPE_PICOSAM9G45;
257 /* adress of boot parameters */
258 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
260 #ifdef CONFIG_CMD_USB
261 picosam9g45_usb_hw_init();
263 #ifdef CONFIG_HAS_DATAFLASH
264 at91_spi0_hw_init(1 << 0);
266 #ifdef CONFIG_ATMEL_SPI
267 at91_spi0_hw_init(1 << 4);
270 picosam9g45_macb_hw_init();
273 picosam9g45_lcd_hw_init();
280 gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE)
281 + get_ram_size((long *)PHYS_SDRAM_2, PHYS_SDRAM_2_SIZE);
286 int dram_init_banksize(void)
288 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
289 gd->bd->bi_dram[0].size = get_ram_size((long *)PHYS_SDRAM_1,
291 gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
292 gd->bd->bi_dram[1].size = get_ram_size((long *)PHYS_SDRAM_2,
298 #ifdef CONFIG_RESET_PHY_R
304 int board_eth_init(bd_t *bis)
308 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x00);
313 /* SPI chip select control */
314 #ifdef CONFIG_ATMEL_SPI
317 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
319 return bus == 0 && cs < 2;
322 void spi_cs_activate(struct spi_slave *slave)
326 at91_set_gpio_output(AT91_PIN_PB18, 0);
330 at91_set_gpio_output(AT91_PIN_PB3, 0);
335 void spi_cs_deactivate(struct spi_slave *slave)
339 at91_set_gpio_output(AT91_PIN_PB18, 1);
343 at91_set_gpio_output(AT91_PIN_PB3, 1);
347 #endif /* CONFIG_ATMEL_SPI */