blob: 3cee0e6ea7c3c126ec3b319497b01cf335f3f16a [file] [log] [blame]
SAN People73a59c12006-01-09 17:05:41 +00001/*
Andrew Victor9d041262007-02-05 11:42:07 +01002 * arch/arm/mach-at91/at91rm9200_devices.c
SAN People73a59c12006-01-09 17:05:41 +00003 *
4 * Copyright (C) 2005 Thibaut VARENE <varenet@parisc-linux.org>
5 * Copyright (C) 2005 David Brownell
6 *
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.
11 *
12 */
13#include <asm/mach/arch.h>
14#include <asm/mach/map.h>
15
Andrew Victorc6686ff2008-01-23 09:13:53 +010016#include <linux/dma-mapping.h>
Russell King2f8163b2011-07-26 10:53:52 +010017#include <linux/gpio.h>
SAN People73a59c12006-01-09 17:05:41 +000018#include <linux/platform_device.h>
Andrew Victorf230d3f2007-11-19 13:47:20 +010019#include <linux/i2c-gpio.h>
SAN People73a59c12006-01-09 17:05:41 +000020
Russell Kinga09e64f2008-08-05 16:14:15 +010021#include <mach/board.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/at91rm9200.h>
23#include <mach/at91rm9200_mc.h>
Jean-Christophe PLAGNIOL-VILLARDf363c402012-02-13 12:58:53 +080024#include <mach/at91_ramc.h>
SAN People73a59c12006-01-09 17:05:41 +000025
Andrew Victor2e836402006-06-19 16:31:55 +010026#include "generic.h"
27
SAN People73a59c12006-01-09 17:05:41 +000028
29/* --------------------------------------------------------------------
30 * USB Host
31 * -------------------------------------------------------------------- */
32
33#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +010034static u64 ohci_dmamask = DMA_BIT_MASK(32);
SAN People73a59c12006-01-09 17:05:41 +000035static struct at91_usbh_data usbh_data;
36
Andrew Victor69c5ecc2006-12-01 15:53:20 +010037static struct resource usbh_resources[] = {
SAN People73a59c12006-01-09 17:05:41 +000038 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +010039 .start = AT91RM9200_UHP_BASE,
40 .end = AT91RM9200_UHP_BASE + SZ_1M - 1,
SAN People73a59c12006-01-09 17:05:41 +000041 .flags = IORESOURCE_MEM,
42 },
43 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +020044 .start = NR_IRQS_LEGACY + AT91RM9200_ID_UHP,
45 .end = NR_IRQS_LEGACY + AT91RM9200_ID_UHP,
SAN People73a59c12006-01-09 17:05:41 +000046 .flags = IORESOURCE_IRQ,
47 },
48};
49
50static struct platform_device at91rm9200_usbh_device = {
Andrew Victor2e836402006-06-19 16:31:55 +010051 .name = "at91_ohci",
SAN People73a59c12006-01-09 17:05:41 +000052 .id = -1,
53 .dev = {
54 .dma_mask = &ohci_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +010055 .coherent_dma_mask = DMA_BIT_MASK(32),
SAN People73a59c12006-01-09 17:05:41 +000056 .platform_data = &usbh_data,
57 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +010058 .resource = usbh_resources,
59 .num_resources = ARRAY_SIZE(usbh_resources),
SAN People73a59c12006-01-09 17:05:41 +000060};
61
62void __init at91_add_device_usbh(struct at91_usbh_data *data)
63{
Thomas Petazzoni1fcaea72011-07-13 11:29:18 +020064 int i;
65
SAN People73a59c12006-01-09 17:05:41 +000066 if (!data)
67 return;
68
Thomas Petazzoni1fcaea72011-07-13 11:29:18 +020069 /* Enable overcurrent notification */
70 for (i = 0; i < data->ports; i++) {
Johan Hovold641f3ce2012-11-14 12:18:17 +010071 if (gpio_is_valid(data->overcurrent_pin[i]))
Thomas Petazzoni1fcaea72011-07-13 11:29:18 +020072 at91_set_gpio_input(data->overcurrent_pin[i], 1);
73 }
74
SAN People73a59c12006-01-09 17:05:41 +000075 usbh_data = *data;
76 platform_device_register(&at91rm9200_usbh_device);
77}
78#else
79void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
80#endif
81
82
83/* --------------------------------------------------------------------
84 * USB Device (Gadget)
85 * -------------------------------------------------------------------- */
86
Nicolas Ferree8c9dc92012-01-27 11:14:44 +010087#if defined(CONFIG_USB_AT91) || defined(CONFIG_USB_AT91_MODULE)
SAN People73a59c12006-01-09 17:05:41 +000088static struct at91_udc_data udc_data;
89
Andrew Victor69c5ecc2006-12-01 15:53:20 +010090static struct resource udc_resources[] = {
Andrew Victor2e836402006-06-19 16:31:55 +010091 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +010092 .start = AT91RM9200_BASE_UDP,
93 .end = AT91RM9200_BASE_UDP + SZ_16K - 1,
SAN People73a59c12006-01-09 17:05:41 +000094 .flags = IORESOURCE_MEM,
Andrew Victor2e836402006-06-19 16:31:55 +010095 },
96 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +020097 .start = NR_IRQS_LEGACY + AT91RM9200_ID_UDP,
98 .end = NR_IRQS_LEGACY + AT91RM9200_ID_UDP,
Andrew Victor2e836402006-06-19 16:31:55 +010099 .flags = IORESOURCE_IRQ,
100 },
SAN People73a59c12006-01-09 17:05:41 +0000101};
102
103static struct platform_device at91rm9200_udc_device = {
104 .name = "at91_udc",
105 .id = -1,
106 .dev = {
107 .platform_data = &udc_data,
108 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100109 .resource = udc_resources,
110 .num_resources = ARRAY_SIZE(udc_resources),
SAN People73a59c12006-01-09 17:05:41 +0000111};
112
113void __init at91_add_device_udc(struct at91_udc_data *data)
114{
115 if (!data)
116 return;
117
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800118 if (gpio_is_valid(data->vbus_pin)) {
SAN People73a59c12006-01-09 17:05:41 +0000119 at91_set_gpio_input(data->vbus_pin, 0);
120 at91_set_deglitch(data->vbus_pin, 1);
121 }
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800122 if (gpio_is_valid(data->pullup_pin))
SAN People73a59c12006-01-09 17:05:41 +0000123 at91_set_gpio_output(data->pullup_pin, 0);
SAN People73a59c12006-01-09 17:05:41 +0000124
125 udc_data = *data;
126 platform_device_register(&at91rm9200_udc_device);
127}
128#else
129void __init at91_add_device_udc(struct at91_udc_data *data) {}
130#endif
131
132
133/* --------------------------------------------------------------------
134 * Ethernet
135 * -------------------------------------------------------------------- */
136
137#if defined(CONFIG_ARM_AT91_ETHER) || defined(CONFIG_ARM_AT91_ETHER_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +0100138static u64 eth_dmamask = DMA_BIT_MASK(32);
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000139static struct macb_platform_data eth_data;
SAN People73a59c12006-01-09 17:05:41 +0000140
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100141static struct resource eth_resources[] = {
Andrew Victor3267c072006-04-02 17:15:51 +0100142 [0] = {
Andrew Victorc5f0f832012-04-26 00:30:42 +0000143 .start = AT91RM9200_BASE_EMAC,
144 .end = AT91RM9200_BASE_EMAC + SZ_16K - 1,
Andrew Victor3267c072006-04-02 17:15:51 +0100145 .flags = IORESOURCE_MEM,
146 },
147 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200148 .start = NR_IRQS_LEGACY + AT91RM9200_ID_EMAC,
149 .end = NR_IRQS_LEGACY + AT91RM9200_ID_EMAC,
Andrew Victor3267c072006-04-02 17:15:51 +0100150 .flags = IORESOURCE_IRQ,
151 },
152};
153
SAN People73a59c12006-01-09 17:05:41 +0000154static struct platform_device at91rm9200_eth_device = {
155 .name = "at91_ether",
156 .id = -1,
157 .dev = {
158 .dma_mask = &eth_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100159 .coherent_dma_mask = DMA_BIT_MASK(32),
SAN People73a59c12006-01-09 17:05:41 +0000160 .platform_data = &eth_data,
161 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100162 .resource = eth_resources,
163 .num_resources = ARRAY_SIZE(eth_resources),
SAN People73a59c12006-01-09 17:05:41 +0000164};
165
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000166void __init at91_add_device_eth(struct macb_platform_data *data)
SAN People73a59c12006-01-09 17:05:41 +0000167{
168 if (!data)
169 return;
170
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800171 if (gpio_is_valid(data->phy_irq_pin)) {
SAN People73a59c12006-01-09 17:05:41 +0000172 at91_set_gpio_input(data->phy_irq_pin, 0);
173 at91_set_deglitch(data->phy_irq_pin, 1);
174 }
175
176 /* Pins used for MII and RMII */
177 at91_set_A_periph(AT91_PIN_PA16, 0); /* EMDIO */
178 at91_set_A_periph(AT91_PIN_PA15, 0); /* EMDC */
179 at91_set_A_periph(AT91_PIN_PA14, 0); /* ERXER */
180 at91_set_A_periph(AT91_PIN_PA13, 0); /* ERX1 */
181 at91_set_A_periph(AT91_PIN_PA12, 0); /* ERX0 */
182 at91_set_A_periph(AT91_PIN_PA11, 0); /* ECRS_ECRSDV */
183 at91_set_A_periph(AT91_PIN_PA10, 0); /* ETX1 */
184 at91_set_A_periph(AT91_PIN_PA9, 0); /* ETX0 */
185 at91_set_A_periph(AT91_PIN_PA8, 0); /* ETXEN */
186 at91_set_A_periph(AT91_PIN_PA7, 0); /* ETXCK_EREFCK */
187
188 if (!data->is_rmii) {
189 at91_set_B_periph(AT91_PIN_PB19, 0); /* ERXCK */
190 at91_set_B_periph(AT91_PIN_PB18, 0); /* ECOL */
191 at91_set_B_periph(AT91_PIN_PB17, 0); /* ERXDV */
192 at91_set_B_periph(AT91_PIN_PB16, 0); /* ERX3 */
193 at91_set_B_periph(AT91_PIN_PB15, 0); /* ERX2 */
194 at91_set_B_periph(AT91_PIN_PB14, 0); /* ETXER */
195 at91_set_B_periph(AT91_PIN_PB13, 0); /* ETX3 */
196 at91_set_B_periph(AT91_PIN_PB12, 0); /* ETX2 */
197 }
198
199 eth_data = *data;
200 platform_device_register(&at91rm9200_eth_device);
201}
202#else
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000203void __init at91_add_device_eth(struct macb_platform_data *data) {}
SAN People73a59c12006-01-09 17:05:41 +0000204#endif
205
206
207/* --------------------------------------------------------------------
208 * Compact Flash / PCMCIA
209 * -------------------------------------------------------------------- */
210
211#if defined(CONFIG_AT91_CF) || defined(CONFIG_AT91_CF_MODULE)
212static struct at91_cf_data cf_data;
213
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100214#define CF_BASE AT91_CHIPSELECT_4
215
216static struct resource cf_resources[] = {
David Brownell2c536202006-04-14 18:05:38 -0700217 [0] = {
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100218 .start = CF_BASE,
Andrew Victor2e836402006-06-19 16:31:55 +0100219 /* ties up CS4, CS5 and CS6 */
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100220 .end = CF_BASE + (0x30000000 - 1),
David Brownell2c536202006-04-14 18:05:38 -0700221 .flags = IORESOURCE_MEM | IORESOURCE_MEM_8AND16BIT,
222 },
223};
224
SAN People73a59c12006-01-09 17:05:41 +0000225static struct platform_device at91rm9200_cf_device = {
226 .name = "at91_cf",
227 .id = -1,
228 .dev = {
229 .platform_data = &cf_data,
230 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100231 .resource = cf_resources,
232 .num_resources = ARRAY_SIZE(cf_resources),
SAN People73a59c12006-01-09 17:05:41 +0000233};
234
235void __init at91_add_device_cf(struct at91_cf_data *data)
236{
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100237 unsigned int csa;
238
SAN People73a59c12006-01-09 17:05:41 +0000239 if (!data)
240 return;
241
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100242 data->chipselect = 4; /* can only use EBI ChipSelect 4 */
243
244 /* CF takes over CS4, CS5, CS6 */
Jean-Christophe PLAGNIOL-VILLARDf363c402012-02-13 12:58:53 +0800245 csa = at91_ramc_read(0, AT91_EBI_CSA);
246 at91_ramc_write(0, AT91_EBI_CSA, csa | AT91_EBI_CS4A_SMC_COMPACTFLASH);
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100247
248 /*
249 * Static memory controller timing adjustments.
250 * REVISIT: these timings are in terms of MCK cycles, so
251 * when MCK changes (cpufreq etc) so must these values...
252 */
Jean-Christophe PLAGNIOL-VILLARDf363c402012-02-13 12:58:53 +0800253 at91_ramc_write(0, AT91_SMC_CSR(4),
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100254 AT91_SMC_ACSS_STD
255 | AT91_SMC_DBW_16
256 | AT91_SMC_BAT
257 | AT91_SMC_WSEN
258 | AT91_SMC_NWS_(32) /* wait states */
259 | AT91_SMC_RWSETUP_(6) /* setup time */
260 | AT91_SMC_RWHOLD_(4) /* hold time */
261 );
262
SAN People73a59c12006-01-09 17:05:41 +0000263 /* input/irq */
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800264 if (gpio_is_valid(data->irq_pin)) {
SAN People73a59c12006-01-09 17:05:41 +0000265 at91_set_gpio_input(data->irq_pin, 1);
266 at91_set_deglitch(data->irq_pin, 1);
267 }
268 at91_set_gpio_input(data->det_pin, 1);
269 at91_set_deglitch(data->det_pin, 1);
270
271 /* outputs, initially off */
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800272 if (gpio_is_valid(data->vcc_pin))
SAN People73a59c12006-01-09 17:05:41 +0000273 at91_set_gpio_output(data->vcc_pin, 0);
274 at91_set_gpio_output(data->rst_pin, 0);
275
Andrew Victor2e836402006-06-19 16:31:55 +0100276 /* force poweron defaults for these pins ... */
277 at91_set_A_periph(AT91_PIN_PC9, 0); /* A25/CFRNW */
278 at91_set_A_periph(AT91_PIN_PC10, 0); /* NCS4/CFCS */
279 at91_set_A_periph(AT91_PIN_PC11, 0); /* NCS5/CFCE1 */
280 at91_set_A_periph(AT91_PIN_PC12, 0); /* NCS6/CFCE2 */
281
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100282 /* nWAIT is _not_ a default setting */
Andrew Victora14d5272007-01-09 09:03:42 +0100283 at91_set_A_periph(AT91_PIN_PC6, 1); /* nWAIT */
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100284
SAN People73a59c12006-01-09 17:05:41 +0000285 cf_data = *data;
286 platform_device_register(&at91rm9200_cf_device);
287}
288#else
289void __init at91_add_device_cf(struct at91_cf_data *data) {}
290#endif
291
292
293/* --------------------------------------------------------------------
294 * MMC / SD
295 * -------------------------------------------------------------------- */
296
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200297#if IS_ENABLED(CONFIG_MMC_ATMELMCI)
Andrew Victorc6686ff2008-01-23 09:13:53 +0100298static u64 mmc_dmamask = DMA_BIT_MASK(32);
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200299static struct mci_platform_data mmc_data;
SAN People73a59c12006-01-09 17:05:41 +0000300
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100301static struct resource mmc_resources[] = {
Andrew Victor3267c072006-04-02 17:15:51 +0100302 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +0100303 .start = AT91RM9200_BASE_MCI,
304 .end = AT91RM9200_BASE_MCI + SZ_16K - 1,
SAN People73a59c12006-01-09 17:05:41 +0000305 .flags = IORESOURCE_MEM,
Andrew Victor3267c072006-04-02 17:15:51 +0100306 },
307 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200308 .start = NR_IRQS_LEGACY + AT91RM9200_ID_MCI,
309 .end = NR_IRQS_LEGACY + AT91RM9200_ID_MCI,
Andrew Victor3267c072006-04-02 17:15:51 +0100310 .flags = IORESOURCE_IRQ,
311 },
SAN People73a59c12006-01-09 17:05:41 +0000312};
313
314static struct platform_device at91rm9200_mmc_device = {
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200315 .name = "atmel_mci",
SAN People73a59c12006-01-09 17:05:41 +0000316 .id = -1,
317 .dev = {
318 .dma_mask = &mmc_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100319 .coherent_dma_mask = DMA_BIT_MASK(32),
SAN People73a59c12006-01-09 17:05:41 +0000320 .platform_data = &mmc_data,
321 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100322 .resource = mmc_resources,
323 .num_resources = ARRAY_SIZE(mmc_resources),
SAN People73a59c12006-01-09 17:05:41 +0000324};
325
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200326void __init at91_add_device_mci(short mmc_id, struct mci_platform_data *data)
SAN People73a59c12006-01-09 17:05:41 +0000327{
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200328 unsigned int i;
329 unsigned int slot_count = 0;
330
SAN People73a59c12006-01-09 17:05:41 +0000331 if (!data)
332 return;
333
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200334 for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) {
SAN People73a59c12006-01-09 17:05:41 +0000335
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200336 if (!data->slot[i].bus_width)
337 continue;
SAN People73a59c12006-01-09 17:05:41 +0000338
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200339 /* input/irq */
340 if (gpio_is_valid(data->slot[i].detect_pin)) {
341 at91_set_gpio_input(data->slot[i].detect_pin, 1);
342 at91_set_deglitch(data->slot[i].detect_pin, 1);
SAN People73a59c12006-01-09 17:05:41 +0000343 }
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200344 if (gpio_is_valid(data->slot[i].wp_pin))
345 at91_set_gpio_input(data->slot[i].wp_pin, 1);
SAN People73a59c12006-01-09 17:05:41 +0000346
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200347 switch (i) {
348 case 0: /* slot A */
349 /* CMD */
350 at91_set_A_periph(AT91_PIN_PA28, 1);
351 /* DAT0, maybe DAT1..DAT3 */
352 at91_set_A_periph(AT91_PIN_PA29, 1);
353 if (data->slot[i].bus_width == 4) {
354 at91_set_B_periph(AT91_PIN_PB3, 1);
355 at91_set_B_periph(AT91_PIN_PB4, 1);
356 at91_set_B_periph(AT91_PIN_PB5, 1);
357 }
358 slot_count++;
359 break;
360 case 1: /* slot B */
361 /* CMD */
362 at91_set_B_periph(AT91_PIN_PA8, 1);
363 /* DAT0, maybe DAT1..DAT3 */
364 at91_set_B_periph(AT91_PIN_PA9, 1);
365 if (data->slot[i].bus_width == 4) {
366 at91_set_B_periph(AT91_PIN_PA10, 1);
367 at91_set_B_periph(AT91_PIN_PA11, 1);
368 at91_set_B_periph(AT91_PIN_PA12, 1);
369 }
370 slot_count++;
371 break;
372 default:
373 printk(KERN_ERR
374 "AT91: SD/MMC slot %d not available\n", i);
375 break;
376 }
377 if (slot_count) {
378 /* CLK */
379 at91_set_A_periph(AT91_PIN_PA27, 0);
380
381 mmc_data = *data;
382 platform_device_register(&at91rm9200_mmc_device);
SAN People73a59c12006-01-09 17:05:41 +0000383 }
384 }
385
SAN People73a59c12006-01-09 17:05:41 +0000386}
387#else
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200388void __init at91_add_device_mci(short mmc_id, struct mci_platform_data *data) {}
SAN People73a59c12006-01-09 17:05:41 +0000389#endif
390
Andrew Victor2e836402006-06-19 16:31:55 +0100391
Andrew Victorcc2832a2006-04-02 17:15:48 +0100392/* --------------------------------------------------------------------
Andrew Victor3267c072006-04-02 17:15:51 +0100393 * NAND / SmartMedia
394 * -------------------------------------------------------------------- */
395
Pieter du Preezf6ed6f72008-08-01 10:06:40 +0100396#if defined(CONFIG_MTD_NAND_ATMEL) || defined(CONFIG_MTD_NAND_ATMEL_MODULE)
HÃ¥vard Skinnemoen3c3796c2008-06-06 18:04:53 +0200397static struct atmel_nand_data nand_data;
Andrew Victor3267c072006-04-02 17:15:51 +0100398
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100399#define NAND_BASE AT91_CHIPSELECT_3
400
401static struct resource nand_resources[] = {
Andrew Victor3267c072006-04-02 17:15:51 +0100402 {
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100403 .start = NAND_BASE,
Andrew Victor22823552008-01-23 09:21:02 +0100404 .end = NAND_BASE + SZ_256M - 1,
Andrew Victor3267c072006-04-02 17:15:51 +0100405 .flags = IORESOURCE_MEM,
406 }
407};
408
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100409static struct platform_device at91rm9200_nand_device = {
HÃ¥vard Skinnemoen3c3796c2008-06-06 18:04:53 +0200410 .name = "atmel_nand",
Andrew Victor3267c072006-04-02 17:15:51 +0100411 .id = -1,
412 .dev = {
413 .platform_data = &nand_data,
414 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100415 .resource = nand_resources,
416 .num_resources = ARRAY_SIZE(nand_resources),
Andrew Victor3267c072006-04-02 17:15:51 +0100417};
418
HÃ¥vard Skinnemoen3c3796c2008-06-06 18:04:53 +0200419void __init at91_add_device_nand(struct atmel_nand_data *data)
Andrew Victor3267c072006-04-02 17:15:51 +0100420{
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100421 unsigned int csa;
422
Andrew Victor3267c072006-04-02 17:15:51 +0100423 if (!data)
424 return;
425
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100426 /* enable the address range of CS3 */
Jean-Christophe PLAGNIOL-VILLARDf363c402012-02-13 12:58:53 +0800427 csa = at91_ramc_read(0, AT91_EBI_CSA);
428 at91_ramc_write(0, AT91_EBI_CSA, csa | AT91_EBI_CS3A_SMC_SMARTMEDIA);
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100429
430 /* set the bus interface characteristics */
Jean-Christophe PLAGNIOL-VILLARDf363c402012-02-13 12:58:53 +0800431 at91_ramc_write(0, AT91_SMC_CSR(3), AT91_SMC_ACSS_STD | AT91_SMC_DBW_8 | AT91_SMC_WSEN
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100432 | AT91_SMC_NWS_(5)
433 | AT91_SMC_TDF_(1)
434 | AT91_SMC_RWSETUP_(0) /* tDS Data Set up Time 30 - ns */
435 | AT91_SMC_RWHOLD_(1) /* tDH Data Hold Time 20 - ns */
436 );
437
Andrew Victor3267c072006-04-02 17:15:51 +0100438 /* enable pin */
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800439 if (gpio_is_valid(data->enable_pin))
Andrew Victor3267c072006-04-02 17:15:51 +0100440 at91_set_gpio_output(data->enable_pin, 1);
441
442 /* ready/busy pin */
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800443 if (gpio_is_valid(data->rdy_pin))
Andrew Victor3267c072006-04-02 17:15:51 +0100444 at91_set_gpio_input(data->rdy_pin, 1);
445
446 /* card detect pin */
Jean-Christophe PLAGNIOL-VILLARDcc9f9ae2011-09-19 15:28:25 +0800447 if (gpio_is_valid(data->det_pin))
Andrew Victor3267c072006-04-02 17:15:51 +0100448 at91_set_gpio_input(data->det_pin, 1);
449
450 at91_set_A_periph(AT91_PIN_PC1, 0); /* SMOE */
451 at91_set_A_periph(AT91_PIN_PC3, 0); /* SMWE */
452
453 nand_data = *data;
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100454 platform_device_register(&at91rm9200_nand_device);
Andrew Victor3267c072006-04-02 17:15:51 +0100455}
456#else
HÃ¥vard Skinnemoen3c3796c2008-06-06 18:04:53 +0200457void __init at91_add_device_nand(struct atmel_nand_data *data) {}
Andrew Victor3267c072006-04-02 17:15:51 +0100458#endif
459
460
461/* --------------------------------------------------------------------
462 * TWI (i2c)
463 * -------------------------------------------------------------------- */
464
Andrew Victorf230d3f2007-11-19 13:47:20 +0100465/*
466 * Prefer the GPIO code since the TWI controller isn't robust
467 * (gets overruns and underruns under load) and can only issue
468 * repeated STARTs in one scenario (the driver doesn't yet handle them).
469 */
470#if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
471
472static struct i2c_gpio_platform_data pdata = {
473 .sda_pin = AT91_PIN_PA25,
474 .sda_is_open_drain = 1,
475 .scl_pin = AT91_PIN_PA26,
476 .scl_is_open_drain = 1,
477 .udelay = 2, /* ~100 kHz */
478};
479
480static struct platform_device at91rm9200_twi_device = {
481 .name = "i2c-gpio",
Bo Shen78404872012-10-15 17:30:27 +0800482 .id = 0,
Andrew Victorf230d3f2007-11-19 13:47:20 +0100483 .dev.platform_data = &pdata,
484};
485
486void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices)
487{
488 at91_set_GPIO_periph(AT91_PIN_PA25, 1); /* TWD (SDA) */
489 at91_set_multi_drive(AT91_PIN_PA25, 1);
490
491 at91_set_GPIO_periph(AT91_PIN_PA26, 1); /* TWCK (SCL) */
492 at91_set_multi_drive(AT91_PIN_PA26, 1);
493
494 i2c_register_board_info(0, devices, nr_devices);
495 platform_device_register(&at91rm9200_twi_device);
496}
497
498#elif defined(CONFIG_I2C_AT91) || defined(CONFIG_I2C_AT91_MODULE)
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100499
500static struct resource twi_resources[] = {
501 [0] = {
502 .start = AT91RM9200_BASE_TWI,
503 .end = AT91RM9200_BASE_TWI + SZ_16K - 1,
504 .flags = IORESOURCE_MEM,
505 },
506 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200507 .start = NR_IRQS_LEGACY + AT91RM9200_ID_TWI,
508 .end = NR_IRQS_LEGACY + AT91RM9200_ID_TWI,
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100509 .flags = IORESOURCE_IRQ,
510 },
511};
512
Andrew Victor3267c072006-04-02 17:15:51 +0100513static struct platform_device at91rm9200_twi_device = {
Nikolaus Vossfac368a2011-11-08 11:49:46 +0100514 .name = "i2c-at91rm9200",
Bo Shen302090a2012-10-15 17:30:28 +0800515 .id = 0,
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100516 .resource = twi_resources,
517 .num_resources = ARRAY_SIZE(twi_resources),
Andrew Victor3267c072006-04-02 17:15:51 +0100518};
519
Andrew Victorf230d3f2007-11-19 13:47:20 +0100520void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices)
Andrew Victor3267c072006-04-02 17:15:51 +0100521{
522 /* pins used for TWI interface */
523 at91_set_A_periph(AT91_PIN_PA25, 0); /* TWD */
524 at91_set_multi_drive(AT91_PIN_PA25, 1);
525
526 at91_set_A_periph(AT91_PIN_PA26, 0); /* TWCK */
527 at91_set_multi_drive(AT91_PIN_PA26, 1);
528
Andrew Victorf230d3f2007-11-19 13:47:20 +0100529 i2c_register_board_info(0, devices, nr_devices);
Andrew Victor3267c072006-04-02 17:15:51 +0100530 platform_device_register(&at91rm9200_twi_device);
531}
532#else
Andrew Victorf230d3f2007-11-19 13:47:20 +0100533void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices) {}
Andrew Victor3267c072006-04-02 17:15:51 +0100534#endif
535
536
537/* --------------------------------------------------------------------
Andrew Victor2e836402006-06-19 16:31:55 +0100538 * SPI
539 * -------------------------------------------------------------------- */
540
Andrew Victorc06911c2007-07-16 11:35:40 +0100541#if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +0100542static u64 spi_dmamask = DMA_BIT_MASK(32);
Andrew Victor2e836402006-06-19 16:31:55 +0100543
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100544static struct resource spi_resources[] = {
Andrew Victor2e836402006-06-19 16:31:55 +0100545 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +0100546 .start = AT91RM9200_BASE_SPI,
547 .end = AT91RM9200_BASE_SPI + SZ_16K - 1,
Andrew Victor2e836402006-06-19 16:31:55 +0100548 .flags = IORESOURCE_MEM,
549 },
550 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200551 .start = NR_IRQS_LEGACY + AT91RM9200_ID_SPI,
552 .end = NR_IRQS_LEGACY + AT91RM9200_ID_SPI,
Andrew Victor2e836402006-06-19 16:31:55 +0100553 .flags = IORESOURCE_IRQ,
554 },
555};
556
557static struct platform_device at91rm9200_spi_device = {
Andrew Victorc06911c2007-07-16 11:35:40 +0100558 .name = "atmel_spi",
Andrew Victor2e836402006-06-19 16:31:55 +0100559 .id = 0,
560 .dev = {
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100561 .dma_mask = &spi_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100562 .coherent_dma_mask = DMA_BIT_MASK(32),
Andrew Victor2e836402006-06-19 16:31:55 +0100563 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100564 .resource = spi_resources,
565 .num_resources = ARRAY_SIZE(spi_resources),
Andrew Victor2e836402006-06-19 16:31:55 +0100566};
567
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100568static const unsigned spi_standard_cs[4] = { AT91_PIN_PA3, AT91_PIN_PA4, AT91_PIN_PA5, AT91_PIN_PA6 };
Andrew Victor2e836402006-06-19 16:31:55 +0100569
570void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices)
571{
572 int i;
573 unsigned long cs_pin;
574
575 at91_set_A_periph(AT91_PIN_PA0, 0); /* MISO */
576 at91_set_A_periph(AT91_PIN_PA1, 0); /* MOSI */
577 at91_set_A_periph(AT91_PIN_PA2, 0); /* SPCK */
578
579 /* Enable SPI chip-selects */
580 for (i = 0; i < nr_devices; i++) {
581 if (devices[i].controller_data)
582 cs_pin = (unsigned long) devices[i].controller_data;
583 else
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100584 cs_pin = spi_standard_cs[devices[i].chip_select];
Andrew Victor2e836402006-06-19 16:31:55 +0100585
Andrew Victor2743f0c2008-01-23 09:29:46 +0100586 if (devices[i].chip_select == 0) /* for CS0 errata */
587 at91_set_A_periph(cs_pin, 0);
588 else
589 at91_set_gpio_output(cs_pin, 1);
590
Andrew Victor2e836402006-06-19 16:31:55 +0100591
592 /* pass chip-select pin to driver */
593 devices[i].controller_data = (void *) cs_pin;
594 }
595
596 spi_register_board_info(devices, nr_devices);
Andrew Victor2e836402006-06-19 16:31:55 +0100597 platform_device_register(&at91rm9200_spi_device);
598}
599#else
600void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices) {}
601#endif
602
603
604/* --------------------------------------------------------------------
Andrew Victore5f40bf2008-04-02 21:58:00 +0100605 * Timer/Counter blocks
606 * -------------------------------------------------------------------- */
607
608#ifdef CONFIG_ATMEL_TCLIB
609
610static struct resource tcb0_resources[] = {
611 [0] = {
612 .start = AT91RM9200_BASE_TCB0,
613 .end = AT91RM9200_BASE_TCB0 + SZ_16K - 1,
614 .flags = IORESOURCE_MEM,
615 },
616 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200617 .start = NR_IRQS_LEGACY + AT91RM9200_ID_TC0,
618 .end = NR_IRQS_LEGACY + AT91RM9200_ID_TC0,
Andrew Victore5f40bf2008-04-02 21:58:00 +0100619 .flags = IORESOURCE_IRQ,
620 },
621 [2] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200622 .start = NR_IRQS_LEGACY + AT91RM9200_ID_TC1,
623 .end = NR_IRQS_LEGACY + AT91RM9200_ID_TC1,
Andrew Victore5f40bf2008-04-02 21:58:00 +0100624 .flags = IORESOURCE_IRQ,
625 },
626 [3] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200627 .start = NR_IRQS_LEGACY + AT91RM9200_ID_TC2,
628 .end = NR_IRQS_LEGACY + AT91RM9200_ID_TC2,
Andrew Victore5f40bf2008-04-02 21:58:00 +0100629 .flags = IORESOURCE_IRQ,
630 },
631};
632
633static struct platform_device at91rm9200_tcb0_device = {
634 .name = "atmel_tcb",
635 .id = 0,
636 .resource = tcb0_resources,
637 .num_resources = ARRAY_SIZE(tcb0_resources),
638};
639
640static struct resource tcb1_resources[] = {
641 [0] = {
642 .start = AT91RM9200_BASE_TCB1,
643 .end = AT91RM9200_BASE_TCB1 + SZ_16K - 1,
644 .flags = IORESOURCE_MEM,
645 },
646 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200647 .start = NR_IRQS_LEGACY + AT91RM9200_ID_TC3,
648 .end = NR_IRQS_LEGACY + AT91RM9200_ID_TC3,
Andrew Victore5f40bf2008-04-02 21:58:00 +0100649 .flags = IORESOURCE_IRQ,
650 },
651 [2] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200652 .start = NR_IRQS_LEGACY + AT91RM9200_ID_TC4,
653 .end = NR_IRQS_LEGACY + AT91RM9200_ID_TC4,
Andrew Victore5f40bf2008-04-02 21:58:00 +0100654 .flags = IORESOURCE_IRQ,
655 },
656 [3] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200657 .start = NR_IRQS_LEGACY + AT91RM9200_ID_TC5,
658 .end = NR_IRQS_LEGACY + AT91RM9200_ID_TC5,
Andrew Victore5f40bf2008-04-02 21:58:00 +0100659 .flags = IORESOURCE_IRQ,
660 },
661};
662
663static struct platform_device at91rm9200_tcb1_device = {
664 .name = "atmel_tcb",
665 .id = 1,
666 .resource = tcb1_resources,
667 .num_resources = ARRAY_SIZE(tcb1_resources),
668};
669
670static void __init at91_add_device_tc(void)
671{
Andrew Victore5f40bf2008-04-02 21:58:00 +0100672 platform_device_register(&at91rm9200_tcb0_device);
Andrew Victore5f40bf2008-04-02 21:58:00 +0100673 platform_device_register(&at91rm9200_tcb1_device);
674}
675#else
676static void __init at91_add_device_tc(void) { }
677#endif
678
679
680/* --------------------------------------------------------------------
Andrew Victor3267c072006-04-02 17:15:51 +0100681 * RTC
682 * -------------------------------------------------------------------- */
683
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100684#if defined(CONFIG_RTC_DRV_AT91RM9200) || defined(CONFIG_RTC_DRV_AT91RM9200_MODULE)
Jean-Christophe PLAGNIOL-VILLARDd28bdfc2011-11-14 14:24:53 +0800685static struct resource rtc_resources[] = {
686 [0] = {
687 .start = AT91RM9200_BASE_RTC,
688 .end = AT91RM9200_BASE_RTC + SZ_256 - 1,
689 .flags = IORESOURCE_MEM,
690 },
691 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200692 .start = NR_IRQS_LEGACY + AT91_ID_SYS,
693 .end = NR_IRQS_LEGACY + AT91_ID_SYS,
Jean-Christophe PLAGNIOL-VILLARDd28bdfc2011-11-14 14:24:53 +0800694 .flags = IORESOURCE_IRQ,
695 },
696};
697
Andrew Victor3267c072006-04-02 17:15:51 +0100698static struct platform_device at91rm9200_rtc_device = {
699 .name = "at91_rtc",
700 .id = -1,
Jean-Christophe PLAGNIOL-VILLARDd28bdfc2011-11-14 14:24:53 +0800701 .resource = rtc_resources,
702 .num_resources = ARRAY_SIZE(rtc_resources),
Andrew Victor3267c072006-04-02 17:15:51 +0100703};
704
Andrew Victor2e836402006-06-19 16:31:55 +0100705static void __init at91_add_device_rtc(void)
Andrew Victor3267c072006-04-02 17:15:51 +0100706{
707 platform_device_register(&at91rm9200_rtc_device);
708}
709#else
Andrew Victor2e836402006-06-19 16:31:55 +0100710static void __init at91_add_device_rtc(void) {}
711#endif
712
713
714/* --------------------------------------------------------------------
715 * Watchdog
716 * -------------------------------------------------------------------- */
717
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100718#if defined(CONFIG_AT91RM9200_WATCHDOG) || defined(CONFIG_AT91RM9200_WATCHDOG_MODULE)
Andrew Victor2e836402006-06-19 16:31:55 +0100719static struct platform_device at91rm9200_wdt_device = {
720 .name = "at91_wdt",
721 .id = -1,
722 .num_resources = 0,
723};
724
725static void __init at91_add_device_watchdog(void)
726{
727 platform_device_register(&at91rm9200_wdt_device);
728}
729#else
730static void __init at91_add_device_watchdog(void) {}
Andrew Victor3267c072006-04-02 17:15:51 +0100731#endif
732
733
734/* --------------------------------------------------------------------
Andrew Victorbfbc3262008-01-23 09:18:06 +0100735 * SSC -- Synchronous Serial Controller
736 * -------------------------------------------------------------------- */
737
738#if defined(CONFIG_ATMEL_SSC) || defined(CONFIG_ATMEL_SSC_MODULE)
739static u64 ssc0_dmamask = DMA_BIT_MASK(32);
740
741static struct resource ssc0_resources[] = {
742 [0] = {
743 .start = AT91RM9200_BASE_SSC0,
744 .end = AT91RM9200_BASE_SSC0 + SZ_16K - 1,
745 .flags = IORESOURCE_MEM,
746 },
747 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200748 .start = NR_IRQS_LEGACY + AT91RM9200_ID_SSC0,
749 .end = NR_IRQS_LEGACY + AT91RM9200_ID_SSC0,
Andrew Victorbfbc3262008-01-23 09:18:06 +0100750 .flags = IORESOURCE_IRQ,
751 },
752};
753
754static struct platform_device at91rm9200_ssc0_device = {
755 .name = "ssc",
756 .id = 0,
757 .dev = {
758 .dma_mask = &ssc0_dmamask,
759 .coherent_dma_mask = DMA_BIT_MASK(32),
760 },
761 .resource = ssc0_resources,
762 .num_resources = ARRAY_SIZE(ssc0_resources),
763};
764
765static inline void configure_ssc0_pins(unsigned pins)
766{
767 if (pins & ATMEL_SSC_TF)
768 at91_set_A_periph(AT91_PIN_PB0, 1);
769 if (pins & ATMEL_SSC_TK)
770 at91_set_A_periph(AT91_PIN_PB1, 1);
771 if (pins & ATMEL_SSC_TD)
772 at91_set_A_periph(AT91_PIN_PB2, 1);
773 if (pins & ATMEL_SSC_RD)
774 at91_set_A_periph(AT91_PIN_PB3, 1);
775 if (pins & ATMEL_SSC_RK)
776 at91_set_A_periph(AT91_PIN_PB4, 1);
777 if (pins & ATMEL_SSC_RF)
778 at91_set_A_periph(AT91_PIN_PB5, 1);
779}
780
781static u64 ssc1_dmamask = DMA_BIT_MASK(32);
782
783static struct resource ssc1_resources[] = {
784 [0] = {
785 .start = AT91RM9200_BASE_SSC1,
786 .end = AT91RM9200_BASE_SSC1 + SZ_16K - 1,
787 .flags = IORESOURCE_MEM,
788 },
789 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200790 .start = NR_IRQS_LEGACY + AT91RM9200_ID_SSC1,
791 .end = NR_IRQS_LEGACY + AT91RM9200_ID_SSC1,
Andrew Victorbfbc3262008-01-23 09:18:06 +0100792 .flags = IORESOURCE_IRQ,
793 },
794};
795
796static struct platform_device at91rm9200_ssc1_device = {
797 .name = "ssc",
798 .id = 1,
799 .dev = {
800 .dma_mask = &ssc1_dmamask,
801 .coherent_dma_mask = DMA_BIT_MASK(32),
802 },
803 .resource = ssc1_resources,
804 .num_resources = ARRAY_SIZE(ssc1_resources),
805};
806
807static inline void configure_ssc1_pins(unsigned pins)
808{
809 if (pins & ATMEL_SSC_TF)
810 at91_set_A_periph(AT91_PIN_PB6, 1);
811 if (pins & ATMEL_SSC_TK)
812 at91_set_A_periph(AT91_PIN_PB7, 1);
813 if (pins & ATMEL_SSC_TD)
814 at91_set_A_periph(AT91_PIN_PB8, 1);
815 if (pins & ATMEL_SSC_RD)
816 at91_set_A_periph(AT91_PIN_PB9, 1);
817 if (pins & ATMEL_SSC_RK)
818 at91_set_A_periph(AT91_PIN_PB10, 1);
819 if (pins & ATMEL_SSC_RF)
820 at91_set_A_periph(AT91_PIN_PB11, 1);
821}
822
823static u64 ssc2_dmamask = DMA_BIT_MASK(32);
824
825static struct resource ssc2_resources[] = {
826 [0] = {
827 .start = AT91RM9200_BASE_SSC2,
828 .end = AT91RM9200_BASE_SSC2 + SZ_16K - 1,
829 .flags = IORESOURCE_MEM,
830 },
831 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200832 .start = NR_IRQS_LEGACY + AT91RM9200_ID_SSC2,
833 .end = NR_IRQS_LEGACY + AT91RM9200_ID_SSC2,
Andrew Victorbfbc3262008-01-23 09:18:06 +0100834 .flags = IORESOURCE_IRQ,
835 },
836};
837
838static struct platform_device at91rm9200_ssc2_device = {
839 .name = "ssc",
840 .id = 2,
841 .dev = {
842 .dma_mask = &ssc2_dmamask,
843 .coherent_dma_mask = DMA_BIT_MASK(32),
844 },
845 .resource = ssc2_resources,
846 .num_resources = ARRAY_SIZE(ssc2_resources),
847};
848
849static inline void configure_ssc2_pins(unsigned pins)
850{
851 if (pins & ATMEL_SSC_TF)
852 at91_set_A_periph(AT91_PIN_PB12, 1);
853 if (pins & ATMEL_SSC_TK)
854 at91_set_A_periph(AT91_PIN_PB13, 1);
855 if (pins & ATMEL_SSC_TD)
856 at91_set_A_periph(AT91_PIN_PB14, 1);
857 if (pins & ATMEL_SSC_RD)
858 at91_set_A_periph(AT91_PIN_PB15, 1);
859 if (pins & ATMEL_SSC_RK)
860 at91_set_A_periph(AT91_PIN_PB16, 1);
861 if (pins & ATMEL_SSC_RF)
862 at91_set_A_periph(AT91_PIN_PB17, 1);
863}
864
865/*
866 * SSC controllers are accessed through library code, instead of any
867 * kind of all-singing/all-dancing driver. For example one could be
868 * used by a particular I2S audio codec's driver, while another one
869 * on the same system might be used by a custom data capture driver.
870 */
871void __init at91_add_device_ssc(unsigned id, unsigned pins)
872{
873 struct platform_device *pdev;
874
875 /*
876 * NOTE: caller is responsible for passing information matching
877 * "pins" to whatever will be using each particular controller.
878 */
879 switch (id) {
880 case AT91RM9200_ID_SSC0:
881 pdev = &at91rm9200_ssc0_device;
882 configure_ssc0_pins(pins);
Andrew Victorbfbc3262008-01-23 09:18:06 +0100883 break;
884 case AT91RM9200_ID_SSC1:
885 pdev = &at91rm9200_ssc1_device;
886 configure_ssc1_pins(pins);
Andrew Victorbfbc3262008-01-23 09:18:06 +0100887 break;
888 case AT91RM9200_ID_SSC2:
889 pdev = &at91rm9200_ssc2_device;
890 configure_ssc2_pins(pins);
Andrew Victorbfbc3262008-01-23 09:18:06 +0100891 break;
892 default:
893 return;
894 }
895
896 platform_device_register(pdev);
897}
898
899#else
900void __init at91_add_device_ssc(unsigned id, unsigned pins) {}
901#endif
902
903
904/* --------------------------------------------------------------------
Andrew Victor2e836402006-06-19 16:31:55 +0100905 * UART
906 * -------------------------------------------------------------------- */
907
Haavard Skinnemoen749c4e62006-10-04 16:02:02 +0200908#if defined(CONFIG_SERIAL_ATMEL)
Andrew Victor2e836402006-06-19 16:31:55 +0100909static struct resource dbgu_resources[] = {
910 [0] = {
Jean-Christophe PLAGNIOL-VILLARD13079a72011-11-02 01:43:31 +0800911 .start = AT91RM9200_BASE_DBGU,
912 .end = AT91RM9200_BASE_DBGU + SZ_512 - 1,
Andrew Victor2e836402006-06-19 16:31:55 +0100913 .flags = IORESOURCE_MEM,
914 },
915 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200916 .start = NR_IRQS_LEGACY + AT91_ID_SYS,
917 .end = NR_IRQS_LEGACY + AT91_ID_SYS,
Andrew Victor2e836402006-06-19 16:31:55 +0100918 .flags = IORESOURCE_IRQ,
919 },
920};
921
Haavard Skinnemoen73e27982006-10-04 16:02:04 +0200922static struct atmel_uart_data dbgu_data = {
Andrew Victor2e836402006-06-19 16:31:55 +0100923 .use_dma_tx = 0,
924 .use_dma_rx = 0, /* DBGU not capable of receive DMA */
925};
926
Andrew Victorc6686ff2008-01-23 09:13:53 +0100927static u64 dbgu_dmamask = DMA_BIT_MASK(32);
928
Andrew Victor2e836402006-06-19 16:31:55 +0100929static struct platform_device at91rm9200_dbgu_device = {
Haavard Skinnemoen1e8ea802006-10-04 16:02:03 +0200930 .name = "atmel_usart",
Andrew Victor2e836402006-06-19 16:31:55 +0100931 .id = 0,
932 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +0100933 .dma_mask = &dbgu_dmamask,
934 .coherent_dma_mask = DMA_BIT_MASK(32),
935 .platform_data = &dbgu_data,
Andrew Victor2e836402006-06-19 16:31:55 +0100936 },
937 .resource = dbgu_resources,
938 .num_resources = ARRAY_SIZE(dbgu_resources),
939};
940
941static inline void configure_dbgu_pins(void)
942{
943 at91_set_A_periph(AT91_PIN_PA30, 0); /* DRXD */
944 at91_set_A_periph(AT91_PIN_PA31, 1); /* DTXD */
945}
946
947static struct resource uart0_resources[] = {
948 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +0100949 .start = AT91RM9200_BASE_US0,
950 .end = AT91RM9200_BASE_US0 + SZ_16K - 1,
Andrew Victor2e836402006-06-19 16:31:55 +0100951 .flags = IORESOURCE_MEM,
952 },
953 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +0200954 .start = NR_IRQS_LEGACY + AT91RM9200_ID_US0,
955 .end = NR_IRQS_LEGACY + AT91RM9200_ID_US0,
Andrew Victor2e836402006-06-19 16:31:55 +0100956 .flags = IORESOURCE_IRQ,
957 },
958};
959
Haavard Skinnemoen73e27982006-10-04 16:02:04 +0200960static struct atmel_uart_data uart0_data = {
Andrew Victor2e836402006-06-19 16:31:55 +0100961 .use_dma_tx = 1,
962 .use_dma_rx = 1,
963};
964
Andrew Victorc6686ff2008-01-23 09:13:53 +0100965static u64 uart0_dmamask = DMA_BIT_MASK(32);
966
Andrew Victor2e836402006-06-19 16:31:55 +0100967static struct platform_device at91rm9200_uart0_device = {
Haavard Skinnemoen1e8ea802006-10-04 16:02:03 +0200968 .name = "atmel_usart",
Andrew Victor2e836402006-06-19 16:31:55 +0100969 .id = 1,
970 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +0100971 .dma_mask = &uart0_dmamask,
972 .coherent_dma_mask = DMA_BIT_MASK(32),
973 .platform_data = &uart0_data,
Andrew Victor2e836402006-06-19 16:31:55 +0100974 },
975 .resource = uart0_resources,
976 .num_resources = ARRAY_SIZE(uart0_resources),
977};
978
Andrew Victorc8f385a2008-01-23 09:25:15 +0100979static inline void configure_usart0_pins(unsigned pins)
Andrew Victor2e836402006-06-19 16:31:55 +0100980{
981 at91_set_A_periph(AT91_PIN_PA17, 1); /* TXD0 */
982 at91_set_A_periph(AT91_PIN_PA18, 0); /* RXD0 */
Andrew Victor2e836402006-06-19 16:31:55 +0100983
Andrew Victorc8f385a2008-01-23 09:25:15 +0100984 if (pins & ATMEL_UART_CTS)
985 at91_set_A_periph(AT91_PIN_PA20, 0); /* CTS0 */
986
987 if (pins & ATMEL_UART_RTS) {
988 /*
989 * AT91RM9200 Errata #39 - RTS0 is not internally connected to PA21.
990 * We need to drive the pin manually. Default is off (RTS is active low).
991 */
992 at91_set_gpio_output(AT91_PIN_PA21, 1);
993 }
Andrew Victor2e836402006-06-19 16:31:55 +0100994}
995
996static struct resource uart1_resources[] = {
997 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +0100998 .start = AT91RM9200_BASE_US1,
999 .end = AT91RM9200_BASE_US1 + SZ_16K - 1,
Andrew Victor2e836402006-06-19 16:31:55 +01001000 .flags = IORESOURCE_MEM,
1001 },
1002 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +02001003 .start = NR_IRQS_LEGACY + AT91RM9200_ID_US1,
1004 .end = NR_IRQS_LEGACY + AT91RM9200_ID_US1,
Andrew Victor2e836402006-06-19 16:31:55 +01001005 .flags = IORESOURCE_IRQ,
1006 },
1007};
1008
Haavard Skinnemoen73e27982006-10-04 16:02:04 +02001009static struct atmel_uart_data uart1_data = {
Andrew Victor2e836402006-06-19 16:31:55 +01001010 .use_dma_tx = 1,
1011 .use_dma_rx = 1,
1012};
1013
Andrew Victorc6686ff2008-01-23 09:13:53 +01001014static u64 uart1_dmamask = DMA_BIT_MASK(32);
1015
Andrew Victor2e836402006-06-19 16:31:55 +01001016static struct platform_device at91rm9200_uart1_device = {
Haavard Skinnemoen1e8ea802006-10-04 16:02:03 +02001017 .name = "atmel_usart",
Andrew Victor2e836402006-06-19 16:31:55 +01001018 .id = 2,
1019 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +01001020 .dma_mask = &uart1_dmamask,
1021 .coherent_dma_mask = DMA_BIT_MASK(32),
1022 .platform_data = &uart1_data,
Andrew Victor2e836402006-06-19 16:31:55 +01001023 },
1024 .resource = uart1_resources,
1025 .num_resources = ARRAY_SIZE(uart1_resources),
1026};
1027
Andrew Victorc8f385a2008-01-23 09:25:15 +01001028static inline void configure_usart1_pins(unsigned pins)
Andrew Victor2e836402006-06-19 16:31:55 +01001029{
Andrew Victor2e836402006-06-19 16:31:55 +01001030 at91_set_A_periph(AT91_PIN_PB20, 1); /* TXD1 */
1031 at91_set_A_periph(AT91_PIN_PB21, 0); /* RXD1 */
Andrew Victorc8f385a2008-01-23 09:25:15 +01001032
1033 if (pins & ATMEL_UART_RI)
1034 at91_set_A_periph(AT91_PIN_PB18, 0); /* RI1 */
1035 if (pins & ATMEL_UART_DTR)
1036 at91_set_A_periph(AT91_PIN_PB19, 0); /* DTR1 */
1037 if (pins & ATMEL_UART_DCD)
1038 at91_set_A_periph(AT91_PIN_PB23, 0); /* DCD1 */
1039 if (pins & ATMEL_UART_CTS)
1040 at91_set_A_periph(AT91_PIN_PB24, 0); /* CTS1 */
1041 if (pins & ATMEL_UART_DSR)
1042 at91_set_A_periph(AT91_PIN_PB25, 0); /* DSR1 */
1043 if (pins & ATMEL_UART_RTS)
1044 at91_set_A_periph(AT91_PIN_PB26, 0); /* RTS1 */
Andrew Victor2e836402006-06-19 16:31:55 +01001045}
1046
1047static struct resource uart2_resources[] = {
1048 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +01001049 .start = AT91RM9200_BASE_US2,
1050 .end = AT91RM9200_BASE_US2 + SZ_16K - 1,
Andrew Victor2e836402006-06-19 16:31:55 +01001051 .flags = IORESOURCE_MEM,
1052 },
1053 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +02001054 .start = NR_IRQS_LEGACY + AT91RM9200_ID_US2,
1055 .end = NR_IRQS_LEGACY + AT91RM9200_ID_US2,
Andrew Victor2e836402006-06-19 16:31:55 +01001056 .flags = IORESOURCE_IRQ,
1057 },
1058};
1059
Haavard Skinnemoen73e27982006-10-04 16:02:04 +02001060static struct atmel_uart_data uart2_data = {
Andrew Victor2e836402006-06-19 16:31:55 +01001061 .use_dma_tx = 1,
1062 .use_dma_rx = 1,
1063};
1064
Andrew Victorc6686ff2008-01-23 09:13:53 +01001065static u64 uart2_dmamask = DMA_BIT_MASK(32);
1066
Andrew Victor2e836402006-06-19 16:31:55 +01001067static struct platform_device at91rm9200_uart2_device = {
Haavard Skinnemoen1e8ea802006-10-04 16:02:03 +02001068 .name = "atmel_usart",
Andrew Victor2e836402006-06-19 16:31:55 +01001069 .id = 3,
1070 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +01001071 .dma_mask = &uart2_dmamask,
1072 .coherent_dma_mask = DMA_BIT_MASK(32),
1073 .platform_data = &uart2_data,
Andrew Victor2e836402006-06-19 16:31:55 +01001074 },
1075 .resource = uart2_resources,
1076 .num_resources = ARRAY_SIZE(uart2_resources),
1077};
1078
Andrew Victorc8f385a2008-01-23 09:25:15 +01001079static inline void configure_usart2_pins(unsigned pins)
Andrew Victor2e836402006-06-19 16:31:55 +01001080{
1081 at91_set_A_periph(AT91_PIN_PA22, 0); /* RXD2 */
1082 at91_set_A_periph(AT91_PIN_PA23, 1); /* TXD2 */
Andrew Victorc8f385a2008-01-23 09:25:15 +01001083
1084 if (pins & ATMEL_UART_CTS)
1085 at91_set_B_periph(AT91_PIN_PA30, 0); /* CTS2 */
1086 if (pins & ATMEL_UART_RTS)
1087 at91_set_B_periph(AT91_PIN_PA31, 0); /* RTS2 */
Andrew Victor2e836402006-06-19 16:31:55 +01001088}
1089
1090static struct resource uart3_resources[] = {
1091 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +01001092 .start = AT91RM9200_BASE_US3,
1093 .end = AT91RM9200_BASE_US3 + SZ_16K - 1,
Andrew Victor2e836402006-06-19 16:31:55 +01001094 .flags = IORESOURCE_MEM,
1095 },
1096 [1] = {
Ludovic Desroches8fe82a52012-06-21 14:47:27 +02001097 .start = NR_IRQS_LEGACY + AT91RM9200_ID_US3,
1098 .end = NR_IRQS_LEGACY + AT91RM9200_ID_US3,
Andrew Victor2e836402006-06-19 16:31:55 +01001099 .flags = IORESOURCE_IRQ,
1100 },
1101};
1102
Haavard Skinnemoen73e27982006-10-04 16:02:04 +02001103static struct atmel_uart_data uart3_data = {
Andrew Victor2e836402006-06-19 16:31:55 +01001104 .use_dma_tx = 1,
1105 .use_dma_rx = 1,
1106};
1107
Andrew Victorc6686ff2008-01-23 09:13:53 +01001108static u64 uart3_dmamask = DMA_BIT_MASK(32);
1109
Andrew Victor2e836402006-06-19 16:31:55 +01001110static struct platform_device at91rm9200_uart3_device = {
Haavard Skinnemoen1e8ea802006-10-04 16:02:03 +02001111 .name = "atmel_usart",
Andrew Victor2e836402006-06-19 16:31:55 +01001112 .id = 4,
1113 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +01001114 .dma_mask = &uart3_dmamask,
1115 .coherent_dma_mask = DMA_BIT_MASK(32),
1116 .platform_data = &uart3_data,
Andrew Victor2e836402006-06-19 16:31:55 +01001117 },
1118 .resource = uart3_resources,
1119 .num_resources = ARRAY_SIZE(uart3_resources),
1120};
1121
Andrew Victorc8f385a2008-01-23 09:25:15 +01001122static inline void configure_usart3_pins(unsigned pins)
Andrew Victor2e836402006-06-19 16:31:55 +01001123{
1124 at91_set_B_periph(AT91_PIN_PA5, 1); /* TXD3 */
1125 at91_set_B_periph(AT91_PIN_PA6, 0); /* RXD3 */
Andrew Victorc8f385a2008-01-23 09:25:15 +01001126
1127 if (pins & ATMEL_UART_CTS)
1128 at91_set_B_periph(AT91_PIN_PB1, 0); /* CTS3 */
1129 if (pins & ATMEL_UART_RTS)
1130 at91_set_B_periph(AT91_PIN_PB0, 0); /* RTS3 */
Andrew Victor2e836402006-06-19 16:31:55 +01001131}
1132
Andrew Victor11aadac2008-04-15 21:16:38 +01001133static struct platform_device *__initdata at91_uarts[ATMEL_MAX_UART]; /* the UARTs to use */
Andrew Victor2e836402006-06-19 16:31:55 +01001134
Andrew Victorc8f385a2008-01-23 09:25:15 +01001135void __init at91_register_uart(unsigned id, unsigned portnr, unsigned pins)
1136{
1137 struct platform_device *pdev;
Jean-Christophe PLAGNIOL-VILLARD2b348e22011-04-10 14:10:05 +08001138 struct atmel_uart_data *pdata;
Andrew Victorc8f385a2008-01-23 09:25:15 +01001139
1140 switch (id) {
1141 case 0: /* DBGU */
1142 pdev = &at91rm9200_dbgu_device;
1143 configure_dbgu_pins();
Andrew Victorc8f385a2008-01-23 09:25:15 +01001144 break;
1145 case AT91RM9200_ID_US0:
1146 pdev = &at91rm9200_uart0_device;
1147 configure_usart0_pins(pins);
Andrew Victorc8f385a2008-01-23 09:25:15 +01001148 break;
1149 case AT91RM9200_ID_US1:
1150 pdev = &at91rm9200_uart1_device;
1151 configure_usart1_pins(pins);
Andrew Victorc8f385a2008-01-23 09:25:15 +01001152 break;
1153 case AT91RM9200_ID_US2:
1154 pdev = &at91rm9200_uart2_device;
1155 configure_usart2_pins(pins);
Andrew Victorc8f385a2008-01-23 09:25:15 +01001156 break;
1157 case AT91RM9200_ID_US3:
1158 pdev = &at91rm9200_uart3_device;
1159 configure_usart3_pins(pins);
Andrew Victorc8f385a2008-01-23 09:25:15 +01001160 break;
1161 default:
1162 return;
1163 }
Jean-Christophe PLAGNIOL-VILLARD2b348e22011-04-10 14:10:05 +08001164 pdata = pdev->dev.platform_data;
1165 pdata->num = portnr; /* update to mapped ID */
Andrew Victorc8f385a2008-01-23 09:25:15 +01001166
1167 if (portnr < ATMEL_MAX_UART)
1168 at91_uarts[portnr] = pdev;
1169}
1170
Andrew Victor2e836402006-06-19 16:31:55 +01001171void __init at91_add_device_serial(void)
1172{
1173 int i;
1174
Haavard Skinnemoen73e27982006-10-04 16:02:04 +02001175 for (i = 0; i < ATMEL_MAX_UART; i++) {
Andrew Victor2e836402006-06-19 16:31:55 +01001176 if (at91_uarts[i])
1177 platform_device_register(at91_uarts[i]);
1178 }
1179}
1180#else
Andrew Victorc8f385a2008-01-23 09:25:15 +01001181void __init at91_register_uart(unsigned id, unsigned portnr, unsigned pins) {}
Andrew Victor2e836402006-06-19 16:31:55 +01001182void __init at91_add_device_serial(void) {}
1183#endif
1184
1185
SAN People73a59c12006-01-09 17:05:41 +00001186/* -------------------------------------------------------------------- */
Andrew Victor2e836402006-06-19 16:31:55 +01001187
1188/*
1189 * These devices are always present and don't need any board-specific
1190 * setup.
1191 */
1192static int __init at91_add_standard_devices(void)
1193{
1194 at91_add_device_rtc();
1195 at91_add_device_watchdog();
Andrew Victore5f40bf2008-04-02 21:58:00 +01001196 at91_add_device_tc();
Andrew Victor2e836402006-06-19 16:31:55 +01001197 return 0;
1198}
1199
1200arch_initcall(at91_add_standard_devices);