blob: 10f15f3a56cab3bdab14d2ffb58b801931945f1f [file] [log] [blame]
Andrew Victor2b3b3512008-01-24 15:10:39 +01001/*
2 * arch/arm/mach-at91/at91cap9_devices.c
3 *
4 * Copyright (C) 2007 Stelian Pop <stelian.pop@leadtechdesign.com>
5 * Copyright (C) 2007 Lead Tech Design <www.leadtechdesign.com>
6 * Copyright (C) 2007 Atmel Corporation.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 */
14#include <asm/mach/arch.h>
15#include <asm/mach/map.h>
16
17#include <linux/dma-mapping.h>
18#include <linux/platform_device.h>
19#include <linux/mtd/physmap.h>
20
21#include <video/atmel_lcdc.h>
22
23#include <asm/arch/board.h>
24#include <asm/arch/gpio.h>
25#include <asm/arch/at91cap9.h>
Andrew Victor2b3b3512008-01-24 15:10:39 +010026#include <asm/arch/at91cap9_matrix.h>
Andrew Victorb78eabd2008-04-02 21:38:40 +010027#include <asm/arch/at91sam9_smc.h>
Andrew Victor2b3b3512008-01-24 15:10:39 +010028
29#include "generic.h"
30
31
32/* --------------------------------------------------------------------
33 * USB Host
34 * -------------------------------------------------------------------- */
35
36#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
37static u64 ohci_dmamask = DMA_BIT_MASK(32);
38static struct at91_usbh_data usbh_data;
39
40static struct resource usbh_resources[] = {
41 [0] = {
42 .start = AT91CAP9_UHP_BASE,
43 .end = AT91CAP9_UHP_BASE + SZ_1M - 1,
44 .flags = IORESOURCE_MEM,
45 },
46 [1] = {
47 .start = AT91CAP9_ID_UHP,
48 .end = AT91CAP9_ID_UHP,
49 .flags = IORESOURCE_IRQ,
50 },
51};
52
53static struct platform_device at91_usbh_device = {
54 .name = "at91_ohci",
55 .id = -1,
56 .dev = {
57 .dma_mask = &ohci_dmamask,
58 .coherent_dma_mask = DMA_BIT_MASK(32),
59 .platform_data = &usbh_data,
60 },
61 .resource = usbh_resources,
62 .num_resources = ARRAY_SIZE(usbh_resources),
63};
64
65void __init at91_add_device_usbh(struct at91_usbh_data *data)
66{
67 int i;
68
69 if (!data)
70 return;
71
72 /* Enable VBus control for UHP ports */
73 for (i = 0; i < data->ports; i++) {
74 if (data->vbus_pin[i])
75 at91_set_gpio_output(data->vbus_pin[i], 0);
76 }
77
78 usbh_data = *data;
79 platform_device_register(&at91_usbh_device);
80}
81#else
82void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
83#endif
84
85
86/* --------------------------------------------------------------------
87 * Ethernet
88 * -------------------------------------------------------------------- */
89
90#if defined(CONFIG_MACB) || defined(CONFIG_MACB_MODULE)
91static u64 eth_dmamask = DMA_BIT_MASK(32);
92static struct at91_eth_data eth_data;
93
94static struct resource eth_resources[] = {
95 [0] = {
96 .start = AT91CAP9_BASE_EMAC,
97 .end = AT91CAP9_BASE_EMAC + SZ_16K - 1,
98 .flags = IORESOURCE_MEM,
99 },
100 [1] = {
101 .start = AT91CAP9_ID_EMAC,
102 .end = AT91CAP9_ID_EMAC,
103 .flags = IORESOURCE_IRQ,
104 },
105};
106
107static struct platform_device at91cap9_eth_device = {
108 .name = "macb",
109 .id = -1,
110 .dev = {
111 .dma_mask = &eth_dmamask,
112 .coherent_dma_mask = DMA_BIT_MASK(32),
113 .platform_data = &eth_data,
114 },
115 .resource = eth_resources,
116 .num_resources = ARRAY_SIZE(eth_resources),
117};
118
119void __init at91_add_device_eth(struct at91_eth_data *data)
120{
121 if (!data)
122 return;
123
124 if (data->phy_irq_pin) {
125 at91_set_gpio_input(data->phy_irq_pin, 0);
126 at91_set_deglitch(data->phy_irq_pin, 1);
127 }
128
129 /* Pins used for MII and RMII */
130 at91_set_A_periph(AT91_PIN_PB21, 0); /* ETXCK_EREFCK */
131 at91_set_A_periph(AT91_PIN_PB22, 0); /* ERXDV */
132 at91_set_A_periph(AT91_PIN_PB25, 0); /* ERX0 */
133 at91_set_A_periph(AT91_PIN_PB26, 0); /* ERX1 */
134 at91_set_A_periph(AT91_PIN_PB27, 0); /* ERXER */
135 at91_set_A_periph(AT91_PIN_PB28, 0); /* ETXEN */
136 at91_set_A_periph(AT91_PIN_PB23, 0); /* ETX0 */
137 at91_set_A_periph(AT91_PIN_PB24, 0); /* ETX1 */
138 at91_set_A_periph(AT91_PIN_PB30, 0); /* EMDIO */
139 at91_set_A_periph(AT91_PIN_PB29, 0); /* EMDC */
140
141 if (!data->is_rmii) {
142 at91_set_B_periph(AT91_PIN_PC25, 0); /* ECRS */
143 at91_set_B_periph(AT91_PIN_PC26, 0); /* ECOL */
144 at91_set_B_periph(AT91_PIN_PC22, 0); /* ERX2 */
145 at91_set_B_periph(AT91_PIN_PC23, 0); /* ERX3 */
146 at91_set_B_periph(AT91_PIN_PC27, 0); /* ERXCK */
147 at91_set_B_periph(AT91_PIN_PC20, 0); /* ETX2 */
148 at91_set_B_periph(AT91_PIN_PC21, 0); /* ETX3 */
149 at91_set_B_periph(AT91_PIN_PC24, 0); /* ETXER */
150 }
151
152 eth_data = *data;
153 platform_device_register(&at91cap9_eth_device);
154}
155#else
156void __init at91_add_device_eth(struct at91_eth_data *data) {}
157#endif
158
159
160/* --------------------------------------------------------------------
161 * MMC / SD
162 * -------------------------------------------------------------------- */
163
164#if defined(CONFIG_MMC_AT91) || defined(CONFIG_MMC_AT91_MODULE)
165static u64 mmc_dmamask = DMA_BIT_MASK(32);
166static struct at91_mmc_data mmc0_data, mmc1_data;
167
168static struct resource mmc0_resources[] = {
169 [0] = {
170 .start = AT91CAP9_BASE_MCI0,
171 .end = AT91CAP9_BASE_MCI0 + SZ_16K - 1,
172 .flags = IORESOURCE_MEM,
173 },
174 [1] = {
175 .start = AT91CAP9_ID_MCI0,
176 .end = AT91CAP9_ID_MCI0,
177 .flags = IORESOURCE_IRQ,
178 },
179};
180
181static struct platform_device at91cap9_mmc0_device = {
182 .name = "at91_mci",
183 .id = 0,
184 .dev = {
185 .dma_mask = &mmc_dmamask,
186 .coherent_dma_mask = DMA_BIT_MASK(32),
187 .platform_data = &mmc0_data,
188 },
189 .resource = mmc0_resources,
190 .num_resources = ARRAY_SIZE(mmc0_resources),
191};
192
193static struct resource mmc1_resources[] = {
194 [0] = {
195 .start = AT91CAP9_BASE_MCI1,
196 .end = AT91CAP9_BASE_MCI1 + SZ_16K - 1,
197 .flags = IORESOURCE_MEM,
198 },
199 [1] = {
200 .start = AT91CAP9_ID_MCI1,
201 .end = AT91CAP9_ID_MCI1,
202 .flags = IORESOURCE_IRQ,
203 },
204};
205
206static struct platform_device at91cap9_mmc1_device = {
207 .name = "at91_mci",
208 .id = 1,
209 .dev = {
210 .dma_mask = &mmc_dmamask,
211 .coherent_dma_mask = DMA_BIT_MASK(32),
212 .platform_data = &mmc1_data,
213 },
214 .resource = mmc1_resources,
215 .num_resources = ARRAY_SIZE(mmc1_resources),
216};
217
218void __init at91_add_device_mmc(short mmc_id, struct at91_mmc_data *data)
219{
220 if (!data)
221 return;
222
223 /* input/irq */
224 if (data->det_pin) {
225 at91_set_gpio_input(data->det_pin, 1);
226 at91_set_deglitch(data->det_pin, 1);
227 }
228 if (data->wp_pin)
229 at91_set_gpio_input(data->wp_pin, 1);
230 if (data->vcc_pin)
231 at91_set_gpio_output(data->vcc_pin, 0);
232
233 if (mmc_id == 0) { /* MCI0 */
234 /* CLK */
235 at91_set_A_periph(AT91_PIN_PA2, 0);
236
237 /* CMD */
238 at91_set_A_periph(AT91_PIN_PA1, 1);
239
240 /* DAT0, maybe DAT1..DAT3 */
241 at91_set_A_periph(AT91_PIN_PA0, 1);
242 if (data->wire4) {
243 at91_set_A_periph(AT91_PIN_PA3, 1);
244 at91_set_A_periph(AT91_PIN_PA4, 1);
245 at91_set_A_periph(AT91_PIN_PA5, 1);
246 }
247
248 mmc0_data = *data;
249 at91_clock_associate("mci0_clk", &at91cap9_mmc1_device.dev, "mci_clk");
250 platform_device_register(&at91cap9_mmc0_device);
251 } else { /* MCI1 */
252 /* CLK */
253 at91_set_A_periph(AT91_PIN_PA16, 0);
254
255 /* CMD */
256 at91_set_A_periph(AT91_PIN_PA17, 1);
257
258 /* DAT0, maybe DAT1..DAT3 */
259 at91_set_A_periph(AT91_PIN_PA18, 1);
260 if (data->wire4) {
261 at91_set_A_periph(AT91_PIN_PA19, 1);
262 at91_set_A_periph(AT91_PIN_PA20, 1);
263 at91_set_A_periph(AT91_PIN_PA21, 1);
264 }
265
266 mmc1_data = *data;
267 at91_clock_associate("mci1_clk", &at91cap9_mmc1_device.dev, "mci_clk");
268 platform_device_register(&at91cap9_mmc1_device);
269 }
270}
271#else
272void __init at91_add_device_mmc(short mmc_id, struct at91_mmc_data *data) {}
273#endif
274
275
276/* --------------------------------------------------------------------
277 * NAND / SmartMedia
278 * -------------------------------------------------------------------- */
279
280#if defined(CONFIG_MTD_NAND_AT91) || defined(CONFIG_MTD_NAND_AT91_MODULE)
281static struct at91_nand_data nand_data;
282
283#define NAND_BASE AT91_CHIPSELECT_3
284
285static struct resource nand_resources[] = {
Andrew Victord7a24152008-04-02 21:44:44 +0100286 [0] = {
Andrew Victor2b3b3512008-01-24 15:10:39 +0100287 .start = NAND_BASE,
288 .end = NAND_BASE + SZ_256M - 1,
289 .flags = IORESOURCE_MEM,
Andrew Victord7a24152008-04-02 21:44:44 +0100290 },
291 [1] = {
292 .start = AT91_BASE_SYS + AT91_ECC,
293 .end = AT91_BASE_SYS + AT91_ECC + SZ_512 - 1,
294 .flags = IORESOURCE_MEM,
Andrew Victor2b3b3512008-01-24 15:10:39 +0100295 }
296};
297
298static struct platform_device at91cap9_nand_device = {
299 .name = "at91_nand",
300 .id = -1,
301 .dev = {
302 .platform_data = &nand_data,
303 },
304 .resource = nand_resources,
305 .num_resources = ARRAY_SIZE(nand_resources),
306};
307
308void __init at91_add_device_nand(struct at91_nand_data *data)
309{
310 unsigned long csa, mode;
311
312 if (!data)
313 return;
314
315 csa = at91_sys_read(AT91_MATRIX_EBICSA);
316 at91_sys_write(AT91_MATRIX_EBICSA, csa | AT91_MATRIX_EBI_CS3A_SMC_SMARTMEDIA | AT91_MATRIX_EBI_VDDIOMSEL_3_3V);
317
318 /* set the bus interface characteristics */
319 at91_sys_write(AT91_SMC_SETUP(3), AT91_SMC_NWESETUP_(2) | AT91_SMC_NCS_WRSETUP_(1)
320 | AT91_SMC_NRDSETUP_(2) | AT91_SMC_NCS_RDSETUP_(1));
321
322 at91_sys_write(AT91_SMC_PULSE(3), AT91_SMC_NWEPULSE_(4) | AT91_SMC_NCS_WRPULSE_(6)
323 | AT91_SMC_NRDPULSE_(4) | AT91_SMC_NCS_RDPULSE_(6));
324
325 at91_sys_write(AT91_SMC_CYCLE(3), AT91_SMC_NWECYCLE_(8) | AT91_SMC_NRDCYCLE_(8));
326
327 if (data->bus_width_16)
328 mode = AT91_SMC_DBW_16;
329 else
330 mode = AT91_SMC_DBW_8;
331 at91_sys_write(AT91_SMC_MODE(3), mode | AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE | AT91_SMC_TDF_(1));
332
333 /* enable pin */
334 if (data->enable_pin)
335 at91_set_gpio_output(data->enable_pin, 1);
336
337 /* ready/busy pin */
338 if (data->rdy_pin)
339 at91_set_gpio_input(data->rdy_pin, 1);
340
341 /* card detect pin */
342 if (data->det_pin)
343 at91_set_gpio_input(data->det_pin, 1);
344
345 nand_data = *data;
346 platform_device_register(&at91cap9_nand_device);
347}
348#else
349void __init at91_add_device_nand(struct at91_nand_data *data) {}
350#endif
351
352/* --------------------------------------------------------------------
353 * TWI (i2c)
354 * -------------------------------------------------------------------- */
355
356/*
357 * Prefer the GPIO code since the TWI controller isn't robust
358 * (gets overruns and underruns under load) and can only issue
359 * repeated STARTs in one scenario (the driver doesn't yet handle them).
360 */
361#if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
362
363static struct i2c_gpio_platform_data pdata = {
364 .sda_pin = AT91_PIN_PB4,
365 .sda_is_open_drain = 1,
366 .scl_pin = AT91_PIN_PB5,
367 .scl_is_open_drain = 1,
368 .udelay = 2, /* ~100 kHz */
369};
370
371static struct platform_device at91cap9_twi_device = {
372 .name = "i2c-gpio",
373 .id = -1,
374 .dev.platform_data = &pdata,
375};
376
377void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices)
378{
379 at91_set_GPIO_periph(AT91_PIN_PB4, 1); /* TWD (SDA) */
380 at91_set_multi_drive(AT91_PIN_PB4, 1);
381
382 at91_set_GPIO_periph(AT91_PIN_PB5, 1); /* TWCK (SCL) */
383 at91_set_multi_drive(AT91_PIN_PB5, 1);
384
385 i2c_register_board_info(0, devices, nr_devices);
386 platform_device_register(&at91cap9_twi_device);
387}
388
389#elif defined(CONFIG_I2C_AT91) || defined(CONFIG_I2C_AT91_MODULE)
390
391static struct resource twi_resources[] = {
392 [0] = {
393 .start = AT91CAP9_BASE_TWI,
394 .end = AT91CAP9_BASE_TWI + SZ_16K - 1,
395 .flags = IORESOURCE_MEM,
396 },
397 [1] = {
398 .start = AT91CAP9_ID_TWI,
399 .end = AT91CAP9_ID_TWI,
400 .flags = IORESOURCE_IRQ,
401 },
402};
403
404static struct platform_device at91cap9_twi_device = {
405 .name = "at91_i2c",
406 .id = -1,
407 .resource = twi_resources,
408 .num_resources = ARRAY_SIZE(twi_resources),
409};
410
411void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices)
412{
413 /* pins used for TWI interface */
414 at91_set_B_periph(AT91_PIN_PB4, 0); /* TWD */
415 at91_set_multi_drive(AT91_PIN_PB4, 1);
416
417 at91_set_B_periph(AT91_PIN_PB5, 0); /* TWCK */
418 at91_set_multi_drive(AT91_PIN_PB5, 1);
419
420 i2c_register_board_info(0, devices, nr_devices);
421 platform_device_register(&at91cap9_twi_device);
422}
423#else
424void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices) {}
425#endif
426
427/* --------------------------------------------------------------------
428 * SPI
429 * -------------------------------------------------------------------- */
430
431#if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
432static u64 spi_dmamask = DMA_BIT_MASK(32);
433
434static struct resource spi0_resources[] = {
435 [0] = {
436 .start = AT91CAP9_BASE_SPI0,
437 .end = AT91CAP9_BASE_SPI0 + SZ_16K - 1,
438 .flags = IORESOURCE_MEM,
439 },
440 [1] = {
441 .start = AT91CAP9_ID_SPI0,
442 .end = AT91CAP9_ID_SPI0,
443 .flags = IORESOURCE_IRQ,
444 },
445};
446
447static struct platform_device at91cap9_spi0_device = {
448 .name = "atmel_spi",
449 .id = 0,
450 .dev = {
451 .dma_mask = &spi_dmamask,
452 .coherent_dma_mask = DMA_BIT_MASK(32),
453 },
454 .resource = spi0_resources,
455 .num_resources = ARRAY_SIZE(spi0_resources),
456};
457
458static const unsigned spi0_standard_cs[4] = { AT91_PIN_PA5, AT91_PIN_PA3, AT91_PIN_PD0, AT91_PIN_PD1 };
459
460static struct resource spi1_resources[] = {
461 [0] = {
462 .start = AT91CAP9_BASE_SPI1,
463 .end = AT91CAP9_BASE_SPI1 + SZ_16K - 1,
464 .flags = IORESOURCE_MEM,
465 },
466 [1] = {
467 .start = AT91CAP9_ID_SPI1,
468 .end = AT91CAP9_ID_SPI1,
469 .flags = IORESOURCE_IRQ,
470 },
471};
472
473static struct platform_device at91cap9_spi1_device = {
474 .name = "atmel_spi",
475 .id = 1,
476 .dev = {
477 .dma_mask = &spi_dmamask,
478 .coherent_dma_mask = DMA_BIT_MASK(32),
479 },
480 .resource = spi1_resources,
481 .num_resources = ARRAY_SIZE(spi1_resources),
482};
483
484static const unsigned spi1_standard_cs[4] = { AT91_PIN_PB15, AT91_PIN_PB16, AT91_PIN_PB17, AT91_PIN_PB18 };
485
486void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices)
487{
488 int i;
489 unsigned long cs_pin;
490 short enable_spi0 = 0;
491 short enable_spi1 = 0;
492
493 /* Choose SPI chip-selects */
494 for (i = 0; i < nr_devices; i++) {
495 if (devices[i].controller_data)
496 cs_pin = (unsigned long) devices[i].controller_data;
497 else if (devices[i].bus_num == 0)
498 cs_pin = spi0_standard_cs[devices[i].chip_select];
499 else
500 cs_pin = spi1_standard_cs[devices[i].chip_select];
501
502 if (devices[i].bus_num == 0)
503 enable_spi0 = 1;
504 else
505 enable_spi1 = 1;
506
507 /* enable chip-select pin */
508 at91_set_gpio_output(cs_pin, 1);
509
510 /* pass chip-select pin to driver */
511 devices[i].controller_data = (void *) cs_pin;
512 }
513
514 spi_register_board_info(devices, nr_devices);
515
516 /* Configure SPI bus(es) */
517 if (enable_spi0) {
518 at91_set_B_periph(AT91_PIN_PA0, 0); /* SPI0_MISO */
519 at91_set_B_periph(AT91_PIN_PA1, 0); /* SPI0_MOSI */
520 at91_set_B_periph(AT91_PIN_PA2, 0); /* SPI0_SPCK */
521
522 at91_clock_associate("spi0_clk", &at91cap9_spi0_device.dev, "spi_clk");
523 platform_device_register(&at91cap9_spi0_device);
524 }
525 if (enable_spi1) {
526 at91_set_A_periph(AT91_PIN_PB12, 0); /* SPI1_MISO */
527 at91_set_A_periph(AT91_PIN_PB13, 0); /* SPI1_MOSI */
528 at91_set_A_periph(AT91_PIN_PB14, 0); /* SPI1_SPCK */
529
530 at91_clock_associate("spi1_clk", &at91cap9_spi1_device.dev, "spi_clk");
531 platform_device_register(&at91cap9_spi1_device);
532 }
533}
534#else
535void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices) {}
536#endif
537
538
539/* --------------------------------------------------------------------
540 * RTT
541 * -------------------------------------------------------------------- */
542
543static struct platform_device at91cap9_rtt_device = {
544 .name = "at91_rtt",
545 .id = -1,
546 .num_resources = 0,
547};
548
549static void __init at91_add_device_rtt(void)
550{
551 platform_device_register(&at91cap9_rtt_device);
552}
553
554
555/* --------------------------------------------------------------------
556 * Watchdog
557 * -------------------------------------------------------------------- */
558
559#if defined(CONFIG_AT91SAM9_WATCHDOG) || defined(CONFIG_AT91SAM9_WATCHDOG_MODULE)
560static struct platform_device at91cap9_wdt_device = {
561 .name = "at91_wdt",
562 .id = -1,
563 .num_resources = 0,
564};
565
566static void __init at91_add_device_watchdog(void)
567{
568 platform_device_register(&at91cap9_wdt_device);
569}
570#else
571static void __init at91_add_device_watchdog(void) {}
572#endif
573
574
575/* --------------------------------------------------------------------
576 * AC97
577 * -------------------------------------------------------------------- */
578
579#if defined(CONFIG_SND_AT91_AC97) || defined(CONFIG_SND_AT91_AC97_MODULE)
580static u64 ac97_dmamask = DMA_BIT_MASK(32);
581static struct atmel_ac97_data ac97_data;
582
583static struct resource ac97_resources[] = {
584 [0] = {
585 .start = AT91CAP9_BASE_AC97C,
586 .end = AT91CAP9_BASE_AC97C + SZ_16K - 1,
587 .flags = IORESOURCE_MEM,
588 },
589 [1] = {
590 .start = AT91CAP9_ID_AC97C,
591 .end = AT91CAP9_ID_AC97C,
592 .flags = IORESOURCE_IRQ,
593 },
594};
595
596static struct platform_device at91cap9_ac97_device = {
597 .name = "ac97c",
598 .id = 1,
599 .dev = {
600 .dma_mask = &ac97_dmamask,
601 .coherent_dma_mask = DMA_BIT_MASK(32),
602 .platform_data = &ac97_data,
603 },
604 .resource = ac97_resources,
605 .num_resources = ARRAY_SIZE(ac97_resources),
606};
607
608void __init at91_add_device_ac97(struct atmel_ac97_data *data)
609{
610 if (!data)
611 return;
612
613 at91_set_A_periph(AT91_PIN_PA6, 0); /* AC97FS */
614 at91_set_A_periph(AT91_PIN_PA7, 0); /* AC97CK */
615 at91_set_A_periph(AT91_PIN_PA8, 0); /* AC97TX */
616 at91_set_A_periph(AT91_PIN_PA9, 0); /* AC97RX */
617
618 /* reset */
619 if (data->reset_pin)
620 at91_set_gpio_output(data->reset_pin, 0);
621
622 ac97_data = *data;
623 platform_device_register(&at91cap9_ac97_device);
624}
625#else
626void __init at91_add_device_ac97(struct atmel_ac97_data *data) {}
627#endif
628
629
630/* --------------------------------------------------------------------
631 * LCD Controller
632 * -------------------------------------------------------------------- */
633
634#if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
635static u64 lcdc_dmamask = DMA_BIT_MASK(32);
636static struct atmel_lcdfb_info lcdc_data;
637
638static struct resource lcdc_resources[] = {
639 [0] = {
640 .start = AT91CAP9_LCDC_BASE,
641 .end = AT91CAP9_LCDC_BASE + SZ_4K - 1,
642 .flags = IORESOURCE_MEM,
643 },
644 [1] = {
645 .start = AT91CAP9_ID_LCDC,
646 .end = AT91CAP9_ID_LCDC,
647 .flags = IORESOURCE_IRQ,
648 },
649};
650
651static struct platform_device at91_lcdc_device = {
652 .name = "atmel_lcdfb",
653 .id = 0,
654 .dev = {
655 .dma_mask = &lcdc_dmamask,
656 .coherent_dma_mask = DMA_BIT_MASK(32),
657 .platform_data = &lcdc_data,
658 },
659 .resource = lcdc_resources,
660 .num_resources = ARRAY_SIZE(lcdc_resources),
661};
662
663void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data)
664{
665 if (!data)
666 return;
667
668 at91_set_A_periph(AT91_PIN_PC1, 0); /* LCDHSYNC */
669 at91_set_A_periph(AT91_PIN_PC2, 0); /* LCDDOTCK */
670 at91_set_A_periph(AT91_PIN_PC3, 0); /* LCDDEN */
671 at91_set_B_periph(AT91_PIN_PB9, 0); /* LCDCC */
672 at91_set_A_periph(AT91_PIN_PC6, 0); /* LCDD2 */
673 at91_set_A_periph(AT91_PIN_PC7, 0); /* LCDD3 */
674 at91_set_A_periph(AT91_PIN_PC8, 0); /* LCDD4 */
675 at91_set_A_periph(AT91_PIN_PC9, 0); /* LCDD5 */
676 at91_set_A_periph(AT91_PIN_PC10, 0); /* LCDD6 */
677 at91_set_A_periph(AT91_PIN_PC11, 0); /* LCDD7 */
678 at91_set_A_periph(AT91_PIN_PC14, 0); /* LCDD10 */
679 at91_set_A_periph(AT91_PIN_PC15, 0); /* LCDD11 */
680 at91_set_A_periph(AT91_PIN_PC16, 0); /* LCDD12 */
681 at91_set_A_periph(AT91_PIN_PC17, 0); /* LCDD13 */
682 at91_set_A_periph(AT91_PIN_PC18, 0); /* LCDD14 */
683 at91_set_A_periph(AT91_PIN_PC19, 0); /* LCDD15 */
684 at91_set_A_periph(AT91_PIN_PC22, 0); /* LCDD18 */
685 at91_set_A_periph(AT91_PIN_PC23, 0); /* LCDD19 */
686 at91_set_A_periph(AT91_PIN_PC24, 0); /* LCDD20 */
687 at91_set_A_periph(AT91_PIN_PC25, 0); /* LCDD21 */
688 at91_set_A_periph(AT91_PIN_PC26, 0); /* LCDD22 */
689 at91_set_A_periph(AT91_PIN_PC27, 0); /* LCDD23 */
690
691 lcdc_data = *data;
692 platform_device_register(&at91_lcdc_device);
693}
694#else
695void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data) {}
696#endif
697
698
699/* --------------------------------------------------------------------
700 * SSC -- Synchronous Serial Controller
701 * -------------------------------------------------------------------- */
702
703#if defined(CONFIG_ATMEL_SSC) || defined(CONFIG_ATMEL_SSC_MODULE)
704static u64 ssc0_dmamask = DMA_BIT_MASK(32);
705
706static struct resource ssc0_resources[] = {
707 [0] = {
708 .start = AT91CAP9_BASE_SSC0,
709 .end = AT91CAP9_BASE_SSC0 + SZ_16K - 1,
710 .flags = IORESOURCE_MEM,
711 },
712 [1] = {
713 .start = AT91CAP9_ID_SSC0,
714 .end = AT91CAP9_ID_SSC0,
715 .flags = IORESOURCE_IRQ,
716 },
717};
718
719static struct platform_device at91cap9_ssc0_device = {
720 .name = "ssc",
721 .id = 0,
722 .dev = {
723 .dma_mask = &ssc0_dmamask,
724 .coherent_dma_mask = DMA_BIT_MASK(32),
725 },
726 .resource = ssc0_resources,
727 .num_resources = ARRAY_SIZE(ssc0_resources),
728};
729
730static inline void configure_ssc0_pins(unsigned pins)
731{
732 if (pins & ATMEL_SSC_TF)
733 at91_set_A_periph(AT91_PIN_PB0, 1);
734 if (pins & ATMEL_SSC_TK)
735 at91_set_A_periph(AT91_PIN_PB1, 1);
736 if (pins & ATMEL_SSC_TD)
737 at91_set_A_periph(AT91_PIN_PB2, 1);
738 if (pins & ATMEL_SSC_RD)
739 at91_set_A_periph(AT91_PIN_PB3, 1);
740 if (pins & ATMEL_SSC_RK)
741 at91_set_A_periph(AT91_PIN_PB4, 1);
742 if (pins & ATMEL_SSC_RF)
743 at91_set_A_periph(AT91_PIN_PB5, 1);
744}
745
746static u64 ssc1_dmamask = DMA_BIT_MASK(32);
747
748static struct resource ssc1_resources[] = {
749 [0] = {
750 .start = AT91CAP9_BASE_SSC1,
751 .end = AT91CAP9_BASE_SSC1 + SZ_16K - 1,
752 .flags = IORESOURCE_MEM,
753 },
754 [1] = {
755 .start = AT91CAP9_ID_SSC1,
756 .end = AT91CAP9_ID_SSC1,
757 .flags = IORESOURCE_IRQ,
758 },
759};
760
761static struct platform_device at91cap9_ssc1_device = {
762 .name = "ssc",
763 .id = 1,
764 .dev = {
765 .dma_mask = &ssc1_dmamask,
766 .coherent_dma_mask = DMA_BIT_MASK(32),
767 },
768 .resource = ssc1_resources,
769 .num_resources = ARRAY_SIZE(ssc1_resources),
770};
771
772static inline void configure_ssc1_pins(unsigned pins)
773{
774 if (pins & ATMEL_SSC_TF)
775 at91_set_A_periph(AT91_PIN_PB6, 1);
776 if (pins & ATMEL_SSC_TK)
777 at91_set_A_periph(AT91_PIN_PB7, 1);
778 if (pins & ATMEL_SSC_TD)
779 at91_set_A_periph(AT91_PIN_PB8, 1);
780 if (pins & ATMEL_SSC_RD)
781 at91_set_A_periph(AT91_PIN_PB9, 1);
782 if (pins & ATMEL_SSC_RK)
783 at91_set_A_periph(AT91_PIN_PB10, 1);
784 if (pins & ATMEL_SSC_RF)
785 at91_set_A_periph(AT91_PIN_PB11, 1);
786}
787
788/*
789 * SSC controllers are accessed through library code, instead of any
790 * kind of all-singing/all-dancing driver. For example one could be
791 * used by a particular I2S audio codec's driver, while another one
792 * on the same system might be used by a custom data capture driver.
793 */
794void __init at91_add_device_ssc(unsigned id, unsigned pins)
795{
796 struct platform_device *pdev;
797
798 /*
799 * NOTE: caller is responsible for passing information matching
800 * "pins" to whatever will be using each particular controller.
801 */
802 switch (id) {
803 case AT91CAP9_ID_SSC0:
804 pdev = &at91cap9_ssc0_device;
805 configure_ssc0_pins(pins);
806 at91_clock_associate("ssc0_clk", &pdev->dev, "ssc");
807 break;
808 case AT91CAP9_ID_SSC1:
809 pdev = &at91cap9_ssc1_device;
810 configure_ssc1_pins(pins);
811 at91_clock_associate("ssc1_clk", &pdev->dev, "ssc");
812 break;
813 default:
814 return;
815 }
816
817 platform_device_register(pdev);
818}
819
820#else
821void __init at91_add_device_ssc(unsigned id, unsigned pins) {}
822#endif
823
824
825/* --------------------------------------------------------------------
826 * UART
827 * -------------------------------------------------------------------- */
828
829#if defined(CONFIG_SERIAL_ATMEL)
830static struct resource dbgu_resources[] = {
831 [0] = {
832 .start = AT91_VA_BASE_SYS + AT91_DBGU,
833 .end = AT91_VA_BASE_SYS + AT91_DBGU + SZ_512 - 1,
834 .flags = IORESOURCE_MEM,
835 },
836 [1] = {
837 .start = AT91_ID_SYS,
838 .end = AT91_ID_SYS,
839 .flags = IORESOURCE_IRQ,
840 },
841};
842
843static struct atmel_uart_data dbgu_data = {
844 .use_dma_tx = 0,
845 .use_dma_rx = 0, /* DBGU not capable of receive DMA */
846 .regs = (void __iomem *)(AT91_VA_BASE_SYS + AT91_DBGU),
847};
848
849static u64 dbgu_dmamask = DMA_BIT_MASK(32);
850
851static struct platform_device at91cap9_dbgu_device = {
852 .name = "atmel_usart",
853 .id = 0,
854 .dev = {
855 .dma_mask = &dbgu_dmamask,
856 .coherent_dma_mask = DMA_BIT_MASK(32),
857 .platform_data = &dbgu_data,
858 },
859 .resource = dbgu_resources,
860 .num_resources = ARRAY_SIZE(dbgu_resources),
861};
862
863static inline void configure_dbgu_pins(void)
864{
865 at91_set_A_periph(AT91_PIN_PC30, 0); /* DRXD */
866 at91_set_A_periph(AT91_PIN_PC31, 1); /* DTXD */
867}
868
869static struct resource uart0_resources[] = {
870 [0] = {
871 .start = AT91CAP9_BASE_US0,
872 .end = AT91CAP9_BASE_US0 + SZ_16K - 1,
873 .flags = IORESOURCE_MEM,
874 },
875 [1] = {
876 .start = AT91CAP9_ID_US0,
877 .end = AT91CAP9_ID_US0,
878 .flags = IORESOURCE_IRQ,
879 },
880};
881
882static struct atmel_uart_data uart0_data = {
883 .use_dma_tx = 1,
884 .use_dma_rx = 1,
885};
886
887static u64 uart0_dmamask = DMA_BIT_MASK(32);
888
889static struct platform_device at91cap9_uart0_device = {
890 .name = "atmel_usart",
891 .id = 1,
892 .dev = {
893 .dma_mask = &uart0_dmamask,
894 .coherent_dma_mask = DMA_BIT_MASK(32),
895 .platform_data = &uart0_data,
896 },
897 .resource = uart0_resources,
898 .num_resources = ARRAY_SIZE(uart0_resources),
899};
900
901static inline void configure_usart0_pins(unsigned pins)
902{
903 at91_set_A_periph(AT91_PIN_PA22, 1); /* TXD0 */
904 at91_set_A_periph(AT91_PIN_PA23, 0); /* RXD0 */
905
906 if (pins & ATMEL_UART_RTS)
907 at91_set_A_periph(AT91_PIN_PA24, 0); /* RTS0 */
908 if (pins & ATMEL_UART_CTS)
909 at91_set_A_periph(AT91_PIN_PA25, 0); /* CTS0 */
910}
911
912static struct resource uart1_resources[] = {
913 [0] = {
914 .start = AT91CAP9_BASE_US1,
915 .end = AT91CAP9_BASE_US1 + SZ_16K - 1,
916 .flags = IORESOURCE_MEM,
917 },
918 [1] = {
919 .start = AT91CAP9_ID_US1,
920 .end = AT91CAP9_ID_US1,
921 .flags = IORESOURCE_IRQ,
922 },
923};
924
925static struct atmel_uart_data uart1_data = {
926 .use_dma_tx = 1,
927 .use_dma_rx = 1,
928};
929
930static u64 uart1_dmamask = DMA_BIT_MASK(32);
931
932static struct platform_device at91cap9_uart1_device = {
933 .name = "atmel_usart",
934 .id = 2,
935 .dev = {
936 .dma_mask = &uart1_dmamask,
937 .coherent_dma_mask = DMA_BIT_MASK(32),
938 .platform_data = &uart1_data,
939 },
940 .resource = uart1_resources,
941 .num_resources = ARRAY_SIZE(uart1_resources),
942};
943
944static inline void configure_usart1_pins(unsigned pins)
945{
946 at91_set_A_periph(AT91_PIN_PD0, 1); /* TXD1 */
947 at91_set_A_periph(AT91_PIN_PD1, 0); /* RXD1 */
948
949 if (pins & ATMEL_UART_RTS)
950 at91_set_B_periph(AT91_PIN_PD7, 0); /* RTS1 */
951 if (pins & ATMEL_UART_CTS)
952 at91_set_B_periph(AT91_PIN_PD8, 0); /* CTS1 */
953}
954
955static struct resource uart2_resources[] = {
956 [0] = {
957 .start = AT91CAP9_BASE_US2,
958 .end = AT91CAP9_BASE_US2 + SZ_16K - 1,
959 .flags = IORESOURCE_MEM,
960 },
961 [1] = {
962 .start = AT91CAP9_ID_US2,
963 .end = AT91CAP9_ID_US2,
964 .flags = IORESOURCE_IRQ,
965 },
966};
967
968static struct atmel_uart_data uart2_data = {
969 .use_dma_tx = 1,
970 .use_dma_rx = 1,
971};
972
973static u64 uart2_dmamask = DMA_BIT_MASK(32);
974
975static struct platform_device at91cap9_uart2_device = {
976 .name = "atmel_usart",
977 .id = 3,
978 .dev = {
979 .dma_mask = &uart2_dmamask,
980 .coherent_dma_mask = DMA_BIT_MASK(32),
981 .platform_data = &uart2_data,
982 },
983 .resource = uart2_resources,
984 .num_resources = ARRAY_SIZE(uart2_resources),
985};
986
987static inline void configure_usart2_pins(unsigned pins)
988{
989 at91_set_A_periph(AT91_PIN_PD2, 1); /* TXD2 */
990 at91_set_A_periph(AT91_PIN_PD3, 0); /* RXD2 */
991
992 if (pins & ATMEL_UART_RTS)
993 at91_set_B_periph(AT91_PIN_PD5, 0); /* RTS2 */
994 if (pins & ATMEL_UART_CTS)
995 at91_set_B_periph(AT91_PIN_PD6, 0); /* CTS2 */
996}
997
998static struct platform_device *at91_uarts[ATMEL_MAX_UART]; /* the UARTs to use */
999struct platform_device *atmel_default_console_device; /* the serial console device */
1000
1001void __init at91_register_uart(unsigned id, unsigned portnr, unsigned pins)
1002{
1003 struct platform_device *pdev;
1004
1005 switch (id) {
1006 case 0: /* DBGU */
1007 pdev = &at91cap9_dbgu_device;
1008 configure_dbgu_pins();
1009 at91_clock_associate("mck", &pdev->dev, "usart");
1010 break;
1011 case AT91CAP9_ID_US0:
1012 pdev = &at91cap9_uart0_device;
1013 configure_usart0_pins(pins);
1014 at91_clock_associate("usart0_clk", &pdev->dev, "usart");
1015 break;
1016 case AT91CAP9_ID_US1:
1017 pdev = &at91cap9_uart1_device;
1018 configure_usart1_pins(pins);
1019 at91_clock_associate("usart1_clk", &pdev->dev, "usart");
1020 break;
1021 case AT91CAP9_ID_US2:
1022 pdev = &at91cap9_uart2_device;
1023 configure_usart2_pins(pins);
1024 at91_clock_associate("usart2_clk", &pdev->dev, "usart");
1025 break;
1026 default:
1027 return;
1028 }
1029 pdev->id = portnr; /* update to mapped ID */
1030
1031 if (portnr < ATMEL_MAX_UART)
1032 at91_uarts[portnr] = pdev;
1033}
1034
1035void __init at91_set_serial_console(unsigned portnr)
1036{
1037 if (portnr < ATMEL_MAX_UART)
1038 atmel_default_console_device = at91_uarts[portnr];
1039 if (!atmel_default_console_device)
1040 printk(KERN_INFO "AT91: No default serial console defined.\n");
1041}
1042
1043void __init at91_add_device_serial(void)
1044{
1045 int i;
1046
1047 for (i = 0; i < ATMEL_MAX_UART; i++) {
1048 if (at91_uarts[i])
1049 platform_device_register(at91_uarts[i]);
1050 }
1051}
1052#else
1053void __init at91_register_uart(unsigned id, unsigned portnr, unsigned pins) {}
1054void __init at91_set_serial_console(unsigned portnr) {}
1055void __init at91_add_device_serial(void) {}
1056#endif
1057
1058
1059/* -------------------------------------------------------------------- */
1060/*
1061 * These devices are always present and don't need any board-specific
1062 * setup.
1063 */
1064static int __init at91_add_standard_devices(void)
1065{
1066 at91_add_device_rtt();
1067 at91_add_device_watchdog();
1068 return 0;
1069}
1070
1071arch_initcall(at91_add_standard_devices);