blob: a9f35d0c1cb066edc3ff83b155e349a94bd64a1c [file] [log] [blame]
Andrew Victorb2c65612007-02-08 09:42:40 +01001/*
2 * arch/arm/mach-at91/at91sam9263_devices.c
3 *
4 * Copyright (C) 2007 Atmel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 */
12#include <asm/mach/arch.h>
13#include <asm/mach/map.h>
14
Andrew Victorc6686ff2008-01-23 09:13:53 +010015#include <linux/dma-mapping.h>
Andrew Victorb2c65612007-02-08 09:42:40 +010016#include <linux/platform_device.h>
Andrew Victorf230d3f2007-11-19 13:47:20 +010017#include <linux/i2c-gpio.h>
Andrew Victorb2c65612007-02-08 09:42:40 +010018
Andrew Victorf230d3f2007-11-19 13:47:20 +010019#include <linux/fb.h>
Jan Altenbergb8b786092007-08-03 12:14:34 +010020#include <video/atmel_lcdc.h>
21
Andrew Victorb2c65612007-02-08 09:42:40 +010022#include <asm/arch/board.h>
23#include <asm/arch/gpio.h>
24#include <asm/arch/at91sam9263.h>
25#include <asm/arch/at91sam926x_mc.h>
26#include <asm/arch/at91sam9263_matrix.h>
27
28#include "generic.h"
29
Andrew Victorb2c65612007-02-08 09:42:40 +010030
31/* --------------------------------------------------------------------
32 * USB Host
33 * -------------------------------------------------------------------- */
34
35#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +010036static u64 ohci_dmamask = DMA_BIT_MASK(32);
Andrew Victorb2c65612007-02-08 09:42:40 +010037static struct at91_usbh_data usbh_data;
38
39static struct resource usbh_resources[] = {
40 [0] = {
41 .start = AT91SAM9263_UHP_BASE,
42 .end = AT91SAM9263_UHP_BASE + SZ_1M - 1,
43 .flags = IORESOURCE_MEM,
44 },
45 [1] = {
46 .start = AT91SAM9263_ID_UHP,
47 .end = AT91SAM9263_ID_UHP,
48 .flags = IORESOURCE_IRQ,
49 },
50};
51
52static struct platform_device at91_usbh_device = {
53 .name = "at91_ohci",
54 .id = -1,
55 .dev = {
56 .dma_mask = &ohci_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +010057 .coherent_dma_mask = DMA_BIT_MASK(32),
Andrew Victorb2c65612007-02-08 09:42:40 +010058 .platform_data = &usbh_data,
59 },
60 .resource = usbh_resources,
61 .num_resources = ARRAY_SIZE(usbh_resources),
62};
63
64void __init at91_add_device_usbh(struct at91_usbh_data *data)
65{
66 int i;
67
68 if (!data)
69 return;
70
71 /* Enable VBus control for UHP ports */
72 for (i = 0; i < data->ports; i++) {
73 if (data->vbus_pin[i])
74 at91_set_gpio_output(data->vbus_pin[i], 0);
75 }
76
77 usbh_data = *data;
78 platform_device_register(&at91_usbh_device);
79}
80#else
81void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
82#endif
83
84
85/* --------------------------------------------------------------------
86 * USB Device (Gadget)
87 * -------------------------------------------------------------------- */
88
89#ifdef CONFIG_USB_GADGET_AT91
90static struct at91_udc_data udc_data;
91
92static struct resource udc_resources[] = {
93 [0] = {
94 .start = AT91SAM9263_BASE_UDP,
95 .end = AT91SAM9263_BASE_UDP + SZ_16K - 1,
96 .flags = IORESOURCE_MEM,
97 },
98 [1] = {
99 .start = AT91SAM9263_ID_UDP,
100 .end = AT91SAM9263_ID_UDP,
101 .flags = IORESOURCE_IRQ,
102 },
103};
104
105static struct platform_device at91_udc_device = {
106 .name = "at91_udc",
107 .id = -1,
108 .dev = {
109 .platform_data = &udc_data,
110 },
111 .resource = udc_resources,
112 .num_resources = ARRAY_SIZE(udc_resources),
113};
114
115void __init at91_add_device_udc(struct at91_udc_data *data)
116{
117 if (!data)
118 return;
119
120 if (data->vbus_pin) {
121 at91_set_gpio_input(data->vbus_pin, 0);
122 at91_set_deglitch(data->vbus_pin, 1);
123 }
124
125 /* Pullup pin is handled internally by USB device peripheral */
126
127 udc_data = *data;
128 platform_device_register(&at91_udc_device);
129}
130#else
131void __init at91_add_device_udc(struct at91_udc_data *data) {}
132#endif
133
134
135/* --------------------------------------------------------------------
136 * Ethernet
137 * -------------------------------------------------------------------- */
138
139#if defined(CONFIG_MACB) || defined(CONFIG_MACB_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +0100140static u64 eth_dmamask = DMA_BIT_MASK(32);
Andrew Victorb2c65612007-02-08 09:42:40 +0100141static struct at91_eth_data eth_data;
142
143static struct resource eth_resources[] = {
144 [0] = {
145 .start = AT91SAM9263_BASE_EMAC,
146 .end = AT91SAM9263_BASE_EMAC + SZ_16K - 1,
147 .flags = IORESOURCE_MEM,
148 },
149 [1] = {
150 .start = AT91SAM9263_ID_EMAC,
151 .end = AT91SAM9263_ID_EMAC,
152 .flags = IORESOURCE_IRQ,
153 },
154};
155
156static struct platform_device at91sam9263_eth_device = {
157 .name = "macb",
158 .id = -1,
159 .dev = {
160 .dma_mask = &eth_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100161 .coherent_dma_mask = DMA_BIT_MASK(32),
Andrew Victorb2c65612007-02-08 09:42:40 +0100162 .platform_data = &eth_data,
163 },
164 .resource = eth_resources,
165 .num_resources = ARRAY_SIZE(eth_resources),
166};
167
168void __init at91_add_device_eth(struct at91_eth_data *data)
169{
170 if (!data)
171 return;
172
173 if (data->phy_irq_pin) {
174 at91_set_gpio_input(data->phy_irq_pin, 0);
175 at91_set_deglitch(data->phy_irq_pin, 1);
176 }
177
178 /* Pins used for MII and RMII */
179 at91_set_A_periph(AT91_PIN_PE21, 0); /* ETXCK_EREFCK */
180 at91_set_B_periph(AT91_PIN_PC25, 0); /* ERXDV */
181 at91_set_A_periph(AT91_PIN_PE25, 0); /* ERX0 */
182 at91_set_A_periph(AT91_PIN_PE26, 0); /* ERX1 */
183 at91_set_A_periph(AT91_PIN_PE27, 0); /* ERXER */
184 at91_set_A_periph(AT91_PIN_PE28, 0); /* ETXEN */
185 at91_set_A_periph(AT91_PIN_PE23, 0); /* ETX0 */
186 at91_set_A_periph(AT91_PIN_PE24, 0); /* ETX1 */
187 at91_set_A_periph(AT91_PIN_PE30, 0); /* EMDIO */
188 at91_set_A_periph(AT91_PIN_PE29, 0); /* EMDC */
189
190 if (!data->is_rmii) {
191 at91_set_A_periph(AT91_PIN_PE22, 0); /* ECRS */
192 at91_set_B_periph(AT91_PIN_PC26, 0); /* ECOL */
193 at91_set_B_periph(AT91_PIN_PC22, 0); /* ERX2 */
194 at91_set_B_periph(AT91_PIN_PC23, 0); /* ERX3 */
195 at91_set_B_periph(AT91_PIN_PC27, 0); /* ERXCK */
196 at91_set_B_periph(AT91_PIN_PC20, 0); /* ETX2 */
197 at91_set_B_periph(AT91_PIN_PC21, 0); /* ETX3 */
198 at91_set_B_periph(AT91_PIN_PC24, 0); /* ETXER */
199 }
200
201 eth_data = *data;
202 platform_device_register(&at91sam9263_eth_device);
203}
204#else
205void __init at91_add_device_eth(struct at91_eth_data *data) {}
206#endif
207
208
209/* --------------------------------------------------------------------
210 * MMC / SD
211 * -------------------------------------------------------------------- */
212
213#if defined(CONFIG_MMC_AT91) || defined(CONFIG_MMC_AT91_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +0100214static u64 mmc_dmamask = DMA_BIT_MASK(32);
Andrew Victorb2c65612007-02-08 09:42:40 +0100215static struct at91_mmc_data mmc0_data, mmc1_data;
216
217static struct resource mmc0_resources[] = {
218 [0] = {
219 .start = AT91SAM9263_BASE_MCI0,
220 .end = AT91SAM9263_BASE_MCI0 + SZ_16K - 1,
221 .flags = IORESOURCE_MEM,
222 },
223 [1] = {
224 .start = AT91SAM9263_ID_MCI0,
225 .end = AT91SAM9263_ID_MCI0,
226 .flags = IORESOURCE_IRQ,
227 },
228};
229
230static struct platform_device at91sam9263_mmc0_device = {
231 .name = "at91_mci",
232 .id = 0,
233 .dev = {
234 .dma_mask = &mmc_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100235 .coherent_dma_mask = DMA_BIT_MASK(32),
Andrew Victorb2c65612007-02-08 09:42:40 +0100236 .platform_data = &mmc0_data,
237 },
238 .resource = mmc0_resources,
239 .num_resources = ARRAY_SIZE(mmc0_resources),
240};
241
242static struct resource mmc1_resources[] = {
243 [0] = {
244 .start = AT91SAM9263_BASE_MCI1,
245 .end = AT91SAM9263_BASE_MCI1 + SZ_16K - 1,
246 .flags = IORESOURCE_MEM,
247 },
248 [1] = {
249 .start = AT91SAM9263_ID_MCI1,
250 .end = AT91SAM9263_ID_MCI1,
251 .flags = IORESOURCE_IRQ,
252 },
253};
254
255static struct platform_device at91sam9263_mmc1_device = {
256 .name = "at91_mci",
257 .id = 1,
258 .dev = {
259 .dma_mask = &mmc_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100260 .coherent_dma_mask = DMA_BIT_MASK(32),
Andrew Victorb2c65612007-02-08 09:42:40 +0100261 .platform_data = &mmc1_data,
262 },
263 .resource = mmc1_resources,
264 .num_resources = ARRAY_SIZE(mmc1_resources),
265};
266
267void __init at91_add_device_mmc(short mmc_id, struct at91_mmc_data *data)
268{
269 if (!data)
270 return;
271
272 /* input/irq */
273 if (data->det_pin) {
274 at91_set_gpio_input(data->det_pin, 1);
275 at91_set_deglitch(data->det_pin, 1);
276 }
277 if (data->wp_pin)
278 at91_set_gpio_input(data->wp_pin, 1);
279 if (data->vcc_pin)
280 at91_set_gpio_output(data->vcc_pin, 0);
281
282 if (mmc_id == 0) { /* MCI0 */
283 /* CLK */
284 at91_set_A_periph(AT91_PIN_PA12, 0);
285
286 if (data->slot_b) {
287 /* CMD */
288 at91_set_A_periph(AT91_PIN_PA16, 1);
289
290 /* DAT0, maybe DAT1..DAT3 */
291 at91_set_A_periph(AT91_PIN_PA17, 1);
292 if (data->wire4) {
293 at91_set_A_periph(AT91_PIN_PA18, 1);
294 at91_set_A_periph(AT91_PIN_PA19, 1);
295 at91_set_A_periph(AT91_PIN_PA20, 1);
296 }
297 } else {
298 /* CMD */
299 at91_set_A_periph(AT91_PIN_PA1, 1);
300
301 /* DAT0, maybe DAT1..DAT3 */
302 at91_set_A_periph(AT91_PIN_PA0, 1);
303 if (data->wire4) {
304 at91_set_A_periph(AT91_PIN_PA3, 1);
305 at91_set_A_periph(AT91_PIN_PA4, 1);
306 at91_set_A_periph(AT91_PIN_PA5, 1);
307 }
308 }
309
310 mmc0_data = *data;
311 at91_clock_associate("mci0_clk", &at91sam9263_mmc1_device.dev, "mci_clk");
312 platform_device_register(&at91sam9263_mmc0_device);
313 } else { /* MCI1 */
314 /* CLK */
315 at91_set_A_periph(AT91_PIN_PA6, 0);
316
317 if (data->slot_b) {
318 /* CMD */
319 at91_set_A_periph(AT91_PIN_PA21, 1);
320
321 /* DAT0, maybe DAT1..DAT3 */
322 at91_set_A_periph(AT91_PIN_PA22, 1);
323 if (data->wire4) {
324 at91_set_A_periph(AT91_PIN_PA23, 1);
325 at91_set_A_periph(AT91_PIN_PA24, 1);
326 at91_set_A_periph(AT91_PIN_PA25, 1);
327 }
328 } else {
329 /* CMD */
330 at91_set_A_periph(AT91_PIN_PA7, 1);
331
332 /* DAT0, maybe DAT1..DAT3 */
333 at91_set_A_periph(AT91_PIN_PA8, 1);
334 if (data->wire4) {
335 at91_set_A_periph(AT91_PIN_PA9, 1);
336 at91_set_A_periph(AT91_PIN_PA10, 1);
337 at91_set_A_periph(AT91_PIN_PA11, 1);
338 }
339 }
340
341 mmc1_data = *data;
342 at91_clock_associate("mci1_clk", &at91sam9263_mmc1_device.dev, "mci_clk");
343 platform_device_register(&at91sam9263_mmc1_device);
344 }
345}
346#else
347void __init at91_add_device_mmc(short mmc_id, struct at91_mmc_data *data) {}
348#endif
349
350
351/* --------------------------------------------------------------------
352 * NAND / SmartMedia
353 * -------------------------------------------------------------------- */
354
355#if defined(CONFIG_MTD_NAND_AT91) || defined(CONFIG_MTD_NAND_AT91_MODULE)
356static struct at91_nand_data nand_data;
357
358#define NAND_BASE AT91_CHIPSELECT_3
359
360static struct resource nand_resources[] = {
361 {
362 .start = NAND_BASE,
363 .end = NAND_BASE + SZ_256M - 1,
364 .flags = IORESOURCE_MEM,
365 }
366};
367
368static struct platform_device at91sam9263_nand_device = {
369 .name = "at91_nand",
370 .id = -1,
371 .dev = {
372 .platform_data = &nand_data,
373 },
374 .resource = nand_resources,
375 .num_resources = ARRAY_SIZE(nand_resources),
376};
377
378void __init at91_add_device_nand(struct at91_nand_data *data)
379{
380 unsigned long csa, mode;
381
382 if (!data)
383 return;
384
385 csa = at91_sys_read(AT91_MATRIX_EBI0CSA);
Andrew Victor22823552008-01-23 09:21:02 +0100386 at91_sys_write(AT91_MATRIX_EBI0CSA, csa | AT91_MATRIX_EBI0_CS3A_SMC_SMARTMEDIA);
Andrew Victorb2c65612007-02-08 09:42:40 +0100387
388 /* set the bus interface characteristics */
389 at91_sys_write(AT91_SMC_SETUP(3), AT91_SMC_NWESETUP_(0) | AT91_SMC_NCS_WRSETUP_(0)
390 | AT91_SMC_NRDSETUP_(0) | AT91_SMC_NCS_RDSETUP_(0));
391
392 at91_sys_write(AT91_SMC_PULSE(3), AT91_SMC_NWEPULSE_(3) | AT91_SMC_NCS_WRPULSE_(3)
393 | AT91_SMC_NRDPULSE_(3) | AT91_SMC_NCS_RDPULSE_(3));
394
395 at91_sys_write(AT91_SMC_CYCLE(3), AT91_SMC_NWECYCLE_(5) | AT91_SMC_NRDCYCLE_(5));
396
397 if (data->bus_width_16)
398 mode = AT91_SMC_DBW_16;
399 else
400 mode = AT91_SMC_DBW_8;
401 at91_sys_write(AT91_SMC_MODE(3), mode | AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE | AT91_SMC_TDF_(2));
402
403 /* enable pin */
404 if (data->enable_pin)
405 at91_set_gpio_output(data->enable_pin, 1);
406
407 /* ready/busy pin */
408 if (data->rdy_pin)
409 at91_set_gpio_input(data->rdy_pin, 1);
410
411 /* card detect pin */
412 if (data->det_pin)
413 at91_set_gpio_input(data->det_pin, 1);
414
415 nand_data = *data;
416 platform_device_register(&at91sam9263_nand_device);
417}
418#else
419void __init at91_add_device_nand(struct at91_nand_data *data) {}
420#endif
421
422
423/* --------------------------------------------------------------------
424 * TWI (i2c)
425 * -------------------------------------------------------------------- */
426
Andrew Victorf230d3f2007-11-19 13:47:20 +0100427/*
428 * Prefer the GPIO code since the TWI controller isn't robust
429 * (gets overruns and underruns under load) and can only issue
430 * repeated STARTs in one scenario (the driver doesn't yet handle them).
431 */
432#if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
433
434static struct i2c_gpio_platform_data pdata = {
435 .sda_pin = AT91_PIN_PB4,
436 .sda_is_open_drain = 1,
437 .scl_pin = AT91_PIN_PB5,
438 .scl_is_open_drain = 1,
439 .udelay = 2, /* ~100 kHz */
440};
441
442static struct platform_device at91sam9263_twi_device = {
443 .name = "i2c-gpio",
444 .id = -1,
445 .dev.platform_data = &pdata,
446};
447
448void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices)
449{
450 at91_set_GPIO_periph(AT91_PIN_PB4, 1); /* TWD (SDA) */
451 at91_set_multi_drive(AT91_PIN_PB4, 1);
452
453 at91_set_GPIO_periph(AT91_PIN_PB5, 1); /* TWCK (SCL) */
454 at91_set_multi_drive(AT91_PIN_PB5, 1);
455
456 i2c_register_board_info(0, devices, nr_devices);
457 platform_device_register(&at91sam9263_twi_device);
458}
459
460#elif defined(CONFIG_I2C_AT91) || defined(CONFIG_I2C_AT91_MODULE)
Andrew Victorb2c65612007-02-08 09:42:40 +0100461
462static struct resource twi_resources[] = {
463 [0] = {
464 .start = AT91SAM9263_BASE_TWI,
465 .end = AT91SAM9263_BASE_TWI + SZ_16K - 1,
466 .flags = IORESOURCE_MEM,
467 },
468 [1] = {
469 .start = AT91SAM9263_ID_TWI,
470 .end = AT91SAM9263_ID_TWI,
471 .flags = IORESOURCE_IRQ,
472 },
473};
474
475static struct platform_device at91sam9263_twi_device = {
476 .name = "at91_i2c",
477 .id = -1,
478 .resource = twi_resources,
479 .num_resources = ARRAY_SIZE(twi_resources),
480};
481
Andrew Victorf230d3f2007-11-19 13:47:20 +0100482void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices)
Andrew Victorb2c65612007-02-08 09:42:40 +0100483{
484 /* pins used for TWI interface */
485 at91_set_A_periph(AT91_PIN_PB4, 0); /* TWD */
486 at91_set_multi_drive(AT91_PIN_PB4, 1);
487
488 at91_set_A_periph(AT91_PIN_PB5, 0); /* TWCK */
489 at91_set_multi_drive(AT91_PIN_PB5, 1);
490
Andrew Victorf230d3f2007-11-19 13:47:20 +0100491 i2c_register_board_info(0, devices, nr_devices);
Andrew Victorb2c65612007-02-08 09:42:40 +0100492 platform_device_register(&at91sam9263_twi_device);
493}
494#else
Andrew Victorf230d3f2007-11-19 13:47:20 +0100495void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices) {}
Andrew Victorb2c65612007-02-08 09:42:40 +0100496#endif
497
498
499/* --------------------------------------------------------------------
500 * SPI
501 * -------------------------------------------------------------------- */
502
503#if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +0100504static u64 spi_dmamask = DMA_BIT_MASK(32);
Andrew Victorb2c65612007-02-08 09:42:40 +0100505
506static struct resource spi0_resources[] = {
507 [0] = {
508 .start = AT91SAM9263_BASE_SPI0,
509 .end = AT91SAM9263_BASE_SPI0 + SZ_16K - 1,
510 .flags = IORESOURCE_MEM,
511 },
512 [1] = {
513 .start = AT91SAM9263_ID_SPI0,
514 .end = AT91SAM9263_ID_SPI0,
515 .flags = IORESOURCE_IRQ,
516 },
517};
518
519static struct platform_device at91sam9263_spi0_device = {
520 .name = "atmel_spi",
521 .id = 0,
522 .dev = {
523 .dma_mask = &spi_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100524 .coherent_dma_mask = DMA_BIT_MASK(32),
Andrew Victorb2c65612007-02-08 09:42:40 +0100525 },
526 .resource = spi0_resources,
527 .num_resources = ARRAY_SIZE(spi0_resources),
528};
529
530static const unsigned spi0_standard_cs[4] = { AT91_PIN_PA5, AT91_PIN_PA3, AT91_PIN_PA4, AT91_PIN_PB11 };
531
532static struct resource spi1_resources[] = {
533 [0] = {
534 .start = AT91SAM9263_BASE_SPI1,
535 .end = AT91SAM9263_BASE_SPI1 + SZ_16K - 1,
536 .flags = IORESOURCE_MEM,
537 },
538 [1] = {
539 .start = AT91SAM9263_ID_SPI1,
540 .end = AT91SAM9263_ID_SPI1,
541 .flags = IORESOURCE_IRQ,
542 },
543};
544
545static struct platform_device at91sam9263_spi1_device = {
546 .name = "atmel_spi",
547 .id = 1,
548 .dev = {
549 .dma_mask = &spi_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100550 .coherent_dma_mask = DMA_BIT_MASK(32),
Andrew Victorb2c65612007-02-08 09:42:40 +0100551 },
552 .resource = spi1_resources,
553 .num_resources = ARRAY_SIZE(spi1_resources),
554};
555
556static const unsigned spi1_standard_cs[4] = { AT91_PIN_PB15, AT91_PIN_PB16, AT91_PIN_PB17, AT91_PIN_PB18 };
557
558void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices)
559{
560 int i;
561 unsigned long cs_pin;
562 short enable_spi0 = 0;
563 short enable_spi1 = 0;
564
565 /* Choose SPI chip-selects */
566 for (i = 0; i < nr_devices; i++) {
567 if (devices[i].controller_data)
568 cs_pin = (unsigned long) devices[i].controller_data;
569 else if (devices[i].bus_num == 0)
570 cs_pin = spi0_standard_cs[devices[i].chip_select];
571 else
572 cs_pin = spi1_standard_cs[devices[i].chip_select];
573
574 if (devices[i].bus_num == 0)
575 enable_spi0 = 1;
576 else
577 enable_spi1 = 1;
578
579 /* enable chip-select pin */
580 at91_set_gpio_output(cs_pin, 1);
581
582 /* pass chip-select pin to driver */
583 devices[i].controller_data = (void *) cs_pin;
584 }
585
586 spi_register_board_info(devices, nr_devices);
587
588 /* Configure SPI bus(es) */
589 if (enable_spi0) {
590 at91_set_B_periph(AT91_PIN_PA0, 0); /* SPI0_MISO */
591 at91_set_B_periph(AT91_PIN_PA1, 0); /* SPI0_MOSI */
Andrew Victor7f6e2d92007-02-22 07:34:56 +0100592 at91_set_B_periph(AT91_PIN_PA2, 0); /* SPI0_SPCK */
Andrew Victorb2c65612007-02-08 09:42:40 +0100593
594 at91_clock_associate("spi0_clk", &at91sam9263_spi0_device.dev, "spi_clk");
595 platform_device_register(&at91sam9263_spi0_device);
596 }
597 if (enable_spi1) {
598 at91_set_A_periph(AT91_PIN_PB12, 0); /* SPI1_MISO */
599 at91_set_A_periph(AT91_PIN_PB13, 0); /* SPI1_MOSI */
600 at91_set_A_periph(AT91_PIN_PB14, 0); /* SPI1_SPCK */
601
602 at91_clock_associate("spi1_clk", &at91sam9263_spi1_device.dev, "spi_clk");
603 platform_device_register(&at91sam9263_spi1_device);
604 }
605}
606#else
607void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices) {}
608#endif
609
610
611/* --------------------------------------------------------------------
Andrew Victor7776a942007-05-02 17:46:49 +0100612 * AC97
613 * -------------------------------------------------------------------- */
614
615#if defined(CONFIG_SND_AT91_AC97) || defined(CONFIG_SND_AT91_AC97_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +0100616static u64 ac97_dmamask = DMA_BIT_MASK(32);
Andrew Victor7776a942007-05-02 17:46:49 +0100617static struct atmel_ac97_data ac97_data;
618
619static struct resource ac97_resources[] = {
620 [0] = {
621 .start = AT91SAM9263_BASE_AC97C,
622 .end = AT91SAM9263_BASE_AC97C + SZ_16K - 1,
623 .flags = IORESOURCE_MEM,
624 },
625 [1] = {
626 .start = AT91SAM9263_ID_AC97C,
627 .end = AT91SAM9263_ID_AC97C,
628 .flags = IORESOURCE_IRQ,
629 },
630};
631
632static struct platform_device at91sam9263_ac97_device = {
633 .name = "ac97c",
634 .id = 1,
635 .dev = {
636 .dma_mask = &ac97_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100637 .coherent_dma_mask = DMA_BIT_MASK(32),
Andrew Victor7776a942007-05-02 17:46:49 +0100638 .platform_data = &ac97_data,
639 },
640 .resource = ac97_resources,
641 .num_resources = ARRAY_SIZE(ac97_resources),
642};
643
644void __init at91_add_device_ac97(struct atmel_ac97_data *data)
645{
646 if (!data)
647 return;
648
649 at91_set_A_periph(AT91_PIN_PB0, 0); /* AC97FS */
650 at91_set_A_periph(AT91_PIN_PB1, 0); /* AC97CK */
651 at91_set_A_periph(AT91_PIN_PB2, 0); /* AC97TX */
652 at91_set_A_periph(AT91_PIN_PB3, 0); /* AC97RX */
653
654 /* reset */
655 if (data->reset_pin)
656 at91_set_gpio_output(data->reset_pin, 0);
657
658 ac97_data = *ek_data;
659 platform_device_register(&at91sam9263_ac97_device);
660}
661#else
662void __init at91_add_device_ac97(struct atmel_ac97_data *data) {}
663#endif
664
665
666/* --------------------------------------------------------------------
667 * LCD Controller
668 * -------------------------------------------------------------------- */
669
670#if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +0100671static u64 lcdc_dmamask = DMA_BIT_MASK(32);
Andrew Victor7776a942007-05-02 17:46:49 +0100672static struct atmel_lcdfb_info lcdc_data;
673
674static struct resource lcdc_resources[] = {
675 [0] = {
676 .start = AT91SAM9263_LCDC_BASE,
677 .end = AT91SAM9263_LCDC_BASE + SZ_4K - 1,
678 .flags = IORESOURCE_MEM,
679 },
680 [1] = {
681 .start = AT91SAM9263_ID_LCDC,
682 .end = AT91SAM9263_ID_LCDC,
683 .flags = IORESOURCE_IRQ,
684 },
685};
686
687static struct platform_device at91_lcdc_device = {
688 .name = "atmel_lcdfb",
689 .id = 0,
690 .dev = {
691 .dma_mask = &lcdc_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100692 .coherent_dma_mask = DMA_BIT_MASK(32),
Andrew Victor7776a942007-05-02 17:46:49 +0100693 .platform_data = &lcdc_data,
694 },
695 .resource = lcdc_resources,
696 .num_resources = ARRAY_SIZE(lcdc_resources),
697};
698
699void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data)
700{
701 if (!data)
702 return;
703
704 at91_set_A_periph(AT91_PIN_PC1, 0); /* LCDHSYNC */
705 at91_set_A_periph(AT91_PIN_PC2, 0); /* LCDDOTCK */
706 at91_set_A_periph(AT91_PIN_PC3, 0); /* LCDDEN */
707 at91_set_B_periph(AT91_PIN_PB9, 0); /* LCDCC */
708 at91_set_A_periph(AT91_PIN_PC6, 0); /* LCDD2 */
709 at91_set_A_periph(AT91_PIN_PC7, 0); /* LCDD3 */
710 at91_set_A_periph(AT91_PIN_PC8, 0); /* LCDD4 */
711 at91_set_A_periph(AT91_PIN_PC9, 0); /* LCDD5 */
712 at91_set_A_periph(AT91_PIN_PC10, 0); /* LCDD6 */
713 at91_set_A_periph(AT91_PIN_PC11, 0); /* LCDD7 */
714 at91_set_A_periph(AT91_PIN_PC14, 0); /* LCDD10 */
715 at91_set_A_periph(AT91_PIN_PC15, 0); /* LCDD11 */
716 at91_set_A_periph(AT91_PIN_PC16, 0); /* LCDD12 */
717 at91_set_B_periph(AT91_PIN_PC12, 0); /* LCDD13 */
718 at91_set_A_periph(AT91_PIN_PC18, 0); /* LCDD14 */
719 at91_set_A_periph(AT91_PIN_PC19, 0); /* LCDD15 */
720 at91_set_A_periph(AT91_PIN_PC22, 0); /* LCDD18 */
721 at91_set_A_periph(AT91_PIN_PC23, 0); /* LCDD19 */
722 at91_set_A_periph(AT91_PIN_PC24, 0); /* LCDD20 */
723 at91_set_B_periph(AT91_PIN_PC17, 0); /* LCDD21 */
724 at91_set_A_periph(AT91_PIN_PC26, 0); /* LCDD22 */
725 at91_set_A_periph(AT91_PIN_PC27, 0); /* LCDD23 */
726
727 lcdc_data = *data;
728 platform_device_register(&at91_lcdc_device);
729}
730#else
731void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data) {}
732#endif
733
734
735/* --------------------------------------------------------------------
Andrew Victore2920802008-01-22 11:43:26 +0100736 * Image Sensor Interface
737 * -------------------------------------------------------------------- */
738
739#if defined(CONFIG_VIDEO_AT91_ISI) || defined(CONFIG_VIDEO_AT91_ISI_MODULE)
740
741struct resource isi_resources[] = {
742 [0] = {
743 .start = AT91SAM9263_BASE_ISI,
744 .end = AT91SAM9263_BASE_ISI + SZ_16K - 1,
745 .flags = IORESOURCE_MEM,
746 },
747 [1] = {
748 .start = AT91SAM9263_ID_ISI,
749 .end = AT91SAM9263_ID_ISI,
750 .flags = IORESOURCE_IRQ,
751 },
752};
753
754static struct platform_device at91sam9263_isi_device = {
755 .name = "at91_isi",
756 .id = -1,
757 .resource = isi_resources,
758 .num_resources = ARRAY_SIZE(isi_resources),
759};
760
761void __init at91_add_device_isi(void)
762{
763 at91_set_A_periph(AT91_PIN_PE0, 0); /* ISI_D0 */
764 at91_set_A_periph(AT91_PIN_PE1, 0); /* ISI_D1 */
765 at91_set_A_periph(AT91_PIN_PE2, 0); /* ISI_D2 */
766 at91_set_A_periph(AT91_PIN_PE3, 0); /* ISI_D3 */
767 at91_set_A_periph(AT91_PIN_PE4, 0); /* ISI_D4 */
768 at91_set_A_periph(AT91_PIN_PE5, 0); /* ISI_D5 */
769 at91_set_A_periph(AT91_PIN_PE6, 0); /* ISI_D6 */
770 at91_set_A_periph(AT91_PIN_PE7, 0); /* ISI_D7 */
771 at91_set_A_periph(AT91_PIN_PE8, 0); /* ISI_PCK */
772 at91_set_A_periph(AT91_PIN_PE9, 0); /* ISI_HSYNC */
773 at91_set_A_periph(AT91_PIN_PE10, 0); /* ISI_VSYNC */
774 at91_set_B_periph(AT91_PIN_PE11, 0); /* ISI_MCK (PCK3) */
775 at91_set_B_periph(AT91_PIN_PE12, 0); /* ISI_PD8 */
776 at91_set_B_periph(AT91_PIN_PE13, 0); /* ISI_PD9 */
777 at91_set_B_periph(AT91_PIN_PE14, 0); /* ISI_PD10 */
778 at91_set_B_periph(AT91_PIN_PE15, 0); /* ISI_PD11 */
779}
780#else
781void __init at91_add_device_isi(void) {}
782#endif
783
784
785/* --------------------------------------------------------------------
Andrew Victor884f5a62008-01-23 09:11:13 +0100786 * RTT
787 * -------------------------------------------------------------------- */
788
789static struct resource rtt0_resources[] = {
790 {
791 .start = AT91_BASE_SYS + AT91_RTT0,
792 .end = AT91_BASE_SYS + AT91_RTT0 + SZ_16 - 1,
793 .flags = IORESOURCE_MEM,
794 }
795};
796
797static struct platform_device at91sam9263_rtt0_device = {
798 .name = "at91_rtt",
799 .id = 0,
800 .resource = rtt0_resources,
801 .num_resources = ARRAY_SIZE(rtt0_resources),
802};
803
804static struct resource rtt1_resources[] = {
805 {
806 .start = AT91_BASE_SYS + AT91_RTT1,
807 .end = AT91_BASE_SYS + AT91_RTT1 + SZ_16 - 1,
808 .flags = IORESOURCE_MEM,
809 }
810};
811
812static struct platform_device at91sam9263_rtt1_device = {
813 .name = "at91_rtt",
814 .id = 1,
815 .resource = rtt1_resources,
816 .num_resources = ARRAY_SIZE(rtt1_resources),
817};
818
819static void __init at91_add_device_rtt(void)
820{
821 platform_device_register(&at91sam9263_rtt0_device);
822 platform_device_register(&at91sam9263_rtt1_device);
823}
824
825
826/* --------------------------------------------------------------------
827 * Watchdog
828 * -------------------------------------------------------------------- */
829
830#if defined(CONFIG_AT91SAM9_WATCHDOG) || defined(CONFIG_AT91SAM9_WATCHDOG_MODULE)
831static struct platform_device at91sam9263_wdt_device = {
832 .name = "at91_wdt",
833 .id = -1,
834 .num_resources = 0,
835};
836
837static void __init at91_add_device_watchdog(void)
838{
839 platform_device_register(&at91sam9263_wdt_device);
840}
841#else
842static void __init at91_add_device_watchdog(void) {}
843#endif
844
845
846/* --------------------------------------------------------------------
Andrew Victorb2c65612007-02-08 09:42:40 +0100847 * LEDs
848 * -------------------------------------------------------------------- */
849
850#if defined(CONFIG_LEDS)
851u8 at91_leds_cpu;
852u8 at91_leds_timer;
853
854void __init at91_init_leds(u8 cpu_led, u8 timer_led)
855{
856 /* Enable GPIO to access the LEDs */
857 at91_set_gpio_output(cpu_led, 1);
858 at91_set_gpio_output(timer_led, 1);
859
860 at91_leds_cpu = cpu_led;
861 at91_leds_timer = timer_led;
862}
863#else
864void __init at91_init_leds(u8 cpu_led, u8 timer_led) {}
865#endif
866
867
868/* --------------------------------------------------------------------
Andrew Victorbfbc3262008-01-23 09:18:06 +0100869 * SSC -- Synchronous Serial Controller
870 * -------------------------------------------------------------------- */
871
872#if defined(CONFIG_ATMEL_SSC) || defined(CONFIG_ATMEL_SSC_MODULE)
873static u64 ssc0_dmamask = DMA_BIT_MASK(32);
874
875static struct resource ssc0_resources[] = {
876 [0] = {
877 .start = AT91SAM9263_BASE_SSC0,
878 .end = AT91SAM9263_BASE_SSC0 + SZ_16K - 1,
879 .flags = IORESOURCE_MEM,
880 },
881 [1] = {
882 .start = AT91SAM9263_ID_SSC0,
883 .end = AT91SAM9263_ID_SSC0,
884 .flags = IORESOURCE_IRQ,
885 },
886};
887
888static struct platform_device at91sam9263_ssc0_device = {
889 .name = "ssc",
890 .id = 0,
891 .dev = {
892 .dma_mask = &ssc0_dmamask,
893 .coherent_dma_mask = DMA_BIT_MASK(32),
894 },
895 .resource = ssc0_resources,
896 .num_resources = ARRAY_SIZE(ssc0_resources),
897};
898
899static inline void configure_ssc0_pins(unsigned pins)
900{
901 if (pins & ATMEL_SSC_TF)
902 at91_set_B_periph(AT91_PIN_PB0, 1);
903 if (pins & ATMEL_SSC_TK)
904 at91_set_B_periph(AT91_PIN_PB1, 1);
905 if (pins & ATMEL_SSC_TD)
906 at91_set_B_periph(AT91_PIN_PB2, 1);
907 if (pins & ATMEL_SSC_RD)
908 at91_set_B_periph(AT91_PIN_PB3, 1);
909 if (pins & ATMEL_SSC_RK)
910 at91_set_B_periph(AT91_PIN_PB4, 1);
911 if (pins & ATMEL_SSC_RF)
912 at91_set_B_periph(AT91_PIN_PB5, 1);
913}
914
915static u64 ssc1_dmamask = DMA_BIT_MASK(32);
916
917static struct resource ssc1_resources[] = {
918 [0] = {
919 .start = AT91SAM9263_BASE_SSC1,
920 .end = AT91SAM9263_BASE_SSC1 + SZ_16K - 1,
921 .flags = IORESOURCE_MEM,
922 },
923 [1] = {
924 .start = AT91SAM9263_ID_SSC1,
925 .end = AT91SAM9263_ID_SSC1,
926 .flags = IORESOURCE_IRQ,
927 },
928};
929
930static struct platform_device at91sam9263_ssc1_device = {
931 .name = "ssc",
932 .id = 1,
933 .dev = {
934 .dma_mask = &ssc1_dmamask,
935 .coherent_dma_mask = DMA_BIT_MASK(32),
936 },
937 .resource = ssc1_resources,
938 .num_resources = ARRAY_SIZE(ssc1_resources),
939};
940
941static inline void configure_ssc1_pins(unsigned pins)
942{
943 if (pins & ATMEL_SSC_TF)
944 at91_set_A_periph(AT91_PIN_PB6, 1);
945 if (pins & ATMEL_SSC_TK)
946 at91_set_A_periph(AT91_PIN_PB7, 1);
947 if (pins & ATMEL_SSC_TD)
948 at91_set_A_periph(AT91_PIN_PB8, 1);
949 if (pins & ATMEL_SSC_RD)
950 at91_set_A_periph(AT91_PIN_PB9, 1);
951 if (pins & ATMEL_SSC_RK)
952 at91_set_A_periph(AT91_PIN_PB10, 1);
953 if (pins & ATMEL_SSC_RF)
954 at91_set_A_periph(AT91_PIN_PB11, 1);
955}
956
957/*
958 * Return the device node so that board init code can use it as the
959 * parent for the device node reflecting how it's used on this board.
960 *
961 * SSC controllers are accessed through library code, instead of any
962 * kind of all-singing/all-dancing driver. For example one could be
963 * used by a particular I2S audio codec's driver, while another one
964 * on the same system might be used by a custom data capture driver.
965 */
966void __init at91_add_device_ssc(unsigned id, unsigned pins)
967{
968 struct platform_device *pdev;
969
970 /*
971 * NOTE: caller is responsible for passing information matching
972 * "pins" to whatever will be using each particular controller.
973 */
974 switch (id) {
975 case AT91SAM9263_ID_SSC0:
976 pdev = &at91sam9263_ssc0_device;
977 configure_ssc0_pins(pins);
978 at91_clock_associate("ssc0_clk", &pdev->dev, "pclk");
979 break;
980 case AT91SAM9263_ID_SSC1:
981 pdev = &at91sam9263_ssc1_device;
982 configure_ssc1_pins(pins);
983 at91_clock_associate("ssc1_clk", &pdev->dev, "pclk");
984 break;
985 default:
986 return;
987 }
988
989 platform_device_register(pdev);
990}
991
992#else
993void __init at91_add_device_ssc(unsigned id, unsigned pins) {}
994#endif
995
996
997/* --------------------------------------------------------------------
Andrew Victorb2c65612007-02-08 09:42:40 +0100998 * UART
999 * -------------------------------------------------------------------- */
1000
1001#if defined(CONFIG_SERIAL_ATMEL)
1002
1003static struct resource dbgu_resources[] = {
1004 [0] = {
1005 .start = AT91_VA_BASE_SYS + AT91_DBGU,
1006 .end = AT91_VA_BASE_SYS + AT91_DBGU + SZ_512 - 1,
1007 .flags = IORESOURCE_MEM,
1008 },
1009 [1] = {
1010 .start = AT91_ID_SYS,
1011 .end = AT91_ID_SYS,
1012 .flags = IORESOURCE_IRQ,
1013 },
1014};
1015
1016static struct atmel_uart_data dbgu_data = {
1017 .use_dma_tx = 0,
1018 .use_dma_rx = 0, /* DBGU not capable of receive DMA */
1019 .regs = (void __iomem *)(AT91_VA_BASE_SYS + AT91_DBGU),
1020};
1021
Andrew Victorc6686ff2008-01-23 09:13:53 +01001022static u64 dbgu_dmamask = DMA_BIT_MASK(32);
1023
Andrew Victorb2c65612007-02-08 09:42:40 +01001024static struct platform_device at91sam9263_dbgu_device = {
1025 .name = "atmel_usart",
1026 .id = 0,
1027 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +01001028 .dma_mask = &dbgu_dmamask,
1029 .coherent_dma_mask = DMA_BIT_MASK(32),
1030 .platform_data = &dbgu_data,
Andrew Victorb2c65612007-02-08 09:42:40 +01001031 },
1032 .resource = dbgu_resources,
1033 .num_resources = ARRAY_SIZE(dbgu_resources),
1034};
1035
1036static inline void configure_dbgu_pins(void)
1037{
1038 at91_set_A_periph(AT91_PIN_PC30, 0); /* DRXD */
1039 at91_set_A_periph(AT91_PIN_PC31, 1); /* DTXD */
1040}
1041
1042static struct resource uart0_resources[] = {
1043 [0] = {
1044 .start = AT91SAM9263_BASE_US0,
1045 .end = AT91SAM9263_BASE_US0 + SZ_16K - 1,
1046 .flags = IORESOURCE_MEM,
1047 },
1048 [1] = {
1049 .start = AT91SAM9263_ID_US0,
1050 .end = AT91SAM9263_ID_US0,
1051 .flags = IORESOURCE_IRQ,
1052 },
1053};
1054
1055static struct atmel_uart_data uart0_data = {
1056 .use_dma_tx = 1,
1057 .use_dma_rx = 1,
1058};
1059
Andrew Victorc6686ff2008-01-23 09:13:53 +01001060static u64 uart0_dmamask = DMA_BIT_MASK(32);
1061
Andrew Victorb2c65612007-02-08 09:42:40 +01001062static struct platform_device at91sam9263_uart0_device = {
1063 .name = "atmel_usart",
1064 .id = 1,
1065 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +01001066 .dma_mask = &uart0_dmamask,
1067 .coherent_dma_mask = DMA_BIT_MASK(32),
1068 .platform_data = &uart0_data,
Andrew Victorb2c65612007-02-08 09:42:40 +01001069 },
1070 .resource = uart0_resources,
1071 .num_resources = ARRAY_SIZE(uart0_resources),
1072};
1073
Andrew Victorc8f385a2008-01-23 09:25:15 +01001074static inline void configure_usart0_pins(unsigned pins)
Andrew Victorb2c65612007-02-08 09:42:40 +01001075{
1076 at91_set_A_periph(AT91_PIN_PA26, 1); /* TXD0 */
1077 at91_set_A_periph(AT91_PIN_PA27, 0); /* RXD0 */
Andrew Victorc8f385a2008-01-23 09:25:15 +01001078
1079 if (pins & ATMEL_UART_RTS)
1080 at91_set_A_periph(AT91_PIN_PA28, 0); /* RTS0 */
1081 if (pins & ATMEL_UART_CTS)
1082 at91_set_A_periph(AT91_PIN_PA29, 0); /* CTS0 */
Andrew Victorb2c65612007-02-08 09:42:40 +01001083}
1084
1085static struct resource uart1_resources[] = {
1086 [0] = {
1087 .start = AT91SAM9263_BASE_US1,
1088 .end = AT91SAM9263_BASE_US1 + SZ_16K - 1,
1089 .flags = IORESOURCE_MEM,
1090 },
1091 [1] = {
1092 .start = AT91SAM9263_ID_US1,
1093 .end = AT91SAM9263_ID_US1,
1094 .flags = IORESOURCE_IRQ,
1095 },
1096};
1097
1098static struct atmel_uart_data uart1_data = {
1099 .use_dma_tx = 1,
1100 .use_dma_rx = 1,
1101};
1102
Andrew Victorc6686ff2008-01-23 09:13:53 +01001103static u64 uart1_dmamask = DMA_BIT_MASK(32);
1104
Andrew Victorb2c65612007-02-08 09:42:40 +01001105static struct platform_device at91sam9263_uart1_device = {
1106 .name = "atmel_usart",
1107 .id = 2,
1108 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +01001109 .dma_mask = &uart1_dmamask,
1110 .coherent_dma_mask = DMA_BIT_MASK(32),
1111 .platform_data = &uart1_data,
Andrew Victorb2c65612007-02-08 09:42:40 +01001112 },
1113 .resource = uart1_resources,
1114 .num_resources = ARRAY_SIZE(uart1_resources),
1115};
1116
Andrew Victorc8f385a2008-01-23 09:25:15 +01001117static inline void configure_usart1_pins(unsigned pins)
Andrew Victorb2c65612007-02-08 09:42:40 +01001118{
1119 at91_set_A_periph(AT91_PIN_PD0, 1); /* TXD1 */
1120 at91_set_A_periph(AT91_PIN_PD1, 0); /* RXD1 */
Andrew Victorc8f385a2008-01-23 09:25:15 +01001121
1122 if (pins & ATMEL_UART_RTS)
1123 at91_set_B_periph(AT91_PIN_PD7, 0); /* RTS1 */
1124 if (pins & ATMEL_UART_CTS)
1125 at91_set_B_periph(AT91_PIN_PD8, 0); /* CTS1 */
Andrew Victorb2c65612007-02-08 09:42:40 +01001126}
1127
1128static struct resource uart2_resources[] = {
1129 [0] = {
1130 .start = AT91SAM9263_BASE_US2,
1131 .end = AT91SAM9263_BASE_US2 + SZ_16K - 1,
1132 .flags = IORESOURCE_MEM,
1133 },
1134 [1] = {
1135 .start = AT91SAM9263_ID_US2,
1136 .end = AT91SAM9263_ID_US2,
1137 .flags = IORESOURCE_IRQ,
1138 },
1139};
1140
1141static struct atmel_uart_data uart2_data = {
1142 .use_dma_tx = 1,
1143 .use_dma_rx = 1,
1144};
1145
Andrew Victorc6686ff2008-01-23 09:13:53 +01001146static u64 uart2_dmamask = DMA_BIT_MASK(32);
1147
Andrew Victorb2c65612007-02-08 09:42:40 +01001148static struct platform_device at91sam9263_uart2_device = {
1149 .name = "atmel_usart",
1150 .id = 3,
1151 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +01001152 .dma_mask = &uart2_dmamask,
1153 .coherent_dma_mask = DMA_BIT_MASK(32),
1154 .platform_data = &uart2_data,
Andrew Victorb2c65612007-02-08 09:42:40 +01001155 },
1156 .resource = uart2_resources,
1157 .num_resources = ARRAY_SIZE(uart2_resources),
1158};
1159
Andrew Victorc8f385a2008-01-23 09:25:15 +01001160static inline void configure_usart2_pins(unsigned pins)
Andrew Victorb2c65612007-02-08 09:42:40 +01001161{
1162 at91_set_A_periph(AT91_PIN_PD2, 1); /* TXD2 */
1163 at91_set_A_periph(AT91_PIN_PD3, 0); /* RXD2 */
Andrew Victorc8f385a2008-01-23 09:25:15 +01001164
1165 if (pins & ATMEL_UART_RTS)
1166 at91_set_B_periph(AT91_PIN_PD5, 0); /* RTS2 */
1167 if (pins & ATMEL_UART_CTS)
1168 at91_set_B_periph(AT91_PIN_PD6, 0); /* CTS2 */
Andrew Victorb2c65612007-02-08 09:42:40 +01001169}
1170
Andrew Victorc6686ff2008-01-23 09:13:53 +01001171static struct platform_device *at91_uarts[ATMEL_MAX_UART]; /* the UARTs to use */
Andrew Victorb2c65612007-02-08 09:42:40 +01001172struct platform_device *atmel_default_console_device; /* the serial console device */
1173
Andrew Victorc8f385a2008-01-23 09:25:15 +01001174void __init __deprecated at91_init_serial(struct at91_uart_config *config)
Andrew Victorb2c65612007-02-08 09:42:40 +01001175{
1176 int i;
1177
1178 /* Fill in list of supported UARTs */
1179 for (i = 0; i < config->nr_tty; i++) {
1180 switch (config->tty_map[i]) {
1181 case 0:
Andrew Victorc8f385a2008-01-23 09:25:15 +01001182 configure_usart0_pins(ATMEL_UART_CTS | ATMEL_UART_RTS);
Andrew Victorb2c65612007-02-08 09:42:40 +01001183 at91_uarts[i] = &at91sam9263_uart0_device;
1184 at91_clock_associate("usart0_clk", &at91sam9263_uart0_device.dev, "usart");
1185 break;
1186 case 1:
Andrew Victorc8f385a2008-01-23 09:25:15 +01001187 configure_usart1_pins(ATMEL_UART_CTS | ATMEL_UART_RTS);
Andrew Victorb2c65612007-02-08 09:42:40 +01001188 at91_uarts[i] = &at91sam9263_uart1_device;
1189 at91_clock_associate("usart1_clk", &at91sam9263_uart1_device.dev, "usart");
1190 break;
1191 case 2:
Andrew Victorc8f385a2008-01-23 09:25:15 +01001192 configure_usart2_pins(ATMEL_UART_CTS | ATMEL_UART_RTS);
Andrew Victorb2c65612007-02-08 09:42:40 +01001193 at91_uarts[i] = &at91sam9263_uart2_device;
1194 at91_clock_associate("usart2_clk", &at91sam9263_uart2_device.dev, "usart");
1195 break;
1196 case 3:
1197 configure_dbgu_pins();
1198 at91_uarts[i] = &at91sam9263_dbgu_device;
1199 at91_clock_associate("mck", &at91sam9263_dbgu_device.dev, "usart");
1200 break;
1201 default:
1202 continue;
1203 }
1204 at91_uarts[i]->id = i; /* update ID number to mapped ID */
1205 }
1206
1207 /* Set serial console device */
1208 if (config->console_tty < ATMEL_MAX_UART)
1209 atmel_default_console_device = at91_uarts[config->console_tty];
1210 if (!atmel_default_console_device)
1211 printk(KERN_INFO "AT91: No default serial console defined.\n");
1212}
1213
Andrew Victorc8f385a2008-01-23 09:25:15 +01001214void __init at91_register_uart(unsigned id, unsigned portnr, unsigned pins)
1215{
1216 struct platform_device *pdev;
1217
1218 switch (id) {
1219 case 0: /* DBGU */
1220 pdev = &at91sam9263_dbgu_device;
1221 configure_dbgu_pins();
1222 at91_clock_associate("mck", &pdev->dev, "usart");
1223 break;
1224 case AT91SAM9263_ID_US0:
1225 pdev = &at91sam9263_uart0_device;
1226 configure_usart0_pins(pins);
1227 at91_clock_associate("usart0_clk", &pdev->dev, "usart");
1228 break;
1229 case AT91SAM9263_ID_US1:
1230 pdev = &at91sam9263_uart1_device;
1231 configure_usart1_pins(pins);
1232 at91_clock_associate("usart1_clk", &pdev->dev, "usart");
1233 break;
1234 case AT91SAM9263_ID_US2:
1235 pdev = &at91sam9263_uart2_device;
1236 configure_usart2_pins(pins);
1237 at91_clock_associate("usart2_clk", &pdev->dev, "usart");
1238 break;
1239 default:
1240 return;
1241 }
1242 pdev->id = portnr; /* update to mapped ID */
1243
1244 if (portnr < ATMEL_MAX_UART)
1245 at91_uarts[portnr] = pdev;
1246}
1247
1248void __init at91_set_serial_console(unsigned portnr)
1249{
1250 if (portnr < ATMEL_MAX_UART)
1251 atmel_default_console_device = at91_uarts[portnr];
1252 if (!atmel_default_console_device)
1253 printk(KERN_INFO "AT91: No default serial console defined.\n");
1254}
1255
Andrew Victorb2c65612007-02-08 09:42:40 +01001256void __init at91_add_device_serial(void)
1257{
1258 int i;
1259
1260 for (i = 0; i < ATMEL_MAX_UART; i++) {
1261 if (at91_uarts[i])
1262 platform_device_register(at91_uarts[i]);
1263 }
1264}
1265#else
1266void __init at91_init_serial(struct at91_uart_config *config) {}
Andrew Victorc8f385a2008-01-23 09:25:15 +01001267void __init at91_register_uart(unsigned id, unsigned portnr, unsigned pins) {}
1268void __init at91_set_serial_console(unsigned portnr) {}
Andrew Victorb2c65612007-02-08 09:42:40 +01001269void __init at91_add_device_serial(void) {}
1270#endif
1271
1272
1273/* -------------------------------------------------------------------- */
1274/*
1275 * These devices are always present and don't need any board-specific
1276 * setup.
1277 */
1278static int __init at91_add_standard_devices(void)
1279{
Andrew Victor884f5a62008-01-23 09:11:13 +01001280 at91_add_device_rtt();
1281 at91_add_device_watchdog();
Andrew Victorb2c65612007-02-08 09:42:40 +01001282 return 0;
1283}
1284
1285arch_initcall(at91_add_standard_devices);