[ARM] 4755/1: [AT91] NAND update
[linux-2.6/btrfs-unstable.git] / arch / arm / mach-at91 / at91sam9261_devices.c
blobba84ba6f18fbc2d5452532ee8f64a6e538afd20e
1 /*
2 * arch/arm/mach-at91/at91sam9261_devices.c
4 * Copyright (C) 2005 Thibaut VARENE <varenet@parisc-linux.org>
5 * Copyright (C) 2005 David Brownell
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #include <asm/mach/arch.h>
14 #include <asm/mach/map.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/platform_device.h>
18 #include <linux/i2c-gpio.h>
20 #include <linux/fb.h>
21 #include <video/atmel_lcdc.h>
23 #include <asm/arch/board.h>
24 #include <asm/arch/gpio.h>
25 #include <asm/arch/at91sam9261.h>
26 #include <asm/arch/at91sam9261_matrix.h>
27 #include <asm/arch/at91sam926x_mc.h>
29 #include "generic.h"
32 /* --------------------------------------------------------------------
33 * USB Host
34 * -------------------------------------------------------------------- */
36 #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
37 static u64 ohci_dmamask = DMA_BIT_MASK(32);
38 static struct at91_usbh_data usbh_data;
40 static struct resource usbh_resources[] = {
41 [0] = {
42 .start = AT91SAM9261_UHP_BASE,
43 .end = AT91SAM9261_UHP_BASE + SZ_1M - 1,
44 .flags = IORESOURCE_MEM,
46 [1] = {
47 .start = AT91SAM9261_ID_UHP,
48 .end = AT91SAM9261_ID_UHP,
49 .flags = IORESOURCE_IRQ,
53 static struct platform_device at91sam9261_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,
61 .resource = usbh_resources,
62 .num_resources = ARRAY_SIZE(usbh_resources),
65 void __init at91_add_device_usbh(struct at91_usbh_data *data)
67 if (!data)
68 return;
70 usbh_data = *data;
71 platform_device_register(&at91sam9261_usbh_device);
73 #else
74 void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
75 #endif
78 /* --------------------------------------------------------------------
79 * USB Device (Gadget)
80 * -------------------------------------------------------------------- */
82 #ifdef CONFIG_USB_GADGET_AT91
83 static struct at91_udc_data udc_data;
85 static struct resource udc_resources[] = {
86 [0] = {
87 .start = AT91SAM9261_BASE_UDP,
88 .end = AT91SAM9261_BASE_UDP + SZ_16K - 1,
89 .flags = IORESOURCE_MEM,
91 [1] = {
92 .start = AT91SAM9261_ID_UDP,
93 .end = AT91SAM9261_ID_UDP,
94 .flags = IORESOURCE_IRQ,
98 static struct platform_device at91sam9261_udc_device = {
99 .name = "at91_udc",
100 .id = -1,
101 .dev = {
102 .platform_data = &udc_data,
104 .resource = udc_resources,
105 .num_resources = ARRAY_SIZE(udc_resources),
108 void __init at91_add_device_udc(struct at91_udc_data *data)
110 unsigned long x;
112 if (!data)
113 return;
115 if (data->vbus_pin) {
116 at91_set_gpio_input(data->vbus_pin, 0);
117 at91_set_deglitch(data->vbus_pin, 1);
120 /* Pullup pin is handled internally */
121 x = at91_sys_read(AT91_MATRIX_USBPUCR);
122 at91_sys_write(AT91_MATRIX_USBPUCR, x | AT91_MATRIX_USBPUCR_PUON);
124 udc_data = *data;
125 platform_device_register(&at91sam9261_udc_device);
127 #else
128 void __init at91_add_device_udc(struct at91_udc_data *data) {}
129 #endif
131 /* --------------------------------------------------------------------
132 * MMC / SD
133 * -------------------------------------------------------------------- */
135 #if defined(CONFIG_MMC_AT91) || defined(CONFIG_MMC_AT91_MODULE)
136 static u64 mmc_dmamask = DMA_BIT_MASK(32);
137 static struct at91_mmc_data mmc_data;
139 static struct resource mmc_resources[] = {
140 [0] = {
141 .start = AT91SAM9261_BASE_MCI,
142 .end = AT91SAM9261_BASE_MCI + SZ_16K - 1,
143 .flags = IORESOURCE_MEM,
145 [1] = {
146 .start = AT91SAM9261_ID_MCI,
147 .end = AT91SAM9261_ID_MCI,
148 .flags = IORESOURCE_IRQ,
152 static struct platform_device at91sam9261_mmc_device = {
153 .name = "at91_mci",
154 .id = -1,
155 .dev = {
156 .dma_mask = &mmc_dmamask,
157 .coherent_dma_mask = DMA_BIT_MASK(32),
158 .platform_data = &mmc_data,
160 .resource = mmc_resources,
161 .num_resources = ARRAY_SIZE(mmc_resources),
164 void __init at91_add_device_mmc(short mmc_id, struct at91_mmc_data *data)
166 if (!data)
167 return;
169 /* input/irq */
170 if (data->det_pin) {
171 at91_set_gpio_input(data->det_pin, 1);
172 at91_set_deglitch(data->det_pin, 1);
174 if (data->wp_pin)
175 at91_set_gpio_input(data->wp_pin, 1);
176 if (data->vcc_pin)
177 at91_set_gpio_output(data->vcc_pin, 0);
179 /* CLK */
180 at91_set_B_periph(AT91_PIN_PA2, 0);
182 /* CMD */
183 at91_set_B_periph(AT91_PIN_PA1, 1);
185 /* DAT0, maybe DAT1..DAT3 */
186 at91_set_B_periph(AT91_PIN_PA0, 1);
187 if (data->wire4) {
188 at91_set_B_periph(AT91_PIN_PA4, 1);
189 at91_set_B_periph(AT91_PIN_PA5, 1);
190 at91_set_B_periph(AT91_PIN_PA6, 1);
193 mmc_data = *data;
194 platform_device_register(&at91sam9261_mmc_device);
196 #else
197 void __init at91_add_device_mmc(short mmc_id, struct at91_mmc_data *data) {}
198 #endif
201 /* --------------------------------------------------------------------
202 * NAND / SmartMedia
203 * -------------------------------------------------------------------- */
205 #if defined(CONFIG_MTD_NAND_AT91) || defined(CONFIG_MTD_NAND_AT91_MODULE)
206 static struct at91_nand_data nand_data;
208 #define NAND_BASE AT91_CHIPSELECT_3
210 static struct resource nand_resources[] = {
212 .start = NAND_BASE,
213 .end = NAND_BASE + SZ_256M - 1,
214 .flags = IORESOURCE_MEM,
218 static struct platform_device at91_nand_device = {
219 .name = "at91_nand",
220 .id = -1,
221 .dev = {
222 .platform_data = &nand_data,
224 .resource = nand_resources,
225 .num_resources = ARRAY_SIZE(nand_resources),
228 void __init at91_add_device_nand(struct at91_nand_data *data)
230 unsigned long csa, mode;
232 if (!data)
233 return;
235 csa = at91_sys_read(AT91_MATRIX_EBICSA);
236 at91_sys_write(AT91_MATRIX_EBICSA, csa | AT91_MATRIX_CS3A_SMC_SMARTMEDIA);
238 /* set the bus interface characteristics */
239 at91_sys_write(AT91_SMC_SETUP(3), AT91_SMC_NWESETUP_(0) | AT91_SMC_NCS_WRSETUP_(0)
240 | AT91_SMC_NRDSETUP_(0) | AT91_SMC_NCS_RDSETUP_(0));
242 at91_sys_write(AT91_SMC_PULSE(3), AT91_SMC_NWEPULSE_(2) | AT91_SMC_NCS_WRPULSE_(5)
243 | AT91_SMC_NRDPULSE_(2) | AT91_SMC_NCS_RDPULSE_(5));
245 at91_sys_write(AT91_SMC_CYCLE(3), AT91_SMC_NWECYCLE_(7) | AT91_SMC_NRDCYCLE_(7));
247 if (data->bus_width_16)
248 mode = AT91_SMC_DBW_16;
249 else
250 mode = AT91_SMC_DBW_8;
251 at91_sys_write(AT91_SMC_MODE(3), mode | AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE | AT91_SMC_TDF_(1));
253 /* enable pin */
254 if (data->enable_pin)
255 at91_set_gpio_output(data->enable_pin, 1);
257 /* ready/busy pin */
258 if (data->rdy_pin)
259 at91_set_gpio_input(data->rdy_pin, 1);
261 /* card detect pin */
262 if (data->det_pin)
263 at91_set_gpio_input(data->det_pin, 1);
265 at91_set_A_periph(AT91_PIN_PC0, 0); /* NANDOE */
266 at91_set_A_periph(AT91_PIN_PC1, 0); /* NANDWE */
268 nand_data = *data;
269 platform_device_register(&at91_nand_device);
272 #else
273 void __init at91_add_device_nand(struct at91_nand_data *data) {}
274 #endif
277 /* --------------------------------------------------------------------
278 * TWI (i2c)
279 * -------------------------------------------------------------------- */
282 * Prefer the GPIO code since the TWI controller isn't robust
283 * (gets overruns and underruns under load) and can only issue
284 * repeated STARTs in one scenario (the driver doesn't yet handle them).
286 #if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
288 static struct i2c_gpio_platform_data pdata = {
289 .sda_pin = AT91_PIN_PA7,
290 .sda_is_open_drain = 1,
291 .scl_pin = AT91_PIN_PA8,
292 .scl_is_open_drain = 1,
293 .udelay = 2, /* ~100 kHz */
296 static struct platform_device at91sam9261_twi_device = {
297 .name = "i2c-gpio",
298 .id = -1,
299 .dev.platform_data = &pdata,
302 void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices)
304 at91_set_GPIO_periph(AT91_PIN_PA7, 1); /* TWD (SDA) */
305 at91_set_multi_drive(AT91_PIN_PA7, 1);
307 at91_set_GPIO_periph(AT91_PIN_PA8, 1); /* TWCK (SCL) */
308 at91_set_multi_drive(AT91_PIN_PA8, 1);
310 i2c_register_board_info(0, devices, nr_devices);
311 platform_device_register(&at91sam9261_twi_device);
314 #elif defined(CONFIG_I2C_AT91) || defined(CONFIG_I2C_AT91_MODULE)
316 static struct resource twi_resources[] = {
317 [0] = {
318 .start = AT91SAM9261_BASE_TWI,
319 .end = AT91SAM9261_BASE_TWI + SZ_16K - 1,
320 .flags = IORESOURCE_MEM,
322 [1] = {
323 .start = AT91SAM9261_ID_TWI,
324 .end = AT91SAM9261_ID_TWI,
325 .flags = IORESOURCE_IRQ,
329 static struct platform_device at91sam9261_twi_device = {
330 .name = "at91_i2c",
331 .id = -1,
332 .resource = twi_resources,
333 .num_resources = ARRAY_SIZE(twi_resources),
336 void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices)
338 /* pins used for TWI interface */
339 at91_set_A_periph(AT91_PIN_PA7, 0); /* TWD */
340 at91_set_multi_drive(AT91_PIN_PA7, 1);
342 at91_set_A_periph(AT91_PIN_PA8, 0); /* TWCK */
343 at91_set_multi_drive(AT91_PIN_PA8, 1);
345 i2c_register_board_info(0, devices, nr_devices);
346 platform_device_register(&at91sam9261_twi_device);
348 #else
349 void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices) {}
350 #endif
353 /* --------------------------------------------------------------------
354 * SPI
355 * -------------------------------------------------------------------- */
357 #if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
358 static u64 spi_dmamask = DMA_BIT_MASK(32);
360 static struct resource spi0_resources[] = {
361 [0] = {
362 .start = AT91SAM9261_BASE_SPI0,
363 .end = AT91SAM9261_BASE_SPI0 + SZ_16K - 1,
364 .flags = IORESOURCE_MEM,
366 [1] = {
367 .start = AT91SAM9261_ID_SPI0,
368 .end = AT91SAM9261_ID_SPI0,
369 .flags = IORESOURCE_IRQ,
373 static struct platform_device at91sam9261_spi0_device = {
374 .name = "atmel_spi",
375 .id = 0,
376 .dev = {
377 .dma_mask = &spi_dmamask,
378 .coherent_dma_mask = DMA_BIT_MASK(32),
380 .resource = spi0_resources,
381 .num_resources = ARRAY_SIZE(spi0_resources),
384 static const unsigned spi0_standard_cs[4] = { AT91_PIN_PA3, AT91_PIN_PA4, AT91_PIN_PA5, AT91_PIN_PA6 };
386 static struct resource spi1_resources[] = {
387 [0] = {
388 .start = AT91SAM9261_BASE_SPI1,
389 .end = AT91SAM9261_BASE_SPI1 + SZ_16K - 1,
390 .flags = IORESOURCE_MEM,
392 [1] = {
393 .start = AT91SAM9261_ID_SPI1,
394 .end = AT91SAM9261_ID_SPI1,
395 .flags = IORESOURCE_IRQ,
399 static struct platform_device at91sam9261_spi1_device = {
400 .name = "atmel_spi",
401 .id = 1,
402 .dev = {
403 .dma_mask = &spi_dmamask,
404 .coherent_dma_mask = DMA_BIT_MASK(32),
406 .resource = spi1_resources,
407 .num_resources = ARRAY_SIZE(spi1_resources),
410 static const unsigned spi1_standard_cs[4] = { AT91_PIN_PB28, AT91_PIN_PA24, AT91_PIN_PA25, AT91_PIN_PA26 };
412 void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices)
414 int i;
415 unsigned long cs_pin;
416 short enable_spi0 = 0;
417 short enable_spi1 = 0;
419 /* Choose SPI chip-selects */
420 for (i = 0; i < nr_devices; i++) {
421 if (devices[i].controller_data)
422 cs_pin = (unsigned long) devices[i].controller_data;
423 else if (devices[i].bus_num == 0)
424 cs_pin = spi0_standard_cs[devices[i].chip_select];
425 else
426 cs_pin = spi1_standard_cs[devices[i].chip_select];
428 if (devices[i].bus_num == 0)
429 enable_spi0 = 1;
430 else
431 enable_spi1 = 1;
433 /* enable chip-select pin */
434 at91_set_gpio_output(cs_pin, 1);
436 /* pass chip-select pin to driver */
437 devices[i].controller_data = (void *) cs_pin;
440 spi_register_board_info(devices, nr_devices);
442 /* Configure SPI bus(es) */
443 if (enable_spi0) {
444 at91_set_A_periph(AT91_PIN_PA0, 0); /* SPI0_MISO */
445 at91_set_A_periph(AT91_PIN_PA1, 0); /* SPI0_MOSI */
446 at91_set_A_periph(AT91_PIN_PA2, 0); /* SPI0_SPCK */
448 at91_clock_associate("spi0_clk", &at91sam9261_spi0_device.dev, "spi_clk");
449 platform_device_register(&at91sam9261_spi0_device);
451 if (enable_spi1) {
452 at91_set_A_periph(AT91_PIN_PB30, 0); /* SPI1_MISO */
453 at91_set_A_periph(AT91_PIN_PB31, 0); /* SPI1_MOSI */
454 at91_set_A_periph(AT91_PIN_PB29, 0); /* SPI1_SPCK */
456 at91_clock_associate("spi1_clk", &at91sam9261_spi1_device.dev, "spi_clk");
457 platform_device_register(&at91sam9261_spi1_device);
460 #else
461 void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices) {}
462 #endif
465 /* --------------------------------------------------------------------
466 * LCD Controller
467 * -------------------------------------------------------------------- */
469 #if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
470 static u64 lcdc_dmamask = DMA_BIT_MASK(32);
471 static struct atmel_lcdfb_info lcdc_data;
473 static struct resource lcdc_resources[] = {
474 [0] = {
475 .start = AT91SAM9261_LCDC_BASE,
476 .end = AT91SAM9261_LCDC_BASE + SZ_4K - 1,
477 .flags = IORESOURCE_MEM,
479 [1] = {
480 .start = AT91SAM9261_ID_LCDC,
481 .end = AT91SAM9261_ID_LCDC,
482 .flags = IORESOURCE_IRQ,
484 #if defined(CONFIG_FB_INTSRAM)
485 [2] = {
486 .start = AT91SAM9261_SRAM_BASE,
487 .end = AT91SAM9261_SRAM_BASE + AT91SAM9261_SRAM_SIZE - 1,
488 .flags = IORESOURCE_MEM,
490 #endif
493 static struct platform_device at91_lcdc_device = {
494 .name = "atmel_lcdfb",
495 .id = 0,
496 .dev = {
497 .dma_mask = &lcdc_dmamask,
498 .coherent_dma_mask = DMA_BIT_MASK(32),
499 .platform_data = &lcdc_data,
501 .resource = lcdc_resources,
502 .num_resources = ARRAY_SIZE(lcdc_resources),
505 void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data)
507 if (!data) {
508 return;
511 #if defined(CONFIG_FB_ATMEL_STN)
512 at91_set_A_periph(AT91_PIN_PB0, 0); /* LCDVSYNC */
513 at91_set_A_periph(AT91_PIN_PB1, 0); /* LCDHSYNC */
514 at91_set_A_periph(AT91_PIN_PB2, 0); /* LCDDOTCK */
515 at91_set_A_periph(AT91_PIN_PB3, 0); /* LCDDEN */
516 at91_set_A_periph(AT91_PIN_PB4, 0); /* LCDCC */
517 at91_set_A_periph(AT91_PIN_PB5, 0); /* LCDD0 */
518 at91_set_A_periph(AT91_PIN_PB6, 0); /* LCDD1 */
519 at91_set_A_periph(AT91_PIN_PB7, 0); /* LCDD2 */
520 at91_set_A_periph(AT91_PIN_PB8, 0); /* LCDD3 */
521 #else
522 at91_set_A_periph(AT91_PIN_PB1, 0); /* LCDHSYNC */
523 at91_set_A_periph(AT91_PIN_PB2, 0); /* LCDDOTCK */
524 at91_set_A_periph(AT91_PIN_PB3, 0); /* LCDDEN */
525 at91_set_A_periph(AT91_PIN_PB4, 0); /* LCDCC */
526 at91_set_A_periph(AT91_PIN_PB7, 0); /* LCDD2 */
527 at91_set_A_periph(AT91_PIN_PB8, 0); /* LCDD3 */
528 at91_set_A_periph(AT91_PIN_PB9, 0); /* LCDD4 */
529 at91_set_A_periph(AT91_PIN_PB10, 0); /* LCDD5 */
530 at91_set_A_periph(AT91_PIN_PB11, 0); /* LCDD6 */
531 at91_set_A_periph(AT91_PIN_PB12, 0); /* LCDD7 */
532 at91_set_A_periph(AT91_PIN_PB15, 0); /* LCDD10 */
533 at91_set_A_periph(AT91_PIN_PB16, 0); /* LCDD11 */
534 at91_set_A_periph(AT91_PIN_PB17, 0); /* LCDD12 */
535 at91_set_A_periph(AT91_PIN_PB18, 0); /* LCDD13 */
536 at91_set_A_periph(AT91_PIN_PB19, 0); /* LCDD14 */
537 at91_set_A_periph(AT91_PIN_PB20, 0); /* LCDD15 */
538 at91_set_B_periph(AT91_PIN_PB23, 0); /* LCDD18 */
539 at91_set_B_periph(AT91_PIN_PB24, 0); /* LCDD19 */
540 at91_set_B_periph(AT91_PIN_PB25, 0); /* LCDD20 */
541 at91_set_B_periph(AT91_PIN_PB26, 0); /* LCDD21 */
542 at91_set_B_periph(AT91_PIN_PB27, 0); /* LCDD22 */
543 at91_set_B_periph(AT91_PIN_PB28, 0); /* LCDD23 */
544 #endif
546 lcdc_data = *data;
547 platform_device_register(&at91_lcdc_device);
549 #else
550 void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data) {}
551 #endif
554 /* --------------------------------------------------------------------
555 * RTT
556 * -------------------------------------------------------------------- */
558 static struct resource rtt_resources[] = {
560 .start = AT91_BASE_SYS + AT91_RTT,
561 .end = AT91_BASE_SYS + AT91_RTT + SZ_16 - 1,
562 .flags = IORESOURCE_MEM,
566 static struct platform_device at91sam9261_rtt_device = {
567 .name = "at91_rtt",
568 .id = -1,
569 .resource = rtt_resources,
570 .num_resources = ARRAY_SIZE(rtt_resources),
573 static void __init at91_add_device_rtt(void)
575 platform_device_register(&at91sam9261_rtt_device);
579 /* --------------------------------------------------------------------
580 * Watchdog
581 * -------------------------------------------------------------------- */
583 #if defined(CONFIG_AT91SAM9_WATCHDOG) || defined(CONFIG_AT91SAM9_WATCHDOG_MODULE)
584 static struct platform_device at91sam9261_wdt_device = {
585 .name = "at91_wdt",
586 .id = -1,
587 .num_resources = 0,
590 static void __init at91_add_device_watchdog(void)
592 platform_device_register(&at91sam9261_wdt_device);
594 #else
595 static void __init at91_add_device_watchdog(void) {}
596 #endif
599 /* --------------------------------------------------------------------
600 * LEDs
601 * -------------------------------------------------------------------- */
603 #if defined(CONFIG_LEDS)
604 u8 at91_leds_cpu;
605 u8 at91_leds_timer;
607 void __init at91_init_leds(u8 cpu_led, u8 timer_led)
609 /* Enable GPIO to access the LEDs */
610 at91_set_gpio_output(cpu_led, 1);
611 at91_set_gpio_output(timer_led, 1);
613 at91_leds_cpu = cpu_led;
614 at91_leds_timer = timer_led;
616 #else
617 void __init at91_init_leds(u8 cpu_led, u8 timer_led) {}
618 #endif
621 /* --------------------------------------------------------------------
622 * SSC -- Synchronous Serial Controller
623 * -------------------------------------------------------------------- */
625 #if defined(CONFIG_ATMEL_SSC) || defined(CONFIG_ATMEL_SSC_MODULE)
626 static u64 ssc0_dmamask = DMA_BIT_MASK(32);
628 static struct resource ssc0_resources[] = {
629 [0] = {
630 .start = AT91SAM9261_BASE_SSC0,
631 .end = AT91SAM9261_BASE_SSC0 + SZ_16K - 1,
632 .flags = IORESOURCE_MEM,
634 [1] = {
635 .start = AT91SAM9261_ID_SSC0,
636 .end = AT91SAM9261_ID_SSC0,
637 .flags = IORESOURCE_IRQ,
641 static struct platform_device at91sam9261_ssc0_device = {
642 .name = "ssc",
643 .id = 0,
644 .dev = {
645 .dma_mask = &ssc0_dmamask,
646 .coherent_dma_mask = DMA_BIT_MASK(32),
648 .resource = ssc0_resources,
649 .num_resources = ARRAY_SIZE(ssc0_resources),
652 static inline void configure_ssc0_pins(unsigned pins)
654 if (pins & ATMEL_SSC_TF)
655 at91_set_A_periph(AT91_PIN_PB21, 1);
656 if (pins & ATMEL_SSC_TK)
657 at91_set_A_periph(AT91_PIN_PB22, 1);
658 if (pins & ATMEL_SSC_TD)
659 at91_set_A_periph(AT91_PIN_PB23, 1);
660 if (pins & ATMEL_SSC_RD)
661 at91_set_A_periph(AT91_PIN_PB24, 1);
662 if (pins & ATMEL_SSC_RK)
663 at91_set_A_periph(AT91_PIN_PB25, 1);
664 if (pins & ATMEL_SSC_RF)
665 at91_set_A_periph(AT91_PIN_PB26, 1);
668 static u64 ssc1_dmamask = DMA_BIT_MASK(32);
670 static struct resource ssc1_resources[] = {
671 [0] = {
672 .start = AT91SAM9261_BASE_SSC1,
673 .end = AT91SAM9261_BASE_SSC1 + SZ_16K - 1,
674 .flags = IORESOURCE_MEM,
676 [1] = {
677 .start = AT91SAM9261_ID_SSC1,
678 .end = AT91SAM9261_ID_SSC1,
679 .flags = IORESOURCE_IRQ,
683 static struct platform_device at91sam9261_ssc1_device = {
684 .name = "ssc",
685 .id = 1,
686 .dev = {
687 .dma_mask = &ssc1_dmamask,
688 .coherent_dma_mask = DMA_BIT_MASK(32),
690 .resource = ssc1_resources,
691 .num_resources = ARRAY_SIZE(ssc1_resources),
694 static inline void configure_ssc1_pins(unsigned pins)
696 if (pins & ATMEL_SSC_TF)
697 at91_set_B_periph(AT91_PIN_PA17, 1);
698 if (pins & ATMEL_SSC_TK)
699 at91_set_B_periph(AT91_PIN_PA18, 1);
700 if (pins & ATMEL_SSC_TD)
701 at91_set_B_periph(AT91_PIN_PA19, 1);
702 if (pins & ATMEL_SSC_RD)
703 at91_set_B_periph(AT91_PIN_PA20, 1);
704 if (pins & ATMEL_SSC_RK)
705 at91_set_B_periph(AT91_PIN_PA21, 1);
706 if (pins & ATMEL_SSC_RF)
707 at91_set_B_periph(AT91_PIN_PA22, 1);
710 static u64 ssc2_dmamask = DMA_BIT_MASK(32);
712 static struct resource ssc2_resources[] = {
713 [0] = {
714 .start = AT91SAM9261_BASE_SSC2,
715 .end = AT91SAM9261_BASE_SSC2 + SZ_16K - 1,
716 .flags = IORESOURCE_MEM,
718 [1] = {
719 .start = AT91SAM9261_ID_SSC2,
720 .end = AT91SAM9261_ID_SSC2,
721 .flags = IORESOURCE_IRQ,
725 static struct platform_device at91sam9261_ssc2_device = {
726 .name = "ssc",
727 .id = 2,
728 .dev = {
729 .dma_mask = &ssc2_dmamask,
730 .coherent_dma_mask = DMA_BIT_MASK(32),
732 .resource = ssc2_resources,
733 .num_resources = ARRAY_SIZE(ssc2_resources),
736 static inline void configure_ssc2_pins(unsigned pins)
738 if (pins & ATMEL_SSC_TF)
739 at91_set_B_periph(AT91_PIN_PC25, 1);
740 if (pins & ATMEL_SSC_TK)
741 at91_set_B_periph(AT91_PIN_PC26, 1);
742 if (pins & ATMEL_SSC_TD)
743 at91_set_B_periph(AT91_PIN_PC27, 1);
744 if (pins & ATMEL_SSC_RD)
745 at91_set_B_periph(AT91_PIN_PC28, 1);
746 if (pins & ATMEL_SSC_RK)
747 at91_set_B_periph(AT91_PIN_PC29, 1);
748 if (pins & ATMEL_SSC_RF)
749 at91_set_B_periph(AT91_PIN_PC30, 1);
753 * SSC controllers are accessed through library code, instead of any
754 * kind of all-singing/all-dancing driver. For example one could be
755 * used by a particular I2S audio codec's driver, while another one
756 * on the same system might be used by a custom data capture driver.
758 void __init at91_add_device_ssc(unsigned id, unsigned pins)
760 struct platform_device *pdev;
763 * NOTE: caller is responsible for passing information matching
764 * "pins" to whatever will be using each particular controller.
766 switch (id) {
767 case AT91SAM9261_ID_SSC0:
768 pdev = &at91sam9261_ssc0_device;
769 configure_ssc0_pins(pins);
770 at91_clock_associate("ssc0_clk", &pdev->dev, "pclk");
771 break;
772 case AT91SAM9261_ID_SSC1:
773 pdev = &at91sam9261_ssc1_device;
774 configure_ssc1_pins(pins);
775 at91_clock_associate("ssc1_clk", &pdev->dev, "pclk");
776 break;
777 case AT91SAM9261_ID_SSC2:
778 pdev = &at91sam9261_ssc2_device;
779 configure_ssc2_pins(pins);
780 at91_clock_associate("ssc2_clk", &pdev->dev, "pclk");
781 break;
782 default:
783 return;
786 platform_device_register(pdev);
789 #else
790 void __init at91_add_device_ssc(unsigned id, unsigned pins) {}
791 #endif
794 /* --------------------------------------------------------------------
795 * UART
796 * -------------------------------------------------------------------- */
798 #if defined(CONFIG_SERIAL_ATMEL)
799 static struct resource dbgu_resources[] = {
800 [0] = {
801 .start = AT91_VA_BASE_SYS + AT91_DBGU,
802 .end = AT91_VA_BASE_SYS + AT91_DBGU + SZ_512 - 1,
803 .flags = IORESOURCE_MEM,
805 [1] = {
806 .start = AT91_ID_SYS,
807 .end = AT91_ID_SYS,
808 .flags = IORESOURCE_IRQ,
812 static struct atmel_uart_data dbgu_data = {
813 .use_dma_tx = 0,
814 .use_dma_rx = 0, /* DBGU not capable of receive DMA */
815 .regs = (void __iomem *)(AT91_VA_BASE_SYS + AT91_DBGU),
818 static u64 dbgu_dmamask = DMA_BIT_MASK(32);
820 static struct platform_device at91sam9261_dbgu_device = {
821 .name = "atmel_usart",
822 .id = 0,
823 .dev = {
824 .dma_mask = &dbgu_dmamask,
825 .coherent_dma_mask = DMA_BIT_MASK(32),
826 .platform_data = &dbgu_data,
828 .resource = dbgu_resources,
829 .num_resources = ARRAY_SIZE(dbgu_resources),
832 static inline void configure_dbgu_pins(void)
834 at91_set_A_periph(AT91_PIN_PA9, 0); /* DRXD */
835 at91_set_A_periph(AT91_PIN_PA10, 1); /* DTXD */
838 static struct resource uart0_resources[] = {
839 [0] = {
840 .start = AT91SAM9261_BASE_US0,
841 .end = AT91SAM9261_BASE_US0 + SZ_16K - 1,
842 .flags = IORESOURCE_MEM,
844 [1] = {
845 .start = AT91SAM9261_ID_US0,
846 .end = AT91SAM9261_ID_US0,
847 .flags = IORESOURCE_IRQ,
851 static struct atmel_uart_data uart0_data = {
852 .use_dma_tx = 1,
853 .use_dma_rx = 1,
856 static u64 uart0_dmamask = DMA_BIT_MASK(32);
858 static struct platform_device at91sam9261_uart0_device = {
859 .name = "atmel_usart",
860 .id = 1,
861 .dev = {
862 .dma_mask = &uart0_dmamask,
863 .coherent_dma_mask = DMA_BIT_MASK(32),
864 .platform_data = &uart0_data,
866 .resource = uart0_resources,
867 .num_resources = ARRAY_SIZE(uart0_resources),
870 static inline void configure_usart0_pins(void)
872 at91_set_A_periph(AT91_PIN_PC8, 1); /* TXD0 */
873 at91_set_A_periph(AT91_PIN_PC9, 0); /* RXD0 */
874 at91_set_A_periph(AT91_PIN_PC10, 0); /* RTS0 */
875 at91_set_A_periph(AT91_PIN_PC11, 0); /* CTS0 */
878 static struct resource uart1_resources[] = {
879 [0] = {
880 .start = AT91SAM9261_BASE_US1,
881 .end = AT91SAM9261_BASE_US1 + SZ_16K - 1,
882 .flags = IORESOURCE_MEM,
884 [1] = {
885 .start = AT91SAM9261_ID_US1,
886 .end = AT91SAM9261_ID_US1,
887 .flags = IORESOURCE_IRQ,
891 static struct atmel_uart_data uart1_data = {
892 .use_dma_tx = 1,
893 .use_dma_rx = 1,
896 static u64 uart1_dmamask = DMA_BIT_MASK(32);
898 static struct platform_device at91sam9261_uart1_device = {
899 .name = "atmel_usart",
900 .id = 2,
901 .dev = {
902 .dma_mask = &uart1_dmamask,
903 .coherent_dma_mask = DMA_BIT_MASK(32),
904 .platform_data = &uart1_data,
906 .resource = uart1_resources,
907 .num_resources = ARRAY_SIZE(uart1_resources),
910 static inline void configure_usart1_pins(void)
912 at91_set_A_periph(AT91_PIN_PC12, 1); /* TXD1 */
913 at91_set_A_periph(AT91_PIN_PC13, 0); /* RXD1 */
916 static struct resource uart2_resources[] = {
917 [0] = {
918 .start = AT91SAM9261_BASE_US2,
919 .end = AT91SAM9261_BASE_US2 + SZ_16K - 1,
920 .flags = IORESOURCE_MEM,
922 [1] = {
923 .start = AT91SAM9261_ID_US2,
924 .end = AT91SAM9261_ID_US2,
925 .flags = IORESOURCE_IRQ,
929 static struct atmel_uart_data uart2_data = {
930 .use_dma_tx = 1,
931 .use_dma_rx = 1,
934 static u64 uart2_dmamask = DMA_BIT_MASK(32);
936 static struct platform_device at91sam9261_uart2_device = {
937 .name = "atmel_usart",
938 .id = 3,
939 .dev = {
940 .dma_mask = &uart2_dmamask,
941 .coherent_dma_mask = DMA_BIT_MASK(32),
942 .platform_data = &uart2_data,
944 .resource = uart2_resources,
945 .num_resources = ARRAY_SIZE(uart2_resources),
948 static inline void configure_usart2_pins(void)
950 at91_set_A_periph(AT91_PIN_PC15, 0); /* RXD2 */
951 at91_set_A_periph(AT91_PIN_PC14, 1); /* TXD2 */
954 static struct platform_device *at91_uarts[ATMEL_MAX_UART]; /* the UARTs to use */
955 struct platform_device *atmel_default_console_device; /* the serial console device */
957 void __init at91_init_serial(struct at91_uart_config *config)
959 int i;
961 /* Fill in list of supported UARTs */
962 for (i = 0; i < config->nr_tty; i++) {
963 switch (config->tty_map[i]) {
964 case 0:
965 configure_usart0_pins();
966 at91_uarts[i] = &at91sam9261_uart0_device;
967 at91_clock_associate("usart0_clk", &at91sam9261_uart0_device.dev, "usart");
968 break;
969 case 1:
970 configure_usart1_pins();
971 at91_uarts[i] = &at91sam9261_uart1_device;
972 at91_clock_associate("usart1_clk", &at91sam9261_uart1_device.dev, "usart");
973 break;
974 case 2:
975 configure_usart2_pins();
976 at91_uarts[i] = &at91sam9261_uart2_device;
977 at91_clock_associate("usart2_clk", &at91sam9261_uart2_device.dev, "usart");
978 break;
979 case 3:
980 configure_dbgu_pins();
981 at91_uarts[i] = &at91sam9261_dbgu_device;
982 at91_clock_associate("mck", &at91sam9261_dbgu_device.dev, "usart");
983 break;
984 default:
985 continue;
987 at91_uarts[i]->id = i; /* update ID number to mapped ID */
990 /* Set serial console device */
991 if (config->console_tty < ATMEL_MAX_UART)
992 atmel_default_console_device = at91_uarts[config->console_tty];
993 if (!atmel_default_console_device)
994 printk(KERN_INFO "AT91: No default serial console defined.\n");
997 void __init at91_add_device_serial(void)
999 int i;
1001 for (i = 0; i < ATMEL_MAX_UART; i++) {
1002 if (at91_uarts[i])
1003 platform_device_register(at91_uarts[i]);
1006 #else
1007 void __init at91_init_serial(struct at91_uart_config *config) {}
1008 void __init at91_add_device_serial(void) {}
1009 #endif
1012 /* -------------------------------------------------------------------- */
1015 * These devices are always present and don't need any board-specific
1016 * setup.
1018 static int __init at91_add_standard_devices(void)
1020 at91_add_device_rtt();
1021 at91_add_device_watchdog();
1022 return 0;
1025 arch_initcall(at91_add_standard_devices);