2 * Copyright (C) 2007 Atmel Corporation
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file COPYING in the main directory of this archive for
9 #include <asm/mach/arch.h>
10 #include <asm/mach/map.h>
12 #include <linux/dma-mapping.h>
13 #include <linux/platform_device.h>
14 #include <linux/i2c-gpio.h>
17 #include <video/atmel_lcdc.h>
19 #include <asm/arch/board.h>
20 #include <asm/arch/gpio.h>
21 #include <asm/arch/at91sam9rl.h>
22 #include <asm/arch/at91sam9rl_matrix.h>
23 #include <asm/arch/at91sam926x_mc.h>
28 /* --------------------------------------------------------------------
30 * -------------------------------------------------------------------- */
32 #if defined(CONFIG_MMC_AT91) || defined(CONFIG_MMC_AT91_MODULE)
33 static u64 mmc_dmamask = DMA_BIT_MASK(32);
34 static struct at91_mmc_data mmc_data;
36 static struct resource mmc_resources[] = {
38 .start = AT91SAM9RL_BASE_MCI,
39 .end = AT91SAM9RL_BASE_MCI + SZ_16K - 1,
40 .flags = IORESOURCE_MEM,
43 .start = AT91SAM9RL_ID_MCI,
44 .end = AT91SAM9RL_ID_MCI,
45 .flags = IORESOURCE_IRQ,
49 static struct platform_device at91sam9rl_mmc_device = {
53 .dma_mask = &mmc_dmamask,
54 .coherent_dma_mask = DMA_BIT_MASK(32),
55 .platform_data = &mmc_data,
57 .resource = mmc_resources,
58 .num_resources = ARRAY_SIZE(mmc_resources),
61 void __init at91_add_device_mmc(short mmc_id, struct at91_mmc_data *data)
68 at91_set_gpio_input(data->det_pin, 1);
69 at91_set_deglitch(data->det_pin, 1);
72 at91_set_gpio_input(data->wp_pin, 1);
74 at91_set_gpio_output(data->vcc_pin, 0);
77 at91_set_A_periph(AT91_PIN_PA2, 0);
80 at91_set_A_periph(AT91_PIN_PA1, 1);
82 /* DAT0, maybe DAT1..DAT3 */
83 at91_set_A_periph(AT91_PIN_PA0, 1);
85 at91_set_A_periph(AT91_PIN_PA3, 1);
86 at91_set_A_periph(AT91_PIN_PA4, 1);
87 at91_set_A_periph(AT91_PIN_PA5, 1);
91 platform_device_register(&at91sam9rl_mmc_device);
94 void __init at91_add_device_mmc(short mmc_id, struct at91_mmc_data *data) {}
98 /* --------------------------------------------------------------------
100 * -------------------------------------------------------------------- */
102 #if defined(CONFIG_MTD_NAND_AT91) || defined(CONFIG_MTD_NAND_AT91_MODULE)
103 static struct at91_nand_data nand_data;
105 #define NAND_BASE AT91_CHIPSELECT_3
107 static struct resource nand_resources[] = {
110 .end = NAND_BASE + SZ_256M - 1,
111 .flags = IORESOURCE_MEM,
115 static struct platform_device at91_nand_device = {
119 .platform_data = &nand_data,
121 .resource = nand_resources,
122 .num_resources = ARRAY_SIZE(nand_resources),
125 void __init at91_add_device_nand(struct at91_nand_data *data)
132 csa = at91_sys_read(AT91_MATRIX_EBICSA);
133 at91_sys_write(AT91_MATRIX_EBICSA, csa | AT91_MATRIX_CS3A_SMC_SMARTMEDIA);
135 /* set the bus interface characteristics */
136 at91_sys_write(AT91_SMC_SETUP(3), AT91_SMC_NWESETUP_(0) | AT91_SMC_NCS_WRSETUP_(0)
137 | AT91_SMC_NRDSETUP_(0) | AT91_SMC_NCS_RDSETUP_(0));
139 at91_sys_write(AT91_SMC_PULSE(3), AT91_SMC_NWEPULSE_(2) | AT91_SMC_NCS_WRPULSE_(5)
140 | AT91_SMC_NRDPULSE_(2) | AT91_SMC_NCS_RDPULSE_(5));
142 at91_sys_write(AT91_SMC_CYCLE(3), AT91_SMC_NWECYCLE_(7) | AT91_SMC_NRDCYCLE_(7));
144 at91_sys_write(AT91_SMC_MODE(3), AT91_SMC_DBW_8 | AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE | AT91_SMC_TDF_(1));
147 if (data->enable_pin)
148 at91_set_gpio_output(data->enable_pin, 1);
152 at91_set_gpio_input(data->rdy_pin, 1);
154 /* card detect pin */
156 at91_set_gpio_input(data->det_pin, 1);
158 at91_set_A_periph(AT91_PIN_PB4, 0); /* NANDOE */
159 at91_set_A_periph(AT91_PIN_PB5, 0); /* NANDWE */
162 platform_device_register(&at91_nand_device);
166 void __init at91_add_device_nand(struct at91_nand_data *data) {}
170 /* --------------------------------------------------------------------
172 * -------------------------------------------------------------------- */
175 * Prefer the GPIO code since the TWI controller isn't robust
176 * (gets overruns and underruns under load) and can only issue
177 * repeated STARTs in one scenario (the driver doesn't yet handle them).
179 #if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
181 static struct i2c_gpio_platform_data pdata = {
182 .sda_pin = AT91_PIN_PA23,
183 .sda_is_open_drain = 1,
184 .scl_pin = AT91_PIN_PA24,
185 .scl_is_open_drain = 1,
186 .udelay = 2, /* ~100 kHz */
189 static struct platform_device at91sam9rl_twi_device = {
192 .dev.platform_data = &pdata,
195 void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices)
197 at91_set_GPIO_periph(AT91_PIN_PA23, 1); /* TWD (SDA) */
198 at91_set_multi_drive(AT91_PIN_PA23, 1);
200 at91_set_GPIO_periph(AT91_PIN_PA24, 1); /* TWCK (SCL) */
201 at91_set_multi_drive(AT91_PIN_PA24, 1);
203 i2c_register_board_info(0, devices, nr_devices);
204 platform_device_register(&at91sam9rl_twi_device);
207 #elif defined(CONFIG_I2C_AT91) || defined(CONFIG_I2C_AT91_MODULE)
209 static struct resource twi_resources[] = {
211 .start = AT91SAM9RL_BASE_TWI0,
212 .end = AT91SAM9RL_BASE_TWI0 + SZ_16K - 1,
213 .flags = IORESOURCE_MEM,
216 .start = AT91SAM9RL_ID_TWI0,
217 .end = AT91SAM9RL_ID_TWI0,
218 .flags = IORESOURCE_IRQ,
222 static struct platform_device at91sam9rl_twi_device = {
225 .resource = twi_resources,
226 .num_resources = ARRAY_SIZE(twi_resources),
229 void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices)
231 /* pins used for TWI interface */
232 at91_set_A_periph(AT91_PIN_PA23, 0); /* TWD */
233 at91_set_multi_drive(AT91_PIN_PA23, 1);
235 at91_set_A_periph(AT91_PIN_PA24, 0); /* TWCK */
236 at91_set_multi_drive(AT91_PIN_PA24, 1);
238 i2c_register_board_info(0, devices, nr_devices);
239 platform_device_register(&at91sam9rl_twi_device);
242 void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices) {}
246 /* --------------------------------------------------------------------
248 * -------------------------------------------------------------------- */
250 #if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
251 static u64 spi_dmamask = DMA_BIT_MASK(32);
253 static struct resource spi_resources[] = {
255 .start = AT91SAM9RL_BASE_SPI,
256 .end = AT91SAM9RL_BASE_SPI + SZ_16K - 1,
257 .flags = IORESOURCE_MEM,
260 .start = AT91SAM9RL_ID_SPI,
261 .end = AT91SAM9RL_ID_SPI,
262 .flags = IORESOURCE_IRQ,
266 static struct platform_device at91sam9rl_spi_device = {
270 .dma_mask = &spi_dmamask,
271 .coherent_dma_mask = DMA_BIT_MASK(32),
273 .resource = spi_resources,
274 .num_resources = ARRAY_SIZE(spi_resources),
277 static const unsigned spi_standard_cs[4] = { AT91_PIN_PA28, AT91_PIN_PB7, AT91_PIN_PD8, AT91_PIN_PD9 };
280 void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices)
283 unsigned long cs_pin;
285 at91_set_A_periph(AT91_PIN_PA25, 0); /* MISO */
286 at91_set_A_periph(AT91_PIN_PA26, 0); /* MOSI */
287 at91_set_A_periph(AT91_PIN_PA27, 0); /* SPCK */
289 /* Enable SPI chip-selects */
290 for (i = 0; i < nr_devices; i++) {
291 if (devices[i].controller_data)
292 cs_pin = (unsigned long) devices[i].controller_data;
294 cs_pin = spi_standard_cs[devices[i].chip_select];
296 /* enable chip-select pin */
297 at91_set_gpio_output(cs_pin, 1);
299 /* pass chip-select pin to driver */
300 devices[i].controller_data = (void *) cs_pin;
303 spi_register_board_info(devices, nr_devices);
304 platform_device_register(&at91sam9rl_spi_device);
307 void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices) {}
311 /* --------------------------------------------------------------------
313 * -------------------------------------------------------------------- */
315 #if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
316 static u64 lcdc_dmamask = DMA_BIT_MASK(32);
317 static struct atmel_lcdfb_info lcdc_data;
319 static struct resource lcdc_resources[] = {
321 .start = AT91SAM9RL_LCDC_BASE,
322 .end = AT91SAM9RL_LCDC_BASE + SZ_4K - 1,
323 .flags = IORESOURCE_MEM,
326 .start = AT91SAM9RL_ID_LCDC,
327 .end = AT91SAM9RL_ID_LCDC,
328 .flags = IORESOURCE_IRQ,
330 #if defined(CONFIG_FB_INTSRAM)
332 .start = AT91SAM9RL_SRAM_BASE,
333 .end = AT91SAM9RL_SRAM_BASE + AT91SAM9RL_SRAM_SIZE - 1,
334 .flags = IORESOURCE_MEM,
339 static struct platform_device at91_lcdc_device = {
340 .name = "atmel_lcdfb",
343 .dma_mask = &lcdc_dmamask,
344 .coherent_dma_mask = DMA_BIT_MASK(32),
345 .platform_data = &lcdc_data,
347 .resource = lcdc_resources,
348 .num_resources = ARRAY_SIZE(lcdc_resources),
351 void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data)
357 at91_set_B_periph(AT91_PIN_PC1, 0); /* LCDPWR */
358 at91_set_A_periph(AT91_PIN_PC5, 0); /* LCDHSYNC */
359 at91_set_A_periph(AT91_PIN_PC6, 0); /* LCDDOTCK */
360 at91_set_A_periph(AT91_PIN_PC7, 0); /* LCDDEN */
361 at91_set_A_periph(AT91_PIN_PC3, 0); /* LCDCC */
362 at91_set_B_periph(AT91_PIN_PC9, 0); /* LCDD3 */
363 at91_set_B_periph(AT91_PIN_PC10, 0); /* LCDD4 */
364 at91_set_B_periph(AT91_PIN_PC11, 0); /* LCDD5 */
365 at91_set_B_periph(AT91_PIN_PC12, 0); /* LCDD6 */
366 at91_set_B_periph(AT91_PIN_PC13, 0); /* LCDD7 */
367 at91_set_B_periph(AT91_PIN_PC15, 0); /* LCDD11 */
368 at91_set_B_periph(AT91_PIN_PC16, 0); /* LCDD12 */
369 at91_set_B_periph(AT91_PIN_PC17, 0); /* LCDD13 */
370 at91_set_B_periph(AT91_PIN_PC18, 0); /* LCDD14 */
371 at91_set_B_periph(AT91_PIN_PC19, 0); /* LCDD15 */
372 at91_set_B_periph(AT91_PIN_PC20, 0); /* LCDD18 */
373 at91_set_B_periph(AT91_PIN_PC21, 0); /* LCDD19 */
374 at91_set_B_periph(AT91_PIN_PC22, 0); /* LCDD20 */
375 at91_set_B_periph(AT91_PIN_PC23, 0); /* LCDD21 */
376 at91_set_B_periph(AT91_PIN_PC24, 0); /* LCDD22 */
377 at91_set_B_periph(AT91_PIN_PC25, 0); /* LCDD23 */
380 platform_device_register(&at91_lcdc_device);
383 void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data) {}
387 /* --------------------------------------------------------------------
389 * -------------------------------------------------------------------- */
391 #if defined(CONFIG_RTC_DRV_AT91RM9200) || defined(CONFIG_RTC_DRV_AT91RM9200_MODULE)
392 static struct platform_device at91sam9rl_rtc_device = {
398 static void __init at91_add_device_rtc(void)
400 platform_device_register(&at91sam9rl_rtc_device);
403 static void __init at91_add_device_rtc(void) {}
407 /* --------------------------------------------------------------------
409 * -------------------------------------------------------------------- */
411 static struct resource rtt_resources[] = {
413 .start = AT91_BASE_SYS + AT91_RTT,
414 .end = AT91_BASE_SYS + AT91_RTT + SZ_16 - 1,
415 .flags = IORESOURCE_MEM,
419 static struct platform_device at91sam9rl_rtt_device = {
422 .resource = rtt_resources,
423 .num_resources = ARRAY_SIZE(rtt_resources),
426 static void __init at91_add_device_rtt(void)
428 platform_device_register(&at91sam9rl_rtt_device);
432 /* --------------------------------------------------------------------
434 * -------------------------------------------------------------------- */
436 #if defined(CONFIG_AT91SAM9_WATCHDOG) || defined(CONFIG_AT91SAM9_WATCHDOG_MODULE)
437 static struct platform_device at91sam9rl_wdt_device = {
443 static void __init at91_add_device_watchdog(void)
445 platform_device_register(&at91sam9rl_wdt_device);
448 static void __init at91_add_device_watchdog(void) {}
452 /* --------------------------------------------------------------------
454 * -------------------------------------------------------------------- */
456 #if defined(CONFIG_LEDS)
460 void __init at91_init_leds(u8 cpu_led, u8 timer_led)
462 /* Enable GPIO to access the LEDs */
463 at91_set_gpio_output(cpu_led, 1);
464 at91_set_gpio_output(timer_led, 1);
466 at91_leds_cpu = cpu_led;
467 at91_leds_timer = timer_led;
470 void __init at91_init_leds(u8 cpu_led, u8 timer_led) {}
474 /* --------------------------------------------------------------------
475 * SSC -- Synchronous Serial Controller
476 * -------------------------------------------------------------------- */
478 #if defined(CONFIG_ATMEL_SSC) || defined(CONFIG_ATMEL_SSC_MODULE)
479 static u64 ssc0_dmamask = DMA_BIT_MASK(32);
481 static struct resource ssc0_resources[] = {
483 .start = AT91SAM9RL_BASE_SSC0,
484 .end = AT91SAM9RL_BASE_SSC0 + SZ_16K - 1,
485 .flags = IORESOURCE_MEM,
488 .start = AT91SAM9RL_ID_SSC0,
489 .end = AT91SAM9RL_ID_SSC0,
490 .flags = IORESOURCE_IRQ,
494 static struct platform_device at91sam9rl_ssc0_device = {
498 .dma_mask = &ssc0_dmamask,
499 .coherent_dma_mask = DMA_BIT_MASK(32),
501 .resource = ssc0_resources,
502 .num_resources = ARRAY_SIZE(ssc0_resources),
505 static inline void configure_ssc0_pins(unsigned pins)
507 if (pins & ATMEL_SSC_TF)
508 at91_set_A_periph(AT91_PIN_PC0, 1);
509 if (pins & ATMEL_SSC_TK)
510 at91_set_A_periph(AT91_PIN_PC1, 1);
511 if (pins & ATMEL_SSC_TD)
512 at91_set_A_periph(AT91_PIN_PA15, 1);
513 if (pins & ATMEL_SSC_RD)
514 at91_set_A_periph(AT91_PIN_PA16, 1);
515 if (pins & ATMEL_SSC_RK)
516 at91_set_B_periph(AT91_PIN_PA10, 1);
517 if (pins & ATMEL_SSC_RF)
518 at91_set_B_periph(AT91_PIN_PA22, 1);
521 static u64 ssc1_dmamask = DMA_BIT_MASK(32);
523 static struct resource ssc1_resources[] = {
525 .start = AT91SAM9RL_BASE_SSC1,
526 .end = AT91SAM9RL_BASE_SSC1 + SZ_16K - 1,
527 .flags = IORESOURCE_MEM,
530 .start = AT91SAM9RL_ID_SSC1,
531 .end = AT91SAM9RL_ID_SSC1,
532 .flags = IORESOURCE_IRQ,
536 static struct platform_device at91sam9rl_ssc1_device = {
540 .dma_mask = &ssc1_dmamask,
541 .coherent_dma_mask = DMA_BIT_MASK(32),
543 .resource = ssc1_resources,
544 .num_resources = ARRAY_SIZE(ssc1_resources),
547 static inline void configure_ssc1_pins(unsigned pins)
549 if (pins & ATMEL_SSC_TF)
550 at91_set_B_periph(AT91_PIN_PA29, 1);
551 if (pins & ATMEL_SSC_TK)
552 at91_set_B_periph(AT91_PIN_PA30, 1);
553 if (pins & ATMEL_SSC_TD)
554 at91_set_B_periph(AT91_PIN_PA13, 1);
555 if (pins & ATMEL_SSC_RD)
556 at91_set_B_periph(AT91_PIN_PA14, 1);
557 if (pins & ATMEL_SSC_RK)
558 at91_set_B_periph(AT91_PIN_PA9, 1);
559 if (pins & ATMEL_SSC_RF)
560 at91_set_B_periph(AT91_PIN_PA8, 1);
564 * Return the device node so that board init code can use it as the
565 * parent for the device node reflecting how it's used on this board.
567 * SSC controllers are accessed through library code, instead of any
568 * kind of all-singing/all-dancing driver. For example one could be
569 * used by a particular I2S audio codec's driver, while another one
570 * on the same system might be used by a custom data capture driver.
572 void __init at91_add_device_ssc(unsigned id, unsigned pins)
574 struct platform_device *pdev;
577 * NOTE: caller is responsible for passing information matching
578 * "pins" to whatever will be using each particular controller.
581 case AT91SAM9RL_ID_SSC0:
582 pdev = &at91sam9rl_ssc0_device;
583 configure_ssc0_pins(pins);
584 at91_clock_associate("ssc0_clk", &pdev->dev, "pclk");
586 case AT91SAM9RL_ID_SSC1:
587 pdev = &at91sam9rl_ssc1_device;
588 configure_ssc1_pins(pins);
589 at91_clock_associate("ssc1_clk", &pdev->dev, "pclk");
595 platform_device_register(pdev);
599 void __init at91_add_device_ssc(unsigned id, unsigned pins) {}
603 /* --------------------------------------------------------------------
605 * -------------------------------------------------------------------- */
607 #if defined(CONFIG_SERIAL_ATMEL)
608 static struct resource dbgu_resources[] = {
610 .start = AT91_VA_BASE_SYS + AT91_DBGU,
611 .end = AT91_VA_BASE_SYS + AT91_DBGU + SZ_512 - 1,
612 .flags = IORESOURCE_MEM,
615 .start = AT91_ID_SYS,
617 .flags = IORESOURCE_IRQ,
621 static struct atmel_uart_data dbgu_data = {
623 .use_dma_rx = 0, /* DBGU not capable of receive DMA */
624 .regs = (void __iomem *)(AT91_VA_BASE_SYS + AT91_DBGU),
627 static u64 dbgu_dmamask = DMA_BIT_MASK(32);
629 static struct platform_device at91sam9rl_dbgu_device = {
630 .name = "atmel_usart",
633 .dma_mask = &dbgu_dmamask,
634 .coherent_dma_mask = DMA_BIT_MASK(32),
635 .platform_data = &dbgu_data,
637 .resource = dbgu_resources,
638 .num_resources = ARRAY_SIZE(dbgu_resources),
641 static inline void configure_dbgu_pins(void)
643 at91_set_A_periph(AT91_PIN_PA21, 0); /* DRXD */
644 at91_set_A_periph(AT91_PIN_PA22, 1); /* DTXD */
647 static struct resource uart0_resources[] = {
649 .start = AT91SAM9RL_BASE_US0,
650 .end = AT91SAM9RL_BASE_US0 + SZ_16K - 1,
651 .flags = IORESOURCE_MEM,
654 .start = AT91SAM9RL_ID_US0,
655 .end = AT91SAM9RL_ID_US0,
656 .flags = IORESOURCE_IRQ,
660 static struct atmel_uart_data uart0_data = {
665 static u64 uart0_dmamask = DMA_BIT_MASK(32);
667 static struct platform_device at91sam9rl_uart0_device = {
668 .name = "atmel_usart",
671 .dma_mask = &uart0_dmamask,
672 .coherent_dma_mask = DMA_BIT_MASK(32),
673 .platform_data = &uart0_data,
675 .resource = uart0_resources,
676 .num_resources = ARRAY_SIZE(uart0_resources),
679 static inline void configure_usart0_pins(void)
681 at91_set_A_periph(AT91_PIN_PA6, 1); /* TXD0 */
682 at91_set_A_periph(AT91_PIN_PA7, 0); /* RXD0 */
683 at91_set_A_periph(AT91_PIN_PA9, 0); /* RTS0 */
684 at91_set_A_periph(AT91_PIN_PA10, 0); /* CTS0 */
687 static struct resource uart1_resources[] = {
689 .start = AT91SAM9RL_BASE_US1,
690 .end = AT91SAM9RL_BASE_US1 + SZ_16K - 1,
691 .flags = IORESOURCE_MEM,
694 .start = AT91SAM9RL_ID_US1,
695 .end = AT91SAM9RL_ID_US1,
696 .flags = IORESOURCE_IRQ,
700 static struct atmel_uart_data uart1_data = {
705 static u64 uart1_dmamask = DMA_BIT_MASK(32);
707 static struct platform_device at91sam9rl_uart1_device = {
708 .name = "atmel_usart",
711 .dma_mask = &uart1_dmamask,
712 .coherent_dma_mask = DMA_BIT_MASK(32),
713 .platform_data = &uart1_data,
715 .resource = uart1_resources,
716 .num_resources = ARRAY_SIZE(uart1_resources),
719 static inline void configure_usart1_pins(void)
721 at91_set_A_periph(AT91_PIN_PA11, 1); /* TXD1 */
722 at91_set_A_periph(AT91_PIN_PA12, 0); /* RXD1 */
725 static struct resource uart2_resources[] = {
727 .start = AT91SAM9RL_BASE_US2,
728 .end = AT91SAM9RL_BASE_US2 + SZ_16K - 1,
729 .flags = IORESOURCE_MEM,
732 .start = AT91SAM9RL_ID_US2,
733 .end = AT91SAM9RL_ID_US2,
734 .flags = IORESOURCE_IRQ,
738 static struct atmel_uart_data uart2_data = {
743 static u64 uart2_dmamask = DMA_BIT_MASK(32);
745 static struct platform_device at91sam9rl_uart2_device = {
746 .name = "atmel_usart",
749 .dma_mask = &uart2_dmamask,
750 .coherent_dma_mask = DMA_BIT_MASK(32),
751 .platform_data = &uart2_data,
753 .resource = uart2_resources,
754 .num_resources = ARRAY_SIZE(uart2_resources),
757 static inline void configure_usart2_pins(void)
759 at91_set_A_periph(AT91_PIN_PA13, 1); /* TXD2 */
760 at91_set_A_periph(AT91_PIN_PA14, 0); /* RXD2 */
763 static struct resource uart3_resources[] = {
765 .start = AT91SAM9RL_BASE_US3,
766 .end = AT91SAM9RL_BASE_US3 + SZ_16K - 1,
767 .flags = IORESOURCE_MEM,
770 .start = AT91SAM9RL_ID_US3,
771 .end = AT91SAM9RL_ID_US3,
772 .flags = IORESOURCE_IRQ,
776 static struct atmel_uart_data uart3_data = {
781 static u64 uart3_dmamask = DMA_BIT_MASK(32);
783 static struct platform_device at91sam9rl_uart3_device = {
784 .name = "atmel_usart",
787 .dma_mask = &uart3_dmamask,
788 .coherent_dma_mask = DMA_BIT_MASK(32),
789 .platform_data = &uart3_data,
791 .resource = uart3_resources,
792 .num_resources = ARRAY_SIZE(uart3_resources),
795 static inline void configure_usart3_pins(void)
797 at91_set_A_periph(AT91_PIN_PB0, 1); /* TXD3 */
798 at91_set_A_periph(AT91_PIN_PB1, 0); /* RXD3 */
801 static struct platform_device *at91_uarts[ATMEL_MAX_UART]; /* the UARTs to use */
802 struct platform_device *atmel_default_console_device; /* the serial console device */
804 void __init at91_init_serial(struct at91_uart_config *config)
808 /* Fill in list of supported UARTs */
809 for (i = 0; i < config->nr_tty; i++) {
810 switch (config->tty_map[i]) {
812 configure_usart0_pins();
813 at91_uarts[i] = &at91sam9rl_uart0_device;
814 at91_clock_associate("usart0_clk", &at91sam9rl_uart0_device.dev, "usart");
817 configure_usart1_pins();
818 at91_uarts[i] = &at91sam9rl_uart1_device;
819 at91_clock_associate("usart1_clk", &at91sam9rl_uart1_device.dev, "usart");
822 configure_usart2_pins();
823 at91_uarts[i] = &at91sam9rl_uart2_device;
824 at91_clock_associate("usart2_clk", &at91sam9rl_uart2_device.dev, "usart");
827 configure_usart3_pins();
828 at91_uarts[i] = &at91sam9rl_uart3_device;
829 at91_clock_associate("usart3_clk", &at91sam9rl_uart3_device.dev, "usart");
832 configure_dbgu_pins();
833 at91_uarts[i] = &at91sam9rl_dbgu_device;
834 at91_clock_associate("mck", &at91sam9rl_dbgu_device.dev, "usart");
839 at91_uarts[i]->id = i; /* update ID number to mapped ID */
842 /* Set serial console device */
843 if (config->console_tty < ATMEL_MAX_UART)
844 atmel_default_console_device = at91_uarts[config->console_tty];
845 if (!atmel_default_console_device)
846 printk(KERN_INFO "AT91: No default serial console defined.\n");
849 void __init at91_add_device_serial(void)
853 for (i = 0; i < ATMEL_MAX_UART; i++) {
855 platform_device_register(at91_uarts[i]);
859 void __init at91_init_serial(struct at91_uart_config *config) {}
860 void __init at91_add_device_serial(void) {}
864 /* -------------------------------------------------------------------- */
867 * These devices are always present and don't need any board-specific
870 static int __init at91_add_standard_devices(void)
872 at91_add_device_rtc();
873 at91_add_device_rtt();
874 at91_add_device_watchdog();
878 arch_initcall(at91_add_standard_devices);