blob: 1bb2e92ddc03e0ce0dcff3029d4d16aab7f59b05 [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>
Tony Lindgren1dbae812005-11-10 14:26:51 +000022
Tony Lindgren1dbae812005-11-10 14:26:51 +000023#include <asm/mach-types.h>
24#include <asm/mach/map.h>
25
Tony Lindgrenee0839c2012-02-24 10:34:35 -080026#include "iomap.h"
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +080027#include <plat/dma.h>
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +053028#include <plat/omap_hwmod.h>
29#include <plat/omap_device.h>
Syed Rafiuddin59556762010-12-27 05:51:45 +000030#include <plat/omap4-keypad.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000031
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -070032#include "soc.h"
33#include "common.h"
Tony Lindgren4896e392009-12-11 16:16:32 -080034#include "mux.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060035#include "control.h"
Laurent Pincharta11f6702009-12-14 08:09:07 -030036#include "devices.h"
Tony Lindgren4896e392009-12-11 16:16:32 -080037
sricharan0abcf612011-02-08 14:10:45 +053038#define L3_MODULES_MAX_LEN 12
sricharana4dc6162011-03-09 16:00:29 +053039#define L3_MODULES 3
sricharan0abcf612011-02-08 14:10:45 +053040
41static int __init omap3_l3_init(void)
42{
sricharan0abcf612011-02-08 14:10:45 +053043 struct omap_hwmod *oh;
Kevin Hilman3528c582011-07-21 13:48:45 -070044 struct platform_device *pdev;
sricharan0abcf612011-02-08 14:10:45 +053045 char oh_name[L3_MODULES_MAX_LEN];
46
47 /*
48 * To avoid code running on other OMAPs in
49 * multi-omap builds
50 */
51 if (!(cpu_is_omap34xx()))
52 return -ENODEV;
53
Paul Walmsleyeeb37112012-04-13 06:34:32 -060054 snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main");
sricharan0abcf612011-02-08 14:10:45 +053055
56 oh = omap_hwmod_lookup(oh_name);
57
58 if (!oh)
59 pr_err("could not look up %s\n", oh_name);
60
Kevin Hilman3528c582011-07-21 13:48:45 -070061 pdev = omap_device_build("omap_l3_smx", 0, oh, NULL, 0,
sricharan0abcf612011-02-08 14:10:45 +053062 NULL, 0, 0);
63
Kevin Hilman3528c582011-07-21 13:48:45 -070064 WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
sricharan0abcf612011-02-08 14:10:45 +053065
Kevin Hilman3528c582011-07-21 13:48:45 -070066 return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
sricharan0abcf612011-02-08 14:10:45 +053067}
68postcore_initcall(omap3_l3_init);
69
sricharana4dc6162011-03-09 16:00:29 +053070static int __init omap4_l3_init(void)
71{
Paul Walmsleyeeb37112012-04-13 06:34:32 -060072 int i;
sricharana4dc6162011-03-09 16:00:29 +053073 struct omap_hwmod *oh[3];
Kevin Hilman3528c582011-07-21 13:48:45 -070074 struct platform_device *pdev;
sricharana4dc6162011-03-09 16:00:29 +053075 char oh_name[L3_MODULES_MAX_LEN];
76
Benoit Coussonad8dfac2011-08-12 13:48:47 +020077 /* If dtb is there, the devices will be created dynamically */
78 if (of_have_populated_dt())
79 return -ENODEV;
80
sricharana4dc6162011-03-09 16:00:29 +053081 /*
82 * To avoid code running on other OMAPs in
83 * multi-omap builds
84 */
R Sricharane17933c2011-11-04 15:52:59 +053085 if (!cpu_is_omap44xx() && !soc_is_omap54xx())
sricharana4dc6162011-03-09 16:00:29 +053086 return -ENODEV;
87
88 for (i = 0; i < L3_MODULES; i++) {
Paul Walmsleyeeb37112012-04-13 06:34:32 -060089 snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main_%d", i+1);
sricharana4dc6162011-03-09 16:00:29 +053090
91 oh[i] = omap_hwmod_lookup(oh_name);
92 if (!(oh[i]))
93 pr_err("could not look up %s\n", oh_name);
94 }
95
Kevin Hilman3528c582011-07-21 13:48:45 -070096 pdev = omap_device_build_ss("omap_l3_noc", 0, oh, 3, NULL,
sricharana4dc6162011-03-09 16:00:29 +053097 0, NULL, 0, 0);
98
Kevin Hilman3528c582011-07-21 13:48:45 -070099 WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
sricharana4dc6162011-03-09 16:00:29 +0530100
Kevin Hilman3528c582011-07-21 13:48:45 -0700101 return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
sricharana4dc6162011-03-09 16:00:29 +0530102}
103postcore_initcall(omap4_l3_init);
104
Tony Lindgren828c7072009-03-23 18:23:49 -0700105#if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800106
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300107static struct resource omap2cam_resources[] = {
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800108 {
Tony Lindgren828c7072009-03-23 18:23:49 -0700109 .start = OMAP24XX_CAMERA_BASE,
110 .end = OMAP24XX_CAMERA_BASE + 0xfff,
111 .flags = IORESOURCE_MEM,
112 },
113 {
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700114 .start = 24 + OMAP_INTC_START,
Tony Lindgren828c7072009-03-23 18:23:49 -0700115 .flags = IORESOURCE_IRQ,
116 }
117};
118
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300119static struct platform_device omap2cam_device = {
Tony Lindgren828c7072009-03-23 18:23:49 -0700120 .name = "omap24xxcam",
121 .id = -1,
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300122 .num_resources = ARRAY_SIZE(omap2cam_resources),
123 .resource = omap2cam_resources,
Tony Lindgren828c7072009-03-23 18:23:49 -0700124};
Laurent Pincharta11f6702009-12-14 08:09:07 -0300125#endif
Tony Lindgren828c7072009-03-23 18:23:49 -0700126
Ohad Ben-Cohen1a51a0c2012-01-11 15:28:11 +0200127#if defined(CONFIG_IOMMU_API)
128
129#include <plat/iommu.h>
130
Tony Lindgren828c7072009-03-23 18:23:49 -0700131static struct resource omap3isp_resources[] = {
132 {
133 .start = OMAP3430_ISP_BASE,
134 .end = OMAP3430_ISP_END,
135 .flags = IORESOURCE_MEM,
136 },
137 {
Tony Lindgren828c7072009-03-23 18:23:49 -0700138 .start = OMAP3430_ISP_CCP2_BASE,
139 .end = OMAP3430_ISP_CCP2_END,
140 .flags = IORESOURCE_MEM,
141 },
142 {
143 .start = OMAP3430_ISP_CCDC_BASE,
144 .end = OMAP3430_ISP_CCDC_END,
145 .flags = IORESOURCE_MEM,
146 },
147 {
148 .start = OMAP3430_ISP_HIST_BASE,
149 .end = OMAP3430_ISP_HIST_END,
150 .flags = IORESOURCE_MEM,
151 },
152 {
153 .start = OMAP3430_ISP_H3A_BASE,
154 .end = OMAP3430_ISP_H3A_END,
155 .flags = IORESOURCE_MEM,
156 },
157 {
158 .start = OMAP3430_ISP_PREV_BASE,
159 .end = OMAP3430_ISP_PREV_END,
160 .flags = IORESOURCE_MEM,
161 },
162 {
163 .start = OMAP3430_ISP_RESZ_BASE,
164 .end = OMAP3430_ISP_RESZ_END,
165 .flags = IORESOURCE_MEM,
166 },
167 {
168 .start = OMAP3430_ISP_SBL_BASE,
169 .end = OMAP3430_ISP_SBL_END,
170 .flags = IORESOURCE_MEM,
171 },
172 {
Tuukka Toivonen6817a692010-02-02 11:17:33 -0300173 .start = OMAP3430_ISP_CSI2A_REGS1_BASE,
174 .end = OMAP3430_ISP_CSI2A_REGS1_END,
Tony Lindgren828c7072009-03-23 18:23:49 -0700175 .flags = IORESOURCE_MEM,
176 },
177 {
Tuukka Toivonen6817a692010-02-02 11:17:33 -0300178 .start = OMAP3430_ISP_CSIPHY2_BASE,
179 .end = OMAP3430_ISP_CSIPHY2_END,
180 .flags = IORESOURCE_MEM,
181 },
182 {
183 .start = OMAP3630_ISP_CSI2A_REGS2_BASE,
184 .end = OMAP3630_ISP_CSI2A_REGS2_END,
185 .flags = IORESOURCE_MEM,
186 },
187 {
188 .start = OMAP3630_ISP_CSI2C_REGS1_BASE,
189 .end = OMAP3630_ISP_CSI2C_REGS1_END,
190 .flags = IORESOURCE_MEM,
191 },
192 {
193 .start = OMAP3630_ISP_CSIPHY1_BASE,
194 .end = OMAP3630_ISP_CSIPHY1_END,
195 .flags = IORESOURCE_MEM,
196 },
197 {
198 .start = OMAP3630_ISP_CSI2C_REGS2_BASE,
199 .end = OMAP3630_ISP_CSI2C_REGS2_END,
Tony Lindgren828c7072009-03-23 18:23:49 -0700200 .flags = IORESOURCE_MEM,
201 },
202 {
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700203 .start = 24 + OMAP_INTC_START,
Tony Lindgren828c7072009-03-23 18:23:49 -0700204 .flags = IORESOURCE_IRQ,
205 }
206};
207
208static struct platform_device omap3isp_device = {
209 .name = "omap3isp",
210 .id = -1,
211 .num_resources = ARRAY_SIZE(omap3isp_resources),
212 .resource = omap3isp_resources,
213};
214
Ohad Ben-Cohenc8eaab32011-09-23 16:44:57 +0300215static struct omap_iommu_arch_data omap3_isp_iommu = {
216 .name = "isp",
217};
218
Laurent Pincharta11f6702009-12-14 08:09:07 -0300219int omap3_init_camera(struct isp_platform_data *pdata)
Tony Lindgren828c7072009-03-23 18:23:49 -0700220{
Laurent Pincharta11f6702009-12-14 08:09:07 -0300221 omap3isp_device.dev.platform_data = pdata;
Ohad Ben-Cohenc8eaab32011-09-23 16:44:57 +0300222 omap3isp_device.dev.archdata.iommu = &omap3_isp_iommu;
223
Laurent Pincharta11f6702009-12-14 08:09:07 -0300224 return platform_device_register(&omap3isp_device);
Tony Lindgren828c7072009-03-23 18:23:49 -0700225}
Tony Lindgren828c7072009-03-23 18:23:49 -0700226
Ohad Ben-Cohen1a51a0c2012-01-11 15:28:11 +0200227#else /* !CONFIG_IOMMU_API */
228
229int omap3_init_camera(struct isp_platform_data *pdata)
230{
231 return 0;
232}
233
234#endif
235
Tony Lindgren1dbae812005-11-10 14:26:51 +0000236static inline void omap_init_camera(void)
237{
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300238#if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
239 if (cpu_is_omap24xx())
240 platform_device_register(&omap2cam_device);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000241#endif
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300242}
Tony Lindgren1dbae812005-11-10 14:26:51 +0000243
Syed Rafiuddin59556762010-12-27 05:51:45 +0000244int __init omap4_keyboard_init(struct omap4_keypad_platform_data
Shubhrajyoti Dattaf67df6c2011-07-05 03:38:24 -0700245 *sdp4430_keypad_data, struct omap_board_data *bdata)
Syed Rafiuddin59556762010-12-27 05:51:45 +0000246{
Kevin Hilman3528c582011-07-21 13:48:45 -0700247 struct platform_device *pdev;
Syed Rafiuddin59556762010-12-27 05:51:45 +0000248 struct omap_hwmod *oh;
249 struct omap4_keypad_platform_data *keypad_data;
250 unsigned int id = -1;
251 char *oh_name = "kbd";
252 char *name = "omap4-keypad";
253
254 oh = omap_hwmod_lookup(oh_name);
255 if (!oh) {
256 pr_err("Could not look up %s\n", oh_name);
257 return -ENODEV;
258 }
259
260 keypad_data = sdp4430_keypad_data;
261
Kevin Hilman3528c582011-07-21 13:48:45 -0700262 pdev = omap_device_build(name, id, oh, keypad_data,
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200263 sizeof(struct omap4_keypad_platform_data), NULL, 0, 0);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000264
Kevin Hilman3528c582011-07-21 13:48:45 -0700265 if (IS_ERR(pdev)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300266 WARN(1, "Can't build omap_device for %s:%s.\n",
Syed Rafiuddin59556762010-12-27 05:51:45 +0000267 name, oh->name);
Kevin Hilman3528c582011-07-21 13:48:45 -0700268 return PTR_ERR(pdev);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000269 }
Shubhrajyoti Dattaf67df6c2011-07-05 03:38:24 -0700270 oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000271
272 return 0;
273}
274
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700275#if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE)
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800276static inline void __init omap_init_mbox(void)
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800277{
Felipe Contreras69dbf852011-02-24 12:51:33 -0800278 struct omap_hwmod *oh;
Kevin Hilman3528c582011-07-21 13:48:45 -0700279 struct platform_device *pdev;
Felipe Contreras69dbf852011-02-24 12:51:33 -0800280
281 oh = omap_hwmod_lookup("mailbox");
282 if (!oh) {
283 pr_err("%s: unable to find hwmod\n", __func__);
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700284 return;
285 }
Felipe Contreras69dbf852011-02-24 12:51:33 -0800286
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200287 pdev = omap_device_build("omap-mailbox", -1, oh, NULL, 0, NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700288 WARN(IS_ERR(pdev), "%s: could not build device, err %ld\n",
289 __func__, PTR_ERR(pdev));
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800290}
291#else
292static inline void omap_init_mbox(void) { }
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700293#endif /* CONFIG_OMAP_MBOX_FWK */
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800294
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100295static inline void omap_init_sti(void) {}
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100296
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000297#if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
298
299static struct platform_device omap_pcm = {
300 .name = "omap-pcm-audio",
301 .id = -1,
302};
303
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000304static void omap_init_audio(void)
305{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000306 platform_device_register(&omap_pcm);
307}
308
309#else
310static inline void omap_init_audio(void) {}
311#endif
312
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600313#if defined(CONFIG_SND_OMAP_SOC_MCPDM) || \
314 defined(CONFIG_SND_OMAP_SOC_MCPDM_MODULE)
315
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800316static void __init omap_init_mcpdm(void)
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600317{
318 struct omap_hwmod *oh;
Peter Ujfalusi927dbbb2011-11-03 10:41:22 +0200319 struct platform_device *pdev;
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600320
321 oh = omap_hwmod_lookup("mcpdm");
322 if (!oh) {
323 printk(KERN_ERR "Could not look up mcpdm hw_mod\n");
324 return;
325 }
326
Peter Ujfalusi927dbbb2011-11-03 10:41:22 +0200327 pdev = omap_device_build("omap-mcpdm", -1, oh, NULL, 0, NULL, 0, 0);
328 WARN(IS_ERR(pdev), "Can't build omap_device for omap-mcpdm.\n");
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600329}
330#else
331static inline void omap_init_mcpdm(void) {}
332#endif
333
Peter Ujfaluside9eb092011-12-13 10:48:54 -0800334#if defined(CONFIG_SND_OMAP_SOC_DMIC) || \
335 defined(CONFIG_SND_OMAP_SOC_DMIC_MODULE)
336
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800337static void __init omap_init_dmic(void)
Peter Ujfaluside9eb092011-12-13 10:48:54 -0800338{
339 struct omap_hwmod *oh;
340 struct platform_device *pdev;
341
342 oh = omap_hwmod_lookup("dmic");
343 if (!oh) {
344 printk(KERN_ERR "Could not look up mcpdm hw_mod\n");
345 return;
346 }
347
348 pdev = omap_device_build("omap-dmic", -1, oh, NULL, 0, NULL, 0, 0);
349 WARN(IS_ERR(pdev), "Can't build omap_device for omap-dmic.\n");
350}
351#else
352static inline void omap_init_dmic(void) {}
353#endif
354
Ricardo Neri5eeec212012-05-09 14:19:14 -0700355#if defined(CONFIG_SND_OMAP_SOC_OMAP_HDMI) || \
356 defined(CONFIG_SND_OMAP_SOC_OMAP_HDMI_MODULE)
357
358static struct platform_device omap_hdmi_audio = {
359 .name = "omap-hdmi-audio",
360 .id = -1,
361};
362
363static void __init omap_init_hdmi_audio(void)
364{
365 struct omap_hwmod *oh;
366 struct platform_device *pdev;
367
368 oh = omap_hwmod_lookup("dss_hdmi");
369 if (!oh) {
370 printk(KERN_ERR "Could not look up dss_hdmi hw_mod\n");
371 return;
372 }
373
374 pdev = omap_device_build("omap-hdmi-audio-dai",
375 -1, oh, NULL, 0, NULL, 0, 0);
376 WARN(IS_ERR(pdev),
377 "Can't build omap_device for omap-hdmi-audio-dai.\n");
378
379 platform_device_register(&omap_hdmi_audio);
380}
381#else
382static inline void omap_init_hdmi_audio(void) {}
383#endif
384
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300385#if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700386
Arnd Bergmann22037472012-08-24 15:21:06 +0200387#include <linux/platform_data/spi-omap2-mcspi.h>
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700388
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800389static int __init omap_mcspi_init(struct omap_hwmod *oh, void *unused)
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700390{
Kevin Hilman3528c582011-07-21 13:48:45 -0700391 struct platform_device *pdev;
Charulatha V1a5d8192011-02-02 17:52:14 +0530392 char *name = "omap2_mcspi";
393 struct omap2_mcspi_platform_config *pdata;
394 static int spi_num;
395 struct omap2_mcspi_dev_attr *mcspi_attrib = oh->dev_attr;
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700396
Charulatha V1a5d8192011-02-02 17:52:14 +0530397 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
398 if (!pdata) {
399 pr_err("Memory allocation for McSPI device failed\n");
400 return -ENOMEM;
401 }
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700402
Charulatha V1a5d8192011-02-02 17:52:14 +0530403 pdata->num_cs = mcspi_attrib->num_chipselect;
404 switch (oh->class->rev) {
405 case OMAP2_MCSPI_REV:
406 case OMAP3_MCSPI_REV:
407 pdata->regs_offset = 0;
408 break;
409 case OMAP4_MCSPI_REV:
410 pdata->regs_offset = OMAP4_MCSPI_REG_OFFSET;
411 break;
412 default:
413 pr_err("Invalid McSPI Revision value\n");
Julia Lawalle0feca892011-12-23 18:39:31 +0100414 kfree(pdata);
Charulatha V1a5d8192011-02-02 17:52:14 +0530415 return -EINVAL;
416 }
417
418 spi_num++;
Kevin Hilman3528c582011-07-21 13:48:45 -0700419 pdev = omap_device_build(name, spi_num, oh, pdata,
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200420 sizeof(*pdata), NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700421 WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s\n",
Charulatha V1a5d8192011-02-02 17:52:14 +0530422 name, oh->name);
423 kfree(pdata);
424 return 0;
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700425}
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700426
427static void omap_init_mcspi(void)
428{
Charulatha V1a5d8192011-02-02 17:52:14 +0530429 omap_hwmod_for_each_by_class("mcspi", omap_mcspi_init, NULL);
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700430}
431
432#else
433static inline void omap_init_mcspi(void) {}
434#endif
435
Will Deacon88341332010-04-09 13:54:43 +0100436static struct resource omap2_pmu_resource = {
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700437 .start = 3 + OMAP_INTC_START,
Will Deacon88341332010-04-09 13:54:43 +0100438 .flags = IORESOURCE_IRQ,
439};
440
441static struct resource omap3_pmu_resource = {
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700442 .start = 3 + OMAP_INTC_START,
Will Deacon88341332010-04-09 13:54:43 +0100443 .flags = IORESOURCE_IRQ,
444};
445
446static struct platform_device omap_pmu_device = {
447 .name = "arm-pmu",
Sudeep KarkadaNageshadf3d17e2012-07-19 09:50:21 +0100448 .id = -1,
Will Deacon88341332010-04-09 13:54:43 +0100449 .num_resources = 1,
450};
451
452static void omap_init_pmu(void)
453{
454 if (cpu_is_omap24xx())
455 omap_pmu_device.resource = &omap2_pmu_resource;
456 else if (cpu_is_omap34xx())
457 omap_pmu_device.resource = &omap3_pmu_resource;
458 else
459 return;
460
461 platform_device_register(&omap_pmu_device);
462}
463
464
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800465#if defined(CONFIG_CRYPTO_DEV_OMAP_SHAM) || defined(CONFIG_CRYPTO_DEV_OMAP_SHAM_MODULE)
466
Dmitry Kasatkinedc774e2010-05-14 14:45:08 +1000467#ifdef CONFIG_ARCH_OMAP2
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800468static struct resource omap2_sham_resources[] = {
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300469 {
470 .start = OMAP24XX_SEC_SHA1MD5_BASE,
471 .end = OMAP24XX_SEC_SHA1MD5_BASE + 0x64,
472 .flags = IORESOURCE_MEM,
473 },
474 {
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700475 .start = 51 + OMAP_INTC_START,
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300476 .flags = IORESOURCE_IRQ,
477 }
478};
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800479static int omap2_sham_resources_sz = ARRAY_SIZE(omap2_sham_resources);
480#else
481#define omap2_sham_resources NULL
482#define omap2_sham_resources_sz 0
483#endif
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300484
Dmitry Kasatkinedc774e2010-05-14 14:45:08 +1000485#ifdef CONFIG_ARCH_OMAP3
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800486static struct resource omap3_sham_resources[] = {
487 {
488 .start = OMAP34XX_SEC_SHA1MD5_BASE,
489 .end = OMAP34XX_SEC_SHA1MD5_BASE + 0x64,
490 .flags = IORESOURCE_MEM,
491 },
492 {
Tony Lindgren7d7e1eb2012-08-27 17:43:01 -0700493 .start = 49 + OMAP_INTC_START,
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800494 .flags = IORESOURCE_IRQ,
495 },
496 {
497 .start = OMAP34XX_DMA_SHA1MD5_RX,
498 .flags = IORESOURCE_DMA,
499 }
500};
501static int omap3_sham_resources_sz = ARRAY_SIZE(omap3_sham_resources);
502#else
503#define omap3_sham_resources NULL
504#define omap3_sham_resources_sz 0
505#endif
506
507static struct platform_device sham_device = {
508 .name = "omap-sham",
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300509 .id = -1,
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300510};
511
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800512static void omap_init_sham(void)
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300513{
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800514 if (cpu_is_omap24xx()) {
515 sham_device.resource = omap2_sham_resources;
516 sham_device.num_resources = omap2_sham_resources_sz;
517 } else if (cpu_is_omap34xx()) {
518 sham_device.resource = omap3_sham_resources;
519 sham_device.num_resources = omap3_sham_resources_sz;
520 } else {
521 pr_err("%s: platform not supported\n", __func__);
522 return;
523 }
524 platform_device_register(&sham_device);
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300525}
526#else
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800527static inline void omap_init_sham(void) { }
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300528#endif
529
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800530#if defined(CONFIG_CRYPTO_DEV_OMAP_AES) || defined(CONFIG_CRYPTO_DEV_OMAP_AES_MODULE)
531
Dmitry Kasatkin82a0c142010-08-20 13:44:46 +0000532#ifdef CONFIG_ARCH_OMAP2
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800533static struct resource omap2_aes_resources[] = {
534 {
535 .start = OMAP24XX_SEC_AES_BASE,
536 .end = OMAP24XX_SEC_AES_BASE + 0x4C,
537 .flags = IORESOURCE_MEM,
538 },
539 {
540 .start = OMAP24XX_DMA_AES_TX,
541 .flags = IORESOURCE_DMA,
542 },
543 {
544 .start = OMAP24XX_DMA_AES_RX,
545 .flags = IORESOURCE_DMA,
546 }
547};
548static int omap2_aes_resources_sz = ARRAY_SIZE(omap2_aes_resources);
549#else
550#define omap2_aes_resources NULL
551#define omap2_aes_resources_sz 0
552#endif
553
Dmitry Kasatkin82a0c142010-08-20 13:44:46 +0000554#ifdef CONFIG_ARCH_OMAP3
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800555static struct resource omap3_aes_resources[] = {
556 {
557 .start = OMAP34XX_SEC_AES_BASE,
558 .end = OMAP34XX_SEC_AES_BASE + 0x4C,
559 .flags = IORESOURCE_MEM,
560 },
561 {
562 .start = OMAP34XX_DMA_AES2_TX,
563 .flags = IORESOURCE_DMA,
564 },
565 {
566 .start = OMAP34XX_DMA_AES2_RX,
567 .flags = IORESOURCE_DMA,
568 }
569};
570static int omap3_aes_resources_sz = ARRAY_SIZE(omap3_aes_resources);
571#else
572#define omap3_aes_resources NULL
573#define omap3_aes_resources_sz 0
574#endif
575
576static struct platform_device aes_device = {
577 .name = "omap-aes",
578 .id = -1,
579};
580
581static void omap_init_aes(void)
582{
583 if (cpu_is_omap24xx()) {
584 aes_device.resource = omap2_aes_resources;
585 aes_device.num_resources = omap2_aes_resources_sz;
586 } else if (cpu_is_omap34xx()) {
587 aes_device.resource = omap3_aes_resources;
588 aes_device.num_resources = omap3_aes_resources_sz;
589 } else {
590 pr_err("%s: platform not supported\n", __func__);
591 return;
592 }
593 platform_device_register(&aes_device);
594}
595
596#else
597static inline void omap_init_aes(void) { }
598#endif
599
Tony Lindgrend8874662008-12-10 17:37:16 -0800600/*-------------------------------------------------------------------------*/
601
Vaibhav Hiremathb2273582010-05-10 14:29:14 -0700602#if defined(CONFIG_VIDEO_OMAP2_VOUT) || \
603 defined(CONFIG_VIDEO_OMAP2_VOUT_MODULE)
604#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
605static struct resource omap_vout_resource[3 - CONFIG_FB_OMAP2_NUM_FBS] = {
606};
607#else
608static struct resource omap_vout_resource[2] = {
609};
610#endif
611
612static struct platform_device omap_vout_device = {
613 .name = "omap_vout",
614 .num_resources = ARRAY_SIZE(omap_vout_resource),
615 .resource = &omap_vout_resource[0],
616 .id = -1,
617};
618static void omap_init_vout(void)
619{
620 if (platform_device_register(&omap_vout_device) < 0)
621 printk(KERN_ERR "Unable to register OMAP-VOUT device\n");
622}
623#else
624static inline void omap_init_vout(void) {}
625#endif
626
Tony Lindgren1dbae812005-11-10 14:26:51 +0000627/*-------------------------------------------------------------------------*/
628
629static int __init omap2_init_devices(void)
630{
Matt Porter484202f2012-09-17 16:26:11 -0700631 /* Enable dummy states for those platforms without pinctrl support */
632 if (!of_have_populated_dt())
633 pinctrl_provide_dummies();
634
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -0700635 /*
636 * please keep these calls, and their implementations above,
Tony Lindgren1dbae812005-11-10 14:26:51 +0000637 * in alphabetical order so they're easier to sort through.
638 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000639 omap_init_audio();
Tony Lindgren828c7072009-03-23 18:23:49 -0700640 omap_init_camera();
Ricardo Neri5eeec212012-05-09 14:19:14 -0700641 omap_init_hdmi_audio();
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800642 omap_init_mbox();
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100643 /* If dtb is there, the devices will be created dynamically */
Peter Ujfalusi259bd6c2012-05-02 15:23:18 +0300644 if (!of_have_populated_dt()) {
645 omap_init_dmic();
Peter Ujfalusi4b21ffc2012-05-02 15:23:19 +0300646 omap_init_mcpdm();
Benoit Coussonefcf1e52012-01-20 14:15:58 +0100647 omap_init_mcspi();
Peter Ujfalusi259bd6c2012-05-02 15:23:18 +0300648 }
Will Deacon88341332010-04-09 13:54:43 +0100649 omap_init_pmu();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100650 omap_init_sti();
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800651 omap_init_sham();
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800652 omap_init_aes();
Vaibhav Hiremathb2273582010-05-10 14:29:14 -0700653 omap_init_vout();
Tony Lindgren1dbae812005-11-10 14:26:51 +0000654
655 return 0;
656}
657arch_initcall(omap2_init_devices);
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530658
659#if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530660static int __init omap_init_wdt(void)
661{
662 int id = -1;
Kevin Hilman3528c582011-07-21 13:48:45 -0700663 struct platform_device *pdev;
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530664 struct omap_hwmod *oh;
665 char *oh_name = "wd_timer2";
666 char *dev_name = "omap_wdt";
667
Xiao Jiang6e152232012-06-01 12:44:15 +0800668 if (!cpu_class_is_omap2() || of_have_populated_dt())
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530669 return 0;
670
671 oh = omap_hwmod_lookup(oh_name);
672 if (!oh) {
673 pr_err("Could not look up wd_timer%d hwmod\n", id);
674 return -EINVAL;
675 }
676
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200677 pdev = omap_device_build(dev_name, id, oh, NULL, 0, NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700678 WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s.\n",
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530679 dev_name, oh->name);
680 return 0;
681}
682subsys_initcall(omap_init_wdt);
683#endif