1
2
3
4
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
27DECLARE_GLOBAL_DATA_PTR;
28
29#ifdef CONFIG_ATMEL_SPI
30int spi_cs_is_valid(unsigned int bus, unsigned int cs)
31{
32 return bus == 0 && cs == 0;
33}
34
35void spi_cs_activate(struct spi_slave *slave)
36{
37 at91_set_pio_output(AT91_PIO_PORTC, 3, 0);
38}
39
40void spi_cs_deactivate(struct spi_slave *slave)
41{
42 at91_set_pio_output(AT91_PIO_PORTC, 3, 1);
43}
44
45static void ma5d4evk_spi0_hw_init(void)
46{
47 at91_set_a_periph(AT91_PIO_PORTC, 0, 0);
48 at91_set_a_periph(AT91_PIO_PORTC, 1, 0);
49 at91_set_a_periph(AT91_PIO_PORTC, 2, 0);
50
51 at91_set_pio_output(AT91_PIO_PORTC, 3, 1);
52
53
54 at91_periph_clk_enable(ATMEL_ID_SPI0);
55}
56#endif
57
58#ifdef CONFIG_CMD_USB
59static 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
67vidinfo_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
83void lcd_enable(void) { }
84void lcd_disable(void) { }
85
86unsigned int has_lcdc(void)
87{
88 return 1;
89}
90
91static void ma5d4evk_lcd_hw_init(void)
92{
93 at91_set_a_periph(AT91_PIO_PORTA, 24, 1);
94 at91_set_a_periph(AT91_PIO_PORTA, 25, 0);
95 at91_set_a_periph(AT91_PIO_PORTA, 26, 0);
96 at91_set_a_periph(AT91_PIO_PORTA, 27, 0);
97 at91_set_a_periph(AT91_PIO_PORTA, 28, 0);
98 at91_set_a_periph(AT91_PIO_PORTA, 29, 1);
99
100 at91_set_a_periph(AT91_PIO_PORTA, 0, 0);
101 at91_set_a_periph(AT91_PIO_PORTA, 1, 0);
102 at91_set_a_periph(AT91_PIO_PORTA, 2, 0);
103 at91_set_a_periph(AT91_PIO_PORTA, 3, 0);
104 at91_set_a_periph(AT91_PIO_PORTA, 4, 0);
105 at91_set_a_periph(AT91_PIO_PORTA, 5, 0);
106 at91_set_a_periph(AT91_PIO_PORTA, 6, 0);
107 at91_set_a_periph(AT91_PIO_PORTA, 7, 0);
108
109 at91_set_a_periph(AT91_PIO_PORTA, 8, 0);
110 at91_set_a_periph(AT91_PIO_PORTA, 9, 0);
111 at91_set_a_periph(AT91_PIO_PORTA, 10, 0);
112 at91_set_a_periph(AT91_PIO_PORTA, 11, 0);
113 at91_set_a_periph(AT91_PIO_PORTA, 12, 0);
114 at91_set_a_periph(AT91_PIO_PORTA, 13, 0);
115 at91_set_a_periph(AT91_PIO_PORTA, 14, 0);
116 at91_set_a_periph(AT91_PIO_PORTA, 15, 0);
117
118 at91_set_a_periph(AT91_PIO_PORTA, 16, 0);
119 at91_set_a_periph(AT91_PIO_PORTA, 17, 0);
120 at91_set_a_periph(AT91_PIO_PORTA, 18, 0);
121 at91_set_a_periph(AT91_PIO_PORTA, 19, 0);
122 at91_set_a_periph(AT91_PIO_PORTA, 20, 0);
123 at91_set_a_periph(AT91_PIO_PORTA, 21, 0);
124 at91_set_a_periph(AT91_PIO_PORTA, 22, 0);
125 at91_set_a_periph(AT91_PIO_PORTA, 23, 0);
126
127
128 at91_periph_clk_enable(ATMEL_ID_LCDC);
129}
130
131#endif
132
133#ifdef CONFIG_GENERIC_ATMEL_MCI
134
135void ma5d4evk_mci0_hw_init(void)
136{
137 at91_set_b_periph(AT91_PIO_PORTC, 5, 1);
138 at91_set_b_periph(AT91_PIO_PORTC, 6, 1);
139 at91_set_b_periph(AT91_PIO_PORTC, 7, 1);
140 at91_set_b_periph(AT91_PIO_PORTC, 8, 1);
141 at91_set_b_periph(AT91_PIO_PORTC, 9, 1);
142 at91_set_b_periph(AT91_PIO_PORTC, 10, 1);
143 at91_set_b_periph(AT91_PIO_PORTC, 11, 1);
144 at91_set_b_periph(AT91_PIO_PORTC, 12, 1);
145 at91_set_b_periph(AT91_PIO_PORTC, 13, 1);
146 at91_set_b_periph(AT91_PIO_PORTC, 4, 0);
147
148
149
150
151
152
153
154 at91_set_pio_pulldown(AT91_PIO_PORTC, 5, 0);
155 at91_set_pio_pulldown(AT91_PIO_PORTC, 6, 0);
156 at91_set_pio_pulldown(AT91_PIO_PORTC, 7, 0);
157 at91_set_pio_pulldown(AT91_PIO_PORTC, 8, 0);
158 at91_set_pio_pulldown(AT91_PIO_PORTC, 9, 0);
159 at91_set_pio_pulldown(AT91_PIO_PORTC, 10, 0);
160 at91_set_pio_pulldown(AT91_PIO_PORTC, 11, 0);
161 at91_set_pio_pulldown(AT91_PIO_PORTC, 12, 0);
162 at91_set_pio_pulldown(AT91_PIO_PORTC, 13, 0);
163 at91_set_pio_pulldown(AT91_PIO_PORTC, 4, 0);
164
165
166 at91_periph_clk_enable(ATMEL_ID_MCI0);
167}
168
169
170void ma5d4evk_mci1_hw_init(void)
171{
172 at91_set_c_periph(AT91_PIO_PORTE, 19, 1);
173 at91_set_c_periph(AT91_PIO_PORTE, 20, 1);
174 at91_set_c_periph(AT91_PIO_PORTE, 21, 1);
175 at91_set_c_periph(AT91_PIO_PORTE, 22, 1);
176 at91_set_c_periph(AT91_PIO_PORTE, 23, 1);
177 at91_set_c_periph(AT91_PIO_PORTE, 18, 0);
178
179
180
181
182
183
184
185 at91_set_pio_pulldown(AT91_PIO_PORTE, 18, 0);
186 at91_set_pio_pulldown(AT91_PIO_PORTE, 19, 0);
187 at91_set_pio_pulldown(AT91_PIO_PORTE, 20, 0);
188 at91_set_pio_pulldown(AT91_PIO_PORTE, 21, 0);
189 at91_set_pio_pulldown(AT91_PIO_PORTE, 22, 0);
190 at91_set_pio_pulldown(AT91_PIO_PORTE, 23, 0);
191
192
193 at91_set_pio_output(AT91_PIO_PORTE, 16, 0);
194 at91_set_pio_pulldown(AT91_PIO_PORTE, 16, 1);
195
196
197 at91_periph_clk_enable(ATMEL_ID_MCI1);
198}
199
200int board_mmc_init(bd_t *bis)
201{
202 int ret;
203
204
205 at91_set_pio_output(AT91_PIO_PORTE, 15, 1);
206 at91_set_pio_pulldown(AT91_PIO_PORTE, 15, 0);
207
208 ret = atmel_mci_init((void *)ATMEL_BASE_MCI0);
209 if (ret)
210 at91_set_pio_output(AT91_PIO_PORTE, 15, 0);
211
212
213 at91_set_pio_output(AT91_PIO_PORTE, 17, 0);
214
215 ret = atmel_mci_init((void *)ATMEL_BASE_MCI1);
216 if (ret)
217 at91_set_pio_output(AT91_PIO_PORTE, 17, 1);
218
219 return 0;
220}
221#endif
222
223#ifdef CONFIG_MACB
224void ma5d4evk_macb0_hw_init(void)
225{
226 at91_set_a_periph(AT91_PIO_PORTB, 0, 0);
227 at91_set_a_periph(AT91_PIO_PORTB, 6, 0);
228 at91_set_a_periph(AT91_PIO_PORTB, 8, 0);
229 at91_set_a_periph(AT91_PIO_PORTB, 9, 0);
230 at91_set_a_periph(AT91_PIO_PORTB, 7, 0);
231 at91_set_a_periph(AT91_PIO_PORTB, 2, 0);
232 at91_set_a_periph(AT91_PIO_PORTB, 12, 0);
233 at91_set_a_periph(AT91_PIO_PORTB, 13, 0);
234 at91_set_a_periph(AT91_PIO_PORTB, 17, 0);
235 at91_set_a_periph(AT91_PIO_PORTB, 16, 0);
236
237
238 at91_periph_clk_enable(ATMEL_ID_GMAC0);
239}
240#endif
241
242static void ma5d4evk_serial_hw_init(void)
243{
244
245 at91_set_a_periph(AT91_PIO_PORTD, 13, 1);
246 at91_set_a_periph(AT91_PIO_PORTD, 12, 0);
247 at91_set_a_periph(AT91_PIO_PORTD, 11, 0);
248 at91_set_a_periph(AT91_PIO_PORTD, 10, 0);
249 at91_periph_clk_enable(ATMEL_ID_USART0);
250
251
252 at91_set_a_periph(AT91_PIO_PORTD, 17, 1);
253 at91_set_a_periph(AT91_PIO_PORTD, 16, 0);
254 at91_set_a_periph(AT91_PIO_PORTD, 15, 0);
255 at91_set_a_periph(AT91_PIO_PORTD, 14, 0);
256 at91_periph_clk_enable(ATMEL_ID_USART1);
257}
258
259int board_early_init_f(void)
260{
261 at91_periph_clk_enable(ATMEL_ID_PIOA);
262 at91_periph_clk_enable(ATMEL_ID_PIOB);
263 at91_periph_clk_enable(ATMEL_ID_PIOC);
264 at91_periph_clk_enable(ATMEL_ID_PIOD);
265 at91_periph_clk_enable(ATMEL_ID_PIOE);
266
267
268 at91_set_pio_output(AT91_PIO_PORTD, 28, 0);
269 at91_set_pio_output(AT91_PIO_PORTD, 29, 0);
270 at91_set_pio_output(AT91_PIO_PORTD, 30, 0);
271
272
273 at91_set_pio_output(AT91_PIO_PORTB, 21, 0);
274 udelay(100);
275 at91_set_pio_output(AT91_PIO_PORTB, 21, 1);
276 at91_set_pio_pulldown(AT91_PIO_PORTB, 21, 0);
277
278 ma5d4evk_serial_hw_init();
279
280 return 0;
281}
282
283int board_init(void)
284{
285
286 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
287
288#ifdef CONFIG_ATMEL_SPI
289 ma5d4evk_spi0_hw_init();
290#endif
291#ifdef CONFIG_GENERIC_ATMEL_MCI
292 ma5d4evk_mci0_hw_init();
293 ma5d4evk_mci1_hw_init();
294#endif
295#ifdef CONFIG_MACB
296 ma5d4evk_macb0_hw_init();
297#endif
298#ifdef CONFIG_LCD
299 ma5d4evk_lcd_hw_init();
300#endif
301#ifdef CONFIG_CMD_USB
302 ma5d4evk_usb_hw_init();
303#endif
304#ifdef CONFIG_USB_GADGET_ATMEL_USBA
305 at91_udp_hw_init();
306#endif
307
308 return 0;
309}
310
311int dram_init(void)
312{
313 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
314 CONFIG_SYS_SDRAM_SIZE);
315 return 0;
316}
317
318int board_eth_init(bd_t *bis)
319{
320 int rc = 0;
321
322#ifdef CONFIG_MACB
323 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_GMAC0, 0x00);
324#endif
325
326#ifdef CONFIG_USB_GADGET_ATMEL_USBA
327 usba_udc_probe(&pdata);
328#ifdef CONFIG_USB_ETH_RNDIS
329 usb_eth_initialize(bis);
330#endif
331#endif
332
333 return rc;
334}
335
336
337#ifdef CONFIG_SPL_BUILD
338void spl_board_init(void)
339{
340 ma5d4evk_spi0_hw_init();
341}
342
343static void ddr2_conf(struct atmel_mpddrc_config *ddr2)
344{
345 ddr2->md = (ATMEL_MPDDRC_MD_DBW_32_BITS | ATMEL_MPDDRC_MD_DDR2_SDRAM);
346
347 ddr2->cr = (ATMEL_MPDDRC_CR_NC_COL_10 |
348 ATMEL_MPDDRC_CR_NR_ROW_13 |
349 ATMEL_MPDDRC_CR_CAS_DDR_CAS3 |
350 ATMEL_MPDDRC_CR_NB_8BANKS |
351 ATMEL_MPDDRC_CR_NDQS_DISABLED |
352 ATMEL_MPDDRC_CR_DECOD_INTERLEAVED |
353 ATMEL_MPDDRC_CR_UNAL_SUPPORTED);
354
355 ddr2->rtr = 0x2b0;
356
357 ddr2->tpr0 = (8 << ATMEL_MPDDRC_TPR0_TRAS_OFFSET |
358 3 << ATMEL_MPDDRC_TPR0_TRCD_OFFSET |
359 3 << ATMEL_MPDDRC_TPR0_TWR_OFFSET |
360 10 << ATMEL_MPDDRC_TPR0_TRC_OFFSET |
361 3 << ATMEL_MPDDRC_TPR0_TRP_OFFSET |
362 2 << ATMEL_MPDDRC_TPR0_TRRD_OFFSET |
363 2 << ATMEL_MPDDRC_TPR0_TWTR_OFFSET |
364 2 << ATMEL_MPDDRC_TPR0_TMRD_OFFSET);
365
366 ddr2->tpr1 = (2 << ATMEL_MPDDRC_TPR1_TXP_OFFSET |
367 200 << ATMEL_MPDDRC_TPR1_TXSRD_OFFSET |
368 25 << ATMEL_MPDDRC_TPR1_TXSNR_OFFSET |
369 23 << ATMEL_MPDDRC_TPR1_TRFC_OFFSET);
370
371 ddr2->tpr2 = (7 << ATMEL_MPDDRC_TPR2_TFAW_OFFSET |
372 2 << ATMEL_MPDDRC_TPR2_TRTP_OFFSET |
373 3 << ATMEL_MPDDRC_TPR2_TRPA_OFFSET |
374 2 << ATMEL_MPDDRC_TPR2_TXARDS_OFFSET |
375 8 << ATMEL_MPDDRC_TPR2_TXARD_OFFSET);
376}
377
378void mem_init(void)
379{
380 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
381 struct atmel_mpddrc_config ddr2;
382
383 ddr2_conf(&ddr2);
384
385
386 at91_periph_clk_enable(ATMEL_ID_MPDDRC);
387 writel(AT91_PMC_DDR, &pmc->scer);
388
389
390 ddr2_init(ATMEL_BASE_MPDDRC, ATMEL_BASE_DDRCS, &ddr2);
391}
392
393void at91_pmc_init(void)
394{
395 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
396 u32 tmp;
397
398 tmp = AT91_PMC_PLLAR_29 |
399 AT91_PMC_PLLXR_PLLCOUNT(0x3f) |
400 AT91_PMC_PLLXR_MUL(87) |
401 AT91_PMC_PLLXR_DIV(1);
402 at91_plla_init(tmp);
403
404 writel(0x0 << 8, &pmc->pllicpr);
405
406 tmp = AT91_PMC_MCKR_H32MXDIV |
407 AT91_PMC_MCKR_PLLADIV_2 |
408 AT91_PMC_MCKR_MDIV_3 |
409 AT91_PMC_MCKR_CSS_PLLA;
410 at91_mck_init(tmp);
411}
412#endif
413