blob: 1007ba8ec1313400521948506b1f17018ec41803 [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>
SAN People73a59c12006-01-09 17:05:41 +000024
Andrew Victor2e836402006-06-19 16:31:55 +010025#include "generic.h"
26
SAN People73a59c12006-01-09 17:05:41 +000027
28/* --------------------------------------------------------------------
29 * USB Host
30 * -------------------------------------------------------------------- */
31
32#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +010033static u64 ohci_dmamask = DMA_BIT_MASK(32);
SAN People73a59c12006-01-09 17:05:41 +000034static struct at91_usbh_data usbh_data;
35
Andrew Victor69c5ecc2006-12-01 15:53:20 +010036static struct resource usbh_resources[] = {
SAN People73a59c12006-01-09 17:05:41 +000037 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +010038 .start = AT91RM9200_UHP_BASE,
39 .end = AT91RM9200_UHP_BASE + SZ_1M - 1,
SAN People73a59c12006-01-09 17:05:41 +000040 .flags = IORESOURCE_MEM,
41 },
42 [1] = {
Andrew Victor72729912006-09-27 09:44:11 +010043 .start = AT91RM9200_ID_UHP,
44 .end = AT91RM9200_ID_UHP,
SAN People73a59c12006-01-09 17:05:41 +000045 .flags = IORESOURCE_IRQ,
46 },
47};
48
49static struct platform_device at91rm9200_usbh_device = {
Andrew Victor2e836402006-06-19 16:31:55 +010050 .name = "at91_ohci",
SAN People73a59c12006-01-09 17:05:41 +000051 .id = -1,
52 .dev = {
53 .dma_mask = &ohci_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +010054 .coherent_dma_mask = DMA_BIT_MASK(32),
SAN People73a59c12006-01-09 17:05:41 +000055 .platform_data = &usbh_data,
56 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +010057 .resource = usbh_resources,
58 .num_resources = ARRAY_SIZE(usbh_resources),
SAN People73a59c12006-01-09 17:05:41 +000059};
60
61void __init at91_add_device_usbh(struct at91_usbh_data *data)
62{
Thomas Petazzoni1fcaea72011-07-13 11:29:18 +020063 int i;
64
SAN People73a59c12006-01-09 17:05:41 +000065 if (!data)
66 return;
67
Thomas Petazzoni1fcaea72011-07-13 11:29:18 +020068 /* Enable overcurrent notification */
69 for (i = 0; i < data->ports; i++) {
70 if (data->overcurrent_pin[i])
71 at91_set_gpio_input(data->overcurrent_pin[i], 1);
72 }
73
SAN People73a59c12006-01-09 17:05:41 +000074 usbh_data = *data;
75 platform_device_register(&at91rm9200_usbh_device);
76}
77#else
78void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
79#endif
80
81
82/* --------------------------------------------------------------------
83 * USB Device (Gadget)
84 * -------------------------------------------------------------------- */
85
86#ifdef CONFIG_USB_GADGET_AT91
87static struct at91_udc_data udc_data;
88
Andrew Victor69c5ecc2006-12-01 15:53:20 +010089static struct resource udc_resources[] = {
Andrew Victor2e836402006-06-19 16:31:55 +010090 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +010091 .start = AT91RM9200_BASE_UDP,
92 .end = AT91RM9200_BASE_UDP + SZ_16K - 1,
SAN People73a59c12006-01-09 17:05:41 +000093 .flags = IORESOURCE_MEM,
Andrew Victor2e836402006-06-19 16:31:55 +010094 },
95 [1] = {
Andrew Victor72729912006-09-27 09:44:11 +010096 .start = AT91RM9200_ID_UDP,
97 .end = AT91RM9200_ID_UDP,
Andrew Victor2e836402006-06-19 16:31:55 +010098 .flags = IORESOURCE_IRQ,
99 },
SAN People73a59c12006-01-09 17:05:41 +0000100};
101
102static struct platform_device at91rm9200_udc_device = {
103 .name = "at91_udc",
104 .id = -1,
105 .dev = {
106 .platform_data = &udc_data,
107 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100108 .resource = udc_resources,
109 .num_resources = ARRAY_SIZE(udc_resources),
SAN People73a59c12006-01-09 17:05:41 +0000110};
111
112void __init at91_add_device_udc(struct at91_udc_data *data)
113{
114 if (!data)
115 return;
116
117 if (data->vbus_pin) {
118 at91_set_gpio_input(data->vbus_pin, 0);
119 at91_set_deglitch(data->vbus_pin, 1);
120 }
Andrew Victor2e836402006-06-19 16:31:55 +0100121 if (data->pullup_pin)
SAN People73a59c12006-01-09 17:05:41 +0000122 at91_set_gpio_output(data->pullup_pin, 0);
SAN People73a59c12006-01-09 17:05:41 +0000123
124 udc_data = *data;
125 platform_device_register(&at91rm9200_udc_device);
126}
127#else
128void __init at91_add_device_udc(struct at91_udc_data *data) {}
129#endif
130
131
132/* --------------------------------------------------------------------
133 * Ethernet
134 * -------------------------------------------------------------------- */
135
136#if defined(CONFIG_ARM_AT91_ETHER) || defined(CONFIG_ARM_AT91_ETHER_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +0100137static u64 eth_dmamask = DMA_BIT_MASK(32);
SAN People73a59c12006-01-09 17:05:41 +0000138static struct at91_eth_data eth_data;
139
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100140static struct resource eth_resources[] = {
Andrew Victor3267c072006-04-02 17:15:51 +0100141 [0] = {
Andrew Victor1f51c102006-09-28 16:26:47 +0100142 .start = AT91_VA_BASE_EMAC,
143 .end = AT91_VA_BASE_EMAC + SZ_16K - 1,
Andrew Victor3267c072006-04-02 17:15:51 +0100144 .flags = IORESOURCE_MEM,
145 },
146 [1] = {
Andrew Victor72729912006-09-27 09:44:11 +0100147 .start = AT91RM9200_ID_EMAC,
148 .end = AT91RM9200_ID_EMAC,
Andrew Victor3267c072006-04-02 17:15:51 +0100149 .flags = IORESOURCE_IRQ,
150 },
151};
152
SAN People73a59c12006-01-09 17:05:41 +0000153static struct platform_device at91rm9200_eth_device = {
154 .name = "at91_ether",
155 .id = -1,
156 .dev = {
157 .dma_mask = &eth_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100158 .coherent_dma_mask = DMA_BIT_MASK(32),
SAN People73a59c12006-01-09 17:05:41 +0000159 .platform_data = &eth_data,
160 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100161 .resource = eth_resources,
162 .num_resources = ARRAY_SIZE(eth_resources),
SAN People73a59c12006-01-09 17:05:41 +0000163};
164
165void __init at91_add_device_eth(struct at91_eth_data *data)
166{
167 if (!data)
168 return;
169
170 if (data->phy_irq_pin) {
171 at91_set_gpio_input(data->phy_irq_pin, 0);
172 at91_set_deglitch(data->phy_irq_pin, 1);
173 }
174
175 /* Pins used for MII and RMII */
176 at91_set_A_periph(AT91_PIN_PA16, 0); /* EMDIO */
177 at91_set_A_periph(AT91_PIN_PA15, 0); /* EMDC */
178 at91_set_A_periph(AT91_PIN_PA14, 0); /* ERXER */
179 at91_set_A_periph(AT91_PIN_PA13, 0); /* ERX1 */
180 at91_set_A_periph(AT91_PIN_PA12, 0); /* ERX0 */
181 at91_set_A_periph(AT91_PIN_PA11, 0); /* ECRS_ECRSDV */
182 at91_set_A_periph(AT91_PIN_PA10, 0); /* ETX1 */
183 at91_set_A_periph(AT91_PIN_PA9, 0); /* ETX0 */
184 at91_set_A_periph(AT91_PIN_PA8, 0); /* ETXEN */
185 at91_set_A_periph(AT91_PIN_PA7, 0); /* ETXCK_EREFCK */
186
187 if (!data->is_rmii) {
188 at91_set_B_periph(AT91_PIN_PB19, 0); /* ERXCK */
189 at91_set_B_periph(AT91_PIN_PB18, 0); /* ECOL */
190 at91_set_B_periph(AT91_PIN_PB17, 0); /* ERXDV */
191 at91_set_B_periph(AT91_PIN_PB16, 0); /* ERX3 */
192 at91_set_B_periph(AT91_PIN_PB15, 0); /* ERX2 */
193 at91_set_B_periph(AT91_PIN_PB14, 0); /* ETXER */
194 at91_set_B_periph(AT91_PIN_PB13, 0); /* ETX3 */
195 at91_set_B_periph(AT91_PIN_PB12, 0); /* ETX2 */
196 }
197
198 eth_data = *data;
199 platform_device_register(&at91rm9200_eth_device);
200}
201#else
202void __init at91_add_device_eth(struct at91_eth_data *data) {}
203#endif
204
205
206/* --------------------------------------------------------------------
207 * Compact Flash / PCMCIA
208 * -------------------------------------------------------------------- */
209
210#if defined(CONFIG_AT91_CF) || defined(CONFIG_AT91_CF_MODULE)
211static struct at91_cf_data cf_data;
212
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100213#define CF_BASE AT91_CHIPSELECT_4
214
215static struct resource cf_resources[] = {
David Brownell2c536202006-04-14 18:05:38 -0700216 [0] = {
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100217 .start = CF_BASE,
Andrew Victor2e836402006-06-19 16:31:55 +0100218 /* ties up CS4, CS5 and CS6 */
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100219 .end = CF_BASE + (0x30000000 - 1),
David Brownell2c536202006-04-14 18:05:38 -0700220 .flags = IORESOURCE_MEM | IORESOURCE_MEM_8AND16BIT,
221 },
222};
223
SAN People73a59c12006-01-09 17:05:41 +0000224static struct platform_device at91rm9200_cf_device = {
225 .name = "at91_cf",
226 .id = -1,
227 .dev = {
228 .platform_data = &cf_data,
229 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100230 .resource = cf_resources,
231 .num_resources = ARRAY_SIZE(cf_resources),
SAN People73a59c12006-01-09 17:05:41 +0000232};
233
234void __init at91_add_device_cf(struct at91_cf_data *data)
235{
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100236 unsigned int csa;
237
SAN People73a59c12006-01-09 17:05:41 +0000238 if (!data)
239 return;
240
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100241 data->chipselect = 4; /* can only use EBI ChipSelect 4 */
242
243 /* CF takes over CS4, CS5, CS6 */
244 csa = at91_sys_read(AT91_EBI_CSA);
245 at91_sys_write(AT91_EBI_CSA, csa | AT91_EBI_CS4A_SMC_COMPACTFLASH);
246
247 /*
248 * Static memory controller timing adjustments.
249 * REVISIT: these timings are in terms of MCK cycles, so
250 * when MCK changes (cpufreq etc) so must these values...
251 */
252 at91_sys_write(AT91_SMC_CSR(4),
253 AT91_SMC_ACSS_STD
254 | AT91_SMC_DBW_16
255 | AT91_SMC_BAT
256 | AT91_SMC_WSEN
257 | AT91_SMC_NWS_(32) /* wait states */
258 | AT91_SMC_RWSETUP_(6) /* setup time */
259 | AT91_SMC_RWHOLD_(4) /* hold time */
260 );
261
SAN People73a59c12006-01-09 17:05:41 +0000262 /* input/irq */
263 if (data->irq_pin) {
264 at91_set_gpio_input(data->irq_pin, 1);
265 at91_set_deglitch(data->irq_pin, 1);
266 }
267 at91_set_gpio_input(data->det_pin, 1);
268 at91_set_deglitch(data->det_pin, 1);
269
270 /* outputs, initially off */
271 if (data->vcc_pin)
272 at91_set_gpio_output(data->vcc_pin, 0);
273 at91_set_gpio_output(data->rst_pin, 0);
274
Andrew Victor2e836402006-06-19 16:31:55 +0100275 /* force poweron defaults for these pins ... */
276 at91_set_A_periph(AT91_PIN_PC9, 0); /* A25/CFRNW */
277 at91_set_A_periph(AT91_PIN_PC10, 0); /* NCS4/CFCS */
278 at91_set_A_periph(AT91_PIN_PC11, 0); /* NCS5/CFCE1 */
279 at91_set_A_periph(AT91_PIN_PC12, 0); /* NCS6/CFCE2 */
280
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100281 /* nWAIT is _not_ a default setting */
Andrew Victora14d5272007-01-09 09:03:42 +0100282 at91_set_A_periph(AT91_PIN_PC6, 1); /* nWAIT */
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100283
SAN People73a59c12006-01-09 17:05:41 +0000284 cf_data = *data;
285 platform_device_register(&at91rm9200_cf_device);
286}
287#else
288void __init at91_add_device_cf(struct at91_cf_data *data) {}
289#endif
290
291
292/* --------------------------------------------------------------------
293 * MMC / SD
294 * -------------------------------------------------------------------- */
295
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100296#if defined(CONFIG_MMC_AT91) || defined(CONFIG_MMC_AT91_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +0100297static u64 mmc_dmamask = DMA_BIT_MASK(32);
SAN People73a59c12006-01-09 17:05:41 +0000298static struct at91_mmc_data mmc_data;
299
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100300static struct resource mmc_resources[] = {
Andrew Victor3267c072006-04-02 17:15:51 +0100301 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +0100302 .start = AT91RM9200_BASE_MCI,
303 .end = AT91RM9200_BASE_MCI + SZ_16K - 1,
SAN People73a59c12006-01-09 17:05:41 +0000304 .flags = IORESOURCE_MEM,
Andrew Victor3267c072006-04-02 17:15:51 +0100305 },
306 [1] = {
Andrew Victor72729912006-09-27 09:44:11 +0100307 .start = AT91RM9200_ID_MCI,
308 .end = AT91RM9200_ID_MCI,
Andrew Victor3267c072006-04-02 17:15:51 +0100309 .flags = IORESOURCE_IRQ,
310 },
SAN People73a59c12006-01-09 17:05:41 +0000311};
312
313static struct platform_device at91rm9200_mmc_device = {
Andrew Victor3267c072006-04-02 17:15:51 +0100314 .name = "at91_mci",
SAN People73a59c12006-01-09 17:05:41 +0000315 .id = -1,
316 .dev = {
317 .dma_mask = &mmc_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100318 .coherent_dma_mask = DMA_BIT_MASK(32),
SAN People73a59c12006-01-09 17:05:41 +0000319 .platform_data = &mmc_data,
320 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100321 .resource = mmc_resources,
322 .num_resources = ARRAY_SIZE(mmc_resources),
SAN People73a59c12006-01-09 17:05:41 +0000323};
324
Andrew Victord0760b32007-02-08 09:00:39 +0100325void __init at91_add_device_mmc(short mmc_id, struct at91_mmc_data *data)
SAN People73a59c12006-01-09 17:05:41 +0000326{
327 if (!data)
328 return;
329
330 /* input/irq */
331 if (data->det_pin) {
332 at91_set_gpio_input(data->det_pin, 1);
333 at91_set_deglitch(data->det_pin, 1);
334 }
335 if (data->wp_pin)
336 at91_set_gpio_input(data->wp_pin, 1);
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100337 if (data->vcc_pin)
338 at91_set_gpio_output(data->vcc_pin, 0);
SAN People73a59c12006-01-09 17:05:41 +0000339
340 /* CLK */
341 at91_set_A_periph(AT91_PIN_PA27, 0);
342
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100343 if (data->slot_b) {
SAN People73a59c12006-01-09 17:05:41 +0000344 /* CMD */
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100345 at91_set_B_periph(AT91_PIN_PA8, 1);
SAN People73a59c12006-01-09 17:05:41 +0000346
347 /* DAT0, maybe DAT1..DAT3 */
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100348 at91_set_B_periph(AT91_PIN_PA9, 1);
SAN People73a59c12006-01-09 17:05:41 +0000349 if (data->wire4) {
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100350 at91_set_B_periph(AT91_PIN_PA10, 1);
351 at91_set_B_periph(AT91_PIN_PA11, 1);
352 at91_set_B_periph(AT91_PIN_PA12, 1);
SAN People73a59c12006-01-09 17:05:41 +0000353 }
354 } else {
355 /* CMD */
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100356 at91_set_A_periph(AT91_PIN_PA28, 1);
SAN People73a59c12006-01-09 17:05:41 +0000357
358 /* DAT0, maybe DAT1..DAT3 */
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100359 at91_set_A_periph(AT91_PIN_PA29, 1);
SAN People73a59c12006-01-09 17:05:41 +0000360 if (data->wire4) {
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100361 at91_set_B_periph(AT91_PIN_PB3, 1);
362 at91_set_B_periph(AT91_PIN_PB4, 1);
363 at91_set_B_periph(AT91_PIN_PB5, 1);
SAN People73a59c12006-01-09 17:05:41 +0000364 }
365 }
366
367 mmc_data = *data;
368 platform_device_register(&at91rm9200_mmc_device);
369}
370#else
Andrew Victord0760b32007-02-08 09:00:39 +0100371void __init at91_add_device_mmc(short mmc_id, struct at91_mmc_data *data) {}
SAN People73a59c12006-01-09 17:05:41 +0000372#endif
373
Andrew Victor2e836402006-06-19 16:31:55 +0100374
Andrew Victorcc2832a2006-04-02 17:15:48 +0100375/* --------------------------------------------------------------------
Andrew Victor3267c072006-04-02 17:15:51 +0100376 * NAND / SmartMedia
377 * -------------------------------------------------------------------- */
378
Pieter du Preezf6ed6f72008-08-01 10:06:40 +0100379#if defined(CONFIG_MTD_NAND_ATMEL) || defined(CONFIG_MTD_NAND_ATMEL_MODULE)
HÃ¥vard Skinnemoen3c3796c2008-06-06 18:04:53 +0200380static struct atmel_nand_data nand_data;
Andrew Victor3267c072006-04-02 17:15:51 +0100381
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100382#define NAND_BASE AT91_CHIPSELECT_3
383
384static struct resource nand_resources[] = {
Andrew Victor3267c072006-04-02 17:15:51 +0100385 {
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100386 .start = NAND_BASE,
Andrew Victor22823552008-01-23 09:21:02 +0100387 .end = NAND_BASE + SZ_256M - 1,
Andrew Victor3267c072006-04-02 17:15:51 +0100388 .flags = IORESOURCE_MEM,
389 }
390};
391
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100392static struct platform_device at91rm9200_nand_device = {
HÃ¥vard Skinnemoen3c3796c2008-06-06 18:04:53 +0200393 .name = "atmel_nand",
Andrew Victor3267c072006-04-02 17:15:51 +0100394 .id = -1,
395 .dev = {
396 .platform_data = &nand_data,
397 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100398 .resource = nand_resources,
399 .num_resources = ARRAY_SIZE(nand_resources),
Andrew Victor3267c072006-04-02 17:15:51 +0100400};
401
HÃ¥vard Skinnemoen3c3796c2008-06-06 18:04:53 +0200402void __init at91_add_device_nand(struct atmel_nand_data *data)
Andrew Victor3267c072006-04-02 17:15:51 +0100403{
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100404 unsigned int csa;
405
Andrew Victor3267c072006-04-02 17:15:51 +0100406 if (!data)
407 return;
408
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100409 /* enable the address range of CS3 */
410 csa = at91_sys_read(AT91_EBI_CSA);
411 at91_sys_write(AT91_EBI_CSA, csa | AT91_EBI_CS3A_SMC_SMARTMEDIA);
412
413 /* set the bus interface characteristics */
414 at91_sys_write(AT91_SMC_CSR(3), AT91_SMC_ACSS_STD | AT91_SMC_DBW_8 | AT91_SMC_WSEN
415 | AT91_SMC_NWS_(5)
416 | AT91_SMC_TDF_(1)
417 | AT91_SMC_RWSETUP_(0) /* tDS Data Set up Time 30 - ns */
418 | AT91_SMC_RWHOLD_(1) /* tDH Data Hold Time 20 - ns */
419 );
420
Andrew Victor3267c072006-04-02 17:15:51 +0100421 /* enable pin */
422 if (data->enable_pin)
423 at91_set_gpio_output(data->enable_pin, 1);
424
425 /* ready/busy pin */
426 if (data->rdy_pin)
427 at91_set_gpio_input(data->rdy_pin, 1);
428
429 /* card detect pin */
430 if (data->det_pin)
431 at91_set_gpio_input(data->det_pin, 1);
432
433 at91_set_A_periph(AT91_PIN_PC1, 0); /* SMOE */
434 at91_set_A_periph(AT91_PIN_PC3, 0); /* SMWE */
435
436 nand_data = *data;
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100437 platform_device_register(&at91rm9200_nand_device);
Andrew Victor3267c072006-04-02 17:15:51 +0100438}
439#else
HÃ¥vard Skinnemoen3c3796c2008-06-06 18:04:53 +0200440void __init at91_add_device_nand(struct atmel_nand_data *data) {}
Andrew Victor3267c072006-04-02 17:15:51 +0100441#endif
442
443
444/* --------------------------------------------------------------------
445 * TWI (i2c)
446 * -------------------------------------------------------------------- */
447
Andrew Victorf230d3f2007-11-19 13:47:20 +0100448/*
449 * Prefer the GPIO code since the TWI controller isn't robust
450 * (gets overruns and underruns under load) and can only issue
451 * repeated STARTs in one scenario (the driver doesn't yet handle them).
452 */
453#if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
454
455static struct i2c_gpio_platform_data pdata = {
456 .sda_pin = AT91_PIN_PA25,
457 .sda_is_open_drain = 1,
458 .scl_pin = AT91_PIN_PA26,
459 .scl_is_open_drain = 1,
460 .udelay = 2, /* ~100 kHz */
461};
462
463static struct platform_device at91rm9200_twi_device = {
464 .name = "i2c-gpio",
465 .id = -1,
466 .dev.platform_data = &pdata,
467};
468
469void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices)
470{
471 at91_set_GPIO_periph(AT91_PIN_PA25, 1); /* TWD (SDA) */
472 at91_set_multi_drive(AT91_PIN_PA25, 1);
473
474 at91_set_GPIO_periph(AT91_PIN_PA26, 1); /* TWCK (SCL) */
475 at91_set_multi_drive(AT91_PIN_PA26, 1);
476
477 i2c_register_board_info(0, devices, nr_devices);
478 platform_device_register(&at91rm9200_twi_device);
479}
480
481#elif defined(CONFIG_I2C_AT91) || defined(CONFIG_I2C_AT91_MODULE)
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100482
483static struct resource twi_resources[] = {
484 [0] = {
485 .start = AT91RM9200_BASE_TWI,
486 .end = AT91RM9200_BASE_TWI + SZ_16K - 1,
487 .flags = IORESOURCE_MEM,
488 },
489 [1] = {
490 .start = AT91RM9200_ID_TWI,
491 .end = AT91RM9200_ID_TWI,
492 .flags = IORESOURCE_IRQ,
493 },
494};
495
Andrew Victor3267c072006-04-02 17:15:51 +0100496static struct platform_device at91rm9200_twi_device = {
497 .name = "at91_i2c",
498 .id = -1,
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100499 .resource = twi_resources,
500 .num_resources = ARRAY_SIZE(twi_resources),
Andrew Victor3267c072006-04-02 17:15:51 +0100501};
502
Andrew Victorf230d3f2007-11-19 13:47:20 +0100503void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices)
Andrew Victor3267c072006-04-02 17:15:51 +0100504{
505 /* pins used for TWI interface */
506 at91_set_A_periph(AT91_PIN_PA25, 0); /* TWD */
507 at91_set_multi_drive(AT91_PIN_PA25, 1);
508
509 at91_set_A_periph(AT91_PIN_PA26, 0); /* TWCK */
510 at91_set_multi_drive(AT91_PIN_PA26, 1);
511
Andrew Victorf230d3f2007-11-19 13:47:20 +0100512 i2c_register_board_info(0, devices, nr_devices);
Andrew Victor3267c072006-04-02 17:15:51 +0100513 platform_device_register(&at91rm9200_twi_device);
514}
515#else
Andrew Victorf230d3f2007-11-19 13:47:20 +0100516void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices) {}
Andrew Victor3267c072006-04-02 17:15:51 +0100517#endif
518
519
520/* --------------------------------------------------------------------
Andrew Victor2e836402006-06-19 16:31:55 +0100521 * SPI
522 * -------------------------------------------------------------------- */
523
Andrew Victorc06911c2007-07-16 11:35:40 +0100524#if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
Andrew Victorc6686ff2008-01-23 09:13:53 +0100525static u64 spi_dmamask = DMA_BIT_MASK(32);
Andrew Victor2e836402006-06-19 16:31:55 +0100526
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100527static struct resource spi_resources[] = {
Andrew Victor2e836402006-06-19 16:31:55 +0100528 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +0100529 .start = AT91RM9200_BASE_SPI,
530 .end = AT91RM9200_BASE_SPI + SZ_16K - 1,
Andrew Victor2e836402006-06-19 16:31:55 +0100531 .flags = IORESOURCE_MEM,
532 },
533 [1] = {
Andrew Victor72729912006-09-27 09:44:11 +0100534 .start = AT91RM9200_ID_SPI,
535 .end = AT91RM9200_ID_SPI,
Andrew Victor2e836402006-06-19 16:31:55 +0100536 .flags = IORESOURCE_IRQ,
537 },
538};
539
540static struct platform_device at91rm9200_spi_device = {
Andrew Victorc06911c2007-07-16 11:35:40 +0100541 .name = "atmel_spi",
Andrew Victor2e836402006-06-19 16:31:55 +0100542 .id = 0,
543 .dev = {
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100544 .dma_mask = &spi_dmamask,
Andrew Victorc6686ff2008-01-23 09:13:53 +0100545 .coherent_dma_mask = DMA_BIT_MASK(32),
Andrew Victor2e836402006-06-19 16:31:55 +0100546 },
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100547 .resource = spi_resources,
548 .num_resources = ARRAY_SIZE(spi_resources),
Andrew Victor2e836402006-06-19 16:31:55 +0100549};
550
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100551static 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 +0100552
553void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices)
554{
555 int i;
556 unsigned long cs_pin;
557
558 at91_set_A_periph(AT91_PIN_PA0, 0); /* MISO */
559 at91_set_A_periph(AT91_PIN_PA1, 0); /* MOSI */
560 at91_set_A_periph(AT91_PIN_PA2, 0); /* SPCK */
561
562 /* Enable SPI chip-selects */
563 for (i = 0; i < nr_devices; i++) {
564 if (devices[i].controller_data)
565 cs_pin = (unsigned long) devices[i].controller_data;
566 else
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100567 cs_pin = spi_standard_cs[devices[i].chip_select];
Andrew Victor2e836402006-06-19 16:31:55 +0100568
Andrew Victor2743f0c2008-01-23 09:29:46 +0100569 if (devices[i].chip_select == 0) /* for CS0 errata */
570 at91_set_A_periph(cs_pin, 0);
571 else
572 at91_set_gpio_output(cs_pin, 1);
573
Andrew Victor2e836402006-06-19 16:31:55 +0100574
575 /* pass chip-select pin to driver */
576 devices[i].controller_data = (void *) cs_pin;
577 }
578
579 spi_register_board_info(devices, nr_devices);
Andrew Victor2e836402006-06-19 16:31:55 +0100580 platform_device_register(&at91rm9200_spi_device);
581}
582#else
583void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices) {}
584#endif
585
586
587/* --------------------------------------------------------------------
Andrew Victore5f40bf2008-04-02 21:58:00 +0100588 * Timer/Counter blocks
589 * -------------------------------------------------------------------- */
590
591#ifdef CONFIG_ATMEL_TCLIB
592
593static struct resource tcb0_resources[] = {
594 [0] = {
595 .start = AT91RM9200_BASE_TCB0,
596 .end = AT91RM9200_BASE_TCB0 + SZ_16K - 1,
597 .flags = IORESOURCE_MEM,
598 },
599 [1] = {
600 .start = AT91RM9200_ID_TC0,
601 .end = AT91RM9200_ID_TC0,
602 .flags = IORESOURCE_IRQ,
603 },
604 [2] = {
605 .start = AT91RM9200_ID_TC1,
606 .end = AT91RM9200_ID_TC1,
607 .flags = IORESOURCE_IRQ,
608 },
609 [3] = {
610 .start = AT91RM9200_ID_TC2,
611 .end = AT91RM9200_ID_TC2,
612 .flags = IORESOURCE_IRQ,
613 },
614};
615
616static struct platform_device at91rm9200_tcb0_device = {
617 .name = "atmel_tcb",
618 .id = 0,
619 .resource = tcb0_resources,
620 .num_resources = ARRAY_SIZE(tcb0_resources),
621};
622
623static struct resource tcb1_resources[] = {
624 [0] = {
625 .start = AT91RM9200_BASE_TCB1,
626 .end = AT91RM9200_BASE_TCB1 + SZ_16K - 1,
627 .flags = IORESOURCE_MEM,
628 },
629 [1] = {
630 .start = AT91RM9200_ID_TC3,
631 .end = AT91RM9200_ID_TC3,
632 .flags = IORESOURCE_IRQ,
633 },
634 [2] = {
635 .start = AT91RM9200_ID_TC4,
636 .end = AT91RM9200_ID_TC4,
637 .flags = IORESOURCE_IRQ,
638 },
639 [3] = {
640 .start = AT91RM9200_ID_TC5,
641 .end = AT91RM9200_ID_TC5,
642 .flags = IORESOURCE_IRQ,
643 },
644};
645
646static struct platform_device at91rm9200_tcb1_device = {
647 .name = "atmel_tcb",
648 .id = 1,
649 .resource = tcb1_resources,
650 .num_resources = ARRAY_SIZE(tcb1_resources),
651};
652
653static void __init at91_add_device_tc(void)
654{
Andrew Victore5f40bf2008-04-02 21:58:00 +0100655 platform_device_register(&at91rm9200_tcb0_device);
Andrew Victore5f40bf2008-04-02 21:58:00 +0100656 platform_device_register(&at91rm9200_tcb1_device);
657}
658#else
659static void __init at91_add_device_tc(void) { }
660#endif
661
662
663/* --------------------------------------------------------------------
Andrew Victor3267c072006-04-02 17:15:51 +0100664 * RTC
665 * -------------------------------------------------------------------- */
666
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100667#if defined(CONFIG_RTC_DRV_AT91RM9200) || defined(CONFIG_RTC_DRV_AT91RM9200_MODULE)
Andrew Victor3267c072006-04-02 17:15:51 +0100668static struct platform_device at91rm9200_rtc_device = {
669 .name = "at91_rtc",
670 .id = -1,
671 .num_resources = 0,
672};
673
Andrew Victor2e836402006-06-19 16:31:55 +0100674static void __init at91_add_device_rtc(void)
Andrew Victor3267c072006-04-02 17:15:51 +0100675{
676 platform_device_register(&at91rm9200_rtc_device);
677}
678#else
Andrew Victor2e836402006-06-19 16:31:55 +0100679static void __init at91_add_device_rtc(void) {}
680#endif
681
682
683/* --------------------------------------------------------------------
684 * Watchdog
685 * -------------------------------------------------------------------- */
686
Andrew Victor69c5ecc2006-12-01 15:53:20 +0100687#if defined(CONFIG_AT91RM9200_WATCHDOG) || defined(CONFIG_AT91RM9200_WATCHDOG_MODULE)
Andrew Victor2e836402006-06-19 16:31:55 +0100688static struct platform_device at91rm9200_wdt_device = {
689 .name = "at91_wdt",
690 .id = -1,
691 .num_resources = 0,
692};
693
694static void __init at91_add_device_watchdog(void)
695{
696 platform_device_register(&at91rm9200_wdt_device);
697}
698#else
699static void __init at91_add_device_watchdog(void) {}
Andrew Victor3267c072006-04-02 17:15:51 +0100700#endif
701
702
703/* --------------------------------------------------------------------
Andrew Victorbfbc3262008-01-23 09:18:06 +0100704 * SSC -- Synchronous Serial Controller
705 * -------------------------------------------------------------------- */
706
707#if defined(CONFIG_ATMEL_SSC) || defined(CONFIG_ATMEL_SSC_MODULE)
708static u64 ssc0_dmamask = DMA_BIT_MASK(32);
709
710static struct resource ssc0_resources[] = {
711 [0] = {
712 .start = AT91RM9200_BASE_SSC0,
713 .end = AT91RM9200_BASE_SSC0 + SZ_16K - 1,
714 .flags = IORESOURCE_MEM,
715 },
716 [1] = {
717 .start = AT91RM9200_ID_SSC0,
718 .end = AT91RM9200_ID_SSC0,
719 .flags = IORESOURCE_IRQ,
720 },
721};
722
723static struct platform_device at91rm9200_ssc0_device = {
724 .name = "ssc",
725 .id = 0,
726 .dev = {
727 .dma_mask = &ssc0_dmamask,
728 .coherent_dma_mask = DMA_BIT_MASK(32),
729 },
730 .resource = ssc0_resources,
731 .num_resources = ARRAY_SIZE(ssc0_resources),
732};
733
734static inline void configure_ssc0_pins(unsigned pins)
735{
736 if (pins & ATMEL_SSC_TF)
737 at91_set_A_periph(AT91_PIN_PB0, 1);
738 if (pins & ATMEL_SSC_TK)
739 at91_set_A_periph(AT91_PIN_PB1, 1);
740 if (pins & ATMEL_SSC_TD)
741 at91_set_A_periph(AT91_PIN_PB2, 1);
742 if (pins & ATMEL_SSC_RD)
743 at91_set_A_periph(AT91_PIN_PB3, 1);
744 if (pins & ATMEL_SSC_RK)
745 at91_set_A_periph(AT91_PIN_PB4, 1);
746 if (pins & ATMEL_SSC_RF)
747 at91_set_A_periph(AT91_PIN_PB5, 1);
748}
749
750static u64 ssc1_dmamask = DMA_BIT_MASK(32);
751
752static struct resource ssc1_resources[] = {
753 [0] = {
754 .start = AT91RM9200_BASE_SSC1,
755 .end = AT91RM9200_BASE_SSC1 + SZ_16K - 1,
756 .flags = IORESOURCE_MEM,
757 },
758 [1] = {
759 .start = AT91RM9200_ID_SSC1,
760 .end = AT91RM9200_ID_SSC1,
761 .flags = IORESOURCE_IRQ,
762 },
763};
764
765static struct platform_device at91rm9200_ssc1_device = {
766 .name = "ssc",
767 .id = 1,
768 .dev = {
769 .dma_mask = &ssc1_dmamask,
770 .coherent_dma_mask = DMA_BIT_MASK(32),
771 },
772 .resource = ssc1_resources,
773 .num_resources = ARRAY_SIZE(ssc1_resources),
774};
775
776static inline void configure_ssc1_pins(unsigned pins)
777{
778 if (pins & ATMEL_SSC_TF)
779 at91_set_A_periph(AT91_PIN_PB6, 1);
780 if (pins & ATMEL_SSC_TK)
781 at91_set_A_periph(AT91_PIN_PB7, 1);
782 if (pins & ATMEL_SSC_TD)
783 at91_set_A_periph(AT91_PIN_PB8, 1);
784 if (pins & ATMEL_SSC_RD)
785 at91_set_A_periph(AT91_PIN_PB9, 1);
786 if (pins & ATMEL_SSC_RK)
787 at91_set_A_periph(AT91_PIN_PB10, 1);
788 if (pins & ATMEL_SSC_RF)
789 at91_set_A_periph(AT91_PIN_PB11, 1);
790}
791
792static u64 ssc2_dmamask = DMA_BIT_MASK(32);
793
794static struct resource ssc2_resources[] = {
795 [0] = {
796 .start = AT91RM9200_BASE_SSC2,
797 .end = AT91RM9200_BASE_SSC2 + SZ_16K - 1,
798 .flags = IORESOURCE_MEM,
799 },
800 [1] = {
801 .start = AT91RM9200_ID_SSC2,
802 .end = AT91RM9200_ID_SSC2,
803 .flags = IORESOURCE_IRQ,
804 },
805};
806
807static struct platform_device at91rm9200_ssc2_device = {
808 .name = "ssc",
809 .id = 2,
810 .dev = {
811 .dma_mask = &ssc2_dmamask,
812 .coherent_dma_mask = DMA_BIT_MASK(32),
813 },
814 .resource = ssc2_resources,
815 .num_resources = ARRAY_SIZE(ssc2_resources),
816};
817
818static inline void configure_ssc2_pins(unsigned pins)
819{
820 if (pins & ATMEL_SSC_TF)
821 at91_set_A_periph(AT91_PIN_PB12, 1);
822 if (pins & ATMEL_SSC_TK)
823 at91_set_A_periph(AT91_PIN_PB13, 1);
824 if (pins & ATMEL_SSC_TD)
825 at91_set_A_periph(AT91_PIN_PB14, 1);
826 if (pins & ATMEL_SSC_RD)
827 at91_set_A_periph(AT91_PIN_PB15, 1);
828 if (pins & ATMEL_SSC_RK)
829 at91_set_A_periph(AT91_PIN_PB16, 1);
830 if (pins & ATMEL_SSC_RF)
831 at91_set_A_periph(AT91_PIN_PB17, 1);
832}
833
834/*
835 * SSC controllers are accessed through library code, instead of any
836 * kind of all-singing/all-dancing driver. For example one could be
837 * used by a particular I2S audio codec's driver, while another one
838 * on the same system might be used by a custom data capture driver.
839 */
840void __init at91_add_device_ssc(unsigned id, unsigned pins)
841{
842 struct platform_device *pdev;
843
844 /*
845 * NOTE: caller is responsible for passing information matching
846 * "pins" to whatever will be using each particular controller.
847 */
848 switch (id) {
849 case AT91RM9200_ID_SSC0:
850 pdev = &at91rm9200_ssc0_device;
851 configure_ssc0_pins(pins);
Andrew Victorbfbc3262008-01-23 09:18:06 +0100852 break;
853 case AT91RM9200_ID_SSC1:
854 pdev = &at91rm9200_ssc1_device;
855 configure_ssc1_pins(pins);
Andrew Victorbfbc3262008-01-23 09:18:06 +0100856 break;
857 case AT91RM9200_ID_SSC2:
858 pdev = &at91rm9200_ssc2_device;
859 configure_ssc2_pins(pins);
Andrew Victorbfbc3262008-01-23 09:18:06 +0100860 break;
861 default:
862 return;
863 }
864
865 platform_device_register(pdev);
866}
867
868#else
869void __init at91_add_device_ssc(unsigned id, unsigned pins) {}
870#endif
871
872
873/* --------------------------------------------------------------------
Andrew Victor2e836402006-06-19 16:31:55 +0100874 * UART
875 * -------------------------------------------------------------------- */
876
Haavard Skinnemoen749c4e62006-10-04 16:02:02 +0200877#if defined(CONFIG_SERIAL_ATMEL)
Andrew Victor2e836402006-06-19 16:31:55 +0100878static struct resource dbgu_resources[] = {
879 [0] = {
Jean-Christophe PLAGNIOL-VILLARD13079a72011-11-02 01:43:31 +0800880 .start = AT91RM9200_BASE_DBGU,
881 .end = AT91RM9200_BASE_DBGU + SZ_512 - 1,
Andrew Victor2e836402006-06-19 16:31:55 +0100882 .flags = IORESOURCE_MEM,
883 },
884 [1] = {
885 .start = AT91_ID_SYS,
886 .end = AT91_ID_SYS,
887 .flags = IORESOURCE_IRQ,
888 },
889};
890
Haavard Skinnemoen73e27982006-10-04 16:02:04 +0200891static struct atmel_uart_data dbgu_data = {
Andrew Victor2e836402006-06-19 16:31:55 +0100892 .use_dma_tx = 0,
893 .use_dma_rx = 0, /* DBGU not capable of receive DMA */
894};
895
Andrew Victorc6686ff2008-01-23 09:13:53 +0100896static u64 dbgu_dmamask = DMA_BIT_MASK(32);
897
Andrew Victor2e836402006-06-19 16:31:55 +0100898static struct platform_device at91rm9200_dbgu_device = {
Haavard Skinnemoen1e8ea802006-10-04 16:02:03 +0200899 .name = "atmel_usart",
Andrew Victor2e836402006-06-19 16:31:55 +0100900 .id = 0,
901 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +0100902 .dma_mask = &dbgu_dmamask,
903 .coherent_dma_mask = DMA_BIT_MASK(32),
904 .platform_data = &dbgu_data,
Andrew Victor2e836402006-06-19 16:31:55 +0100905 },
906 .resource = dbgu_resources,
907 .num_resources = ARRAY_SIZE(dbgu_resources),
908};
909
910static inline void configure_dbgu_pins(void)
911{
912 at91_set_A_periph(AT91_PIN_PA30, 0); /* DRXD */
913 at91_set_A_periph(AT91_PIN_PA31, 1); /* DTXD */
914}
915
916static struct resource uart0_resources[] = {
917 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +0100918 .start = AT91RM9200_BASE_US0,
919 .end = AT91RM9200_BASE_US0 + SZ_16K - 1,
Andrew Victor2e836402006-06-19 16:31:55 +0100920 .flags = IORESOURCE_MEM,
921 },
922 [1] = {
Andrew Victor72729912006-09-27 09:44:11 +0100923 .start = AT91RM9200_ID_US0,
924 .end = AT91RM9200_ID_US0,
Andrew Victor2e836402006-06-19 16:31:55 +0100925 .flags = IORESOURCE_IRQ,
926 },
927};
928
Haavard Skinnemoen73e27982006-10-04 16:02:04 +0200929static struct atmel_uart_data uart0_data = {
Andrew Victor2e836402006-06-19 16:31:55 +0100930 .use_dma_tx = 1,
931 .use_dma_rx = 1,
932};
933
Andrew Victorc6686ff2008-01-23 09:13:53 +0100934static u64 uart0_dmamask = DMA_BIT_MASK(32);
935
Andrew Victor2e836402006-06-19 16:31:55 +0100936static struct platform_device at91rm9200_uart0_device = {
Haavard Skinnemoen1e8ea802006-10-04 16:02:03 +0200937 .name = "atmel_usart",
Andrew Victor2e836402006-06-19 16:31:55 +0100938 .id = 1,
939 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +0100940 .dma_mask = &uart0_dmamask,
941 .coherent_dma_mask = DMA_BIT_MASK(32),
942 .platform_data = &uart0_data,
Andrew Victor2e836402006-06-19 16:31:55 +0100943 },
944 .resource = uart0_resources,
945 .num_resources = ARRAY_SIZE(uart0_resources),
946};
947
Andrew Victorc8f385a2008-01-23 09:25:15 +0100948static inline void configure_usart0_pins(unsigned pins)
Andrew Victor2e836402006-06-19 16:31:55 +0100949{
950 at91_set_A_periph(AT91_PIN_PA17, 1); /* TXD0 */
951 at91_set_A_periph(AT91_PIN_PA18, 0); /* RXD0 */
Andrew Victor2e836402006-06-19 16:31:55 +0100952
Andrew Victorc8f385a2008-01-23 09:25:15 +0100953 if (pins & ATMEL_UART_CTS)
954 at91_set_A_periph(AT91_PIN_PA20, 0); /* CTS0 */
955
956 if (pins & ATMEL_UART_RTS) {
957 /*
958 * AT91RM9200 Errata #39 - RTS0 is not internally connected to PA21.
959 * We need to drive the pin manually. Default is off (RTS is active low).
960 */
961 at91_set_gpio_output(AT91_PIN_PA21, 1);
962 }
Andrew Victor2e836402006-06-19 16:31:55 +0100963}
964
965static struct resource uart1_resources[] = {
966 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +0100967 .start = AT91RM9200_BASE_US1,
968 .end = AT91RM9200_BASE_US1 + SZ_16K - 1,
Andrew Victor2e836402006-06-19 16:31:55 +0100969 .flags = IORESOURCE_MEM,
970 },
971 [1] = {
Andrew Victor72729912006-09-27 09:44:11 +0100972 .start = AT91RM9200_ID_US1,
973 .end = AT91RM9200_ID_US1,
Andrew Victor2e836402006-06-19 16:31:55 +0100974 .flags = IORESOURCE_IRQ,
975 },
976};
977
Haavard Skinnemoen73e27982006-10-04 16:02:04 +0200978static struct atmel_uart_data uart1_data = {
Andrew Victor2e836402006-06-19 16:31:55 +0100979 .use_dma_tx = 1,
980 .use_dma_rx = 1,
981};
982
Andrew Victorc6686ff2008-01-23 09:13:53 +0100983static u64 uart1_dmamask = DMA_BIT_MASK(32);
984
Andrew Victor2e836402006-06-19 16:31:55 +0100985static struct platform_device at91rm9200_uart1_device = {
Haavard Skinnemoen1e8ea802006-10-04 16:02:03 +0200986 .name = "atmel_usart",
Andrew Victor2e836402006-06-19 16:31:55 +0100987 .id = 2,
988 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +0100989 .dma_mask = &uart1_dmamask,
990 .coherent_dma_mask = DMA_BIT_MASK(32),
991 .platform_data = &uart1_data,
Andrew Victor2e836402006-06-19 16:31:55 +0100992 },
993 .resource = uart1_resources,
994 .num_resources = ARRAY_SIZE(uart1_resources),
995};
996
Andrew Victorc8f385a2008-01-23 09:25:15 +0100997static inline void configure_usart1_pins(unsigned pins)
Andrew Victor2e836402006-06-19 16:31:55 +0100998{
Andrew Victor2e836402006-06-19 16:31:55 +0100999 at91_set_A_periph(AT91_PIN_PB20, 1); /* TXD1 */
1000 at91_set_A_periph(AT91_PIN_PB21, 0); /* RXD1 */
Andrew Victorc8f385a2008-01-23 09:25:15 +01001001
1002 if (pins & ATMEL_UART_RI)
1003 at91_set_A_periph(AT91_PIN_PB18, 0); /* RI1 */
1004 if (pins & ATMEL_UART_DTR)
1005 at91_set_A_periph(AT91_PIN_PB19, 0); /* DTR1 */
1006 if (pins & ATMEL_UART_DCD)
1007 at91_set_A_periph(AT91_PIN_PB23, 0); /* DCD1 */
1008 if (pins & ATMEL_UART_CTS)
1009 at91_set_A_periph(AT91_PIN_PB24, 0); /* CTS1 */
1010 if (pins & ATMEL_UART_DSR)
1011 at91_set_A_periph(AT91_PIN_PB25, 0); /* DSR1 */
1012 if (pins & ATMEL_UART_RTS)
1013 at91_set_A_periph(AT91_PIN_PB26, 0); /* RTS1 */
Andrew Victor2e836402006-06-19 16:31:55 +01001014}
1015
1016static struct resource uart2_resources[] = {
1017 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +01001018 .start = AT91RM9200_BASE_US2,
1019 .end = AT91RM9200_BASE_US2 + SZ_16K - 1,
Andrew Victor2e836402006-06-19 16:31:55 +01001020 .flags = IORESOURCE_MEM,
1021 },
1022 [1] = {
Andrew Victor72729912006-09-27 09:44:11 +01001023 .start = AT91RM9200_ID_US2,
1024 .end = AT91RM9200_ID_US2,
Andrew Victor2e836402006-06-19 16:31:55 +01001025 .flags = IORESOURCE_IRQ,
1026 },
1027};
1028
Haavard Skinnemoen73e27982006-10-04 16:02:04 +02001029static struct atmel_uart_data uart2_data = {
Andrew Victor2e836402006-06-19 16:31:55 +01001030 .use_dma_tx = 1,
1031 .use_dma_rx = 1,
1032};
1033
Andrew Victorc6686ff2008-01-23 09:13:53 +01001034static u64 uart2_dmamask = DMA_BIT_MASK(32);
1035
Andrew Victor2e836402006-06-19 16:31:55 +01001036static struct platform_device at91rm9200_uart2_device = {
Haavard Skinnemoen1e8ea802006-10-04 16:02:03 +02001037 .name = "atmel_usart",
Andrew Victor2e836402006-06-19 16:31:55 +01001038 .id = 3,
1039 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +01001040 .dma_mask = &uart2_dmamask,
1041 .coherent_dma_mask = DMA_BIT_MASK(32),
1042 .platform_data = &uart2_data,
Andrew Victor2e836402006-06-19 16:31:55 +01001043 },
1044 .resource = uart2_resources,
1045 .num_resources = ARRAY_SIZE(uart2_resources),
1046};
1047
Andrew Victorc8f385a2008-01-23 09:25:15 +01001048static inline void configure_usart2_pins(unsigned pins)
Andrew Victor2e836402006-06-19 16:31:55 +01001049{
1050 at91_set_A_periph(AT91_PIN_PA22, 0); /* RXD2 */
1051 at91_set_A_periph(AT91_PIN_PA23, 1); /* TXD2 */
Andrew Victorc8f385a2008-01-23 09:25:15 +01001052
1053 if (pins & ATMEL_UART_CTS)
1054 at91_set_B_periph(AT91_PIN_PA30, 0); /* CTS2 */
1055 if (pins & ATMEL_UART_RTS)
1056 at91_set_B_periph(AT91_PIN_PA31, 0); /* RTS2 */
Andrew Victor2e836402006-06-19 16:31:55 +01001057}
1058
1059static struct resource uart3_resources[] = {
1060 [0] = {
Andrew Victor72729912006-09-27 09:44:11 +01001061 .start = AT91RM9200_BASE_US3,
1062 .end = AT91RM9200_BASE_US3 + SZ_16K - 1,
Andrew Victor2e836402006-06-19 16:31:55 +01001063 .flags = IORESOURCE_MEM,
1064 },
1065 [1] = {
Andrew Victor72729912006-09-27 09:44:11 +01001066 .start = AT91RM9200_ID_US3,
1067 .end = AT91RM9200_ID_US3,
Andrew Victor2e836402006-06-19 16:31:55 +01001068 .flags = IORESOURCE_IRQ,
1069 },
1070};
1071
Haavard Skinnemoen73e27982006-10-04 16:02:04 +02001072static struct atmel_uart_data uart3_data = {
Andrew Victor2e836402006-06-19 16:31:55 +01001073 .use_dma_tx = 1,
1074 .use_dma_rx = 1,
1075};
1076
Andrew Victorc6686ff2008-01-23 09:13:53 +01001077static u64 uart3_dmamask = DMA_BIT_MASK(32);
1078
Andrew Victor2e836402006-06-19 16:31:55 +01001079static struct platform_device at91rm9200_uart3_device = {
Haavard Skinnemoen1e8ea802006-10-04 16:02:03 +02001080 .name = "atmel_usart",
Andrew Victor2e836402006-06-19 16:31:55 +01001081 .id = 4,
1082 .dev = {
Andrew Victorc6686ff2008-01-23 09:13:53 +01001083 .dma_mask = &uart3_dmamask,
1084 .coherent_dma_mask = DMA_BIT_MASK(32),
1085 .platform_data = &uart3_data,
Andrew Victor2e836402006-06-19 16:31:55 +01001086 },
1087 .resource = uart3_resources,
1088 .num_resources = ARRAY_SIZE(uart3_resources),
1089};
1090
Andrew Victorc8f385a2008-01-23 09:25:15 +01001091static inline void configure_usart3_pins(unsigned pins)
Andrew Victor2e836402006-06-19 16:31:55 +01001092{
1093 at91_set_B_periph(AT91_PIN_PA5, 1); /* TXD3 */
1094 at91_set_B_periph(AT91_PIN_PA6, 0); /* RXD3 */
Andrew Victorc8f385a2008-01-23 09:25:15 +01001095
1096 if (pins & ATMEL_UART_CTS)
1097 at91_set_B_periph(AT91_PIN_PB1, 0); /* CTS3 */
1098 if (pins & ATMEL_UART_RTS)
1099 at91_set_B_periph(AT91_PIN_PB0, 0); /* RTS3 */
Andrew Victor2e836402006-06-19 16:31:55 +01001100}
1101
Andrew Victor11aadac2008-04-15 21:16:38 +01001102static struct platform_device *__initdata at91_uarts[ATMEL_MAX_UART]; /* the UARTs to use */
Haavard Skinnemoen73e27982006-10-04 16:02:04 +02001103struct platform_device *atmel_default_console_device; /* the serial console device */
Andrew Victor2e836402006-06-19 16:31:55 +01001104
Andrew Victorc8f385a2008-01-23 09:25:15 +01001105void __init at91_register_uart(unsigned id, unsigned portnr, unsigned pins)
1106{
1107 struct platform_device *pdev;
Jean-Christophe PLAGNIOL-VILLARD2b348e22011-04-10 14:10:05 +08001108 struct atmel_uart_data *pdata;
Andrew Victorc8f385a2008-01-23 09:25:15 +01001109
1110 switch (id) {
1111 case 0: /* DBGU */
1112 pdev = &at91rm9200_dbgu_device;
1113 configure_dbgu_pins();
Andrew Victorc8f385a2008-01-23 09:25:15 +01001114 break;
1115 case AT91RM9200_ID_US0:
1116 pdev = &at91rm9200_uart0_device;
1117 configure_usart0_pins(pins);
Andrew Victorc8f385a2008-01-23 09:25:15 +01001118 break;
1119 case AT91RM9200_ID_US1:
1120 pdev = &at91rm9200_uart1_device;
1121 configure_usart1_pins(pins);
Andrew Victorc8f385a2008-01-23 09:25:15 +01001122 break;
1123 case AT91RM9200_ID_US2:
1124 pdev = &at91rm9200_uart2_device;
1125 configure_usart2_pins(pins);
Andrew Victorc8f385a2008-01-23 09:25:15 +01001126 break;
1127 case AT91RM9200_ID_US3:
1128 pdev = &at91rm9200_uart3_device;
1129 configure_usart3_pins(pins);
Andrew Victorc8f385a2008-01-23 09:25:15 +01001130 break;
1131 default:
1132 return;
1133 }
Jean-Christophe PLAGNIOL-VILLARD2b348e22011-04-10 14:10:05 +08001134 pdata = pdev->dev.platform_data;
1135 pdata->num = portnr; /* update to mapped ID */
Andrew Victorc8f385a2008-01-23 09:25:15 +01001136
1137 if (portnr < ATMEL_MAX_UART)
1138 at91_uarts[portnr] = pdev;
1139}
1140
1141void __init at91_set_serial_console(unsigned portnr)
1142{
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +01001143 if (portnr < ATMEL_MAX_UART) {
Andrew Victorc8f385a2008-01-23 09:25:15 +01001144 atmel_default_console_device = at91_uarts[portnr];
Jean-Christophe PLAGNIOL-VILLARD5c1f9662011-06-21 11:24:33 +08001145 at91rm9200_set_console_clock(at91_uarts[portnr]->id);
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +01001146 }
Andrew Victorc8f385a2008-01-23 09:25:15 +01001147}
1148
Andrew Victor2e836402006-06-19 16:31:55 +01001149void __init at91_add_device_serial(void)
1150{
1151 int i;
1152
Haavard Skinnemoen73e27982006-10-04 16:02:04 +02001153 for (i = 0; i < ATMEL_MAX_UART; i++) {
Andrew Victor2e836402006-06-19 16:31:55 +01001154 if (at91_uarts[i])
1155 platform_device_register(at91_uarts[i]);
1156 }
Andrew Victor11aadac2008-04-15 21:16:38 +01001157
1158 if (!atmel_default_console_device)
1159 printk(KERN_INFO "AT91: No default serial console defined.\n");
Andrew Victor2e836402006-06-19 16:31:55 +01001160}
1161#else
Andrew Victorc8f385a2008-01-23 09:25:15 +01001162void __init __deprecated at91_init_serial(struct at91_uart_config *config) {}
1163void __init at91_register_uart(unsigned id, unsigned portnr, unsigned pins) {}
1164void __init at91_set_serial_console(unsigned portnr) {}
Andrew Victor2e836402006-06-19 16:31:55 +01001165void __init at91_add_device_serial(void) {}
1166#endif
1167
1168
SAN People73a59c12006-01-09 17:05:41 +00001169/* -------------------------------------------------------------------- */
Andrew Victor2e836402006-06-19 16:31:55 +01001170
1171/*
1172 * These devices are always present and don't need any board-specific
1173 * setup.
1174 */
1175static int __init at91_add_standard_devices(void)
1176{
1177 at91_add_device_rtc();
1178 at91_add_device_watchdog();
Andrew Victore5f40bf2008-04-02 21:58:00 +01001179 at91_add_device_tc();
Andrew Victor2e836402006-06-19 16:31:55 +01001180 return 0;
1181}
1182
1183arch_initcall(at91_add_standard_devices);