]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/atmel/sama5d3xek/sama5d3xek.c
ARM: atmel: sama5d4xek: fix the LCD parameters
[people/ms/u-boot.git] / board / atmel / sama5d3xek / sama5d3xek.c
CommitLineData
3225f34e
BS
1/*
2 * Copyright (C) 2012 - 2013 Atmel Corporation
3 * Bo Shen <voice.shen@atmel.com>
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
3225f34e
BS
6 */
7
8#include <common.h>
9#include <mmc.h>
10#include <asm/io.h>
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>
17#include <lcd.h>
18#include <atmel_lcdc.h>
19#include <atmel_mci.h>
b719a088 20#include <phy.h>
e08d6f3a 21#include <micrel.h>
3225f34e
BS
22#include <net.h>
23#include <netdev.h>
c5e8885a
BS
24#include <spl.h>
25#include <asm/arch/atmel_mpddrc.h>
26#include <asm/arch/at91_wdt.h>
3225f34e 27
3668ce3c
BS
28#ifdef CONFIG_USB_GADGET_ATMEL_USBA
29#include <asm/arch/atmel_usba_udc.h>
30#endif
31
3225f34e
BS
32DECLARE_GLOBAL_DATA_PTR;
33
34/* ------------------------------------------------------------------------- */
35/*
36 * Miscelaneous platform dependent initialisations
37 */
38
39#ifdef CONFIG_NAND_ATMEL
40void sama5d3xek_nand_hw_init(void)
41{
42 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
43
44 at91_periph_clk_enable(ATMEL_ID_SMC);
45
46 /* Configure SMC CS3 for NAND/SmartMedia */
47 writel(AT91_SMC_SETUP_NWE(2) | AT91_SMC_SETUP_NCS_WR(1) |
48 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(1),
49 &smc->cs[3].setup);
50 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(5) |
51 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(5),
52 &smc->cs[3].pulse);
53 writel(AT91_SMC_CYCLE_NWE(8) | AT91_SMC_CYCLE_NRD(8),
54 &smc->cs[3].cycle);
55 writel(AT91_SMC_TIMINGS_TCLR(3) | AT91_SMC_TIMINGS_TADL(10) |
56 AT91_SMC_TIMINGS_TAR(3) | AT91_SMC_TIMINGS_TRR(4) |
57 AT91_SMC_TIMINGS_TWB(5) | AT91_SMC_TIMINGS_RBNSEL(3)|
58 AT91_SMC_TIMINGS_NFSEL(1), &smc->cs[3].timings);
59 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
60 AT91_SMC_MODE_EXNW_DISABLE |
61#ifdef CONFIG_SYS_NAND_DBW_16
62 AT91_SMC_MODE_DBW_16 |
63#else /* CONFIG_SYS_NAND_DBW_8 */
64 AT91_SMC_MODE_DBW_8 |
65#endif
66 AT91_SMC_MODE_TDF_CYCLE(3),
67 &smc->cs[3].mode);
68}
69#endif
70
a931b137
BS
71#ifndef CONFIG_SYS_NO_FLASH
72static void sama5d3xek_nor_hw_init(void)
73{
74 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
75
76 at91_periph_clk_enable(ATMEL_ID_SMC);
77
78 /* Configure SMC CS0 for NOR flash */
79 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
80 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(0),
81 &smc->cs[0].setup);
82 writel(AT91_SMC_PULSE_NWE(10) | AT91_SMC_PULSE_NCS_WR(11) |
83 AT91_SMC_PULSE_NRD(10) | AT91_SMC_PULSE_NCS_RD(11),
84 &smc->cs[0].pulse);
85 writel(AT91_SMC_CYCLE_NWE(11) | AT91_SMC_CYCLE_NRD(14),
86 &smc->cs[0].cycle);
87 writel(AT91_SMC_TIMINGS_TCLR(0) | AT91_SMC_TIMINGS_TADL(0) |
88 AT91_SMC_TIMINGS_TAR(0) | AT91_SMC_TIMINGS_TRR(0) |
89 AT91_SMC_TIMINGS_TWB(0) | AT91_SMC_TIMINGS_RBNSEL(0)|
90 AT91_SMC_TIMINGS_NFSEL(0), &smc->cs[0].timings);
91 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
92 AT91_SMC_MODE_EXNW_DISABLE |
93 AT91_SMC_MODE_DBW_16 |
94 AT91_SMC_MODE_TDF_CYCLE(1),
95 &smc->cs[0].mode);
96
97 /* Address pin (A1 ~ A23) configuration */
98 at91_set_a_periph(AT91_PIO_PORTE, 1, 0);
99 at91_set_a_periph(AT91_PIO_PORTE, 2, 0);
100 at91_set_a_periph(AT91_PIO_PORTE, 3, 0);
101 at91_set_a_periph(AT91_PIO_PORTE, 4, 0);
102 at91_set_a_periph(AT91_PIO_PORTE, 5, 0);
103 at91_set_a_periph(AT91_PIO_PORTE, 6, 0);
104 at91_set_a_periph(AT91_PIO_PORTE, 7, 0);
105 at91_set_a_periph(AT91_PIO_PORTE, 8, 0);
106 at91_set_a_periph(AT91_PIO_PORTE, 9, 0);
107 at91_set_a_periph(AT91_PIO_PORTE, 10, 0);
108 at91_set_a_periph(AT91_PIO_PORTE, 11, 0);
109 at91_set_a_periph(AT91_PIO_PORTE, 12, 0);
110 at91_set_a_periph(AT91_PIO_PORTE, 13, 0);
111 at91_set_a_periph(AT91_PIO_PORTE, 14, 0);
112 at91_set_a_periph(AT91_PIO_PORTE, 15, 0);
113 at91_set_a_periph(AT91_PIO_PORTE, 16, 0);
114 at91_set_a_periph(AT91_PIO_PORTE, 17, 0);
115 at91_set_a_periph(AT91_PIO_PORTE, 18, 0);
116 at91_set_a_periph(AT91_PIO_PORTE, 19, 0);
117 at91_set_a_periph(AT91_PIO_PORTE, 20, 0);
118 at91_set_a_periph(AT91_PIO_PORTE, 21, 0);
119 at91_set_a_periph(AT91_PIO_PORTE, 22, 0);
120 at91_set_a_periph(AT91_PIO_PORTE, 23, 0);
121 /* CS0 pin configuration */
122 at91_set_a_periph(AT91_PIO_PORTE, 26, 0);
123}
124#endif
125
3225f34e
BS
126#ifdef CONFIG_CMD_USB
127static void sama5d3xek_usb_hw_init(void)
128{
129 at91_set_pio_output(AT91_PIO_PORTD, 25, 0);
130 at91_set_pio_output(AT91_PIO_PORTD, 26, 0);
131 at91_set_pio_output(AT91_PIO_PORTD, 27, 0);
132}
133#endif
134
135#ifdef CONFIG_GENERIC_ATMEL_MCI
136static void sama5d3xek_mci_hw_init(void)
137{
138 at91_mci_hw_init();
139
140 at91_set_pio_output(AT91_PIO_PORTB, 10, 0); /* MCI0 Power */
141}
142#endif
143
144#ifdef CONFIG_LCD
145vidinfo_t panel_info = {
146 .vl_col = 800,
147 .vl_row = 480,
148 .vl_clk = 24000000,
149 .vl_sync = ATMEL_LCDC_INVLINE_NORMAL | ATMEL_LCDC_INVFRAME_NORMAL,
150 .vl_bpix = LCD_BPP,
151 .vl_tft = 1,
152 .vl_hsync_len = 128,
153 .vl_left_margin = 64,
154 .vl_right_margin = 64,
155 .vl_vsync_len = 2,
156 .vl_upper_margin = 22,
157 .vl_lower_margin = 21,
158 .mmio = ATMEL_BASE_LCDC,
159};
160
161void lcd_enable(void)
162{
163}
164
165void lcd_disable(void)
166{
167}
168
169static void sama5d3xek_lcd_hw_init(void)
170{
171 gd->fb_base = CONFIG_SAMA5D3_LCD_BASE;
172
173 /* The higher 8 bit of LCD is board related */
174 at91_set_c_periph(AT91_PIO_PORTC, 14, 0); /* LCDD16 */
175 at91_set_c_periph(AT91_PIO_PORTC, 13, 0); /* LCDD17 */
176 at91_set_c_periph(AT91_PIO_PORTC, 12, 0); /* LCDD18 */
177 at91_set_c_periph(AT91_PIO_PORTC, 11, 0); /* LCDD19 */
178 at91_set_c_periph(AT91_PIO_PORTC, 10, 0); /* LCDD20 */
179 at91_set_c_periph(AT91_PIO_PORTC, 15, 0); /* LCDD21 */
180 at91_set_c_periph(AT91_PIO_PORTE, 27, 0); /* LCDD22 */
181 at91_set_c_periph(AT91_PIO_PORTE, 28, 0); /* LCDD23 */
182
183 /* Configure lower 16 bit of LCD and enable clock */
184 at91_lcd_hw_init();
185}
186
187#ifdef CONFIG_LCD_INFO
188#include <nand.h>
189#include <version.h>
190
191void lcd_show_board_info(void)
192{
d02a60a1
WJ
193 ulong dram_size;
194 uint64_t nand_size;
3225f34e
BS
195 int i;
196 char temp[32];
197
198 lcd_printf("%s\n", U_BOOT_VERSION);
199 lcd_printf("(C) 2013 ATMEL Corp\n");
200 lcd_printf("at91@atmel.com\n");
201 lcd_printf("%s CPU at %s MHz\n", get_cpu_name(),
202 strmhz(temp, get_cpu_clk_rate()));
203
204 dram_size = 0;
205 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
206 dram_size += gd->bd->bi_dram[i].size;
207
208 nand_size = 0;
209#ifdef CONFIG_NAND_ATMEL
210 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
211 nand_size += nand_info[i].size;
212#endif
d02a60a1 213 lcd_printf("%ld MB SDRAM, %lld MB NAND\n",
3225f34e
BS
214 dram_size >> 20, nand_size >> 20);
215}
216#endif /* CONFIG_LCD_INFO */
217#endif /* CONFIG_LCD */
218
219int board_early_init_f(void)
220{
d2acb986
BS
221 at91_periph_clk_enable(ATMEL_ID_PIOA);
222 at91_periph_clk_enable(ATMEL_ID_PIOB);
223 at91_periph_clk_enable(ATMEL_ID_PIOC);
224 at91_periph_clk_enable(ATMEL_ID_PIOD);
225 at91_periph_clk_enable(ATMEL_ID_PIOE);
226
3225f34e
BS
227 at91_seriald_hw_init();
228
229 return 0;
230}
231
232int board_init(void)
233{
234 /* adress of boot parameters */
235 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
236
237#ifdef CONFIG_NAND_ATMEL
238 sama5d3xek_nand_hw_init();
239#endif
a931b137
BS
240#ifndef CONFIG_SYS_NO_FLASH
241 sama5d3xek_nor_hw_init();
242#endif
3225f34e
BS
243#ifdef CONFIG_CMD_USB
244 sama5d3xek_usb_hw_init();
245#endif
3668ce3c
BS
246#ifdef CONFIG_USB_GADGET_ATMEL_USBA
247 at91_udp_hw_init();
248#endif
3225f34e
BS
249#ifdef CONFIG_GENERIC_ATMEL_MCI
250 sama5d3xek_mci_hw_init();
251#endif
252#ifdef CONFIG_ATMEL_SPI
253 at91_spi0_hw_init(1 << 0);
254#endif
255#ifdef CONFIG_MACB
256 if (has_emac())
257 at91_macb_hw_init();
e08d6f3a
BS
258 if (has_gmac())
259 at91_gmac_hw_init();
3225f34e
BS
260#endif
261#ifdef CONFIG_LCD
262 if (has_lcdc())
263 sama5d3xek_lcd_hw_init();
264#endif
265 return 0;
266}
267
268int dram_init(void)
269{
270 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
271 CONFIG_SYS_SDRAM_SIZE);
272 return 0;
273}
274
e08d6f3a
BS
275int board_phy_config(struct phy_device *phydev)
276{
b719a088
AB
277 /* board specific timings for GMAC */
278 if (has_gmac()) {
279 /* rx data delay */
280 ksz9021_phy_extended_write(phydev,
281 MII_KSZ9021_EXT_RGMII_RX_DATA_SKEW,
282 0x2222);
283 /* tx data delay */
284 ksz9021_phy_extended_write(phydev,
285 MII_KSZ9021_EXT_RGMII_TX_DATA_SKEW,
286 0x2222);
287 /* rx/tx clock delay */
288 ksz9021_phy_extended_write(phydev,
289 MII_KSZ9021_EXT_RGMII_CLOCK_SKEW,
290 0xf2f4);
291 }
292
293 /* always run the PHY's config routine */
294 if (phydev->drv->config)
295 return phydev->drv->config(phydev);
e08d6f3a
BS
296
297 return 0;
298}
299
3225f34e
BS
300int board_eth_init(bd_t *bis)
301{
302 int rc = 0;
303
304#ifdef CONFIG_MACB
305 if (has_emac())
306 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x00);
e08d6f3a
BS
307 if (has_gmac())
308 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_GMAC, 0x00);
3668ce3c
BS
309#endif
310#ifdef CONFIG_USB_GADGET_ATMEL_USBA
311 usba_udc_probe(&pdata);
312#ifdef CONFIG_USB_ETH_RNDIS
313 usb_eth_initialize(bis);
314#endif
3225f34e
BS
315#endif
316
317 return rc;
318}
319
320#ifdef CONFIG_GENERIC_ATMEL_MCI
321int board_mmc_init(bd_t *bis)
322{
323 int rc = 0;
324
325 rc = atmel_mci_init((void *)ATMEL_BASE_MCI0);
326
327 return rc;
328}
329#endif
330
331/* SPI chip select control */
332#ifdef CONFIG_ATMEL_SPI
333#include <spi.h>
334
335int spi_cs_is_valid(unsigned int bus, unsigned int cs)
336{
337 return bus == 0 && cs < 4;
338}
339
340void spi_cs_activate(struct spi_slave *slave)
341{
342 switch (slave->cs) {
343 case 0:
344 at91_set_pio_output(AT91_PIO_PORTD, 13, 0);
345 case 1:
346 at91_set_pio_output(AT91_PIO_PORTD, 14, 0);
347 case 2:
348 at91_set_pio_output(AT91_PIO_PORTD, 15, 0);
349 case 3:
350 at91_set_pio_output(AT91_PIO_PORTD, 16, 0);
351 default:
352 break;
353 }
354}
355
356void spi_cs_deactivate(struct spi_slave *slave)
357{
358 switch (slave->cs) {
359 case 0:
360 at91_set_pio_output(AT91_PIO_PORTD, 13, 1);
361 case 1:
362 at91_set_pio_output(AT91_PIO_PORTD, 14, 1);
363 case 2:
364 at91_set_pio_output(AT91_PIO_PORTD, 15, 1);
365 case 3:
366 at91_set_pio_output(AT91_PIO_PORTD, 16, 1);
367 default:
368 break;
369 }
370}
371#endif /* CONFIG_ATMEL_SPI */
c5e8885a
BS
372
373/* SPL */
374#ifdef CONFIG_SPL_BUILD
375void spl_board_init(void)
376{
377#ifdef CONFIG_SYS_USE_MMC
378 sama5d3xek_mci_hw_init();
27019e4a
BS
379#elif CONFIG_SYS_USE_NANDFLASH
380 sama5d3xek_nand_hw_init();
8a45b0ba
BS
381#elif CONFIG_SYS_USE_SERIALFLASH
382 at91_spi0_hw_init(1 << 0);
c5e8885a
BS
383#endif
384}
385
386static void ddr2_conf(struct atmel_mpddr *ddr2)
387{
388 ddr2->md = (ATMEL_MPDDRC_MD_DBW_32_BITS | ATMEL_MPDDRC_MD_DDR2_SDRAM);
389
390 ddr2->cr = (ATMEL_MPDDRC_CR_NC_COL_10 |
391 ATMEL_MPDDRC_CR_NR_ROW_14 |
392 ATMEL_MPDDRC_CR_CAS_DDR_CAS3 |
393 ATMEL_MPDDRC_CR_ENRDM_ON |
394 ATMEL_MPDDRC_CR_NB_8BANKS |
395 ATMEL_MPDDRC_CR_NDQS_DISABLED |
396 ATMEL_MPDDRC_CR_DECOD_INTERLEAVED |
397 ATMEL_MPDDRC_CR_UNAL_SUPPORTED);
398 /*
399 * As the DDR2-SDRAm device requires a refresh time is 7.8125us
400 * when DDR run at 133MHz, so it needs (7.8125us * 133MHz / 10^9) clocks
401 */
402 ddr2->rtr = 0x411;
403
404 ddr2->tpr0 = (6 << ATMEL_MPDDRC_TPR0_TRAS_OFFSET |
405 2 << ATMEL_MPDDRC_TPR0_TRCD_OFFSET |
406 2 << ATMEL_MPDDRC_TPR0_TWR_OFFSET |
407 8 << ATMEL_MPDDRC_TPR0_TRC_OFFSET |
408 2 << ATMEL_MPDDRC_TPR0_TRP_OFFSET |
409 2 << ATMEL_MPDDRC_TPR0_TRRD_OFFSET |
410 2 << ATMEL_MPDDRC_TPR0_TWTR_OFFSET |
411 2 << ATMEL_MPDDRC_TPR0_TMRD_OFFSET);
412
413 ddr2->tpr1 = (2 << ATMEL_MPDDRC_TPR1_TXP_OFFSET |
414 200 << ATMEL_MPDDRC_TPR1_TXSRD_OFFSET |
415 28 << ATMEL_MPDDRC_TPR1_TXSNR_OFFSET |
416 26 << ATMEL_MPDDRC_TPR1_TRFC_OFFSET);
417
418 ddr2->tpr2 = (7 << ATMEL_MPDDRC_TPR2_TFAW_OFFSET |
419 2 << ATMEL_MPDDRC_TPR2_TRTP_OFFSET |
420 2 << ATMEL_MPDDRC_TPR2_TRPA_OFFSET |
421 7 << ATMEL_MPDDRC_TPR2_TXARDS_OFFSET |
422 8 << ATMEL_MPDDRC_TPR2_TXARD_OFFSET);
423}
424
425void mem_init(void)
426{
427 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
428 struct atmel_mpddr ddr2;
429
430 ddr2_conf(&ddr2);
431
432 /* enable MPDDR clock */
433 at91_periph_clk_enable(ATMEL_ID_MPDDRC);
434 writel(0x4, &pmc->scer);
435
436 /* DDRAM2 Controller initialize */
437 ddr2_init(ATMEL_BASE_DDRCS, &ddr2);
438}
439
440void at91_pmc_init(void)
441{
442 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
443 u32 tmp;
444
445 tmp = AT91_PMC_PLLAR_29 |
446 AT91_PMC_PLLXR_PLLCOUNT(0x3f) |
447 AT91_PMC_PLLXR_MUL(43) |
448 AT91_PMC_PLLXR_DIV(1);
449 at91_plla_init(tmp);
450
451 writel(0x3 << 8, &pmc->pllicpr);
452
453 tmp = AT91_PMC_MCKR_MDIV_4 |
454 AT91_PMC_MCKR_CSS_PLLA;
455 at91_mck_init(tmp);
456}
457#endif