]> git.sur5r.net Git - u-boot/blob - board/aries/ma5d4evk/ma5d4evk.c
ARM: at91: ma5d4: Swap SD/MMC controller order
[u-boot] / board / aries / ma5d4evk / ma5d4evk.c
1 /*
2  * Copyright (C) 2015 Marek Vasut <marex@denx.de>
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #include <common.h>
8 #include <asm/io.h>
9 #include <asm/arch/at91_common.h>
10 #include <asm/arch/at91_pmc.h>
11 #include <asm/arch/at91_rstc.h>
12 #include <asm/arch/atmel_mpddrc.h>
13 #include <asm/arch/atmel_usba_udc.h>
14 #include <asm/arch/gpio.h>
15 #include <asm/arch/clk.h>
16 #include <asm/arch/sama5d3_smc.h>
17 #include <asm/arch/sama5d4.h>
18 #include <atmel_hlcdc.h>
19 #include <atmel_mci.h>
20 #include <lcd.h>
21 #include <mmc.h>
22 #include <net.h>
23 #include <netdev.h>
24 #include <spi.h>
25 #include <version.h>
26
27 DECLARE_GLOBAL_DATA_PTR;
28
29 #ifdef CONFIG_ATMEL_SPI
30 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
31 {
32         return bus == 0 && cs == 0;
33 }
34
35 void spi_cs_activate(struct spi_slave *slave)
36 {
37         at91_set_pio_output(AT91_PIO_PORTC, 3, 0);
38 }
39
40 void spi_cs_deactivate(struct spi_slave *slave)
41 {
42         at91_set_pio_output(AT91_PIO_PORTC, 3, 1);
43 }
44
45 static void ma5d4evk_spi0_hw_init(void)
46 {
47         at91_pio3_set_a_periph(AT91_PIO_PORTC, 0, 0);   /* SPI0_MISO */
48         at91_pio3_set_a_periph(AT91_PIO_PORTC, 1, 0);   /* SPI0_MOSI */
49         at91_pio3_set_a_periph(AT91_PIO_PORTC, 2, 0);   /* SPI0_SPCK */
50
51         at91_set_pio_output(AT91_PIO_PORTC, 3, 1);      /* SPI0_CS0 */
52
53         /* Enable clock */
54         at91_periph_clk_enable(ATMEL_ID_SPI0);
55 }
56 #endif /* CONFIG_ATMEL_SPI */
57
58 #ifdef CONFIG_CMD_USB
59 static void ma5d4evk_usb_hw_init(void)
60 {
61         at91_set_pio_output(AT91_PIO_PORTE, 11, 0);
62         at91_set_pio_output(AT91_PIO_PORTE, 14, 0);
63 }
64 #endif
65
66 #ifdef CONFIG_LCD
67 vidinfo_t panel_info = {
68         .vl_col                 = 800,
69         .vl_row                 = 480,
70         .vl_clk                 = 33500000,
71         .vl_bpix                = LCD_BPP,
72         .vl_tft                 = 1,
73         .vl_hsync_len           = 10,
74         .vl_left_margin         = 89,
75         .vl_right_margin        = 164,
76         .vl_vsync_len           = 10,
77         .vl_upper_margin        = 23,
78         .vl_lower_margin        = 10,
79         .mmio                   = ATMEL_BASE_LCDC,
80 };
81
82 /* No power up/down pin for the LCD pannel */
83 void lcd_enable(void)   { /* Empty! */ }
84 void lcd_disable(void)  { /* Empty! */ }
85
86 unsigned int has_lcdc(void)
87 {
88         return 1;
89 }
90
91 static void ma5d4evk_lcd_hw_init(void)
92 {
93         at91_pio3_set_a_periph(AT91_PIO_PORTA, 24, 1);  /* LCDPWM */
94         at91_pio3_set_a_periph(AT91_PIO_PORTA, 25, 0);  /* LCDDISP */
95         at91_pio3_set_a_periph(AT91_PIO_PORTA, 26, 0);  /* LCDVSYNC */
96         at91_pio3_set_a_periph(AT91_PIO_PORTA, 27, 0);  /* LCDHSYNC */
97         at91_pio3_set_a_periph(AT91_PIO_PORTA, 28, 0);  /* LCDDOTCK */
98         at91_pio3_set_a_periph(AT91_PIO_PORTA, 29, 1);  /* LCDDEN */
99
100         at91_pio3_set_a_periph(AT91_PIO_PORTA,  0, 0);  /* LCDD0 */
101         at91_pio3_set_a_periph(AT91_PIO_PORTA,  1, 0);  /* LCDD1 */
102         at91_pio3_set_a_periph(AT91_PIO_PORTA,  2, 0);  /* LCDD2 */
103         at91_pio3_set_a_periph(AT91_PIO_PORTA,  3, 0);  /* LCDD3 */
104         at91_pio3_set_a_periph(AT91_PIO_PORTA,  4, 0);  /* LCDD4 */
105         at91_pio3_set_a_periph(AT91_PIO_PORTA,  5, 0);  /* LCDD5 */
106         at91_pio3_set_a_periph(AT91_PIO_PORTA,  6, 0);  /* LCDD6 */
107         at91_pio3_set_a_periph(AT91_PIO_PORTA,  7, 0);  /* LCDD7 */
108
109         at91_pio3_set_a_periph(AT91_PIO_PORTA,  8, 0);  /* LCDD9 */
110         at91_pio3_set_a_periph(AT91_PIO_PORTA,  9, 0);  /* LCDD8 */
111         at91_pio3_set_a_periph(AT91_PIO_PORTA, 10, 0);  /* LCDD10 */
112         at91_pio3_set_a_periph(AT91_PIO_PORTA, 11, 0);  /* LCDD11 */
113         at91_pio3_set_a_periph(AT91_PIO_PORTA, 12, 0);  /* LCDD12 */
114         at91_pio3_set_a_periph(AT91_PIO_PORTA, 13, 0);  /* LCDD13 */
115         at91_pio3_set_a_periph(AT91_PIO_PORTA, 14, 0);  /* LCDD14 */
116         at91_pio3_set_a_periph(AT91_PIO_PORTA, 15, 0);  /* LCDD15 */
117
118         at91_pio3_set_a_periph(AT91_PIO_PORTA, 16, 0);  /* LCDD16 */
119         at91_pio3_set_a_periph(AT91_PIO_PORTA, 17, 0);  /* LCDD17 */
120         at91_pio3_set_a_periph(AT91_PIO_PORTA, 18, 0);  /* LCDD18 */
121         at91_pio3_set_a_periph(AT91_PIO_PORTA, 19, 0);  /* LCDD19 */
122         at91_pio3_set_a_periph(AT91_PIO_PORTA, 20, 0);  /* LCDD20 */
123         at91_pio3_set_a_periph(AT91_PIO_PORTA, 21, 0);  /* LCDD21 */
124         at91_pio3_set_a_periph(AT91_PIO_PORTA, 22, 0);  /* LCDD22 */
125         at91_pio3_set_a_periph(AT91_PIO_PORTA, 23, 0);  /* LCDD23 */
126
127         /* Enable clock */
128         at91_periph_clk_enable(ATMEL_ID_LCDC);
129 }
130
131 #endif /* CONFIG_LCD */
132
133 #ifdef CONFIG_GENERIC_ATMEL_MCI
134 /* On-SoM eMMC */
135 void ma5d4evk_mci0_hw_init(void)
136 {
137         at91_pio3_set_b_periph(AT91_PIO_PORTC, 5, 1);   /* MCI1 CDA */
138         at91_pio3_set_b_periph(AT91_PIO_PORTC, 6, 1);   /* MCI1 DA0 */
139         at91_pio3_set_b_periph(AT91_PIO_PORTC, 7, 1);   /* MCI1 DA1 */
140         at91_pio3_set_b_periph(AT91_PIO_PORTC, 8, 1);   /* MCI1 DA2 */
141         at91_pio3_set_b_periph(AT91_PIO_PORTC, 9, 1);   /* MCI1 DA3 */
142         at91_pio3_set_b_periph(AT91_PIO_PORTC, 10, 1);  /* MCI1 DA4 */
143         at91_pio3_set_b_periph(AT91_PIO_PORTC, 11, 1);  /* MCI1 DA5 */
144         at91_pio3_set_b_periph(AT91_PIO_PORTC, 12, 1);  /* MCI1 DA6 */
145         at91_pio3_set_b_periph(AT91_PIO_PORTC, 13, 1);  /* MCI1 DA7 */
146         at91_pio3_set_b_periph(AT91_PIO_PORTC, 4, 0);   /* MCI1 CLK */
147
148         /*
149          * As the mci io internal pull down is too strong, so if the io needs
150          * external pull up, the pull up resistor will be very small, if so
151          * the power consumption will increase, so disable the internal pull
152          * down to save the power.
153          */
154         at91_pio3_set_pio_pulldown(AT91_PIO_PORTC, 5, 0);
155         at91_pio3_set_pio_pulldown(AT91_PIO_PORTC, 6, 0);
156         at91_pio3_set_pio_pulldown(AT91_PIO_PORTC, 7, 0);
157         at91_pio3_set_pio_pulldown(AT91_PIO_PORTC, 8, 0);
158         at91_pio3_set_pio_pulldown(AT91_PIO_PORTC, 9, 0);
159         at91_pio3_set_pio_pulldown(AT91_PIO_PORTC, 10, 0);
160         at91_pio3_set_pio_pulldown(AT91_PIO_PORTC, 11, 0);
161         at91_pio3_set_pio_pulldown(AT91_PIO_PORTC, 12, 0);
162         at91_pio3_set_pio_pulldown(AT91_PIO_PORTC, 13, 0);
163         at91_pio3_set_pio_pulldown(AT91_PIO_PORTC, 4, 0);
164
165         /* Enable clock */
166         at91_periph_clk_enable(ATMEL_ID_MCI0);
167 }
168
169 /* On-board MicroSD slot */
170 void ma5d4evk_mci1_hw_init(void)
171 {
172         at91_pio3_set_c_periph(AT91_PIO_PORTE, 19, 1);  /* MCI1 CDA */
173         at91_pio3_set_c_periph(AT91_PIO_PORTE, 20, 1);  /* MCI1 DA0 */
174         at91_pio3_set_c_periph(AT91_PIO_PORTE, 21, 1);  /* MCI1 DA1 */
175         at91_pio3_set_c_periph(AT91_PIO_PORTE, 22, 1);  /* MCI1 DA2 */
176         at91_pio3_set_c_periph(AT91_PIO_PORTE, 23, 1);  /* MCI1 DA3 */
177         at91_pio3_set_c_periph(AT91_PIO_PORTE, 18, 0);  /* MCI1 CLK */
178
179         /*
180          * As the mci io internal pull down is too strong, so if the io needs
181          * external pull up, the pull up resistor will be very small, if so
182          * the power consumption will increase, so disable the internal pull
183          * down to save the power.
184          */
185         at91_pio3_set_pio_pulldown(AT91_PIO_PORTE, 18, 0);
186         at91_pio3_set_pio_pulldown(AT91_PIO_PORTE, 19, 0);
187         at91_pio3_set_pio_pulldown(AT91_PIO_PORTE, 20, 0);
188         at91_pio3_set_pio_pulldown(AT91_PIO_PORTE, 21, 0);
189         at91_pio3_set_pio_pulldown(AT91_PIO_PORTE, 22, 0);
190         at91_pio3_set_pio_pulldown(AT91_PIO_PORTE, 23, 0);
191
192         /* Deal with WP pin on the microSD slot. */
193         at91_set_pio_output(AT91_PIO_PORTE, 16, 0);
194         at91_pio3_set_pio_pulldown(AT91_PIO_PORTE, 16, 1);
195
196         /* Enable clock */
197         at91_periph_clk_enable(ATMEL_ID_MCI1);
198 }
199
200 int board_mmc_init(bd_t *bis)
201 {
202         int ret;
203
204         /* De-assert reset on On-SoM eMMC */
205         at91_set_pio_output(AT91_PIO_PORTE, 15, 1);
206         at91_pio3_set_pio_pulldown(AT91_PIO_PORTE, 15, 0);
207
208         ret = atmel_mci_init((void *)ATMEL_BASE_MCI1);
209         if (ret)        /* eMMC init failed, skip it. */
210                 at91_set_pio_output(AT91_PIO_PORTE, 15, 0);
211
212         /* Enable the power supply to On-board MicroSD */
213         at91_set_pio_output(AT91_PIO_PORTE, 17, 0);
214         ret = atmel_mci_init((void *)ATMEL_BASE_MCI0);
215         if (ret)        /* uSD init failed, power it down. */
216                 at91_set_pio_output(AT91_PIO_PORTE, 17, 1);
217
218         return 0;
219 }
220 #endif /* CONFIG_GENERIC_ATMEL_MCI */
221
222 #ifdef CONFIG_MACB
223 void ma5d4evk_macb0_hw_init(void)
224 {
225         at91_pio3_set_a_periph(AT91_PIO_PORTB, 0, 0);   /* ETXCK_EREFCK */
226         at91_pio3_set_a_periph(AT91_PIO_PORTB, 6, 0);   /* ERXDV */
227         at91_pio3_set_a_periph(AT91_PIO_PORTB, 8, 0);   /* ERX0 */
228         at91_pio3_set_a_periph(AT91_PIO_PORTB, 9, 0);   /* ERX1 */
229         at91_pio3_set_a_periph(AT91_PIO_PORTB, 7, 0);   /* ERXER */
230         at91_pio3_set_a_periph(AT91_PIO_PORTB, 2, 0);   /* ETXEN */
231         at91_pio3_set_a_periph(AT91_PIO_PORTB, 12, 0);  /* ETX0 */
232         at91_pio3_set_a_periph(AT91_PIO_PORTB, 13, 0);  /* ETX1 */
233         at91_pio3_set_a_periph(AT91_PIO_PORTB, 17, 0);  /* EMDIO */
234         at91_pio3_set_a_periph(AT91_PIO_PORTB, 16, 0);  /* EMDC */
235
236         /* Enable clock */
237         at91_periph_clk_enable(ATMEL_ID_GMAC0);
238 }
239 #endif
240
241 static void ma5d4evk_serial_hw_init(void)
242 {
243         /* USART0 */
244         at91_pio3_set_a_periph(AT91_PIO_PORTD, 13, 1);  /* TXD */
245         at91_pio3_set_a_periph(AT91_PIO_PORTD, 12, 0);  /* RXD */
246         at91_pio3_set_a_periph(AT91_PIO_PORTD, 11, 0);  /* RTS */
247         at91_pio3_set_a_periph(AT91_PIO_PORTD, 10, 0);  /* CTS */
248         at91_periph_clk_enable(ATMEL_ID_USART0);
249
250         /* USART1 */
251         at91_pio3_set_a_periph(AT91_PIO_PORTD, 17, 1);  /* TXD */
252         at91_pio3_set_a_periph(AT91_PIO_PORTD, 16, 0);  /* RXD */
253         at91_pio3_set_a_periph(AT91_PIO_PORTD, 15, 0);  /* RTS */
254         at91_pio3_set_a_periph(AT91_PIO_PORTD, 14, 0);  /* CTS */
255         at91_periph_clk_enable(ATMEL_ID_USART1);
256 }
257
258 int board_early_init_f(void)
259 {
260         at91_periph_clk_enable(ATMEL_ID_PIOA);
261         at91_periph_clk_enable(ATMEL_ID_PIOB);
262         at91_periph_clk_enable(ATMEL_ID_PIOC);
263         at91_periph_clk_enable(ATMEL_ID_PIOD);
264         at91_periph_clk_enable(ATMEL_ID_PIOE);
265
266         /* Configure LEDs as OFF */
267         at91_set_pio_output(AT91_PIO_PORTD, 28, 0);
268         at91_set_pio_output(AT91_PIO_PORTD, 29, 0);
269         at91_set_pio_output(AT91_PIO_PORTD, 30, 0);
270
271         ma5d4evk_serial_hw_init();
272
273         return 0;
274 }
275
276 int board_init(void)
277 {
278         /* adress of boot parameters */
279         gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
280
281 #ifdef CONFIG_ATMEL_SPI
282         ma5d4evk_spi0_hw_init();
283 #endif
284 #ifdef CONFIG_GENERIC_ATMEL_MCI
285         ma5d4evk_mci0_hw_init();
286         ma5d4evk_mci1_hw_init();
287 #endif
288 #ifdef CONFIG_MACB
289         ma5d4evk_macb0_hw_init();
290 #endif
291 #ifdef CONFIG_LCD
292         ma5d4evk_lcd_hw_init();
293 #endif
294 #ifdef CONFIG_CMD_USB
295         ma5d4evk_usb_hw_init();
296 #endif
297 #ifdef CONFIG_USB_GADGET_ATMEL_USBA
298         at91_udp_hw_init();
299 #endif
300
301         /* Reset CAN controllers */
302         at91_set_pio_output(AT91_PIO_PORTB, 21, 0);
303         udelay(100);
304         at91_set_pio_output(AT91_PIO_PORTB, 21, 1);
305         at91_pio3_set_pio_pulldown(AT91_PIO_PORTB, 21, 0);
306
307         return 0;
308 }
309
310 int dram_init(void)
311 {
312         gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
313                                     CONFIG_SYS_SDRAM_SIZE);
314         return 0;
315 }
316
317 int board_eth_init(bd_t *bis)
318 {
319         int rc = 0;
320
321 #ifdef CONFIG_MACB
322         rc = macb_eth_initialize(0, (void *)ATMEL_BASE_GMAC0, 0x00);
323 #endif
324
325 #ifdef CONFIG_USB_GADGET_ATMEL_USBA
326         usba_udc_probe(&pdata);
327 #ifdef CONFIG_USB_ETH_RNDIS
328         usb_eth_initialize(bis);
329 #endif
330 #endif
331
332         return rc;
333 }
334
335 /* SPL */
336 #ifdef CONFIG_SPL_BUILD
337 void spl_board_init(void)
338 {
339 #ifdef CONFIG_ATMEL_SPI
340         ma5d4evk_spi0_hw_init();
341 #endif
342 #ifdef CONFIG_GENERIC_ATMEL_MCI
343         ma5d4evk_mci0_hw_init();
344         ma5d4evk_mci1_hw_init();
345 #endif
346 }
347
348 static void ddr2_conf(struct atmel_mpddrc_config *ddr2)
349 {
350         ddr2->md = (ATMEL_MPDDRC_MD_DBW_32_BITS | ATMEL_MPDDRC_MD_DDR2_SDRAM);
351
352         ddr2->cr = (ATMEL_MPDDRC_CR_NC_COL_10 |
353                     ATMEL_MPDDRC_CR_NR_ROW_13 |
354                     ATMEL_MPDDRC_CR_CAS_DDR_CAS3 |
355                     ATMEL_MPDDRC_CR_NB_8BANKS |
356                     ATMEL_MPDDRC_CR_NDQS_DISABLED |
357                     ATMEL_MPDDRC_CR_UNAL_SUPPORTED);
358
359         ddr2->rtr = 0x2b0;
360
361         ddr2->tpr0 = (8 << ATMEL_MPDDRC_TPR0_TRAS_OFFSET |
362                       3 << ATMEL_MPDDRC_TPR0_TRCD_OFFSET |
363                       3 << ATMEL_MPDDRC_TPR0_TWR_OFFSET |
364                       10 << ATMEL_MPDDRC_TPR0_TRC_OFFSET |
365                       3 << ATMEL_MPDDRC_TPR0_TRP_OFFSET |
366                       2 << ATMEL_MPDDRC_TPR0_TRRD_OFFSET |
367                       2 << ATMEL_MPDDRC_TPR0_TWTR_OFFSET |
368                       2 << ATMEL_MPDDRC_TPR0_TMRD_OFFSET);
369
370         ddr2->tpr1 = (2 << ATMEL_MPDDRC_TPR1_TXP_OFFSET |
371                       200 << ATMEL_MPDDRC_TPR1_TXSRD_OFFSET |
372                       25 << ATMEL_MPDDRC_TPR1_TXSNR_OFFSET |
373                       23 << ATMEL_MPDDRC_TPR1_TRFC_OFFSET);
374
375         ddr2->tpr2 = (7 << ATMEL_MPDDRC_TPR2_TFAW_OFFSET |
376                       2 << ATMEL_MPDDRC_TPR2_TRTP_OFFSET |
377                       3 << ATMEL_MPDDRC_TPR2_TRPA_OFFSET |
378                       2 << ATMEL_MPDDRC_TPR2_TXARDS_OFFSET |
379                       8 << ATMEL_MPDDRC_TPR2_TXARD_OFFSET);
380 }
381
382 void mem_init(void)
383 {
384         struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
385         struct atmel_mpddrc_config ddr2;
386
387         ddr2_conf(&ddr2);
388
389         /* enable MPDDR clock */
390         at91_periph_clk_enable(ATMEL_ID_MPDDRC);
391         writel(AT91_PMC_DDR, &pmc->scer);
392
393         /* DDRAM2 Controller initialize */
394         ddr2_init(ATMEL_BASE_MPDDRC, ATMEL_BASE_DDRCS, &ddr2);
395 }
396
397 void at91_pmc_init(void)
398 {
399         struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
400         u32 tmp;
401
402         tmp = AT91_PMC_PLLAR_29 |
403               AT91_PMC_PLLXR_PLLCOUNT(0x3f) |
404               AT91_PMC_PLLXR_MUL(87) |
405               AT91_PMC_PLLXR_DIV(1);
406         at91_plla_init(tmp);
407
408         writel(0x0 << 8, &pmc->pllicpr);
409
410         tmp = AT91_PMC_MCKR_H32MXDIV |
411               AT91_PMC_MCKR_PLLADIV_2 |
412               AT91_PMC_MCKR_MDIV_3 |
413               AT91_PMC_MCKR_CSS_PLLA;
414         at91_mck_init(tmp);
415 }
416 #endif