1 /* linux/arch/arm/plat-samsung/devs.c
3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
6 * Base SAMSUNG platform device definitions
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/kernel.h>
14 #include <linux/types.h>
15 #include <linux/interrupt.h>
16 #include <linux/list.h>
17 #include <linux/timer.h>
18 #include <linux/init.h>
19 #include <linux/serial_core.h>
20 #include <linux/platform_device.h>
22 #include <linux/slab.h>
23 #include <linux/string.h>
24 #include <linux/dma-mapping.h>
26 #include <linux/gfp.h>
27 #include <linux/mtd/mtd.h>
28 #include <linux/mtd/onenand.h>
29 #include <linux/mtd/partitions.h>
30 #include <linux/mmc/host.h>
31 #include <linux/ioport.h>
32 #include <linux/platform_data/s3c-hsudc.h>
36 #include <asm/mach/arch.h>
37 #include <asm/mach/map.h>
38 #include <asm/mach/irq.h>
40 #include <mach/hardware.h>
42 #include <mach/irqs.h>
46 #include <plat/devs.h>
49 #include <plat/ehci.h>
51 #include <plat/fb-s3c2410.h>
52 #include <plat/hwmon.h>
54 #include <plat/keypad.h>
56 #include <plat/nand.h>
57 #include <plat/sdhci.h>
60 #include <plat/usb-control.h>
61 #include <plat/usb-phy.h>
62 #include <plat/regs-iic.h>
63 #include <plat/regs-serial.h>
64 #include <plat/regs-spi.h>
65 #include <plat/s3c64xx-spi.h>
67 static u64 samsung_device_dma_mask
= DMA_BIT_MASK(32);
70 #ifdef CONFIG_CPU_S3C2440
71 static struct resource s3c_ac97_resource
[] = {
72 [0] = DEFINE_RES_MEM(S3C2440_PA_AC97
, S3C2440_SZ_AC97
),
73 [1] = DEFINE_RES_IRQ(IRQ_S3C244X_AC97
),
74 [2] = DEFINE_RES_DMA_NAMED(DMACH_PCM_OUT
, "PCM out"),
75 [3] = DEFINE_RES_DMA_NAMED(DMACH_PCM_IN
, "PCM in"),
76 [4] = DEFINE_RES_DMA_NAMED(DMACH_MIC_IN
, "Mic in"),
79 struct platform_device s3c_device_ac97
= {
80 .name
= "samsung-ac97",
82 .num_resources
= ARRAY_SIZE(s3c_ac97_resource
),
83 .resource
= s3c_ac97_resource
,
85 .dma_mask
= &samsung_device_dma_mask
,
86 .coherent_dma_mask
= DMA_BIT_MASK(32),
89 #endif /* CONFIG_CPU_S3C2440 */
93 #ifdef CONFIG_PLAT_S3C24XX
94 static struct resource s3c_adc_resource
[] = {
95 [0] = DEFINE_RES_MEM(S3C24XX_PA_ADC
, S3C24XX_SZ_ADC
),
96 [1] = DEFINE_RES_IRQ(IRQ_TC
),
97 [2] = DEFINE_RES_IRQ(IRQ_ADC
),
100 struct platform_device s3c_device_adc
= {
101 .name
= "s3c24xx-adc",
103 .num_resources
= ARRAY_SIZE(s3c_adc_resource
),
104 .resource
= s3c_adc_resource
,
106 #endif /* CONFIG_PLAT_S3C24XX */
108 #if defined(CONFIG_SAMSUNG_DEV_ADC)
109 static struct resource s3c_adc_resource
[] = {
110 [0] = DEFINE_RES_MEM(SAMSUNG_PA_ADC
, SZ_256
),
111 [1] = DEFINE_RES_IRQ(IRQ_TC
),
112 [2] = DEFINE_RES_IRQ(IRQ_ADC
),
115 struct platform_device s3c_device_adc
= {
116 .name
= "samsung-adc",
118 .num_resources
= ARRAY_SIZE(s3c_adc_resource
),
119 .resource
= s3c_adc_resource
,
121 #endif /* CONFIG_SAMSUNG_DEV_ADC */
123 /* Camif Controller */
125 #ifdef CONFIG_CPU_S3C2440
126 static struct resource s3c_camif_resource
[] = {
127 [0] = DEFINE_RES_MEM(S3C2440_PA_CAMIF
, S3C2440_SZ_CAMIF
),
128 [1] = DEFINE_RES_IRQ(IRQ_CAM
),
131 struct platform_device s3c_device_camif
= {
132 .name
= "s3c2440-camif",
134 .num_resources
= ARRAY_SIZE(s3c_camif_resource
),
135 .resource
= s3c_camif_resource
,
137 .dma_mask
= &samsung_device_dma_mask
,
138 .coherent_dma_mask
= DMA_BIT_MASK(32),
141 #endif /* CONFIG_CPU_S3C2440 */
145 struct platform_device samsung_asoc_dma
= {
146 .name
= "samsung-audio",
149 .dma_mask
= &samsung_device_dma_mask
,
150 .coherent_dma_mask
= DMA_BIT_MASK(32),
154 struct platform_device samsung_asoc_idma
= {
155 .name
= "samsung-idma",
158 .dma_mask
= &samsung_device_dma_mask
,
159 .coherent_dma_mask
= DMA_BIT_MASK(32),
165 #ifdef CONFIG_S3C_DEV_FB
166 static struct resource s3c_fb_resource
[] = {
167 [0] = DEFINE_RES_MEM(S3C_PA_FB
, SZ_16K
),
168 [1] = DEFINE_RES_IRQ(IRQ_LCD_VSYNC
),
169 [2] = DEFINE_RES_IRQ(IRQ_LCD_FIFO
),
170 [3] = DEFINE_RES_IRQ(IRQ_LCD_SYSTEM
),
173 struct platform_device s3c_device_fb
= {
176 .num_resources
= ARRAY_SIZE(s3c_fb_resource
),
177 .resource
= s3c_fb_resource
,
179 .dma_mask
= &samsung_device_dma_mask
,
180 .coherent_dma_mask
= DMA_BIT_MASK(32),
184 void __init
s3c_fb_set_platdata(struct s3c_fb_platdata
*pd
)
186 s3c_set_platdata(pd
, sizeof(struct s3c_fb_platdata
),
189 #endif /* CONFIG_S3C_DEV_FB */
193 #ifdef CONFIG_S5P_DEV_FIMC0
194 static struct resource s5p_fimc0_resource
[] = {
195 [0] = DEFINE_RES_MEM(S5P_PA_FIMC0
, SZ_4K
),
196 [1] = DEFINE_RES_IRQ(IRQ_FIMC0
),
199 struct platform_device s5p_device_fimc0
= {
202 .num_resources
= ARRAY_SIZE(s5p_fimc0_resource
),
203 .resource
= s5p_fimc0_resource
,
205 .dma_mask
= &samsung_device_dma_mask
,
206 .coherent_dma_mask
= DMA_BIT_MASK(32),
210 struct platform_device s5p_device_fimc_md
= {
211 .name
= "s5p-fimc-md",
214 #endif /* CONFIG_S5P_DEV_FIMC0 */
216 #ifdef CONFIG_S5P_DEV_FIMC1
217 static struct resource s5p_fimc1_resource
[] = {
218 [0] = DEFINE_RES_MEM(S5P_PA_FIMC1
, SZ_4K
),
219 [1] = DEFINE_RES_IRQ(IRQ_FIMC1
),
222 struct platform_device s5p_device_fimc1
= {
225 .num_resources
= ARRAY_SIZE(s5p_fimc1_resource
),
226 .resource
= s5p_fimc1_resource
,
228 .dma_mask
= &samsung_device_dma_mask
,
229 .coherent_dma_mask
= DMA_BIT_MASK(32),
232 #endif /* CONFIG_S5P_DEV_FIMC1 */
234 #ifdef CONFIG_S5P_DEV_FIMC2
235 static struct resource s5p_fimc2_resource
[] = {
236 [0] = DEFINE_RES_MEM(S5P_PA_FIMC2
, SZ_4K
),
237 [1] = DEFINE_RES_IRQ(IRQ_FIMC2
),
240 struct platform_device s5p_device_fimc2
= {
243 .num_resources
= ARRAY_SIZE(s5p_fimc2_resource
),
244 .resource
= s5p_fimc2_resource
,
246 .dma_mask
= &samsung_device_dma_mask
,
247 .coherent_dma_mask
= DMA_BIT_MASK(32),
250 #endif /* CONFIG_S5P_DEV_FIMC2 */
252 #ifdef CONFIG_S5P_DEV_FIMC3
253 static struct resource s5p_fimc3_resource
[] = {
254 [0] = DEFINE_RES_MEM(S5P_PA_FIMC3
, SZ_4K
),
255 [1] = DEFINE_RES_IRQ(IRQ_FIMC3
),
258 struct platform_device s5p_device_fimc3
= {
261 .num_resources
= ARRAY_SIZE(s5p_fimc3_resource
),
262 .resource
= s5p_fimc3_resource
,
264 .dma_mask
= &samsung_device_dma_mask
,
265 .coherent_dma_mask
= DMA_BIT_MASK(32),
268 #endif /* CONFIG_S5P_DEV_FIMC3 */
272 #ifdef CONFIG_S5P_DEV_FIMD0
273 static struct resource s5p_fimd0_resource
[] = {
274 [0] = DEFINE_RES_MEM(S5P_PA_FIMD0
, SZ_32K
),
275 [1] = DEFINE_RES_IRQ(IRQ_FIMD0_VSYNC
),
276 [2] = DEFINE_RES_IRQ(IRQ_FIMD0_FIFO
),
277 [3] = DEFINE_RES_IRQ(IRQ_FIMD0_SYSTEM
),
280 struct platform_device s5p_device_fimd0
= {
283 .num_resources
= ARRAY_SIZE(s5p_fimd0_resource
),
284 .resource
= s5p_fimd0_resource
,
286 .dma_mask
= &samsung_device_dma_mask
,
287 .coherent_dma_mask
= DMA_BIT_MASK(32),
291 void __init
s5p_fimd0_set_platdata(struct s3c_fb_platdata
*pd
)
293 s3c_set_platdata(pd
, sizeof(struct s3c_fb_platdata
),
296 #endif /* CONFIG_S5P_DEV_FIMD0 */
300 #ifdef CONFIG_S3C_DEV_HWMON
301 struct platform_device s3c_device_hwmon
= {
304 .dev
.parent
= &s3c_device_adc
.dev
,
307 void __init
s3c_hwmon_set_platdata(struct s3c_hwmon_pdata
*pd
)
309 s3c_set_platdata(pd
, sizeof(struct s3c_hwmon_pdata
),
312 #endif /* CONFIG_S3C_DEV_HWMON */
316 #ifdef CONFIG_S3C_DEV_HSMMC
317 static struct resource s3c_hsmmc_resource
[] = {
318 [0] = DEFINE_RES_MEM(S3C_PA_HSMMC0
, SZ_4K
),
319 [1] = DEFINE_RES_IRQ(IRQ_HSMMC0
),
322 struct s3c_sdhci_platdata s3c_hsmmc0_def_platdata
= {
324 .host_caps
= (MMC_CAP_4_BIT_DATA
|
325 MMC_CAP_MMC_HIGHSPEED
| MMC_CAP_SD_HIGHSPEED
),
326 .clk_type
= S3C_SDHCI_CLK_DIV_INTERNAL
,
329 struct platform_device s3c_device_hsmmc0
= {
332 .num_resources
= ARRAY_SIZE(s3c_hsmmc_resource
),
333 .resource
= s3c_hsmmc_resource
,
335 .dma_mask
= &samsung_device_dma_mask
,
336 .coherent_dma_mask
= DMA_BIT_MASK(32),
337 .platform_data
= &s3c_hsmmc0_def_platdata
,
341 void s3c_sdhci0_set_platdata(struct s3c_sdhci_platdata
*pd
)
343 s3c_sdhci_set_platdata(pd
, &s3c_hsmmc0_def_platdata
);
345 #endif /* CONFIG_S3C_DEV_HSMMC */
347 #ifdef CONFIG_S3C_DEV_HSMMC1
348 static struct resource s3c_hsmmc1_resource
[] = {
349 [0] = DEFINE_RES_MEM(S3C_PA_HSMMC1
, SZ_4K
),
350 [1] = DEFINE_RES_IRQ(IRQ_HSMMC1
),
353 struct s3c_sdhci_platdata s3c_hsmmc1_def_platdata
= {
355 .host_caps
= (MMC_CAP_4_BIT_DATA
|
356 MMC_CAP_MMC_HIGHSPEED
| MMC_CAP_SD_HIGHSPEED
),
357 .clk_type
= S3C_SDHCI_CLK_DIV_INTERNAL
,
360 struct platform_device s3c_device_hsmmc1
= {
363 .num_resources
= ARRAY_SIZE(s3c_hsmmc1_resource
),
364 .resource
= s3c_hsmmc1_resource
,
366 .dma_mask
= &samsung_device_dma_mask
,
367 .coherent_dma_mask
= DMA_BIT_MASK(32),
368 .platform_data
= &s3c_hsmmc1_def_platdata
,
372 void s3c_sdhci1_set_platdata(struct s3c_sdhci_platdata
*pd
)
374 s3c_sdhci_set_platdata(pd
, &s3c_hsmmc1_def_platdata
);
376 #endif /* CONFIG_S3C_DEV_HSMMC1 */
380 #ifdef CONFIG_S3C_DEV_HSMMC2
381 static struct resource s3c_hsmmc2_resource
[] = {
382 [0] = DEFINE_RES_MEM(S3C_PA_HSMMC2
, SZ_4K
),
383 [1] = DEFINE_RES_IRQ(IRQ_HSMMC2
),
386 struct s3c_sdhci_platdata s3c_hsmmc2_def_platdata
= {
388 .host_caps
= (MMC_CAP_4_BIT_DATA
|
389 MMC_CAP_MMC_HIGHSPEED
| MMC_CAP_SD_HIGHSPEED
),
390 .clk_type
= S3C_SDHCI_CLK_DIV_INTERNAL
,
393 struct platform_device s3c_device_hsmmc2
= {
396 .num_resources
= ARRAY_SIZE(s3c_hsmmc2_resource
),
397 .resource
= s3c_hsmmc2_resource
,
399 .dma_mask
= &samsung_device_dma_mask
,
400 .coherent_dma_mask
= DMA_BIT_MASK(32),
401 .platform_data
= &s3c_hsmmc2_def_platdata
,
405 void s3c_sdhci2_set_platdata(struct s3c_sdhci_platdata
*pd
)
407 s3c_sdhci_set_platdata(pd
, &s3c_hsmmc2_def_platdata
);
409 #endif /* CONFIG_S3C_DEV_HSMMC2 */
411 #ifdef CONFIG_S3C_DEV_HSMMC3
412 static struct resource s3c_hsmmc3_resource
[] = {
413 [0] = DEFINE_RES_MEM(S3C_PA_HSMMC3
, SZ_4K
),
414 [1] = DEFINE_RES_IRQ(IRQ_HSMMC3
),
417 struct s3c_sdhci_platdata s3c_hsmmc3_def_platdata
= {
419 .host_caps
= (MMC_CAP_4_BIT_DATA
|
420 MMC_CAP_MMC_HIGHSPEED
| MMC_CAP_SD_HIGHSPEED
),
421 .clk_type
= S3C_SDHCI_CLK_DIV_INTERNAL
,
424 struct platform_device s3c_device_hsmmc3
= {
427 .num_resources
= ARRAY_SIZE(s3c_hsmmc3_resource
),
428 .resource
= s3c_hsmmc3_resource
,
430 .dma_mask
= &samsung_device_dma_mask
,
431 .coherent_dma_mask
= DMA_BIT_MASK(32),
432 .platform_data
= &s3c_hsmmc3_def_platdata
,
436 void s3c_sdhci3_set_platdata(struct s3c_sdhci_platdata
*pd
)
438 s3c_sdhci_set_platdata(pd
, &s3c_hsmmc3_def_platdata
);
440 #endif /* CONFIG_S3C_DEV_HSMMC3 */
444 static struct resource s3c_i2c0_resource
[] = {
445 [0] = DEFINE_RES_MEM(S3C_PA_IIC
, SZ_4K
),
446 [1] = DEFINE_RES_IRQ(IRQ_IIC
),
449 struct platform_device s3c_device_i2c0
= {
450 .name
= "s3c2410-i2c",
451 #ifdef CONFIG_S3C_DEV_I2C1
456 .num_resources
= ARRAY_SIZE(s3c_i2c0_resource
),
457 .resource
= s3c_i2c0_resource
,
460 struct s3c2410_platform_i2c default_i2c_data __initdata
= {
463 .frequency
= 100*1000,
467 void __init
s3c_i2c0_set_platdata(struct s3c2410_platform_i2c
*pd
)
469 struct s3c2410_platform_i2c
*npd
;
472 pd
= &default_i2c_data
;
476 npd
= s3c_set_platdata(pd
, sizeof(struct s3c2410_platform_i2c
),
480 npd
->cfg_gpio
= s3c_i2c0_cfg_gpio
;
483 #ifdef CONFIG_S3C_DEV_I2C1
484 static struct resource s3c_i2c1_resource
[] = {
485 [0] = DEFINE_RES_MEM(S3C_PA_IIC1
, SZ_4K
),
486 [1] = DEFINE_RES_IRQ(IRQ_IIC1
),
489 struct platform_device s3c_device_i2c1
= {
490 .name
= "s3c2410-i2c",
492 .num_resources
= ARRAY_SIZE(s3c_i2c1_resource
),
493 .resource
= s3c_i2c1_resource
,
496 void __init
s3c_i2c1_set_platdata(struct s3c2410_platform_i2c
*pd
)
498 struct s3c2410_platform_i2c
*npd
;
501 pd
= &default_i2c_data
;
505 npd
= s3c_set_platdata(pd
, sizeof(struct s3c2410_platform_i2c
),
509 npd
->cfg_gpio
= s3c_i2c1_cfg_gpio
;
511 #endif /* CONFIG_S3C_DEV_I2C1 */
513 #ifdef CONFIG_S3C_DEV_I2C2
514 static struct resource s3c_i2c2_resource
[] = {
515 [0] = DEFINE_RES_MEM(S3C_PA_IIC2
, SZ_4K
),
516 [1] = DEFINE_RES_IRQ(IRQ_IIC2
),
519 struct platform_device s3c_device_i2c2
= {
520 .name
= "s3c2410-i2c",
522 .num_resources
= ARRAY_SIZE(s3c_i2c2_resource
),
523 .resource
= s3c_i2c2_resource
,
526 void __init
s3c_i2c2_set_platdata(struct s3c2410_platform_i2c
*pd
)
528 struct s3c2410_platform_i2c
*npd
;
531 pd
= &default_i2c_data
;
535 npd
= s3c_set_platdata(pd
, sizeof(struct s3c2410_platform_i2c
),
539 npd
->cfg_gpio
= s3c_i2c2_cfg_gpio
;
541 #endif /* CONFIG_S3C_DEV_I2C2 */
543 #ifdef CONFIG_S3C_DEV_I2C3
544 static struct resource s3c_i2c3_resource
[] = {
545 [0] = DEFINE_RES_MEM(S3C_PA_IIC3
, SZ_4K
),
546 [1] = DEFINE_RES_IRQ(IRQ_IIC3
),
549 struct platform_device s3c_device_i2c3
= {
550 .name
= "s3c2440-i2c",
552 .num_resources
= ARRAY_SIZE(s3c_i2c3_resource
),
553 .resource
= s3c_i2c3_resource
,
556 void __init
s3c_i2c3_set_platdata(struct s3c2410_platform_i2c
*pd
)
558 struct s3c2410_platform_i2c
*npd
;
561 pd
= &default_i2c_data
;
565 npd
= s3c_set_platdata(pd
, sizeof(struct s3c2410_platform_i2c
),
569 npd
->cfg_gpio
= s3c_i2c3_cfg_gpio
;
571 #endif /*CONFIG_S3C_DEV_I2C3 */
573 #ifdef CONFIG_S3C_DEV_I2C4
574 static struct resource s3c_i2c4_resource
[] = {
575 [0] = DEFINE_RES_MEM(S3C_PA_IIC4
, SZ_4K
),
576 [1] = DEFINE_RES_IRQ(IRQ_IIC4
),
579 struct platform_device s3c_device_i2c4
= {
580 .name
= "s3c2440-i2c",
582 .num_resources
= ARRAY_SIZE(s3c_i2c4_resource
),
583 .resource
= s3c_i2c4_resource
,
586 void __init
s3c_i2c4_set_platdata(struct s3c2410_platform_i2c
*pd
)
588 struct s3c2410_platform_i2c
*npd
;
591 pd
= &default_i2c_data
;
595 npd
= s3c_set_platdata(pd
, sizeof(struct s3c2410_platform_i2c
),
599 npd
->cfg_gpio
= s3c_i2c4_cfg_gpio
;
601 #endif /*CONFIG_S3C_DEV_I2C4 */
603 #ifdef CONFIG_S3C_DEV_I2C5
604 static struct resource s3c_i2c5_resource
[] = {
605 [0] = DEFINE_RES_MEM(S3C_PA_IIC5
, SZ_4K
),
606 [1] = DEFINE_RES_IRQ(IRQ_IIC5
),
609 struct platform_device s3c_device_i2c5
= {
610 .name
= "s3c2440-i2c",
612 .num_resources
= ARRAY_SIZE(s3c_i2c5_resource
),
613 .resource
= s3c_i2c5_resource
,
616 void __init
s3c_i2c5_set_platdata(struct s3c2410_platform_i2c
*pd
)
618 struct s3c2410_platform_i2c
*npd
;
621 pd
= &default_i2c_data
;
625 npd
= s3c_set_platdata(pd
, sizeof(struct s3c2410_platform_i2c
),
629 npd
->cfg_gpio
= s3c_i2c5_cfg_gpio
;
631 #endif /*CONFIG_S3C_DEV_I2C5 */
633 #ifdef CONFIG_S3C_DEV_I2C6
634 static struct resource s3c_i2c6_resource
[] = {
635 [0] = DEFINE_RES_MEM(S3C_PA_IIC6
, SZ_4K
),
636 [1] = DEFINE_RES_IRQ(IRQ_IIC6
),
639 struct platform_device s3c_device_i2c6
= {
640 .name
= "s3c2440-i2c",
642 .num_resources
= ARRAY_SIZE(s3c_i2c6_resource
),
643 .resource
= s3c_i2c6_resource
,
646 void __init
s3c_i2c6_set_platdata(struct s3c2410_platform_i2c
*pd
)
648 struct s3c2410_platform_i2c
*npd
;
651 pd
= &default_i2c_data
;
655 npd
= s3c_set_platdata(pd
, sizeof(struct s3c2410_platform_i2c
),
659 npd
->cfg_gpio
= s3c_i2c6_cfg_gpio
;
661 #endif /* CONFIG_S3C_DEV_I2C6 */
663 #ifdef CONFIG_S3C_DEV_I2C7
664 static struct resource s3c_i2c7_resource
[] = {
665 [0] = DEFINE_RES_MEM(S3C_PA_IIC7
, SZ_4K
),
666 [1] = DEFINE_RES_IRQ(IRQ_IIC7
),
669 struct platform_device s3c_device_i2c7
= {
670 .name
= "s3c2440-i2c",
672 .num_resources
= ARRAY_SIZE(s3c_i2c7_resource
),
673 .resource
= s3c_i2c7_resource
,
676 void __init
s3c_i2c7_set_platdata(struct s3c2410_platform_i2c
*pd
)
678 struct s3c2410_platform_i2c
*npd
;
681 pd
= &default_i2c_data
;
685 npd
= s3c_set_platdata(pd
, sizeof(struct s3c2410_platform_i2c
),
689 npd
->cfg_gpio
= s3c_i2c7_cfg_gpio
;
691 #endif /* CONFIG_S3C_DEV_I2C7 */
695 #ifdef CONFIG_S5P_DEV_I2C_HDMIPHY
696 static struct resource s5p_i2c_resource
[] = {
697 [0] = DEFINE_RES_MEM(S5P_PA_IIC_HDMIPHY
, SZ_4K
),
698 [1] = DEFINE_RES_IRQ(IRQ_IIC_HDMIPHY
),
701 struct platform_device s5p_device_i2c_hdmiphy
= {
702 .name
= "s3c2440-hdmiphy-i2c",
704 .num_resources
= ARRAY_SIZE(s5p_i2c_resource
),
705 .resource
= s5p_i2c_resource
,
708 void __init
s5p_i2c_hdmiphy_set_platdata(struct s3c2410_platform_i2c
*pd
)
710 struct s3c2410_platform_i2c
*npd
;
713 pd
= &default_i2c_data
;
715 if (soc_is_exynos4210())
717 else if (soc_is_s5pv210())
723 npd
= s3c_set_platdata(pd
, sizeof(struct s3c2410_platform_i2c
),
724 &s5p_device_i2c_hdmiphy
);
726 #endif /* CONFIG_S5P_DEV_I2C_HDMIPHY */
730 #ifdef CONFIG_PLAT_S3C24XX
731 static struct resource s3c_iis_resource
[] = {
732 [0] = DEFINE_RES_MEM(S3C24XX_PA_IIS
, S3C24XX_SZ_IIS
),
735 struct platform_device s3c_device_iis
= {
736 .name
= "s3c24xx-iis",
738 .num_resources
= ARRAY_SIZE(s3c_iis_resource
),
739 .resource
= s3c_iis_resource
,
741 .dma_mask
= &samsung_device_dma_mask
,
742 .coherent_dma_mask
= DMA_BIT_MASK(32),
745 #endif /* CONFIG_PLAT_S3C24XX */
747 #ifdef CONFIG_CPU_S3C2440
748 struct platform_device s3c2412_device_iis
= {
749 .name
= "s3c2412-iis",
752 .dma_mask
= &samsung_device_dma_mask
,
753 .coherent_dma_mask
= DMA_BIT_MASK(32),
756 #endif /* CONFIG_CPU_S3C2440 */
760 #ifdef CONFIG_SAMSUNG_DEV_IDE
761 static struct resource s3c_cfcon_resource
[] = {
762 [0] = DEFINE_RES_MEM(SAMSUNG_PA_CFCON
, SZ_16K
),
763 [1] = DEFINE_RES_IRQ(IRQ_CFCON
),
766 struct platform_device s3c_device_cfcon
= {
768 .num_resources
= ARRAY_SIZE(s3c_cfcon_resource
),
769 .resource
= s3c_cfcon_resource
,
772 void s3c_ide_set_platdata(struct s3c_ide_platdata
*pdata
)
774 s3c_set_platdata(pdata
, sizeof(struct s3c_ide_platdata
),
777 #endif /* CONFIG_SAMSUNG_DEV_IDE */
781 #ifdef CONFIG_SAMSUNG_DEV_KEYPAD
782 static struct resource samsung_keypad_resources
[] = {
783 [0] = DEFINE_RES_MEM(SAMSUNG_PA_KEYPAD
, SZ_32
),
784 [1] = DEFINE_RES_IRQ(IRQ_KEYPAD
),
787 struct platform_device samsung_device_keypad
= {
788 .name
= "samsung-keypad",
790 .num_resources
= ARRAY_SIZE(samsung_keypad_resources
),
791 .resource
= samsung_keypad_resources
,
794 void __init
samsung_keypad_set_platdata(struct samsung_keypad_platdata
*pd
)
796 struct samsung_keypad_platdata
*npd
;
798 npd
= s3c_set_platdata(pd
, sizeof(struct samsung_keypad_platdata
),
799 &samsung_device_keypad
);
802 npd
->cfg_gpio
= samsung_keypad_cfg_gpio
;
804 #endif /* CONFIG_SAMSUNG_DEV_KEYPAD */
808 #ifdef CONFIG_PLAT_S3C24XX
809 static struct resource s3c_lcd_resource
[] = {
810 [0] = DEFINE_RES_MEM(S3C24XX_PA_LCD
, S3C24XX_SZ_LCD
),
811 [1] = DEFINE_RES_IRQ(IRQ_LCD
),
814 struct platform_device s3c_device_lcd
= {
815 .name
= "s3c2410-lcd",
817 .num_resources
= ARRAY_SIZE(s3c_lcd_resource
),
818 .resource
= s3c_lcd_resource
,
820 .dma_mask
= &samsung_device_dma_mask
,
821 .coherent_dma_mask
= DMA_BIT_MASK(32),
825 void __init
s3c24xx_fb_set_platdata(struct s3c2410fb_mach_info
*pd
)
827 struct s3c2410fb_mach_info
*npd
;
829 npd
= s3c_set_platdata(pd
, sizeof(*npd
), &s3c_device_lcd
);
831 npd
->displays
= kmemdup(pd
->displays
,
832 sizeof(struct s3c2410fb_display
) * npd
->num_displays
,
835 printk(KERN_ERR
"no memory for LCD display data\n");
837 printk(KERN_ERR
"no memory for LCD platform data\n");
840 #endif /* CONFIG_PLAT_S3C24XX */
844 #ifdef CONFIG_S5P_DEV_MFC
845 static struct resource s5p_mfc_resource
[] = {
846 [0] = DEFINE_RES_MEM(S5P_PA_MFC
, SZ_64K
),
847 [1] = DEFINE_RES_IRQ(IRQ_MFC
),
850 struct platform_device s5p_device_mfc
= {
853 .num_resources
= ARRAY_SIZE(s5p_mfc_resource
),
854 .resource
= s5p_mfc_resource
,
858 * MFC hardware has 2 memory interfaces which are modelled as two separate
859 * platform devices to let dma-mapping distinguish between them.
861 * MFC parent device (s5p_device_mfc) must be registered before memory
862 * interface specific devices (s5p_device_mfc_l and s5p_device_mfc_r).
865 struct platform_device s5p_device_mfc_l
= {
869 .parent
= &s5p_device_mfc
.dev
,
870 .dma_mask
= &samsung_device_dma_mask
,
871 .coherent_dma_mask
= DMA_BIT_MASK(32),
875 struct platform_device s5p_device_mfc_r
= {
879 .parent
= &s5p_device_mfc
.dev
,
880 .dma_mask
= &samsung_device_dma_mask
,
881 .coherent_dma_mask
= DMA_BIT_MASK(32),
884 #endif /* CONFIG_S5P_DEV_MFC */
888 #ifdef CONFIG_S5P_DEV_CSIS0
889 static struct resource s5p_mipi_csis0_resource
[] = {
890 [0] = DEFINE_RES_MEM(S5P_PA_MIPI_CSIS0
, SZ_4K
),
891 [1] = DEFINE_RES_IRQ(IRQ_MIPI_CSIS0
),
894 struct platform_device s5p_device_mipi_csis0
= {
895 .name
= "s5p-mipi-csis",
897 .num_resources
= ARRAY_SIZE(s5p_mipi_csis0_resource
),
898 .resource
= s5p_mipi_csis0_resource
,
900 #endif /* CONFIG_S5P_DEV_CSIS0 */
902 #ifdef CONFIG_S5P_DEV_CSIS1
903 static struct resource s5p_mipi_csis1_resource
[] = {
904 [0] = DEFINE_RES_MEM(S5P_PA_MIPI_CSIS1
, SZ_4K
),
905 [1] = DEFINE_RES_IRQ(IRQ_MIPI_CSIS1
),
908 struct platform_device s5p_device_mipi_csis1
= {
909 .name
= "s5p-mipi-csis",
911 .num_resources
= ARRAY_SIZE(s5p_mipi_csis1_resource
),
912 .resource
= s5p_mipi_csis1_resource
,
918 #ifdef CONFIG_S3C_DEV_NAND
919 static struct resource s3c_nand_resource
[] = {
920 [0] = DEFINE_RES_MEM(S3C_PA_NAND
, SZ_1M
),
923 struct platform_device s3c_device_nand
= {
924 .name
= "s3c2410-nand",
926 .num_resources
= ARRAY_SIZE(s3c_nand_resource
),
927 .resource
= s3c_nand_resource
,
931 * s3c_nand_copy_set() - copy nand set data
932 * @set: The new structure, directly copied from the old.
934 * Copy all the fields from the NAND set field from what is probably __initdata
935 * to new kernel memory. The code returns 0 if the copy happened correctly or
936 * an error code for the calling function to display.
938 * Note, we currently do not try and look to see if we've already copied the
939 * data in a previous set.
941 static int __init
s3c_nand_copy_set(struct s3c2410_nand_set
*set
)
946 size
= sizeof(struct mtd_partition
) * set
->nr_partitions
;
948 ptr
= kmemdup(set
->partitions
, size
, GFP_KERNEL
);
949 set
->partitions
= ptr
;
955 if (set
->nr_map
&& set
->nr_chips
) {
956 size
= sizeof(int) * set
->nr_chips
;
957 ptr
= kmemdup(set
->nr_map
, size
, GFP_KERNEL
);
964 if (set
->ecc_layout
) {
965 ptr
= kmemdup(set
->ecc_layout
,
966 sizeof(struct nand_ecclayout
), GFP_KERNEL
);
967 set
->ecc_layout
= ptr
;
976 void __init
s3c_nand_set_platdata(struct s3c2410_platform_nand
*nand
)
978 struct s3c2410_platform_nand
*npd
;
982 /* note, if we get a failure in allocation, we simply drop out of the
983 * function. If there is so little memory available at initialisation
984 * time then there is little chance the system is going to run.
987 npd
= s3c_set_platdata(nand
, sizeof(struct s3c2410_platform_nand
),
992 /* now see if we need to copy any of the nand set data */
994 size
= sizeof(struct s3c2410_nand_set
) * npd
->nr_sets
;
996 struct s3c2410_nand_set
*from
= npd
->sets
;
997 struct s3c2410_nand_set
*to
;
1000 to
= kmemdup(from
, size
, GFP_KERNEL
);
1001 npd
->sets
= to
; /* set, even if we failed */
1004 printk(KERN_ERR
"%s: no memory for sets\n", __func__
);
1008 for (i
= 0; i
< npd
->nr_sets
; i
++) {
1009 ret
= s3c_nand_copy_set(to
);
1011 printk(KERN_ERR
"%s: failed to copy set %d\n",
1019 #endif /* CONFIG_S3C_DEV_NAND */
1023 #ifdef CONFIG_S3C_DEV_ONENAND
1024 static struct resource s3c_onenand_resources
[] = {
1025 [0] = DEFINE_RES_MEM(S3C_PA_ONENAND
, SZ_1K
),
1026 [1] = DEFINE_RES_MEM(S3C_PA_ONENAND_BUF
, S3C_SZ_ONENAND_BUF
),
1027 [2] = DEFINE_RES_IRQ(IRQ_ONENAND
),
1030 struct platform_device s3c_device_onenand
= {
1031 .name
= "samsung-onenand",
1033 .num_resources
= ARRAY_SIZE(s3c_onenand_resources
),
1034 .resource
= s3c_onenand_resources
,
1036 #endif /* CONFIG_S3C_DEV_ONENAND */
1038 #ifdef CONFIG_S3C64XX_DEV_ONENAND1
1039 static struct resource s3c64xx_onenand1_resources
[] = {
1040 [0] = DEFINE_RES_MEM(S3C64XX_PA_ONENAND1
, SZ_1K
),
1041 [1] = DEFINE_RES_MEM(S3C64XX_PA_ONENAND1_BUF
, S3C64XX_SZ_ONENAND1_BUF
),
1042 [2] = DEFINE_RES_IRQ(IRQ_ONENAND1
),
1045 struct platform_device s3c64xx_device_onenand1
= {
1046 .name
= "samsung-onenand",
1048 .num_resources
= ARRAY_SIZE(s3c64xx_onenand1_resources
),
1049 .resource
= s3c64xx_onenand1_resources
,
1052 void s3c64xx_onenand1_set_platdata(struct onenand_platform_data
*pdata
)
1054 s3c_set_platdata(pdata
, sizeof(struct onenand_platform_data
),
1055 &s3c64xx_device_onenand1
);
1057 #endif /* CONFIG_S3C64XX_DEV_ONENAND1 */
1059 #ifdef CONFIG_S5P_DEV_ONENAND
1060 static struct resource s5p_onenand_resources
[] = {
1061 [0] = DEFINE_RES_MEM(S5P_PA_ONENAND
, SZ_128K
),
1062 [1] = DEFINE_RES_MEM(S5P_PA_ONENAND_DMA
, SZ_8K
),
1063 [2] = DEFINE_RES_IRQ(IRQ_ONENAND_AUDI
),
1066 struct platform_device s5p_device_onenand
= {
1067 .name
= "s5pc110-onenand",
1069 .num_resources
= ARRAY_SIZE(s5p_onenand_resources
),
1070 .resource
= s5p_onenand_resources
,
1072 #endif /* CONFIG_S5P_DEV_ONENAND */
1076 #ifdef CONFIG_PLAT_S5P
1077 static struct resource s5p_pmu_resource
[] = {
1078 DEFINE_RES_IRQ(IRQ_PMU
)
1081 struct platform_device s5p_device_pmu
= {
1083 .id
= ARM_PMU_DEVICE_CPU
,
1084 .num_resources
= ARRAY_SIZE(s5p_pmu_resource
),
1085 .resource
= s5p_pmu_resource
,
1088 static int __init
s5p_pmu_init(void)
1090 platform_device_register(&s5p_device_pmu
);
1093 arch_initcall(s5p_pmu_init
);
1094 #endif /* CONFIG_PLAT_S5P */
1098 #ifdef CONFIG_SAMSUNG_DEV_PWM
1100 #define TIMER_RESOURCE_SIZE (1)
1102 #define TIMER_RESOURCE(_tmr, _irq) \
1103 (struct resource [TIMER_RESOURCE_SIZE]) { \
1107 .flags = IORESOURCE_IRQ \
1111 #define DEFINE_S3C_TIMER(_tmr_no, _irq) \
1112 .name = "s3c24xx-pwm", \
1114 .num_resources = TIMER_RESOURCE_SIZE, \
1115 .resource = TIMER_RESOURCE(_tmr_no, _irq), \
1118 * since we already have an static mapping for the timer,
1119 * we do not bother setting any IO resource for the base.
1122 struct platform_device s3c_device_timer
[] = {
1123 [0] = { DEFINE_S3C_TIMER(0, IRQ_TIMER0
) },
1124 [1] = { DEFINE_S3C_TIMER(1, IRQ_TIMER1
) },
1125 [2] = { DEFINE_S3C_TIMER(2, IRQ_TIMER2
) },
1126 [3] = { DEFINE_S3C_TIMER(3, IRQ_TIMER3
) },
1127 [4] = { DEFINE_S3C_TIMER(4, IRQ_TIMER4
) },
1129 #endif /* CONFIG_SAMSUNG_DEV_PWM */
1133 #ifdef CONFIG_PLAT_S3C24XX
1134 static struct resource s3c_rtc_resource
[] = {
1135 [0] = DEFINE_RES_MEM(S3C24XX_PA_RTC
, SZ_256
),
1136 [1] = DEFINE_RES_IRQ(IRQ_RTC
),
1137 [2] = DEFINE_RES_IRQ(IRQ_TICK
),
1140 struct platform_device s3c_device_rtc
= {
1141 .name
= "s3c2410-rtc",
1143 .num_resources
= ARRAY_SIZE(s3c_rtc_resource
),
1144 .resource
= s3c_rtc_resource
,
1146 #endif /* CONFIG_PLAT_S3C24XX */
1148 #ifdef CONFIG_S3C_DEV_RTC
1149 static struct resource s3c_rtc_resource
[] = {
1150 [0] = DEFINE_RES_MEM(S3C_PA_RTC
, SZ_256
),
1151 [1] = DEFINE_RES_IRQ(IRQ_RTC_ALARM
),
1152 [2] = DEFINE_RES_IRQ(IRQ_RTC_TIC
),
1155 struct platform_device s3c_device_rtc
= {
1156 .name
= "s3c64xx-rtc",
1158 .num_resources
= ARRAY_SIZE(s3c_rtc_resource
),
1159 .resource
= s3c_rtc_resource
,
1161 #endif /* CONFIG_S3C_DEV_RTC */
1165 #ifdef CONFIG_PLAT_S3C24XX
1166 static struct resource s3c_sdi_resource
[] = {
1167 [0] = DEFINE_RES_MEM(S3C24XX_PA_SDI
, S3C24XX_SZ_SDI
),
1168 [1] = DEFINE_RES_IRQ(IRQ_SDI
),
1171 struct platform_device s3c_device_sdi
= {
1172 .name
= "s3c2410-sdi",
1174 .num_resources
= ARRAY_SIZE(s3c_sdi_resource
),
1175 .resource
= s3c_sdi_resource
,
1178 void __init
s3c24xx_mci_set_platdata(struct s3c24xx_mci_pdata
*pdata
)
1180 s3c_set_platdata(pdata
, sizeof(struct s3c24xx_mci_pdata
),
1183 #endif /* CONFIG_PLAT_S3C24XX */
1187 #ifdef CONFIG_PLAT_S3C24XX
1188 static struct resource s3c_spi0_resource
[] = {
1189 [0] = DEFINE_RES_MEM(S3C24XX_PA_SPI
, SZ_32
),
1190 [1] = DEFINE_RES_IRQ(IRQ_SPI0
),
1193 struct platform_device s3c_device_spi0
= {
1194 .name
= "s3c2410-spi",
1196 .num_resources
= ARRAY_SIZE(s3c_spi0_resource
),
1197 .resource
= s3c_spi0_resource
,
1199 .dma_mask
= &samsung_device_dma_mask
,
1200 .coherent_dma_mask
= DMA_BIT_MASK(32),
1204 static struct resource s3c_spi1_resource
[] = {
1205 [0] = DEFINE_RES_MEM(S3C24XX_PA_SPI1
, SZ_32
),
1206 [1] = DEFINE_RES_IRQ(IRQ_SPI1
),
1209 struct platform_device s3c_device_spi1
= {
1210 .name
= "s3c2410-spi",
1212 .num_resources
= ARRAY_SIZE(s3c_spi1_resource
),
1213 .resource
= s3c_spi1_resource
,
1215 .dma_mask
= &samsung_device_dma_mask
,
1216 .coherent_dma_mask
= DMA_BIT_MASK(32),
1219 #endif /* CONFIG_PLAT_S3C24XX */
1223 #ifdef CONFIG_PLAT_S3C24XX
1224 static struct resource s3c_ts_resource
[] = {
1225 [0] = DEFINE_RES_MEM(S3C24XX_PA_ADC
, S3C24XX_SZ_ADC
),
1226 [1] = DEFINE_RES_IRQ(IRQ_TC
),
1229 struct platform_device s3c_device_ts
= {
1230 .name
= "s3c2410-ts",
1232 .dev
.parent
= &s3c_device_adc
.dev
,
1233 .num_resources
= ARRAY_SIZE(s3c_ts_resource
),
1234 .resource
= s3c_ts_resource
,
1237 void __init
s3c24xx_ts_set_platdata(struct s3c2410_ts_mach_info
*hard_s3c2410ts_info
)
1239 s3c_set_platdata(hard_s3c2410ts_info
,
1240 sizeof(struct s3c2410_ts_mach_info
), &s3c_device_ts
);
1242 #endif /* CONFIG_PLAT_S3C24XX */
1244 #ifdef CONFIG_SAMSUNG_DEV_TS
1245 static struct resource s3c_ts_resource
[] = {
1246 [0] = DEFINE_RES_MEM(SAMSUNG_PA_ADC
, SZ_256
),
1247 [1] = DEFINE_RES_IRQ(IRQ_TC
),
1250 static struct s3c2410_ts_mach_info default_ts_data __initdata
= {
1253 .oversampling_shift
= 2,
1256 struct platform_device s3c_device_ts
= {
1257 .name
= "s3c64xx-ts",
1259 .num_resources
= ARRAY_SIZE(s3c_ts_resource
),
1260 .resource
= s3c_ts_resource
,
1263 void __init
s3c24xx_ts_set_platdata(struct s3c2410_ts_mach_info
*pd
)
1266 pd
= &default_ts_data
;
1268 s3c_set_platdata(pd
, sizeof(struct s3c2410_ts_mach_info
),
1271 #endif /* CONFIG_SAMSUNG_DEV_TS */
1275 #ifdef CONFIG_S5P_DEV_TV
1277 static struct resource s5p_hdmi_resources
[] = {
1278 [0] = DEFINE_RES_MEM(S5P_PA_HDMI
, SZ_1M
),
1279 [1] = DEFINE_RES_IRQ(IRQ_HDMI
),
1282 struct platform_device s5p_device_hdmi
= {
1285 .num_resources
= ARRAY_SIZE(s5p_hdmi_resources
),
1286 .resource
= s5p_hdmi_resources
,
1289 static struct resource s5p_sdo_resources
[] = {
1290 [0] = DEFINE_RES_MEM(S5P_PA_SDO
, SZ_64K
),
1291 [1] = DEFINE_RES_IRQ(IRQ_SDO
),
1294 struct platform_device s5p_device_sdo
= {
1297 .num_resources
= ARRAY_SIZE(s5p_sdo_resources
),
1298 .resource
= s5p_sdo_resources
,
1301 static struct resource s5p_mixer_resources
[] = {
1302 [0] = DEFINE_RES_MEM_NAMED(S5P_PA_MIXER
, SZ_64K
, "mxr"),
1303 [1] = DEFINE_RES_MEM_NAMED(S5P_PA_VP
, SZ_64K
, "vp"),
1304 [2] = DEFINE_RES_IRQ_NAMED(IRQ_MIXER
, "irq"),
1307 struct platform_device s5p_device_mixer
= {
1308 .name
= "s5p-mixer",
1310 .num_resources
= ARRAY_SIZE(s5p_mixer_resources
),
1311 .resource
= s5p_mixer_resources
,
1313 .dma_mask
= &samsung_device_dma_mask
,
1314 .coherent_dma_mask
= DMA_BIT_MASK(32),
1317 #endif /* CONFIG_S5P_DEV_TV */
1321 #ifdef CONFIG_S3C_DEV_USB_HOST
1322 static struct resource s3c_usb_resource
[] = {
1323 [0] = DEFINE_RES_MEM(S3C_PA_USBHOST
, SZ_256
),
1324 [1] = DEFINE_RES_IRQ(IRQ_USBH
),
1327 struct platform_device s3c_device_ohci
= {
1328 .name
= "s3c2410-ohci",
1330 .num_resources
= ARRAY_SIZE(s3c_usb_resource
),
1331 .resource
= s3c_usb_resource
,
1333 .dma_mask
= &samsung_device_dma_mask
,
1334 .coherent_dma_mask
= DMA_BIT_MASK(32),
1339 * s3c_ohci_set_platdata - initialise OHCI device platform data
1340 * @info: The platform data.
1342 * This call copies the @info passed in and sets the device .platform_data
1343 * field to that copy. The @info is copied so that the original can be marked
1347 void __init
s3c_ohci_set_platdata(struct s3c2410_hcd_info
*info
)
1349 s3c_set_platdata(info
, sizeof(struct s3c2410_hcd_info
),
1352 #endif /* CONFIG_S3C_DEV_USB_HOST */
1354 /* USB Device (Gadget) */
1356 #ifdef CONFIG_PLAT_S3C24XX
1357 static struct resource s3c_usbgadget_resource
[] = {
1358 [0] = DEFINE_RES_MEM(S3C24XX_PA_USBDEV
, S3C24XX_SZ_USBDEV
),
1359 [1] = DEFINE_RES_IRQ(IRQ_USBD
),
1362 struct platform_device s3c_device_usbgadget
= {
1363 .name
= "s3c2410-usbgadget",
1365 .num_resources
= ARRAY_SIZE(s3c_usbgadget_resource
),
1366 .resource
= s3c_usbgadget_resource
,
1369 void __init
s3c24xx_udc_set_platdata(struct s3c2410_udc_mach_info
*pd
)
1371 s3c_set_platdata(pd
, sizeof(*pd
), &s3c_device_usbgadget
);
1373 #endif /* CONFIG_PLAT_S3C24XX */
1375 /* USB EHCI Host Controller */
1377 #ifdef CONFIG_S5P_DEV_USB_EHCI
1378 static struct resource s5p_ehci_resource
[] = {
1379 [0] = DEFINE_RES_MEM(S5P_PA_EHCI
, SZ_256
),
1380 [1] = DEFINE_RES_IRQ(IRQ_USB_HOST
),
1383 struct platform_device s5p_device_ehci
= {
1386 .num_resources
= ARRAY_SIZE(s5p_ehci_resource
),
1387 .resource
= s5p_ehci_resource
,
1389 .dma_mask
= &samsung_device_dma_mask
,
1390 .coherent_dma_mask
= DMA_BIT_MASK(32),
1394 void __init
s5p_ehci_set_platdata(struct s5p_ehci_platdata
*pd
)
1396 struct s5p_ehci_platdata
*npd
;
1398 npd
= s3c_set_platdata(pd
, sizeof(struct s5p_ehci_platdata
),
1402 npd
->phy_init
= s5p_usb_phy_init
;
1404 npd
->phy_exit
= s5p_usb_phy_exit
;
1406 #endif /* CONFIG_S5P_DEV_USB_EHCI */
1410 #ifdef CONFIG_S3C_DEV_USB_HSOTG
1411 static struct resource s3c_usb_hsotg_resources
[] = {
1412 [0] = DEFINE_RES_MEM(S3C_PA_USB_HSOTG
, SZ_128K
),
1413 [1] = DEFINE_RES_IRQ(IRQ_OTG
),
1416 struct platform_device s3c_device_usb_hsotg
= {
1417 .name
= "s3c-hsotg",
1419 .num_resources
= ARRAY_SIZE(s3c_usb_hsotg_resources
),
1420 .resource
= s3c_usb_hsotg_resources
,
1422 .dma_mask
= &samsung_device_dma_mask
,
1423 .coherent_dma_mask
= DMA_BIT_MASK(32),
1426 #endif /* CONFIG_S3C_DEV_USB_HSOTG */
1428 /* USB High Spped 2.0 Device (Gadget) */
1430 #ifdef CONFIG_PLAT_S3C24XX
1431 static struct resource s3c_hsudc_resource
[] = {
1432 [0] = DEFINE_RES_MEM(S3C2416_PA_HSUDC
, S3C2416_SZ_HSUDC
),
1433 [1] = DEFINE_RES_IRQ(IRQ_USBD
),
1436 struct platform_device s3c_device_usb_hsudc
= {
1437 .name
= "s3c-hsudc",
1439 .num_resources
= ARRAY_SIZE(s3c_hsudc_resource
),
1440 .resource
= s3c_hsudc_resource
,
1442 .dma_mask
= &samsung_device_dma_mask
,
1443 .coherent_dma_mask
= DMA_BIT_MASK(32),
1447 void __init
s3c24xx_hsudc_set_platdata(struct s3c24xx_hsudc_platdata
*pd
)
1449 s3c_set_platdata(pd
, sizeof(*pd
), &s3c_device_usb_hsudc
);
1451 #endif /* CONFIG_PLAT_S3C24XX */
1455 #ifdef CONFIG_S3C_DEV_WDT
1456 static struct resource s3c_wdt_resource
[] = {
1457 [0] = DEFINE_RES_MEM(S3C_PA_WDT
, SZ_1K
),
1458 [1] = DEFINE_RES_IRQ(IRQ_WDT
),
1461 struct platform_device s3c_device_wdt
= {
1462 .name
= "s3c2410-wdt",
1464 .num_resources
= ARRAY_SIZE(s3c_wdt_resource
),
1465 .resource
= s3c_wdt_resource
,
1467 #endif /* CONFIG_S3C_DEV_WDT */
1469 #ifdef CONFIG_S3C64XX_DEV_SPI0
1470 static struct resource s3c64xx_spi0_resource
[] = {
1471 [0] = DEFINE_RES_MEM(S3C_PA_SPI0
, SZ_256
),
1472 [1] = DEFINE_RES_DMA(DMACH_SPI0_TX
),
1473 [2] = DEFINE_RES_DMA(DMACH_SPI0_RX
),
1474 [3] = DEFINE_RES_IRQ(IRQ_SPI0
),
1477 struct platform_device s3c64xx_device_spi0
= {
1478 .name
= "s3c64xx-spi",
1480 .num_resources
= ARRAY_SIZE(s3c64xx_spi0_resource
),
1481 .resource
= s3c64xx_spi0_resource
,
1483 .dma_mask
= &samsung_device_dma_mask
,
1484 .coherent_dma_mask
= DMA_BIT_MASK(32),
1488 void __init
s3c64xx_spi0_set_platdata(struct s3c64xx_spi_info
*pd
,
1489 int src_clk_nr
, int num_cs
)
1492 pr_err("%s:Need to pass platform data\n", __func__
);
1496 /* Reject invalid configuration */
1497 if (!num_cs
|| src_clk_nr
< 0) {
1498 pr_err("%s: Invalid SPI configuration\n", __func__
);
1502 pd
->num_cs
= num_cs
;
1503 pd
->src_clk_nr
= src_clk_nr
;
1505 pd
->cfg_gpio
= s3c64xx_spi0_cfg_gpio
;
1507 s3c_set_platdata(pd
, sizeof(*pd
), &s3c64xx_device_spi0
);
1509 #endif /* CONFIG_S3C64XX_DEV_SPI0 */
1511 #ifdef CONFIG_S3C64XX_DEV_SPI1
1512 static struct resource s3c64xx_spi1_resource
[] = {
1513 [0] = DEFINE_RES_MEM(S3C_PA_SPI1
, SZ_256
),
1514 [1] = DEFINE_RES_DMA(DMACH_SPI1_TX
),
1515 [2] = DEFINE_RES_DMA(DMACH_SPI1_RX
),
1516 [3] = DEFINE_RES_IRQ(IRQ_SPI1
),
1519 struct platform_device s3c64xx_device_spi1
= {
1520 .name
= "s3c64xx-spi",
1522 .num_resources
= ARRAY_SIZE(s3c64xx_spi1_resource
),
1523 .resource
= s3c64xx_spi1_resource
,
1525 .dma_mask
= &samsung_device_dma_mask
,
1526 .coherent_dma_mask
= DMA_BIT_MASK(32),
1530 void __init
s3c64xx_spi1_set_platdata(struct s3c64xx_spi_info
*pd
,
1531 int src_clk_nr
, int num_cs
)
1534 pr_err("%s:Need to pass platform data\n", __func__
);
1538 /* Reject invalid configuration */
1539 if (!num_cs
|| src_clk_nr
< 0) {
1540 pr_err("%s: Invalid SPI configuration\n", __func__
);
1544 pd
->num_cs
= num_cs
;
1545 pd
->src_clk_nr
= src_clk_nr
;
1547 pd
->cfg_gpio
= s3c64xx_spi1_cfg_gpio
;
1549 s3c_set_platdata(pd
, sizeof(*pd
), &s3c64xx_device_spi1
);
1551 #endif /* CONFIG_S3C64XX_DEV_SPI1 */
1553 #ifdef CONFIG_S3C64XX_DEV_SPI2
1554 static struct resource s3c64xx_spi2_resource
[] = {
1555 [0] = DEFINE_RES_MEM(S3C_PA_SPI2
, SZ_256
),
1556 [1] = DEFINE_RES_DMA(DMACH_SPI2_TX
),
1557 [2] = DEFINE_RES_DMA(DMACH_SPI2_RX
),
1558 [3] = DEFINE_RES_IRQ(IRQ_SPI2
),
1561 struct platform_device s3c64xx_device_spi2
= {
1562 .name
= "s3c64xx-spi",
1564 .num_resources
= ARRAY_SIZE(s3c64xx_spi2_resource
),
1565 .resource
= s3c64xx_spi2_resource
,
1567 .dma_mask
= &samsung_device_dma_mask
,
1568 .coherent_dma_mask
= DMA_BIT_MASK(32),
1572 void __init
s3c64xx_spi2_set_platdata(struct s3c64xx_spi_info
*pd
,
1573 int src_clk_nr
, int num_cs
)
1576 pr_err("%s:Need to pass platform data\n", __func__
);
1580 /* Reject invalid configuration */
1581 if (!num_cs
|| src_clk_nr
< 0) {
1582 pr_err("%s: Invalid SPI configuration\n", __func__
);
1586 pd
->num_cs
= num_cs
;
1587 pd
->src_clk_nr
= src_clk_nr
;
1589 pd
->cfg_gpio
= s3c64xx_spi2_cfg_gpio
;
1591 s3c_set_platdata(pd
, sizeof(*pd
), &s3c64xx_device_spi2
);
1593 #endif /* CONFIG_S3C64XX_DEV_SPI2 */