Merge tag 'xfs-4.15-merge-2' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
[sfrench/cifs-2.6.git] / arch / arm / plat-samsung / devs.c
1 /* linux/arch/arm/plat-samsung/devs.c
2  *
3  * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4  *              http://www.samsung.com
5  *
6  * Base SAMSUNG platform device definitions
7  *
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.
11 */
12
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/serial_s3c.h>
21 #include <linux/platform_device.h>
22 #include <linux/io.h>
23 #include <linux/slab.h>
24 #include <linux/string.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/fb.h>
27 #include <linux/gfp.h>
28 #include <linux/mtd/mtd.h>
29 #include <linux/mtd/onenand.h>
30 #include <linux/mtd/partitions.h>
31 #include <linux/mmc/host.h>
32 #include <linux/ioport.h>
33 #include <linux/sizes.h>
34 #include <linux/platform_data/s3c-hsudc.h>
35 #include <linux/platform_data/s3c-hsotg.h>
36 #include <linux/platform_data/dma-s3c24xx.h>
37
38 #include <linux/platform_data/media/s5p_hdmi.h>
39
40 #include <asm/irq.h>
41 #include <asm/mach/arch.h>
42 #include <asm/mach/map.h>
43 #include <asm/mach/irq.h>
44
45 #include <mach/dma.h>
46 #include <mach/irqs.h>
47 #include <mach/map.h>
48
49 #include <plat/cpu.h>
50 #include <plat/devs.h>
51 #include <plat/adc.h>
52 #include <linux/platform_data/ata-samsung_cf.h>
53 #include <plat/fb.h>
54 #include <plat/fb-s3c2410.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/pwm-core.h>
61 #include <plat/sdhci.h>
62 #include <linux/platform_data/touchscreen-s3c2410.h>
63 #include <linux/platform_data/usb-s3c2410_udc.h>
64 #include <linux/platform_data/usb-ohci-s3c2410.h>
65 #include <plat/usb-phy.h>
66 #include <plat/regs-spi.h>
67 #include <linux/platform_data/asoc-s3c.h>
68 #include <linux/platform_data/spi-s3c64xx.h>
69
70 #define samsung_device_dma_mask (*((u64[]) { DMA_BIT_MASK(32) }))
71
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 };
78
79 struct platform_device s3c_device_ac97 = {
80         .name           = "samsung-ac97",
81         .id             = -1,
82         .num_resources  = ARRAY_SIZE(s3c_ac97_resource),
83         .resource       = s3c_ac97_resource,
84         .dev            = {
85                 .dma_mask               = &samsung_device_dma_mask,
86                 .coherent_dma_mask      = DMA_BIT_MASK(32),
87         }
88 };
89 #endif /* CONFIG_CPU_S3C2440 */
90
91 /* ADC */
92
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),
98 };
99
100 struct platform_device s3c_device_adc = {
101         .name           = "s3c24xx-adc",
102         .id             = -1,
103         .num_resources  = ARRAY_SIZE(s3c_adc_resource),
104         .resource       = s3c_adc_resource,
105 };
106 #endif /* CONFIG_PLAT_S3C24XX */
107
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_ADC),
112         [2] = DEFINE_RES_IRQ(IRQ_TC),
113 };
114
115 struct platform_device s3c_device_adc = {
116         .name           = "exynos-adc",
117         .id             = -1,
118         .num_resources  = ARRAY_SIZE(s3c_adc_resource),
119         .resource       = s3c_adc_resource,
120 };
121 #endif /* CONFIG_SAMSUNG_DEV_ADC */
122
123 /* Camif Controller */
124
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_S3C2440_CAM_C),
129         [2] = DEFINE_RES_IRQ(IRQ_S3C2440_CAM_P),
130 };
131
132 struct platform_device s3c_device_camif = {
133         .name           = "s3c2440-camif",
134         .id             = -1,
135         .num_resources  = ARRAY_SIZE(s3c_camif_resource),
136         .resource       = s3c_camif_resource,
137         .dev            = {
138                 .dma_mask               = &samsung_device_dma_mask,
139                 .coherent_dma_mask      = DMA_BIT_MASK(32),
140         }
141 };
142 #endif /* CONFIG_CPU_S3C2440 */
143
144 /* FB */
145
146 #ifdef CONFIG_S3C_DEV_FB
147 static struct resource s3c_fb_resource[] = {
148         [0] = DEFINE_RES_MEM(S3C_PA_FB, SZ_16K),
149         [1] = DEFINE_RES_IRQ(IRQ_LCD_VSYNC),
150         [2] = DEFINE_RES_IRQ(IRQ_LCD_FIFO),
151         [3] = DEFINE_RES_IRQ(IRQ_LCD_SYSTEM),
152 };
153
154 struct platform_device s3c_device_fb = {
155         .name           = "s3c-fb",
156         .id             = -1,
157         .num_resources  = ARRAY_SIZE(s3c_fb_resource),
158         .resource       = s3c_fb_resource,
159         .dev            = {
160                 .dma_mask               = &samsung_device_dma_mask,
161                 .coherent_dma_mask      = DMA_BIT_MASK(32),
162         },
163 };
164
165 void __init s3c_fb_set_platdata(struct s3c_fb_platdata *pd)
166 {
167         s3c_set_platdata(pd, sizeof(struct s3c_fb_platdata),
168                          &s3c_device_fb);
169 }
170 #endif /* CONFIG_S3C_DEV_FB */
171
172 /* HWMON */
173
174 #ifdef CONFIG_S3C_DEV_HWMON
175 struct platform_device s3c_device_hwmon = {
176         .name           = "s3c-hwmon",
177         .id             = -1,
178         .dev.parent     = &s3c_device_adc.dev,
179 };
180
181 void __init s3c_hwmon_set_platdata(struct s3c_hwmon_pdata *pd)
182 {
183         s3c_set_platdata(pd, sizeof(struct s3c_hwmon_pdata),
184                          &s3c_device_hwmon);
185 }
186 #endif /* CONFIG_S3C_DEV_HWMON */
187
188 /* HSMMC */
189
190 #ifdef CONFIG_S3C_DEV_HSMMC
191 static struct resource s3c_hsmmc_resource[] = {
192         [0] = DEFINE_RES_MEM(S3C_PA_HSMMC0, SZ_4K),
193         [1] = DEFINE_RES_IRQ(IRQ_HSMMC0),
194 };
195
196 struct s3c_sdhci_platdata s3c_hsmmc0_def_platdata = {
197         .max_width      = 4,
198         .host_caps      = (MMC_CAP_4_BIT_DATA |
199                            MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED),
200 };
201
202 struct platform_device s3c_device_hsmmc0 = {
203         .name           = "s3c-sdhci",
204         .id             = 0,
205         .num_resources  = ARRAY_SIZE(s3c_hsmmc_resource),
206         .resource       = s3c_hsmmc_resource,
207         .dev            = {
208                 .dma_mask               = &samsung_device_dma_mask,
209                 .coherent_dma_mask      = DMA_BIT_MASK(32),
210                 .platform_data          = &s3c_hsmmc0_def_platdata,
211         },
212 };
213
214 void s3c_sdhci0_set_platdata(struct s3c_sdhci_platdata *pd)
215 {
216         s3c_sdhci_set_platdata(pd, &s3c_hsmmc0_def_platdata);
217 }
218 #endif /* CONFIG_S3C_DEV_HSMMC */
219
220 #ifdef CONFIG_S3C_DEV_HSMMC1
221 static struct resource s3c_hsmmc1_resource[] = {
222         [0] = DEFINE_RES_MEM(S3C_PA_HSMMC1, SZ_4K),
223         [1] = DEFINE_RES_IRQ(IRQ_HSMMC1),
224 };
225
226 struct s3c_sdhci_platdata s3c_hsmmc1_def_platdata = {
227         .max_width      = 4,
228         .host_caps      = (MMC_CAP_4_BIT_DATA |
229                            MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED),
230 };
231
232 struct platform_device s3c_device_hsmmc1 = {
233         .name           = "s3c-sdhci",
234         .id             = 1,
235         .num_resources  = ARRAY_SIZE(s3c_hsmmc1_resource),
236         .resource       = s3c_hsmmc1_resource,
237         .dev            = {
238                 .dma_mask               = &samsung_device_dma_mask,
239                 .coherent_dma_mask      = DMA_BIT_MASK(32),
240                 .platform_data          = &s3c_hsmmc1_def_platdata,
241         },
242 };
243
244 void s3c_sdhci1_set_platdata(struct s3c_sdhci_platdata *pd)
245 {
246         s3c_sdhci_set_platdata(pd, &s3c_hsmmc1_def_platdata);
247 }
248 #endif /* CONFIG_S3C_DEV_HSMMC1 */
249
250 /* HSMMC2 */
251
252 #ifdef CONFIG_S3C_DEV_HSMMC2
253 static struct resource s3c_hsmmc2_resource[] = {
254         [0] = DEFINE_RES_MEM(S3C_PA_HSMMC2, SZ_4K),
255         [1] = DEFINE_RES_IRQ(IRQ_HSMMC2),
256 };
257
258 struct s3c_sdhci_platdata s3c_hsmmc2_def_platdata = {
259         .max_width      = 4,
260         .host_caps      = (MMC_CAP_4_BIT_DATA |
261                            MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED),
262 };
263
264 struct platform_device s3c_device_hsmmc2 = {
265         .name           = "s3c-sdhci",
266         .id             = 2,
267         .num_resources  = ARRAY_SIZE(s3c_hsmmc2_resource),
268         .resource       = s3c_hsmmc2_resource,
269         .dev            = {
270                 .dma_mask               = &samsung_device_dma_mask,
271                 .coherent_dma_mask      = DMA_BIT_MASK(32),
272                 .platform_data          = &s3c_hsmmc2_def_platdata,
273         },
274 };
275
276 void s3c_sdhci2_set_platdata(struct s3c_sdhci_platdata *pd)
277 {
278         s3c_sdhci_set_platdata(pd, &s3c_hsmmc2_def_platdata);
279 }
280 #endif /* CONFIG_S3C_DEV_HSMMC2 */
281
282 #ifdef CONFIG_S3C_DEV_HSMMC3
283 static struct resource s3c_hsmmc3_resource[] = {
284         [0] = DEFINE_RES_MEM(S3C_PA_HSMMC3, SZ_4K),
285         [1] = DEFINE_RES_IRQ(IRQ_HSMMC3),
286 };
287
288 struct s3c_sdhci_platdata s3c_hsmmc3_def_platdata = {
289         .max_width      = 4,
290         .host_caps      = (MMC_CAP_4_BIT_DATA |
291                            MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED),
292 };
293
294 struct platform_device s3c_device_hsmmc3 = {
295         .name           = "s3c-sdhci",
296         .id             = 3,
297         .num_resources  = ARRAY_SIZE(s3c_hsmmc3_resource),
298         .resource       = s3c_hsmmc3_resource,
299         .dev            = {
300                 .dma_mask               = &samsung_device_dma_mask,
301                 .coherent_dma_mask      = DMA_BIT_MASK(32),
302                 .platform_data          = &s3c_hsmmc3_def_platdata,
303         },
304 };
305
306 void s3c_sdhci3_set_platdata(struct s3c_sdhci_platdata *pd)
307 {
308         s3c_sdhci_set_platdata(pd, &s3c_hsmmc3_def_platdata);
309 }
310 #endif /* CONFIG_S3C_DEV_HSMMC3 */
311
312 /* I2C */
313
314 static struct resource s3c_i2c0_resource[] = {
315         [0] = DEFINE_RES_MEM(S3C_PA_IIC, SZ_4K),
316         [1] = DEFINE_RES_IRQ(IRQ_IIC),
317 };
318
319 struct platform_device s3c_device_i2c0 = {
320         .name           = "s3c2410-i2c",
321         .id             = 0,
322         .num_resources  = ARRAY_SIZE(s3c_i2c0_resource),
323         .resource       = s3c_i2c0_resource,
324 };
325
326 struct s3c2410_platform_i2c default_i2c_data __initdata = {
327         .flags          = 0,
328         .slave_addr     = 0x10,
329         .frequency      = 100*1000,
330         .sda_delay      = 100,
331 };
332
333 void __init s3c_i2c0_set_platdata(struct s3c2410_platform_i2c *pd)
334 {
335         struct s3c2410_platform_i2c *npd;
336
337         if (!pd) {
338                 pd = &default_i2c_data;
339                 pd->bus_num = 0;
340         }
341
342         npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_i2c0);
343
344         if (!npd->cfg_gpio)
345                 npd->cfg_gpio = s3c_i2c0_cfg_gpio;
346 }
347
348 #ifdef CONFIG_S3C_DEV_I2C1
349 static struct resource s3c_i2c1_resource[] = {
350         [0] = DEFINE_RES_MEM(S3C_PA_IIC1, SZ_4K),
351         [1] = DEFINE_RES_IRQ(IRQ_IIC1),
352 };
353
354 struct platform_device s3c_device_i2c1 = {
355         .name           = "s3c2410-i2c",
356         .id             = 1,
357         .num_resources  = ARRAY_SIZE(s3c_i2c1_resource),
358         .resource       = s3c_i2c1_resource,
359 };
360
361 void __init s3c_i2c1_set_platdata(struct s3c2410_platform_i2c *pd)
362 {
363         struct s3c2410_platform_i2c *npd;
364
365         if (!pd) {
366                 pd = &default_i2c_data;
367                 pd->bus_num = 1;
368         }
369
370         npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_i2c1);
371
372         if (!npd->cfg_gpio)
373                 npd->cfg_gpio = s3c_i2c1_cfg_gpio;
374 }
375 #endif /* CONFIG_S3C_DEV_I2C1 */
376
377 #ifdef CONFIG_S3C_DEV_I2C2
378 static struct resource s3c_i2c2_resource[] = {
379         [0] = DEFINE_RES_MEM(S3C_PA_IIC2, SZ_4K),
380         [1] = DEFINE_RES_IRQ(IRQ_IIC2),
381 };
382
383 struct platform_device s3c_device_i2c2 = {
384         .name           = "s3c2410-i2c",
385         .id             = 2,
386         .num_resources  = ARRAY_SIZE(s3c_i2c2_resource),
387         .resource       = s3c_i2c2_resource,
388 };
389
390 void __init s3c_i2c2_set_platdata(struct s3c2410_platform_i2c *pd)
391 {
392         struct s3c2410_platform_i2c *npd;
393
394         if (!pd) {
395                 pd = &default_i2c_data;
396                 pd->bus_num = 2;
397         }
398
399         npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_i2c2);
400
401         if (!npd->cfg_gpio)
402                 npd->cfg_gpio = s3c_i2c2_cfg_gpio;
403 }
404 #endif /* CONFIG_S3C_DEV_I2C2 */
405
406 #ifdef CONFIG_S3C_DEV_I2C3
407 static struct resource s3c_i2c3_resource[] = {
408         [0] = DEFINE_RES_MEM(S3C_PA_IIC3, SZ_4K),
409         [1] = DEFINE_RES_IRQ(IRQ_IIC3),
410 };
411
412 struct platform_device s3c_device_i2c3 = {
413         .name           = "s3c2440-i2c",
414         .id             = 3,
415         .num_resources  = ARRAY_SIZE(s3c_i2c3_resource),
416         .resource       = s3c_i2c3_resource,
417 };
418
419 void __init s3c_i2c3_set_platdata(struct s3c2410_platform_i2c *pd)
420 {
421         struct s3c2410_platform_i2c *npd;
422
423         if (!pd) {
424                 pd = &default_i2c_data;
425                 pd->bus_num = 3;
426         }
427
428         npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_i2c3);
429
430         if (!npd->cfg_gpio)
431                 npd->cfg_gpio = s3c_i2c3_cfg_gpio;
432 }
433 #endif /*CONFIG_S3C_DEV_I2C3 */
434
435 #ifdef CONFIG_S3C_DEV_I2C4
436 static struct resource s3c_i2c4_resource[] = {
437         [0] = DEFINE_RES_MEM(S3C_PA_IIC4, SZ_4K),
438         [1] = DEFINE_RES_IRQ(IRQ_IIC4),
439 };
440
441 struct platform_device s3c_device_i2c4 = {
442         .name           = "s3c2440-i2c",
443         .id             = 4,
444         .num_resources  = ARRAY_SIZE(s3c_i2c4_resource),
445         .resource       = s3c_i2c4_resource,
446 };
447
448 void __init s3c_i2c4_set_platdata(struct s3c2410_platform_i2c *pd)
449 {
450         struct s3c2410_platform_i2c *npd;
451
452         if (!pd) {
453                 pd = &default_i2c_data;
454                 pd->bus_num = 4;
455         }
456
457         npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_i2c4);
458
459         if (!npd->cfg_gpio)
460                 npd->cfg_gpio = s3c_i2c4_cfg_gpio;
461 }
462 #endif /*CONFIG_S3C_DEV_I2C4 */
463
464 #ifdef CONFIG_S3C_DEV_I2C5
465 static struct resource s3c_i2c5_resource[] = {
466         [0] = DEFINE_RES_MEM(S3C_PA_IIC5, SZ_4K),
467         [1] = DEFINE_RES_IRQ(IRQ_IIC5),
468 };
469
470 struct platform_device s3c_device_i2c5 = {
471         .name           = "s3c2440-i2c",
472         .id             = 5,
473         .num_resources  = ARRAY_SIZE(s3c_i2c5_resource),
474         .resource       = s3c_i2c5_resource,
475 };
476
477 void __init s3c_i2c5_set_platdata(struct s3c2410_platform_i2c *pd)
478 {
479         struct s3c2410_platform_i2c *npd;
480
481         if (!pd) {
482                 pd = &default_i2c_data;
483                 pd->bus_num = 5;
484         }
485
486         npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_i2c5);
487
488         if (!npd->cfg_gpio)
489                 npd->cfg_gpio = s3c_i2c5_cfg_gpio;
490 }
491 #endif /*CONFIG_S3C_DEV_I2C5 */
492
493 #ifdef CONFIG_S3C_DEV_I2C6
494 static struct resource s3c_i2c6_resource[] = {
495         [0] = DEFINE_RES_MEM(S3C_PA_IIC6, SZ_4K),
496         [1] = DEFINE_RES_IRQ(IRQ_IIC6),
497 };
498
499 struct platform_device s3c_device_i2c6 = {
500         .name           = "s3c2440-i2c",
501         .id             = 6,
502         .num_resources  = ARRAY_SIZE(s3c_i2c6_resource),
503         .resource       = s3c_i2c6_resource,
504 };
505
506 void __init s3c_i2c6_set_platdata(struct s3c2410_platform_i2c *pd)
507 {
508         struct s3c2410_platform_i2c *npd;
509
510         if (!pd) {
511                 pd = &default_i2c_data;
512                 pd->bus_num = 6;
513         }
514
515         npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_i2c6);
516
517         if (!npd->cfg_gpio)
518                 npd->cfg_gpio = s3c_i2c6_cfg_gpio;
519 }
520 #endif /* CONFIG_S3C_DEV_I2C6 */
521
522 #ifdef CONFIG_S3C_DEV_I2C7
523 static struct resource s3c_i2c7_resource[] = {
524         [0] = DEFINE_RES_MEM(S3C_PA_IIC7, SZ_4K),
525         [1] = DEFINE_RES_IRQ(IRQ_IIC7),
526 };
527
528 struct platform_device s3c_device_i2c7 = {
529         .name           = "s3c2440-i2c",
530         .id             = 7,
531         .num_resources  = ARRAY_SIZE(s3c_i2c7_resource),
532         .resource       = s3c_i2c7_resource,
533 };
534
535 void __init s3c_i2c7_set_platdata(struct s3c2410_platform_i2c *pd)
536 {
537         struct s3c2410_platform_i2c *npd;
538
539         if (!pd) {
540                 pd = &default_i2c_data;
541                 pd->bus_num = 7;
542         }
543
544         npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_i2c7);
545
546         if (!npd->cfg_gpio)
547                 npd->cfg_gpio = s3c_i2c7_cfg_gpio;
548 }
549 #endif /* CONFIG_S3C_DEV_I2C7 */
550
551 /* I2S */
552
553 #ifdef CONFIG_PLAT_S3C24XX
554 static struct resource s3c_iis_resource[] = {
555         [0] = DEFINE_RES_MEM(S3C24XX_PA_IIS, S3C24XX_SZ_IIS),
556 };
557
558 struct platform_device s3c_device_iis = {
559         .name           = "s3c24xx-iis",
560         .id             = -1,
561         .num_resources  = ARRAY_SIZE(s3c_iis_resource),
562         .resource       = s3c_iis_resource,
563         .dev            = {
564                 .dma_mask               = &samsung_device_dma_mask,
565                 .coherent_dma_mask      = DMA_BIT_MASK(32),
566         }
567 };
568 #endif /* CONFIG_PLAT_S3C24XX */
569
570 /* IDE CFCON */
571
572 #ifdef CONFIG_SAMSUNG_DEV_IDE
573 static struct resource s3c_cfcon_resource[] = {
574         [0] = DEFINE_RES_MEM(SAMSUNG_PA_CFCON, SZ_16K),
575         [1] = DEFINE_RES_IRQ(IRQ_CFCON),
576 };
577
578 struct platform_device s3c_device_cfcon = {
579         .id             = 0,
580         .num_resources  = ARRAY_SIZE(s3c_cfcon_resource),
581         .resource       = s3c_cfcon_resource,
582 };
583
584 void __init s3c_ide_set_platdata(struct s3c_ide_platdata *pdata)
585 {
586         s3c_set_platdata(pdata, sizeof(struct s3c_ide_platdata),
587                          &s3c_device_cfcon);
588 }
589 #endif /* CONFIG_SAMSUNG_DEV_IDE */
590
591 /* KEYPAD */
592
593 #ifdef CONFIG_SAMSUNG_DEV_KEYPAD
594 static struct resource samsung_keypad_resources[] = {
595         [0] = DEFINE_RES_MEM(SAMSUNG_PA_KEYPAD, SZ_32),
596         [1] = DEFINE_RES_IRQ(IRQ_KEYPAD),
597 };
598
599 struct platform_device samsung_device_keypad = {
600         .name           = "samsung-keypad",
601         .id             = -1,
602         .num_resources  = ARRAY_SIZE(samsung_keypad_resources),
603         .resource       = samsung_keypad_resources,
604 };
605
606 void __init samsung_keypad_set_platdata(struct samsung_keypad_platdata *pd)
607 {
608         struct samsung_keypad_platdata *npd;
609
610         npd = s3c_set_platdata(pd, sizeof(*npd), &samsung_device_keypad);
611
612         if (!npd->cfg_gpio)
613                 npd->cfg_gpio = samsung_keypad_cfg_gpio;
614 }
615 #endif /* CONFIG_SAMSUNG_DEV_KEYPAD */
616
617 /* LCD Controller */
618
619 #ifdef CONFIG_PLAT_S3C24XX
620 static struct resource s3c_lcd_resource[] = {
621         [0] = DEFINE_RES_MEM(S3C24XX_PA_LCD, S3C24XX_SZ_LCD),
622         [1] = DEFINE_RES_IRQ(IRQ_LCD),
623 };
624
625 struct platform_device s3c_device_lcd = {
626         .name           = "s3c2410-lcd",
627         .id             = -1,
628         .num_resources  = ARRAY_SIZE(s3c_lcd_resource),
629         .resource       = s3c_lcd_resource,
630         .dev            = {
631                 .dma_mask               = &samsung_device_dma_mask,
632                 .coherent_dma_mask      = DMA_BIT_MASK(32),
633         }
634 };
635
636 void __init s3c24xx_fb_set_platdata(struct s3c2410fb_mach_info *pd)
637 {
638         struct s3c2410fb_mach_info *npd;
639
640         npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_lcd);
641         if (npd) {
642                 npd->displays = kmemdup(pd->displays,
643                         sizeof(struct s3c2410fb_display) * npd->num_displays,
644                         GFP_KERNEL);
645                 if (!npd->displays)
646                         printk(KERN_ERR "no memory for LCD display data\n");
647         } else {
648                 printk(KERN_ERR "no memory for LCD platform data\n");
649         }
650 }
651 #endif /* CONFIG_PLAT_S3C24XX */
652
653 /* NAND */
654
655 #ifdef CONFIG_S3C_DEV_NAND
656 static struct resource s3c_nand_resource[] = {
657         [0] = DEFINE_RES_MEM(S3C_PA_NAND, SZ_1M),
658 };
659
660 struct platform_device s3c_device_nand = {
661         .name           = "s3c2410-nand",
662         .id             = -1,
663         .num_resources  = ARRAY_SIZE(s3c_nand_resource),
664         .resource       = s3c_nand_resource,
665 };
666
667 /*
668  * s3c_nand_copy_set() - copy nand set data
669  * @set: The new structure, directly copied from the old.
670  *
671  * Copy all the fields from the NAND set field from what is probably __initdata
672  * to new kernel memory. The code returns 0 if the copy happened correctly or
673  * an error code for the calling function to display.
674  *
675  * Note, we currently do not try and look to see if we've already copied the
676  * data in a previous set.
677  */
678 static int __init s3c_nand_copy_set(struct s3c2410_nand_set *set)
679 {
680         void *ptr;
681         int size;
682
683         size = sizeof(struct mtd_partition) * set->nr_partitions;
684         if (size) {
685                 ptr = kmemdup(set->partitions, size, GFP_KERNEL);
686                 set->partitions = ptr;
687
688                 if (!ptr)
689                         return -ENOMEM;
690         }
691
692         if (set->nr_map && set->nr_chips) {
693                 size = sizeof(int) * set->nr_chips;
694                 ptr = kmemdup(set->nr_map, size, GFP_KERNEL);
695                 set->nr_map = ptr;
696
697                 if (!ptr)
698                         return -ENOMEM;
699         }
700
701         return 0;
702 }
703
704 void __init s3c_nand_set_platdata(struct s3c2410_platform_nand *nand)
705 {
706         struct s3c2410_platform_nand *npd;
707         int size;
708         int ret;
709
710         /* note, if we get a failure in allocation, we simply drop out of the
711          * function. If there is so little memory available at initialisation
712          * time then there is little chance the system is going to run.
713          */
714
715         npd = s3c_set_platdata(nand, sizeof(*npd), &s3c_device_nand);
716         if (!npd)
717                 return;
718
719         /* now see if we need to copy any of the nand set data */
720
721         size = sizeof(struct s3c2410_nand_set) * npd->nr_sets;
722         if (size) {
723                 struct s3c2410_nand_set *from = npd->sets;
724                 struct s3c2410_nand_set *to;
725                 int i;
726
727                 to = kmemdup(from, size, GFP_KERNEL);
728                 npd->sets = to; /* set, even if we failed */
729
730                 if (!to) {
731                         printk(KERN_ERR "%s: no memory for sets\n", __func__);
732                         return;
733                 }
734
735                 for (i = 0; i < npd->nr_sets; i++) {
736                         ret = s3c_nand_copy_set(to);
737                         if (ret) {
738                                 printk(KERN_ERR "%s: failed to copy set %d\n",
739                                 __func__, i);
740                                 return;
741                         }
742                         to++;
743                 }
744         }
745 }
746 #endif /* CONFIG_S3C_DEV_NAND */
747
748 /* ONENAND */
749
750 #ifdef CONFIG_S3C_DEV_ONENAND
751 static struct resource s3c_onenand_resources[] = {
752         [0] = DEFINE_RES_MEM(S3C_PA_ONENAND, SZ_1K),
753         [1] = DEFINE_RES_MEM(S3C_PA_ONENAND_BUF, S3C_SZ_ONENAND_BUF),
754         [2] = DEFINE_RES_IRQ(IRQ_ONENAND),
755 };
756
757 struct platform_device s3c_device_onenand = {
758         .name           = "samsung-onenand",
759         .id             = 0,
760         .num_resources  = ARRAY_SIZE(s3c_onenand_resources),
761         .resource       = s3c_onenand_resources,
762 };
763 #endif /* CONFIG_S3C_DEV_ONENAND */
764
765 #ifdef CONFIG_S3C64XX_DEV_ONENAND1
766 static struct resource s3c64xx_onenand1_resources[] = {
767         [0] = DEFINE_RES_MEM(S3C64XX_PA_ONENAND1, SZ_1K),
768         [1] = DEFINE_RES_MEM(S3C64XX_PA_ONENAND1_BUF, S3C64XX_SZ_ONENAND1_BUF),
769         [2] = DEFINE_RES_IRQ(IRQ_ONENAND1),
770 };
771
772 struct platform_device s3c64xx_device_onenand1 = {
773         .name           = "samsung-onenand",
774         .id             = 1,
775         .num_resources  = ARRAY_SIZE(s3c64xx_onenand1_resources),
776         .resource       = s3c64xx_onenand1_resources,
777 };
778
779 void __init s3c64xx_onenand1_set_platdata(struct onenand_platform_data *pdata)
780 {
781         s3c_set_platdata(pdata, sizeof(struct onenand_platform_data),
782                          &s3c64xx_device_onenand1);
783 }
784 #endif /* CONFIG_S3C64XX_DEV_ONENAND1 */
785
786 /* PWM Timer */
787
788 #ifdef CONFIG_SAMSUNG_DEV_PWM
789 static struct resource samsung_pwm_resource[] = {
790         DEFINE_RES_MEM(SAMSUNG_PA_TIMER, SZ_4K),
791 };
792
793 struct platform_device samsung_device_pwm = {
794         .name           = "samsung-pwm",
795         .id             = -1,
796         .num_resources  = ARRAY_SIZE(samsung_pwm_resource),
797         .resource       = samsung_pwm_resource,
798 };
799
800 void __init samsung_pwm_set_platdata(struct samsung_pwm_variant *pd)
801 {
802         samsung_device_pwm.dev.platform_data = pd;
803 }
804 #endif /* CONFIG_SAMSUNG_DEV_PWM */
805
806 /* RTC */
807
808 #ifdef CONFIG_PLAT_S3C24XX
809 static struct resource s3c_rtc_resource[] = {
810         [0] = DEFINE_RES_MEM(S3C24XX_PA_RTC, SZ_256),
811         [1] = DEFINE_RES_IRQ(IRQ_RTC),
812         [2] = DEFINE_RES_IRQ(IRQ_TICK),
813 };
814
815 struct platform_device s3c_device_rtc = {
816         .name           = "s3c2410-rtc",
817         .id             = -1,
818         .num_resources  = ARRAY_SIZE(s3c_rtc_resource),
819         .resource       = s3c_rtc_resource,
820 };
821 #endif /* CONFIG_PLAT_S3C24XX */
822
823 #ifdef CONFIG_S3C_DEV_RTC
824 static struct resource s3c_rtc_resource[] = {
825         [0] = DEFINE_RES_MEM(S3C_PA_RTC, SZ_256),
826         [1] = DEFINE_RES_IRQ(IRQ_RTC_ALARM),
827         [2] = DEFINE_RES_IRQ(IRQ_RTC_TIC),
828 };
829
830 struct platform_device s3c_device_rtc = {
831         .name           = "s3c64xx-rtc",
832         .id             = -1,
833         .num_resources  = ARRAY_SIZE(s3c_rtc_resource),
834         .resource       = s3c_rtc_resource,
835 };
836 #endif /* CONFIG_S3C_DEV_RTC */
837
838 /* SDI */
839
840 #ifdef CONFIG_PLAT_S3C24XX
841 static struct resource s3c_sdi_resource[] = {
842         [0] = DEFINE_RES_MEM(S3C24XX_PA_SDI, S3C24XX_SZ_SDI),
843         [1] = DEFINE_RES_IRQ(IRQ_SDI),
844 };
845
846 struct platform_device s3c_device_sdi = {
847         .name           = "s3c2410-sdi",
848         .id             = -1,
849         .num_resources  = ARRAY_SIZE(s3c_sdi_resource),
850         .resource       = s3c_sdi_resource,
851 };
852
853 void __init s3c24xx_mci_set_platdata(struct s3c24xx_mci_pdata *pdata)
854 {
855         s3c_set_platdata(pdata, sizeof(struct s3c24xx_mci_pdata),
856                          &s3c_device_sdi);
857 }
858 #endif /* CONFIG_PLAT_S3C24XX */
859
860 /* SPI */
861
862 #ifdef CONFIG_PLAT_S3C24XX
863 static struct resource s3c_spi0_resource[] = {
864         [0] = DEFINE_RES_MEM(S3C24XX_PA_SPI, SZ_32),
865         [1] = DEFINE_RES_IRQ(IRQ_SPI0),
866 };
867
868 struct platform_device s3c_device_spi0 = {
869         .name           = "s3c2410-spi",
870         .id             = 0,
871         .num_resources  = ARRAY_SIZE(s3c_spi0_resource),
872         .resource       = s3c_spi0_resource,
873         .dev            = {
874                 .dma_mask               = &samsung_device_dma_mask,
875                 .coherent_dma_mask      = DMA_BIT_MASK(32),
876         }
877 };
878
879 static struct resource s3c_spi1_resource[] = {
880         [0] = DEFINE_RES_MEM(S3C24XX_PA_SPI1, SZ_32),
881         [1] = DEFINE_RES_IRQ(IRQ_SPI1),
882 };
883
884 struct platform_device s3c_device_spi1 = {
885         .name           = "s3c2410-spi",
886         .id             = 1,
887         .num_resources  = ARRAY_SIZE(s3c_spi1_resource),
888         .resource       = s3c_spi1_resource,
889         .dev            = {
890                 .dma_mask               = &samsung_device_dma_mask,
891                 .coherent_dma_mask      = DMA_BIT_MASK(32),
892         }
893 };
894 #endif /* CONFIG_PLAT_S3C24XX */
895
896 /* Touchscreen */
897
898 #ifdef CONFIG_PLAT_S3C24XX
899 static struct resource s3c_ts_resource[] = {
900         [0] = DEFINE_RES_MEM(S3C24XX_PA_ADC, S3C24XX_SZ_ADC),
901         [1] = DEFINE_RES_IRQ(IRQ_TC),
902 };
903
904 struct platform_device s3c_device_ts = {
905         .name           = "s3c2410-ts",
906         .id             = -1,
907         .dev.parent     = &s3c_device_adc.dev,
908         .num_resources  = ARRAY_SIZE(s3c_ts_resource),
909         .resource       = s3c_ts_resource,
910 };
911
912 void __init s3c24xx_ts_set_platdata(struct s3c2410_ts_mach_info *hard_s3c2410ts_info)
913 {
914         s3c_set_platdata(hard_s3c2410ts_info,
915                          sizeof(struct s3c2410_ts_mach_info), &s3c_device_ts);
916 }
917 #endif /* CONFIG_PLAT_S3C24XX */
918
919 #ifdef CONFIG_SAMSUNG_DEV_TS
920 static struct s3c2410_ts_mach_info default_ts_data __initdata = {
921         .delay                  = 10000,
922         .presc                  = 49,
923         .oversampling_shift     = 2,
924 };
925
926 void __init s3c64xx_ts_set_platdata(struct s3c2410_ts_mach_info *pd)
927 {
928         if (!pd)
929                 pd = &default_ts_data;
930
931         s3c_set_platdata(pd, sizeof(struct s3c2410_ts_mach_info),
932                          &s3c_device_adc);
933 }
934 #endif /* CONFIG_SAMSUNG_DEV_TS */
935
936 /* USB */
937
938 #ifdef CONFIG_S3C_DEV_USB_HOST
939 static struct resource s3c_usb_resource[] = {
940         [0] = DEFINE_RES_MEM(S3C_PA_USBHOST, SZ_256),
941         [1] = DEFINE_RES_IRQ(IRQ_USBH),
942 };
943
944 struct platform_device s3c_device_ohci = {
945         .name           = "s3c2410-ohci",
946         .id             = -1,
947         .num_resources  = ARRAY_SIZE(s3c_usb_resource),
948         .resource       = s3c_usb_resource,
949         .dev            = {
950                 .dma_mask               = &samsung_device_dma_mask,
951                 .coherent_dma_mask      = DMA_BIT_MASK(32),
952         }
953 };
954
955 /*
956  * s3c_ohci_set_platdata - initialise OHCI device platform data
957  * @info: The platform data.
958  *
959  * This call copies the @info passed in and sets the device .platform_data
960  * field to that copy. The @info is copied so that the original can be marked
961  * __initdata.
962  */
963
964 void __init s3c_ohci_set_platdata(struct s3c2410_hcd_info *info)
965 {
966         s3c_set_platdata(info, sizeof(struct s3c2410_hcd_info),
967                          &s3c_device_ohci);
968 }
969 #endif /* CONFIG_S3C_DEV_USB_HOST */
970
971 /* USB Device (Gadget) */
972
973 #ifdef CONFIG_PLAT_S3C24XX
974 static struct resource s3c_usbgadget_resource[] = {
975         [0] = DEFINE_RES_MEM(S3C24XX_PA_USBDEV, S3C24XX_SZ_USBDEV),
976         [1] = DEFINE_RES_IRQ(IRQ_USBD),
977 };
978
979 struct platform_device s3c_device_usbgadget = {
980         .name           = "s3c2410-usbgadget",
981         .id             = -1,
982         .num_resources  = ARRAY_SIZE(s3c_usbgadget_resource),
983         .resource       = s3c_usbgadget_resource,
984 };
985
986 void __init s3c24xx_udc_set_platdata(struct s3c2410_udc_mach_info *pd)
987 {
988         s3c_set_platdata(pd, sizeof(*pd), &s3c_device_usbgadget);
989 }
990 #endif /* CONFIG_PLAT_S3C24XX */
991
992 /* USB HSOTG */
993
994 #ifdef CONFIG_S3C_DEV_USB_HSOTG
995 static struct resource s3c_usb_hsotg_resources[] = {
996         [0] = DEFINE_RES_MEM(S3C_PA_USB_HSOTG, SZ_128K),
997         [1] = DEFINE_RES_IRQ(IRQ_OTG),
998 };
999
1000 struct platform_device s3c_device_usb_hsotg = {
1001         .name           = "s3c-hsotg",
1002         .id             = -1,
1003         .num_resources  = ARRAY_SIZE(s3c_usb_hsotg_resources),
1004         .resource       = s3c_usb_hsotg_resources,
1005         .dev            = {
1006                 .dma_mask               = &samsung_device_dma_mask,
1007                 .coherent_dma_mask      = DMA_BIT_MASK(32),
1008         },
1009 };
1010
1011 void __init dwc2_hsotg_set_platdata(struct dwc2_hsotg_plat *pd)
1012 {
1013         struct dwc2_hsotg_plat *npd;
1014
1015         npd = s3c_set_platdata(pd, sizeof(*npd), &s3c_device_usb_hsotg);
1016
1017         if (!npd->phy_init)
1018                 npd->phy_init = s5p_usb_phy_init;
1019         if (!npd->phy_exit)
1020                 npd->phy_exit = s5p_usb_phy_exit;
1021 }
1022 #endif /* CONFIG_S3C_DEV_USB_HSOTG */
1023
1024 /* USB High Spped 2.0 Device (Gadget) */
1025
1026 #ifdef CONFIG_PLAT_S3C24XX
1027 static struct resource s3c_hsudc_resource[] = {
1028         [0] = DEFINE_RES_MEM(S3C2416_PA_HSUDC, S3C2416_SZ_HSUDC),
1029         [1] = DEFINE_RES_IRQ(IRQ_USBD),
1030 };
1031
1032 struct platform_device s3c_device_usb_hsudc = {
1033         .name           = "s3c-hsudc",
1034         .id             = -1,
1035         .num_resources  = ARRAY_SIZE(s3c_hsudc_resource),
1036         .resource       = s3c_hsudc_resource,
1037         .dev            = {
1038                 .dma_mask               = &samsung_device_dma_mask,
1039                 .coherent_dma_mask      = DMA_BIT_MASK(32),
1040         },
1041 };
1042
1043 void __init s3c24xx_hsudc_set_platdata(struct s3c24xx_hsudc_platdata *pd)
1044 {
1045         s3c_set_platdata(pd, sizeof(*pd), &s3c_device_usb_hsudc);
1046 }
1047 #endif /* CONFIG_PLAT_S3C24XX */
1048
1049 /* WDT */
1050
1051 #ifdef CONFIG_S3C_DEV_WDT
1052 static struct resource s3c_wdt_resource[] = {
1053         [0] = DEFINE_RES_MEM(S3C_PA_WDT, SZ_1K),
1054         [1] = DEFINE_RES_IRQ(IRQ_WDT),
1055 };
1056
1057 struct platform_device s3c_device_wdt = {
1058         .name           = "s3c2410-wdt",
1059         .id             = -1,
1060         .num_resources  = ARRAY_SIZE(s3c_wdt_resource),
1061         .resource       = s3c_wdt_resource,
1062 };
1063 #endif /* CONFIG_S3C_DEV_WDT */
1064
1065 #ifdef CONFIG_S3C64XX_DEV_SPI0
1066 static struct resource s3c64xx_spi0_resource[] = {
1067         [0] = DEFINE_RES_MEM(S3C_PA_SPI0, SZ_256),
1068         [1] = DEFINE_RES_IRQ(IRQ_SPI0),
1069 };
1070
1071 struct platform_device s3c64xx_device_spi0 = {
1072         .name           = "s3c6410-spi",
1073         .id             = 0,
1074         .num_resources  = ARRAY_SIZE(s3c64xx_spi0_resource),
1075         .resource       = s3c64xx_spi0_resource,
1076         .dev = {
1077                 .dma_mask               = &samsung_device_dma_mask,
1078                 .coherent_dma_mask      = DMA_BIT_MASK(32),
1079         },
1080 };
1081
1082 void __init s3c64xx_spi0_set_platdata(int (*cfg_gpio)(void), int src_clk_nr,
1083                                                 int num_cs)
1084 {
1085         struct s3c64xx_spi_info pd;
1086
1087         /* Reject invalid configuration */
1088         if (!num_cs || src_clk_nr < 0) {
1089                 pr_err("%s: Invalid SPI configuration\n", __func__);
1090                 return;
1091         }
1092
1093         pd.num_cs = num_cs;
1094         pd.src_clk_nr = src_clk_nr;
1095         pd.cfg_gpio = (cfg_gpio) ? cfg_gpio : s3c64xx_spi0_cfg_gpio;
1096
1097         s3c_set_platdata(&pd, sizeof(pd), &s3c64xx_device_spi0);
1098 }
1099 #endif /* CONFIG_S3C64XX_DEV_SPI0 */
1100
1101 #ifdef CONFIG_S3C64XX_DEV_SPI1
1102 static struct resource s3c64xx_spi1_resource[] = {
1103         [0] = DEFINE_RES_MEM(S3C_PA_SPI1, SZ_256),
1104         [1] = DEFINE_RES_IRQ(IRQ_SPI1),
1105 };
1106
1107 struct platform_device s3c64xx_device_spi1 = {
1108         .name           = "s3c6410-spi",
1109         .id             = 1,
1110         .num_resources  = ARRAY_SIZE(s3c64xx_spi1_resource),
1111         .resource       = s3c64xx_spi1_resource,
1112         .dev = {
1113                 .dma_mask               = &samsung_device_dma_mask,
1114                 .coherent_dma_mask      = DMA_BIT_MASK(32),
1115         },
1116 };
1117
1118 void __init s3c64xx_spi1_set_platdata(int (*cfg_gpio)(void), int src_clk_nr,
1119                                                 int num_cs)
1120 {
1121         struct s3c64xx_spi_info pd;
1122
1123         /* Reject invalid configuration */
1124         if (!num_cs || src_clk_nr < 0) {
1125                 pr_err("%s: Invalid SPI configuration\n", __func__);
1126                 return;
1127         }
1128
1129         pd.num_cs = num_cs;
1130         pd.src_clk_nr = src_clk_nr;
1131         pd.cfg_gpio = (cfg_gpio) ? cfg_gpio : s3c64xx_spi1_cfg_gpio;
1132
1133         s3c_set_platdata(&pd, sizeof(pd), &s3c64xx_device_spi1);
1134 }
1135 #endif /* CONFIG_S3C64XX_DEV_SPI1 */
1136
1137 #ifdef CONFIG_S3C64XX_DEV_SPI2
1138 static struct resource s3c64xx_spi2_resource[] = {
1139         [0] = DEFINE_RES_MEM(S3C_PA_SPI2, SZ_256),
1140         [1] = DEFINE_RES_IRQ(IRQ_SPI2),
1141 };
1142
1143 struct platform_device s3c64xx_device_spi2 = {
1144         .name           = "s3c6410-spi",
1145         .id             = 2,
1146         .num_resources  = ARRAY_SIZE(s3c64xx_spi2_resource),
1147         .resource       = s3c64xx_spi2_resource,
1148         .dev = {
1149                 .dma_mask               = &samsung_device_dma_mask,
1150                 .coherent_dma_mask      = DMA_BIT_MASK(32),
1151         },
1152 };
1153
1154 void __init s3c64xx_spi2_set_platdata(int (*cfg_gpio)(void), int src_clk_nr,
1155                                                 int num_cs)
1156 {
1157         struct s3c64xx_spi_info pd;
1158
1159         /* Reject invalid configuration */
1160         if (!num_cs || src_clk_nr < 0) {
1161                 pr_err("%s: Invalid SPI configuration\n", __func__);
1162                 return;
1163         }
1164
1165         pd.num_cs = num_cs;
1166         pd.src_clk_nr = src_clk_nr;
1167         pd.cfg_gpio = (cfg_gpio) ? cfg_gpio : s3c64xx_spi2_cfg_gpio;
1168
1169         s3c_set_platdata(&pd, sizeof(pd), &s3c64xx_device_spi2);
1170 }
1171 #endif /* CONFIG_S3C64XX_DEV_SPI2 */