[PATCH] rcutorture: tag success/failure line with module parameters
[linux-2.6/verdex.git] / arch / arm / mach-at91rm9200 / devices.c
blob57eedd5beaf6412c1b152843babf7536ee4c8486
1 /*
2 * arch/arm/mach-at91rm9200/devices.c
4 * Copyright (C) 2005 Thibaut VARENE <varenet@parisc-linux.org>
5 * Copyright (C) 2005 David Brownell
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #include <asm/mach/arch.h>
14 #include <asm/mach/map.h>
16 #include <linux/config.h>
17 #include <linux/platform_device.h>
19 #include <asm/arch/board.h>
20 #include <asm/arch/pio.h>
23 /* --------------------------------------------------------------------
24 * USB Host
25 * -------------------------------------------------------------------- */
27 #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
28 static u64 ohci_dmamask = 0xffffffffUL;
29 static struct at91_usbh_data usbh_data;
31 static struct resource at91rm9200_usbh_resource[] = {
32 [0] = {
33 .start = AT91_UHP_BASE,
34 .end = AT91_UHP_BASE + SZ_1M -1,
35 .flags = IORESOURCE_MEM,
37 [1] = {
38 .start = AT91_ID_UHP,
39 .end = AT91_ID_UHP,
40 .flags = IORESOURCE_IRQ,
44 static struct platform_device at91rm9200_usbh_device = {
45 .name = "at91rm9200-ohci",
46 .id = -1,
47 .dev = {
48 .dma_mask = &ohci_dmamask,
49 .coherent_dma_mask = 0xffffffff,
50 .platform_data = &usbh_data,
52 .resource = at91rm9200_usbh_resource,
53 .num_resources = ARRAY_SIZE(at91rm9200_usbh_resource),
56 void __init at91_add_device_usbh(struct at91_usbh_data *data)
58 if (!data)
59 return;
61 usbh_data = *data;
62 platform_device_register(&at91rm9200_usbh_device);
64 #else
65 void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
66 #endif
69 /* --------------------------------------------------------------------
70 * USB Device (Gadget)
71 * -------------------------------------------------------------------- */
73 #ifdef CONFIG_USB_GADGET_AT91
74 static struct at91_udc_data udc_data;
76 static struct resource at91_udc_resources[] = {
78 .start = AT91_BASE_UDP,
79 .end = AT91_BASE_UDP + SZ_16K - 1,
80 .flags = IORESOURCE_MEM,
84 static struct platform_device at91rm9200_udc_device = {
85 .name = "at91_udc",
86 .id = -1,
87 .dev = {
88 .platform_data = &udc_data,
90 .resource = at91_udc_resources,
91 .num_resources = ARRAY_SIZE(at91_udc_resources),
94 void __init at91_add_device_udc(struct at91_udc_data *data)
96 if (!data)
97 return;
99 if (data->vbus_pin) {
100 at91_set_gpio_input(data->vbus_pin, 0);
101 at91_set_deglitch(data->vbus_pin, 1);
103 if (data->pullup_pin) {
104 at91_set_gpio_output(data->pullup_pin, 0);
105 at91_set_multi_drive(data->pullup_pin, 1);
108 udc_data = *data;
109 platform_device_register(&at91rm9200_udc_device);
111 #else
112 void __init at91_add_device_udc(struct at91_udc_data *data) {}
113 #endif
116 /* --------------------------------------------------------------------
117 * Ethernet
118 * -------------------------------------------------------------------- */
120 #if defined(CONFIG_ARM_AT91_ETHER) || defined(CONFIG_ARM_AT91_ETHER_MODULE)
121 static u64 eth_dmamask = 0xffffffffUL;
122 static struct at91_eth_data eth_data;
124 static struct platform_device at91rm9200_eth_device = {
125 .name = "at91_ether",
126 .id = -1,
127 .dev = {
128 .dma_mask = &eth_dmamask,
129 .coherent_dma_mask = 0xffffffff,
130 .platform_data = &eth_data,
132 .num_resources = 0,
135 void __init at91_add_device_eth(struct at91_eth_data *data)
137 if (!data)
138 return;
140 if (data->phy_irq_pin) {
141 at91_set_gpio_input(data->phy_irq_pin, 0);
142 at91_set_deglitch(data->phy_irq_pin, 1);
145 /* Pins used for MII and RMII */
146 at91_set_A_periph(AT91_PIN_PA16, 0); /* EMDIO */
147 at91_set_A_periph(AT91_PIN_PA15, 0); /* EMDC */
148 at91_set_A_periph(AT91_PIN_PA14, 0); /* ERXER */
149 at91_set_A_periph(AT91_PIN_PA13, 0); /* ERX1 */
150 at91_set_A_periph(AT91_PIN_PA12, 0); /* ERX0 */
151 at91_set_A_periph(AT91_PIN_PA11, 0); /* ECRS_ECRSDV */
152 at91_set_A_periph(AT91_PIN_PA10, 0); /* ETX1 */
153 at91_set_A_periph(AT91_PIN_PA9, 0); /* ETX0 */
154 at91_set_A_periph(AT91_PIN_PA8, 0); /* ETXEN */
155 at91_set_A_periph(AT91_PIN_PA7, 0); /* ETXCK_EREFCK */
157 if (!data->is_rmii) {
158 at91_set_B_periph(AT91_PIN_PB19, 0); /* ERXCK */
159 at91_set_B_periph(AT91_PIN_PB18, 0); /* ECOL */
160 at91_set_B_periph(AT91_PIN_PB17, 0); /* ERXDV */
161 at91_set_B_periph(AT91_PIN_PB16, 0); /* ERX3 */
162 at91_set_B_periph(AT91_PIN_PB15, 0); /* ERX2 */
163 at91_set_B_periph(AT91_PIN_PB14, 0); /* ETXER */
164 at91_set_B_periph(AT91_PIN_PB13, 0); /* ETX3 */
165 at91_set_B_periph(AT91_PIN_PB12, 0); /* ETX2 */
168 eth_data = *data;
169 platform_device_register(&at91rm9200_eth_device);
171 #else
172 void __init at91_add_device_eth(struct at91_eth_data *data) {}
173 #endif
176 /* --------------------------------------------------------------------
177 * Compact Flash / PCMCIA
178 * -------------------------------------------------------------------- */
180 #if defined(CONFIG_AT91_CF) || defined(CONFIG_AT91_CF_MODULE)
181 static struct at91_cf_data cf_data;
183 static struct platform_device at91rm9200_cf_device = {
184 .name = "at91_cf",
185 .id = -1,
186 .dev = {
187 .platform_data = &cf_data,
189 .num_resources = 0,
192 void __init at91_add_device_cf(struct at91_cf_data *data)
194 if (!data)
195 return;
197 /* input/irq */
198 if (data->irq_pin) {
199 at91_set_gpio_input(data->irq_pin, 1);
200 at91_set_deglitch(data->irq_pin, 1);
202 at91_set_gpio_input(data->det_pin, 1);
203 at91_set_deglitch(data->det_pin, 1);
205 /* outputs, initially off */
206 if (data->vcc_pin)
207 at91_set_gpio_output(data->vcc_pin, 0);
208 at91_set_gpio_output(data->rst_pin, 0);
210 cf_data = *data;
211 platform_device_register(&at91rm9200_cf_device);
213 #else
214 void __init at91_add_device_cf(struct at91_cf_data *data) {}
215 #endif
218 /* --------------------------------------------------------------------
219 * MMC / SD
220 * -------------------------------------------------------------------- */
222 #if defined(CONFIG_MMC_AT91RM9200) || defined(CONFIG_MMC_AT91RM9200_MODULE)
223 static u64 mmc_dmamask = 0xffffffffUL;
224 static struct at91_mmc_data mmc_data;
226 static struct resource at91_mmc_resources[] = {
228 .start = AT91_BASE_MCI,
229 .end = AT91_BASE_MCI + SZ_16K - 1,
230 .flags = IORESOURCE_MEM,
234 static struct platform_device at91rm9200_mmc_device = {
235 .name = "at91rm9200_mci",
236 .id = -1,
237 .dev = {
238 .dma_mask = &mmc_dmamask,
239 .coherent_dma_mask = 0xffffffff,
240 .platform_data = &mmc_data,
242 .resource = at91_mmc_resources,
243 .num_resources = ARRAY_SIZE(at91_mmc_resources),
246 void __init at91_add_device_mmc(struct at91_mmc_data *data)
248 if (!data)
249 return;
251 /* input/irq */
252 if (data->det_pin) {
253 at91_set_gpio_input(data->det_pin, 1);
254 at91_set_deglitch(data->det_pin, 1);
256 if (data->wp_pin)
257 at91_set_gpio_input(data->wp_pin, 1);
259 /* CLK */
260 at91_set_A_periph(AT91_PIN_PA27, 0);
262 if (data->is_b) {
263 /* CMD */
264 at91_set_B_periph(AT91_PIN_PA8, 0);
266 /* DAT0, maybe DAT1..DAT3 */
267 at91_set_B_periph(AT91_PIN_PA9, 0);
268 if (data->wire4) {
269 at91_set_B_periph(AT91_PIN_PA10, 0);
270 at91_set_B_periph(AT91_PIN_PA11, 0);
271 at91_set_B_periph(AT91_PIN_PA12, 0);
273 } else {
274 /* CMD */
275 at91_set_A_periph(AT91_PIN_PA28, 0);
277 /* DAT0, maybe DAT1..DAT3 */
278 at91_set_A_periph(AT91_PIN_PA29, 0);
279 if (data->wire4) {
280 at91_set_B_periph(AT91_PIN_PB3, 0);
281 at91_set_B_periph(AT91_PIN_PB4, 0);
282 at91_set_B_periph(AT91_PIN_PB5, 0);
286 mmc_data = *data;
287 platform_device_register(&at91rm9200_mmc_device);
289 #else
290 void __init at91_add_device_mmc(struct at91_mmc_data *data) {}
291 #endif
293 /* -------------------------------------------------------------------- */