]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - sitara-epos/sitara-epos-kernel.git/blob - arch/arm/mach-omap2/devices.c
Merge v3.2 stable kernel here
[sitara-epos/sitara-epos-kernel.git] / arch / arm / mach-omap2 / devices.c
1 /*
2  * linux/arch/arm/mach-omap2/devices.c
3  *
4  * OMAP2 platform device setup/initialization
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  */
11 #include <linux/gpio.h>
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/platform_device.h>
15 #include <linux/io.h>
16 #include <linux/clk.h>
17 #include <linux/err.h>
18 #include <linux/slab.h>
19 #include <linux/of.h>
21 #include <mach/hardware.h>
22 #include <mach/irqs.h>
23 #include <asm/mach-types.h>
24 #include <asm/mach/map.h>
25 #include <asm/pmu.h>
27 #include <plat/tc.h>
28 #include <plat/board.h>
29 #include <plat/mcbsp.h>
30 #include <plat/mmc.h>
31 #include <plat/dma.h>
32 #include <plat/omap_hwmod.h>
33 #include <plat/omap_device.h>
34 #include <plat/omap4-keypad.h>
36 #include "mux.h"
37 #include "control.h"
38 #include "devices.h"
40 #define L3_MODULES_MAX_LEN 12
41 #define L3_MODULES 3
43 static int __init omap3_l3_init(void)
44 {
45         int l;
46         struct omap_hwmod *oh;
47         struct platform_device *pdev;
48         char oh_name[L3_MODULES_MAX_LEN];
50         /*
51          * To avoid code running on other OMAPs in
52          * multi-omap builds
53          */
54         if (!(cpu_is_omap34xx()))
55                 return -ENODEV;
57         l = snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main");
59         oh = omap_hwmod_lookup(oh_name);
61         if (!oh)
62                 pr_err("could not look up %s\n", oh_name);
64         pdev = omap_device_build("omap_l3_smx", 0, oh, NULL, 0,
65                                                            NULL, 0, 0);
67         WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
69         return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
70 }
71 postcore_initcall(omap3_l3_init);
73 static int __init omap4_l3_init(void)
74 {
75         int l, i;
76         struct omap_hwmod *oh[3];
77         struct platform_device *pdev;
78         char oh_name[L3_MODULES_MAX_LEN];
80         /* If dtb is there, the devices will be created dynamically */
81         if (of_have_populated_dt())
82                 return -ENODEV;
84         /*
85          * To avoid code running on other OMAPs in
86          * multi-omap builds
87          */
88         if (!(cpu_is_omap44xx()))
89                 return -ENODEV;
91         for (i = 0; i < L3_MODULES; i++) {
92                 l = snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main_%d", i+1);
94                 oh[i] = omap_hwmod_lookup(oh_name);
95                 if (!(oh[i]))
96                         pr_err("could not look up %s\n", oh_name);
97         }
99         pdev = omap_device_build_ss("omap_l3_noc", 0, oh, 3, NULL,
100                                                      0, NULL, 0, 0);
102         WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
104         return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
106 postcore_initcall(omap4_l3_init);
108 #if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
110 static struct resource omap2cam_resources[] = {
111         {
112                 .start          = OMAP24XX_CAMERA_BASE,
113                 .end            = OMAP24XX_CAMERA_BASE + 0xfff,
114                 .flags          = IORESOURCE_MEM,
115         },
116         {
117                 .start          = INT_24XX_CAM_IRQ,
118                 .flags          = IORESOURCE_IRQ,
119         }
120 };
122 static struct platform_device omap2cam_device = {
123         .name           = "omap24xxcam",
124         .id             = -1,
125         .num_resources  = ARRAY_SIZE(omap2cam_resources),
126         .resource       = omap2cam_resources,
127 };
128 #endif
130 static struct resource omap3isp_resources[] = {
131         {
132                 .start          = OMAP3430_ISP_BASE,
133                 .end            = OMAP3430_ISP_END,
134                 .flags          = IORESOURCE_MEM,
135         },
136         {
137                 .start          = OMAP3430_ISP_CCP2_BASE,
138                 .end            = OMAP3430_ISP_CCP2_END,
139                 .flags          = IORESOURCE_MEM,
140         },
141         {
142                 .start          = OMAP3430_ISP_CCDC_BASE,
143                 .end            = OMAP3430_ISP_CCDC_END,
144                 .flags          = IORESOURCE_MEM,
145         },
146         {
147                 .start          = OMAP3430_ISP_HIST_BASE,
148                 .end            = OMAP3430_ISP_HIST_END,
149                 .flags          = IORESOURCE_MEM,
150         },
151         {
152                 .start          = OMAP3430_ISP_H3A_BASE,
153                 .end            = OMAP3430_ISP_H3A_END,
154                 .flags          = IORESOURCE_MEM,
155         },
156         {
157                 .start          = OMAP3430_ISP_PREV_BASE,
158                 .end            = OMAP3430_ISP_PREV_END,
159                 .flags          = IORESOURCE_MEM,
160         },
161         {
162                 .start          = OMAP3430_ISP_RESZ_BASE,
163                 .end            = OMAP3430_ISP_RESZ_END,
164                 .flags          = IORESOURCE_MEM,
165         },
166         {
167                 .start          = OMAP3430_ISP_SBL_BASE,
168                 .end            = OMAP3430_ISP_SBL_END,
169                 .flags          = IORESOURCE_MEM,
170         },
171         {
172                 .start          = OMAP3430_ISP_CSI2A_REGS1_BASE,
173                 .end            = OMAP3430_ISP_CSI2A_REGS1_END,
174                 .flags          = IORESOURCE_MEM,
175         },
176         {
177                 .start          = OMAP3430_ISP_CSIPHY2_BASE,
178                 .end            = OMAP3430_ISP_CSIPHY2_END,
179                 .flags          = IORESOURCE_MEM,
180         },
181         {
182                 .start          = OMAP3630_ISP_CSI2A_REGS2_BASE,
183                 .end            = OMAP3630_ISP_CSI2A_REGS2_END,
184                 .flags          = IORESOURCE_MEM,
185         },
186         {
187                 .start          = OMAP3630_ISP_CSI2C_REGS1_BASE,
188                 .end            = OMAP3630_ISP_CSI2C_REGS1_END,
189                 .flags          = IORESOURCE_MEM,
190         },
191         {
192                 .start          = OMAP3630_ISP_CSIPHY1_BASE,
193                 .end            = OMAP3630_ISP_CSIPHY1_END,
194                 .flags          = IORESOURCE_MEM,
195         },
196         {
197                 .start          = OMAP3630_ISP_CSI2C_REGS2_BASE,
198                 .end            = OMAP3630_ISP_CSI2C_REGS2_END,
199                 .flags          = IORESOURCE_MEM,
200         },
201         {
202                 .start          = INT_34XX_CAM_IRQ,
203                 .flags          = IORESOURCE_IRQ,
204         }
205 };
207 static struct platform_device omap3isp_device = {
208         .name           = "omap3isp",
209         .id             = -1,
210         .num_resources  = ARRAY_SIZE(omap3isp_resources),
211         .resource       = omap3isp_resources,
212 };
214 int omap3_init_camera(struct isp_platform_data *pdata)
216         omap3isp_device.dev.platform_data = pdata;
217         return platform_device_register(&omap3isp_device);
220 static inline void omap_init_camera(void)
222 #if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
223         if (cpu_is_omap24xx())
224                 platform_device_register(&omap2cam_device);
225 #endif
228 int __init omap4_keyboard_init(struct omap4_keypad_platform_data
229                         *sdp4430_keypad_data, struct omap_board_data *bdata)
231         struct platform_device *pdev;
232         struct omap_hwmod *oh;
233         struct omap4_keypad_platform_data *keypad_data;
234         unsigned int id = -1;
235         char *oh_name = "kbd";
236         char *name = "omap4-keypad";
238         oh = omap_hwmod_lookup(oh_name);
239         if (!oh) {
240                 pr_err("Could not look up %s\n", oh_name);
241                 return -ENODEV;
242         }
244         keypad_data = sdp4430_keypad_data;
246         pdev = omap_device_build(name, id, oh, keypad_data,
247                         sizeof(struct omap4_keypad_platform_data), NULL, 0, 0);
249         if (IS_ERR(pdev)) {
250                 WARN(1, "Can't build omap_device for %s:%s.\n",
251                                                 name, oh->name);
252                 return PTR_ERR(pdev);
253         }
254         oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt);
256         return 0;
259 #if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE)
260 static inline void omap_init_mbox(void)
262         struct omap_hwmod *oh;
263         struct platform_device *pdev;
265         oh = omap_hwmod_lookup("mailbox");
266         if (!oh) {
267                 pr_err("%s: unable to find hwmod\n", __func__);
268                 return;
269         }
271         pdev = omap_device_build("omap-mailbox", -1, oh, NULL, 0, NULL, 0, 0);
272         WARN(IS_ERR(pdev), "%s: could not build device, err %ld\n",
273                                                 __func__, PTR_ERR(pdev));
275 #else
276 static inline void omap_init_mbox(void) { }
277 #endif /* CONFIG_OMAP_MBOX_FWK */
279 static inline void omap_init_sti(void) {}
281 #if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
283 static struct platform_device omap_pcm = {
284         .name   = "omap-pcm-audio",
285         .id     = -1,
286 };
288 /*
289  * OMAP2420 has 2 McBSP ports
290  * OMAP2430 has 5 McBSP ports
291  * OMAP3 has 5 McBSP ports
292  * OMAP4 has 4 McBSP ports
293  */
294 OMAP_MCBSP_PLATFORM_DEVICE(1);
295 OMAP_MCBSP_PLATFORM_DEVICE(2);
296 OMAP_MCBSP_PLATFORM_DEVICE(3);
297 OMAP_MCBSP_PLATFORM_DEVICE(4);
298 OMAP_MCBSP_PLATFORM_DEVICE(5);
300 static void omap_init_audio(void)
302         platform_device_register(&omap_mcbsp1);
303         platform_device_register(&omap_mcbsp2);
304         if (cpu_is_omap243x() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
305                 platform_device_register(&omap_mcbsp3);
306                 platform_device_register(&omap_mcbsp4);
307         }
308         if (cpu_is_omap243x() || cpu_is_omap34xx())
309                 platform_device_register(&omap_mcbsp5);
311         platform_device_register(&omap_pcm);
314 #else
315 static inline void omap_init_audio(void) {}
316 #endif
318 #if defined(CONFIG_SND_OMAP_SOC_MCPDM) || \
319                 defined(CONFIG_SND_OMAP_SOC_MCPDM_MODULE)
321 static void omap_init_mcpdm(void)
323         struct omap_hwmod *oh;
324         struct platform_device *pdev;
326         oh = omap_hwmod_lookup("mcpdm");
327         if (!oh) {
328                 printk(KERN_ERR "Could not look up mcpdm hw_mod\n");
329                 return;
330         }
332         pdev = omap_device_build("omap-mcpdm", -1, oh, NULL, 0, NULL, 0, 0);
333         WARN(IS_ERR(pdev), "Can't build omap_device for omap-mcpdm.\n");
335 #else
336 static inline void omap_init_mcpdm(void) {}
337 #endif
339 #if defined(CONFIG_SND_OMAP_SOC_DMIC) || \
340                 defined(CONFIG_SND_OMAP_SOC_DMIC_MODULE)
342 static void omap_init_dmic(void)
344         struct omap_hwmod *oh;
345         struct platform_device *pdev;
347         oh = omap_hwmod_lookup("dmic");
348         if (!oh) {
349                 printk(KERN_ERR "Could not look up mcpdm hw_mod\n");
350                 return;
351         }
353         pdev = omap_device_build("omap-dmic", -1, oh, NULL, 0, NULL, 0, 0);
354         WARN(IS_ERR(pdev), "Can't build omap_device for omap-dmic.\n");
356 #else
357 static inline void omap_init_dmic(void) {}
358 #endif
360 #if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
362 #include <plat/mcspi.h>
364 static int omap_mcspi_init(struct omap_hwmod *oh, void *unused)
366         struct platform_device *pdev;
367         char *name = "omap2_mcspi";
368         struct omap2_mcspi_platform_config *pdata;
369         static int spi_num;
370         struct omap2_mcspi_dev_attr *mcspi_attrib = oh->dev_attr;
372         pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
373         if (!pdata) {
374                 pr_err("Memory allocation for McSPI device failed\n");
375                 return -ENOMEM;
376         }
378         pdata->num_cs = mcspi_attrib->num_chipselect;
379         switch (oh->class->rev) {
380         case OMAP2_MCSPI_REV:
381         case OMAP3_MCSPI_REV:
382                         pdata->regs_offset = 0;
383                         break;
384         case OMAP4_MCSPI_REV:
385                         pdata->regs_offset = OMAP4_MCSPI_REG_OFFSET;
386                         break;
387         default:
388                         pr_err("Invalid McSPI Revision value\n");
389                         return -EINVAL;
390         }
392         spi_num++;
393         pdev = omap_device_build(name, spi_num, oh, pdata,
394                                 sizeof(*pdata), NULL, 0, 0);
395         WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s\n",
396                                 name, oh->name);
397         kfree(pdata);
398         return 0;
401 static void omap_init_mcspi(void)
403         omap_hwmod_for_each_by_class("mcspi", omap_mcspi_init, NULL);
406 #else
407 static inline void omap_init_mcspi(void) {}
408 #endif
410 static struct resource omap2_pmu_resource = {
411         .start  = 3,
412         .end    = 3,
413         .flags  = IORESOURCE_IRQ,
414 };
416 static struct resource omap3_pmu_resource = {
417         .start  = INT_34XX_BENCH_MPU_EMUL,
418         .end    = INT_34XX_BENCH_MPU_EMUL,
419         .flags  = IORESOURCE_IRQ,
420 };
422 static struct platform_device omap_pmu_device = {
423         .name           = "arm-pmu",
424         .id             = ARM_PMU_DEVICE_CPU,
425         .num_resources  = 1,
426 };
428 static void omap_init_pmu(void)
430         if (cpu_is_omap24xx())
431                 omap_pmu_device.resource = &omap2_pmu_resource;
432         else if (cpu_is_omap34xx())
433                 omap_pmu_device.resource = &omap3_pmu_resource;
434         else
435                 return;
437         platform_device_register(&omap_pmu_device);
441 #if defined(CONFIG_CRYPTO_DEV_OMAP_SHAM) || defined(CONFIG_CRYPTO_DEV_OMAP_SHAM_MODULE)
443 #ifdef CONFIG_ARCH_OMAP2
444 static struct resource omap2_sham_resources[] = {
445         {
446                 .start  = OMAP24XX_SEC_SHA1MD5_BASE,
447                 .end    = OMAP24XX_SEC_SHA1MD5_BASE + 0x64,
448                 .flags  = IORESOURCE_MEM,
449         },
450         {
451                 .start  = INT_24XX_SHA1MD5,
452                 .flags  = IORESOURCE_IRQ,
453         }
454 };
455 static int omap2_sham_resources_sz = ARRAY_SIZE(omap2_sham_resources);
456 #else
457 #define omap2_sham_resources            NULL
458 #define omap2_sham_resources_sz         0
459 #endif
461 #ifdef CONFIG_ARCH_OMAP3
462 static struct resource omap3_sham_resources[] = {
463         {
464                 .start  = OMAP34XX_SEC_SHA1MD5_BASE,
465                 .end    = OMAP34XX_SEC_SHA1MD5_BASE + 0x64,
466                 .flags  = IORESOURCE_MEM,
467         },
468         {
469                 .start  = INT_34XX_SHA1MD52_IRQ,
470                 .flags  = IORESOURCE_IRQ,
471         },
472         {
473                 .start  = OMAP34XX_DMA_SHA1MD5_RX,
474                 .flags  = IORESOURCE_DMA,
475         }
476 };
477 static int omap3_sham_resources_sz = ARRAY_SIZE(omap3_sham_resources);
478 #else
479 #define omap3_sham_resources            NULL
480 #define omap3_sham_resources_sz         0
481 #endif
483 static struct platform_device sham_device = {
484         .name           = "omap-sham",
485         .id             = -1,
486 };
488 static void omap_init_sham(void)
490         if (cpu_is_omap24xx()) {
491                 sham_device.resource = omap2_sham_resources;
492                 sham_device.num_resources = omap2_sham_resources_sz;
493         } else if (cpu_is_omap34xx()) {
494                 sham_device.resource = omap3_sham_resources;
495                 sham_device.num_resources = omap3_sham_resources_sz;
496         } else {
497                 pr_err("%s: platform not supported\n", __func__);
498                 return;
499         }
500         platform_device_register(&sham_device);
502 #else
503 static inline void omap_init_sham(void) { }
504 #endif
506 #if defined(CONFIG_CRYPTO_DEV_OMAP_AES) || defined(CONFIG_CRYPTO_DEV_OMAP_AES_MODULE)
508 #ifdef CONFIG_ARCH_OMAP2
509 static struct resource omap2_aes_resources[] = {
510         {
511                 .start  = OMAP24XX_SEC_AES_BASE,
512                 .end    = OMAP24XX_SEC_AES_BASE + 0x4C,
513                 .flags  = IORESOURCE_MEM,
514         },
515         {
516                 .start  = OMAP24XX_DMA_AES_TX,
517                 .flags  = IORESOURCE_DMA,
518         },
519         {
520                 .start  = OMAP24XX_DMA_AES_RX,
521                 .flags  = IORESOURCE_DMA,
522         }
523 };
524 static int omap2_aes_resources_sz = ARRAY_SIZE(omap2_aes_resources);
525 #else
526 #define omap2_aes_resources             NULL
527 #define omap2_aes_resources_sz          0
528 #endif
530 #ifdef CONFIG_ARCH_OMAP3
531 static struct resource omap3_aes_resources[] = {
532         {
533                 .start  = OMAP34XX_SEC_AES_BASE,
534                 .end    = OMAP34XX_SEC_AES_BASE + 0x4C,
535                 .flags  = IORESOURCE_MEM,
536         },
537         {
538                 .start  = OMAP34XX_DMA_AES2_TX,
539                 .flags  = IORESOURCE_DMA,
540         },
541         {
542                 .start  = OMAP34XX_DMA_AES2_RX,
543                 .flags  = IORESOURCE_DMA,
544         }
545 };
546 static int omap3_aes_resources_sz = ARRAY_SIZE(omap3_aes_resources);
547 #else
548 #define omap3_aes_resources             NULL
549 #define omap3_aes_resources_sz          0
550 #endif
552 static struct platform_device aes_device = {
553         .name           = "omap-aes",
554         .id             = -1,
555 };
557 static void omap_init_aes(void)
559         if (cpu_is_omap24xx()) {
560                 aes_device.resource = omap2_aes_resources;
561                 aes_device.num_resources = omap2_aes_resources_sz;
562         } else if (cpu_is_omap34xx()) {
563                 aes_device.resource = omap3_aes_resources;
564                 aes_device.num_resources = omap3_aes_resources_sz;
565         } else {
566                 pr_err("%s: platform not supported\n", __func__);
567                 return;
568         }
569         platform_device_register(&aes_device);
572 #else
573 static inline void omap_init_aes(void) { }
574 #endif
576 /*-------------------------------------------------------------------------*/
578 #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
580 static inline void omap242x_mmc_mux(struct omap_mmc_platform_data
581                                                         *mmc_controller)
583         if ((mmc_controller->slots[0].switch_pin > 0) && \
584                 (mmc_controller->slots[0].switch_pin < OMAP_MAX_GPIO_LINES))
585                 omap_mux_init_gpio(mmc_controller->slots[0].switch_pin,
586                                         OMAP_PIN_INPUT_PULLUP);
587         if ((mmc_controller->slots[0].gpio_wp > 0) && \
588                 (mmc_controller->slots[0].gpio_wp < OMAP_MAX_GPIO_LINES))
589                 omap_mux_init_gpio(mmc_controller->slots[0].gpio_wp,
590                                         OMAP_PIN_INPUT_PULLUP);
592         omap_mux_init_signal("sdmmc_cmd", 0);
593         omap_mux_init_signal("sdmmc_clki", 0);
594         omap_mux_init_signal("sdmmc_clko", 0);
595         omap_mux_init_signal("sdmmc_dat0", 0);
596         omap_mux_init_signal("sdmmc_dat_dir0", 0);
597         omap_mux_init_signal("sdmmc_cmd_dir", 0);
598         if (mmc_controller->slots[0].caps & MMC_CAP_4_BIT_DATA) {
599                 omap_mux_init_signal("sdmmc_dat1", 0);
600                 omap_mux_init_signal("sdmmc_dat2", 0);
601                 omap_mux_init_signal("sdmmc_dat3", 0);
602                 omap_mux_init_signal("sdmmc_dat_dir1", 0);
603                 omap_mux_init_signal("sdmmc_dat_dir2", 0);
604                 omap_mux_init_signal("sdmmc_dat_dir3", 0);
605         }
607         /*
608          * Use internal loop-back in MMC/SDIO Module Input Clock
609          * selection
610          */
611         if (mmc_controller->slots[0].internal_clock) {
612                 u32 v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
613                 v |= (1 << 24);
614                 omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0);
615         }
618 void __init omap242x_init_mmc(struct omap_mmc_platform_data **mmc_data)
620         char *name = "mmci-omap";
622         if (!mmc_data[0]) {
623                 pr_err("%s fails: Incomplete platform data\n", __func__);
624                 return;
625         }
627         omap242x_mmc_mux(mmc_data[0]);
628         omap_mmc_add(name, 0, OMAP2_MMC1_BASE, OMAP2420_MMC_SIZE,
629                                         INT_24XX_MMC_IRQ, mmc_data[0]);
632 #endif
634 /*-------------------------------------------------------------------------*/
636 #if defined(CONFIG_HDQ_MASTER_OMAP) || defined(CONFIG_HDQ_MASTER_OMAP_MODULE)
637 #if defined(CONFIG_SOC_OMAP2430) || defined(CONFIG_SOC_OMAP3430)
638 #define OMAP_HDQ_BASE   0x480B2000
639 #endif
640 static struct resource omap_hdq_resources[] = {
641         {
642                 .start          = OMAP_HDQ_BASE,
643                 .end            = OMAP_HDQ_BASE + 0x1C,
644                 .flags          = IORESOURCE_MEM,
645         },
646         {
647                 .start          = INT_24XX_HDQ_IRQ,
648                 .flags          = IORESOURCE_IRQ,
649         },
650 };
651 static struct platform_device omap_hdq_dev = {
652         .name = "omap_hdq",
653         .id = 0,
654         .dev = {
655                 .platform_data = NULL,
656         },
657         .num_resources  = ARRAY_SIZE(omap_hdq_resources),
658         .resource       = omap_hdq_resources,
659 };
660 static inline void omap_hdq_init(void)
662         (void) platform_device_register(&omap_hdq_dev);
664 #else
665 static inline void omap_hdq_init(void) {}
666 #endif
668 /*---------------------------------------------------------------------------*/
670 #if defined(CONFIG_VIDEO_OMAP2_VOUT) || \
671         defined(CONFIG_VIDEO_OMAP2_VOUT_MODULE)
672 #if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
673 static struct resource omap_vout_resource[3 - CONFIG_FB_OMAP2_NUM_FBS] = {
674 };
675 #else
676 static struct resource omap_vout_resource[2] = {
677 };
678 #endif
680 static struct platform_device omap_vout_device = {
681         .name           = "omap_vout",
682         .num_resources  = ARRAY_SIZE(omap_vout_resource),
683         .resource       = &omap_vout_resource[0],
684         .id             = -1,
685 };
686 static void omap_init_vout(void)
688         if (platform_device_register(&omap_vout_device) < 0)
689                 printk(KERN_ERR "Unable to register OMAP-VOUT device\n");
691 #else
692 static inline void omap_init_vout(void) {}
693 #endif
695 /*-------------------------------------------------------------------------*/
697 static int __init omap2_init_devices(void)
699         /*
700          * please keep these calls, and their implementations above,
701          * in alphabetical order so they're easier to sort through.
702          */
703         omap_init_audio();
704         omap_init_mcpdm();
705         omap_init_dmic();
706         omap_init_camera();
707         omap_init_mbox();
708         omap_init_mcspi();
709         omap_init_pmu();
710         omap_hdq_init();
711         omap_init_sti();
712         omap_init_sham();
713         omap_init_aes();
714         omap_init_vout();
716         return 0;
718 arch_initcall(omap2_init_devices);
720 #if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
721 static int __init omap_init_wdt(void)
723         int id = -1;
724         struct platform_device *pdev;
725         struct omap_hwmod *oh;
726         char *oh_name = "wd_timer2";
727         char *dev_name = "omap_wdt";
729         if (!cpu_class_is_omap2())
730                 return 0;
732         oh = omap_hwmod_lookup(oh_name);
733         if (!oh) {
734                 pr_err("Could not look up wd_timer%d hwmod\n", id);
735                 return -EINVAL;
736         }
738         pdev = omap_device_build(dev_name, id, oh, NULL, 0, NULL, 0, 0);
739         WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s.\n",
740                                 dev_name, oh->name);
741         return 0;
743 subsys_initcall(omap_init_wdt);
744 #endif