blob: 1f89b206c26ff8fa7b35747cdf44f01fdd908f8b [file] [log] [blame]
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001/*
2 * On-Chip devices setup code for the AT91SAM9G45 family
3 *
4 * Copyright (C) 2009 Atmel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 */
12#include <asm/mach/arch.h>
13#include <asm/mach/map.h>
14
15#include <linux/dma-mapping.h>
Russell King2f8163b2011-07-26 10:53:52 +010016#include <linux/gpio.h>
Nicolas Ferre789b23b2009-06-26 15:36:58 +010017#include <linux/platform_device.h>
18#include <linux/i2c-gpio.h>
Nicolas Ferre75305d72010-10-22 18:27:48 +020019#include <linux/atmel-mci.h>
Nicolas Ferre789b23b2009-06-26 15:36:58 +010020
21#include <linux/fb.h>
22#include <video/atmel_lcdc.h>
23
24#include <mach/board.h>
Nicolas Ferre789b23b2009-06-26 15:36:58 +010025#include <mach/at91sam9g45.h>
26#include <mach/at91sam9g45_matrix.h>
27#include <mach/at91sam9_smc.h>
Nicolas Ferre40262b22009-07-24 11:43:01 +010028#include <mach/at_hdmac.h>
Nicolas Ferre75305d72010-10-22 18:27:48 +020029#include <mach/atmel-mci.h>
Nicolas Ferre789b23b2009-06-26 15:36:58 +010030
31#include "generic.h"
32
33
34/* --------------------------------------------------------------------
Nicolas Ferre40262b22009-07-24 11:43:01 +010035 * HDMAC - AHB DMA Controller
36 * -------------------------------------------------------------------- */
37
38#if defined(CONFIG_AT_HDMAC) || defined(CONFIG_AT_HDMAC_MODULE)
39static u64 hdmac_dmamask = DMA_BIT_MASK(32);
40
41static struct at_dma_platform_data atdma_pdata = {
42 .nr_channels = 8,
43};
44
45static struct resource hdmac_resources[] = {
46 [0] = {
Jean-Christophe PLAGNIOL-VILLARD9627b202011-10-15 15:47:51 +080047 .start = AT91SAM9G45_BASE_DMA,
48 .end = AT91SAM9G45_BASE_DMA + SZ_512 - 1,
Nicolas Ferre40262b22009-07-24 11:43:01 +010049 .flags = IORESOURCE_MEM,
50 },
Nicolas Ferre8d2602e2010-08-20 16:44:33 +020051 [1] = {
Nicolas Ferre40262b22009-07-24 11:43:01 +010052 .start = AT91SAM9G45_ID_DMA,
53 .end = AT91SAM9G45_ID_DMA,
54 .flags = IORESOURCE_IRQ,
55 },
56};
57
58static struct platform_device at_hdmac_device = {
59 .name = "at_hdmac",
60 .id = -1,
61 .dev = {
62 .dma_mask = &hdmac_dmamask,
63 .coherent_dma_mask = DMA_BIT_MASK(32),
64 .platform_data = &atdma_pdata,
65 },
66 .resource = hdmac_resources,
67 .num_resources = ARRAY_SIZE(hdmac_resources),
68};
69
70void __init at91_add_device_hdmac(void)
71{
72 dma_cap_set(DMA_MEMCPY, atdma_pdata.cap_mask);
73 dma_cap_set(DMA_SLAVE, atdma_pdata.cap_mask);
74 platform_device_register(&at_hdmac_device);
75}
76#else
77void __init at91_add_device_hdmac(void) {}
78#endif
79
80
81/* --------------------------------------------------------------------
Nicolas Ferre789b23b2009-06-26 15:36:58 +010082 * USB Host (OHCI)
83 * -------------------------------------------------------------------- */
84
85#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
86static u64 ohci_dmamask = DMA_BIT_MASK(32);
87static struct at91_usbh_data usbh_ohci_data;
88
89static struct resource usbh_ohci_resources[] = {
90 [0] = {
91 .start = AT91SAM9G45_OHCI_BASE,
92 .end = AT91SAM9G45_OHCI_BASE + SZ_1M - 1,
93 .flags = IORESOURCE_MEM,
94 },
95 [1] = {
96 .start = AT91SAM9G45_ID_UHPHS,
97 .end = AT91SAM9G45_ID_UHPHS,
98 .flags = IORESOURCE_IRQ,
99 },
100};
101
102static struct platform_device at91_usbh_ohci_device = {
103 .name = "at91_ohci",
104 .id = -1,
105 .dev = {
106 .dma_mask = &ohci_dmamask,
107 .coherent_dma_mask = DMA_BIT_MASK(32),
108 .platform_data = &usbh_ohci_data,
109 },
110 .resource = usbh_ohci_resources,
111 .num_resources = ARRAY_SIZE(usbh_ohci_resources),
112};
113
114void __init at91_add_device_usbh_ohci(struct at91_usbh_data *data)
115{
116 int i;
117
118 if (!data)
119 return;
120
121 /* Enable VBus control for UHP ports */
122 for (i = 0; i < data->ports; i++) {
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800123 if (gpio_is_valid(data->vbus_pin[i]))
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100124 at91_set_gpio_output(data->vbus_pin[i], 0);
125 }
126
Thomas Petazzoni1fcaea72011-07-13 11:29:18 +0200127 /* Enable overcurrent notification */
128 for (i = 0; i < data->ports; i++) {
129 if (data->overcurrent_pin[i])
130 at91_set_gpio_input(data->overcurrent_pin[i], 1);
131 }
132
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100133 usbh_ohci_data = *data;
134 platform_device_register(&at91_usbh_ohci_device);
135}
136#else
137void __init at91_add_device_usbh_ohci(struct at91_usbh_data *data) {}
138#endif
139
140
141/* --------------------------------------------------------------------
Nicolas Ferref51f78c2009-09-25 12:11:32 +0100142 * USB Host HS (EHCI)
143 * Needs an OHCI host for low and full speed management
144 * -------------------------------------------------------------------- */
145
146#if defined(CONFIG_USB_EHCI_HCD) || defined(CONFIG_USB_EHCI_HCD_MODULE)
147static u64 ehci_dmamask = DMA_BIT_MASK(32);
148static struct at91_usbh_data usbh_ehci_data;
149
150static struct resource usbh_ehci_resources[] = {
151 [0] = {
152 .start = AT91SAM9G45_EHCI_BASE,
153 .end = AT91SAM9G45_EHCI_BASE + SZ_1M - 1,
154 .flags = IORESOURCE_MEM,
155 },
156 [1] = {
157 .start = AT91SAM9G45_ID_UHPHS,
158 .end = AT91SAM9G45_ID_UHPHS,
159 .flags = IORESOURCE_IRQ,
160 },
161};
162
163static struct platform_device at91_usbh_ehci_device = {
164 .name = "atmel-ehci",
165 .id = -1,
166 .dev = {
167 .dma_mask = &ehci_dmamask,
168 .coherent_dma_mask = DMA_BIT_MASK(32),
169 .platform_data = &usbh_ehci_data,
170 },
171 .resource = usbh_ehci_resources,
172 .num_resources = ARRAY_SIZE(usbh_ehci_resources),
173};
174
175void __init at91_add_device_usbh_ehci(struct at91_usbh_data *data)
176{
177 int i;
178
179 if (!data)
180 return;
181
182 /* Enable VBus control for UHP ports */
183 for (i = 0; i < data->ports; i++) {
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800184 if (gpio_is_valid(data->vbus_pin[i]))
Nicolas Ferref51f78c2009-09-25 12:11:32 +0100185 at91_set_gpio_output(data->vbus_pin[i], 0);
186 }
187
188 usbh_ehci_data = *data;
Nicolas Ferref51f78c2009-09-25 12:11:32 +0100189 platform_device_register(&at91_usbh_ehci_device);
190}
191#else
192void __init at91_add_device_usbh_ehci(struct at91_usbh_data *data) {}
193#endif
194
195
196/* --------------------------------------------------------------------
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100197 * USB HS Device (Gadget)
198 * -------------------------------------------------------------------- */
199
Jochen Friedrichdd0b3822011-10-25 20:51:06 +0200200#if defined(CONFIG_USB_ATMEL_USBA) || defined(CONFIG_USB_ATMEL_USBA_MODULE)
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100201static struct resource usba_udc_resources[] = {
202 [0] = {
203 .start = AT91SAM9G45_UDPHS_FIFO,
204 .end = AT91SAM9G45_UDPHS_FIFO + SZ_512K - 1,
205 .flags = IORESOURCE_MEM,
206 },
207 [1] = {
208 .start = AT91SAM9G45_BASE_UDPHS,
209 .end = AT91SAM9G45_BASE_UDPHS + SZ_1K - 1,
210 .flags = IORESOURCE_MEM,
211 },
212 [2] = {
213 .start = AT91SAM9G45_ID_UDPHS,
214 .end = AT91SAM9G45_ID_UDPHS,
215 .flags = IORESOURCE_IRQ,
216 },
217};
218
219#define EP(nam, idx, maxpkt, maxbk, dma, isoc) \
220 [idx] = { \
221 .name = nam, \
222 .index = idx, \
223 .fifo_size = maxpkt, \
224 .nr_banks = maxbk, \
225 .can_dma = dma, \
226 .can_isoc = isoc, \
227 }
228
229static struct usba_ep_data usba_udc_ep[] __initdata = {
230 EP("ep0", 0, 64, 1, 0, 0),
231 EP("ep1", 1, 1024, 2, 1, 1),
232 EP("ep2", 2, 1024, 2, 1, 1),
233 EP("ep3", 3, 1024, 3, 1, 0),
234 EP("ep4", 4, 1024, 3, 1, 0),
235 EP("ep5", 5, 1024, 3, 1, 1),
236 EP("ep6", 6, 1024, 3, 1, 1),
237};
238
239#undef EP
240
241/*
242 * pdata doesn't have room for any endpoints, so we need to
243 * append room for the ones we need right after it.
244 */
245static struct {
246 struct usba_platform_data pdata;
247 struct usba_ep_data ep[7];
248} usba_udc_data;
249
250static struct platform_device at91_usba_udc_device = {
251 .name = "atmel_usba_udc",
252 .id = -1,
253 .dev = {
254 .platform_data = &usba_udc_data.pdata,
255 },
256 .resource = usba_udc_resources,
257 .num_resources = ARRAY_SIZE(usba_udc_resources),
258};
259
260void __init at91_add_device_usba(struct usba_platform_data *data)
261{
262 usba_udc_data.pdata.vbus_pin = -EINVAL;
263 usba_udc_data.pdata.num_ep = ARRAY_SIZE(usba_udc_ep);
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700264 memcpy(usba_udc_data.ep, usba_udc_ep, sizeof(usba_udc_ep));
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100265
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800266 if (data && gpio_is_valid(data->vbus_pin)) {
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100267 at91_set_gpio_input(data->vbus_pin, 0);
268 at91_set_deglitch(data->vbus_pin, 1);
269 usba_udc_data.pdata.vbus_pin = data->vbus_pin;
270 }
271
272 /* Pullup pin is handled internally by USB device peripheral */
273
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100274 platform_device_register(&at91_usba_udc_device);
275}
276#else
277void __init at91_add_device_usba(struct usba_platform_data *data) {}
278#endif
279
280
281/* --------------------------------------------------------------------
282 * Ethernet
283 * -------------------------------------------------------------------- */
284
285#if defined(CONFIG_MACB) || defined(CONFIG_MACB_MODULE)
286static u64 eth_dmamask = DMA_BIT_MASK(32);
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000287static struct macb_platform_data eth_data;
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100288
289static struct resource eth_resources[] = {
290 [0] = {
291 .start = AT91SAM9G45_BASE_EMAC,
292 .end = AT91SAM9G45_BASE_EMAC + SZ_16K - 1,
293 .flags = IORESOURCE_MEM,
294 },
295 [1] = {
296 .start = AT91SAM9G45_ID_EMAC,
297 .end = AT91SAM9G45_ID_EMAC,
298 .flags = IORESOURCE_IRQ,
299 },
300};
301
302static struct platform_device at91sam9g45_eth_device = {
303 .name = "macb",
304 .id = -1,
305 .dev = {
306 .dma_mask = &eth_dmamask,
307 .coherent_dma_mask = DMA_BIT_MASK(32),
308 .platform_data = &eth_data,
309 },
310 .resource = eth_resources,
311 .num_resources = ARRAY_SIZE(eth_resources),
312};
313
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000314void __init at91_add_device_eth(struct macb_platform_data *data)
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100315{
316 if (!data)
317 return;
318
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800319 if (gpio_is_valid(data->phy_irq_pin)) {
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100320 at91_set_gpio_input(data->phy_irq_pin, 0);
321 at91_set_deglitch(data->phy_irq_pin, 1);
322 }
323
324 /* Pins used for MII and RMII */
325 at91_set_A_periph(AT91_PIN_PA17, 0); /* ETXCK_EREFCK */
326 at91_set_A_periph(AT91_PIN_PA15, 0); /* ERXDV */
327 at91_set_A_periph(AT91_PIN_PA12, 0); /* ERX0 */
328 at91_set_A_periph(AT91_PIN_PA13, 0); /* ERX1 */
329 at91_set_A_periph(AT91_PIN_PA16, 0); /* ERXER */
330 at91_set_A_periph(AT91_PIN_PA14, 0); /* ETXEN */
331 at91_set_A_periph(AT91_PIN_PA10, 0); /* ETX0 */
332 at91_set_A_periph(AT91_PIN_PA11, 0); /* ETX1 */
333 at91_set_A_periph(AT91_PIN_PA19, 0); /* EMDIO */
334 at91_set_A_periph(AT91_PIN_PA18, 0); /* EMDC */
335
336 if (!data->is_rmii) {
337 at91_set_B_periph(AT91_PIN_PA29, 0); /* ECRS */
338 at91_set_B_periph(AT91_PIN_PA30, 0); /* ECOL */
339 at91_set_B_periph(AT91_PIN_PA8, 0); /* ERX2 */
340 at91_set_B_periph(AT91_PIN_PA9, 0); /* ERX3 */
341 at91_set_B_periph(AT91_PIN_PA28, 0); /* ERXCK */
342 at91_set_B_periph(AT91_PIN_PA6, 0); /* ETX2 */
343 at91_set_B_periph(AT91_PIN_PA7, 0); /* ETX3 */
344 at91_set_B_periph(AT91_PIN_PA27, 0); /* ETXER */
345 }
346
347 eth_data = *data;
348 platform_device_register(&at91sam9g45_eth_device);
349}
350#else
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000351void __init at91_add_device_eth(struct macb_platform_data *data) {}
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100352#endif
353
354
355/* --------------------------------------------------------------------
Nicolas Ferre75305d72010-10-22 18:27:48 +0200356 * MMC / SD
357 * -------------------------------------------------------------------- */
358
359#if defined(CONFIG_MMC_ATMELMCI) || defined(CONFIG_MMC_ATMELMCI_MODULE)
360static u64 mmc_dmamask = DMA_BIT_MASK(32);
361static struct mci_platform_data mmc0_data, mmc1_data;
362
363static struct resource mmc0_resources[] = {
364 [0] = {
365 .start = AT91SAM9G45_BASE_MCI0,
366 .end = AT91SAM9G45_BASE_MCI0 + SZ_16K - 1,
367 .flags = IORESOURCE_MEM,
368 },
369 [1] = {
370 .start = AT91SAM9G45_ID_MCI0,
371 .end = AT91SAM9G45_ID_MCI0,
372 .flags = IORESOURCE_IRQ,
373 },
374};
375
376static struct platform_device at91sam9g45_mmc0_device = {
377 .name = "atmel_mci",
378 .id = 0,
379 .dev = {
380 .dma_mask = &mmc_dmamask,
381 .coherent_dma_mask = DMA_BIT_MASK(32),
382 .platform_data = &mmc0_data,
383 },
384 .resource = mmc0_resources,
385 .num_resources = ARRAY_SIZE(mmc0_resources),
386};
387
388static struct resource mmc1_resources[] = {
389 [0] = {
390 .start = AT91SAM9G45_BASE_MCI1,
391 .end = AT91SAM9G45_BASE_MCI1 + SZ_16K - 1,
392 .flags = IORESOURCE_MEM,
393 },
394 [1] = {
395 .start = AT91SAM9G45_ID_MCI1,
396 .end = AT91SAM9G45_ID_MCI1,
397 .flags = IORESOURCE_IRQ,
398 },
399};
400
401static struct platform_device at91sam9g45_mmc1_device = {
402 .name = "atmel_mci",
403 .id = 1,
404 .dev = {
405 .dma_mask = &mmc_dmamask,
406 .coherent_dma_mask = DMA_BIT_MASK(32),
407 .platform_data = &mmc1_data,
408 },
409 .resource = mmc1_resources,
410 .num_resources = ARRAY_SIZE(mmc1_resources),
411};
412
413/* Consider only one slot : slot 0 */
414void __init at91_add_device_mci(short mmc_id, struct mci_platform_data *data)
415{
416
417 if (!data)
418 return;
419
420 /* Must have at least one usable slot */
421 if (!data->slot[0].bus_width)
422 return;
423
424#if defined(CONFIG_AT_HDMAC) || defined(CONFIG_AT_HDMAC_MODULE)
425 {
426 struct at_dma_slave *atslave;
427 struct mci_dma_data *alt_atslave;
428
429 alt_atslave = kzalloc(sizeof(struct mci_dma_data), GFP_KERNEL);
430 atslave = &alt_atslave->sdata;
431
432 /* DMA slave channel configuration */
433 atslave->dma_dev = &at_hdmac_device.dev;
Nicolas Ferre75305d72010-10-22 18:27:48 +0200434 atslave->cfg = ATC_FIFOCFG_HALFFIFO
435 | ATC_SRC_H2SEL_HW | ATC_DST_H2SEL_HW;
436 atslave->ctrla = ATC_SCSIZE_16 | ATC_DCSIZE_16;
437 if (mmc_id == 0) /* MCI0 */
438 atslave->cfg |= ATC_SRC_PER(AT_DMA_ID_MCI0)
439 | ATC_DST_PER(AT_DMA_ID_MCI0);
440
441 else /* MCI1 */
442 atslave->cfg |= ATC_SRC_PER(AT_DMA_ID_MCI1)
443 | ATC_DST_PER(AT_DMA_ID_MCI1);
444
445 data->dma_slave = alt_atslave;
446 }
447#endif
448
449
450 /* input/irq */
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800451 if (gpio_is_valid(data->slot[0].detect_pin)) {
Nicolas Ferre75305d72010-10-22 18:27:48 +0200452 at91_set_gpio_input(data->slot[0].detect_pin, 1);
453 at91_set_deglitch(data->slot[0].detect_pin, 1);
454 }
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800455 if (gpio_is_valid(data->slot[0].wp_pin))
Nicolas Ferre75305d72010-10-22 18:27:48 +0200456 at91_set_gpio_input(data->slot[0].wp_pin, 1);
457
458 if (mmc_id == 0) { /* MCI0 */
459
460 /* CLK */
461 at91_set_A_periph(AT91_PIN_PA0, 0);
462
463 /* CMD */
464 at91_set_A_periph(AT91_PIN_PA1, 1);
465
466 /* DAT0, maybe DAT1..DAT3 and maybe DAT4..DAT7 */
467 at91_set_A_periph(AT91_PIN_PA2, 1);
468 if (data->slot[0].bus_width == 4) {
469 at91_set_A_periph(AT91_PIN_PA3, 1);
470 at91_set_A_periph(AT91_PIN_PA4, 1);
471 at91_set_A_periph(AT91_PIN_PA5, 1);
472 if (data->slot[0].bus_width == 8) {
473 at91_set_A_periph(AT91_PIN_PA6, 1);
474 at91_set_A_periph(AT91_PIN_PA7, 1);
475 at91_set_A_periph(AT91_PIN_PA8, 1);
476 at91_set_A_periph(AT91_PIN_PA9, 1);
477 }
478 }
479
480 mmc0_data = *data;
Nicolas Ferre75305d72010-10-22 18:27:48 +0200481 platform_device_register(&at91sam9g45_mmc0_device);
482
483 } else { /* MCI1 */
484
485 /* CLK */
486 at91_set_A_periph(AT91_PIN_PA31, 0);
487
488 /* CMD */
489 at91_set_A_periph(AT91_PIN_PA22, 1);
490
491 /* DAT0, maybe DAT1..DAT3 and maybe DAT4..DAT7 */
492 at91_set_A_periph(AT91_PIN_PA23, 1);
493 if (data->slot[0].bus_width == 4) {
494 at91_set_A_periph(AT91_PIN_PA24, 1);
495 at91_set_A_periph(AT91_PIN_PA25, 1);
496 at91_set_A_periph(AT91_PIN_PA26, 1);
497 if (data->slot[0].bus_width == 8) {
498 at91_set_A_periph(AT91_PIN_PA27, 1);
499 at91_set_A_periph(AT91_PIN_PA28, 1);
500 at91_set_A_periph(AT91_PIN_PA29, 1);
501 at91_set_A_periph(AT91_PIN_PA30, 1);
502 }
503 }
504
505 mmc1_data = *data;
Nicolas Ferre75305d72010-10-22 18:27:48 +0200506 platform_device_register(&at91sam9g45_mmc1_device);
507
508 }
509}
510#else
511void __init at91_add_device_mci(short mmc_id, struct mci_platform_data *data) {}
512#endif
513
514
515/* --------------------------------------------------------------------
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100516 * NAND / SmartMedia
517 * -------------------------------------------------------------------- */
518
519#if defined(CONFIG_MTD_NAND_ATMEL) || defined(CONFIG_MTD_NAND_ATMEL_MODULE)
520static struct atmel_nand_data nand_data;
521
522#define NAND_BASE AT91_CHIPSELECT_3
523
524static struct resource nand_resources[] = {
525 [0] = {
526 .start = NAND_BASE,
527 .end = NAND_BASE + SZ_256M - 1,
528 .flags = IORESOURCE_MEM,
529 },
530 [1] = {
Jean-Christophe PLAGNIOL-VILLARDd28edd12011-09-18 09:31:56 +0800531 .start = AT91SAM9G45_BASE_ECC,
532 .end = AT91SAM9G45_BASE_ECC + SZ_512 - 1,
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100533 .flags = IORESOURCE_MEM,
534 }
535};
536
537static struct platform_device at91sam9g45_nand_device = {
538 .name = "atmel_nand",
539 .id = -1,
540 .dev = {
541 .platform_data = &nand_data,
542 },
543 .resource = nand_resources,
544 .num_resources = ARRAY_SIZE(nand_resources),
545};
546
547void __init at91_add_device_nand(struct atmel_nand_data *data)
548{
549 unsigned long csa;
550
551 if (!data)
552 return;
553
554 csa = at91_sys_read(AT91_MATRIX_EBICSA);
555 at91_sys_write(AT91_MATRIX_EBICSA, csa | AT91_MATRIX_EBI_CS3A_SMC_SMARTMEDIA);
556
557 /* enable pin */
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800558 if (gpio_is_valid(data->enable_pin))
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100559 at91_set_gpio_output(data->enable_pin, 1);
560
561 /* ready/busy pin */
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800562 if (gpio_is_valid(data->rdy_pin))
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100563 at91_set_gpio_input(data->rdy_pin, 1);
564
565 /* card detect pin */
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800566 if (gpio_is_valid(data->det_pin))
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100567 at91_set_gpio_input(data->det_pin, 1);
568
569 nand_data = *data;
570 platform_device_register(&at91sam9g45_nand_device);
571}
572#else
573void __init at91_add_device_nand(struct atmel_nand_data *data) {}
574#endif
575
576
577/* --------------------------------------------------------------------
578 * TWI (i2c)
579 * -------------------------------------------------------------------- */
580
581/*
582 * Prefer the GPIO code since the TWI controller isn't robust
583 * (gets overruns and underruns under load) and can only issue
584 * repeated STARTs in one scenario (the driver doesn't yet handle them).
585 */
586#if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
587static struct i2c_gpio_platform_data pdata_i2c0 = {
588 .sda_pin = AT91_PIN_PA20,
589 .sda_is_open_drain = 1,
590 .scl_pin = AT91_PIN_PA21,
591 .scl_is_open_drain = 1,
Peter Korsgaard1d5b4c02010-09-22 21:29:59 +0100592 .udelay = 5, /* ~100 kHz */
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100593};
594
595static struct platform_device at91sam9g45_twi0_device = {
596 .name = "i2c-gpio",
597 .id = 0,
598 .dev.platform_data = &pdata_i2c0,
599};
600
601static struct i2c_gpio_platform_data pdata_i2c1 = {
602 .sda_pin = AT91_PIN_PB10,
603 .sda_is_open_drain = 1,
604 .scl_pin = AT91_PIN_PB11,
605 .scl_is_open_drain = 1,
Peter Korsgaard1d5b4c02010-09-22 21:29:59 +0100606 .udelay = 5, /* ~100 kHz */
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100607};
608
609static struct platform_device at91sam9g45_twi1_device = {
610 .name = "i2c-gpio",
611 .id = 1,
612 .dev.platform_data = &pdata_i2c1,
613};
614
615void __init at91_add_device_i2c(short i2c_id, struct i2c_board_info *devices, int nr_devices)
616{
617 i2c_register_board_info(i2c_id, devices, nr_devices);
618
619 if (i2c_id == 0) {
620 at91_set_GPIO_periph(AT91_PIN_PA20, 1); /* TWD (SDA) */
621 at91_set_multi_drive(AT91_PIN_PA20, 1);
622
623 at91_set_GPIO_periph(AT91_PIN_PA21, 1); /* TWCK (SCL) */
624 at91_set_multi_drive(AT91_PIN_PA21, 1);
625
626 platform_device_register(&at91sam9g45_twi0_device);
627 } else {
628 at91_set_GPIO_periph(AT91_PIN_PB10, 1); /* TWD (SDA) */
629 at91_set_multi_drive(AT91_PIN_PB10, 1);
630
631 at91_set_GPIO_periph(AT91_PIN_PB11, 1); /* TWCK (SCL) */
632 at91_set_multi_drive(AT91_PIN_PB11, 1);
633
634 platform_device_register(&at91sam9g45_twi1_device);
635 }
636}
637
638#elif defined(CONFIG_I2C_AT91) || defined(CONFIG_I2C_AT91_MODULE)
639static struct resource twi0_resources[] = {
640 [0] = {
641 .start = AT91SAM9G45_BASE_TWI0,
642 .end = AT91SAM9G45_BASE_TWI0 + SZ_16K - 1,
643 .flags = IORESOURCE_MEM,
644 },
645 [1] = {
646 .start = AT91SAM9G45_ID_TWI0,
647 .end = AT91SAM9G45_ID_TWI0,
648 .flags = IORESOURCE_IRQ,
649 },
650};
651
652static struct platform_device at91sam9g45_twi0_device = {
653 .name = "at91_i2c",
654 .id = 0,
655 .resource = twi0_resources,
656 .num_resources = ARRAY_SIZE(twi0_resources),
657};
658
659static struct resource twi1_resources[] = {
660 [0] = {
661 .start = AT91SAM9G45_BASE_TWI1,
662 .end = AT91SAM9G45_BASE_TWI1 + SZ_16K - 1,
663 .flags = IORESOURCE_MEM,
664 },
665 [1] = {
666 .start = AT91SAM9G45_ID_TWI1,
667 .end = AT91SAM9G45_ID_TWI1,
668 .flags = IORESOURCE_IRQ,
669 },
670};
671
672static struct platform_device at91sam9g45_twi1_device = {
673 .name = "at91_i2c",
674 .id = 1,
675 .resource = twi1_resources,
676 .num_resources = ARRAY_SIZE(twi1_resources),
677};
678
679void __init at91_add_device_i2c(short i2c_id, struct i2c_board_info *devices, int nr_devices)
680{
681 i2c_register_board_info(i2c_id, devices, nr_devices);
682
683 /* pins used for TWI interface */
684 if (i2c_id == 0) {
685 at91_set_A_periph(AT91_PIN_PA20, 0); /* TWD */
686 at91_set_multi_drive(AT91_PIN_PA20, 1);
687
688 at91_set_A_periph(AT91_PIN_PA21, 0); /* TWCK */
689 at91_set_multi_drive(AT91_PIN_PA21, 1);
690
691 platform_device_register(&at91sam9g45_twi0_device);
692 } else {
693 at91_set_A_periph(AT91_PIN_PB10, 0); /* TWD */
694 at91_set_multi_drive(AT91_PIN_PB10, 1);
695
696 at91_set_A_periph(AT91_PIN_PB11, 0); /* TWCK */
697 at91_set_multi_drive(AT91_PIN_PB11, 1);
698
699 platform_device_register(&at91sam9g45_twi1_device);
700 }
701}
702#else
703void __init at91_add_device_i2c(short i2c_id, struct i2c_board_info *devices, int nr_devices) {}
704#endif
705
706
707/* --------------------------------------------------------------------
708 * SPI
709 * -------------------------------------------------------------------- */
710
711#if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
712static u64 spi_dmamask = DMA_BIT_MASK(32);
713
714static struct resource spi0_resources[] = {
715 [0] = {
716 .start = AT91SAM9G45_BASE_SPI0,
717 .end = AT91SAM9G45_BASE_SPI0 + SZ_16K - 1,
718 .flags = IORESOURCE_MEM,
719 },
720 [1] = {
721 .start = AT91SAM9G45_ID_SPI0,
722 .end = AT91SAM9G45_ID_SPI0,
723 .flags = IORESOURCE_IRQ,
724 },
725};
726
727static struct platform_device at91sam9g45_spi0_device = {
728 .name = "atmel_spi",
729 .id = 0,
730 .dev = {
731 .dma_mask = &spi_dmamask,
732 .coherent_dma_mask = DMA_BIT_MASK(32),
733 },
734 .resource = spi0_resources,
735 .num_resources = ARRAY_SIZE(spi0_resources),
736};
737
738static const unsigned spi0_standard_cs[4] = { AT91_PIN_PB3, AT91_PIN_PB18, AT91_PIN_PB19, AT91_PIN_PD27 };
739
740static struct resource spi1_resources[] = {
741 [0] = {
742 .start = AT91SAM9G45_BASE_SPI1,
743 .end = AT91SAM9G45_BASE_SPI1 + SZ_16K - 1,
744 .flags = IORESOURCE_MEM,
745 },
746 [1] = {
747 .start = AT91SAM9G45_ID_SPI1,
748 .end = AT91SAM9G45_ID_SPI1,
749 .flags = IORESOURCE_IRQ,
750 },
751};
752
753static struct platform_device at91sam9g45_spi1_device = {
754 .name = "atmel_spi",
755 .id = 1,
756 .dev = {
757 .dma_mask = &spi_dmamask,
758 .coherent_dma_mask = DMA_BIT_MASK(32),
759 },
760 .resource = spi1_resources,
761 .num_resources = ARRAY_SIZE(spi1_resources),
762};
763
764static const unsigned spi1_standard_cs[4] = { AT91_PIN_PB17, AT91_PIN_PD28, AT91_PIN_PD18, AT91_PIN_PD19 };
765
766void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices)
767{
768 int i;
769 unsigned long cs_pin;
770 short enable_spi0 = 0;
771 short enable_spi1 = 0;
772
773 /* Choose SPI chip-selects */
774 for (i = 0; i < nr_devices; i++) {
775 if (devices[i].controller_data)
776 cs_pin = (unsigned long) devices[i].controller_data;
777 else if (devices[i].bus_num == 0)
778 cs_pin = spi0_standard_cs[devices[i].chip_select];
779 else
780 cs_pin = spi1_standard_cs[devices[i].chip_select];
781
782 if (devices[i].bus_num == 0)
783 enable_spi0 = 1;
784 else
785 enable_spi1 = 1;
786
787 /* enable chip-select pin */
788 at91_set_gpio_output(cs_pin, 1);
789
790 /* pass chip-select pin to driver */
791 devices[i].controller_data = (void *) cs_pin;
792 }
793
794 spi_register_board_info(devices, nr_devices);
795
796 /* Configure SPI bus(es) */
797 if (enable_spi0) {
798 at91_set_A_periph(AT91_PIN_PB0, 0); /* SPI0_MISO */
799 at91_set_A_periph(AT91_PIN_PB1, 0); /* SPI0_MOSI */
800 at91_set_A_periph(AT91_PIN_PB2, 0); /* SPI0_SPCK */
801
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100802 platform_device_register(&at91sam9g45_spi0_device);
803 }
804 if (enable_spi1) {
805 at91_set_A_periph(AT91_PIN_PB14, 0); /* SPI1_MISO */
806 at91_set_A_periph(AT91_PIN_PB15, 0); /* SPI1_MOSI */
807 at91_set_A_periph(AT91_PIN_PB16, 0); /* SPI1_SPCK */
808
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100809 platform_device_register(&at91sam9g45_spi1_device);
810 }
811}
812#else
813void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices) {}
814#endif
815
816
817/* --------------------------------------------------------------------
Nicolas Ferre378ac652009-09-18 16:14:22 +0100818 * AC97
819 * -------------------------------------------------------------------- */
820
821#if defined(CONFIG_SND_ATMEL_AC97C) || defined(CONFIG_SND_ATMEL_AC97C_MODULE)
822static u64 ac97_dmamask = DMA_BIT_MASK(32);
823static struct ac97c_platform_data ac97_data;
824
825static struct resource ac97_resources[] = {
826 [0] = {
827 .start = AT91SAM9G45_BASE_AC97C,
828 .end = AT91SAM9G45_BASE_AC97C + SZ_16K - 1,
829 .flags = IORESOURCE_MEM,
830 },
831 [1] = {
832 .start = AT91SAM9G45_ID_AC97C,
833 .end = AT91SAM9G45_ID_AC97C,
834 .flags = IORESOURCE_IRQ,
835 },
836};
837
838static struct platform_device at91sam9g45_ac97_device = {
839 .name = "atmel_ac97c",
840 .id = 0,
841 .dev = {
842 .dma_mask = &ac97_dmamask,
843 .coherent_dma_mask = DMA_BIT_MASK(32),
844 .platform_data = &ac97_data,
845 },
846 .resource = ac97_resources,
847 .num_resources = ARRAY_SIZE(ac97_resources),
848};
849
850void __init at91_add_device_ac97(struct ac97c_platform_data *data)
851{
852 if (!data)
853 return;
854
855 at91_set_A_periph(AT91_PIN_PD8, 0); /* AC97FS */
856 at91_set_A_periph(AT91_PIN_PD9, 0); /* AC97CK */
857 at91_set_A_periph(AT91_PIN_PD7, 0); /* AC97TX */
858 at91_set_A_periph(AT91_PIN_PD6, 0); /* AC97RX */
859
860 /* reset */
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800861 if (gpio_is_valid(data->reset_pin))
Nicolas Ferre378ac652009-09-18 16:14:22 +0100862 at91_set_gpio_output(data->reset_pin, 0);
863
864 ac97_data = *data;
865 platform_device_register(&at91sam9g45_ac97_device);
866}
867#else
868void __init at91_add_device_ac97(struct ac97c_platform_data *data) {}
869#endif
870
871
872/* --------------------------------------------------------------------
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100873 * LCD Controller
874 * -------------------------------------------------------------------- */
875
876#if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
877static u64 lcdc_dmamask = DMA_BIT_MASK(32);
878static struct atmel_lcdfb_info lcdc_data;
879
880static struct resource lcdc_resources[] = {
881 [0] = {
882 .start = AT91SAM9G45_LCDC_BASE,
883 .end = AT91SAM9G45_LCDC_BASE + SZ_4K - 1,
884 .flags = IORESOURCE_MEM,
885 },
886 [1] = {
887 .start = AT91SAM9G45_ID_LCDC,
888 .end = AT91SAM9G45_ID_LCDC,
889 .flags = IORESOURCE_IRQ,
890 },
891};
892
893static struct platform_device at91_lcdc_device = {
894 .name = "atmel_lcdfb",
895 .id = 0,
896 .dev = {
897 .dma_mask = &lcdc_dmamask,
898 .coherent_dma_mask = DMA_BIT_MASK(32),
899 .platform_data = &lcdc_data,
900 },
901 .resource = lcdc_resources,
902 .num_resources = ARRAY_SIZE(lcdc_resources),
903};
904
905void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data)
906{
907 if (!data)
908 return;
909
910 at91_set_A_periph(AT91_PIN_PE0, 0); /* LCDDPWR */
911
912 at91_set_A_periph(AT91_PIN_PE2, 0); /* LCDCC */
913 at91_set_A_periph(AT91_PIN_PE3, 0); /* LCDVSYNC */
914 at91_set_A_periph(AT91_PIN_PE4, 0); /* LCDHSYNC */
915 at91_set_A_periph(AT91_PIN_PE5, 0); /* LCDDOTCK */
916 at91_set_A_periph(AT91_PIN_PE6, 0); /* LCDDEN */
917 at91_set_A_periph(AT91_PIN_PE7, 0); /* LCDD0 */
918 at91_set_A_periph(AT91_PIN_PE8, 0); /* LCDD1 */
919 at91_set_A_periph(AT91_PIN_PE9, 0); /* LCDD2 */
920 at91_set_A_periph(AT91_PIN_PE10, 0); /* LCDD3 */
921 at91_set_A_periph(AT91_PIN_PE11, 0); /* LCDD4 */
922 at91_set_A_periph(AT91_PIN_PE12, 0); /* LCDD5 */
923 at91_set_A_periph(AT91_PIN_PE13, 0); /* LCDD6 */
924 at91_set_A_periph(AT91_PIN_PE14, 0); /* LCDD7 */
925 at91_set_A_periph(AT91_PIN_PE15, 0); /* LCDD8 */
926 at91_set_A_periph(AT91_PIN_PE16, 0); /* LCDD9 */
927 at91_set_A_periph(AT91_PIN_PE17, 0); /* LCDD10 */
928 at91_set_A_periph(AT91_PIN_PE18, 0); /* LCDD11 */
929 at91_set_A_periph(AT91_PIN_PE19, 0); /* LCDD12 */
930 at91_set_A_periph(AT91_PIN_PE20, 0); /* LCDD13 */
931 at91_set_A_periph(AT91_PIN_PE21, 0); /* LCDD14 */
932 at91_set_A_periph(AT91_PIN_PE22, 0); /* LCDD15 */
933 at91_set_A_periph(AT91_PIN_PE23, 0); /* LCDD16 */
934 at91_set_A_periph(AT91_PIN_PE24, 0); /* LCDD17 */
935 at91_set_A_periph(AT91_PIN_PE25, 0); /* LCDD18 */
936 at91_set_A_periph(AT91_PIN_PE26, 0); /* LCDD19 */
937 at91_set_A_periph(AT91_PIN_PE27, 0); /* LCDD20 */
938 at91_set_A_periph(AT91_PIN_PE28, 0); /* LCDD21 */
939 at91_set_A_periph(AT91_PIN_PE29, 0); /* LCDD22 */
940 at91_set_A_periph(AT91_PIN_PE30, 0); /* LCDD23 */
941
942 lcdc_data = *data;
943 platform_device_register(&at91_lcdc_device);
944}
945#else
946void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data) {}
947#endif
948
949
950/* --------------------------------------------------------------------
951 * Timer/Counter block
952 * -------------------------------------------------------------------- */
953
954#ifdef CONFIG_ATMEL_TCLIB
955static struct resource tcb0_resources[] = {
956 [0] = {
957 .start = AT91SAM9G45_BASE_TCB0,
958 .end = AT91SAM9G45_BASE_TCB0 + SZ_16K - 1,
959 .flags = IORESOURCE_MEM,
960 },
961 [1] = {
962 .start = AT91SAM9G45_ID_TCB,
963 .end = AT91SAM9G45_ID_TCB,
964 .flags = IORESOURCE_IRQ,
965 },
966};
967
968static struct platform_device at91sam9g45_tcb0_device = {
969 .name = "atmel_tcb",
970 .id = 0,
971 .resource = tcb0_resources,
972 .num_resources = ARRAY_SIZE(tcb0_resources),
973};
974
975/* TCB1 begins with TC3 */
976static struct resource tcb1_resources[] = {
977 [0] = {
978 .start = AT91SAM9G45_BASE_TCB1,
979 .end = AT91SAM9G45_BASE_TCB1 + SZ_16K - 1,
980 .flags = IORESOURCE_MEM,
981 },
982 [1] = {
983 .start = AT91SAM9G45_ID_TCB,
984 .end = AT91SAM9G45_ID_TCB,
985 .flags = IORESOURCE_IRQ,
986 },
987};
988
989static struct platform_device at91sam9g45_tcb1_device = {
990 .name = "atmel_tcb",
991 .id = 1,
992 .resource = tcb1_resources,
993 .num_resources = ARRAY_SIZE(tcb1_resources),
994};
995
996static void __init at91_add_device_tc(void)
997{
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100998 platform_device_register(&at91sam9g45_tcb0_device);
Nicolas Ferre789b23b2009-06-26 15:36:58 +0100999 platform_device_register(&at91sam9g45_tcb1_device);
1000}
1001#else
1002static void __init at91_add_device_tc(void) { }
1003#endif
1004
1005
1006/* --------------------------------------------------------------------
1007 * RTC
1008 * -------------------------------------------------------------------- */
1009
1010#if defined(CONFIG_RTC_DRV_AT91RM9200) || defined(CONFIG_RTC_DRV_AT91RM9200_MODULE)
Jean-Christophe PLAGNIOL-VILLARDd28bdfc2011-11-14 14:24:53 +08001011static struct resource rtc_resources[] = {
1012 [0] = {
1013 .start = AT91SAM9G45_BASE_RTC,
1014 .end = AT91SAM9G45_BASE_RTC + SZ_256 - 1,
1015 .flags = IORESOURCE_MEM,
1016 },
1017 [1] = {
1018 .start = AT91_ID_SYS,
1019 .end = AT91_ID_SYS,
1020 .flags = IORESOURCE_IRQ,
1021 },
1022};
1023
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001024static struct platform_device at91sam9g45_rtc_device = {
1025 .name = "at91_rtc",
1026 .id = -1,
Jean-Christophe PLAGNIOL-VILLARDd28bdfc2011-11-14 14:24:53 +08001027 .resource = rtc_resources,
1028 .num_resources = ARRAY_SIZE(rtc_resources),
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001029};
1030
1031static void __init at91_add_device_rtc(void)
1032{
1033 platform_device_register(&at91sam9g45_rtc_device);
1034}
1035#else
1036static void __init at91_add_device_rtc(void) {}
1037#endif
1038
1039
1040/* --------------------------------------------------------------------
Nicolas Ferre985f37f2009-11-19 09:32:52 -08001041 * Touchscreen
1042 * -------------------------------------------------------------------- */
1043
1044#if defined(CONFIG_TOUCHSCREEN_ATMEL_TSADCC) || defined(CONFIG_TOUCHSCREEN_ATMEL_TSADCC_MODULE)
1045static u64 tsadcc_dmamask = DMA_BIT_MASK(32);
1046static struct at91_tsadcc_data tsadcc_data;
1047
1048static struct resource tsadcc_resources[] = {
1049 [0] = {
1050 .start = AT91SAM9G45_BASE_TSC,
1051 .end = AT91SAM9G45_BASE_TSC + SZ_16K - 1,
1052 .flags = IORESOURCE_MEM,
1053 },
1054 [1] = {
1055 .start = AT91SAM9G45_ID_TSC,
1056 .end = AT91SAM9G45_ID_TSC,
1057 .flags = IORESOURCE_IRQ,
1058 }
1059};
1060
1061static struct platform_device at91sam9g45_tsadcc_device = {
1062 .name = "atmel_tsadcc",
1063 .id = -1,
1064 .dev = {
1065 .dma_mask = &tsadcc_dmamask,
1066 .coherent_dma_mask = DMA_BIT_MASK(32),
1067 .platform_data = &tsadcc_data,
1068 },
1069 .resource = tsadcc_resources,
1070 .num_resources = ARRAY_SIZE(tsadcc_resources),
1071};
1072
1073void __init at91_add_device_tsadcc(struct at91_tsadcc_data *data)
1074{
1075 if (!data)
1076 return;
1077
1078 at91_set_gpio_input(AT91_PIN_PD20, 0); /* AD0_XR */
1079 at91_set_gpio_input(AT91_PIN_PD21, 0); /* AD1_XL */
1080 at91_set_gpio_input(AT91_PIN_PD22, 0); /* AD2_YT */
1081 at91_set_gpio_input(AT91_PIN_PD23, 0); /* AD3_TB */
1082
1083 tsadcc_data = *data;
1084 platform_device_register(&at91sam9g45_tsadcc_device);
1085}
1086#else
1087void __init at91_add_device_tsadcc(struct at91_tsadcc_data *data) {}
1088#endif
1089
1090
1091/* --------------------------------------------------------------------
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001092 * RTT
1093 * -------------------------------------------------------------------- */
1094
1095static struct resource rtt_resources[] = {
1096 {
Jean-Christophe PLAGNIOL-VILLARDeab5fd62011-09-18 10:12:00 +08001097 .start = AT91SAM9G45_BASE_RTT,
1098 .end = AT91SAM9G45_BASE_RTT + SZ_16 - 1,
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001099 .flags = IORESOURCE_MEM,
1100 }
1101};
1102
1103static struct platform_device at91sam9g45_rtt_device = {
1104 .name = "at91_rtt",
1105 .id = 0,
1106 .resource = rtt_resources,
1107 .num_resources = ARRAY_SIZE(rtt_resources),
1108};
1109
1110static void __init at91_add_device_rtt(void)
1111{
1112 platform_device_register(&at91sam9g45_rtt_device);
1113}
1114
1115
1116/* --------------------------------------------------------------------
Peter Korsgaard237a62a2011-10-06 17:41:33 +02001117 * TRNG
1118 * -------------------------------------------------------------------- */
1119
1120#if defined(CONFIG_HW_RANDOM_ATMEL) || defined(CONFIG_HW_RANDOM_ATMEL_MODULE)
1121static struct resource trng_resources[] = {
1122 {
1123 .start = AT91SAM9G45_BASE_TRNG,
1124 .end = AT91SAM9G45_BASE_TRNG + SZ_16K - 1,
1125 .flags = IORESOURCE_MEM,
1126 },
1127};
1128
1129static struct platform_device at91sam9g45_trng_device = {
1130 .name = "atmel-trng",
1131 .id = -1,
1132 .resource = trng_resources,
1133 .num_resources = ARRAY_SIZE(trng_resources),
1134};
1135
1136static void __init at91_add_device_trng(void)
1137{
1138 platform_device_register(&at91sam9g45_trng_device);
1139}
1140#else
1141static void __init at91_add_device_trng(void) {}
1142#endif
1143
1144/* --------------------------------------------------------------------
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001145 * Watchdog
1146 * -------------------------------------------------------------------- */
1147
Yegor Yefremov47263742009-10-20 08:39:41 +01001148#if defined(CONFIG_AT91SAM9X_WATCHDOG) || defined(CONFIG_AT91SAM9X_WATCHDOG_MODULE)
Jean-Christophe PLAGNIOL-VILLARDc1c30a22011-11-02 01:43:31 +08001149static struct resource wdt_resources[] = {
1150 {
1151 .start = AT91SAM9G45_BASE_WDT,
1152 .end = AT91SAM9G45_BASE_WDT + SZ_16 - 1,
1153 .flags = IORESOURCE_MEM,
1154 }
1155};
1156
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001157static struct platform_device at91sam9g45_wdt_device = {
1158 .name = "at91_wdt",
1159 .id = -1,
Jean-Christophe PLAGNIOL-VILLARDc1c30a22011-11-02 01:43:31 +08001160 .resource = wdt_resources,
1161 .num_resources = ARRAY_SIZE(wdt_resources),
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001162};
1163
1164static void __init at91_add_device_watchdog(void)
1165{
1166 platform_device_register(&at91sam9g45_wdt_device);
1167}
1168#else
1169static void __init at91_add_device_watchdog(void) {}
1170#endif
1171
1172
1173/* --------------------------------------------------------------------
1174 * PWM
1175 * --------------------------------------------------------------------*/
1176
1177#if defined(CONFIG_ATMEL_PWM) || defined(CONFIG_ATMEL_PWM_MODULE)
1178static u32 pwm_mask;
1179
1180static struct resource pwm_resources[] = {
1181 [0] = {
1182 .start = AT91SAM9G45_BASE_PWMC,
1183 .end = AT91SAM9G45_BASE_PWMC + SZ_16K - 1,
1184 .flags = IORESOURCE_MEM,
1185 },
1186 [1] = {
1187 .start = AT91SAM9G45_ID_PWMC,
1188 .end = AT91SAM9G45_ID_PWMC,
1189 .flags = IORESOURCE_IRQ,
1190 },
1191};
1192
1193static struct platform_device at91sam9g45_pwm0_device = {
1194 .name = "atmel_pwm",
1195 .id = -1,
1196 .dev = {
1197 .platform_data = &pwm_mask,
1198 },
1199 .resource = pwm_resources,
1200 .num_resources = ARRAY_SIZE(pwm_resources),
1201};
1202
1203void __init at91_add_device_pwm(u32 mask)
1204{
1205 if (mask & (1 << AT91_PWM0))
1206 at91_set_B_periph(AT91_PIN_PD24, 1); /* enable PWM0 */
1207
1208 if (mask & (1 << AT91_PWM1))
1209 at91_set_B_periph(AT91_PIN_PD31, 1); /* enable PWM1 */
1210
1211 if (mask & (1 << AT91_PWM2))
1212 at91_set_B_periph(AT91_PIN_PD26, 1); /* enable PWM2 */
1213
1214 if (mask & (1 << AT91_PWM3))
1215 at91_set_B_periph(AT91_PIN_PD0, 1); /* enable PWM3 */
1216
1217 pwm_mask = mask;
1218
1219 platform_device_register(&at91sam9g45_pwm0_device);
1220}
1221#else
1222void __init at91_add_device_pwm(u32 mask) {}
1223#endif
1224
1225
1226/* --------------------------------------------------------------------
1227 * SSC -- Synchronous Serial Controller
1228 * -------------------------------------------------------------------- */
1229
1230#if defined(CONFIG_ATMEL_SSC) || defined(CONFIG_ATMEL_SSC_MODULE)
1231static u64 ssc0_dmamask = DMA_BIT_MASK(32);
1232
1233static struct resource ssc0_resources[] = {
1234 [0] = {
1235 .start = AT91SAM9G45_BASE_SSC0,
1236 .end = AT91SAM9G45_BASE_SSC0 + SZ_16K - 1,
1237 .flags = IORESOURCE_MEM,
1238 },
1239 [1] = {
1240 .start = AT91SAM9G45_ID_SSC0,
1241 .end = AT91SAM9G45_ID_SSC0,
1242 .flags = IORESOURCE_IRQ,
1243 },
1244};
1245
1246static struct platform_device at91sam9g45_ssc0_device = {
1247 .name = "ssc",
1248 .id = 0,
1249 .dev = {
1250 .dma_mask = &ssc0_dmamask,
1251 .coherent_dma_mask = DMA_BIT_MASK(32),
1252 },
1253 .resource = ssc0_resources,
1254 .num_resources = ARRAY_SIZE(ssc0_resources),
1255};
1256
1257static inline void configure_ssc0_pins(unsigned pins)
1258{
1259 if (pins & ATMEL_SSC_TF)
1260 at91_set_A_periph(AT91_PIN_PD1, 1);
1261 if (pins & ATMEL_SSC_TK)
1262 at91_set_A_periph(AT91_PIN_PD0, 1);
1263 if (pins & ATMEL_SSC_TD)
1264 at91_set_A_periph(AT91_PIN_PD2, 1);
1265 if (pins & ATMEL_SSC_RD)
1266 at91_set_A_periph(AT91_PIN_PD3, 1);
1267 if (pins & ATMEL_SSC_RK)
1268 at91_set_A_periph(AT91_PIN_PD4, 1);
1269 if (pins & ATMEL_SSC_RF)
1270 at91_set_A_periph(AT91_PIN_PD5, 1);
1271}
1272
1273static u64 ssc1_dmamask = DMA_BIT_MASK(32);
1274
1275static struct resource ssc1_resources[] = {
1276 [0] = {
1277 .start = AT91SAM9G45_BASE_SSC1,
1278 .end = AT91SAM9G45_BASE_SSC1 + SZ_16K - 1,
1279 .flags = IORESOURCE_MEM,
1280 },
1281 [1] = {
1282 .start = AT91SAM9G45_ID_SSC1,
1283 .end = AT91SAM9G45_ID_SSC1,
1284 .flags = IORESOURCE_IRQ,
1285 },
1286};
1287
1288static struct platform_device at91sam9g45_ssc1_device = {
1289 .name = "ssc",
1290 .id = 1,
1291 .dev = {
1292 .dma_mask = &ssc1_dmamask,
1293 .coherent_dma_mask = DMA_BIT_MASK(32),
1294 },
1295 .resource = ssc1_resources,
1296 .num_resources = ARRAY_SIZE(ssc1_resources),
1297};
1298
1299static inline void configure_ssc1_pins(unsigned pins)
1300{
1301 if (pins & ATMEL_SSC_TF)
1302 at91_set_A_periph(AT91_PIN_PD14, 1);
1303 if (pins & ATMEL_SSC_TK)
1304 at91_set_A_periph(AT91_PIN_PD12, 1);
1305 if (pins & ATMEL_SSC_TD)
1306 at91_set_A_periph(AT91_PIN_PD10, 1);
1307 if (pins & ATMEL_SSC_RD)
1308 at91_set_A_periph(AT91_PIN_PD11, 1);
1309 if (pins & ATMEL_SSC_RK)
1310 at91_set_A_periph(AT91_PIN_PD13, 1);
1311 if (pins & ATMEL_SSC_RF)
1312 at91_set_A_periph(AT91_PIN_PD15, 1);
1313}
1314
1315/*
1316 * SSC controllers are accessed through library code, instead of any
1317 * kind of all-singing/all-dancing driver. For example one could be
1318 * used by a particular I2S audio codec's driver, while another one
1319 * on the same system might be used by a custom data capture driver.
1320 */
1321void __init at91_add_device_ssc(unsigned id, unsigned pins)
1322{
1323 struct platform_device *pdev;
1324
1325 /*
1326 * NOTE: caller is responsible for passing information matching
1327 * "pins" to whatever will be using each particular controller.
1328 */
1329 switch (id) {
1330 case AT91SAM9G45_ID_SSC0:
1331 pdev = &at91sam9g45_ssc0_device;
1332 configure_ssc0_pins(pins);
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001333 break;
1334 case AT91SAM9G45_ID_SSC1:
1335 pdev = &at91sam9g45_ssc1_device;
1336 configure_ssc1_pins(pins);
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001337 break;
1338 default:
1339 return;
1340 }
1341
1342 platform_device_register(pdev);
1343}
1344
1345#else
1346void __init at91_add_device_ssc(unsigned id, unsigned pins) {}
1347#endif
1348
1349
1350/* --------------------------------------------------------------------
1351 * UART
1352 * -------------------------------------------------------------------- */
1353
1354#if defined(CONFIG_SERIAL_ATMEL)
1355static struct resource dbgu_resources[] = {
1356 [0] = {
Jean-Christophe PLAGNIOL-VILLARD13079a72011-11-02 01:43:31 +08001357 .start = AT91SAM9G45_BASE_DBGU,
1358 .end = AT91SAM9G45_BASE_DBGU + SZ_512 - 1,
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001359 .flags = IORESOURCE_MEM,
1360 },
1361 [1] = {
1362 .start = AT91_ID_SYS,
1363 .end = AT91_ID_SYS,
1364 .flags = IORESOURCE_IRQ,
1365 },
1366};
1367
1368static struct atmel_uart_data dbgu_data = {
1369 .use_dma_tx = 0,
1370 .use_dma_rx = 0,
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001371};
1372
1373static u64 dbgu_dmamask = DMA_BIT_MASK(32);
1374
1375static struct platform_device at91sam9g45_dbgu_device = {
1376 .name = "atmel_usart",
1377 .id = 0,
1378 .dev = {
1379 .dma_mask = &dbgu_dmamask,
1380 .coherent_dma_mask = DMA_BIT_MASK(32),
1381 .platform_data = &dbgu_data,
1382 },
1383 .resource = dbgu_resources,
1384 .num_resources = ARRAY_SIZE(dbgu_resources),
1385};
1386
1387static inline void configure_dbgu_pins(void)
1388{
1389 at91_set_A_periph(AT91_PIN_PB12, 0); /* DRXD */
1390 at91_set_A_periph(AT91_PIN_PB13, 1); /* DTXD */
1391}
1392
1393static struct resource uart0_resources[] = {
1394 [0] = {
1395 .start = AT91SAM9G45_BASE_US0,
1396 .end = AT91SAM9G45_BASE_US0 + SZ_16K - 1,
1397 .flags = IORESOURCE_MEM,
1398 },
1399 [1] = {
1400 .start = AT91SAM9G45_ID_US0,
1401 .end = AT91SAM9G45_ID_US0,
1402 .flags = IORESOURCE_IRQ,
1403 },
1404};
1405
1406static struct atmel_uart_data uart0_data = {
1407 .use_dma_tx = 1,
1408 .use_dma_rx = 1,
1409};
1410
1411static u64 uart0_dmamask = DMA_BIT_MASK(32);
1412
1413static struct platform_device at91sam9g45_uart0_device = {
1414 .name = "atmel_usart",
1415 .id = 1,
1416 .dev = {
1417 .dma_mask = &uart0_dmamask,
1418 .coherent_dma_mask = DMA_BIT_MASK(32),
1419 .platform_data = &uart0_data,
1420 },
1421 .resource = uart0_resources,
1422 .num_resources = ARRAY_SIZE(uart0_resources),
1423};
1424
1425static inline void configure_usart0_pins(unsigned pins)
1426{
1427 at91_set_A_periph(AT91_PIN_PB19, 1); /* TXD0 */
1428 at91_set_A_periph(AT91_PIN_PB18, 0); /* RXD0 */
1429
1430 if (pins & ATMEL_UART_RTS)
1431 at91_set_B_periph(AT91_PIN_PB17, 0); /* RTS0 */
1432 if (pins & ATMEL_UART_CTS)
1433 at91_set_B_periph(AT91_PIN_PB15, 0); /* CTS0 */
1434}
1435
1436static struct resource uart1_resources[] = {
1437 [0] = {
1438 .start = AT91SAM9G45_BASE_US1,
1439 .end = AT91SAM9G45_BASE_US1 + SZ_16K - 1,
1440 .flags = IORESOURCE_MEM,
1441 },
1442 [1] = {
1443 .start = AT91SAM9G45_ID_US1,
1444 .end = AT91SAM9G45_ID_US1,
1445 .flags = IORESOURCE_IRQ,
1446 },
1447};
1448
1449static struct atmel_uart_data uart1_data = {
1450 .use_dma_tx = 1,
1451 .use_dma_rx = 1,
1452};
1453
1454static u64 uart1_dmamask = DMA_BIT_MASK(32);
1455
1456static struct platform_device at91sam9g45_uart1_device = {
1457 .name = "atmel_usart",
1458 .id = 2,
1459 .dev = {
1460 .dma_mask = &uart1_dmamask,
1461 .coherent_dma_mask = DMA_BIT_MASK(32),
1462 .platform_data = &uart1_data,
1463 },
1464 .resource = uart1_resources,
1465 .num_resources = ARRAY_SIZE(uart1_resources),
1466};
1467
1468static inline void configure_usart1_pins(unsigned pins)
1469{
1470 at91_set_A_periph(AT91_PIN_PB4, 1); /* TXD1 */
1471 at91_set_A_periph(AT91_PIN_PB5, 0); /* RXD1 */
1472
1473 if (pins & ATMEL_UART_RTS)
1474 at91_set_A_periph(AT91_PIN_PD16, 0); /* RTS1 */
1475 if (pins & ATMEL_UART_CTS)
1476 at91_set_A_periph(AT91_PIN_PD17, 0); /* CTS1 */
1477}
1478
1479static struct resource uart2_resources[] = {
1480 [0] = {
1481 .start = AT91SAM9G45_BASE_US2,
1482 .end = AT91SAM9G45_BASE_US2 + SZ_16K - 1,
1483 .flags = IORESOURCE_MEM,
1484 },
1485 [1] = {
1486 .start = AT91SAM9G45_ID_US2,
1487 .end = AT91SAM9G45_ID_US2,
1488 .flags = IORESOURCE_IRQ,
1489 },
1490};
1491
1492static struct atmel_uart_data uart2_data = {
1493 .use_dma_tx = 1,
1494 .use_dma_rx = 1,
1495};
1496
1497static u64 uart2_dmamask = DMA_BIT_MASK(32);
1498
1499static struct platform_device at91sam9g45_uart2_device = {
1500 .name = "atmel_usart",
1501 .id = 3,
1502 .dev = {
1503 .dma_mask = &uart2_dmamask,
1504 .coherent_dma_mask = DMA_BIT_MASK(32),
1505 .platform_data = &uart2_data,
1506 },
1507 .resource = uart2_resources,
1508 .num_resources = ARRAY_SIZE(uart2_resources),
1509};
1510
1511static inline void configure_usart2_pins(unsigned pins)
1512{
1513 at91_set_A_periph(AT91_PIN_PB6, 1); /* TXD2 */
1514 at91_set_A_periph(AT91_PIN_PB7, 0); /* RXD2 */
1515
1516 if (pins & ATMEL_UART_RTS)
1517 at91_set_B_periph(AT91_PIN_PC9, 0); /* RTS2 */
1518 if (pins & ATMEL_UART_CTS)
1519 at91_set_B_periph(AT91_PIN_PC11, 0); /* CTS2 */
1520}
1521
1522static struct resource uart3_resources[] = {
1523 [0] = {
1524 .start = AT91SAM9G45_BASE_US3,
1525 .end = AT91SAM9G45_BASE_US3 + SZ_16K - 1,
1526 .flags = IORESOURCE_MEM,
1527 },
1528 [1] = {
1529 .start = AT91SAM9G45_ID_US3,
1530 .end = AT91SAM9G45_ID_US3,
1531 .flags = IORESOURCE_IRQ,
1532 },
1533};
1534
1535static struct atmel_uart_data uart3_data = {
1536 .use_dma_tx = 1,
1537 .use_dma_rx = 1,
1538};
1539
1540static u64 uart3_dmamask = DMA_BIT_MASK(32);
1541
1542static struct platform_device at91sam9g45_uart3_device = {
1543 .name = "atmel_usart",
1544 .id = 4,
1545 .dev = {
1546 .dma_mask = &uart3_dmamask,
1547 .coherent_dma_mask = DMA_BIT_MASK(32),
1548 .platform_data = &uart3_data,
1549 },
1550 .resource = uart3_resources,
1551 .num_resources = ARRAY_SIZE(uart3_resources),
1552};
1553
1554static inline void configure_usart3_pins(unsigned pins)
1555{
1556 at91_set_A_periph(AT91_PIN_PB8, 1); /* TXD3 */
1557 at91_set_A_periph(AT91_PIN_PB9, 0); /* RXD3 */
1558
1559 if (pins & ATMEL_UART_RTS)
1560 at91_set_B_periph(AT91_PIN_PA23, 0); /* RTS3 */
1561 if (pins & ATMEL_UART_CTS)
1562 at91_set_B_periph(AT91_PIN_PA24, 0); /* CTS3 */
1563}
1564
1565static struct platform_device *__initdata at91_uarts[ATMEL_MAX_UART]; /* the UARTs to use */
1566struct platform_device *atmel_default_console_device; /* the serial console device */
1567
1568void __init at91_register_uart(unsigned id, unsigned portnr, unsigned pins)
1569{
1570 struct platform_device *pdev;
Jean-Christophe PLAGNIOL-VILLARD2b348e22011-04-10 14:10:05 +08001571 struct atmel_uart_data *pdata;
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001572
1573 switch (id) {
1574 case 0: /* DBGU */
1575 pdev = &at91sam9g45_dbgu_device;
1576 configure_dbgu_pins();
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001577 break;
1578 case AT91SAM9G45_ID_US0:
1579 pdev = &at91sam9g45_uart0_device;
1580 configure_usart0_pins(pins);
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001581 break;
1582 case AT91SAM9G45_ID_US1:
1583 pdev = &at91sam9g45_uart1_device;
1584 configure_usart1_pins(pins);
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001585 break;
1586 case AT91SAM9G45_ID_US2:
1587 pdev = &at91sam9g45_uart2_device;
1588 configure_usart2_pins(pins);
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001589 break;
1590 case AT91SAM9G45_ID_US3:
1591 pdev = &at91sam9g45_uart3_device;
1592 configure_usart3_pins(pins);
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001593 break;
1594 default:
1595 return;
1596 }
Jean-Christophe PLAGNIOL-VILLARD2b348e22011-04-10 14:10:05 +08001597 pdata = pdev->dev.platform_data;
1598 pdata->num = portnr; /* update to mapped ID */
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001599
1600 if (portnr < ATMEL_MAX_UART)
1601 at91_uarts[portnr] = pdev;
1602}
1603
1604void __init at91_set_serial_console(unsigned portnr)
1605{
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +01001606 if (portnr < ATMEL_MAX_UART) {
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001607 atmel_default_console_device = at91_uarts[portnr];
Jean-Christophe PLAGNIOL-VILLARD5c1f9662011-06-21 11:24:33 +08001608 at91sam9g45_set_console_clock(at91_uarts[portnr]->id);
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +01001609 }
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001610}
1611
1612void __init at91_add_device_serial(void)
1613{
1614 int i;
1615
1616 for (i = 0; i < ATMEL_MAX_UART; i++) {
1617 if (at91_uarts[i])
1618 platform_device_register(at91_uarts[i]);
1619 }
1620
1621 if (!atmel_default_console_device)
1622 printk(KERN_INFO "AT91: No default serial console defined.\n");
1623}
1624#else
1625void __init at91_register_uart(unsigned id, unsigned portnr, unsigned pins) {}
1626void __init at91_set_serial_console(unsigned portnr) {}
1627void __init at91_add_device_serial(void) {}
1628#endif
1629
1630
1631/* -------------------------------------------------------------------- */
1632/*
1633 * These devices are always present and don't need any board-specific
1634 * setup.
1635 */
1636static int __init at91_add_standard_devices(void)
1637{
Nicolas Ferre40262b22009-07-24 11:43:01 +01001638 at91_add_device_hdmac();
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001639 at91_add_device_rtc();
1640 at91_add_device_rtt();
Peter Korsgaard237a62a2011-10-06 17:41:33 +02001641 at91_add_device_trng();
Nicolas Ferre789b23b2009-06-26 15:36:58 +01001642 at91_add_device_watchdog();
1643 at91_add_device_tc();
1644 return 0;
1645}
1646
1647arch_initcall(at91_add_standard_devices);