2 * arch/arm/mach-at91/at91cap9_devices.c
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.
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.
14 #include <asm/mach/arch.h>
15 #include <asm/mach/map.h>
16 #include <asm/mach/irq.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/platform_device.h>
20 #include <linux/i2c-gpio.h>
22 #include <video/atmel_lcdc.h>
24 #include <mach/board.h>
26 #include <mach/gpio.h>
27 #include <mach/at91cap9.h>
28 #include <mach/at91cap9_matrix.h>
29 #include <mach/at91sam9_smc.h>
34 /* --------------------------------------------------------------------
36 * -------------------------------------------------------------------- */
38 #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
39 static u64 ohci_dmamask
= DMA_BIT_MASK(32);
40 static struct at91_usbh_data usbh_data
;
42 static struct resource usbh_resources
[] = {
44 .start
= AT91CAP9_UHP_BASE
,
45 .end
= AT91CAP9_UHP_BASE
+ SZ_1M
- 1,
46 .flags
= IORESOURCE_MEM
,
49 .start
= AT91CAP9_ID_UHP
,
50 .end
= AT91CAP9_ID_UHP
,
51 .flags
= IORESOURCE_IRQ
,
55 static struct platform_device at91_usbh_device
= {
59 .dma_mask
= &ohci_dmamask
,
60 .coherent_dma_mask
= DMA_BIT_MASK(32),
61 .platform_data
= &usbh_data
,
63 .resource
= usbh_resources
,
64 .num_resources
= ARRAY_SIZE(usbh_resources
),
67 void __init
at91_add_device_usbh(struct at91_usbh_data
*data
)
74 if (cpu_is_at91cap9_revB())
75 irq_set_irq_type(AT91CAP9_ID_UHP
, IRQ_TYPE_LEVEL_HIGH
);
77 /* Enable VBus control for UHP ports */
78 for (i
= 0; i
< data
->ports
; i
++) {
79 if (data
->vbus_pin
[i
])
80 at91_set_gpio_output(data
->vbus_pin
[i
], 0);
84 platform_device_register(&at91_usbh_device
);
87 void __init
at91_add_device_usbh(struct at91_usbh_data
*data
) {}
91 /* --------------------------------------------------------------------
92 * USB HS Device (Gadget)
93 * -------------------------------------------------------------------- */
95 #if defined(CONFIG_USB_GADGET_ATMEL_USBA) || defined(CONFIG_USB_GADGET_ATMEL_USBA_MODULE)
97 static struct resource usba_udc_resources
[] = {
99 .start
= AT91CAP9_UDPHS_FIFO
,
100 .end
= AT91CAP9_UDPHS_FIFO
+ SZ_512K
- 1,
101 .flags
= IORESOURCE_MEM
,
104 .start
= AT91CAP9_BASE_UDPHS
,
105 .end
= AT91CAP9_BASE_UDPHS
+ SZ_1K
- 1,
106 .flags
= IORESOURCE_MEM
,
109 .start
= AT91CAP9_ID_UDPHS
,
110 .end
= AT91CAP9_ID_UDPHS
,
111 .flags
= IORESOURCE_IRQ
,
115 #define EP(nam, idx, maxpkt, maxbk, dma, isoc) \
119 .fifo_size = maxpkt, \
125 static struct usba_ep_data usba_udc_ep
[] = {
126 EP("ep0", 0, 64, 1, 0, 0),
127 EP("ep1", 1, 1024, 3, 1, 1),
128 EP("ep2", 2, 1024, 3, 1, 1),
129 EP("ep3", 3, 1024, 2, 1, 1),
130 EP("ep4", 4, 1024, 2, 1, 1),
131 EP("ep5", 5, 1024, 2, 1, 0),
132 EP("ep6", 6, 1024, 2, 1, 0),
133 EP("ep7", 7, 1024, 2, 0, 0),
139 * pdata doesn't have room for any endpoints, so we need to
140 * append room for the ones we need right after it.
143 struct usba_platform_data pdata
;
144 struct usba_ep_data ep
[8];
147 static struct platform_device at91_usba_udc_device
= {
148 .name
= "atmel_usba_udc",
151 .platform_data
= &usba_udc_data
.pdata
,
153 .resource
= usba_udc_resources
,
154 .num_resources
= ARRAY_SIZE(usba_udc_resources
),
157 void __init
at91_add_device_usba(struct usba_platform_data
*data
)
159 if (cpu_is_at91cap9_revB()) {
160 irq_set_irq_type(AT91CAP9_ID_UDPHS
, IRQ_TYPE_LEVEL_HIGH
);
161 at91_sys_write(AT91_MATRIX_UDPHS
, AT91_MATRIX_SELECT_UDPHS
|
162 AT91_MATRIX_UDPHS_BYPASS_LOCK
);
165 at91_sys_write(AT91_MATRIX_UDPHS
, AT91_MATRIX_SELECT_UDPHS
);
168 * Invalid pins are 0 on AT91, but the usba driver is shared
169 * with AVR32, which use negative values instead. Once/if
170 * gpio_is_valid() is ported to AT91, revisit this code.
172 usba_udc_data
.pdata
.vbus_pin
= -EINVAL
;
173 usba_udc_data
.pdata
.num_ep
= ARRAY_SIZE(usba_udc_ep
);
174 memcpy(usba_udc_data
.ep
, usba_udc_ep
, sizeof(usba_udc_ep
));
176 if (data
&& data
->vbus_pin
> 0) {
177 at91_set_gpio_input(data
->vbus_pin
, 0);
178 at91_set_deglitch(data
->vbus_pin
, 1);
179 usba_udc_data
.pdata
.vbus_pin
= data
->vbus_pin
;
182 /* Pullup pin is handled internally by USB device peripheral */
184 platform_device_register(&at91_usba_udc_device
);
187 void __init
at91_add_device_usba(struct usba_platform_data
*data
) {}
191 /* --------------------------------------------------------------------
193 * -------------------------------------------------------------------- */
195 #if defined(CONFIG_MACB) || defined(CONFIG_MACB_MODULE)
196 static u64 eth_dmamask
= DMA_BIT_MASK(32);
197 static struct at91_eth_data eth_data
;
199 static struct resource eth_resources
[] = {
201 .start
= AT91CAP9_BASE_EMAC
,
202 .end
= AT91CAP9_BASE_EMAC
+ SZ_16K
- 1,
203 .flags
= IORESOURCE_MEM
,
206 .start
= AT91CAP9_ID_EMAC
,
207 .end
= AT91CAP9_ID_EMAC
,
208 .flags
= IORESOURCE_IRQ
,
212 static struct platform_device at91cap9_eth_device
= {
216 .dma_mask
= ð_dmamask
,
217 .coherent_dma_mask
= DMA_BIT_MASK(32),
218 .platform_data
= ð_data
,
220 .resource
= eth_resources
,
221 .num_resources
= ARRAY_SIZE(eth_resources
),
224 void __init
at91_add_device_eth(struct at91_eth_data
*data
)
229 if (data
->phy_irq_pin
) {
230 at91_set_gpio_input(data
->phy_irq_pin
, 0);
231 at91_set_deglitch(data
->phy_irq_pin
, 1);
234 /* Pins used for MII and RMII */
235 at91_set_A_periph(AT91_PIN_PB21
, 0); /* ETXCK_EREFCK */
236 at91_set_A_periph(AT91_PIN_PB22
, 0); /* ERXDV */
237 at91_set_A_periph(AT91_PIN_PB25
, 0); /* ERX0 */
238 at91_set_A_periph(AT91_PIN_PB26
, 0); /* ERX1 */
239 at91_set_A_periph(AT91_PIN_PB27
, 0); /* ERXER */
240 at91_set_A_periph(AT91_PIN_PB28
, 0); /* ETXEN */
241 at91_set_A_periph(AT91_PIN_PB23
, 0); /* ETX0 */
242 at91_set_A_periph(AT91_PIN_PB24
, 0); /* ETX1 */
243 at91_set_A_periph(AT91_PIN_PB30
, 0); /* EMDIO */
244 at91_set_A_periph(AT91_PIN_PB29
, 0); /* EMDC */
246 if (!data
->is_rmii
) {
247 at91_set_B_periph(AT91_PIN_PC25
, 0); /* ECRS */
248 at91_set_B_periph(AT91_PIN_PC26
, 0); /* ECOL */
249 at91_set_B_periph(AT91_PIN_PC22
, 0); /* ERX2 */
250 at91_set_B_periph(AT91_PIN_PC23
, 0); /* ERX3 */
251 at91_set_B_periph(AT91_PIN_PC27
, 0); /* ERXCK */
252 at91_set_B_periph(AT91_PIN_PC20
, 0); /* ETX2 */
253 at91_set_B_periph(AT91_PIN_PC21
, 0); /* ETX3 */
254 at91_set_B_periph(AT91_PIN_PC24
, 0); /* ETXER */
258 platform_device_register(&at91cap9_eth_device
);
261 void __init
at91_add_device_eth(struct at91_eth_data
*data
) {}
265 /* --------------------------------------------------------------------
267 * -------------------------------------------------------------------- */
269 #if defined(CONFIG_MMC_AT91) || defined(CONFIG_MMC_AT91_MODULE)
270 static u64 mmc_dmamask
= DMA_BIT_MASK(32);
271 static struct at91_mmc_data mmc0_data
, mmc1_data
;
273 static struct resource mmc0_resources
[] = {
275 .start
= AT91CAP9_BASE_MCI0
,
276 .end
= AT91CAP9_BASE_MCI0
+ SZ_16K
- 1,
277 .flags
= IORESOURCE_MEM
,
280 .start
= AT91CAP9_ID_MCI0
,
281 .end
= AT91CAP9_ID_MCI0
,
282 .flags
= IORESOURCE_IRQ
,
286 static struct platform_device at91cap9_mmc0_device
= {
290 .dma_mask
= &mmc_dmamask
,
291 .coherent_dma_mask
= DMA_BIT_MASK(32),
292 .platform_data
= &mmc0_data
,
294 .resource
= mmc0_resources
,
295 .num_resources
= ARRAY_SIZE(mmc0_resources
),
298 static struct resource mmc1_resources
[] = {
300 .start
= AT91CAP9_BASE_MCI1
,
301 .end
= AT91CAP9_BASE_MCI1
+ SZ_16K
- 1,
302 .flags
= IORESOURCE_MEM
,
305 .start
= AT91CAP9_ID_MCI1
,
306 .end
= AT91CAP9_ID_MCI1
,
307 .flags
= IORESOURCE_IRQ
,
311 static struct platform_device at91cap9_mmc1_device
= {
315 .dma_mask
= &mmc_dmamask
,
316 .coherent_dma_mask
= DMA_BIT_MASK(32),
317 .platform_data
= &mmc1_data
,
319 .resource
= mmc1_resources
,
320 .num_resources
= ARRAY_SIZE(mmc1_resources
),
323 void __init
at91_add_device_mmc(short mmc_id
, struct at91_mmc_data
*data
)
330 at91_set_gpio_input(data
->det_pin
, 1);
331 at91_set_deglitch(data
->det_pin
, 1);
334 at91_set_gpio_input(data
->wp_pin
, 1);
336 at91_set_gpio_output(data
->vcc_pin
, 0);
338 if (mmc_id
== 0) { /* MCI0 */
340 at91_set_A_periph(AT91_PIN_PA2
, 0);
343 at91_set_A_periph(AT91_PIN_PA1
, 1);
345 /* DAT0, maybe DAT1..DAT3 */
346 at91_set_A_periph(AT91_PIN_PA0
, 1);
348 at91_set_A_periph(AT91_PIN_PA3
, 1);
349 at91_set_A_periph(AT91_PIN_PA4
, 1);
350 at91_set_A_periph(AT91_PIN_PA5
, 1);
354 platform_device_register(&at91cap9_mmc0_device
);
357 at91_set_A_periph(AT91_PIN_PA16
, 0);
360 at91_set_A_periph(AT91_PIN_PA17
, 1);
362 /* DAT0, maybe DAT1..DAT3 */
363 at91_set_A_periph(AT91_PIN_PA18
, 1);
365 at91_set_A_periph(AT91_PIN_PA19
, 1);
366 at91_set_A_periph(AT91_PIN_PA20
, 1);
367 at91_set_A_periph(AT91_PIN_PA21
, 1);
371 platform_device_register(&at91cap9_mmc1_device
);
375 void __init
at91_add_device_mmc(short mmc_id
, struct at91_mmc_data
*data
) {}
379 /* --------------------------------------------------------------------
381 * -------------------------------------------------------------------- */
383 #if defined(CONFIG_MTD_NAND_ATMEL) || defined(CONFIG_MTD_NAND_ATMEL_MODULE)
384 static struct atmel_nand_data nand_data
;
386 #define NAND_BASE AT91_CHIPSELECT_3
388 static struct resource nand_resources
[] = {
391 .end
= NAND_BASE
+ SZ_256M
- 1,
392 .flags
= IORESOURCE_MEM
,
395 .start
= AT91_BASE_SYS
+ AT91_ECC
,
396 .end
= AT91_BASE_SYS
+ AT91_ECC
+ SZ_512
- 1,
397 .flags
= IORESOURCE_MEM
,
401 static struct platform_device at91cap9_nand_device
= {
402 .name
= "atmel_nand",
405 .platform_data
= &nand_data
,
407 .resource
= nand_resources
,
408 .num_resources
= ARRAY_SIZE(nand_resources
),
411 void __init
at91_add_device_nand(struct atmel_nand_data
*data
)
418 csa
= at91_sys_read(AT91_MATRIX_EBICSA
);
419 at91_sys_write(AT91_MATRIX_EBICSA
, csa
| AT91_MATRIX_EBI_CS3A_SMC_SMARTMEDIA
);
422 if (data
->enable_pin
)
423 at91_set_gpio_output(data
->enable_pin
, 1);
427 at91_set_gpio_input(data
->rdy_pin
, 1);
429 /* card detect pin */
431 at91_set_gpio_input(data
->det_pin
, 1);
434 platform_device_register(&at91cap9_nand_device
);
437 void __init
at91_add_device_nand(struct atmel_nand_data
*data
) {}
441 /* --------------------------------------------------------------------
443 * -------------------------------------------------------------------- */
446 * Prefer the GPIO code since the TWI controller isn't robust
447 * (gets overruns and underruns under load) and can only issue
448 * repeated STARTs in one scenario (the driver doesn't yet handle them).
450 #if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
452 static struct i2c_gpio_platform_data pdata
= {
453 .sda_pin
= AT91_PIN_PB4
,
454 .sda_is_open_drain
= 1,
455 .scl_pin
= AT91_PIN_PB5
,
456 .scl_is_open_drain
= 1,
457 .udelay
= 2, /* ~100 kHz */
460 static struct platform_device at91cap9_twi_device
= {
463 .dev
.platform_data
= &pdata
,
466 void __init
at91_add_device_i2c(struct i2c_board_info
*devices
, int nr_devices
)
468 at91_set_GPIO_periph(AT91_PIN_PB4
, 1); /* TWD (SDA) */
469 at91_set_multi_drive(AT91_PIN_PB4
, 1);
471 at91_set_GPIO_periph(AT91_PIN_PB5
, 1); /* TWCK (SCL) */
472 at91_set_multi_drive(AT91_PIN_PB5
, 1);
474 i2c_register_board_info(0, devices
, nr_devices
);
475 platform_device_register(&at91cap9_twi_device
);
478 #elif defined(CONFIG_I2C_AT91) || defined(CONFIG_I2C_AT91_MODULE)
480 static struct resource twi_resources
[] = {
482 .start
= AT91CAP9_BASE_TWI
,
483 .end
= AT91CAP9_BASE_TWI
+ SZ_16K
- 1,
484 .flags
= IORESOURCE_MEM
,
487 .start
= AT91CAP9_ID_TWI
,
488 .end
= AT91CAP9_ID_TWI
,
489 .flags
= IORESOURCE_IRQ
,
493 static struct platform_device at91cap9_twi_device
= {
496 .resource
= twi_resources
,
497 .num_resources
= ARRAY_SIZE(twi_resources
),
500 void __init
at91_add_device_i2c(struct i2c_board_info
*devices
, int nr_devices
)
502 /* pins used for TWI interface */
503 at91_set_B_periph(AT91_PIN_PB4
, 0); /* TWD */
504 at91_set_multi_drive(AT91_PIN_PB4
, 1);
506 at91_set_B_periph(AT91_PIN_PB5
, 0); /* TWCK */
507 at91_set_multi_drive(AT91_PIN_PB5
, 1);
509 i2c_register_board_info(0, devices
, nr_devices
);
510 platform_device_register(&at91cap9_twi_device
);
513 void __init
at91_add_device_i2c(struct i2c_board_info
*devices
, int nr_devices
) {}
516 /* --------------------------------------------------------------------
518 * -------------------------------------------------------------------- */
520 #if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
521 static u64 spi_dmamask
= DMA_BIT_MASK(32);
523 static struct resource spi0_resources
[] = {
525 .start
= AT91CAP9_BASE_SPI0
,
526 .end
= AT91CAP9_BASE_SPI0
+ SZ_16K
- 1,
527 .flags
= IORESOURCE_MEM
,
530 .start
= AT91CAP9_ID_SPI0
,
531 .end
= AT91CAP9_ID_SPI0
,
532 .flags
= IORESOURCE_IRQ
,
536 static struct platform_device at91cap9_spi0_device
= {
540 .dma_mask
= &spi_dmamask
,
541 .coherent_dma_mask
= DMA_BIT_MASK(32),
543 .resource
= spi0_resources
,
544 .num_resources
= ARRAY_SIZE(spi0_resources
),
547 static const unsigned spi0_standard_cs
[4] = { AT91_PIN_PA5
, AT91_PIN_PA3
, AT91_PIN_PD0
, AT91_PIN_PD1
};
549 static struct resource spi1_resources
[] = {
551 .start
= AT91CAP9_BASE_SPI1
,
552 .end
= AT91CAP9_BASE_SPI1
+ SZ_16K
- 1,
553 .flags
= IORESOURCE_MEM
,
556 .start
= AT91CAP9_ID_SPI1
,
557 .end
= AT91CAP9_ID_SPI1
,
558 .flags
= IORESOURCE_IRQ
,
562 static struct platform_device at91cap9_spi1_device
= {
566 .dma_mask
= &spi_dmamask
,
567 .coherent_dma_mask
= DMA_BIT_MASK(32),
569 .resource
= spi1_resources
,
570 .num_resources
= ARRAY_SIZE(spi1_resources
),
573 static const unsigned spi1_standard_cs
[4] = { AT91_PIN_PB15
, AT91_PIN_PB16
, AT91_PIN_PB17
, AT91_PIN_PB18
};
575 void __init
at91_add_device_spi(struct spi_board_info
*devices
, int nr_devices
)
578 unsigned long cs_pin
;
579 short enable_spi0
= 0;
580 short enable_spi1
= 0;
582 /* Choose SPI chip-selects */
583 for (i
= 0; i
< nr_devices
; i
++) {
584 if (devices
[i
].controller_data
)
585 cs_pin
= (unsigned long) devices
[i
].controller_data
;
586 else if (devices
[i
].bus_num
== 0)
587 cs_pin
= spi0_standard_cs
[devices
[i
].chip_select
];
589 cs_pin
= spi1_standard_cs
[devices
[i
].chip_select
];
591 if (devices
[i
].bus_num
== 0)
596 /* enable chip-select pin */
597 at91_set_gpio_output(cs_pin
, 1);
599 /* pass chip-select pin to driver */
600 devices
[i
].controller_data
= (void *) cs_pin
;
603 spi_register_board_info(devices
, nr_devices
);
605 /* Configure SPI bus(es) */
607 at91_set_B_periph(AT91_PIN_PA0
, 0); /* SPI0_MISO */
608 at91_set_B_periph(AT91_PIN_PA1
, 0); /* SPI0_MOSI */
609 at91_set_B_periph(AT91_PIN_PA2
, 0); /* SPI0_SPCK */
611 platform_device_register(&at91cap9_spi0_device
);
614 at91_set_A_periph(AT91_PIN_PB12
, 0); /* SPI1_MISO */
615 at91_set_A_periph(AT91_PIN_PB13
, 0); /* SPI1_MOSI */
616 at91_set_A_periph(AT91_PIN_PB14
, 0); /* SPI1_SPCK */
618 platform_device_register(&at91cap9_spi1_device
);
622 void __init
at91_add_device_spi(struct spi_board_info
*devices
, int nr_devices
) {}
626 /* --------------------------------------------------------------------
627 * Timer/Counter block
628 * -------------------------------------------------------------------- */
630 #ifdef CONFIG_ATMEL_TCLIB
632 static struct resource tcb_resources
[] = {
634 .start
= AT91CAP9_BASE_TCB0
,
635 .end
= AT91CAP9_BASE_TCB0
+ SZ_16K
- 1,
636 .flags
= IORESOURCE_MEM
,
639 .start
= AT91CAP9_ID_TCB
,
640 .end
= AT91CAP9_ID_TCB
,
641 .flags
= IORESOURCE_IRQ
,
645 static struct platform_device at91cap9_tcb_device
= {
648 .resource
= tcb_resources
,
649 .num_resources
= ARRAY_SIZE(tcb_resources
),
652 static void __init
at91_add_device_tc(void)
654 platform_device_register(&at91cap9_tcb_device
);
657 static void __init
at91_add_device_tc(void) { }
661 /* --------------------------------------------------------------------
663 * -------------------------------------------------------------------- */
665 static struct resource rtt_resources
[] = {
667 .start
= AT91_BASE_SYS
+ AT91_RTT
,
668 .end
= AT91_BASE_SYS
+ AT91_RTT
+ SZ_16
- 1,
669 .flags
= IORESOURCE_MEM
,
673 static struct platform_device at91cap9_rtt_device
= {
676 .resource
= rtt_resources
,
677 .num_resources
= ARRAY_SIZE(rtt_resources
),
680 static void __init
at91_add_device_rtt(void)
682 platform_device_register(&at91cap9_rtt_device
);
686 /* --------------------------------------------------------------------
688 * -------------------------------------------------------------------- */
690 #if defined(CONFIG_AT91SAM9X_WATCHDOG) || defined(CONFIG_AT91SAM9X_WATCHDOG_MODULE)
691 static struct platform_device at91cap9_wdt_device
= {
697 static void __init
at91_add_device_watchdog(void)
699 platform_device_register(&at91cap9_wdt_device
);
702 static void __init
at91_add_device_watchdog(void) {}
706 /* --------------------------------------------------------------------
708 * --------------------------------------------------------------------*/
710 #if defined(CONFIG_ATMEL_PWM)
713 static struct resource pwm_resources
[] = {
715 .start
= AT91CAP9_BASE_PWMC
,
716 .end
= AT91CAP9_BASE_PWMC
+ SZ_16K
- 1,
717 .flags
= IORESOURCE_MEM
,
720 .start
= AT91CAP9_ID_PWMC
,
721 .end
= AT91CAP9_ID_PWMC
,
722 .flags
= IORESOURCE_IRQ
,
726 static struct platform_device at91cap9_pwm0_device
= {
730 .platform_data
= &pwm_mask
,
732 .resource
= pwm_resources
,
733 .num_resources
= ARRAY_SIZE(pwm_resources
),
736 void __init
at91_add_device_pwm(u32 mask
)
738 if (mask
& (1 << AT91_PWM0
))
739 at91_set_A_periph(AT91_PIN_PB19
, 1); /* enable PWM0 */
741 if (mask
& (1 << AT91_PWM1
))
742 at91_set_B_periph(AT91_PIN_PB8
, 1); /* enable PWM1 */
744 if (mask
& (1 << AT91_PWM2
))
745 at91_set_B_periph(AT91_PIN_PC29
, 1); /* enable PWM2 */
747 if (mask
& (1 << AT91_PWM3
))
748 at91_set_B_periph(AT91_PIN_PA11
, 1); /* enable PWM3 */
752 platform_device_register(&at91cap9_pwm0_device
);
755 void __init
at91_add_device_pwm(u32 mask
) {}
760 /* --------------------------------------------------------------------
762 * -------------------------------------------------------------------- */
764 #if defined(CONFIG_SND_ATMEL_AC97C) || defined(CONFIG_SND_ATMEL_AC97C_MODULE)
765 static u64 ac97_dmamask
= DMA_BIT_MASK(32);
766 static struct ac97c_platform_data ac97_data
;
768 static struct resource ac97_resources
[] = {
770 .start
= AT91CAP9_BASE_AC97C
,
771 .end
= AT91CAP9_BASE_AC97C
+ SZ_16K
- 1,
772 .flags
= IORESOURCE_MEM
,
775 .start
= AT91CAP9_ID_AC97C
,
776 .end
= AT91CAP9_ID_AC97C
,
777 .flags
= IORESOURCE_IRQ
,
781 static struct platform_device at91cap9_ac97_device
= {
782 .name
= "atmel_ac97c",
785 .dma_mask
= &ac97_dmamask
,
786 .coherent_dma_mask
= DMA_BIT_MASK(32),
787 .platform_data
= &ac97_data
,
789 .resource
= ac97_resources
,
790 .num_resources
= ARRAY_SIZE(ac97_resources
),
793 void __init
at91_add_device_ac97(struct ac97c_platform_data
*data
)
798 at91_set_A_periph(AT91_PIN_PA6
, 0); /* AC97FS */
799 at91_set_A_periph(AT91_PIN_PA7
, 0); /* AC97CK */
800 at91_set_A_periph(AT91_PIN_PA8
, 0); /* AC97TX */
801 at91_set_A_periph(AT91_PIN_PA9
, 0); /* AC97RX */
805 at91_set_gpio_output(data
->reset_pin
, 0);
808 platform_device_register(&at91cap9_ac97_device
);
811 void __init
at91_add_device_ac97(struct ac97c_platform_data
*data
) {}
815 /* --------------------------------------------------------------------
817 * -------------------------------------------------------------------- */
819 #if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
820 static u64 lcdc_dmamask
= DMA_BIT_MASK(32);
821 static struct atmel_lcdfb_info lcdc_data
;
823 static struct resource lcdc_resources
[] = {
825 .start
= AT91CAP9_LCDC_BASE
,
826 .end
= AT91CAP9_LCDC_BASE
+ SZ_4K
- 1,
827 .flags
= IORESOURCE_MEM
,
830 .start
= AT91CAP9_ID_LCDC
,
831 .end
= AT91CAP9_ID_LCDC
,
832 .flags
= IORESOURCE_IRQ
,
836 static struct platform_device at91_lcdc_device
= {
837 .name
= "atmel_lcdfb",
840 .dma_mask
= &lcdc_dmamask
,
841 .coherent_dma_mask
= DMA_BIT_MASK(32),
842 .platform_data
= &lcdc_data
,
844 .resource
= lcdc_resources
,
845 .num_resources
= ARRAY_SIZE(lcdc_resources
),
848 void __init
at91_add_device_lcdc(struct atmel_lcdfb_info
*data
)
853 if (cpu_is_at91cap9_revB())
854 irq_set_irq_type(AT91CAP9_ID_LCDC
, IRQ_TYPE_LEVEL_HIGH
);
856 at91_set_A_periph(AT91_PIN_PC1
, 0); /* LCDHSYNC */
857 at91_set_A_periph(AT91_PIN_PC2
, 0); /* LCDDOTCK */
858 at91_set_A_periph(AT91_PIN_PC3
, 0); /* LCDDEN */
859 at91_set_B_periph(AT91_PIN_PB9
, 0); /* LCDCC */
860 at91_set_A_periph(AT91_PIN_PC6
, 0); /* LCDD2 */
861 at91_set_A_periph(AT91_PIN_PC7
, 0); /* LCDD3 */
862 at91_set_A_periph(AT91_PIN_PC8
, 0); /* LCDD4 */
863 at91_set_A_periph(AT91_PIN_PC9
, 0); /* LCDD5 */
864 at91_set_A_periph(AT91_PIN_PC10
, 0); /* LCDD6 */
865 at91_set_A_periph(AT91_PIN_PC11
, 0); /* LCDD7 */
866 at91_set_A_periph(AT91_PIN_PC14
, 0); /* LCDD10 */
867 at91_set_A_periph(AT91_PIN_PC15
, 0); /* LCDD11 */
868 at91_set_A_periph(AT91_PIN_PC16
, 0); /* LCDD12 */
869 at91_set_A_periph(AT91_PIN_PC17
, 0); /* LCDD13 */
870 at91_set_A_periph(AT91_PIN_PC18
, 0); /* LCDD14 */
871 at91_set_A_periph(AT91_PIN_PC19
, 0); /* LCDD15 */
872 at91_set_A_periph(AT91_PIN_PC22
, 0); /* LCDD18 */
873 at91_set_A_periph(AT91_PIN_PC23
, 0); /* LCDD19 */
874 at91_set_A_periph(AT91_PIN_PC24
, 0); /* LCDD20 */
875 at91_set_A_periph(AT91_PIN_PC25
, 0); /* LCDD21 */
876 at91_set_A_periph(AT91_PIN_PC26
, 0); /* LCDD22 */
877 at91_set_A_periph(AT91_PIN_PC27
, 0); /* LCDD23 */
880 platform_device_register(&at91_lcdc_device
);
883 void __init
at91_add_device_lcdc(struct atmel_lcdfb_info
*data
) {}
887 /* --------------------------------------------------------------------
888 * SSC -- Synchronous Serial Controller
889 * -------------------------------------------------------------------- */
891 #if defined(CONFIG_ATMEL_SSC) || defined(CONFIG_ATMEL_SSC_MODULE)
892 static u64 ssc0_dmamask
= DMA_BIT_MASK(32);
894 static struct resource ssc0_resources
[] = {
896 .start
= AT91CAP9_BASE_SSC0
,
897 .end
= AT91CAP9_BASE_SSC0
+ SZ_16K
- 1,
898 .flags
= IORESOURCE_MEM
,
901 .start
= AT91CAP9_ID_SSC0
,
902 .end
= AT91CAP9_ID_SSC0
,
903 .flags
= IORESOURCE_IRQ
,
907 static struct platform_device at91cap9_ssc0_device
= {
911 .dma_mask
= &ssc0_dmamask
,
912 .coherent_dma_mask
= DMA_BIT_MASK(32),
914 .resource
= ssc0_resources
,
915 .num_resources
= ARRAY_SIZE(ssc0_resources
),
918 static inline void configure_ssc0_pins(unsigned pins
)
920 if (pins
& ATMEL_SSC_TF
)
921 at91_set_A_periph(AT91_PIN_PB0
, 1);
922 if (pins
& ATMEL_SSC_TK
)
923 at91_set_A_periph(AT91_PIN_PB1
, 1);
924 if (pins
& ATMEL_SSC_TD
)
925 at91_set_A_periph(AT91_PIN_PB2
, 1);
926 if (pins
& ATMEL_SSC_RD
)
927 at91_set_A_periph(AT91_PIN_PB3
, 1);
928 if (pins
& ATMEL_SSC_RK
)
929 at91_set_A_periph(AT91_PIN_PB4
, 1);
930 if (pins
& ATMEL_SSC_RF
)
931 at91_set_A_periph(AT91_PIN_PB5
, 1);
934 static u64 ssc1_dmamask
= DMA_BIT_MASK(32);
936 static struct resource ssc1_resources
[] = {
938 .start
= AT91CAP9_BASE_SSC1
,
939 .end
= AT91CAP9_BASE_SSC1
+ SZ_16K
- 1,
940 .flags
= IORESOURCE_MEM
,
943 .start
= AT91CAP9_ID_SSC1
,
944 .end
= AT91CAP9_ID_SSC1
,
945 .flags
= IORESOURCE_IRQ
,
949 static struct platform_device at91cap9_ssc1_device
= {
953 .dma_mask
= &ssc1_dmamask
,
954 .coherent_dma_mask
= DMA_BIT_MASK(32),
956 .resource
= ssc1_resources
,
957 .num_resources
= ARRAY_SIZE(ssc1_resources
),
960 static inline void configure_ssc1_pins(unsigned pins
)
962 if (pins
& ATMEL_SSC_TF
)
963 at91_set_A_periph(AT91_PIN_PB6
, 1);
964 if (pins
& ATMEL_SSC_TK
)
965 at91_set_A_periph(AT91_PIN_PB7
, 1);
966 if (pins
& ATMEL_SSC_TD
)
967 at91_set_A_periph(AT91_PIN_PB8
, 1);
968 if (pins
& ATMEL_SSC_RD
)
969 at91_set_A_periph(AT91_PIN_PB9
, 1);
970 if (pins
& ATMEL_SSC_RK
)
971 at91_set_A_periph(AT91_PIN_PB10
, 1);
972 if (pins
& ATMEL_SSC_RF
)
973 at91_set_A_periph(AT91_PIN_PB11
, 1);
977 * SSC controllers are accessed through library code, instead of any
978 * kind of all-singing/all-dancing driver. For example one could be
979 * used by a particular I2S audio codec's driver, while another one
980 * on the same system might be used by a custom data capture driver.
982 void __init
at91_add_device_ssc(unsigned id
, unsigned pins
)
984 struct platform_device
*pdev
;
987 * NOTE: caller is responsible for passing information matching
988 * "pins" to whatever will be using each particular controller.
991 case AT91CAP9_ID_SSC0
:
992 pdev
= &at91cap9_ssc0_device
;
993 configure_ssc0_pins(pins
);
995 case AT91CAP9_ID_SSC1
:
996 pdev
= &at91cap9_ssc1_device
;
997 configure_ssc1_pins(pins
);
1003 platform_device_register(pdev
);
1007 void __init
at91_add_device_ssc(unsigned id
, unsigned pins
) {}
1011 /* --------------------------------------------------------------------
1013 * -------------------------------------------------------------------- */
1015 #if defined(CONFIG_SERIAL_ATMEL)
1016 static struct resource dbgu_resources
[] = {
1018 .start
= AT91_VA_BASE_SYS
+ AT91_DBGU
,
1019 .end
= AT91_VA_BASE_SYS
+ AT91_DBGU
+ SZ_512
- 1,
1020 .flags
= IORESOURCE_MEM
,
1023 .start
= AT91_ID_SYS
,
1025 .flags
= IORESOURCE_IRQ
,
1029 static struct atmel_uart_data dbgu_data
= {
1031 .use_dma_rx
= 0, /* DBGU not capable of receive DMA */
1032 .regs
= (void __iomem
*)(AT91_VA_BASE_SYS
+ AT91_DBGU
),
1035 static u64 dbgu_dmamask
= DMA_BIT_MASK(32);
1037 static struct platform_device at91cap9_dbgu_device
= {
1038 .name
= "atmel_usart",
1041 .dma_mask
= &dbgu_dmamask
,
1042 .coherent_dma_mask
= DMA_BIT_MASK(32),
1043 .platform_data
= &dbgu_data
,
1045 .resource
= dbgu_resources
,
1046 .num_resources
= ARRAY_SIZE(dbgu_resources
),
1049 static inline void configure_dbgu_pins(void)
1051 at91_set_A_periph(AT91_PIN_PC30
, 0); /* DRXD */
1052 at91_set_A_periph(AT91_PIN_PC31
, 1); /* DTXD */
1055 static struct resource uart0_resources
[] = {
1057 .start
= AT91CAP9_BASE_US0
,
1058 .end
= AT91CAP9_BASE_US0
+ SZ_16K
- 1,
1059 .flags
= IORESOURCE_MEM
,
1062 .start
= AT91CAP9_ID_US0
,
1063 .end
= AT91CAP9_ID_US0
,
1064 .flags
= IORESOURCE_IRQ
,
1068 static struct atmel_uart_data uart0_data
= {
1073 static u64 uart0_dmamask
= DMA_BIT_MASK(32);
1075 static struct platform_device at91cap9_uart0_device
= {
1076 .name
= "atmel_usart",
1079 .dma_mask
= &uart0_dmamask
,
1080 .coherent_dma_mask
= DMA_BIT_MASK(32),
1081 .platform_data
= &uart0_data
,
1083 .resource
= uart0_resources
,
1084 .num_resources
= ARRAY_SIZE(uart0_resources
),
1087 static inline void configure_usart0_pins(unsigned pins
)
1089 at91_set_A_periph(AT91_PIN_PA22
, 1); /* TXD0 */
1090 at91_set_A_periph(AT91_PIN_PA23
, 0); /* RXD0 */
1092 if (pins
& ATMEL_UART_RTS
)
1093 at91_set_A_periph(AT91_PIN_PA24
, 0); /* RTS0 */
1094 if (pins
& ATMEL_UART_CTS
)
1095 at91_set_A_periph(AT91_PIN_PA25
, 0); /* CTS0 */
1098 static struct resource uart1_resources
[] = {
1100 .start
= AT91CAP9_BASE_US1
,
1101 .end
= AT91CAP9_BASE_US1
+ SZ_16K
- 1,
1102 .flags
= IORESOURCE_MEM
,
1105 .start
= AT91CAP9_ID_US1
,
1106 .end
= AT91CAP9_ID_US1
,
1107 .flags
= IORESOURCE_IRQ
,
1111 static struct atmel_uart_data uart1_data
= {
1116 static u64 uart1_dmamask
= DMA_BIT_MASK(32);
1118 static struct platform_device at91cap9_uart1_device
= {
1119 .name
= "atmel_usart",
1122 .dma_mask
= &uart1_dmamask
,
1123 .coherent_dma_mask
= DMA_BIT_MASK(32),
1124 .platform_data
= &uart1_data
,
1126 .resource
= uart1_resources
,
1127 .num_resources
= ARRAY_SIZE(uart1_resources
),
1130 static inline void configure_usart1_pins(unsigned pins
)
1132 at91_set_A_periph(AT91_PIN_PD0
, 1); /* TXD1 */
1133 at91_set_A_periph(AT91_PIN_PD1
, 0); /* RXD1 */
1135 if (pins
& ATMEL_UART_RTS
)
1136 at91_set_B_periph(AT91_PIN_PD7
, 0); /* RTS1 */
1137 if (pins
& ATMEL_UART_CTS
)
1138 at91_set_B_periph(AT91_PIN_PD8
, 0); /* CTS1 */
1141 static struct resource uart2_resources
[] = {
1143 .start
= AT91CAP9_BASE_US2
,
1144 .end
= AT91CAP9_BASE_US2
+ SZ_16K
- 1,
1145 .flags
= IORESOURCE_MEM
,
1148 .start
= AT91CAP9_ID_US2
,
1149 .end
= AT91CAP9_ID_US2
,
1150 .flags
= IORESOURCE_IRQ
,
1154 static struct atmel_uart_data uart2_data
= {
1159 static u64 uart2_dmamask
= DMA_BIT_MASK(32);
1161 static struct platform_device at91cap9_uart2_device
= {
1162 .name
= "atmel_usart",
1165 .dma_mask
= &uart2_dmamask
,
1166 .coherent_dma_mask
= DMA_BIT_MASK(32),
1167 .platform_data
= &uart2_data
,
1169 .resource
= uart2_resources
,
1170 .num_resources
= ARRAY_SIZE(uart2_resources
),
1173 static inline void configure_usart2_pins(unsigned pins
)
1175 at91_set_A_periph(AT91_PIN_PD2
, 1); /* TXD2 */
1176 at91_set_A_periph(AT91_PIN_PD3
, 0); /* RXD2 */
1178 if (pins
& ATMEL_UART_RTS
)
1179 at91_set_B_periph(AT91_PIN_PD5
, 0); /* RTS2 */
1180 if (pins
& ATMEL_UART_CTS
)
1181 at91_set_B_periph(AT91_PIN_PD6
, 0); /* CTS2 */
1184 static struct platform_device
*__initdata at91_uarts
[ATMEL_MAX_UART
]; /* the UARTs to use */
1185 struct platform_device
*atmel_default_console_device
; /* the serial console device */
1187 void __init
at91_register_uart(unsigned id
, unsigned portnr
, unsigned pins
)
1189 struct platform_device
*pdev
;
1190 struct atmel_uart_data
*pdata
;
1194 pdev
= &at91cap9_dbgu_device
;
1195 configure_dbgu_pins();
1197 case AT91CAP9_ID_US0
:
1198 pdev
= &at91cap9_uart0_device
;
1199 configure_usart0_pins(pins
);
1201 case AT91CAP9_ID_US1
:
1202 pdev
= &at91cap9_uart1_device
;
1203 configure_usart1_pins(pins
);
1205 case AT91CAP9_ID_US2
:
1206 pdev
= &at91cap9_uart2_device
;
1207 configure_usart2_pins(pins
);
1212 pdata
= pdev
->dev
.platform_data
;
1213 pdata
->num
= portnr
; /* update to mapped ID */
1215 if (portnr
< ATMEL_MAX_UART
)
1216 at91_uarts
[portnr
] = pdev
;
1219 void __init
at91_set_serial_console(unsigned portnr
)
1221 if (portnr
< ATMEL_MAX_UART
) {
1222 atmel_default_console_device
= at91_uarts
[portnr
];
1223 at91cap9_set_console_clock(at91_uarts
[portnr
]->id
);
1227 void __init
at91_add_device_serial(void)
1231 for (i
= 0; i
< ATMEL_MAX_UART
; i
++) {
1233 platform_device_register(at91_uarts
[i
]);
1236 if (!atmel_default_console_device
)
1237 printk(KERN_INFO
"AT91: No default serial console defined.\n");
1240 void __init
at91_register_uart(unsigned id
, unsigned portnr
, unsigned pins
) {}
1241 void __init
at91_set_serial_console(unsigned portnr
) {}
1242 void __init
at91_add_device_serial(void) {}
1246 /* -------------------------------------------------------------------- */
1248 * These devices are always present and don't need any board-specific
1251 static int __init
at91_add_standard_devices(void)
1253 at91_add_device_rtt();
1254 at91_add_device_watchdog();
1255 at91_add_device_tc();
1259 arch_initcall(at91_add_standard_devices
);