2 * Copyright (C) 2012 - 2013 Atmel Corporation
3 * Bo Shen <voice.shen@atmel.com>
5 * SPDX-License-Identifier: GPL-2.0+
11 #include <asm/arch/sama5d3_smc.h>
12 #include <asm/arch/at91_common.h>
13 #include <asm/arch/at91_pmc.h>
14 #include <asm/arch/at91_rstc.h>
15 #include <asm/arch/gpio.h>
16 #include <asm/arch/clk.h>
18 #include <atmel_lcdc.h>
19 #include <atmel_mci.h>
24 #include <asm/arch/atmel_mpddrc.h>
25 #include <asm/arch/at91_wdt.h>
27 #ifdef CONFIG_USB_GADGET_ATMEL_USBA
28 #include <asm/arch/atmel_usba_udc.h>
31 DECLARE_GLOBAL_DATA_PTR
;
33 /* ------------------------------------------------------------------------- */
35 * Miscelaneous platform dependent initialisations
38 #ifdef CONFIG_NAND_ATMEL
39 void sama5d3xek_nand_hw_init(void)
41 struct at91_smc
*smc
= (struct at91_smc
*)ATMEL_BASE_SMC
;
43 at91_periph_clk_enable(ATMEL_ID_SMC
);
45 /* Configure SMC CS3 for NAND/SmartMedia */
46 writel(AT91_SMC_SETUP_NWE(2) | AT91_SMC_SETUP_NCS_WR(1) |
47 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(1),
49 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(5) |
50 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(5),
52 writel(AT91_SMC_CYCLE_NWE(8) | AT91_SMC_CYCLE_NRD(8),
54 writel(AT91_SMC_TIMINGS_TCLR(3) | AT91_SMC_TIMINGS_TADL(10) |
55 AT91_SMC_TIMINGS_TAR(3) | AT91_SMC_TIMINGS_TRR(4) |
56 AT91_SMC_TIMINGS_TWB(5) | AT91_SMC_TIMINGS_RBNSEL(3)|
57 AT91_SMC_TIMINGS_NFSEL(1), &smc
->cs
[3].timings
);
58 writel(AT91_SMC_MODE_RM_NRD
| AT91_SMC_MODE_WM_NWE
|
59 AT91_SMC_MODE_EXNW_DISABLE
|
60 #ifdef CONFIG_SYS_NAND_DBW_16
61 AT91_SMC_MODE_DBW_16
|
62 #else /* CONFIG_SYS_NAND_DBW_8 */
65 AT91_SMC_MODE_TDF_CYCLE(3),
71 static void sama5d3xek_usb_hw_init(void)
73 at91_set_pio_output(AT91_PIO_PORTD
, 25, 0);
74 at91_set_pio_output(AT91_PIO_PORTD
, 26, 0);
75 at91_set_pio_output(AT91_PIO_PORTD
, 27, 0);
79 #ifdef CONFIG_GENERIC_ATMEL_MCI
80 static void sama5d3xek_mci_hw_init(void)
84 at91_set_pio_output(AT91_PIO_PORTB
, 10, 0); /* MCI0 Power */
89 vidinfo_t panel_info
= {
93 .vl_sync
= ATMEL_LCDC_INVLINE_NORMAL
| ATMEL_LCDC_INVFRAME_NORMAL
,
98 .vl_right_margin
= 64,
100 .vl_upper_margin
= 22,
101 .vl_lower_margin
= 21,
102 .mmio
= ATMEL_BASE_LCDC
,
105 void lcd_enable(void)
109 void lcd_disable(void)
113 static void sama5d3xek_lcd_hw_init(void)
115 gd
->fb_base
= CONFIG_SAMA5D3_LCD_BASE
;
117 /* The higher 8 bit of LCD is board related */
118 at91_set_c_periph(AT91_PIO_PORTC
, 14, 0); /* LCDD16 */
119 at91_set_c_periph(AT91_PIO_PORTC
, 13, 0); /* LCDD17 */
120 at91_set_c_periph(AT91_PIO_PORTC
, 12, 0); /* LCDD18 */
121 at91_set_c_periph(AT91_PIO_PORTC
, 11, 0); /* LCDD19 */
122 at91_set_c_periph(AT91_PIO_PORTC
, 10, 0); /* LCDD20 */
123 at91_set_c_periph(AT91_PIO_PORTC
, 15, 0); /* LCDD21 */
124 at91_set_c_periph(AT91_PIO_PORTE
, 27, 0); /* LCDD22 */
125 at91_set_c_periph(AT91_PIO_PORTE
, 28, 0); /* LCDD23 */
127 /* Configure lower 16 bit of LCD and enable clock */
131 #ifdef CONFIG_LCD_INFO
135 void lcd_show_board_info(void)
142 lcd_printf("%s\n", U_BOOT_VERSION
);
143 lcd_printf("(C) 2013 ATMEL Corp\n");
144 lcd_printf("at91@atmel.com\n");
145 lcd_printf("%s CPU at %s MHz\n", get_cpu_name(),
146 strmhz(temp
, get_cpu_clk_rate()));
149 for (i
= 0; i
< CONFIG_NR_DRAM_BANKS
; i
++)
150 dram_size
+= gd
->bd
->bi_dram
[i
].size
;
153 #ifdef CONFIG_NAND_ATMEL
154 for (i
= 0; i
< CONFIG_SYS_MAX_NAND_DEVICE
; i
++)
155 nand_size
+= nand_info
[i
].size
;
157 lcd_printf("%ld MB SDRAM, %lld MB NAND\n",
158 dram_size
>> 20, nand_size
>> 20);
160 #endif /* CONFIG_LCD_INFO */
161 #endif /* CONFIG_LCD */
163 int board_early_init_f(void)
165 at91_periph_clk_enable(ATMEL_ID_PIOA
);
166 at91_periph_clk_enable(ATMEL_ID_PIOB
);
167 at91_periph_clk_enable(ATMEL_ID_PIOC
);
168 at91_periph_clk_enable(ATMEL_ID_PIOD
);
169 at91_periph_clk_enable(ATMEL_ID_PIOE
);
171 at91_seriald_hw_init();
178 /* adress of boot parameters */
179 gd
->bd
->bi_boot_params
= CONFIG_SYS_SDRAM_BASE
+ 0x100;
181 #ifdef CONFIG_NAND_ATMEL
182 sama5d3xek_nand_hw_init();
184 #ifdef CONFIG_CMD_USB
185 sama5d3xek_usb_hw_init();
187 #ifdef CONFIG_USB_GADGET_ATMEL_USBA
190 #ifdef CONFIG_GENERIC_ATMEL_MCI
191 sama5d3xek_mci_hw_init();
193 #ifdef CONFIG_ATMEL_SPI
194 at91_spi0_hw_init(1 << 0);
204 sama5d3xek_lcd_hw_init();
211 gd
->ram_size
= get_ram_size((void *)CONFIG_SYS_SDRAM_BASE
,
212 CONFIG_SYS_SDRAM_SIZE
);
216 int board_phy_config(struct phy_device
*phydev
)
219 ksz9021_phy_extended_write(phydev
,
220 MII_KSZ9021_EXT_RGMII_RX_DATA_SKEW
, 0x2222);
222 ksz9021_phy_extended_write(phydev
,
223 MII_KSZ9021_EXT_RGMII_TX_DATA_SKEW
, 0x2222);
224 /* rx/tx clock delay */
225 ksz9021_phy_extended_write(phydev
,
226 MII_KSZ9021_EXT_RGMII_CLOCK_SKEW
, 0xf2f4);
231 int board_eth_init(bd_t
*bis
)
237 rc
= macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC
, 0x00);
239 rc
= macb_eth_initialize(0, (void *)ATMEL_BASE_GMAC
, 0x00);
241 #ifdef CONFIG_USB_GADGET_ATMEL_USBA
242 usba_udc_probe(&pdata
);
243 #ifdef CONFIG_USB_ETH_RNDIS
244 usb_eth_initialize(bis
);
251 #ifdef CONFIG_GENERIC_ATMEL_MCI
252 int board_mmc_init(bd_t
*bis
)
256 rc
= atmel_mci_init((void *)ATMEL_BASE_MCI0
);
262 /* SPI chip select control */
263 #ifdef CONFIG_ATMEL_SPI
266 int spi_cs_is_valid(unsigned int bus
, unsigned int cs
)
268 return bus
== 0 && cs
< 4;
271 void spi_cs_activate(struct spi_slave
*slave
)
275 at91_set_pio_output(AT91_PIO_PORTD
, 13, 0);
277 at91_set_pio_output(AT91_PIO_PORTD
, 14, 0);
279 at91_set_pio_output(AT91_PIO_PORTD
, 15, 0);
281 at91_set_pio_output(AT91_PIO_PORTD
, 16, 0);
287 void spi_cs_deactivate(struct spi_slave
*slave
)
291 at91_set_pio_output(AT91_PIO_PORTD
, 13, 1);
293 at91_set_pio_output(AT91_PIO_PORTD
, 14, 1);
295 at91_set_pio_output(AT91_PIO_PORTD
, 15, 1);
297 at91_set_pio_output(AT91_PIO_PORTD
, 16, 1);
302 #endif /* CONFIG_ATMEL_SPI */
305 #ifdef CONFIG_SPL_BUILD
306 void spl_board_init(void)
308 #ifdef CONFIG_SYS_USE_MMC
309 sama5d3xek_mci_hw_init();
310 #elif CONFIG_SYS_USE_NANDFLASH
311 sama5d3xek_nand_hw_init();
312 #elif CONFIG_SYS_USE_SERIALFLASH
313 at91_spi0_hw_init(1 << 0);
317 static void ddr2_conf(struct atmel_mpddr
*ddr2
)
319 ddr2
->md
= (ATMEL_MPDDRC_MD_DBW_32_BITS
| ATMEL_MPDDRC_MD_DDR2_SDRAM
);
321 ddr2
->cr
= (ATMEL_MPDDRC_CR_NC_COL_10
|
322 ATMEL_MPDDRC_CR_NR_ROW_14
|
323 ATMEL_MPDDRC_CR_CAS_DDR_CAS3
|
324 ATMEL_MPDDRC_CR_ENRDM_ON
|
325 ATMEL_MPDDRC_CR_NB_8BANKS
|
326 ATMEL_MPDDRC_CR_NDQS_DISABLED
|
327 ATMEL_MPDDRC_CR_DECOD_INTERLEAVED
|
328 ATMEL_MPDDRC_CR_UNAL_SUPPORTED
);
330 * As the DDR2-SDRAm device requires a refresh time is 7.8125us
331 * when DDR run at 133MHz, so it needs (7.8125us * 133MHz / 10^9) clocks
335 ddr2
->tpr0
= (6 << ATMEL_MPDDRC_TPR0_TRAS_OFFSET
|
336 2 << ATMEL_MPDDRC_TPR0_TRCD_OFFSET
|
337 2 << ATMEL_MPDDRC_TPR0_TWR_OFFSET
|
338 8 << ATMEL_MPDDRC_TPR0_TRC_OFFSET
|
339 2 << ATMEL_MPDDRC_TPR0_TRP_OFFSET
|
340 2 << ATMEL_MPDDRC_TPR0_TRRD_OFFSET
|
341 2 << ATMEL_MPDDRC_TPR0_TWTR_OFFSET
|
342 2 << ATMEL_MPDDRC_TPR0_TMRD_OFFSET
);
344 ddr2
->tpr1
= (2 << ATMEL_MPDDRC_TPR1_TXP_OFFSET
|
345 200 << ATMEL_MPDDRC_TPR1_TXSRD_OFFSET
|
346 28 << ATMEL_MPDDRC_TPR1_TXSNR_OFFSET
|
347 26 << ATMEL_MPDDRC_TPR1_TRFC_OFFSET
);
349 ddr2
->tpr2
= (7 << ATMEL_MPDDRC_TPR2_TFAW_OFFSET
|
350 2 << ATMEL_MPDDRC_TPR2_TRTP_OFFSET
|
351 2 << ATMEL_MPDDRC_TPR2_TRPA_OFFSET
|
352 7 << ATMEL_MPDDRC_TPR2_TXARDS_OFFSET
|
353 8 << ATMEL_MPDDRC_TPR2_TXARD_OFFSET
);
358 struct at91_pmc
*pmc
= (struct at91_pmc
*)ATMEL_BASE_PMC
;
359 struct atmel_mpddr ddr2
;
363 /* enable MPDDR clock */
364 at91_periph_clk_enable(ATMEL_ID_MPDDRC
);
365 writel(0x4, &pmc
->scer
);
367 /* DDRAM2 Controller initialize */
368 ddr2_init(ATMEL_BASE_DDRCS
, &ddr2
);
371 void at91_pmc_init(void)
373 struct at91_pmc
*pmc
= (struct at91_pmc
*)ATMEL_BASE_PMC
;
376 tmp
= AT91_PMC_PLLAR_29
|
377 AT91_PMC_PLLXR_PLLCOUNT(0x3f) |
378 AT91_PMC_PLLXR_MUL(43) |
379 AT91_PMC_PLLXR_DIV(1);
382 writel(0x3 << 8, &pmc
->pllicpr
);
384 tmp
= AT91_PMC_MCKR_MDIV_4
|
385 AT91_PMC_MCKR_CSS_PLLA
;