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
,
401 .flags
= IORESOURCE_MEM
,
406 .flags
= IORESOURCE_MEM
,
411 .flags
= IORESOURCE_DMA
,
416 .flags
= IORESOURCE_DMA
,
420 struct platform_device pxa_device_ficp
= {
423 .num_resources
= ARRAY_SIZE(pxa_ir_resources
),
424 .resource
= pxa_ir_resources
,
426 .dma_mask
= &pxaficp_dmamask
,
427 .coherent_dma_mask
= 0xffffffff,
431 void __init
pxa_set_ficp_info(struct pxaficp_platform_data
*info
)
433 pxa_register_device(&pxa_device_ficp
, info
);
436 static struct resource pxa_rtc_resources
[] = {
439 .end
= 0x40900000 + 0x3b,
440 .flags
= IORESOURCE_MEM
,
446 .flags
= IORESOURCE_IRQ
,
449 .start
= IRQ_RTCAlrm
,
452 .flags
= IORESOURCE_IRQ
,
456 struct platform_device pxa_device_rtc
= {
459 .num_resources
= ARRAY_SIZE(pxa_rtc_resources
),
460 .resource
= pxa_rtc_resources
,
463 struct platform_device sa1100_device_rtc
= {
464 .name
= "sa1100-rtc",
466 .num_resources
= ARRAY_SIZE(pxa_rtc_resources
),
467 .resource
= pxa_rtc_resources
,
470 static struct resource pxa_ac97_resources
[] = {
473 .end
= 0x40500000 + 0xfff,
474 .flags
= IORESOURCE_MEM
,
479 .flags
= IORESOURCE_IRQ
,
483 static u64 pxa_ac97_dmamask
= 0xffffffffUL
;
485 struct platform_device pxa_device_ac97
= {
486 .name
= "pxa2xx-ac97",
489 .dma_mask
= &pxa_ac97_dmamask
,
490 .coherent_dma_mask
= 0xffffffff,
492 .num_resources
= ARRAY_SIZE(pxa_ac97_resources
),
493 .resource
= pxa_ac97_resources
,
496 void __init
pxa_set_ac97_info(pxa2xx_audio_ops_t
*ops
)
498 pxa_register_device(&pxa_device_ac97
, ops
);
503 static struct resource pxa25x_resource_pwm0
[] = {
507 .flags
= IORESOURCE_MEM
,
511 struct platform_device pxa25x_device_pwm0
= {
512 .name
= "pxa25x-pwm",
514 .resource
= pxa25x_resource_pwm0
,
515 .num_resources
= ARRAY_SIZE(pxa25x_resource_pwm0
),
518 static struct resource pxa25x_resource_pwm1
[] = {
522 .flags
= IORESOURCE_MEM
,
526 struct platform_device pxa25x_device_pwm1
= {
527 .name
= "pxa25x-pwm",
529 .resource
= pxa25x_resource_pwm1
,
530 .num_resources
= ARRAY_SIZE(pxa25x_resource_pwm1
),
533 static u64 pxa25x_ssp_dma_mask
= DMA_BIT_MASK(32);
535 static struct resource pxa25x_resource_ssp
[] = {
539 .flags
= IORESOURCE_MEM
,
544 .flags
= IORESOURCE_IRQ
,
550 .flags
= IORESOURCE_DMA
,
556 .flags
= IORESOURCE_DMA
,
560 struct platform_device pxa25x_device_ssp
= {
561 .name
= "pxa25x-ssp",
564 .dma_mask
= &pxa25x_ssp_dma_mask
,
565 .coherent_dma_mask
= DMA_BIT_MASK(32),
567 .resource
= pxa25x_resource_ssp
,
568 .num_resources
= ARRAY_SIZE(pxa25x_resource_ssp
),
571 static u64 pxa25x_nssp_dma_mask
= DMA_BIT_MASK(32);
573 static struct resource pxa25x_resource_nssp
[] = {
577 .flags
= IORESOURCE_MEM
,
582 .flags
= IORESOURCE_IRQ
,
588 .flags
= IORESOURCE_DMA
,
594 .flags
= IORESOURCE_DMA
,
598 struct platform_device pxa25x_device_nssp
= {
599 .name
= "pxa25x-nssp",
602 .dma_mask
= &pxa25x_nssp_dma_mask
,
603 .coherent_dma_mask
= DMA_BIT_MASK(32),
605 .resource
= pxa25x_resource_nssp
,
606 .num_resources
= ARRAY_SIZE(pxa25x_resource_nssp
),
609 static u64 pxa25x_assp_dma_mask
= DMA_BIT_MASK(32);
611 static struct resource pxa25x_resource_assp
[] = {
615 .flags
= IORESOURCE_MEM
,
620 .flags
= IORESOURCE_IRQ
,
626 .flags
= IORESOURCE_DMA
,
632 .flags
= IORESOURCE_DMA
,
636 struct platform_device pxa25x_device_assp
= {
637 /* ASSP is basically equivalent to NSSP */
638 .name
= "pxa25x-nssp",
641 .dma_mask
= &pxa25x_assp_dma_mask
,
642 .coherent_dma_mask
= DMA_BIT_MASK(32),
644 .resource
= pxa25x_resource_assp
,
645 .num_resources
= ARRAY_SIZE(pxa25x_resource_assp
),
647 #endif /* CONFIG_PXA25x */
649 #if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
650 static struct resource pxa27x_resource_camera
[] = {
654 .flags
= IORESOURCE_MEM
,
659 .flags
= IORESOURCE_IRQ
,
663 static u64 pxa27x_dma_mask_camera
= DMA_BIT_MASK(32);
665 static struct platform_device pxa27x_device_camera
= {
666 .name
= "pxa27x-camera",
667 .id
= 0, /* This is used to put cameras on this interface */
669 .dma_mask
= &pxa27x_dma_mask_camera
,
670 .coherent_dma_mask
= 0xffffffff,
672 .num_resources
= ARRAY_SIZE(pxa27x_resource_camera
),
673 .resource
= pxa27x_resource_camera
,
676 void __init
pxa_set_camera_info(struct pxacamera_platform_data
*info
)
678 pxa_register_device(&pxa27x_device_camera
, info
);
681 static u64 pxa27x_ohci_dma_mask
= DMA_BIT_MASK(32);
683 static struct resource pxa27x_resource_ohci
[] = {
687 .flags
= IORESOURCE_MEM
,
692 .flags
= IORESOURCE_IRQ
,
696 struct platform_device pxa27x_device_ohci
= {
697 .name
= "pxa27x-ohci",
700 .dma_mask
= &pxa27x_ohci_dma_mask
,
701 .coherent_dma_mask
= DMA_BIT_MASK(32),
703 .num_resources
= ARRAY_SIZE(pxa27x_resource_ohci
),
704 .resource
= pxa27x_resource_ohci
,
707 void __init
pxa_set_ohci_info(struct pxaohci_platform_data
*info
)
709 pxa_register_device(&pxa27x_device_ohci
, info
);
711 #endif /* CONFIG_PXA27x || CONFIG_PXA3xx */
713 #if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
714 static struct resource pxa27x_resource_keypad
[] = {
718 .flags
= IORESOURCE_MEM
,
723 .flags
= IORESOURCE_IRQ
,
727 struct platform_device pxa27x_device_keypad
= {
728 .name
= "pxa27x-keypad",
730 .resource
= pxa27x_resource_keypad
,
731 .num_resources
= ARRAY_SIZE(pxa27x_resource_keypad
),
734 void __init
pxa_set_keypad_info(struct pxa27x_keypad_platform_data
*info
)
736 pxa_register_device(&pxa27x_device_keypad
, info
);
739 static u64 pxa27x_ssp1_dma_mask
= DMA_BIT_MASK(32);
741 static struct resource pxa27x_resource_ssp1
[] = {
745 .flags
= IORESOURCE_MEM
,
750 .flags
= IORESOURCE_IRQ
,
756 .flags
= IORESOURCE_DMA
,
762 .flags
= IORESOURCE_DMA
,
766 struct platform_device pxa27x_device_ssp1
= {
767 .name
= "pxa27x-ssp",
770 .dma_mask
= &pxa27x_ssp1_dma_mask
,
771 .coherent_dma_mask
= DMA_BIT_MASK(32),
773 .resource
= pxa27x_resource_ssp1
,
774 .num_resources
= ARRAY_SIZE(pxa27x_resource_ssp1
),
777 static u64 pxa27x_ssp2_dma_mask
= DMA_BIT_MASK(32);
779 static struct resource pxa27x_resource_ssp2
[] = {
783 .flags
= IORESOURCE_MEM
,
788 .flags
= IORESOURCE_IRQ
,
794 .flags
= IORESOURCE_DMA
,
800 .flags
= IORESOURCE_DMA
,
804 struct platform_device pxa27x_device_ssp2
= {
805 .name
= "pxa27x-ssp",
808 .dma_mask
= &pxa27x_ssp2_dma_mask
,
809 .coherent_dma_mask
= DMA_BIT_MASK(32),
811 .resource
= pxa27x_resource_ssp2
,
812 .num_resources
= ARRAY_SIZE(pxa27x_resource_ssp2
),
815 static u64 pxa27x_ssp3_dma_mask
= DMA_BIT_MASK(32);
817 static struct resource pxa27x_resource_ssp3
[] = {
821 .flags
= IORESOURCE_MEM
,
826 .flags
= IORESOURCE_IRQ
,
832 .flags
= IORESOURCE_DMA
,
838 .flags
= IORESOURCE_DMA
,
842 struct platform_device pxa27x_device_ssp3
= {
843 .name
= "pxa27x-ssp",
846 .dma_mask
= &pxa27x_ssp3_dma_mask
,
847 .coherent_dma_mask
= DMA_BIT_MASK(32),
849 .resource
= pxa27x_resource_ssp3
,
850 .num_resources
= ARRAY_SIZE(pxa27x_resource_ssp3
),
853 static struct resource pxa27x_resource_pwm0
[] = {
857 .flags
= IORESOURCE_MEM
,
861 struct platform_device pxa27x_device_pwm0
= {
862 .name
= "pxa27x-pwm",
864 .resource
= pxa27x_resource_pwm0
,
865 .num_resources
= ARRAY_SIZE(pxa27x_resource_pwm0
),
868 static struct resource pxa27x_resource_pwm1
[] = {
872 .flags
= IORESOURCE_MEM
,
876 struct platform_device pxa27x_device_pwm1
= {
877 .name
= "pxa27x-pwm",
879 .resource
= pxa27x_resource_pwm1
,
880 .num_resources
= ARRAY_SIZE(pxa27x_resource_pwm1
),
882 #endif /* CONFIG_PXA27x || CONFIG_PXA3xx */
885 static struct resource pxa3xx_resources_mci2
[] = {
889 .flags
= IORESOURCE_MEM
,
894 .flags
= IORESOURCE_IRQ
,
899 .flags
= IORESOURCE_DMA
,
904 .flags
= IORESOURCE_DMA
,
908 struct platform_device pxa3xx_device_mci2
= {
909 .name
= "pxa2xx-mci",
912 .dma_mask
= &pxamci_dmamask
,
913 .coherent_dma_mask
= 0xffffffff,
915 .num_resources
= ARRAY_SIZE(pxa3xx_resources_mci2
),
916 .resource
= pxa3xx_resources_mci2
,
919 void __init
pxa3xx_set_mci2_info(struct pxamci_platform_data
*info
)
921 pxa_register_device(&pxa3xx_device_mci2
, info
);
924 static struct resource pxa3xx_resources_mci3
[] = {
928 .flags
= IORESOURCE_MEM
,
933 .flags
= IORESOURCE_IRQ
,
938 .flags
= IORESOURCE_DMA
,
943 .flags
= IORESOURCE_DMA
,
947 struct platform_device pxa3xx_device_mci3
= {
948 .name
= "pxa2xx-mci",
951 .dma_mask
= &pxamci_dmamask
,
952 .coherent_dma_mask
= 0xffffffff,
954 .num_resources
= ARRAY_SIZE(pxa3xx_resources_mci3
),
955 .resource
= pxa3xx_resources_mci3
,
958 void __init
pxa3xx_set_mci3_info(struct pxamci_platform_data
*info
)
960 pxa_register_device(&pxa3xx_device_mci3
, info
);
963 static struct resource pxa3xx_resources_gcu
[] = {
967 .flags
= IORESOURCE_MEM
,
972 .flags
= IORESOURCE_IRQ
,
976 static u64 pxa3xx_gcu_dmamask
= DMA_BIT_MASK(32);
978 struct platform_device pxa3xx_device_gcu
= {
979 .name
= "pxa3xx-gcu",
981 .num_resources
= ARRAY_SIZE(pxa3xx_resources_gcu
),
982 .resource
= pxa3xx_resources_gcu
,
984 .dma_mask
= &pxa3xx_gcu_dmamask
,
985 .coherent_dma_mask
= 0xffffffff,
989 #endif /* CONFIG_PXA3xx */
991 #if defined(CONFIG_PXA3xx)
992 static struct resource pxa3xx_resources_i2c_power
[] = {
996 .flags
= IORESOURCE_MEM
,
1000 .flags
= IORESOURCE_IRQ
,
1004 struct platform_device pxa3xx_device_i2c_power
= {
1005 .name
= "pxa3xx-pwri2c",
1007 .resource
= pxa3xx_resources_i2c_power
,
1008 .num_resources
= ARRAY_SIZE(pxa3xx_resources_i2c_power
),
1011 static struct resource pxa3xx_resources_nand
[] = {
1013 .start
= 0x43100000,
1015 .flags
= IORESOURCE_MEM
,
1020 .flags
= IORESOURCE_IRQ
,
1023 /* DRCMR for Data DMA */
1026 .flags
= IORESOURCE_DMA
,
1029 /* DRCMR for Command DMA */
1032 .flags
= IORESOURCE_DMA
,
1036 static u64 pxa3xx_nand_dma_mask
= DMA_BIT_MASK(32);
1038 struct platform_device pxa3xx_device_nand
= {
1039 .name
= "pxa3xx-nand",
1042 .dma_mask
= &pxa3xx_nand_dma_mask
,
1043 .coherent_dma_mask
= DMA_BIT_MASK(32),
1045 .num_resources
= ARRAY_SIZE(pxa3xx_resources_nand
),
1046 .resource
= pxa3xx_resources_nand
,
1049 void __init
pxa3xx_set_nand_info(struct pxa3xx_nand_platform_data
*info
)
1051 pxa_register_device(&pxa3xx_device_nand
, info
);
1054 static u64 pxa3xx_ssp4_dma_mask
= DMA_BIT_MASK(32);
1056 static struct resource pxa3xx_resource_ssp4
[] = {
1058 .start
= 0x41a00000,
1060 .flags
= IORESOURCE_MEM
,
1065 .flags
= IORESOURCE_IRQ
,
1071 .flags
= IORESOURCE_DMA
,
1077 .flags
= IORESOURCE_DMA
,
1082 * PXA3xx SSP is basically equivalent to PXA27x.
1083 * However, we need to register the device by the correct name in order to
1084 * make the driver set the correct internal type, hence we provide specific
1085 * platform_devices for each of them.
1087 struct platform_device pxa3xx_device_ssp1
= {
1088 .name
= "pxa3xx-ssp",
1091 .dma_mask
= &pxa27x_ssp1_dma_mask
,
1092 .coherent_dma_mask
= DMA_BIT_MASK(32),
1094 .resource
= pxa27x_resource_ssp1
,
1095 .num_resources
= ARRAY_SIZE(pxa27x_resource_ssp1
),
1098 struct platform_device pxa3xx_device_ssp2
= {
1099 .name
= "pxa3xx-ssp",
1102 .dma_mask
= &pxa27x_ssp2_dma_mask
,
1103 .coherent_dma_mask
= DMA_BIT_MASK(32),
1105 .resource
= pxa27x_resource_ssp2
,
1106 .num_resources
= ARRAY_SIZE(pxa27x_resource_ssp2
),
1109 struct platform_device pxa3xx_device_ssp3
= {
1110 .name
= "pxa3xx-ssp",
1113 .dma_mask
= &pxa27x_ssp3_dma_mask
,
1114 .coherent_dma_mask
= DMA_BIT_MASK(32),
1116 .resource
= pxa27x_resource_ssp3
,
1117 .num_resources
= ARRAY_SIZE(pxa27x_resource_ssp3
),
1120 struct platform_device pxa3xx_device_ssp4
= {
1121 .name
= "pxa3xx-ssp",
1124 .dma_mask
= &pxa3xx_ssp4_dma_mask
,
1125 .coherent_dma_mask
= DMA_BIT_MASK(32),
1127 .resource
= pxa3xx_resource_ssp4
,
1128 .num_resources
= ARRAY_SIZE(pxa3xx_resource_ssp4
),
1130 #endif /* CONFIG_PXA3xx */
1132 struct resource pxa_resource_gpio
[] = {
1134 .start
= 0x40e00000,
1136 .flags
= IORESOURCE_MEM
,
1141 .flags
= IORESOURCE_IRQ
,
1146 .flags
= IORESOURCE_IRQ
,
1148 .start
= IRQ_GPIO_2_x
,
1149 .end
= IRQ_GPIO_2_x
,
1151 .flags
= IORESOURCE_IRQ
,
1155 struct platform_device pxa25x_device_gpio
= {
1156 #ifdef CONFIG_CPU_PXA26x
1157 .name
= "pxa26x-gpio",
1159 .name
= "pxa25x-gpio",
1162 .num_resources
= ARRAY_SIZE(pxa_resource_gpio
),
1163 .resource
= pxa_resource_gpio
,
1166 struct platform_device pxa27x_device_gpio
= {
1167 .name
= "pxa27x-gpio",
1169 .num_resources
= ARRAY_SIZE(pxa_resource_gpio
),
1170 .resource
= pxa_resource_gpio
,
1173 struct platform_device pxa3xx_device_gpio
= {
1174 .name
= "pxa3xx-gpio",
1176 .num_resources
= ARRAY_SIZE(pxa_resource_gpio
),
1177 .resource
= pxa_resource_gpio
,
1180 struct platform_device pxa93x_device_gpio
= {
1181 .name
= "pxa93x-gpio",
1183 .num_resources
= ARRAY_SIZE(pxa_resource_gpio
),
1184 .resource
= pxa_resource_gpio
,
1187 /* pxa2xx-spi platform-device ID equals respective SSP platform-device ID + 1.
1188 * See comment in arch/arm/mach-pxa/ssp.c::ssp_probe() */
1189 void __init
pxa2xx_set_spi_info(unsigned id
, struct pxa2xx_spi_master
*info
)
1191 struct platform_device
*pd
;
1193 pd
= platform_device_alloc("pxa2xx-spi", id
);
1195 printk(KERN_ERR
"pxa2xx-spi: failed to allocate device id %d\n",
1200 pd
->dev
.platform_data
= info
;
1201 platform_device_add(pd
);
1204 static struct mmp_dma_platdata pxa_dma_pdata
= {
1208 static struct resource pxa_dma_resource
[] = {
1210 .start
= 0x40000000,
1212 .flags
= IORESOURCE_MEM
,
1217 .flags
= IORESOURCE_IRQ
,
1221 static u64 pxadma_dmamask
= 0xffffffffUL
;
1223 static struct platform_device pxa2xx_pxa_dma
= {
1227 .dma_mask
= &pxadma_dmamask
,
1228 .coherent_dma_mask
= 0xffffffff,
1230 .num_resources
= ARRAY_SIZE(pxa_dma_resource
),
1231 .resource
= pxa_dma_resource
,
1234 void __init
pxa2xx_set_dmac_info(int nb_channels
)
1236 pxa_dma_pdata
.dma_channels
= nb_channels
;
1237 pxa_register_device(&pxa2xx_pxa_dma
, &pxa_dma_pdata
);