blob: d428b95bd137fc38d264934215dc541a7d21e151 [file] [log] [blame]
Tony Lindgren1dbae812005-11-10 14:26:51 +00001/*
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 */
Russell King2f8163b2011-07-26 10:53:52 +010011#include <linux/gpio.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000012#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010015#include <linux/io.h>
Kevin Hilman917fa282008-12-10 17:37:17 -080016#include <linux/clk.h>
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +053017#include <linux/err.h>
Tony Lindgren26f45c22013-05-17 10:45:10 -070018#include <linux/gpio.h>
Charulatha V1a5d8192011-02-02 17:52:14 +053019#include <linux/slab.h>
Benoit Coussonad8dfac2011-08-12 13:48:47 +020020#include <linux/of.h>
Matt Porter484202f2012-09-17 16:26:11 -070021#include <linux/pinctrl/machine.h>
Felipe Balbi0f1142a2012-03-16 22:47:48 -070022#include <linux/platform_data/omap4-keypad.h>
Kishon Vijay Abraham I459bc972012-10-27 19:05:56 +053023#include <linux/platform_data/omap_ocp2scp.h>
Kishon Vijay Abraham I36273352013-02-06 18:58:48 +053024#include <linux/usb/omap_control_usb.h>
Tony Lindgren26f45c22013-05-17 10:45:10 -070025#include <linux/wl12xx.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000026
Tony Lindgren1dbae812005-11-10 14:26:51 +000027#include <asm/mach-types.h>
28#include <asm/mach/map.h>
29
Tony Lindgren45c3eb72012-11-30 08:41:50 -080030#include <linux/omap-dma.h>
Tony Lindgren2a296c82012-10-02 17:41:35 -070031
Tony Lindgrenee0839c2012-02-24 10:34:35 -080032#include "iomap.h"
Tony Lindgren2a296c82012-10-02 17:41:35 -070033#include "omap_hwmod.h"
Tony Lindgren25c7d492012-10-02 17:25:48 -070034#include "omap_device.h"
Tony Lindgren0e701562012-09-20 11:42:20 -070035#include "omap4-keypad.h"
Tony Lindgren1dbae812005-11-10 14:26:51 +000036
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -070037#include "soc.h"
38#include "common.h"
Tony Lindgren4896e392009-12-11 16:16:32 -080039#include "mux.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060040#include "control.h"
Laurent Pincharta11f6702009-12-14 08:09:07 -030041#include "devices.h"
Lokesh Vutlad5e7c862012-10-15 14:03:51 -070042#include "dma.h"
Tony Lindgren4896e392009-12-11 16:16:32 -080043
sricharan0abcf612011-02-08 14:10:45 +053044#define L3_MODULES_MAX_LEN 12
sricharana4dc6162011-03-09 16:00:29 +053045#define L3_MODULES 3
sricharan0abcf612011-02-08 14:10:45 +053046
47static int __init omap3_l3_init(void)
48{
sricharan0abcf612011-02-08 14:10:45 +053049 struct omap_hwmod *oh;
Kevin Hilman3528c582011-07-21 13:48:45 -070050 struct platform_device *pdev;
sricharan0abcf612011-02-08 14:10:45 +053051 char oh_name[L3_MODULES_MAX_LEN];
52
53 /*
54 * To avoid code running on other OMAPs in
55 * multi-omap builds
56 */
57 if (!(cpu_is_omap34xx()))
58 return -ENODEV;
59
Paul Walmsleyeeb37112012-04-13 06:34:32 -060060 snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main");
sricharan0abcf612011-02-08 14:10:45 +053061
62 oh = omap_hwmod_lookup(oh_name);
63
64 if (!oh)
65 pr_err("could not look up %s\n", oh_name);
66
Paul Walmsleyc1d1cd52013-01-26 00:48:53 -070067 pdev = omap_device_build("omap_l3_smx", 0, oh, NULL, 0);
sricharan0abcf612011-02-08 14:10:45 +053068
Kevin Hilman3528c582011-07-21 13:48:45 -070069 WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
sricharan0abcf612011-02-08 14:10:45 +053070
Kevin Hilman3528c582011-07-21 13:48:45 -070071 return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
sricharan0abcf612011-02-08 14:10:45 +053072}
Tony Lindgrenb76c8b12013-01-11 11:24:18 -080073omap_postcore_initcall(omap3_l3_init);
sricharan0abcf612011-02-08 14:10:45 +053074
sricharana4dc6162011-03-09 16:00:29 +053075static int __init omap4_l3_init(void)
76{
Paul Walmsleyeeb37112012-04-13 06:34:32 -060077 int i;
sricharana4dc6162011-03-09 16:00:29 +053078 struct omap_hwmod *oh[3];
Kevin Hilman3528c582011-07-21 13:48:45 -070079 struct platform_device *pdev;
sricharana4dc6162011-03-09 16:00:29 +053080 char oh_name[L3_MODULES_MAX_LEN];
81
Benoit Coussonad8dfac2011-08-12 13:48:47 +020082 /* If dtb is there, the devices will be created dynamically */
83 if (of_have_populated_dt())
84 return -ENODEV;
85
sricharana4dc6162011-03-09 16:00:29 +053086 /*
87 * To avoid code running on other OMAPs in
88 * multi-omap builds
89 */
R Sricharane17933c2011-11-04 15:52:59 +053090 if (!cpu_is_omap44xx() && !soc_is_omap54xx())
sricharana4dc6162011-03-09 16:00:29 +053091 return -ENODEV;
92
93 for (i = 0; i < L3_MODULES; i++) {
Paul Walmsleyeeb37112012-04-13 06:34:32 -060094 snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main_%d", i+1);
sricharana4dc6162011-03-09 16:00:29 +053095
96 oh[i] = omap_hwmod_lookup(oh_name);
97 if (!(oh[i]))
98 pr_err("could not look up %s\n", oh_name);
99 }
100
Paul Walmsleyc1d1cd52013-01-26 00:48:53 -0700101 pdev = omap_device_build_ss("omap_l3_noc", 0, oh, 3, NULL, 0);
sricharana4dc6162011-03-09 16:00:29 +0530102
Kevin Hilman3528c582011-07-21 13:48:45 -0700103 WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
sricharana4dc6162011-03-09 16:00:29 +0530104
Kevin Hilman3528c582011-07-21 13:48:45 -0700105 return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
sricharana4dc6162011-03-09 16:00:29 +0530106}
Tony Lindgrenb76c8b12013-01-11 11:24:18 -0800107omap_postcore_initcall(omap4_l3_init);
sricharana4dc6162011-03-09 16:00:29 +0530108
Tony Lindgren828c7072009-03-23 18:23:49 -0700109#if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800110
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300111static struct resource omap2cam_resources[] = {
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800112 {
Tony Lindgren828c7072009-03-23 18:23:49 -0700113 .start = OMAP24XX_CAMERA_BASE,
114 .end = OMAP24XX_CAMERA_BASE + 0xfff,
115 .flags = IORESOURCE_MEM,
116 },
117 {
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700118 .start = 24 + OMAP_INTC_START,
Tony Lindgren828c7072009-03-23 18:23:49 -0700119 .flags = IORESOURCE_IRQ,
120 }
121};
122
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300123static struct platform_device omap2cam_device = {
Tony Lindgren828c7072009-03-23 18:23:49 -0700124 .name = "omap24xxcam",
125 .id = -1,
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300126 .num_resources = ARRAY_SIZE(omap2cam_resources),
127 .resource = omap2cam_resources,
Tony Lindgren828c7072009-03-23 18:23:49 -0700128};
Laurent Pincharta11f6702009-12-14 08:09:07 -0300129#endif
Tony Lindgren828c7072009-03-23 18:23:49 -0700130
Ohad Ben-Cohen1a51a0c2012-01-11 15:28:11 +0200131#if defined(CONFIG_IOMMU_API)
132
Tony Lindgren2ab7c842012-11-02 12:24:14 -0700133#include <linux/platform_data/iommu-omap.h>
Ohad Ben-Cohen1a51a0c2012-01-11 15:28:11 +0200134
Tony Lindgren828c7072009-03-23 18:23:49 -0700135static struct resource omap3isp_resources[] = {
136 {
137 .start = OMAP3430_ISP_BASE,
138 .end = OMAP3430_ISP_END,
139 .flags = IORESOURCE_MEM,
140 },
141 {
Tony Lindgren828c7072009-03-23 18:23:49 -0700142 .start = OMAP3430_ISP_CCP2_BASE,
143 .end = OMAP3430_ISP_CCP2_END,
144 .flags = IORESOURCE_MEM,
145 },
146 {
147 .start = OMAP3430_ISP_CCDC_BASE,
148 .end = OMAP3430_ISP_CCDC_END,
149 .flags = IORESOURCE_MEM,
150 },
151 {
152 .start = OMAP3430_ISP_HIST_BASE,
153 .end = OMAP3430_ISP_HIST_END,
154 .flags = IORESOURCE_MEM,
155 },
156 {
157 .start = OMAP3430_ISP_H3A_BASE,
158 .end = OMAP3430_ISP_H3A_END,
159 .flags = IORESOURCE_MEM,
160 },
161 {
162 .start = OMAP3430_ISP_PREV_BASE,
163 .end = OMAP3430_ISP_PREV_END,
164 .flags = IORESOURCE_MEM,
165 },
166 {
167 .start = OMAP3430_ISP_RESZ_BASE,
168 .end = OMAP3430_ISP_RESZ_END,
169 .flags = IORESOURCE_MEM,
170 },
171 {
172 .start = OMAP3430_ISP_SBL_BASE,
173 .end = OMAP3430_ISP_SBL_END,
174 .flags = IORESOURCE_MEM,
175 },
176 {
Tuukka Toivonen6817a692010-02-02 11:17:33 -0300177 .start = OMAP3430_ISP_CSI2A_REGS1_BASE,
178 .end = OMAP3430_ISP_CSI2A_REGS1_END,
Tony Lindgren828c7072009-03-23 18:23:49 -0700179 .flags = IORESOURCE_MEM,
180 },
181 {
Tuukka Toivonen6817a692010-02-02 11:17:33 -0300182 .start = OMAP3430_ISP_CSIPHY2_BASE,
183 .end = OMAP3430_ISP_CSIPHY2_END,
184 .flags = IORESOURCE_MEM,
185 },
186 {
187 .start = OMAP3630_ISP_CSI2A_REGS2_BASE,
188 .end = OMAP3630_ISP_CSI2A_REGS2_END,
189 .flags = IORESOURCE_MEM,
190 },
191 {
192 .start = OMAP3630_ISP_CSI2C_REGS1_BASE,
193 .end = OMAP3630_ISP_CSI2C_REGS1_END,
194 .flags = IORESOURCE_MEM,
195 },
196 {
197 .start = OMAP3630_ISP_CSIPHY1_BASE,
198 .end = OMAP3630_ISP_CSIPHY1_END,
199 .flags = IORESOURCE_MEM,
200 },
201 {
202 .start = OMAP3630_ISP_CSI2C_REGS2_BASE,
203 .end = OMAP3630_ISP_CSI2C_REGS2_END,
Tony Lindgren828c7072009-03-23 18:23:49 -0700204 .flags = IORESOURCE_MEM,
205 },
206 {
Sakari Ailusc19d19e2012-10-14 07:31:48 -0300207 .start = OMAP343X_CTRL_BASE + OMAP343X_CONTROL_CSIRXFE,
208 .end = OMAP343X_CTRL_BASE + OMAP343X_CONTROL_CSIRXFE + 3,
209 .flags = IORESOURCE_MEM,
210 },
211 {
212 .start = OMAP343X_CTRL_BASE + OMAP3630_CONTROL_CAMERA_PHY_CTRL,
213 .end = OMAP343X_CTRL_BASE + OMAP3630_CONTROL_CAMERA_PHY_CTRL + 3,
214 .flags = IORESOURCE_MEM,
215 },
216 {
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700217 .start = 24 + OMAP_INTC_START,
Tony Lindgren828c7072009-03-23 18:23:49 -0700218 .flags = IORESOURCE_IRQ,
219 }
220};
221
222static struct platform_device omap3isp_device = {
223 .name = "omap3isp",
224 .id = -1,
225 .num_resources = ARRAY_SIZE(omap3isp_resources),
226 .resource = omap3isp_resources,
227};
228
Ohad Ben-Cohenc8eaab32011-09-23 16:44:57 +0300229static struct omap_iommu_arch_data omap3_isp_iommu = {
Omar Ramirez Luna72b15b62012-11-19 19:05:50 -0600230 .name = "mmu_isp",
Ohad Ben-Cohenc8eaab32011-09-23 16:44:57 +0300231};
232
Laurent Pincharta11f6702009-12-14 08:09:07 -0300233int omap3_init_camera(struct isp_platform_data *pdata)
Tony Lindgren828c7072009-03-23 18:23:49 -0700234{
Laurent Pincharta11f6702009-12-14 08:09:07 -0300235 omap3isp_device.dev.platform_data = pdata;
Ohad Ben-Cohenc8eaab32011-09-23 16:44:57 +0300236 omap3isp_device.dev.archdata.iommu = &omap3_isp_iommu;
237
Laurent Pincharta11f6702009-12-14 08:09:07 -0300238 return platform_device_register(&omap3isp_device);
Tony Lindgren828c7072009-03-23 18:23:49 -0700239}
Tony Lindgren828c7072009-03-23 18:23:49 -0700240
Ohad Ben-Cohen1a51a0c2012-01-11 15:28:11 +0200241#else /* !CONFIG_IOMMU_API */
242
243int omap3_init_camera(struct isp_platform_data *pdata)
244{
245 return 0;
246}
247
248#endif
249
Tony Lindgren1dbae812005-11-10 14:26:51 +0000250static inline void omap_init_camera(void)
251{
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300252#if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
253 if (cpu_is_omap24xx())
254 platform_device_register(&omap2cam_device);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000255#endif
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300256}
Tony Lindgren1dbae812005-11-10 14:26:51 +0000257
Kishon Vijay Abraham I36273352013-02-06 18:58:48 +0530258#if IS_ENABLED(CONFIG_OMAP_CONTROL_USB)
259static struct omap_control_usb_platform_data omap4_control_usb_pdata = {
260 .type = 1,
261};
262
263struct resource omap4_control_usb_res[] = {
264 {
265 .name = "control_dev_conf",
266 .start = 0x4a002300,
267 .end = 0x4a002303,
268 .flags = IORESOURCE_MEM,
269 },
270 {
271 .name = "otghs_control",
272 .start = 0x4a00233c,
273 .end = 0x4a00233f,
274 .flags = IORESOURCE_MEM,
275 },
276};
277
278static struct platform_device omap4_control_usb = {
279 .name = "omap-control-usb",
280 .id = -1,
281 .dev = {
282 .platform_data = &omap4_control_usb_pdata,
283 },
284 .num_resources = 2,
285 .resource = omap4_control_usb_res,
286};
287
288static inline void __init omap_init_control_usb(void)
289{
290 if (!cpu_is_omap44xx())
291 return;
292
293 if (platform_device_register(&omap4_control_usb))
294 pr_err("Error registering omap_control_usb device\n");
295}
296
297#else
298static inline void omap_init_control_usb(void) { }
299#endif /* CONFIG_OMAP_CONTROL_USB */
300
Syed Rafiuddin59556762010-12-27 05:51:45 +0000301int __init omap4_keyboard_init(struct omap4_keypad_platform_data
Shubhrajyoti Dattaf67df6c2011-07-05 03:38:24 -0700302 *sdp4430_keypad_data, struct omap_board_data *bdata)
Syed Rafiuddin59556762010-12-27 05:51:45 +0000303{
Kevin Hilman3528c582011-07-21 13:48:45 -0700304 struct platform_device *pdev;
Syed Rafiuddin59556762010-12-27 05:51:45 +0000305 struct omap_hwmod *oh;
306 struct omap4_keypad_platform_data *keypad_data;
307 unsigned int id = -1;
308 char *oh_name = "kbd";
309 char *name = "omap4-keypad";
310
311 oh = omap_hwmod_lookup(oh_name);
312 if (!oh) {
313 pr_err("Could not look up %s\n", oh_name);
314 return -ENODEV;
315 }
316
317 keypad_data = sdp4430_keypad_data;
318
Kevin Hilman3528c582011-07-21 13:48:45 -0700319 pdev = omap_device_build(name, id, oh, keypad_data,
Paul Walmsleyc1d1cd52013-01-26 00:48:53 -0700320 sizeof(struct omap4_keypad_platform_data));
Syed Rafiuddin59556762010-12-27 05:51:45 +0000321
Kevin Hilman3528c582011-07-21 13:48:45 -0700322 if (IS_ERR(pdev)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300323 WARN(1, "Can't build omap_device for %s:%s.\n",
Syed Rafiuddin59556762010-12-27 05:51:45 +0000324 name, oh->name);
Kevin Hilman3528c582011-07-21 13:48:45 -0700325 return PTR_ERR(pdev);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000326 }
Shubhrajyoti Dattaf67df6c2011-07-05 03:38:24 -0700327 oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000328
329 return 0;
330}
331
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700332#if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE)
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800333static inline void __init omap_init_mbox(void)
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800334{
Felipe Contreras69dbf852011-02-24 12:51:33 -0800335 struct omap_hwmod *oh;
Kevin Hilman3528c582011-07-21 13:48:45 -0700336 struct platform_device *pdev;
Felipe Contreras69dbf852011-02-24 12:51:33 -0800337
338 oh = omap_hwmod_lookup("mailbox");
339 if (!oh) {
340 pr_err("%s: unable to find hwmod\n", __func__);
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700341 return;
342 }
Felipe Contreras69dbf852011-02-24 12:51:33 -0800343
Paul Walmsleyc1d1cd52013-01-26 00:48:53 -0700344 pdev = omap_device_build("omap-mailbox", -1, oh, NULL, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700345 WARN(IS_ERR(pdev), "%s: could not build device, err %ld\n",
346 __func__, PTR_ERR(pdev));
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800347}
348#else
349static inline void omap_init_mbox(void) { }
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700350#endif /* CONFIG_OMAP_MBOX_FWK */
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800351
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100352static inline void omap_init_sti(void) {}
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100353
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000354#if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
355
356static struct platform_device omap_pcm = {
357 .name = "omap-pcm-audio",
358 .id = -1,
359};
360
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000361static void omap_init_audio(void)
362{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000363 platform_device_register(&omap_pcm);
364}
365
366#else
367static inline void omap_init_audio(void) {}
368#endif
369
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600370#if defined(CONFIG_SND_OMAP_SOC_MCPDM) || \
371 defined(CONFIG_SND_OMAP_SOC_MCPDM_MODULE)
372
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800373static void __init omap_init_mcpdm(void)
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600374{
375 struct omap_hwmod *oh;
Peter Ujfalusi927dbbb2011-11-03 10:41:22 +0200376 struct platform_device *pdev;
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600377
378 oh = omap_hwmod_lookup("mcpdm");
379 if (!oh) {
380 printk(KERN_ERR "Could not look up mcpdm hw_mod\n");
381 return;
382 }
383
Paul Walmsleyc1d1cd52013-01-26 00:48:53 -0700384 pdev = omap_device_build("omap-mcpdm", -1, oh, NULL, 0);
Peter Ujfalusi927dbbb2011-11-03 10:41:22 +0200385 WARN(IS_ERR(pdev), "Can't build omap_device for omap-mcpdm.\n");
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600386}
387#else
388static inline void omap_init_mcpdm(void) {}
389#endif
390
Peter Ujfaluside9eb092011-12-13 10:48:54 -0800391#if defined(CONFIG_SND_OMAP_SOC_DMIC) || \
392 defined(CONFIG_SND_OMAP_SOC_DMIC_MODULE)
393
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800394static void __init omap_init_dmic(void)
Peter Ujfaluside9eb092011-12-13 10:48:54 -0800395{
396 struct omap_hwmod *oh;
397 struct platform_device *pdev;
398
399 oh = omap_hwmod_lookup("dmic");
400 if (!oh) {
Sebastien Guiriec49c58e82012-10-16 11:19:17 -0700401 pr_err("Could not look up dmic hw_mod\n");
Peter Ujfaluside9eb092011-12-13 10:48:54 -0800402 return;
403 }
404
Paul Walmsleyc1d1cd52013-01-26 00:48:53 -0700405 pdev = omap_device_build("omap-dmic", -1, oh, NULL, 0);
Peter Ujfaluside9eb092011-12-13 10:48:54 -0800406 WARN(IS_ERR(pdev), "Can't build omap_device for omap-dmic.\n");
407}
408#else
409static inline void omap_init_dmic(void) {}
410#endif
411
Ricardo Neri5eeec212012-05-09 14:19:14 -0700412#if defined(CONFIG_SND_OMAP_SOC_OMAP_HDMI) || \
413 defined(CONFIG_SND_OMAP_SOC_OMAP_HDMI_MODULE)
414
415static struct platform_device omap_hdmi_audio = {
416 .name = "omap-hdmi-audio",
417 .id = -1,
418};
419
420static void __init omap_init_hdmi_audio(void)
421{
422 struct omap_hwmod *oh;
423 struct platform_device *pdev;
424
425 oh = omap_hwmod_lookup("dss_hdmi");
426 if (!oh) {
427 printk(KERN_ERR "Could not look up dss_hdmi hw_mod\n");
428 return;
429 }
430
Paul Walmsley6efc3fe2013-02-12 03:58:35 +0000431 pdev = omap_device_build("omap-hdmi-audio-dai", -1, oh, NULL, 0);
Ricardo Neri5eeec212012-05-09 14:19:14 -0700432 WARN(IS_ERR(pdev),
433 "Can't build omap_device for omap-hdmi-audio-dai.\n");
434
435 platform_device_register(&omap_hdmi_audio);
436}
437#else
438static inline void omap_init_hdmi_audio(void) {}
439#endif
440
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300441#if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700442
Arnd Bergmann22037472012-08-24 15:21:06 +0200443#include <linux/platform_data/spi-omap2-mcspi.h>
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700444
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800445static int __init omap_mcspi_init(struct omap_hwmod *oh, void *unused)
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700446{
Kevin Hilman3528c582011-07-21 13:48:45 -0700447 struct platform_device *pdev;
Charulatha V1a5d8192011-02-02 17:52:14 +0530448 char *name = "omap2_mcspi";
449 struct omap2_mcspi_platform_config *pdata;
450 static int spi_num;
451 struct omap2_mcspi_dev_attr *mcspi_attrib = oh->dev_attr;
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700452
Charulatha V1a5d8192011-02-02 17:52:14 +0530453 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
454 if (!pdata) {
455 pr_err("Memory allocation for McSPI device failed\n");
456 return -ENOMEM;
457 }
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700458
Charulatha V1a5d8192011-02-02 17:52:14 +0530459 pdata->num_cs = mcspi_attrib->num_chipselect;
460 switch (oh->class->rev) {
461 case OMAP2_MCSPI_REV:
462 case OMAP3_MCSPI_REV:
463 pdata->regs_offset = 0;
464 break;
465 case OMAP4_MCSPI_REV:
466 pdata->regs_offset = OMAP4_MCSPI_REG_OFFSET;
467 break;
468 default:
469 pr_err("Invalid McSPI Revision value\n");
Julia Lawalle0feca892011-12-23 18:39:31 +0100470 kfree(pdata);
Charulatha V1a5d8192011-02-02 17:52:14 +0530471 return -EINVAL;
472 }
473
474 spi_num++;
Paul Walmsleyc1d1cd52013-01-26 00:48:53 -0700475 pdev = omap_device_build(name, spi_num, oh, pdata, sizeof(*pdata));
Kevin Hilman3528c582011-07-21 13:48:45 -0700476 WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s\n",
Charulatha V1a5d8192011-02-02 17:52:14 +0530477 name, oh->name);
478 kfree(pdata);
479 return 0;
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700480}
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700481
482static void omap_init_mcspi(void)
483{
Charulatha V1a5d8192011-02-02 17:52:14 +0530484 omap_hwmod_for_each_by_class("mcspi", omap_mcspi_init, NULL);
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700485}
486
487#else
488static inline void omap_init_mcspi(void) {}
489#endif
490
Paul Walmsley4848d462012-09-23 17:28:27 -0600491/**
492 * omap_init_rng - bind the RNG hwmod to the RNG omap_device
493 *
494 * Bind the RNG hwmod to the RNG omap_device. No return value.
495 */
496static void omap_init_rng(void)
497{
498 struct omap_hwmod *oh;
499 struct platform_device *pdev;
500
501 oh = omap_hwmod_lookup("rng");
502 if (!oh)
503 return;
504
Paul Walmsleyc1d1cd52013-01-26 00:48:53 -0700505 pdev = omap_device_build("omap_rng", -1, oh, NULL, 0);
Paul Walmsley4848d462012-09-23 17:28:27 -0600506 WARN(IS_ERR(pdev), "Can't build omap_device for omap_rng\n");
507}
Will Deacon88341332010-04-09 13:54:43 +0100508
Mark A. Greer26f88e62013-03-18 10:06:32 -0600509static void __init omap_init_sham(void)
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300510{
Mark A. Greer8c7bb572013-03-18 10:06:33 -0600511 struct omap_hwmod *oh;
512 struct platform_device *pdev;
Mark A. Greere569e992013-03-30 15:49:19 -0600513
Mark A. Greer8c7bb572013-03-18 10:06:33 -0600514 oh = omap_hwmod_lookup("sham");
515 if (!oh)
516 return;
Mark A. Greere569e992013-03-30 15:49:19 -0600517
Mark A. Greer8c7bb572013-03-18 10:06:33 -0600518 pdev = omap_device_build("omap-sham", -1, oh, NULL, 0);
519 WARN(IS_ERR(pdev), "Can't build omap_device for omap-sham\n");
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300520}
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300521
Mark A. Greer14ae5562012-12-21 09:28:10 -0700522static void __init omap_init_aes(void)
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800523{
Mark A. Greer77e2fd82012-12-21 09:28:11 -0700524 struct omap_hwmod *oh;
525 struct platform_device *pdev;
Mark A. Greer660ffd62012-12-21 09:28:09 -0700526
Mark A. Greer77e2fd82012-12-21 09:28:11 -0700527 oh = omap_hwmod_lookup("aes");
528 if (!oh)
529 return;
Mark A. Greer660ffd62012-12-21 09:28:09 -0700530
Mark A. Greer77e2fd82012-12-21 09:28:11 -0700531 pdev = omap_device_build("omap-aes", -1, oh, NULL, 0);
532 WARN(IS_ERR(pdev), "Can't build omap_device for omap-aes\n");
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800533}
534
Tony Lindgrend8874662008-12-10 17:37:16 -0800535/*-------------------------------------------------------------------------*/
536
Vaibhav Hiremathb2273582010-05-10 14:29:14 -0700537#if defined(CONFIG_VIDEO_OMAP2_VOUT) || \
538 defined(CONFIG_VIDEO_OMAP2_VOUT_MODULE)
539#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
540static struct resource omap_vout_resource[3 - CONFIG_FB_OMAP2_NUM_FBS] = {
541};
542#else
543static struct resource omap_vout_resource[2] = {
544};
545#endif
546
547static struct platform_device omap_vout_device = {
548 .name = "omap_vout",
549 .num_resources = ARRAY_SIZE(omap_vout_resource),
550 .resource = &omap_vout_resource[0],
551 .id = -1,
552};
553static void omap_init_vout(void)
554{
555 if (platform_device_register(&omap_vout_device) < 0)
556 printk(KERN_ERR "Unable to register OMAP-VOUT device\n");
557}
558#else
559static inline void omap_init_vout(void) {}
560#endif
561
Kishon Vijay Abraham I459bc972012-10-27 19:05:56 +0530562#if defined(CONFIG_OMAP_OCP2SCP) || defined(CONFIG_OMAP_OCP2SCP_MODULE)
563static int count_ocp2scp_devices(struct omap_ocp2scp_dev *ocp2scp_dev)
564{
565 int cnt = 0;
566
567 while (ocp2scp_dev->drv_name != NULL) {
568 cnt++;
569 ocp2scp_dev++;
570 }
571
572 return cnt;
573}
574
Tony Lindgrene407ee02013-01-21 10:17:03 -0800575static void __init omap_init_ocp2scp(void)
Kishon Vijay Abraham I459bc972012-10-27 19:05:56 +0530576{
577 struct omap_hwmod *oh;
578 struct platform_device *pdev;
579 int bus_id = -1, dev_cnt = 0, i;
580 struct omap_ocp2scp_dev *ocp2scp_dev;
581 const char *oh_name, *name;
582 struct omap_ocp2scp_platform_data *pdata;
583
584 if (!cpu_is_omap44xx())
585 return;
586
587 oh_name = "ocp2scp_usb_phy";
588 name = "omap-ocp2scp";
589
590 oh = omap_hwmod_lookup(oh_name);
591 if (!oh) {
592 pr_err("%s: could not find omap_hwmod for %s\n", __func__,
593 oh_name);
594 return;
595 }
596
597 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
598 if (!pdata) {
599 pr_err("%s: No memory for ocp2scp pdata\n", __func__);
600 return;
601 }
602
603 ocp2scp_dev = oh->dev_attr;
604 dev_cnt = count_ocp2scp_devices(ocp2scp_dev);
605
606 if (!dev_cnt) {
607 pr_err("%s: No devices connected to ocp2scp\n", __func__);
608 kfree(pdata);
609 return;
610 }
611
612 pdata->devices = kzalloc(sizeof(struct omap_ocp2scp_dev *)
613 * dev_cnt, GFP_KERNEL);
614 if (!pdata->devices) {
615 pr_err("%s: No memory for ocp2scp pdata devices\n", __func__);
616 kfree(pdata);
617 return;
618 }
619
620 for (i = 0; i < dev_cnt; i++, ocp2scp_dev++)
621 pdata->devices[i] = ocp2scp_dev;
622
623 pdata->dev_cnt = dev_cnt;
624
Paul Walmsleyc1d1cd52013-01-26 00:48:53 -0700625 pdev = omap_device_build(name, bus_id, oh, pdata, sizeof(*pdata));
Kishon Vijay Abraham I459bc972012-10-27 19:05:56 +0530626 if (IS_ERR(pdev)) {
627 pr_err("Could not build omap_device for %s %s\n",
628 name, oh_name);
629 kfree(pdata->devices);
630 kfree(pdata);
631 return;
632 }
633}
634#else
635static inline void omap_init_ocp2scp(void) { }
636#endif
637
Tony Lindgren26f45c22013-05-17 10:45:10 -0700638#if IS_ENABLED(CONFIG_WL12XX)
639
640static struct wl12xx_platform_data wl12xx __initdata;
641
642void __init omap_init_wl12xx_of(void)
643{
644 int ret;
645
646 if (!of_have_populated_dt())
647 return;
648
649 if (of_machine_is_compatible("ti,omap4-sdp")) {
650 wl12xx.board_ref_clock = WL12XX_REFCLOCK_26;
651 wl12xx.board_tcxo_clock = WL12XX_TCXOCLOCK_26;
652 wl12xx.irq = gpio_to_irq(53);
653 } else if (of_machine_is_compatible("ti,omap4-panda")) {
654 wl12xx.board_ref_clock = WL12XX_REFCLOCK_38;
655 wl12xx.irq = gpio_to_irq(53);
656 } else {
657 return;
658 }
659
660 ret = wl12xx_set_platform_data(&wl12xx);
661 if (ret) {
662 pr_err("error setting wl12xx data: %d\n", ret);
663 return;
664 }
665}
666#else
667static inline void omap_init_wl12xx_of(void)
668{
669}
670#endif
671
Tony Lindgren1dbae812005-11-10 14:26:51 +0000672/*-------------------------------------------------------------------------*/
673
674static int __init omap2_init_devices(void)
675{
Matt Porter484202f2012-09-17 16:26:11 -0700676 /* Enable dummy states for those platforms without pinctrl support */
677 if (!of_have_populated_dt())
678 pinctrl_provide_dummies();
679
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -0700680 /*
681 * please keep these calls, and their implementations above,
Tony Lindgren1dbae812005-11-10 14:26:51 +0000682 * in alphabetical order so they're easier to sort through.
683 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000684 omap_init_audio();
Tony Lindgren828c7072009-03-23 18:23:49 -0700685 omap_init_camera();
Ricardo Neri5eeec212012-05-09 14:19:14 -0700686 omap_init_hdmi_audio();
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800687 omap_init_mbox();
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100688 /* If dtb is there, the devices will be created dynamically */
Peter Ujfalusi259bd6c2012-05-02 15:23:18 +0300689 if (!of_have_populated_dt()) {
Kishon Vijay Abraham I36273352013-02-06 18:58:48 +0530690 omap_init_control_usb();
Peter Ujfalusi259bd6c2012-05-02 15:23:18 +0300691 omap_init_dmic();
Peter Ujfalusi4b21ffc2012-05-02 15:23:19 +0300692 omap_init_mcpdm();
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100693 omap_init_mcspi();
Mark A. Greer114d7a82013-03-18 10:06:33 -0600694 omap_init_sham();
Mark A. Greer53335ac2012-12-21 09:28:12 -0700695 omap_init_aes();
Tony Lindgren26f45c22013-05-17 10:45:10 -0700696 } else {
697 /* These can be removed when bindings are done */
698 omap_init_wl12xx_of();
Peter Ujfalusi259bd6c2012-05-02 15:23:18 +0300699 }
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100700 omap_init_sti();
Paul Walmsley4848d462012-09-23 17:28:27 -0600701 omap_init_rng();
Vaibhav Hiremathb2273582010-05-10 14:29:14 -0700702 omap_init_vout();
Kishon Vijay Abraham I459bc972012-10-27 19:05:56 +0530703 omap_init_ocp2scp();
Tony Lindgren1dbae812005-11-10 14:26:51 +0000704
705 return 0;
706}
Tony Lindgrenb76c8b12013-01-11 11:24:18 -0800707omap_arch_initcall(omap2_init_devices);