blk: rq_data_dir() should not return a boolean
[cris-mirror.git] / arch / arm / mach-pxa / devices.c
blobc62473235a1332b3c7211a408b9a4501b116c211
1 #include <linux/module.h>
2 #include <linux/kernel.h>
3 #include <linux/init.h>
4 #include <linux/platform_device.h>
5 #include <linux/dma-mapping.h>
6 #include <linux/spi/pxa2xx_spi.h>
7 #include <linux/i2c/pxa-i2c.h>
9 #include <mach/udc.h>
10 #include <linux/platform_data/usb-pxa3xx-ulpi.h>
11 #include <linux/platform_data/video-pxafb.h>
12 #include <linux/platform_data/mmc-pxamci.h>
13 #include <linux/platform_data/irda-pxaficp.h>
14 #include <mach/irqs.h>
15 #include <linux/platform_data/usb-ohci-pxa27x.h>
16 #include <linux/platform_data/keypad-pxa27x.h>
17 #include <linux/platform_data/camera-pxa.h>
18 #include <mach/audio.h>
19 #include <mach/hardware.h>
20 #include <linux/platform_data/mmp_dma.h>
21 #include <linux/platform_data/mtd-nand-pxa3xx.h>
23 #include "devices.h"
24 #include "generic.h"
26 void __init pxa_register_device(struct platform_device *dev, void *data)
28 int ret;
30 dev->dev.platform_data = data;
32 ret = platform_device_register(dev);
33 if (ret)
34 dev_err(&dev->dev, "unable to register device: %d\n", ret);
37 static struct resource pxa_resource_pmu = {
38 .start = IRQ_PMU,
39 .end = IRQ_PMU,
40 .flags = IORESOURCE_IRQ,
43 struct platform_device pxa_device_pmu = {
44 .name = "xscale-pmu",
45 .id = -1,
46 .resource = &pxa_resource_pmu,
47 .num_resources = 1,
50 static struct resource pxamci_resources[] = {
51 [0] = {
52 .start = 0x41100000,
53 .end = 0x41100fff,
54 .flags = IORESOURCE_MEM,
56 [1] = {
57 .start = IRQ_MMC,
58 .end = IRQ_MMC,
59 .flags = IORESOURCE_IRQ,
61 [2] = {
62 .start = 21,
63 .end = 21,
64 .flags = IORESOURCE_DMA,
66 [3] = {
67 .start = 22,
68 .end = 22,
69 .flags = IORESOURCE_DMA,
73 static u64 pxamci_dmamask = 0xffffffffUL;
75 struct platform_device pxa_device_mci = {
76 .name = "pxa2xx-mci",
77 .id = 0,
78 .dev = {
79 .dma_mask = &pxamci_dmamask,
80 .coherent_dma_mask = 0xffffffff,
82 .num_resources = ARRAY_SIZE(pxamci_resources),
83 .resource = pxamci_resources,
86 void __init pxa_set_mci_info(struct pxamci_platform_data *info)
88 pxa_register_device(&pxa_device_mci, info);
92 static struct pxa2xx_udc_mach_info pxa_udc_info = {
93 .gpio_pullup = -1,
96 void __init pxa_set_udc_info(struct pxa2xx_udc_mach_info *info)
98 memcpy(&pxa_udc_info, info, sizeof *info);
101 static struct resource pxa2xx_udc_resources[] = {
102 [0] = {
103 .start = 0x40600000,
104 .end = 0x4060ffff,
105 .flags = IORESOURCE_MEM,
107 [1] = {
108 .start = IRQ_USB,
109 .end = IRQ_USB,
110 .flags = IORESOURCE_IRQ,
114 static u64 udc_dma_mask = ~(u32)0;
116 struct platform_device pxa25x_device_udc = {
117 .name = "pxa25x-udc",
118 .id = -1,
119 .resource = pxa2xx_udc_resources,
120 .num_resources = ARRAY_SIZE(pxa2xx_udc_resources),
121 .dev = {
122 .platform_data = &pxa_udc_info,
123 .dma_mask = &udc_dma_mask,
127 struct platform_device pxa27x_device_udc = {
128 .name = "pxa27x-udc",
129 .id = -1,
130 .resource = pxa2xx_udc_resources,
131 .num_resources = ARRAY_SIZE(pxa2xx_udc_resources),
132 .dev = {
133 .platform_data = &pxa_udc_info,
134 .dma_mask = &udc_dma_mask,
138 #ifdef CONFIG_PXA3xx
139 static struct resource pxa3xx_u2d_resources[] = {
140 [0] = {
141 .start = 0x54100000,
142 .end = 0x54100fff,
143 .flags = IORESOURCE_MEM,
145 [1] = {
146 .start = IRQ_USB2,
147 .end = IRQ_USB2,
148 .flags = IORESOURCE_IRQ,
152 struct platform_device pxa3xx_device_u2d = {
153 .name = "pxa3xx-u2d",
154 .id = -1,
155 .resource = pxa3xx_u2d_resources,
156 .num_resources = ARRAY_SIZE(pxa3xx_u2d_resources),
159 void __init pxa3xx_set_u2d_info(struct pxa3xx_u2d_platform_data *info)
161 pxa_register_device(&pxa3xx_device_u2d, info);
163 #endif /* CONFIG_PXA3xx */
165 static struct resource pxafb_resources[] = {
166 [0] = {
167 .start = 0x44000000,
168 .end = 0x4400ffff,
169 .flags = IORESOURCE_MEM,
171 [1] = {
172 .start = IRQ_LCD,
173 .end = IRQ_LCD,
174 .flags = IORESOURCE_IRQ,
178 static u64 fb_dma_mask = ~(u64)0;
180 struct platform_device pxa_device_fb = {
181 .name = "pxa2xx-fb",
182 .id = -1,
183 .dev = {
184 .dma_mask = &fb_dma_mask,
185 .coherent_dma_mask = 0xffffffff,
187 .num_resources = ARRAY_SIZE(pxafb_resources),
188 .resource = pxafb_resources,
191 void __init pxa_set_fb_info(struct device *parent, struct pxafb_mach_info *info)
193 pxa_device_fb.dev.parent = parent;
194 pxa_register_device(&pxa_device_fb, info);
197 static struct resource pxa_resource_ffuart[] = {
199 .start = 0x40100000,
200 .end = 0x40100023,
201 .flags = IORESOURCE_MEM,
202 }, {
203 .start = IRQ_FFUART,
204 .end = IRQ_FFUART,
205 .flags = IORESOURCE_IRQ,
209 struct platform_device pxa_device_ffuart = {
210 .name = "pxa2xx-uart",
211 .id = 0,
212 .resource = pxa_resource_ffuart,
213 .num_resources = ARRAY_SIZE(pxa_resource_ffuart),
216 void __init pxa_set_ffuart_info(void *info)
218 pxa_register_device(&pxa_device_ffuart, info);
221 static struct resource pxa_resource_btuart[] = {
223 .start = 0x40200000,
224 .end = 0x40200023,
225 .flags = IORESOURCE_MEM,
226 }, {
227 .start = IRQ_BTUART,
228 .end = IRQ_BTUART,
229 .flags = IORESOURCE_IRQ,
233 struct platform_device pxa_device_btuart = {
234 .name = "pxa2xx-uart",
235 .id = 1,
236 .resource = pxa_resource_btuart,
237 .num_resources = ARRAY_SIZE(pxa_resource_btuart),
240 void __init pxa_set_btuart_info(void *info)
242 pxa_register_device(&pxa_device_btuart, info);
245 static struct resource pxa_resource_stuart[] = {
247 .start = 0x40700000,
248 .end = 0x40700023,
249 .flags = IORESOURCE_MEM,
250 }, {
251 .start = IRQ_STUART,
252 .end = IRQ_STUART,
253 .flags = IORESOURCE_IRQ,
257 struct platform_device pxa_device_stuart = {
258 .name = "pxa2xx-uart",
259 .id = 2,
260 .resource = pxa_resource_stuart,
261 .num_resources = ARRAY_SIZE(pxa_resource_stuart),
264 void __init pxa_set_stuart_info(void *info)
266 pxa_register_device(&pxa_device_stuart, info);
269 static struct resource pxa_resource_hwuart[] = {
271 .start = 0x41600000,
272 .end = 0x4160002F,
273 .flags = IORESOURCE_MEM,
274 }, {
275 .start = IRQ_HWUART,
276 .end = IRQ_HWUART,
277 .flags = IORESOURCE_IRQ,
281 struct platform_device pxa_device_hwuart = {
282 .name = "pxa2xx-uart",
283 .id = 3,
284 .resource = pxa_resource_hwuart,
285 .num_resources = ARRAY_SIZE(pxa_resource_hwuart),
288 void __init pxa_set_hwuart_info(void *info)
290 if (cpu_is_pxa255())
291 pxa_register_device(&pxa_device_hwuart, info);
292 else
293 pr_info("UART: Ignoring attempt to register HWUART on non-PXA255 hardware");
296 static struct resource pxai2c_resources[] = {
298 .start = 0x40301680,
299 .end = 0x403016a3,
300 .flags = IORESOURCE_MEM,
301 }, {
302 .start = IRQ_I2C,
303 .end = IRQ_I2C,
304 .flags = IORESOURCE_IRQ,
308 struct platform_device pxa_device_i2c = {
309 .name = "pxa2xx-i2c",
310 .id = 0,
311 .resource = pxai2c_resources,
312 .num_resources = ARRAY_SIZE(pxai2c_resources),
315 void __init pxa_set_i2c_info(struct i2c_pxa_platform_data *info)
317 pxa_register_device(&pxa_device_i2c, info);
320 #ifdef CONFIG_PXA27x
321 static struct resource pxa27x_resources_i2c_power[] = {
323 .start = 0x40f00180,
324 .end = 0x40f001a3,
325 .flags = IORESOURCE_MEM,
326 }, {
327 .start = IRQ_PWRI2C,
328 .end = IRQ_PWRI2C,
329 .flags = IORESOURCE_IRQ,
333 struct platform_device pxa27x_device_i2c_power = {
334 .name = "pxa2xx-i2c",
335 .id = 1,
336 .resource = pxa27x_resources_i2c_power,
337 .num_resources = ARRAY_SIZE(pxa27x_resources_i2c_power),
339 #endif
341 static struct resource pxai2s_resources[] = {
343 .start = 0x40400000,
344 .end = 0x40400083,
345 .flags = IORESOURCE_MEM,
346 }, {
347 .start = IRQ_I2S,
348 .end = IRQ_I2S,
349 .flags = IORESOURCE_IRQ,
353 struct platform_device pxa_device_i2s = {
354 .name = "pxa2xx-i2s",
355 .id = -1,
356 .resource = pxai2s_resources,
357 .num_resources = ARRAY_SIZE(pxai2s_resources),
360 struct platform_device pxa_device_asoc_ssp1 = {
361 .name = "pxa-ssp-dai",
362 .id = 0,
365 struct platform_device pxa_device_asoc_ssp2= {
366 .name = "pxa-ssp-dai",
367 .id = 1,
370 struct platform_device pxa_device_asoc_ssp3 = {
371 .name = "pxa-ssp-dai",
372 .id = 2,
375 struct platform_device pxa_device_asoc_ssp4 = {
376 .name = "pxa-ssp-dai",
377 .id = 3,
380 struct platform_device pxa_device_asoc_platform = {
381 .name = "pxa-pcm-audio",
382 .id = -1,
385 static u64 pxaficp_dmamask = ~(u32)0;
387 static struct resource pxa_ir_resources[] = {
388 [0] = {
389 .start = IRQ_STUART,
390 .end = IRQ_STUART,
391 .flags = IORESOURCE_IRQ,
393 [1] = {
394 .start = IRQ_ICP,
395 .end = IRQ_ICP,
396 .flags = IORESOURCE_IRQ,
400 struct platform_device pxa_device_ficp = {
401 .name = "pxa2xx-ir",
402 .id = -1,
403 .num_resources = ARRAY_SIZE(pxa_ir_resources),
404 .resource = pxa_ir_resources,
405 .dev = {
406 .dma_mask = &pxaficp_dmamask,
407 .coherent_dma_mask = 0xffffffff,
411 void __init pxa_set_ficp_info(struct pxaficp_platform_data *info)
413 pxa_register_device(&pxa_device_ficp, info);
416 static struct resource pxa_rtc_resources[] = {
417 [0] = {
418 .start = 0x40900000,
419 .end = 0x40900000 + 0x3b,
420 .flags = IORESOURCE_MEM,
422 [1] = {
423 .start = IRQ_RTC1Hz,
424 .end = IRQ_RTC1Hz,
425 .name = "rtc 1Hz",
426 .flags = IORESOURCE_IRQ,
428 [2] = {
429 .start = IRQ_RTCAlrm,
430 .end = IRQ_RTCAlrm,
431 .name = "rtc alarm",
432 .flags = IORESOURCE_IRQ,
436 struct platform_device pxa_device_rtc = {
437 .name = "pxa-rtc",
438 .id = -1,
439 .num_resources = ARRAY_SIZE(pxa_rtc_resources),
440 .resource = pxa_rtc_resources,
443 struct platform_device sa1100_device_rtc = {
444 .name = "sa1100-rtc",
445 .id = -1,
446 .num_resources = ARRAY_SIZE(pxa_rtc_resources),
447 .resource = pxa_rtc_resources,
450 static struct resource pxa_ac97_resources[] = {
451 [0] = {
452 .start = 0x40500000,
453 .end = 0x40500000 + 0xfff,
454 .flags = IORESOURCE_MEM,
456 [1] = {
457 .start = IRQ_AC97,
458 .end = IRQ_AC97,
459 .flags = IORESOURCE_IRQ,
463 static u64 pxa_ac97_dmamask = 0xffffffffUL;
465 struct platform_device pxa_device_ac97 = {
466 .name = "pxa2xx-ac97",
467 .id = -1,
468 .dev = {
469 .dma_mask = &pxa_ac97_dmamask,
470 .coherent_dma_mask = 0xffffffff,
472 .num_resources = ARRAY_SIZE(pxa_ac97_resources),
473 .resource = pxa_ac97_resources,
476 void __init pxa_set_ac97_info(pxa2xx_audio_ops_t *ops)
478 pxa_register_device(&pxa_device_ac97, ops);
481 #ifdef CONFIG_PXA25x
483 static struct resource pxa25x_resource_pwm0[] = {
484 [0] = {
485 .start = 0x40b00000,
486 .end = 0x40b0000f,
487 .flags = IORESOURCE_MEM,
491 struct platform_device pxa25x_device_pwm0 = {
492 .name = "pxa25x-pwm",
493 .id = 0,
494 .resource = pxa25x_resource_pwm0,
495 .num_resources = ARRAY_SIZE(pxa25x_resource_pwm0),
498 static struct resource pxa25x_resource_pwm1[] = {
499 [0] = {
500 .start = 0x40c00000,
501 .end = 0x40c0000f,
502 .flags = IORESOURCE_MEM,
506 struct platform_device pxa25x_device_pwm1 = {
507 .name = "pxa25x-pwm",
508 .id = 1,
509 .resource = pxa25x_resource_pwm1,
510 .num_resources = ARRAY_SIZE(pxa25x_resource_pwm1),
513 static u64 pxa25x_ssp_dma_mask = DMA_BIT_MASK(32);
515 static struct resource pxa25x_resource_ssp[] = {
516 [0] = {
517 .start = 0x41000000,
518 .end = 0x4100001f,
519 .flags = IORESOURCE_MEM,
521 [1] = {
522 .start = IRQ_SSP,
523 .end = IRQ_SSP,
524 .flags = IORESOURCE_IRQ,
526 [2] = {
527 /* DRCMR for RX */
528 .start = 13,
529 .end = 13,
530 .flags = IORESOURCE_DMA,
532 [3] = {
533 /* DRCMR for TX */
534 .start = 14,
535 .end = 14,
536 .flags = IORESOURCE_DMA,
540 struct platform_device pxa25x_device_ssp = {
541 .name = "pxa25x-ssp",
542 .id = 0,
543 .dev = {
544 .dma_mask = &pxa25x_ssp_dma_mask,
545 .coherent_dma_mask = DMA_BIT_MASK(32),
547 .resource = pxa25x_resource_ssp,
548 .num_resources = ARRAY_SIZE(pxa25x_resource_ssp),
551 static u64 pxa25x_nssp_dma_mask = DMA_BIT_MASK(32);
553 static struct resource pxa25x_resource_nssp[] = {
554 [0] = {
555 .start = 0x41400000,
556 .end = 0x4140002f,
557 .flags = IORESOURCE_MEM,
559 [1] = {
560 .start = IRQ_NSSP,
561 .end = IRQ_NSSP,
562 .flags = IORESOURCE_IRQ,
564 [2] = {
565 /* DRCMR for RX */
566 .start = 15,
567 .end = 15,
568 .flags = IORESOURCE_DMA,
570 [3] = {
571 /* DRCMR for TX */
572 .start = 16,
573 .end = 16,
574 .flags = IORESOURCE_DMA,
578 struct platform_device pxa25x_device_nssp = {
579 .name = "pxa25x-nssp",
580 .id = 1,
581 .dev = {
582 .dma_mask = &pxa25x_nssp_dma_mask,
583 .coherent_dma_mask = DMA_BIT_MASK(32),
585 .resource = pxa25x_resource_nssp,
586 .num_resources = ARRAY_SIZE(pxa25x_resource_nssp),
589 static u64 pxa25x_assp_dma_mask = DMA_BIT_MASK(32);
591 static struct resource pxa25x_resource_assp[] = {
592 [0] = {
593 .start = 0x41500000,
594 .end = 0x4150002f,
595 .flags = IORESOURCE_MEM,
597 [1] = {
598 .start = IRQ_ASSP,
599 .end = IRQ_ASSP,
600 .flags = IORESOURCE_IRQ,
602 [2] = {
603 /* DRCMR for RX */
604 .start = 23,
605 .end = 23,
606 .flags = IORESOURCE_DMA,
608 [3] = {
609 /* DRCMR for TX */
610 .start = 24,
611 .end = 24,
612 .flags = IORESOURCE_DMA,
616 struct platform_device pxa25x_device_assp = {
617 /* ASSP is basically equivalent to NSSP */
618 .name = "pxa25x-nssp",
619 .id = 2,
620 .dev = {
621 .dma_mask = &pxa25x_assp_dma_mask,
622 .coherent_dma_mask = DMA_BIT_MASK(32),
624 .resource = pxa25x_resource_assp,
625 .num_resources = ARRAY_SIZE(pxa25x_resource_assp),
627 #endif /* CONFIG_PXA25x */
629 #if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
630 static struct resource pxa27x_resource_camera[] = {
631 [0] = {
632 .start = 0x50000000,
633 .end = 0x50000fff,
634 .flags = IORESOURCE_MEM,
636 [1] = {
637 .start = IRQ_CAMERA,
638 .end = IRQ_CAMERA,
639 .flags = IORESOURCE_IRQ,
643 static u64 pxa27x_dma_mask_camera = DMA_BIT_MASK(32);
645 static struct platform_device pxa27x_device_camera = {
646 .name = "pxa27x-camera",
647 .id = 0, /* This is used to put cameras on this interface */
648 .dev = {
649 .dma_mask = &pxa27x_dma_mask_camera,
650 .coherent_dma_mask = 0xffffffff,
652 .num_resources = ARRAY_SIZE(pxa27x_resource_camera),
653 .resource = pxa27x_resource_camera,
656 void __init pxa_set_camera_info(struct pxacamera_platform_data *info)
658 pxa_register_device(&pxa27x_device_camera, info);
661 static u64 pxa27x_ohci_dma_mask = DMA_BIT_MASK(32);
663 static struct resource pxa27x_resource_ohci[] = {
664 [0] = {
665 .start = 0x4C000000,
666 .end = 0x4C00ff6f,
667 .flags = IORESOURCE_MEM,
669 [1] = {
670 .start = IRQ_USBH1,
671 .end = IRQ_USBH1,
672 .flags = IORESOURCE_IRQ,
676 struct platform_device pxa27x_device_ohci = {
677 .name = "pxa27x-ohci",
678 .id = -1,
679 .dev = {
680 .dma_mask = &pxa27x_ohci_dma_mask,
681 .coherent_dma_mask = DMA_BIT_MASK(32),
683 .num_resources = ARRAY_SIZE(pxa27x_resource_ohci),
684 .resource = pxa27x_resource_ohci,
687 void __init pxa_set_ohci_info(struct pxaohci_platform_data *info)
689 pxa_register_device(&pxa27x_device_ohci, info);
691 #endif /* CONFIG_PXA27x || CONFIG_PXA3xx */
693 #if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
694 static struct resource pxa27x_resource_keypad[] = {
695 [0] = {
696 .start = 0x41500000,
697 .end = 0x4150004c,
698 .flags = IORESOURCE_MEM,
700 [1] = {
701 .start = IRQ_KEYPAD,
702 .end = IRQ_KEYPAD,
703 .flags = IORESOURCE_IRQ,
707 struct platform_device pxa27x_device_keypad = {
708 .name = "pxa27x-keypad",
709 .id = -1,
710 .resource = pxa27x_resource_keypad,
711 .num_resources = ARRAY_SIZE(pxa27x_resource_keypad),
714 void __init pxa_set_keypad_info(struct pxa27x_keypad_platform_data *info)
716 pxa_register_device(&pxa27x_device_keypad, info);
719 static u64 pxa27x_ssp1_dma_mask = DMA_BIT_MASK(32);
721 static struct resource pxa27x_resource_ssp1[] = {
722 [0] = {
723 .start = 0x41000000,
724 .end = 0x4100003f,
725 .flags = IORESOURCE_MEM,
727 [1] = {
728 .start = IRQ_SSP,
729 .end = IRQ_SSP,
730 .flags = IORESOURCE_IRQ,
732 [2] = {
733 /* DRCMR for RX */
734 .start = 13,
735 .end = 13,
736 .flags = IORESOURCE_DMA,
738 [3] = {
739 /* DRCMR for TX */
740 .start = 14,
741 .end = 14,
742 .flags = IORESOURCE_DMA,
746 struct platform_device pxa27x_device_ssp1 = {
747 .name = "pxa27x-ssp",
748 .id = 0,
749 .dev = {
750 .dma_mask = &pxa27x_ssp1_dma_mask,
751 .coherent_dma_mask = DMA_BIT_MASK(32),
753 .resource = pxa27x_resource_ssp1,
754 .num_resources = ARRAY_SIZE(pxa27x_resource_ssp1),
757 static u64 pxa27x_ssp2_dma_mask = DMA_BIT_MASK(32);
759 static struct resource pxa27x_resource_ssp2[] = {
760 [0] = {
761 .start = 0x41700000,
762 .end = 0x4170003f,
763 .flags = IORESOURCE_MEM,
765 [1] = {
766 .start = IRQ_SSP2,
767 .end = IRQ_SSP2,
768 .flags = IORESOURCE_IRQ,
770 [2] = {
771 /* DRCMR for RX */
772 .start = 15,
773 .end = 15,
774 .flags = IORESOURCE_DMA,
776 [3] = {
777 /* DRCMR for TX */
778 .start = 16,
779 .end = 16,
780 .flags = IORESOURCE_DMA,
784 struct platform_device pxa27x_device_ssp2 = {
785 .name = "pxa27x-ssp",
786 .id = 1,
787 .dev = {
788 .dma_mask = &pxa27x_ssp2_dma_mask,
789 .coherent_dma_mask = DMA_BIT_MASK(32),
791 .resource = pxa27x_resource_ssp2,
792 .num_resources = ARRAY_SIZE(pxa27x_resource_ssp2),
795 static u64 pxa27x_ssp3_dma_mask = DMA_BIT_MASK(32);
797 static struct resource pxa27x_resource_ssp3[] = {
798 [0] = {
799 .start = 0x41900000,
800 .end = 0x4190003f,
801 .flags = IORESOURCE_MEM,
803 [1] = {
804 .start = IRQ_SSP3,
805 .end = IRQ_SSP3,
806 .flags = IORESOURCE_IRQ,
808 [2] = {
809 /* DRCMR for RX */
810 .start = 66,
811 .end = 66,
812 .flags = IORESOURCE_DMA,
814 [3] = {
815 /* DRCMR for TX */
816 .start = 67,
817 .end = 67,
818 .flags = IORESOURCE_DMA,
822 struct platform_device pxa27x_device_ssp3 = {
823 .name = "pxa27x-ssp",
824 .id = 2,
825 .dev = {
826 .dma_mask = &pxa27x_ssp3_dma_mask,
827 .coherent_dma_mask = DMA_BIT_MASK(32),
829 .resource = pxa27x_resource_ssp3,
830 .num_resources = ARRAY_SIZE(pxa27x_resource_ssp3),
833 static struct resource pxa27x_resource_pwm0[] = {
834 [0] = {
835 .start = 0x40b00000,
836 .end = 0x40b0001f,
837 .flags = IORESOURCE_MEM,
841 struct platform_device pxa27x_device_pwm0 = {
842 .name = "pxa27x-pwm",
843 .id = 0,
844 .resource = pxa27x_resource_pwm0,
845 .num_resources = ARRAY_SIZE(pxa27x_resource_pwm0),
848 static struct resource pxa27x_resource_pwm1[] = {
849 [0] = {
850 .start = 0x40c00000,
851 .end = 0x40c0001f,
852 .flags = IORESOURCE_MEM,
856 struct platform_device pxa27x_device_pwm1 = {
857 .name = "pxa27x-pwm",
858 .id = 1,
859 .resource = pxa27x_resource_pwm1,
860 .num_resources = ARRAY_SIZE(pxa27x_resource_pwm1),
862 #endif /* CONFIG_PXA27x || CONFIG_PXA3xx */
864 #ifdef CONFIG_PXA3xx
865 static struct resource pxa3xx_resources_mci2[] = {
866 [0] = {
867 .start = 0x42000000,
868 .end = 0x42000fff,
869 .flags = IORESOURCE_MEM,
871 [1] = {
872 .start = IRQ_MMC2,
873 .end = IRQ_MMC2,
874 .flags = IORESOURCE_IRQ,
876 [2] = {
877 .start = 93,
878 .end = 93,
879 .flags = IORESOURCE_DMA,
881 [3] = {
882 .start = 94,
883 .end = 94,
884 .flags = IORESOURCE_DMA,
888 struct platform_device pxa3xx_device_mci2 = {
889 .name = "pxa2xx-mci",
890 .id = 1,
891 .dev = {
892 .dma_mask = &pxamci_dmamask,
893 .coherent_dma_mask = 0xffffffff,
895 .num_resources = ARRAY_SIZE(pxa3xx_resources_mci2),
896 .resource = pxa3xx_resources_mci2,
899 void __init pxa3xx_set_mci2_info(struct pxamci_platform_data *info)
901 pxa_register_device(&pxa3xx_device_mci2, info);
904 static struct resource pxa3xx_resources_mci3[] = {
905 [0] = {
906 .start = 0x42500000,
907 .end = 0x42500fff,
908 .flags = IORESOURCE_MEM,
910 [1] = {
911 .start = IRQ_MMC3,
912 .end = IRQ_MMC3,
913 .flags = IORESOURCE_IRQ,
915 [2] = {
916 .start = 100,
917 .end = 100,
918 .flags = IORESOURCE_DMA,
920 [3] = {
921 .start = 101,
922 .end = 101,
923 .flags = IORESOURCE_DMA,
927 struct platform_device pxa3xx_device_mci3 = {
928 .name = "pxa2xx-mci",
929 .id = 2,
930 .dev = {
931 .dma_mask = &pxamci_dmamask,
932 .coherent_dma_mask = 0xffffffff,
934 .num_resources = ARRAY_SIZE(pxa3xx_resources_mci3),
935 .resource = pxa3xx_resources_mci3,
938 void __init pxa3xx_set_mci3_info(struct pxamci_platform_data *info)
940 pxa_register_device(&pxa3xx_device_mci3, info);
943 static struct resource pxa3xx_resources_gcu[] = {
945 .start = 0x54000000,
946 .end = 0x54000fff,
947 .flags = IORESOURCE_MEM,
950 .start = IRQ_GCU,
951 .end = IRQ_GCU,
952 .flags = IORESOURCE_IRQ,
956 static u64 pxa3xx_gcu_dmamask = DMA_BIT_MASK(32);
958 struct platform_device pxa3xx_device_gcu = {
959 .name = "pxa3xx-gcu",
960 .id = -1,
961 .num_resources = ARRAY_SIZE(pxa3xx_resources_gcu),
962 .resource = pxa3xx_resources_gcu,
963 .dev = {
964 .dma_mask = &pxa3xx_gcu_dmamask,
965 .coherent_dma_mask = 0xffffffff,
969 #endif /* CONFIG_PXA3xx */
971 #if defined(CONFIG_PXA3xx)
972 static struct resource pxa3xx_resources_i2c_power[] = {
974 .start = 0x40f500c0,
975 .end = 0x40f500d3,
976 .flags = IORESOURCE_MEM,
977 }, {
978 .start = IRQ_PWRI2C,
979 .end = IRQ_PWRI2C,
980 .flags = IORESOURCE_IRQ,
984 struct platform_device pxa3xx_device_i2c_power = {
985 .name = "pxa3xx-pwri2c",
986 .id = 1,
987 .resource = pxa3xx_resources_i2c_power,
988 .num_resources = ARRAY_SIZE(pxa3xx_resources_i2c_power),
991 static struct resource pxa3xx_resources_nand[] = {
992 [0] = {
993 .start = 0x43100000,
994 .end = 0x43100053,
995 .flags = IORESOURCE_MEM,
997 [1] = {
998 .start = IRQ_NAND,
999 .end = IRQ_NAND,
1000 .flags = IORESOURCE_IRQ,
1002 [2] = {
1003 /* DRCMR for Data DMA */
1004 .start = 97,
1005 .end = 97,
1006 .flags = IORESOURCE_DMA,
1008 [3] = {
1009 /* DRCMR for Command DMA */
1010 .start = 99,
1011 .end = 99,
1012 .flags = IORESOURCE_DMA,
1016 static u64 pxa3xx_nand_dma_mask = DMA_BIT_MASK(32);
1018 struct platform_device pxa3xx_device_nand = {
1019 .name = "pxa3xx-nand",
1020 .id = -1,
1021 .dev = {
1022 .dma_mask = &pxa3xx_nand_dma_mask,
1023 .coherent_dma_mask = DMA_BIT_MASK(32),
1025 .num_resources = ARRAY_SIZE(pxa3xx_resources_nand),
1026 .resource = pxa3xx_resources_nand,
1029 void __init pxa3xx_set_nand_info(struct pxa3xx_nand_platform_data *info)
1031 pxa_register_device(&pxa3xx_device_nand, info);
1034 static u64 pxa3xx_ssp4_dma_mask = DMA_BIT_MASK(32);
1036 static struct resource pxa3xx_resource_ssp4[] = {
1037 [0] = {
1038 .start = 0x41a00000,
1039 .end = 0x41a0003f,
1040 .flags = IORESOURCE_MEM,
1042 [1] = {
1043 .start = IRQ_SSP4,
1044 .end = IRQ_SSP4,
1045 .flags = IORESOURCE_IRQ,
1047 [2] = {
1048 /* DRCMR for RX */
1049 .start = 2,
1050 .end = 2,
1051 .flags = IORESOURCE_DMA,
1053 [3] = {
1054 /* DRCMR for TX */
1055 .start = 3,
1056 .end = 3,
1057 .flags = IORESOURCE_DMA,
1062 * PXA3xx SSP is basically equivalent to PXA27x.
1063 * However, we need to register the device by the correct name in order to
1064 * make the driver set the correct internal type, hence we provide specific
1065 * platform_devices for each of them.
1067 struct platform_device pxa3xx_device_ssp1 = {
1068 .name = "pxa3xx-ssp",
1069 .id = 0,
1070 .dev = {
1071 .dma_mask = &pxa27x_ssp1_dma_mask,
1072 .coherent_dma_mask = DMA_BIT_MASK(32),
1074 .resource = pxa27x_resource_ssp1,
1075 .num_resources = ARRAY_SIZE(pxa27x_resource_ssp1),
1078 struct platform_device pxa3xx_device_ssp2 = {
1079 .name = "pxa3xx-ssp",
1080 .id = 1,
1081 .dev = {
1082 .dma_mask = &pxa27x_ssp2_dma_mask,
1083 .coherent_dma_mask = DMA_BIT_MASK(32),
1085 .resource = pxa27x_resource_ssp2,
1086 .num_resources = ARRAY_SIZE(pxa27x_resource_ssp2),
1089 struct platform_device pxa3xx_device_ssp3 = {
1090 .name = "pxa3xx-ssp",
1091 .id = 2,
1092 .dev = {
1093 .dma_mask = &pxa27x_ssp3_dma_mask,
1094 .coherent_dma_mask = DMA_BIT_MASK(32),
1096 .resource = pxa27x_resource_ssp3,
1097 .num_resources = ARRAY_SIZE(pxa27x_resource_ssp3),
1100 struct platform_device pxa3xx_device_ssp4 = {
1101 .name = "pxa3xx-ssp",
1102 .id = 3,
1103 .dev = {
1104 .dma_mask = &pxa3xx_ssp4_dma_mask,
1105 .coherent_dma_mask = DMA_BIT_MASK(32),
1107 .resource = pxa3xx_resource_ssp4,
1108 .num_resources = ARRAY_SIZE(pxa3xx_resource_ssp4),
1110 #endif /* CONFIG_PXA3xx */
1112 struct resource pxa_resource_gpio[] = {
1114 .start = 0x40e00000,
1115 .end = 0x40e0ffff,
1116 .flags = IORESOURCE_MEM,
1117 }, {
1118 .start = IRQ_GPIO0,
1119 .end = IRQ_GPIO0,
1120 .name = "gpio0",
1121 .flags = IORESOURCE_IRQ,
1122 }, {
1123 .start = IRQ_GPIO1,
1124 .end = IRQ_GPIO1,
1125 .name = "gpio1",
1126 .flags = IORESOURCE_IRQ,
1127 }, {
1128 .start = IRQ_GPIO_2_x,
1129 .end = IRQ_GPIO_2_x,
1130 .name = "gpio_mux",
1131 .flags = IORESOURCE_IRQ,
1135 struct platform_device pxa25x_device_gpio = {
1136 #ifdef CONFIG_CPU_PXA26x
1137 .name = "pxa26x-gpio",
1138 #else
1139 .name = "pxa25x-gpio",
1140 #endif
1141 .id = -1,
1142 .num_resources = ARRAY_SIZE(pxa_resource_gpio),
1143 .resource = pxa_resource_gpio,
1146 struct platform_device pxa27x_device_gpio = {
1147 .name = "pxa27x-gpio",
1148 .id = -1,
1149 .num_resources = ARRAY_SIZE(pxa_resource_gpio),
1150 .resource = pxa_resource_gpio,
1153 struct platform_device pxa3xx_device_gpio = {
1154 .name = "pxa3xx-gpio",
1155 .id = -1,
1156 .num_resources = ARRAY_SIZE(pxa_resource_gpio),
1157 .resource = pxa_resource_gpio,
1160 struct platform_device pxa93x_device_gpio = {
1161 .name = "pxa93x-gpio",
1162 .id = -1,
1163 .num_resources = ARRAY_SIZE(pxa_resource_gpio),
1164 .resource = pxa_resource_gpio,
1167 /* pxa2xx-spi platform-device ID equals respective SSP platform-device ID + 1.
1168 * See comment in arch/arm/mach-pxa/ssp.c::ssp_probe() */
1169 void __init pxa2xx_set_spi_info(unsigned id, struct pxa2xx_spi_master *info)
1171 struct platform_device *pd;
1173 pd = platform_device_alloc("pxa2xx-spi", id);
1174 if (pd == NULL) {
1175 printk(KERN_ERR "pxa2xx-spi: failed to allocate device id %d\n",
1176 id);
1177 return;
1180 pd->dev.platform_data = info;
1181 platform_device_add(pd);
1184 static struct mmp_dma_platdata pxa_dma_pdata = {
1185 .dma_channels = 0,
1188 static struct resource pxa_dma_resource[] = {
1189 [0] = {
1190 .start = 0x40000000,
1191 .end = 0x4000ffff,
1192 .flags = IORESOURCE_MEM,
1194 [1] = {
1195 .start = IRQ_DMA,
1196 .end = IRQ_DMA,
1197 .flags = IORESOURCE_IRQ,
1201 static u64 pxadma_dmamask = 0xffffffffUL;
1203 static struct platform_device pxa2xx_pxa_dma = {
1204 .name = "pxa-dma",
1205 .id = 0,
1206 .dev = {
1207 .dma_mask = &pxadma_dmamask,
1208 .coherent_dma_mask = 0xffffffff,
1210 .num_resources = ARRAY_SIZE(pxa_dma_resource),
1211 .resource = pxa_dma_resource,
1214 void __init pxa2xx_set_dmac_info(int nb_channels)
1216 pxa_dma_pdata.dma_channels = nb_channels;
1217 pxa_register_device(&pxa2xx_pxa_dma, &pxa_dma_pdata);