cfg80211: fix BSS struct IE access races
[linux-2.6.git] / arch / arm / plat-samsung / devs.c
blob03f654d55effb2f10355c914ab206730928759f7
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>
21 #include <linux/io.h>
22 #include <linux/slab.h>
23 #include <linux/string.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/fb.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>
33 #include <linux/platform_data/s3c-hsotg.h>
35 #include <media/s5p_hdmi.h>
37 #include <asm/irq.h>
38 #include <asm/mach/arch.h>
39 #include <asm/mach/map.h>
40 #include <asm/mach/irq.h>
42 #include <mach/hardware.h>
43 #include <mach/dma.h>
44 #include <mach/irqs.h>
45 #include <mach/map.h>
47 #include <plat/cpu.h>
48 #include <plat/devs.h>
49 #include <plat/adc.h>
50 #include <linux/platform_data/ata-samsung_cf.h>
51 #include <linux/platform_data/usb-ehci-s5p.h>
52 #include <plat/fb.h>
53 #include <plat/fb-s3c2410.h>
54 #include <plat/hdmi.h>
55 #include <linux/platform_data/hwmon-s3c.h>
56 #include <linux/platform_data/i2c-s3c2410.h>
57 #include <plat/keypad.h>
58 #include <linux/platform_data/mmc-s3cmci.h>
59 #include <linux/platform_data/mtd-nand-s3c2410.h>
60 #include <plat/sdhci.h>
61 #include <linux/platform_data/touchscreen-s3c2410.h>
62 #include <linux/platform_data/usb-s3c2410_udc.h>
63 #include <linux/platform_data/usb-ohci-s3c2410.h>
64 #include <plat/usb-phy.h>
65 #include <plat/regs-iic.h>
66 #include <plat/regs-serial.h>
67 #include <plat/regs-spi.h>
68 #include <linux/platform_data/spi-s3c64xx.h>
70 static u64 samsung_device_dma_mask = DMA_BIT_MASK(32);
72 /* AC97 */
73 #ifdef CONFIG_CPU_S3C2440
74 static struct resource s3c_ac97_resource[] = {
75 [0] = DEFINE_RES_MEM(S3C2440_PA_AC97, S3C2440_SZ_AC97),
76 [1] = DEFINE_RES_IRQ(IRQ_S3C244X_AC97),
77 [2] = DEFINE_RES_DMA_NAMED(DMACH_PCM_OUT, "PCM out"),
78 [3] = DEFINE_RES_DMA_NAMED(DMACH_PCM_IN, "PCM in"),
79 [4] = DEFINE_RES_DMA_NAMED(DMACH_MIC_IN, "Mic in"),
82 struct platform_device s3c_device_ac97 = {
83 .name = "samsung-ac97",
84 .id = -1,
85 .num_resources = ARRAY_SIZE(s3c_ac97_resource),
86 .resource = s3c_ac97_resource,
87 .dev = {
88 .dma_mask = &samsung_device_dma_mask,
89 .coherent_dma_mask = DMA_BIT_MASK(32),
92 #endif /* CONFIG_CPU_S3C2440 */
94 /* ADC */
96 #ifdef CONFIG_PLAT_S3C24XX
97 static struct resource s3c_adc_resource[] = {
98 [0] = DEFINE_RES_MEM(S3C24XX_PA_ADC, S3C24XX_SZ_ADC),
99 [1] = DEFINE_RES_IRQ(IRQ_TC),
100 [2] = DEFINE_RES_IRQ(IRQ_ADC),
103 struct platform_device s3c_device_adc = {
104 .name = "s3c24xx-adc",
105 .id = -1,
106 .num_resources = ARRAY_SIZE(s3c_adc_resource),
107 .resource = s3c_adc_resource,
109 #endif /* CONFIG_PLAT_S3C24XX */
111 #if defined(CONFIG_SAMSUNG_DEV_ADC)
112 static struct resource s3c_adc_resource[] = {
113 [0] = DEFINE_RES_MEM(SAMSUNG_PA_ADC, SZ_256),
114 [1] = DEFINE_RES_IRQ(IRQ_TC),
115 [2] = DEFINE_RES_IRQ(IRQ_ADC),
118 struct platform_device s3c_device_adc = {
119 .name = "samsung-adc",
120 .id = -1,
121 .num_resources = ARRAY_SIZE(s3c_adc_resource),
122 .resource = s3c_adc_resource,
124 #endif /* CONFIG_SAMSUNG_DEV_ADC */
126 /* Camif Controller */
128 #ifdef CONFIG_CPU_S3C2440
129 static struct resource s3c_camif_resource[] = {
130 [0] = DEFINE_RES_MEM(S3C2440_PA_CAMIF, S3C2440_SZ_CAMIF),
131 [1] = DEFINE_RES_IRQ(IRQ_S3C2440_CAM_C),
132 [2] = DEFINE_RES_IRQ(IRQ_S3C2440_CAM_P),
135 struct platform_device s3c_device_camif = {
136 .name = "s3c2440-camif",
137 .id = -1,
138 .num_resources = ARRAY_SIZE(s3c_camif_resource),
139 .resource = s3c_camif_resource,
140 .dev = {
141 .dma_mask = &samsung_device_dma_mask,
142 .coherent_dma_mask = DMA_BIT_MASK(32),
145 #endif /* CONFIG_CPU_S3C2440 */
147 /* ASOC DMA */
149 struct platform_device samsung_asoc_dma = {
150 .name = "samsung-audio",
151 .id = -1,
152 .dev = {
153 .dma_mask = &samsung_device_dma_mask,
154 .coherent_dma_mask = DMA_BIT_MASK(32),
158 struct platform_device samsung_asoc_idma = {
159 .name = "samsung-idma",
160 .id = -1,
161 .dev = {
162 .dma_mask = &samsung_device_dma_mask,
163 .coherent_dma_mask = DMA_BIT_MASK(32),
167 /* FB */
169 #ifdef CONFIG_S3C_DEV_FB
170 static struct resource s3c_fb_resource[] = {
171 [0] = DEFINE_RES_MEM(S3C_PA_FB, SZ_16K),
172 [1] = DEFINE_RES_IRQ(IRQ_LCD_VSYNC),
173 [2] = DEFINE_RES_IRQ(IRQ_LCD_FIFO),
174 [3] = DEFINE_RES_IRQ(IRQ_LCD_SYSTEM),
177 struct platform_device s3c_device_fb = {
178 .name = "s3c-fb",
179 .id = -1,
180 .num_resources = ARRAY_SIZE(s3c_fb_resource),
181 .resource = s3c_fb_resource,
182 .dev = {
183 .dma_mask = &samsung_device_dma_mask,
184 .coherent_dma_mask = DMA_BIT_MASK(32),
188 void __init s3c_fb_set_platdata(struct s3c_fb_platdata *pd)
190 s3c_set_platdata(pd, sizeof(struct s3c_fb_platdata),
191 &s3c_device_fb);
193 #endif /* CONFIG_S3C_DEV_FB */
195 /* FIMC */
197 #ifdef CONFIG_S5P_DEV_FIMC0
198 static struct resource s5p_fimc0_resource[] = {
199 [0] = DEFINE_RES_MEM(S5P_PA_FIMC0, SZ_4K),
200 [1] = DEFINE_RES_IRQ(IRQ_FIMC0),
203 struct platform_device s5p_device_fimc0 = {
204 .name = "s5p-fimc",
205 .id = 0,
206 .num_resources = ARRAY_SIZE(s5p_fimc0_resource),
207 .resource = s5p_fimc0_resource,
208 .dev = {
209 .dma_mask = &samsung_device_dma_mask,
210 .coherent_dma_mask = DMA_BIT_MASK(32),
214 struct platform_device s5p_device_fimc_md = {
215 .name = "s5p-fimc-md",
216 .id = -1,
218 #endif /* CONFIG_S5P_DEV_FIMC0 */
220 #ifdef CONFIG_S5P_DEV_FIMC1
221 static struct resource s5p_fimc1_resource[] = {
222 [0] = DEFINE_RES_MEM(S5P_PA_FIMC1, SZ_4K),
223 [1] = DEFINE_RES_IRQ(IRQ_FIMC1),
226 struct platform_device s5p_device_fimc1 = {
227 .name = "s5p-fimc",
228 .id = 1,
229 .num_resources = ARRAY_SIZE(s5p_fimc1_resource),
230 .resource = s5p_fimc1_resource,
231 .dev = {
232 .dma_mask = &samsung_device_dma_mask,
233 .coherent_dma_mask = DMA_BIT_MASK(32),
236 #endif /* CONFIG_S5P_DEV_FIMC1 */
238 #ifdef CONFIG_S5P_DEV_FIMC2
239 static struct resource s5p_fimc2_resource[] = {
240 [0] = DEFINE_RES_MEM(S5P_PA_FIMC2, SZ_4K),
241 [1] = DEFINE_RES_IRQ(IRQ_FIMC2),
244 struct platform_device s5p_device_fimc2 = {
245 .name = "s5p-fimc",
246 .id = 2,
247 .num_resources = ARRAY_SIZE(s5p_fimc2_resource),
248 .resource = s5p_fimc2_resource,
249 .dev = {
250 .dma_mask = &samsung_device_dma_mask,
251 .coherent_dma_mask = DMA_BIT_MASK(32),
254 #endif /* CONFIG_S5P_DEV_FIMC2 */
256 #ifdef CONFIG_S5P_DEV_FIMC3
257 static struct resource s5p_fimc3_resource[] = {
258 [0] = DEFINE_RES_MEM(S5P_PA_FIMC3, SZ_4K),
259 [1] = DEFINE_RES_IRQ(IRQ_FIMC3),
262 struct platform_device s5p_device_fimc3 = {
263 .name = "s5p-fimc",
264 .id = 3,
265 .num_resources = ARRAY_SIZE(s5p_fimc3_resource),
266 .resource = s5p_fimc3_resource,
267 .dev = {
268 .dma_mask = &samsung_device_dma_mask,
269 .coherent_dma_mask = DMA_BIT_MASK(32),
272 #endif /* CONFIG_S5P_DEV_FIMC3 */
274 /* G2D */
276 #ifdef CONFIG_S5P_DEV_G2D
277 static struct resource s5p_g2d_resource[] = {
278 [0] = DEFINE_RES_MEM(S5P_PA_G2D, SZ_4K),
279 [1] = DEFINE_RES_IRQ(IRQ_2D),
282 struct platform_device s5p_device_g2d = {
283 .name = "s5p-g2d",
284 .id = 0,
285 .num_resources = ARRAY_SIZE(s5p_g2d_resource),
286 .resource = s5p_g2d_resource,
287 .dev = {
288 .dma_mask = &samsung_device_dma_mask,
289 .coherent_dma_mask = DMA_BIT_MASK(32),
292 #endif /* CONFIG_S5P_DEV_G2D */
294 #ifdef CONFIG_S5P_DEV_JPEG
295 static struct resource s5p_jpeg_resource[] = {
296 [0] = DEFINE_RES_MEM(S5P_PA_JPEG, SZ_4K),
297 [1] = DEFINE_RES_IRQ(IRQ_JPEG),
300 struct platform_device s5p_device_jpeg = {
301 .name = "s5p-jpeg",
302 .id = 0,
303 .num_resources = ARRAY_SIZE(s5p_jpeg_resource),
304 .resource = s5p_jpeg_resource,
305 .dev = {
306 .dma_mask = &samsung_device_dma_mask,
307 .coherent_dma_mask = DMA_BIT_MASK(32),
310 #endif /* CONFIG_S5P_DEV_JPEG */
312 /* FIMD0 */
314 #ifdef CONFIG_S5P_DEV_FIMD0
315 static struct resource s5p_fimd0_resource[] = {
316 [0] = DEFINE_RES_MEM(S5P_PA_FIMD0, SZ_32K),
317 [1] = DEFINE_RES_IRQ(IRQ_FIMD0_VSYNC),
318 [2] = DEFINE_RES_IRQ(IRQ_FIMD0_FIFO),
319 [3] = DEFINE_RES_IRQ(IRQ_FIMD0_SYSTEM),
322 struct platform_device s5p_device_fimd0 = {
323 .name = "s5p-fb",
324 .id = 0,
325 .num_resources = ARRAY_SIZE(s5p_fimd0_resource),
326 .resource = s5p_fimd0_resource,
327 .dev = {
328 .dma_mask = &samsung_device_dma_mask,
329 .coherent_dma_mask = DMA_BIT_MASK(32),
333 void __init s5p_fimd0_set_platdata(struct s3c_fb_platdata *pd)
335 s3c_set_platdata(pd, sizeof(struct s3c_fb_platdata),
336 &s5p_device_fimd0);
338 #endif /* CONFIG_S5P_DEV_FIMD0 */
340 /* HWMON */
342 #ifdef CONFIG_S3C_DEV_HWMON
343 struct platform_device s3c_device_hwmon = {
344 .name = "s3c-hwmon",
345 .id = -1,
346 .dev.parent = &s3c_device_adc.dev,
349 void __init s3c_hwmon_set_platdata(struct s3c_hwmon_pdata *pd)
351 s3c_set_platdata(pd, sizeof(struct s3c_hwmon_pdata),
352 &s3c_device_hwmon);
354 #endif /* CONFIG_S3C_DEV_HWMON */
356 /* HSMMC */
358 #ifdef CONFIG_S3C_DEV_HSMMC
359 static struct resource s3c_hsmmc_resource[] = {
360 [0] = DEFINE_RES_MEM(S3C_PA_HSMMC0, SZ_4K),
361 [1] = DEFINE_RES_IRQ(IRQ_HSMMC0),
364 struct s3c_sdhci_platdata s3c_hsmmc0_def_platdata = {
365 .max_width = 4,
366 .host_caps = (MMC_CAP_4_BIT_DATA |
367 MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED),
370 struct platform_device s3c_device_hsmmc0 = {
371 .name = "s3c-sdhci",
372 .id = 0,
373 .num_resources = ARRAY_SIZE(s3c_hsmmc_resource),
374 .resource = s3c_hsmmc_resource,
375 .dev = {
376 .dma_mask = &samsung_device_dma_mask,
377 .coherent_dma_mask = DMA_BIT_MASK(32),
378 .platform_data = &s3c_hsmmc0_def_platdata,
382 void s3c_sdhci0_set_platdata(struct s3c_sdhci_platdata *pd)
384 s3c_sdhci_set_platdata(pd, &s3c_hsmmc0_def_platdata);
386 #endif /* CONFIG_S3C_DEV_HSMMC */
388 #ifdef CONFIG_S3C_DEV_HSMMC1
389 static struct resource s3c_hsmmc1_resource[] = {
390 [0] = DEFINE_RES_MEM(S3C_PA_HSMMC1, SZ_4K),
391 [1] = DEFINE_RES_IRQ(IRQ_HSMMC1),
394 struct s3c_sdhci_platdata s3c_hsmmc1_def_platdata = {
395 .max_width = 4,
396 .host_caps = (MMC_CAP_4_BIT_DATA |
397 MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED),
400 struct platform_device s3c_device_hsmmc1 = {
401 .name = "s3c-sdhci",
402 .id = 1,
403 .num_resources = ARRAY_SIZE(s3c_hsmmc1_resource),
404 .resource = s3c_hsmmc1_resource,
405 .dev = {
406 .dma_mask = &samsung_device_dma_mask,
407 .coherent_dma_mask = DMA_BIT_MASK(32),
408 .platform_data = &s3c_hsmmc1_def_platdata,
412 void s3c_sdhci1_set_platdata(struct s3c_sdhci_platdata *pd)
414 s3c_sdhci_set_platdata(pd, &s3c_hsmmc1_def_platdata);
416 #endif /* CONFIG_S3C_DEV_HSMMC1 */
418 /* HSMMC2 */
420 #ifdef CONFIG_S3C_DEV_HSMMC2
421 static struct resource s3c_hsmmc2_resource[] = {
422 [0] = DEFINE_RES_MEM(S3C_PA_HSMMC2, SZ_4K),
423 [1] = DEFINE_RES_IRQ(IRQ_HSMMC2),
426 struct s3c_sdhci_platdata s3c_hsmmc2_def_platdata = {
427 .max_width = 4,
428 .host_caps = (MMC_CAP_4_BIT_DATA |
429 MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED),
432 struct platform_device s3c_device_hsmmc2 = {
433 .name = "s3c-sdhci",
434 .id = 2,
435 .num_resources = ARRAY_SIZE(s3c_hsmmc2_resource),
436 .resource = s3c_hsmmc2_resource,
437 .dev = {
438 .dma_mask = &samsung_device_dma_mask,
439 .coherent_dma_mask = DMA_BIT_MASK(32),
440 .platform_data = &s3c_hsmmc2_def_platdata,
444 void s3c_sdhci2_set_platdata(struct s3c_sdhci_platdata *pd)
446 s3c_sdhci_set_platdata(pd, &s3c_hsmmc2_def_platdata);
448 #endif /* CONFIG_S3C_DEV_HSMMC2 */
450 #ifdef CONFIG_S3C_DEV_HSMMC3
451 static struct resource s3c_hsmmc3_resource[] = {
452 [0] = DEFINE_RES_MEM(S3C_PA_HSMMC3, SZ_4K),
453 [1] = DEFINE_RES_IRQ(IRQ_HSMMC3),
456 struct s3c_sdhci_platdata s3c_hsmmc3_def_platdata = {
457 .max_width = 4,
458 .host_caps = (MMC_CAP_4_BIT_DATA |
459 MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED),
462 struct platform_device s3c_device_hsmmc3 = {
463 .name = "s3c-sdhci",
464 .id = 3,
465 .num_resources = ARRAY_SIZE(s3c_hsmmc3_resource),
466 .resource = s3c_hsmmc3_resource,
467 .dev = {
468 .dma_mask = &samsung_device_dma_mask,
469 .coherent_dma_mask = DMA_BIT_MASK(32),
470 .platform_data = &s3c_hsmmc3_def_platdata,
474 void s3c_sdhci3_set_platdata(struct s3c_sdhci_platdata *pd)
476 s3c_sdhci_set_platdata(pd, &s3c_hsmmc3_def_platdata);
478 #endif /* CONFIG_S3C_DEV_HSMMC3 */
480 /* I2C */
482 static struct resource s3c_i2c0_resource[] = {
483 [0] = DEFINE_RES_MEM(S3C_PA_IIC, SZ_4K),
484 [1] = DEFINE_RES_IRQ(IRQ_IIC),
487 struct platform_device s3c_device_i2c0 = {
488 .name = "s3c2410-i2c",
489 #ifdef CONFIG_S3C_DEV_I2C1
490 .id = 0,
491 #else
492 .id = -1,
493 #endif
494 .num_resources = ARRAY_SIZE(s3c_i2c0_resource),
495 .resource = s3c_i2c0_resource,
498 struct s3c2410_platform_i2c default_i2c_data __initdata = {
499 .flags = 0,
500 .slave_addr = 0x10,
501 .frequency = 100*1000,
502 .sda_delay = 100,
505 void __init s3c_i2c0_set_platdata(struct s3c2410_platform_i2c *pd)
507 struct s3c2410_platform_i2c *npd;
509 if (!pd) {
510 pd = &default_i2c_data;
511 pd->bus_num = 0;
514 npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c),
515 &s3c_device_i2c0);
517 if (!npd->cfg_gpio)
518 npd->cfg_gpio = s3c_i2c0_cfg_gpio;
521 #ifdef CONFIG_S3C_DEV_I2C1
522 static struct resource s3c_i2c1_resource[] = {
523 [0] = DEFINE_RES_MEM(S3C_PA_IIC1, SZ_4K),
524 [1] = DEFINE_RES_IRQ(IRQ_IIC1),
527 struct platform_device s3c_device_i2c1 = {
528 .name = "s3c2410-i2c",
529 .id = 1,
530 .num_resources = ARRAY_SIZE(s3c_i2c1_resource),
531 .resource = s3c_i2c1_resource,
534 void __init s3c_i2c1_set_platdata(struct s3c2410_platform_i2c *pd)
536 struct s3c2410_platform_i2c *npd;
538 if (!pd) {
539 pd = &default_i2c_data;
540 pd->bus_num = 1;
543 npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c),
544 &s3c_device_i2c1);
546 if (!npd->cfg_gpio)
547 npd->cfg_gpio = s3c_i2c1_cfg_gpio;
549 #endif /* CONFIG_S3C_DEV_I2C1 */
551 #ifdef CONFIG_S3C_DEV_I2C2
552 static struct resource s3c_i2c2_resource[] = {
553 [0] = DEFINE_RES_MEM(S3C_PA_IIC2, SZ_4K),
554 [1] = DEFINE_RES_IRQ(IRQ_IIC2),
557 struct platform_device s3c_device_i2c2 = {
558 .name = "s3c2410-i2c",
559 .id = 2,
560 .num_resources = ARRAY_SIZE(s3c_i2c2_resource),
561 .resource = s3c_i2c2_resource,
564 void __init s3c_i2c2_set_platdata(struct s3c2410_platform_i2c *pd)
566 struct s3c2410_platform_i2c *npd;
568 if (!pd) {
569 pd = &default_i2c_data;
570 pd->bus_num = 2;
573 npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c),
574 &s3c_device_i2c2);
576 if (!npd->cfg_gpio)
577 npd->cfg_gpio = s3c_i2c2_cfg_gpio;
579 #endif /* CONFIG_S3C_DEV_I2C2 */
581 #ifdef CONFIG_S3C_DEV_I2C3
582 static struct resource s3c_i2c3_resource[] = {
583 [0] = DEFINE_RES_MEM(S3C_PA_IIC3, SZ_4K),
584 [1] = DEFINE_RES_IRQ(IRQ_IIC3),
587 struct platform_device s3c_device_i2c3 = {
588 .name = "s3c2440-i2c",
589 .id = 3,
590 .num_resources = ARRAY_SIZE(s3c_i2c3_resource),
591 .resource = s3c_i2c3_resource,
594 void __init s3c_i2c3_set_platdata(struct s3c2410_platform_i2c *pd)
596 struct s3c2410_platform_i2c *npd;
598 if (!pd) {
599 pd = &default_i2c_data;
600 pd->bus_num = 3;
603 npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c),
604 &s3c_device_i2c3);
606 if (!npd->cfg_gpio)
607 npd->cfg_gpio = s3c_i2c3_cfg_gpio;
609 #endif /*CONFIG_S3C_DEV_I2C3 */
611 #ifdef CONFIG_S3C_DEV_I2C4
612 static struct resource s3c_i2c4_resource[] = {
613 [0] = DEFINE_RES_MEM(S3C_PA_IIC4, SZ_4K),
614 [1] = DEFINE_RES_IRQ(IRQ_IIC4),
617 struct platform_device s3c_device_i2c4 = {
618 .name = "s3c2440-i2c",
619 .id = 4,
620 .num_resources = ARRAY_SIZE(s3c_i2c4_resource),
621 .resource = s3c_i2c4_resource,
624 void __init s3c_i2c4_set_platdata(struct s3c2410_platform_i2c *pd)
626 struct s3c2410_platform_i2c *npd;
628 if (!pd) {
629 pd = &default_i2c_data;
630 pd->bus_num = 4;
633 npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c),
634 &s3c_device_i2c4);
636 if (!npd->cfg_gpio)
637 npd->cfg_gpio = s3c_i2c4_cfg_gpio;
639 #endif /*CONFIG_S3C_DEV_I2C4 */
641 #ifdef CONFIG_S3C_DEV_I2C5
642 static struct resource s3c_i2c5_resource[] = {
643 [0] = DEFINE_RES_MEM(S3C_PA_IIC5, SZ_4K),
644 [1] = DEFINE_RES_IRQ(IRQ_IIC5),
647 struct platform_device s3c_device_i2c5 = {
648 .name = "s3c2440-i2c",
649 .id = 5,
650 .num_resources = ARRAY_SIZE(s3c_i2c5_resource),
651 .resource = s3c_i2c5_resource,
654 void __init s3c_i2c5_set_platdata(struct s3c2410_platform_i2c *pd)
656 struct s3c2410_platform_i2c *npd;
658 if (!pd) {
659 pd = &default_i2c_data;
660 pd->bus_num = 5;
663 npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c),
664 &s3c_device_i2c5);
666 if (!npd->cfg_gpio)
667 npd->cfg_gpio = s3c_i2c5_cfg_gpio;
669 #endif /*CONFIG_S3C_DEV_I2C5 */
671 #ifdef CONFIG_S3C_DEV_I2C6
672 static struct resource s3c_i2c6_resource[] = {
673 [0] = DEFINE_RES_MEM(S3C_PA_IIC6, SZ_4K),
674 [1] = DEFINE_RES_IRQ(IRQ_IIC6),
677 struct platform_device s3c_device_i2c6 = {
678 .name = "s3c2440-i2c",
679 .id = 6,
680 .num_resources = ARRAY_SIZE(s3c_i2c6_resource),
681 .resource = s3c_i2c6_resource,
684 void __init s3c_i2c6_set_platdata(struct s3c2410_platform_i2c *pd)
686 struct s3c2410_platform_i2c *npd;
688 if (!pd) {
689 pd = &default_i2c_data;
690 pd->bus_num = 6;
693 npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c),
694 &s3c_device_i2c6);
696 if (!npd->cfg_gpio)
697 npd->cfg_gpio = s3c_i2c6_cfg_gpio;
699 #endif /* CONFIG_S3C_DEV_I2C6 */
701 #ifdef CONFIG_S3C_DEV_I2C7
702 static struct resource s3c_i2c7_resource[] = {
703 [0] = DEFINE_RES_MEM(S3C_PA_IIC7, SZ_4K),
704 [1] = DEFINE_RES_IRQ(IRQ_IIC7),
707 struct platform_device s3c_device_i2c7 = {
708 .name = "s3c2440-i2c",
709 .id = 7,
710 .num_resources = ARRAY_SIZE(s3c_i2c7_resource),
711 .resource = s3c_i2c7_resource,
714 void __init s3c_i2c7_set_platdata(struct s3c2410_platform_i2c *pd)
716 struct s3c2410_platform_i2c *npd;
718 if (!pd) {
719 pd = &default_i2c_data;
720 pd->bus_num = 7;
723 npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c),
724 &s3c_device_i2c7);
726 if (!npd->cfg_gpio)
727 npd->cfg_gpio = s3c_i2c7_cfg_gpio;
729 #endif /* CONFIG_S3C_DEV_I2C7 */
731 /* I2C HDMIPHY */
733 #ifdef CONFIG_S5P_DEV_I2C_HDMIPHY
734 static struct resource s5p_i2c_resource[] = {
735 [0] = DEFINE_RES_MEM(S5P_PA_IIC_HDMIPHY, SZ_4K),
736 [1] = DEFINE_RES_IRQ(IRQ_IIC_HDMIPHY),
739 struct platform_device s5p_device_i2c_hdmiphy = {
740 .name = "s3c2440-hdmiphy-i2c",
741 .id = -1,
742 .num_resources = ARRAY_SIZE(s5p_i2c_resource),
743 .resource = s5p_i2c_resource,
746 void __init s5p_i2c_hdmiphy_set_platdata(struct s3c2410_platform_i2c *pd)
748 struct s3c2410_platform_i2c *npd;
750 if (!pd) {
751 pd = &default_i2c_data;
753 if (soc_is_exynos4210() ||
754 soc_is_exynos4212() || soc_is_exynos4412())
755 pd->bus_num = 8;
756 else if (soc_is_s5pv210())
757 pd->bus_num = 3;
758 else
759 pd->bus_num = 0;
762 npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c),
763 &s5p_device_i2c_hdmiphy);
766 static struct s5p_hdmi_platform_data s5p_hdmi_def_platdata;
768 void __init s5p_hdmi_set_platdata(struct i2c_board_info *hdmiphy_info,
769 struct i2c_board_info *mhl_info, int mhl_bus)
771 struct s5p_hdmi_platform_data *pd = &s5p_hdmi_def_platdata;
773 if (soc_is_exynos4210() ||
774 soc_is_exynos4212() || soc_is_exynos4412())
775 pd->hdmiphy_bus = 8;
776 else if (soc_is_s5pv210())
777 pd->hdmiphy_bus = 3;
778 else
779 pd->hdmiphy_bus = 0;
781 pd->hdmiphy_info = hdmiphy_info;
782 pd->mhl_info = mhl_info;
783 pd->mhl_bus = mhl_bus;
785 s3c_set_platdata(pd, sizeof(struct s5p_hdmi_platform_data),
786 &s5p_device_hdmi);
789 #endif /* CONFIG_S5P_DEV_I2C_HDMIPHY */
791 /* I2S */
793 #ifdef CONFIG_PLAT_S3C24XX
794 static struct resource s3c_iis_resource[] = {
795 [0] = DEFINE_RES_MEM(S3C24XX_PA_IIS, S3C24XX_SZ_IIS),
798 struct platform_device s3c_device_iis = {
799 .name = "s3c24xx-iis",
800 .id = -1,
801 .num_resources = ARRAY_SIZE(s3c_iis_resource),
802 .resource = s3c_iis_resource,
803 .dev = {
804 .dma_mask = &samsung_device_dma_mask,
805 .coherent_dma_mask = DMA_BIT_MASK(32),
808 #endif /* CONFIG_PLAT_S3C24XX */
810 /* IDE CFCON */
812 #ifdef CONFIG_SAMSUNG_DEV_IDE
813 static struct resource s3c_cfcon_resource[] = {
814 [0] = DEFINE_RES_MEM(SAMSUNG_PA_CFCON, SZ_16K),
815 [1] = DEFINE_RES_IRQ(IRQ_CFCON),
818 struct platform_device s3c_device_cfcon = {
819 .id = 0,
820 .num_resources = ARRAY_SIZE(s3c_cfcon_resource),
821 .resource = s3c_cfcon_resource,
824 void __init s3c_ide_set_platdata(struct s3c_ide_platdata *pdata)
826 s3c_set_platdata(pdata, sizeof(struct s3c_ide_platdata),
827 &s3c_device_cfcon);
829 #endif /* CONFIG_SAMSUNG_DEV_IDE */
831 /* KEYPAD */
833 #ifdef CONFIG_SAMSUNG_DEV_KEYPAD
834 static struct resource samsung_keypad_resources[] = {
835 [0] = DEFINE_RES_MEM(SAMSUNG_PA_KEYPAD, SZ_32),
836 [1] = DEFINE_RES_IRQ(IRQ_KEYPAD),
839 struct platform_device samsung_device_keypad = {
840 .name = "samsung-keypad",
841 .id = -1,
842 .num_resources = ARRAY_SIZE(samsung_keypad_resources),
843 .resource = samsung_keypad_resources,
846 void __init samsung_keypad_set_platdata(struct samsung_keypad_platdata *pd)
848 struct samsung_keypad_platdata *npd;
850 npd = s3c_set_platdata(pd, sizeof(struct samsung_keypad_platdata),
851 &samsung_device_keypad);
853 if (!npd->cfg_gpio)
854 npd->cfg_gpio = samsung_keypad_cfg_gpio;
856 #endif /* CONFIG_SAMSUNG_DEV_KEYPAD */
858 /* LCD Controller */
860 #ifdef CONFIG_PLAT_S3C24XX
861 static struct resource s3c_lcd_resource[] = {
862 [0] = DEFINE_RES_MEM(S3C24XX_PA_LCD, S3C24XX_SZ_LCD),
863 [1] = DEFINE_RES_IRQ(IRQ_LCD),
866 struct platform_device s3c_device_lcd = {
867 .name = "s3c2410-lcd",
868 .id = -1,
869 .num_resources = ARRAY_SIZE(s3c_lcd_resource),
870 .resource = s3c_lcd_resource,
871 .dev = {
872 .dma_mask = &samsung_device_dma_mask,
873 .coherent_dma_mask = DMA_BIT_MASK(32),
877 void __init s3c24xx_fb_set_platdata(struct s3c2410fb_mach_info *pd)
879 struct s3c2410fb_mach_info *npd;
881 npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_lcd);
882 if (npd) {
883 npd->displays = kmemdup(pd->displays,
884 sizeof(struct s3c2410fb_display) * npd->num_displays,
885 GFP_KERNEL);
886 if (!npd->displays)
887 printk(KERN_ERR "no memory for LCD display data\n");
888 } else {
889 printk(KERN_ERR "no memory for LCD platform data\n");
892 #endif /* CONFIG_PLAT_S3C24XX */
894 /* MFC */
896 #ifdef CONFIG_S5P_DEV_MFC
897 static struct resource s5p_mfc_resource[] = {
898 [0] = DEFINE_RES_MEM(S5P_PA_MFC, SZ_64K),
899 [1] = DEFINE_RES_IRQ(IRQ_MFC),
902 struct platform_device s5p_device_mfc = {
903 .name = "s5p-mfc",
904 .id = -1,
905 .num_resources = ARRAY_SIZE(s5p_mfc_resource),
906 .resource = s5p_mfc_resource,
910 * MFC hardware has 2 memory interfaces which are modelled as two separate
911 * platform devices to let dma-mapping distinguish between them.
913 * MFC parent device (s5p_device_mfc) must be registered before memory
914 * interface specific devices (s5p_device_mfc_l and s5p_device_mfc_r).
917 struct platform_device s5p_device_mfc_l = {
918 .name = "s5p-mfc-l",
919 .id = -1,
920 .dev = {
921 .parent = &s5p_device_mfc.dev,
922 .dma_mask = &samsung_device_dma_mask,
923 .coherent_dma_mask = DMA_BIT_MASK(32),
927 struct platform_device s5p_device_mfc_r = {
928 .name = "s5p-mfc-r",
929 .id = -1,
930 .dev = {
931 .parent = &s5p_device_mfc.dev,
932 .dma_mask = &samsung_device_dma_mask,
933 .coherent_dma_mask = DMA_BIT_MASK(32),
936 #endif /* CONFIG_S5P_DEV_MFC */
938 /* MIPI CSIS */
940 #ifdef CONFIG_S5P_DEV_CSIS0
941 static struct resource s5p_mipi_csis0_resource[] = {
942 [0] = DEFINE_RES_MEM(S5P_PA_MIPI_CSIS0, SZ_16K),
943 [1] = DEFINE_RES_IRQ(IRQ_MIPI_CSIS0),
946 struct platform_device s5p_device_mipi_csis0 = {
947 .name = "s5p-mipi-csis",
948 .id = 0,
949 .num_resources = ARRAY_SIZE(s5p_mipi_csis0_resource),
950 .resource = s5p_mipi_csis0_resource,
952 #endif /* CONFIG_S5P_DEV_CSIS0 */
954 #ifdef CONFIG_S5P_DEV_CSIS1
955 static struct resource s5p_mipi_csis1_resource[] = {
956 [0] = DEFINE_RES_MEM(S5P_PA_MIPI_CSIS1, SZ_16K),
957 [1] = DEFINE_RES_IRQ(IRQ_MIPI_CSIS1),
960 struct platform_device s5p_device_mipi_csis1 = {
961 .name = "s5p-mipi-csis",
962 .id = 1,
963 .num_resources = ARRAY_SIZE(s5p_mipi_csis1_resource),
964 .resource = s5p_mipi_csis1_resource,
966 #endif
968 /* NAND */
970 #ifdef CONFIG_S3C_DEV_NAND
971 static struct resource s3c_nand_resource[] = {
972 [0] = DEFINE_RES_MEM(S3C_PA_NAND, SZ_1M),
975 struct platform_device s3c_device_nand = {
976 .name = "s3c2410-nand",
977 .id = -1,
978 .num_resources = ARRAY_SIZE(s3c_nand_resource),
979 .resource = s3c_nand_resource,
983 * s3c_nand_copy_set() - copy nand set data
984 * @set: The new structure, directly copied from the old.
986 * Copy all the fields from the NAND set field from what is probably __initdata
987 * to new kernel memory. The code returns 0 if the copy happened correctly or
988 * an error code for the calling function to display.
990 * Note, we currently do not try and look to see if we've already copied the
991 * data in a previous set.
993 static int __init s3c_nand_copy_set(struct s3c2410_nand_set *set)
995 void *ptr;
996 int size;
998 size = sizeof(struct mtd_partition) * set->nr_partitions;
999 if (size) {
1000 ptr = kmemdup(set->partitions, size, GFP_KERNEL);
1001 set->partitions = ptr;
1003 if (!ptr)
1004 return -ENOMEM;
1007 if (set->nr_map && set->nr_chips) {
1008 size = sizeof(int) * set->nr_chips;
1009 ptr = kmemdup(set->nr_map, size, GFP_KERNEL);
1010 set->nr_map = ptr;
1012 if (!ptr)
1013 return -ENOMEM;
1016 if (set->ecc_layout) {
1017 ptr = kmemdup(set->ecc_layout,
1018 sizeof(struct nand_ecclayout), GFP_KERNEL);
1019 set->ecc_layout = ptr;
1021 if (!ptr)
1022 return -ENOMEM;
1025 return 0;
1028 void __init s3c_nand_set_platdata(struct s3c2410_platform_nand *nand)
1030 struct s3c2410_platform_nand *npd;
1031 int size;
1032 int ret;
1034 /* note, if we get a failure in allocation, we simply drop out of the
1035 * function. If there is so little memory available at initialisation
1036 * time then there is little chance the system is going to run.
1039 npd = s3c_set_platdata(nand, sizeof(struct s3c2410_platform_nand),
1040 &s3c_device_nand);
1041 if (!npd)
1042 return;
1044 /* now see if we need to copy any of the nand set data */
1046 size = sizeof(struct s3c2410_nand_set) * npd->nr_sets;
1047 if (size) {
1048 struct s3c2410_nand_set *from = npd->sets;
1049 struct s3c2410_nand_set *to;
1050 int i;
1052 to = kmemdup(from, size, GFP_KERNEL);
1053 npd->sets = to; /* set, even if we failed */
1055 if (!to) {
1056 printk(KERN_ERR "%s: no memory for sets\n", __func__);
1057 return;
1060 for (i = 0; i < npd->nr_sets; i++) {
1061 ret = s3c_nand_copy_set(to);
1062 if (ret) {
1063 printk(KERN_ERR "%s: failed to copy set %d\n",
1064 __func__, i);
1065 return;
1067 to++;
1071 #endif /* CONFIG_S3C_DEV_NAND */
1073 /* ONENAND */
1075 #ifdef CONFIG_S3C_DEV_ONENAND
1076 static struct resource s3c_onenand_resources[] = {
1077 [0] = DEFINE_RES_MEM(S3C_PA_ONENAND, SZ_1K),
1078 [1] = DEFINE_RES_MEM(S3C_PA_ONENAND_BUF, S3C_SZ_ONENAND_BUF),
1079 [2] = DEFINE_RES_IRQ(IRQ_ONENAND),
1082 struct platform_device s3c_device_onenand = {
1083 .name = "samsung-onenand",
1084 .id = 0,
1085 .num_resources = ARRAY_SIZE(s3c_onenand_resources),
1086 .resource = s3c_onenand_resources,
1088 #endif /* CONFIG_S3C_DEV_ONENAND */
1090 #ifdef CONFIG_S3C64XX_DEV_ONENAND1
1091 static struct resource s3c64xx_onenand1_resources[] = {
1092 [0] = DEFINE_RES_MEM(S3C64XX_PA_ONENAND1, SZ_1K),
1093 [1] = DEFINE_RES_MEM(S3C64XX_PA_ONENAND1_BUF, S3C64XX_SZ_ONENAND1_BUF),
1094 [2] = DEFINE_RES_IRQ(IRQ_ONENAND1),
1097 struct platform_device s3c64xx_device_onenand1 = {
1098 .name = "samsung-onenand",
1099 .id = 1,
1100 .num_resources = ARRAY_SIZE(s3c64xx_onenand1_resources),
1101 .resource = s3c64xx_onenand1_resources,
1104 void __init s3c64xx_onenand1_set_platdata(struct onenand_platform_data *pdata)
1106 s3c_set_platdata(pdata, sizeof(struct onenand_platform_data),
1107 &s3c64xx_device_onenand1);
1109 #endif /* CONFIG_S3C64XX_DEV_ONENAND1 */
1111 #ifdef CONFIG_S5P_DEV_ONENAND
1112 static struct resource s5p_onenand_resources[] = {
1113 [0] = DEFINE_RES_MEM(S5P_PA_ONENAND, SZ_128K),
1114 [1] = DEFINE_RES_MEM(S5P_PA_ONENAND_DMA, SZ_8K),
1115 [2] = DEFINE_RES_IRQ(IRQ_ONENAND_AUDI),
1118 struct platform_device s5p_device_onenand = {
1119 .name = "s5pc110-onenand",
1120 .id = -1,
1121 .num_resources = ARRAY_SIZE(s5p_onenand_resources),
1122 .resource = s5p_onenand_resources,
1124 #endif /* CONFIG_S5P_DEV_ONENAND */
1126 /* PMU */
1128 #ifdef CONFIG_PLAT_S5P
1129 static struct resource s5p_pmu_resource[] = {
1130 DEFINE_RES_IRQ(IRQ_PMU)
1133 static struct platform_device s5p_device_pmu = {
1134 .name = "arm-pmu",
1135 .id = -1,
1136 .num_resources = ARRAY_SIZE(s5p_pmu_resource),
1137 .resource = s5p_pmu_resource,
1140 static int __init s5p_pmu_init(void)
1142 platform_device_register(&s5p_device_pmu);
1143 return 0;
1145 arch_initcall(s5p_pmu_init);
1146 #endif /* CONFIG_PLAT_S5P */
1148 /* PWM Timer */
1150 #ifdef CONFIG_SAMSUNG_DEV_PWM
1152 #define TIMER_RESOURCE_SIZE (1)
1154 #define TIMER_RESOURCE(_tmr, _irq) \
1155 (struct resource [TIMER_RESOURCE_SIZE]) { \
1156 [0] = { \
1157 .start = _irq, \
1158 .end = _irq, \
1159 .flags = IORESOURCE_IRQ \
1163 #define DEFINE_S3C_TIMER(_tmr_no, _irq) \
1164 .name = "s3c24xx-pwm", \
1165 .id = _tmr_no, \
1166 .num_resources = TIMER_RESOURCE_SIZE, \
1167 .resource = TIMER_RESOURCE(_tmr_no, _irq), \
1170 * since we already have an static mapping for the timer,
1171 * we do not bother setting any IO resource for the base.
1174 struct platform_device s3c_device_timer[] = {
1175 [0] = { DEFINE_S3C_TIMER(0, IRQ_TIMER0) },
1176 [1] = { DEFINE_S3C_TIMER(1, IRQ_TIMER1) },
1177 [2] = { DEFINE_S3C_TIMER(2, IRQ_TIMER2) },
1178 [3] = { DEFINE_S3C_TIMER(3, IRQ_TIMER3) },
1179 [4] = { DEFINE_S3C_TIMER(4, IRQ_TIMER4) },
1181 #endif /* CONFIG_SAMSUNG_DEV_PWM */
1183 /* RTC */
1185 #ifdef CONFIG_PLAT_S3C24XX
1186 static struct resource s3c_rtc_resource[] = {
1187 [0] = DEFINE_RES_MEM(S3C24XX_PA_RTC, SZ_256),
1188 [1] = DEFINE_RES_IRQ(IRQ_RTC),
1189 [2] = DEFINE_RES_IRQ(IRQ_TICK),
1192 struct platform_device s3c_device_rtc = {
1193 .name = "s3c2410-rtc",
1194 .id = -1,
1195 .num_resources = ARRAY_SIZE(s3c_rtc_resource),
1196 .resource = s3c_rtc_resource,
1198 #endif /* CONFIG_PLAT_S3C24XX */
1200 #ifdef CONFIG_S3C_DEV_RTC
1201 static struct resource s3c_rtc_resource[] = {
1202 [0] = DEFINE_RES_MEM(S3C_PA_RTC, SZ_256),
1203 [1] = DEFINE_RES_IRQ(IRQ_RTC_ALARM),
1204 [2] = DEFINE_RES_IRQ(IRQ_RTC_TIC),
1207 struct platform_device s3c_device_rtc = {
1208 .name = "s3c64xx-rtc",
1209 .id = -1,
1210 .num_resources = ARRAY_SIZE(s3c_rtc_resource),
1211 .resource = s3c_rtc_resource,
1213 #endif /* CONFIG_S3C_DEV_RTC */
1215 /* SDI */
1217 #ifdef CONFIG_PLAT_S3C24XX
1218 static struct resource s3c_sdi_resource[] = {
1219 [0] = DEFINE_RES_MEM(S3C24XX_PA_SDI, S3C24XX_SZ_SDI),
1220 [1] = DEFINE_RES_IRQ(IRQ_SDI),
1223 struct platform_device s3c_device_sdi = {
1224 .name = "s3c2410-sdi",
1225 .id = -1,
1226 .num_resources = ARRAY_SIZE(s3c_sdi_resource),
1227 .resource = s3c_sdi_resource,
1230 void __init s3c24xx_mci_set_platdata(struct s3c24xx_mci_pdata *pdata)
1232 s3c_set_platdata(pdata, sizeof(struct s3c24xx_mci_pdata),
1233 &s3c_device_sdi);
1235 #endif /* CONFIG_PLAT_S3C24XX */
1237 /* SPI */
1239 #ifdef CONFIG_PLAT_S3C24XX
1240 static struct resource s3c_spi0_resource[] = {
1241 [0] = DEFINE_RES_MEM(S3C24XX_PA_SPI, SZ_32),
1242 [1] = DEFINE_RES_IRQ(IRQ_SPI0),
1245 struct platform_device s3c_device_spi0 = {
1246 .name = "s3c2410-spi",
1247 .id = 0,
1248 .num_resources = ARRAY_SIZE(s3c_spi0_resource),
1249 .resource = s3c_spi0_resource,
1250 .dev = {
1251 .dma_mask = &samsung_device_dma_mask,
1252 .coherent_dma_mask = DMA_BIT_MASK(32),
1256 static struct resource s3c_spi1_resource[] = {
1257 [0] = DEFINE_RES_MEM(S3C24XX_PA_SPI1, SZ_32),
1258 [1] = DEFINE_RES_IRQ(IRQ_SPI1),
1261 struct platform_device s3c_device_spi1 = {
1262 .name = "s3c2410-spi",
1263 .id = 1,
1264 .num_resources = ARRAY_SIZE(s3c_spi1_resource),
1265 .resource = s3c_spi1_resource,
1266 .dev = {
1267 .dma_mask = &samsung_device_dma_mask,
1268 .coherent_dma_mask = DMA_BIT_MASK(32),
1271 #endif /* CONFIG_PLAT_S3C24XX */
1273 /* Touchscreen */
1275 #ifdef CONFIG_PLAT_S3C24XX
1276 static struct resource s3c_ts_resource[] = {
1277 [0] = DEFINE_RES_MEM(S3C24XX_PA_ADC, S3C24XX_SZ_ADC),
1278 [1] = DEFINE_RES_IRQ(IRQ_TC),
1281 struct platform_device s3c_device_ts = {
1282 .name = "s3c2410-ts",
1283 .id = -1,
1284 .dev.parent = &s3c_device_adc.dev,
1285 .num_resources = ARRAY_SIZE(s3c_ts_resource),
1286 .resource = s3c_ts_resource,
1289 void __init s3c24xx_ts_set_platdata(struct s3c2410_ts_mach_info *hard_s3c2410ts_info)
1291 s3c_set_platdata(hard_s3c2410ts_info,
1292 sizeof(struct s3c2410_ts_mach_info), &s3c_device_ts);
1294 #endif /* CONFIG_PLAT_S3C24XX */
1296 #ifdef CONFIG_SAMSUNG_DEV_TS
1297 static struct resource s3c_ts_resource[] = {
1298 [0] = DEFINE_RES_MEM(SAMSUNG_PA_ADC, SZ_256),
1299 [1] = DEFINE_RES_IRQ(IRQ_TC),
1302 static struct s3c2410_ts_mach_info default_ts_data __initdata = {
1303 .delay = 10000,
1304 .presc = 49,
1305 .oversampling_shift = 2,
1308 struct platform_device s3c_device_ts = {
1309 .name = "s3c64xx-ts",
1310 .id = -1,
1311 .num_resources = ARRAY_SIZE(s3c_ts_resource),
1312 .resource = s3c_ts_resource,
1315 void __init s3c24xx_ts_set_platdata(struct s3c2410_ts_mach_info *pd)
1317 if (!pd)
1318 pd = &default_ts_data;
1320 s3c_set_platdata(pd, sizeof(struct s3c2410_ts_mach_info),
1321 &s3c_device_ts);
1323 #endif /* CONFIG_SAMSUNG_DEV_TS */
1325 /* TV */
1327 #ifdef CONFIG_S5P_DEV_TV
1329 static struct resource s5p_hdmi_resources[] = {
1330 [0] = DEFINE_RES_MEM(S5P_PA_HDMI, SZ_1M),
1331 [1] = DEFINE_RES_IRQ(IRQ_HDMI),
1334 struct platform_device s5p_device_hdmi = {
1335 .name = "s5p-hdmi",
1336 .id = -1,
1337 .num_resources = ARRAY_SIZE(s5p_hdmi_resources),
1338 .resource = s5p_hdmi_resources,
1341 static struct resource s5p_sdo_resources[] = {
1342 [0] = DEFINE_RES_MEM(S5P_PA_SDO, SZ_64K),
1343 [1] = DEFINE_RES_IRQ(IRQ_SDO),
1346 struct platform_device s5p_device_sdo = {
1347 .name = "s5p-sdo",
1348 .id = -1,
1349 .num_resources = ARRAY_SIZE(s5p_sdo_resources),
1350 .resource = s5p_sdo_resources,
1353 static struct resource s5p_mixer_resources[] = {
1354 [0] = DEFINE_RES_MEM_NAMED(S5P_PA_MIXER, SZ_64K, "mxr"),
1355 [1] = DEFINE_RES_MEM_NAMED(S5P_PA_VP, SZ_64K, "vp"),
1356 [2] = DEFINE_RES_IRQ_NAMED(IRQ_MIXER, "irq"),
1359 struct platform_device s5p_device_mixer = {
1360 .name = "s5p-mixer",
1361 .id = -1,
1362 .num_resources = ARRAY_SIZE(s5p_mixer_resources),
1363 .resource = s5p_mixer_resources,
1364 .dev = {
1365 .dma_mask = &samsung_device_dma_mask,
1366 .coherent_dma_mask = DMA_BIT_MASK(32),
1369 #endif /* CONFIG_S5P_DEV_TV */
1371 /* USB */
1373 #ifdef CONFIG_S3C_DEV_USB_HOST
1374 static struct resource s3c_usb_resource[] = {
1375 [0] = DEFINE_RES_MEM(S3C_PA_USBHOST, SZ_256),
1376 [1] = DEFINE_RES_IRQ(IRQ_USBH),
1379 struct platform_device s3c_device_ohci = {
1380 .name = "s3c2410-ohci",
1381 .id = -1,
1382 .num_resources = ARRAY_SIZE(s3c_usb_resource),
1383 .resource = s3c_usb_resource,
1384 .dev = {
1385 .dma_mask = &samsung_device_dma_mask,
1386 .coherent_dma_mask = DMA_BIT_MASK(32),
1391 * s3c_ohci_set_platdata - initialise OHCI device platform data
1392 * @info: The platform data.
1394 * This call copies the @info passed in and sets the device .platform_data
1395 * field to that copy. The @info is copied so that the original can be marked
1396 * __initdata.
1399 void __init s3c_ohci_set_platdata(struct s3c2410_hcd_info *info)
1401 s3c_set_platdata(info, sizeof(struct s3c2410_hcd_info),
1402 &s3c_device_ohci);
1404 #endif /* CONFIG_S3C_DEV_USB_HOST */
1406 /* USB Device (Gadget) */
1408 #ifdef CONFIG_PLAT_S3C24XX
1409 static struct resource s3c_usbgadget_resource[] = {
1410 [0] = DEFINE_RES_MEM(S3C24XX_PA_USBDEV, S3C24XX_SZ_USBDEV),
1411 [1] = DEFINE_RES_IRQ(IRQ_USBD),
1414 struct platform_device s3c_device_usbgadget = {
1415 .name = "s3c2410-usbgadget",
1416 .id = -1,
1417 .num_resources = ARRAY_SIZE(s3c_usbgadget_resource),
1418 .resource = s3c_usbgadget_resource,
1421 void __init s3c24xx_udc_set_platdata(struct s3c2410_udc_mach_info *pd)
1423 s3c_set_platdata(pd, sizeof(*pd), &s3c_device_usbgadget);
1425 #endif /* CONFIG_PLAT_S3C24XX */
1427 /* USB EHCI Host Controller */
1429 #ifdef CONFIG_S5P_DEV_USB_EHCI
1430 static struct resource s5p_ehci_resource[] = {
1431 [0] = DEFINE_RES_MEM(S5P_PA_EHCI, SZ_256),
1432 [1] = DEFINE_RES_IRQ(IRQ_USB_HOST),
1435 struct platform_device s5p_device_ehci = {
1436 .name = "s5p-ehci",
1437 .id = -1,
1438 .num_resources = ARRAY_SIZE(s5p_ehci_resource),
1439 .resource = s5p_ehci_resource,
1440 .dev = {
1441 .dma_mask = &samsung_device_dma_mask,
1442 .coherent_dma_mask = DMA_BIT_MASK(32),
1446 void __init s5p_ehci_set_platdata(struct s5p_ehci_platdata *pd)
1448 struct s5p_ehci_platdata *npd;
1450 npd = s3c_set_platdata(pd, sizeof(struct s5p_ehci_platdata),
1451 &s5p_device_ehci);
1453 if (!npd->phy_init)
1454 npd->phy_init = s5p_usb_phy_init;
1455 if (!npd->phy_exit)
1456 npd->phy_exit = s5p_usb_phy_exit;
1458 #endif /* CONFIG_S5P_DEV_USB_EHCI */
1460 /* USB HSOTG */
1462 #ifdef CONFIG_S3C_DEV_USB_HSOTG
1463 static struct resource s3c_usb_hsotg_resources[] = {
1464 [0] = DEFINE_RES_MEM(S3C_PA_USB_HSOTG, SZ_128K),
1465 [1] = DEFINE_RES_IRQ(IRQ_OTG),
1468 struct platform_device s3c_device_usb_hsotg = {
1469 .name = "s3c-hsotg",
1470 .id = -1,
1471 .num_resources = ARRAY_SIZE(s3c_usb_hsotg_resources),
1472 .resource = s3c_usb_hsotg_resources,
1473 .dev = {
1474 .dma_mask = &samsung_device_dma_mask,
1475 .coherent_dma_mask = DMA_BIT_MASK(32),
1479 void __init s3c_hsotg_set_platdata(struct s3c_hsotg_plat *pd)
1481 struct s3c_hsotg_plat *npd;
1483 npd = s3c_set_platdata(pd, sizeof(struct s3c_hsotg_plat),
1484 &s3c_device_usb_hsotg);
1486 if (!npd->phy_init)
1487 npd->phy_init = s5p_usb_phy_init;
1488 if (!npd->phy_exit)
1489 npd->phy_exit = s5p_usb_phy_exit;
1491 #endif /* CONFIG_S3C_DEV_USB_HSOTG */
1493 /* USB High Spped 2.0 Device (Gadget) */
1495 #ifdef CONFIG_PLAT_S3C24XX
1496 static struct resource s3c_hsudc_resource[] = {
1497 [0] = DEFINE_RES_MEM(S3C2416_PA_HSUDC, S3C2416_SZ_HSUDC),
1498 [1] = DEFINE_RES_IRQ(IRQ_USBD),
1501 struct platform_device s3c_device_usb_hsudc = {
1502 .name = "s3c-hsudc",
1503 .id = -1,
1504 .num_resources = ARRAY_SIZE(s3c_hsudc_resource),
1505 .resource = s3c_hsudc_resource,
1506 .dev = {
1507 .dma_mask = &samsung_device_dma_mask,
1508 .coherent_dma_mask = DMA_BIT_MASK(32),
1512 void __init s3c24xx_hsudc_set_platdata(struct s3c24xx_hsudc_platdata *pd)
1514 s3c_set_platdata(pd, sizeof(*pd), &s3c_device_usb_hsudc);
1516 #endif /* CONFIG_PLAT_S3C24XX */
1518 /* WDT */
1520 #ifdef CONFIG_S3C_DEV_WDT
1521 static struct resource s3c_wdt_resource[] = {
1522 [0] = DEFINE_RES_MEM(S3C_PA_WDT, SZ_1K),
1523 [1] = DEFINE_RES_IRQ(IRQ_WDT),
1526 struct platform_device s3c_device_wdt = {
1527 .name = "s3c2410-wdt",
1528 .id = -1,
1529 .num_resources = ARRAY_SIZE(s3c_wdt_resource),
1530 .resource = s3c_wdt_resource,
1532 #endif /* CONFIG_S3C_DEV_WDT */
1534 #ifdef CONFIG_S3C64XX_DEV_SPI0
1535 static struct resource s3c64xx_spi0_resource[] = {
1536 [0] = DEFINE_RES_MEM(S3C_PA_SPI0, SZ_256),
1537 [1] = DEFINE_RES_DMA(DMACH_SPI0_TX),
1538 [2] = DEFINE_RES_DMA(DMACH_SPI0_RX),
1539 [3] = DEFINE_RES_IRQ(IRQ_SPI0),
1542 struct platform_device s3c64xx_device_spi0 = {
1543 .name = "s3c6410-spi",
1544 .id = 0,
1545 .num_resources = ARRAY_SIZE(s3c64xx_spi0_resource),
1546 .resource = s3c64xx_spi0_resource,
1547 .dev = {
1548 .dma_mask = &samsung_device_dma_mask,
1549 .coherent_dma_mask = DMA_BIT_MASK(32),
1553 void __init s3c64xx_spi0_set_platdata(int (*cfg_gpio)(void), int src_clk_nr,
1554 int num_cs)
1556 struct s3c64xx_spi_info pd;
1558 /* Reject invalid configuration */
1559 if (!num_cs || src_clk_nr < 0) {
1560 pr_err("%s: Invalid SPI configuration\n", __func__);
1561 return;
1564 pd.num_cs = num_cs;
1565 pd.src_clk_nr = src_clk_nr;
1566 pd.cfg_gpio = (cfg_gpio) ? cfg_gpio : s3c64xx_spi0_cfg_gpio;
1568 s3c_set_platdata(&pd, sizeof(pd), &s3c64xx_device_spi0);
1570 #endif /* CONFIG_S3C64XX_DEV_SPI0 */
1572 #ifdef CONFIG_S3C64XX_DEV_SPI1
1573 static struct resource s3c64xx_spi1_resource[] = {
1574 [0] = DEFINE_RES_MEM(S3C_PA_SPI1, SZ_256),
1575 [1] = DEFINE_RES_DMA(DMACH_SPI1_TX),
1576 [2] = DEFINE_RES_DMA(DMACH_SPI1_RX),
1577 [3] = DEFINE_RES_IRQ(IRQ_SPI1),
1580 struct platform_device s3c64xx_device_spi1 = {
1581 .name = "s3c6410-spi",
1582 .id = 1,
1583 .num_resources = ARRAY_SIZE(s3c64xx_spi1_resource),
1584 .resource = s3c64xx_spi1_resource,
1585 .dev = {
1586 .dma_mask = &samsung_device_dma_mask,
1587 .coherent_dma_mask = DMA_BIT_MASK(32),
1591 void __init s3c64xx_spi1_set_platdata(int (*cfg_gpio)(void), int src_clk_nr,
1592 int num_cs)
1594 struct s3c64xx_spi_info pd;
1596 /* Reject invalid configuration */
1597 if (!num_cs || src_clk_nr < 0) {
1598 pr_err("%s: Invalid SPI configuration\n", __func__);
1599 return;
1602 pd.num_cs = num_cs;
1603 pd.src_clk_nr = src_clk_nr;
1604 pd.cfg_gpio = (cfg_gpio) ? cfg_gpio : s3c64xx_spi1_cfg_gpio;
1606 s3c_set_platdata(&pd, sizeof(pd), &s3c64xx_device_spi1);
1608 #endif /* CONFIG_S3C64XX_DEV_SPI1 */
1610 #ifdef CONFIG_S3C64XX_DEV_SPI2
1611 static struct resource s3c64xx_spi2_resource[] = {
1612 [0] = DEFINE_RES_MEM(S3C_PA_SPI2, SZ_256),
1613 [1] = DEFINE_RES_DMA(DMACH_SPI2_TX),
1614 [2] = DEFINE_RES_DMA(DMACH_SPI2_RX),
1615 [3] = DEFINE_RES_IRQ(IRQ_SPI2),
1618 struct platform_device s3c64xx_device_spi2 = {
1619 .name = "s3c6410-spi",
1620 .id = 2,
1621 .num_resources = ARRAY_SIZE(s3c64xx_spi2_resource),
1622 .resource = s3c64xx_spi2_resource,
1623 .dev = {
1624 .dma_mask = &samsung_device_dma_mask,
1625 .coherent_dma_mask = DMA_BIT_MASK(32),
1629 void __init s3c64xx_spi2_set_platdata(int (*cfg_gpio)(void), int src_clk_nr,
1630 int num_cs)
1632 struct s3c64xx_spi_info pd;
1634 /* Reject invalid configuration */
1635 if (!num_cs || src_clk_nr < 0) {
1636 pr_err("%s: Invalid SPI configuration\n", __func__);
1637 return;
1640 pd.num_cs = num_cs;
1641 pd.src_clk_nr = src_clk_nr;
1642 pd.cfg_gpio = (cfg_gpio) ? cfg_gpio : s3c64xx_spi2_cfg_gpio;
1644 s3c_set_platdata(&pd, sizeof(pd), &s3c64xx_device_spi2);
1646 #endif /* CONFIG_S3C64XX_DEV_SPI2 */