blob: 626f3ea3142f55dfd0bcd5337a9758eab5d0cf71 [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>
Charulatha V1a5d8192011-02-02 17:52:14 +053018#include <linux/slab.h>
Benoit Coussonad8dfac2011-08-12 13:48:47 +020019#include <linux/of.h>
Matt Porter484202f2012-09-17 16:26:11 -070020#include <linux/pinctrl/machine.h>
Felipe Balbi0f1142a2012-03-16 22:47:48 -070021#include <linux/platform_data/omap4-keypad.h>
Kishon Vijay Abraham I459bc972012-10-27 19:05:56 +053022#include <linux/platform_data/omap_ocp2scp.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000023
Tony Lindgren1dbae812005-11-10 14:26:51 +000024#include <asm/mach-types.h>
25#include <asm/mach/map.h>
26
Tony Lindgren45c3eb72012-11-30 08:41:50 -080027#include <linux/omap-dma.h>
Tony Lindgren2a296c82012-10-02 17:41:35 -070028
Tony Lindgrenee0839c2012-02-24 10:34:35 -080029#include "iomap.h"
Tony Lindgren2a296c82012-10-02 17:41:35 -070030#include "omap_hwmod.h"
Tony Lindgren25c7d492012-10-02 17:25:48 -070031#include "omap_device.h"
Tony Lindgren0e701562012-09-20 11:42:20 -070032#include "omap4-keypad.h"
Tony Lindgren1dbae812005-11-10 14:26:51 +000033
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -070034#include "soc.h"
35#include "common.h"
Tony Lindgren4896e392009-12-11 16:16:32 -080036#include "mux.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060037#include "control.h"
Laurent Pincharta11f6702009-12-14 08:09:07 -030038#include "devices.h"
Lokesh Vutlad5e7c862012-10-15 14:03:51 -070039#include "dma.h"
Tony Lindgren4896e392009-12-11 16:16:32 -080040
sricharan0abcf612011-02-08 14:10:45 +053041#define L3_MODULES_MAX_LEN 12
sricharana4dc6162011-03-09 16:00:29 +053042#define L3_MODULES 3
sricharan0abcf612011-02-08 14:10:45 +053043
44static int __init omap3_l3_init(void)
45{
sricharan0abcf612011-02-08 14:10:45 +053046 struct omap_hwmod *oh;
Kevin Hilman3528c582011-07-21 13:48:45 -070047 struct platform_device *pdev;
sricharan0abcf612011-02-08 14:10:45 +053048 char oh_name[L3_MODULES_MAX_LEN];
49
50 /*
51 * To avoid code running on other OMAPs in
52 * multi-omap builds
53 */
54 if (!(cpu_is_omap34xx()))
55 return -ENODEV;
56
Paul Walmsleyeeb37112012-04-13 06:34:32 -060057 snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main");
sricharan0abcf612011-02-08 14:10:45 +053058
59 oh = omap_hwmod_lookup(oh_name);
60
61 if (!oh)
62 pr_err("could not look up %s\n", oh_name);
63
Kevin Hilman3528c582011-07-21 13:48:45 -070064 pdev = omap_device_build("omap_l3_smx", 0, oh, NULL, 0,
sricharan0abcf612011-02-08 14:10:45 +053065 NULL, 0, 0);
66
Kevin Hilman3528c582011-07-21 13:48:45 -070067 WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
sricharan0abcf612011-02-08 14:10:45 +053068
Kevin Hilman3528c582011-07-21 13:48:45 -070069 return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
sricharan0abcf612011-02-08 14:10:45 +053070}
71postcore_initcall(omap3_l3_init);
72
sricharana4dc6162011-03-09 16:00:29 +053073static int __init omap4_l3_init(void)
74{
Paul Walmsleyeeb37112012-04-13 06:34:32 -060075 int i;
sricharana4dc6162011-03-09 16:00:29 +053076 struct omap_hwmod *oh[3];
Kevin Hilman3528c582011-07-21 13:48:45 -070077 struct platform_device *pdev;
sricharana4dc6162011-03-09 16:00:29 +053078 char oh_name[L3_MODULES_MAX_LEN];
79
Benoit Coussonad8dfac2011-08-12 13:48:47 +020080 /* If dtb is there, the devices will be created dynamically */
81 if (of_have_populated_dt())
82 return -ENODEV;
83
sricharana4dc6162011-03-09 16:00:29 +053084 /*
85 * To avoid code running on other OMAPs in
86 * multi-omap builds
87 */
R Sricharane17933c2011-11-04 15:52:59 +053088 if (!cpu_is_omap44xx() && !soc_is_omap54xx())
sricharana4dc6162011-03-09 16:00:29 +053089 return -ENODEV;
90
91 for (i = 0; i < L3_MODULES; i++) {
Paul Walmsleyeeb37112012-04-13 06:34:32 -060092 snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main_%d", i+1);
sricharana4dc6162011-03-09 16:00:29 +053093
94 oh[i] = omap_hwmod_lookup(oh_name);
95 if (!(oh[i]))
96 pr_err("could not look up %s\n", oh_name);
97 }
98
Kevin Hilman3528c582011-07-21 13:48:45 -070099 pdev = omap_device_build_ss("omap_l3_noc", 0, oh, 3, NULL,
sricharana4dc6162011-03-09 16:00:29 +0530100 0, NULL, 0, 0);
101
Kevin Hilman3528c582011-07-21 13:48:45 -0700102 WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
sricharana4dc6162011-03-09 16:00:29 +0530103
Kevin Hilman3528c582011-07-21 13:48:45 -0700104 return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
sricharana4dc6162011-03-09 16:00:29 +0530105}
106postcore_initcall(omap4_l3_init);
107
Tony Lindgren828c7072009-03-23 18:23:49 -0700108#if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800109
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300110static struct resource omap2cam_resources[] = {
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800111 {
Tony Lindgren828c7072009-03-23 18:23:49 -0700112 .start = OMAP24XX_CAMERA_BASE,
113 .end = OMAP24XX_CAMERA_BASE + 0xfff,
114 .flags = IORESOURCE_MEM,
115 },
116 {
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700117 .start = 24 + OMAP_INTC_START,
Tony Lindgren828c7072009-03-23 18:23:49 -0700118 .flags = IORESOURCE_IRQ,
119 }
120};
121
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300122static struct platform_device omap2cam_device = {
Tony Lindgren828c7072009-03-23 18:23:49 -0700123 .name = "omap24xxcam",
124 .id = -1,
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300125 .num_resources = ARRAY_SIZE(omap2cam_resources),
126 .resource = omap2cam_resources,
Tony Lindgren828c7072009-03-23 18:23:49 -0700127};
Laurent Pincharta11f6702009-12-14 08:09:07 -0300128#endif
Tony Lindgren828c7072009-03-23 18:23:49 -0700129
Ohad Ben-Cohen1a51a0c2012-01-11 15:28:11 +0200130#if defined(CONFIG_IOMMU_API)
131
Tony Lindgren2ab7c842012-11-02 12:24:14 -0700132#include <linux/platform_data/iommu-omap.h>
Ohad Ben-Cohen1a51a0c2012-01-11 15:28:11 +0200133
Tony Lindgren828c7072009-03-23 18:23:49 -0700134static struct resource omap3isp_resources[] = {
135 {
136 .start = OMAP3430_ISP_BASE,
137 .end = OMAP3430_ISP_END,
138 .flags = IORESOURCE_MEM,
139 },
140 {
Tony Lindgren828c7072009-03-23 18:23:49 -0700141 .start = OMAP3430_ISP_CCP2_BASE,
142 .end = OMAP3430_ISP_CCP2_END,
143 .flags = IORESOURCE_MEM,
144 },
145 {
146 .start = OMAP3430_ISP_CCDC_BASE,
147 .end = OMAP3430_ISP_CCDC_END,
148 .flags = IORESOURCE_MEM,
149 },
150 {
151 .start = OMAP3430_ISP_HIST_BASE,
152 .end = OMAP3430_ISP_HIST_END,
153 .flags = IORESOURCE_MEM,
154 },
155 {
156 .start = OMAP3430_ISP_H3A_BASE,
157 .end = OMAP3430_ISP_H3A_END,
158 .flags = IORESOURCE_MEM,
159 },
160 {
161 .start = OMAP3430_ISP_PREV_BASE,
162 .end = OMAP3430_ISP_PREV_END,
163 .flags = IORESOURCE_MEM,
164 },
165 {
166 .start = OMAP3430_ISP_RESZ_BASE,
167 .end = OMAP3430_ISP_RESZ_END,
168 .flags = IORESOURCE_MEM,
169 },
170 {
171 .start = OMAP3430_ISP_SBL_BASE,
172 .end = OMAP3430_ISP_SBL_END,
173 .flags = IORESOURCE_MEM,
174 },
175 {
Tuukka Toivonen6817a692010-02-02 11:17:33 -0300176 .start = OMAP3430_ISP_CSI2A_REGS1_BASE,
177 .end = OMAP3430_ISP_CSI2A_REGS1_END,
Tony Lindgren828c7072009-03-23 18:23:49 -0700178 .flags = IORESOURCE_MEM,
179 },
180 {
Tuukka Toivonen6817a692010-02-02 11:17:33 -0300181 .start = OMAP3430_ISP_CSIPHY2_BASE,
182 .end = OMAP3430_ISP_CSIPHY2_END,
183 .flags = IORESOURCE_MEM,
184 },
185 {
186 .start = OMAP3630_ISP_CSI2A_REGS2_BASE,
187 .end = OMAP3630_ISP_CSI2A_REGS2_END,
188 .flags = IORESOURCE_MEM,
189 },
190 {
191 .start = OMAP3630_ISP_CSI2C_REGS1_BASE,
192 .end = OMAP3630_ISP_CSI2C_REGS1_END,
193 .flags = IORESOURCE_MEM,
194 },
195 {
196 .start = OMAP3630_ISP_CSIPHY1_BASE,
197 .end = OMAP3630_ISP_CSIPHY1_END,
198 .flags = IORESOURCE_MEM,
199 },
200 {
201 .start = OMAP3630_ISP_CSI2C_REGS2_BASE,
202 .end = OMAP3630_ISP_CSI2C_REGS2_END,
Tony Lindgren828c7072009-03-23 18:23:49 -0700203 .flags = IORESOURCE_MEM,
204 },
205 {
Sakari Ailusc19d19e2012-10-14 07:31:48 -0300206 .start = OMAP343X_CTRL_BASE + OMAP343X_CONTROL_CSIRXFE,
207 .end = OMAP343X_CTRL_BASE + OMAP343X_CONTROL_CSIRXFE + 3,
208 .flags = IORESOURCE_MEM,
209 },
210 {
211 .start = OMAP343X_CTRL_BASE + OMAP3630_CONTROL_CAMERA_PHY_CTRL,
212 .end = OMAP343X_CTRL_BASE + OMAP3630_CONTROL_CAMERA_PHY_CTRL + 3,
213 .flags = IORESOURCE_MEM,
214 },
215 {
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700216 .start = 24 + OMAP_INTC_START,
Tony Lindgren828c7072009-03-23 18:23:49 -0700217 .flags = IORESOURCE_IRQ,
218 }
219};
220
221static struct platform_device omap3isp_device = {
222 .name = "omap3isp",
223 .id = -1,
224 .num_resources = ARRAY_SIZE(omap3isp_resources),
225 .resource = omap3isp_resources,
226};
227
Ohad Ben-Cohenc8eaab32011-09-23 16:44:57 +0300228static struct omap_iommu_arch_data omap3_isp_iommu = {
Omar Ramirez Luna72b15b62012-11-19 19:05:50 -0600229 .name = "mmu_isp",
Ohad Ben-Cohenc8eaab32011-09-23 16:44:57 +0300230};
231
Laurent Pincharta11f6702009-12-14 08:09:07 -0300232int omap3_init_camera(struct isp_platform_data *pdata)
Tony Lindgren828c7072009-03-23 18:23:49 -0700233{
Laurent Pincharta11f6702009-12-14 08:09:07 -0300234 omap3isp_device.dev.platform_data = pdata;
Ohad Ben-Cohenc8eaab32011-09-23 16:44:57 +0300235 omap3isp_device.dev.archdata.iommu = &omap3_isp_iommu;
236
Laurent Pincharta11f6702009-12-14 08:09:07 -0300237 return platform_device_register(&omap3isp_device);
Tony Lindgren828c7072009-03-23 18:23:49 -0700238}
Tony Lindgren828c7072009-03-23 18:23:49 -0700239
Ohad Ben-Cohen1a51a0c2012-01-11 15:28:11 +0200240#else /* !CONFIG_IOMMU_API */
241
242int omap3_init_camera(struct isp_platform_data *pdata)
243{
244 return 0;
245}
246
247#endif
248
Tony Lindgren1dbae812005-11-10 14:26:51 +0000249static inline void omap_init_camera(void)
250{
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300251#if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
252 if (cpu_is_omap24xx())
253 platform_device_register(&omap2cam_device);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000254#endif
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300255}
Tony Lindgren1dbae812005-11-10 14:26:51 +0000256
Syed Rafiuddin59556762010-12-27 05:51:45 +0000257int __init omap4_keyboard_init(struct omap4_keypad_platform_data
Shubhrajyoti Dattaf67df6c2011-07-05 03:38:24 -0700258 *sdp4430_keypad_data, struct omap_board_data *bdata)
Syed Rafiuddin59556762010-12-27 05:51:45 +0000259{
Kevin Hilman3528c582011-07-21 13:48:45 -0700260 struct platform_device *pdev;
Syed Rafiuddin59556762010-12-27 05:51:45 +0000261 struct omap_hwmod *oh;
262 struct omap4_keypad_platform_data *keypad_data;
263 unsigned int id = -1;
264 char *oh_name = "kbd";
265 char *name = "omap4-keypad";
266
267 oh = omap_hwmod_lookup(oh_name);
268 if (!oh) {
269 pr_err("Could not look up %s\n", oh_name);
270 return -ENODEV;
271 }
272
273 keypad_data = sdp4430_keypad_data;
274
Kevin Hilman3528c582011-07-21 13:48:45 -0700275 pdev = omap_device_build(name, id, oh, keypad_data,
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200276 sizeof(struct omap4_keypad_platform_data), NULL, 0, 0);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000277
Kevin Hilman3528c582011-07-21 13:48:45 -0700278 if (IS_ERR(pdev)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300279 WARN(1, "Can't build omap_device for %s:%s.\n",
Syed Rafiuddin59556762010-12-27 05:51:45 +0000280 name, oh->name);
Kevin Hilman3528c582011-07-21 13:48:45 -0700281 return PTR_ERR(pdev);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000282 }
Shubhrajyoti Dattaf67df6c2011-07-05 03:38:24 -0700283 oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000284
285 return 0;
286}
287
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700288#if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE)
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800289static inline void __init omap_init_mbox(void)
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800290{
Felipe Contreras69dbf852011-02-24 12:51:33 -0800291 struct omap_hwmod *oh;
Kevin Hilman3528c582011-07-21 13:48:45 -0700292 struct platform_device *pdev;
Felipe Contreras69dbf852011-02-24 12:51:33 -0800293
294 oh = omap_hwmod_lookup("mailbox");
295 if (!oh) {
296 pr_err("%s: unable to find hwmod\n", __func__);
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700297 return;
298 }
Felipe Contreras69dbf852011-02-24 12:51:33 -0800299
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200300 pdev = omap_device_build("omap-mailbox", -1, oh, NULL, 0, NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700301 WARN(IS_ERR(pdev), "%s: could not build device, err %ld\n",
302 __func__, PTR_ERR(pdev));
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800303}
304#else
305static inline void omap_init_mbox(void) { }
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700306#endif /* CONFIG_OMAP_MBOX_FWK */
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800307
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100308static inline void omap_init_sti(void) {}
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100309
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000310#if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
311
312static struct platform_device omap_pcm = {
313 .name = "omap-pcm-audio",
314 .id = -1,
315};
316
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000317static void omap_init_audio(void)
318{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000319 platform_device_register(&omap_pcm);
320}
321
322#else
323static inline void omap_init_audio(void) {}
324#endif
325
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600326#if defined(CONFIG_SND_OMAP_SOC_MCPDM) || \
327 defined(CONFIG_SND_OMAP_SOC_MCPDM_MODULE)
328
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800329static void __init omap_init_mcpdm(void)
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600330{
331 struct omap_hwmod *oh;
Peter Ujfalusi927dbbb2011-11-03 10:41:22 +0200332 struct platform_device *pdev;
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600333
334 oh = omap_hwmod_lookup("mcpdm");
335 if (!oh) {
336 printk(KERN_ERR "Could not look up mcpdm hw_mod\n");
337 return;
338 }
339
Peter Ujfalusi927dbbb2011-11-03 10:41:22 +0200340 pdev = omap_device_build("omap-mcpdm", -1, oh, NULL, 0, NULL, 0, 0);
341 WARN(IS_ERR(pdev), "Can't build omap_device for omap-mcpdm.\n");
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600342}
343#else
344static inline void omap_init_mcpdm(void) {}
345#endif
346
Peter Ujfaluside9eb092011-12-13 10:48:54 -0800347#if defined(CONFIG_SND_OMAP_SOC_DMIC) || \
348 defined(CONFIG_SND_OMAP_SOC_DMIC_MODULE)
349
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800350static void __init omap_init_dmic(void)
Peter Ujfaluside9eb092011-12-13 10:48:54 -0800351{
352 struct omap_hwmod *oh;
353 struct platform_device *pdev;
354
355 oh = omap_hwmod_lookup("dmic");
356 if (!oh) {
Sebastien Guiriec49c58e82012-10-16 11:19:17 -0700357 pr_err("Could not look up dmic hw_mod\n");
Peter Ujfaluside9eb092011-12-13 10:48:54 -0800358 return;
359 }
360
361 pdev = omap_device_build("omap-dmic", -1, oh, NULL, 0, NULL, 0, 0);
362 WARN(IS_ERR(pdev), "Can't build omap_device for omap-dmic.\n");
363}
364#else
365static inline void omap_init_dmic(void) {}
366#endif
367
Ricardo Neri5eeec212012-05-09 14:19:14 -0700368#if defined(CONFIG_SND_OMAP_SOC_OMAP_HDMI) || \
369 defined(CONFIG_SND_OMAP_SOC_OMAP_HDMI_MODULE)
370
371static struct platform_device omap_hdmi_audio = {
372 .name = "omap-hdmi-audio",
373 .id = -1,
374};
375
376static void __init omap_init_hdmi_audio(void)
377{
378 struct omap_hwmod *oh;
379 struct platform_device *pdev;
380
381 oh = omap_hwmod_lookup("dss_hdmi");
382 if (!oh) {
383 printk(KERN_ERR "Could not look up dss_hdmi hw_mod\n");
384 return;
385 }
386
387 pdev = omap_device_build("omap-hdmi-audio-dai",
388 -1, oh, NULL, 0, NULL, 0, 0);
389 WARN(IS_ERR(pdev),
390 "Can't build omap_device for omap-hdmi-audio-dai.\n");
391
392 platform_device_register(&omap_hdmi_audio);
393}
394#else
395static inline void omap_init_hdmi_audio(void) {}
396#endif
397
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300398#if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700399
Arnd Bergmann22037472012-08-24 15:21:06 +0200400#include <linux/platform_data/spi-omap2-mcspi.h>
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700401
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800402static int __init omap_mcspi_init(struct omap_hwmod *oh, void *unused)
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700403{
Kevin Hilman3528c582011-07-21 13:48:45 -0700404 struct platform_device *pdev;
Charulatha V1a5d8192011-02-02 17:52:14 +0530405 char *name = "omap2_mcspi";
406 struct omap2_mcspi_platform_config *pdata;
407 static int spi_num;
408 struct omap2_mcspi_dev_attr *mcspi_attrib = oh->dev_attr;
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700409
Charulatha V1a5d8192011-02-02 17:52:14 +0530410 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
411 if (!pdata) {
412 pr_err("Memory allocation for McSPI device failed\n");
413 return -ENOMEM;
414 }
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700415
Charulatha V1a5d8192011-02-02 17:52:14 +0530416 pdata->num_cs = mcspi_attrib->num_chipselect;
417 switch (oh->class->rev) {
418 case OMAP2_MCSPI_REV:
419 case OMAP3_MCSPI_REV:
420 pdata->regs_offset = 0;
421 break;
422 case OMAP4_MCSPI_REV:
423 pdata->regs_offset = OMAP4_MCSPI_REG_OFFSET;
424 break;
425 default:
426 pr_err("Invalid McSPI Revision value\n");
Julia Lawalle0feca892011-12-23 18:39:31 +0100427 kfree(pdata);
Charulatha V1a5d8192011-02-02 17:52:14 +0530428 return -EINVAL;
429 }
430
431 spi_num++;
Kevin Hilman3528c582011-07-21 13:48:45 -0700432 pdev = omap_device_build(name, spi_num, oh, pdata,
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200433 sizeof(*pdata), NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700434 WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s\n",
Charulatha V1a5d8192011-02-02 17:52:14 +0530435 name, oh->name);
436 kfree(pdata);
437 return 0;
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700438}
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700439
440static void omap_init_mcspi(void)
441{
Charulatha V1a5d8192011-02-02 17:52:14 +0530442 omap_hwmod_for_each_by_class("mcspi", omap_mcspi_init, NULL);
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700443}
444
445#else
446static inline void omap_init_mcspi(void) {}
447#endif
448
Paul Walmsley4848d462012-09-23 17:28:27 -0600449/**
450 * omap_init_rng - bind the RNG hwmod to the RNG omap_device
451 *
452 * Bind the RNG hwmod to the RNG omap_device. No return value.
453 */
454static void omap_init_rng(void)
455{
456 struct omap_hwmod *oh;
457 struct platform_device *pdev;
458
459 oh = omap_hwmod_lookup("rng");
460 if (!oh)
461 return;
462
463 pdev = omap_device_build("omap_rng", -1, oh, NULL, 0, NULL, 0, 0);
464 WARN(IS_ERR(pdev), "Can't build omap_device for omap_rng\n");
465}
Will Deacon88341332010-04-09 13:54:43 +0100466
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800467#if defined(CONFIG_CRYPTO_DEV_OMAP_SHAM) || defined(CONFIG_CRYPTO_DEV_OMAP_SHAM_MODULE)
468
Dmitry Kasatkinedc774e2010-05-14 14:45:08 +1000469#ifdef CONFIG_ARCH_OMAP2
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800470static struct resource omap2_sham_resources[] = {
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300471 {
472 .start = OMAP24XX_SEC_SHA1MD5_BASE,
473 .end = OMAP24XX_SEC_SHA1MD5_BASE + 0x64,
474 .flags = IORESOURCE_MEM,
475 },
476 {
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700477 .start = 51 + OMAP_INTC_START,
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300478 .flags = IORESOURCE_IRQ,
479 }
480};
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800481static int omap2_sham_resources_sz = ARRAY_SIZE(omap2_sham_resources);
482#else
483#define omap2_sham_resources NULL
484#define omap2_sham_resources_sz 0
485#endif
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300486
Dmitry Kasatkinedc774e2010-05-14 14:45:08 +1000487#ifdef CONFIG_ARCH_OMAP3
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800488static struct resource omap3_sham_resources[] = {
489 {
490 .start = OMAP34XX_SEC_SHA1MD5_BASE,
491 .end = OMAP34XX_SEC_SHA1MD5_BASE + 0x64,
492 .flags = IORESOURCE_MEM,
493 },
494 {
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700495 .start = 49 + OMAP_INTC_START,
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800496 .flags = IORESOURCE_IRQ,
497 },
498 {
499 .start = OMAP34XX_DMA_SHA1MD5_RX,
500 .flags = IORESOURCE_DMA,
501 }
502};
503static int omap3_sham_resources_sz = ARRAY_SIZE(omap3_sham_resources);
504#else
505#define omap3_sham_resources NULL
506#define omap3_sham_resources_sz 0
507#endif
508
509static struct platform_device sham_device = {
510 .name = "omap-sham",
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300511 .id = -1,
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300512};
513
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800514static void omap_init_sham(void)
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300515{
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800516 if (cpu_is_omap24xx()) {
517 sham_device.resource = omap2_sham_resources;
518 sham_device.num_resources = omap2_sham_resources_sz;
519 } else if (cpu_is_omap34xx()) {
520 sham_device.resource = omap3_sham_resources;
521 sham_device.num_resources = omap3_sham_resources_sz;
522 } else {
523 pr_err("%s: platform not supported\n", __func__);
524 return;
525 }
526 platform_device_register(&sham_device);
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300527}
528#else
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800529static inline void omap_init_sham(void) { }
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300530#endif
531
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800532#if defined(CONFIG_CRYPTO_DEV_OMAP_AES) || defined(CONFIG_CRYPTO_DEV_OMAP_AES_MODULE)
533
Dmitry Kasatkin82a0c142010-08-20 13:44:46 +0000534#ifdef CONFIG_ARCH_OMAP2
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800535static struct resource omap2_aes_resources[] = {
536 {
537 .start = OMAP24XX_SEC_AES_BASE,
538 .end = OMAP24XX_SEC_AES_BASE + 0x4C,
539 .flags = IORESOURCE_MEM,
540 },
541 {
542 .start = OMAP24XX_DMA_AES_TX,
543 .flags = IORESOURCE_DMA,
544 },
545 {
546 .start = OMAP24XX_DMA_AES_RX,
547 .flags = IORESOURCE_DMA,
548 }
549};
550static int omap2_aes_resources_sz = ARRAY_SIZE(omap2_aes_resources);
551#else
552#define omap2_aes_resources NULL
553#define omap2_aes_resources_sz 0
554#endif
555
Dmitry Kasatkin82a0c142010-08-20 13:44:46 +0000556#ifdef CONFIG_ARCH_OMAP3
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800557static struct resource omap3_aes_resources[] = {
558 {
559 .start = OMAP34XX_SEC_AES_BASE,
560 .end = OMAP34XX_SEC_AES_BASE + 0x4C,
561 .flags = IORESOURCE_MEM,
562 },
563 {
564 .start = OMAP34XX_DMA_AES2_TX,
565 .flags = IORESOURCE_DMA,
566 },
567 {
568 .start = OMAP34XX_DMA_AES2_RX,
569 .flags = IORESOURCE_DMA,
570 }
571};
572static int omap3_aes_resources_sz = ARRAY_SIZE(omap3_aes_resources);
573#else
574#define omap3_aes_resources NULL
575#define omap3_aes_resources_sz 0
576#endif
577
578static struct platform_device aes_device = {
579 .name = "omap-aes",
580 .id = -1,
581};
582
583static void omap_init_aes(void)
584{
585 if (cpu_is_omap24xx()) {
586 aes_device.resource = omap2_aes_resources;
587 aes_device.num_resources = omap2_aes_resources_sz;
588 } else if (cpu_is_omap34xx()) {
589 aes_device.resource = omap3_aes_resources;
590 aes_device.num_resources = omap3_aes_resources_sz;
591 } else {
592 pr_err("%s: platform not supported\n", __func__);
593 return;
594 }
595 platform_device_register(&aes_device);
596}
597
598#else
599static inline void omap_init_aes(void) { }
600#endif
601
Tony Lindgrend8874662008-12-10 17:37:16 -0800602/*-------------------------------------------------------------------------*/
603
Vaibhav Hiremathb2273582010-05-10 14:29:14 -0700604#if defined(CONFIG_VIDEO_OMAP2_VOUT) || \
605 defined(CONFIG_VIDEO_OMAP2_VOUT_MODULE)
606#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
607static struct resource omap_vout_resource[3 - CONFIG_FB_OMAP2_NUM_FBS] = {
608};
609#else
610static struct resource omap_vout_resource[2] = {
611};
612#endif
613
614static struct platform_device omap_vout_device = {
615 .name = "omap_vout",
616 .num_resources = ARRAY_SIZE(omap_vout_resource),
617 .resource = &omap_vout_resource[0],
618 .id = -1,
619};
620static void omap_init_vout(void)
621{
622 if (platform_device_register(&omap_vout_device) < 0)
623 printk(KERN_ERR "Unable to register OMAP-VOUT device\n");
624}
625#else
626static inline void omap_init_vout(void) {}
627#endif
628
Kishon Vijay Abraham I459bc972012-10-27 19:05:56 +0530629#if defined(CONFIG_OMAP_OCP2SCP) || defined(CONFIG_OMAP_OCP2SCP_MODULE)
630static int count_ocp2scp_devices(struct omap_ocp2scp_dev *ocp2scp_dev)
631{
632 int cnt = 0;
633
634 while (ocp2scp_dev->drv_name != NULL) {
635 cnt++;
636 ocp2scp_dev++;
637 }
638
639 return cnt;
640}
641
Tony Lindgrene407ee02013-01-21 10:17:03 -0800642static void __init omap_init_ocp2scp(void)
Kishon Vijay Abraham I459bc972012-10-27 19:05:56 +0530643{
644 struct omap_hwmod *oh;
645 struct platform_device *pdev;
646 int bus_id = -1, dev_cnt = 0, i;
647 struct omap_ocp2scp_dev *ocp2scp_dev;
648 const char *oh_name, *name;
649 struct omap_ocp2scp_platform_data *pdata;
650
651 if (!cpu_is_omap44xx())
652 return;
653
654 oh_name = "ocp2scp_usb_phy";
655 name = "omap-ocp2scp";
656
657 oh = omap_hwmod_lookup(oh_name);
658 if (!oh) {
659 pr_err("%s: could not find omap_hwmod for %s\n", __func__,
660 oh_name);
661 return;
662 }
663
664 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
665 if (!pdata) {
666 pr_err("%s: No memory for ocp2scp pdata\n", __func__);
667 return;
668 }
669
670 ocp2scp_dev = oh->dev_attr;
671 dev_cnt = count_ocp2scp_devices(ocp2scp_dev);
672
673 if (!dev_cnt) {
674 pr_err("%s: No devices connected to ocp2scp\n", __func__);
675 kfree(pdata);
676 return;
677 }
678
679 pdata->devices = kzalloc(sizeof(struct omap_ocp2scp_dev *)
680 * dev_cnt, GFP_KERNEL);
681 if (!pdata->devices) {
682 pr_err("%s: No memory for ocp2scp pdata devices\n", __func__);
683 kfree(pdata);
684 return;
685 }
686
687 for (i = 0; i < dev_cnt; i++, ocp2scp_dev++)
688 pdata->devices[i] = ocp2scp_dev;
689
690 pdata->dev_cnt = dev_cnt;
691
692 pdev = omap_device_build(name, bus_id, oh, pdata, sizeof(*pdata), NULL,
693 0, false);
694 if (IS_ERR(pdev)) {
695 pr_err("Could not build omap_device for %s %s\n",
696 name, oh_name);
697 kfree(pdata->devices);
698 kfree(pdata);
699 return;
700 }
701}
702#else
703static inline void omap_init_ocp2scp(void) { }
704#endif
705
Tony Lindgren1dbae812005-11-10 14:26:51 +0000706/*-------------------------------------------------------------------------*/
707
708static int __init omap2_init_devices(void)
709{
Matt Porter484202f2012-09-17 16:26:11 -0700710 /* Enable dummy states for those platforms without pinctrl support */
711 if (!of_have_populated_dt())
712 pinctrl_provide_dummies();
713
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -0700714 /*
715 * please keep these calls, and their implementations above,
Tony Lindgren1dbae812005-11-10 14:26:51 +0000716 * in alphabetical order so they're easier to sort through.
717 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000718 omap_init_audio();
Tony Lindgren828c7072009-03-23 18:23:49 -0700719 omap_init_camera();
Ricardo Neri5eeec212012-05-09 14:19:14 -0700720 omap_init_hdmi_audio();
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800721 omap_init_mbox();
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100722 /* If dtb is there, the devices will be created dynamically */
Peter Ujfalusi259bd6c2012-05-02 15:23:18 +0300723 if (!of_have_populated_dt()) {
724 omap_init_dmic();
Peter Ujfalusi4b21ffc2012-05-02 15:23:19 +0300725 omap_init_mcpdm();
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100726 omap_init_mcspi();
Peter Ujfalusi259bd6c2012-05-02 15:23:18 +0300727 }
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100728 omap_init_sti();
Paul Walmsley4848d462012-09-23 17:28:27 -0600729 omap_init_rng();
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800730 omap_init_sham();
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800731 omap_init_aes();
Vaibhav Hiremathb2273582010-05-10 14:29:14 -0700732 omap_init_vout();
Kishon Vijay Abraham I459bc972012-10-27 19:05:56 +0530733 omap_init_ocp2scp();
Tony Lindgren1dbae812005-11-10 14:26:51 +0000734
735 return 0;
736}
737arch_initcall(omap2_init_devices);