2 * linux/arch/arm/mach-omap2/devices.c
4 * OMAP2 platform device setup/initialization
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.
11 #include <linux/gpio.h>
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/platform_device.h>
16 #include <linux/clk.h>
17 #include <linux/err.h>
18 #include <linux/slab.h>
20 #include <linux/pinctrl/machine.h>
21 #include <linux/platform_data/mailbox-omap.h>
23 #include <asm/mach-types.h>
24 #include <asm/mach/map.h>
26 #include <linux/omap-dma.h>
29 #include "omap_hwmod.h"
30 #include "omap_device.h"
38 #define L3_MODULES_MAX_LEN 12
41 static int __init omap3_l3_init(void)
43 struct omap_hwmod *oh;
44 struct platform_device *pdev;
45 char oh_name[L3_MODULES_MAX_LEN];
48 * To avoid code running on other OMAPs in
51 if (!(cpu_is_omap34xx()) || of_have_populated_dt())
54 snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main");
56 oh = omap_hwmod_lookup(oh_name);
59 pr_err("could not look up %s\n", oh_name);
61 pdev = omap_device_build("omap_l3_smx", 0, oh, NULL, 0);
63 WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
65 return PTR_ERR_OR_ZERO(pdev);
67 omap_postcore_initcall(omap3_l3_init);
69 #if defined(CONFIG_OMAP2PLUS_MBOX) || defined(CONFIG_OMAP2PLUS_MBOX_MODULE)
70 static inline void __init omap_init_mbox(void)
72 struct omap_hwmod *oh;
73 struct platform_device *pdev;
74 struct omap_mbox_pdata *pdata;
76 oh = omap_hwmod_lookup("mailbox");
78 pr_err("%s: unable to find hwmod\n", __func__);
82 pr_err("%s: hwmod doesn't have valid attrs\n", __func__);
86 pdata = (struct omap_mbox_pdata *)oh->dev_attr;
87 pdev = omap_device_build("omap-mailbox", -1, oh, pdata, sizeof(*pdata));
88 WARN(IS_ERR(pdev), "%s: could not build device, err %ld\n",
89 __func__, PTR_ERR(pdev));
92 static inline void omap_init_mbox(void) { }
93 #endif /* CONFIG_OMAP2PLUS_MBOX */
95 static inline void omap_init_sti(void) {}
97 #if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
99 static struct platform_device omap_pcm = {
100 .name = "omap-pcm-audio",
104 static void omap_init_audio(void)
106 platform_device_register(&omap_pcm);
110 static inline void omap_init_audio(void) {}
113 #if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
115 #include <linux/platform_data/spi-omap2-mcspi.h>
117 static int __init omap_mcspi_init(struct omap_hwmod *oh, void *unused)
119 struct platform_device *pdev;
120 char *name = "omap2_mcspi";
121 struct omap2_mcspi_platform_config *pdata;
123 struct omap2_mcspi_dev_attr *mcspi_attrib = oh->dev_attr;
125 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
127 pr_err("Memory allocation for McSPI device failed\n");
131 pdata->num_cs = mcspi_attrib->num_chipselect;
132 switch (oh->class->rev) {
133 case OMAP2_MCSPI_REV:
134 case OMAP3_MCSPI_REV:
135 pdata->regs_offset = 0;
137 case OMAP4_MCSPI_REV:
138 pdata->regs_offset = OMAP4_MCSPI_REG_OFFSET;
141 pr_err("Invalid McSPI Revision value\n");
147 pdev = omap_device_build(name, spi_num, oh, pdata, sizeof(*pdata));
148 WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s\n",
154 static void omap_init_mcspi(void)
156 omap_hwmod_for_each_by_class("mcspi", omap_mcspi_init, NULL);
160 static inline void omap_init_mcspi(void) {}
164 * omap_init_rng - bind the RNG hwmod to the RNG omap_device
166 * Bind the RNG hwmod to the RNG omap_device. No return value.
168 static void omap_init_rng(void)
170 struct omap_hwmod *oh;
171 struct platform_device *pdev;
173 oh = omap_hwmod_lookup("rng");
177 pdev = omap_device_build("omap_rng", -1, oh, NULL, 0);
178 WARN(IS_ERR(pdev), "Can't build omap_device for omap_rng\n");
181 static void __init omap_init_sham(void)
183 struct omap_hwmod *oh;
184 struct platform_device *pdev;
186 oh = omap_hwmod_lookup("sham");
190 pdev = omap_device_build("omap-sham", -1, oh, NULL, 0);
191 WARN(IS_ERR(pdev), "Can't build omap_device for omap-sham\n");
194 static void __init omap_init_aes(void)
196 struct omap_hwmod *oh;
197 struct platform_device *pdev;
199 oh = omap_hwmod_lookup("aes");
203 pdev = omap_device_build("omap-aes", -1, oh, NULL, 0);
204 WARN(IS_ERR(pdev), "Can't build omap_device for omap-aes\n");
207 /*-------------------------------------------------------------------------*/
209 #if defined(CONFIG_VIDEO_OMAP2_VOUT) || \
210 defined(CONFIG_VIDEO_OMAP2_VOUT_MODULE)
211 #if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
212 static struct resource omap_vout_resource[3 - CONFIG_FB_OMAP2_NUM_FBS] = {
215 static struct resource omap_vout_resource[2] = {
219 static struct platform_device omap_vout_device = {
221 .num_resources = ARRAY_SIZE(omap_vout_resource),
222 .resource = &omap_vout_resource[0],
226 int __init omap_init_vout(void)
228 return platform_device_register(&omap_vout_device);
231 int __init omap_init_vout(void) { return 0; }
234 /*-------------------------------------------------------------------------*/
236 static int __init omap2_init_devices(void)
238 /* Enable dummy states for those platforms without pinctrl support */
239 if (!of_have_populated_dt())
240 pinctrl_provide_dummies();
243 * please keep these calls, and their implementations above,
244 * in alphabetical order so they're easier to sort through.
247 /* If dtb is there, the devices will be created dynamically */
248 if (!of_have_populated_dt()) {
259 omap_arch_initcall(omap2_init_devices);
261 static int __init omap_gpmc_init(void)
263 struct omap_hwmod *oh;
264 struct platform_device *pdev;
265 char *oh_name = "gpmc";
268 * if the board boots up with a populated DT, do not
269 * manually add the device from this initcall
271 if (of_have_populated_dt())
274 oh = omap_hwmod_lookup(oh_name);
276 pr_err("Could not look up %s\n", oh_name);
280 pdev = omap_device_build("omap-gpmc", -1, oh, NULL, 0);
281 WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
283 return PTR_ERR_OR_ZERO(pdev);
285 omap_postcore_initcall(omap_gpmc_init);