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>
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>
26 void __init
pxa_register_device(struct platform_device
*dev
, void *data
)
30 dev
->dev
.platform_data
= data
;
32 ret
= platform_device_register(dev
);
34 dev_err(&dev
->dev
, "unable to register device: %d\n", ret
);
37 static struct resource pxa_resource_pmu
= {
40 .flags
= IORESOURCE_IRQ
,
43 struct platform_device pxa_device_pmu
= {
46 .resource
= &pxa_resource_pmu
,
50 static struct resource pxamci_resources
[] = {
54 .flags
= IORESOURCE_MEM
,
59 .flags
= IORESOURCE_IRQ
,
64 .flags
= IORESOURCE_DMA
,
69 .flags
= IORESOURCE_DMA
,
73 static u64 pxamci_dmamask
= 0xffffffffUL
;
75 struct platform_device pxa_device_mci
= {
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
= {
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
[] = {
105 .flags
= IORESOURCE_MEM
,
110 .flags
= IORESOURCE_IRQ
,
114 static u64 udc_dma_mask
= ~(u32
)0;
116 struct platform_device pxa25x_device_udc
= {
117 .name
= "pxa25x-udc",
119 .resource
= pxa2xx_udc_resources
,
120 .num_resources
= ARRAY_SIZE(pxa2xx_udc_resources
),
122 .platform_data
= &pxa_udc_info
,
123 .dma_mask
= &udc_dma_mask
,
127 struct platform_device pxa27x_device_udc
= {
128 .name
= "pxa27x-udc",
130 .resource
= pxa2xx_udc_resources
,
131 .num_resources
= ARRAY_SIZE(pxa2xx_udc_resources
),
133 .platform_data
= &pxa_udc_info
,
134 .dma_mask
= &udc_dma_mask
,
139 static struct resource pxa3xx_u2d_resources
[] = {
143 .flags
= IORESOURCE_MEM
,
148 .flags
= IORESOURCE_IRQ
,
152 struct platform_device pxa3xx_device_u2d
= {
153 .name
= "pxa3xx-u2d",
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
[] = {
169 .flags
= IORESOURCE_MEM
,
174 .flags
= IORESOURCE_IRQ
,
178 static u64 fb_dma_mask
= ~(u64
)0;
180 struct platform_device pxa_device_fb
= {
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
[] = {
201 .flags
= IORESOURCE_MEM
,
205 .flags
= IORESOURCE_IRQ
,
209 struct platform_device pxa_device_ffuart
= {
210 .name
= "pxa2xx-uart",
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
[] = {
225 .flags
= IORESOURCE_MEM
,
229 .flags
= IORESOURCE_IRQ
,
233 struct platform_device pxa_device_btuart
= {
234 .name
= "pxa2xx-uart",
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
[] = {
249 .flags
= IORESOURCE_MEM
,
253 .flags
= IORESOURCE_IRQ
,
257 struct platform_device pxa_device_stuart
= {
258 .name
= "pxa2xx-uart",
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
[] = {
273 .flags
= IORESOURCE_MEM
,
277 .flags
= IORESOURCE_IRQ
,
281 struct platform_device pxa_device_hwuart
= {
282 .name
= "pxa2xx-uart",
284 .resource
= pxa_resource_hwuart
,
285 .num_resources
= ARRAY_SIZE(pxa_resource_hwuart
),
288 void __init
pxa_set_hwuart_info(void *info
)
291 pxa_register_device(&pxa_device_hwuart
, info
);
293 pr_info("UART: Ignoring attempt to register HWUART on non-PXA255 hardware");
296 static struct resource pxai2c_resources
[] = {
300 .flags
= IORESOURCE_MEM
,
304 .flags
= IORESOURCE_IRQ
,
308 struct platform_device pxa_device_i2c
= {
309 .name
= "pxa2xx-i2c",
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
);
321 static struct resource pxa27x_resources_i2c_power
[] = {
325 .flags
= IORESOURCE_MEM
,
329 .flags
= IORESOURCE_IRQ
,
333 struct platform_device pxa27x_device_i2c_power
= {
334 .name
= "pxa2xx-i2c",
336 .resource
= pxa27x_resources_i2c_power
,
337 .num_resources
= ARRAY_SIZE(pxa27x_resources_i2c_power
),
341 static struct resource pxai2s_resources
[] = {
345 .flags
= IORESOURCE_MEM
,
349 .flags
= IORESOURCE_IRQ
,
353 struct platform_device pxa_device_i2s
= {
354 .name
= "pxa2xx-i2s",
356 .resource
= pxai2s_resources
,
357 .num_resources
= ARRAY_SIZE(pxai2s_resources
),
360 struct platform_device pxa_device_asoc_ssp1
= {
361 .name
= "pxa-ssp-dai",
365 struct platform_device pxa_device_asoc_ssp2
= {
366 .name
= "pxa-ssp-dai",
370 struct platform_device pxa_device_asoc_ssp3
= {
371 .name
= "pxa-ssp-dai",
375 struct platform_device pxa_device_asoc_ssp4
= {
376 .name
= "pxa-ssp-dai",
380 struct platform_device pxa_device_asoc_platform
= {
381 .name
= "pxa-pcm-audio",
385 static u64 pxaficp_dmamask
= ~(u32
)0;
387 static struct resource pxa_ir_resources
[] = {
391 .flags
= IORESOURCE_IRQ
,
396 .flags
= IORESOURCE_IRQ
,
400 struct platform_device pxa_device_ficp
= {
403 .num_resources
= ARRAY_SIZE(pxa_ir_resources
),
404 .resource
= pxa_ir_resources
,
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
[] = {
419 .end
= 0x40900000 + 0x3b,
420 .flags
= IORESOURCE_MEM
,
426 .flags
= IORESOURCE_IRQ
,
429 .start
= IRQ_RTCAlrm
,
432 .flags
= IORESOURCE_IRQ
,
436 struct platform_device pxa_device_rtc
= {
439 .num_resources
= ARRAY_SIZE(pxa_rtc_resources
),
440 .resource
= pxa_rtc_resources
,
443 struct platform_device sa1100_device_rtc
= {
444 .name
= "sa1100-rtc",
446 .num_resources
= ARRAY_SIZE(pxa_rtc_resources
),
447 .resource
= pxa_rtc_resources
,
450 static struct resource pxa_ac97_resources
[] = {
453 .end
= 0x40500000 + 0xfff,
454 .flags
= IORESOURCE_MEM
,
459 .flags
= IORESOURCE_IRQ
,
463 static u64 pxa_ac97_dmamask
= 0xffffffffUL
;
465 struct platform_device pxa_device_ac97
= {
466 .name
= "pxa2xx-ac97",
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
);
483 static struct resource pxa25x_resource_pwm0
[] = {
487 .flags
= IORESOURCE_MEM
,
491 struct platform_device pxa25x_device_pwm0
= {
492 .name
= "pxa25x-pwm",
494 .resource
= pxa25x_resource_pwm0
,
495 .num_resources
= ARRAY_SIZE(pxa25x_resource_pwm0
),
498 static struct resource pxa25x_resource_pwm1
[] = {
502 .flags
= IORESOURCE_MEM
,
506 struct platform_device pxa25x_device_pwm1
= {
507 .name
= "pxa25x-pwm",
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
[] = {
519 .flags
= IORESOURCE_MEM
,
524 .flags
= IORESOURCE_IRQ
,
530 .flags
= IORESOURCE_DMA
,
536 .flags
= IORESOURCE_DMA
,
540 struct platform_device pxa25x_device_ssp
= {
541 .name
= "pxa25x-ssp",
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
[] = {
557 .flags
= IORESOURCE_MEM
,
562 .flags
= IORESOURCE_IRQ
,
568 .flags
= IORESOURCE_DMA
,
574 .flags
= IORESOURCE_DMA
,
578 struct platform_device pxa25x_device_nssp
= {
579 .name
= "pxa25x-nssp",
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
[] = {
595 .flags
= IORESOURCE_MEM
,
600 .flags
= IORESOURCE_IRQ
,
606 .flags
= IORESOURCE_DMA
,
612 .flags
= IORESOURCE_DMA
,
616 struct platform_device pxa25x_device_assp
= {
617 /* ASSP is basically equivalent to NSSP */
618 .name
= "pxa25x-nssp",
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
[] = {
634 .flags
= IORESOURCE_MEM
,
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 */
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
[] = {
667 .flags
= IORESOURCE_MEM
,
672 .flags
= IORESOURCE_IRQ
,
676 struct platform_device pxa27x_device_ohci
= {
677 .name
= "pxa27x-ohci",
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
[] = {
698 .flags
= IORESOURCE_MEM
,
703 .flags
= IORESOURCE_IRQ
,
707 struct platform_device pxa27x_device_keypad
= {
708 .name
= "pxa27x-keypad",
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
[] = {
725 .flags
= IORESOURCE_MEM
,
730 .flags
= IORESOURCE_IRQ
,
736 .flags
= IORESOURCE_DMA
,
742 .flags
= IORESOURCE_DMA
,
746 struct platform_device pxa27x_device_ssp1
= {
747 .name
= "pxa27x-ssp",
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
[] = {
763 .flags
= IORESOURCE_MEM
,
768 .flags
= IORESOURCE_IRQ
,
774 .flags
= IORESOURCE_DMA
,
780 .flags
= IORESOURCE_DMA
,
784 struct platform_device pxa27x_device_ssp2
= {
785 .name
= "pxa27x-ssp",
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
[] = {
801 .flags
= IORESOURCE_MEM
,
806 .flags
= IORESOURCE_IRQ
,
812 .flags
= IORESOURCE_DMA
,
818 .flags
= IORESOURCE_DMA
,
822 struct platform_device pxa27x_device_ssp3
= {
823 .name
= "pxa27x-ssp",
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
[] = {
837 .flags
= IORESOURCE_MEM
,
841 struct platform_device pxa27x_device_pwm0
= {
842 .name
= "pxa27x-pwm",
844 .resource
= pxa27x_resource_pwm0
,
845 .num_resources
= ARRAY_SIZE(pxa27x_resource_pwm0
),
848 static struct resource pxa27x_resource_pwm1
[] = {
852 .flags
= IORESOURCE_MEM
,
856 struct platform_device pxa27x_device_pwm1
= {
857 .name
= "pxa27x-pwm",
859 .resource
= pxa27x_resource_pwm1
,
860 .num_resources
= ARRAY_SIZE(pxa27x_resource_pwm1
),
862 #endif /* CONFIG_PXA27x || CONFIG_PXA3xx */
865 static struct resource pxa3xx_resources_mci2
[] = {
869 .flags
= IORESOURCE_MEM
,
874 .flags
= IORESOURCE_IRQ
,
879 .flags
= IORESOURCE_DMA
,
884 .flags
= IORESOURCE_DMA
,
888 struct platform_device pxa3xx_device_mci2
= {
889 .name
= "pxa2xx-mci",
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
[] = {
908 .flags
= IORESOURCE_MEM
,
913 .flags
= IORESOURCE_IRQ
,
918 .flags
= IORESOURCE_DMA
,
923 .flags
= IORESOURCE_DMA
,
927 struct platform_device pxa3xx_device_mci3
= {
928 .name
= "pxa2xx-mci",
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
[] = {
947 .flags
= IORESOURCE_MEM
,
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",
961 .num_resources
= ARRAY_SIZE(pxa3xx_resources_gcu
),
962 .resource
= pxa3xx_resources_gcu
,
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
[] = {
976 .flags
= IORESOURCE_MEM
,
980 .flags
= IORESOURCE_IRQ
,
984 struct platform_device pxa3xx_device_i2c_power
= {
985 .name
= "pxa3xx-pwri2c",
987 .resource
= pxa3xx_resources_i2c_power
,
988 .num_resources
= ARRAY_SIZE(pxa3xx_resources_i2c_power
),
991 static struct resource pxa3xx_resources_nand
[] = {
995 .flags
= IORESOURCE_MEM
,
1000 .flags
= IORESOURCE_IRQ
,
1003 /* DRCMR for Data DMA */
1006 .flags
= IORESOURCE_DMA
,
1009 /* DRCMR for Command DMA */
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",
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
[] = {
1038 .start
= 0x41a00000,
1040 .flags
= IORESOURCE_MEM
,
1045 .flags
= IORESOURCE_IRQ
,
1051 .flags
= IORESOURCE_DMA
,
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",
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",
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",
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",
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,
1116 .flags
= IORESOURCE_MEM
,
1121 .flags
= IORESOURCE_IRQ
,
1126 .flags
= IORESOURCE_IRQ
,
1128 .start
= IRQ_GPIO_2_x
,
1129 .end
= IRQ_GPIO_2_x
,
1131 .flags
= IORESOURCE_IRQ
,
1135 struct platform_device pxa25x_device_gpio
= {
1136 #ifdef CONFIG_CPU_PXA26x
1137 .name
= "pxa26x-gpio",
1139 .name
= "pxa25x-gpio",
1142 .num_resources
= ARRAY_SIZE(pxa_resource_gpio
),
1143 .resource
= pxa_resource_gpio
,
1146 struct platform_device pxa27x_device_gpio
= {
1147 .name
= "pxa27x-gpio",
1149 .num_resources
= ARRAY_SIZE(pxa_resource_gpio
),
1150 .resource
= pxa_resource_gpio
,
1153 struct platform_device pxa3xx_device_gpio
= {
1154 .name
= "pxa3xx-gpio",
1156 .num_resources
= ARRAY_SIZE(pxa_resource_gpio
),
1157 .resource
= pxa_resource_gpio
,
1160 struct platform_device pxa93x_device_gpio
= {
1161 .name
= "pxa93x-gpio",
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
);
1175 printk(KERN_ERR
"pxa2xx-spi: failed to allocate device id %d\n",
1180 pd
->dev
.platform_data
= info
;
1181 platform_device_add(pd
);
1184 static struct mmp_dma_platdata pxa_dma_pdata
= {
1188 static struct resource pxa_dma_resource
[] = {
1190 .start
= 0x40000000,
1192 .flags
= IORESOURCE_MEM
,
1197 .flags
= IORESOURCE_IRQ
,
1201 static u64 pxadma_dmamask
= 0xffffffffUL
;
1203 static struct platform_device pxa2xx_pxa_dma
= {
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
);