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 /* --------------------------------------------------------------------
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 at91_usbh_resource[] = {
33 .start = AT91_UHP_BASE,
34 .end = AT91_UHP_BASE + SZ_1M - 1,
35 .flags = IORESOURCE_MEM,
40 .flags = IORESOURCE_IRQ,
44 static struct platform_device at91rm9200_usbh_device = {
45 .name = "at91rm9200-ohci",
48 .dma_mask = &ohci_dmamask,
49 .coherent_dma_mask = 0xffffffff,
50 .platform_data = &usbh_data,
52 .resource = at91_usbh_resource,
53 .num_resources = ARRAY_SIZE(at91_usbh_resource),
56 void __init at91_add_device_usbh(struct at91_usbh_data *data)
62 platform_device_register(&at91rm9200_usbh_device);
65 void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
69 /* --------------------------------------------------------------------
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 = {
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)
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);
109 platform_device_register(&at91rm9200_udc_device);
112 void __init at91_add_device_udc(struct at91_udc_data *data) {}
116 /* --------------------------------------------------------------------
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 resource at91_eth_resources[] = {
126 .start = AT91_BASE_EMAC,
127 .end = AT91_BASE_EMAC + SZ_16K - 1,
128 .flags = IORESOURCE_MEM,
131 .start = AT91_ID_EMAC,
133 .flags = IORESOURCE_IRQ,
137 static struct platform_device at91rm9200_eth_device = {
138 .name = "at91_ether",
141 .dma_mask = ð_dmamask,
142 .coherent_dma_mask = 0xffffffff,
143 .platform_data = ð_data,
145 .resource = at91_eth_resources,
146 .num_resources = ARRAY_SIZE(at91_eth_resources),
149 void __init at91_add_device_eth(struct at91_eth_data *data)
154 if (data->phy_irq_pin) {
155 at91_set_gpio_input(data->phy_irq_pin, 0);
156 at91_set_deglitch(data->phy_irq_pin, 1);
159 /* Pins used for MII and RMII */
160 at91_set_A_periph(AT91_PIN_PA16, 0); /* EMDIO */
161 at91_set_A_periph(AT91_PIN_PA15, 0); /* EMDC */
162 at91_set_A_periph(AT91_PIN_PA14, 0); /* ERXER */
163 at91_set_A_periph(AT91_PIN_PA13, 0); /* ERX1 */
164 at91_set_A_periph(AT91_PIN_PA12, 0); /* ERX0 */
165 at91_set_A_periph(AT91_PIN_PA11, 0); /* ECRS_ECRSDV */
166 at91_set_A_periph(AT91_PIN_PA10, 0); /* ETX1 */
167 at91_set_A_periph(AT91_PIN_PA9, 0); /* ETX0 */
168 at91_set_A_periph(AT91_PIN_PA8, 0); /* ETXEN */
169 at91_set_A_periph(AT91_PIN_PA7, 0); /* ETXCK_EREFCK */
171 if (!data->is_rmii) {
172 at91_set_B_periph(AT91_PIN_PB19, 0); /* ERXCK */
173 at91_set_B_periph(AT91_PIN_PB18, 0); /* ECOL */
174 at91_set_B_periph(AT91_PIN_PB17, 0); /* ERXDV */
175 at91_set_B_periph(AT91_PIN_PB16, 0); /* ERX3 */
176 at91_set_B_periph(AT91_PIN_PB15, 0); /* ERX2 */
177 at91_set_B_periph(AT91_PIN_PB14, 0); /* ETXER */
178 at91_set_B_periph(AT91_PIN_PB13, 0); /* ETX3 */
179 at91_set_B_periph(AT91_PIN_PB12, 0); /* ETX2 */
183 platform_device_register(&at91rm9200_eth_device);
186 void __init at91_add_device_eth(struct at91_eth_data *data) {}
190 /* --------------------------------------------------------------------
191 * Compact Flash / PCMCIA
192 * -------------------------------------------------------------------- */
194 #if defined(CONFIG_AT91_CF) || defined(CONFIG_AT91_CF_MODULE)
195 static struct at91_cf_data cf_data;
197 static struct resource at91_cf_resources[] = {
199 .start = AT91_CF_BASE,
200 /* ties up CS4, CS5, and CS6 */
201 .end = AT91_CF_BASE + (0x30000000 - 1),
202 .flags = IORESOURCE_MEM | IORESOURCE_MEM_8AND16BIT,
206 static struct platform_device at91rm9200_cf_device = {
210 .platform_data = &cf_data,
212 .resource = at91_cf_resources,
213 .num_resources = ARRAY_SIZE(at91_cf_resources),
216 void __init at91_add_device_cf(struct at91_cf_data *data)
223 at91_set_gpio_input(data->irq_pin, 1);
224 at91_set_deglitch(data->irq_pin, 1);
226 at91_set_gpio_input(data->det_pin, 1);
227 at91_set_deglitch(data->det_pin, 1);
229 /* outputs, initially off */
231 at91_set_gpio_output(data->vcc_pin, 0);
232 at91_set_gpio_output(data->rst_pin, 0);
235 platform_device_register(&at91rm9200_cf_device);
238 void __init at91_add_device_cf(struct at91_cf_data *data) {}
242 /* --------------------------------------------------------------------
244 * -------------------------------------------------------------------- */
246 #if defined(CONFIG_MMC_AT91RM9200) || defined(CONFIG_MMC_AT91RM9200_MODULE)
247 static u64 mmc_dmamask = 0xffffffffUL;
248 static struct at91_mmc_data mmc_data;
250 static struct resource at91_mmc_resources[] = {
252 .start = AT91_BASE_MCI,
253 .end = AT91_BASE_MCI + SZ_16K - 1,
254 .flags = IORESOURCE_MEM,
257 .start = AT91_ID_MCI,
259 .flags = IORESOURCE_IRQ,
263 static struct platform_device at91rm9200_mmc_device = {
267 .dma_mask = &mmc_dmamask,
268 .coherent_dma_mask = 0xffffffff,
269 .platform_data = &mmc_data,
271 .resource = at91_mmc_resources,
272 .num_resources = ARRAY_SIZE(at91_mmc_resources),
275 void __init at91_add_device_mmc(struct at91_mmc_data *data)
282 at91_set_gpio_input(data->det_pin, 1);
283 at91_set_deglitch(data->det_pin, 1);
286 at91_set_gpio_input(data->wp_pin, 1);
289 at91_set_A_periph(AT91_PIN_PA27, 0);
293 at91_set_B_periph(AT91_PIN_PA8, 0);
295 /* DAT0, maybe DAT1..DAT3 */
296 at91_set_B_periph(AT91_PIN_PA9, 0);
298 at91_set_B_periph(AT91_PIN_PA10, 0);
299 at91_set_B_periph(AT91_PIN_PA11, 0);
300 at91_set_B_periph(AT91_PIN_PA12, 0);
304 at91_set_A_periph(AT91_PIN_PA28, 0);
306 /* DAT0, maybe DAT1..DAT3 */
307 at91_set_A_periph(AT91_PIN_PA29, 0);
309 at91_set_B_periph(AT91_PIN_PB3, 0);
310 at91_set_B_periph(AT91_PIN_PB4, 0);
311 at91_set_B_periph(AT91_PIN_PB5, 0);
316 platform_device_register(&at91rm9200_mmc_device);
319 void __init at91_add_device_mmc(struct at91_mmc_data *data) {}
322 /* --------------------------------------------------------------------
324 * -------------------------------------------------------------------- */
326 #if defined(CONFIG_MTD_NAND_AT91) || defined(CONFIG_MTD_NAND_AT91_MODULE)
327 static struct at91_nand_data nand_data;
329 static struct resource at91_nand_resources[] = {
331 .start = AT91_SMARTMEDIA_BASE,
332 .end = AT91_SMARTMEDIA_BASE + SZ_8M - 1,
333 .flags = IORESOURCE_MEM,
337 static struct platform_device at91_nand_device = {
341 .platform_data = &nand_data,
343 .resource = at91_nand_resources,
344 .num_resources = ARRAY_SIZE(at91_nand_resources),
347 void __init at91_add_device_nand(struct at91_nand_data *data)
353 if (data->enable_pin)
354 at91_set_gpio_output(data->enable_pin, 1);
358 at91_set_gpio_input(data->rdy_pin, 1);
360 /* card detect pin */
362 at91_set_gpio_input(data->det_pin, 1);
364 at91_set_A_periph(AT91_PIN_PC1, 0); /* SMOE */
365 at91_set_A_periph(AT91_PIN_PC3, 0); /* SMWE */
368 platform_device_register(&at91_nand_device);
371 void __init at91_add_device_nand(struct at91_nand_data *data) {}
375 /* --------------------------------------------------------------------
377 * -------------------------------------------------------------------- */
379 #if defined(CONFIG_I2C_AT91) || defined(CONFIG_I2C_AT91_MODULE)
380 static struct platform_device at91rm9200_twi_device = {
386 void __init at91_add_device_i2c(void)
388 /* pins used for TWI interface */
389 at91_set_A_periph(AT91_PIN_PA25, 0); /* TWD */
390 at91_set_multi_drive(AT91_PIN_PA25, 1);
392 at91_set_A_periph(AT91_PIN_PA26, 0); /* TWCK */
393 at91_set_multi_drive(AT91_PIN_PA26, 1);
395 platform_device_register(&at91rm9200_twi_device);
398 void __init at91_add_device_i2c(void) {}
402 /* --------------------------------------------------------------------
404 * -------------------------------------------------------------------- */
406 #if defined(CONFIG_AT91_RTC) || defined(CONFIG_AT91_RTC_MODULE)
407 static struct platform_device at91rm9200_rtc_device = {
413 void __init at91_add_device_rtc(void)
415 platform_device_register(&at91rm9200_rtc_device);
418 void __init at91_add_device_rtc(void) {}
422 /* --------------------------------------------------------------------
424 * -------------------------------------------------------------------- */
426 #if defined(CONFIG_LEDS)
430 void __init at91_init_leds(u8 cpu_led, u8 timer_led)
432 at91_leds_cpu = cpu_led;
433 at91_leds_timer = timer_led;
437 void __init at91_init_leds(u8 cpu_led, u8 timer_led) {}
441 /* -------------------------------------------------------------------- */