blob: f3953a4992869966e457dbd91968feed1cb4cf47 [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>
Felipe Balbi0f1142a2012-03-16 22:47:48 -070020#include <linux/platform_data/omap4-keypad.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000021
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/hardware.h>
Will Deacon88341332010-04-09 13:54:43 +010023#include <mach/irqs.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000024#include <asm/mach-types.h>
25#include <asm/mach/map.h>
Will Deacon88341332010-04-09 13:54:43 +010026#include <asm/pmu.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000027
Tony Lindgrenee0839c2012-02-24 10:34:35 -080028#include "iomap.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -070029#include <plat/board.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070030#include <plat/mmc.h>
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +080031#include <plat/dma.h>
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +053032#include <plat/omap_hwmod.h>
33#include <plat/omap_device.h>
Syed Rafiuddin59556762010-12-27 05:51:45 +000034#include <plat/omap4-keypad.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000035
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"
Tony Lindgren4896e392009-12-11 16:16:32 -080039
sricharan0abcf612011-02-08 14:10:45 +053040#define L3_MODULES_MAX_LEN 12
sricharana4dc6162011-03-09 16:00:29 +053041#define L3_MODULES 3
sricharan0abcf612011-02-08 14:10:45 +053042
43static int __init omap3_l3_init(void)
44{
sricharan0abcf612011-02-08 14:10:45 +053045 struct omap_hwmod *oh;
Kevin Hilman3528c582011-07-21 13:48:45 -070046 struct platform_device *pdev;
sricharan0abcf612011-02-08 14:10:45 +053047 char oh_name[L3_MODULES_MAX_LEN];
48
49 /*
50 * To avoid code running on other OMAPs in
51 * multi-omap builds
52 */
53 if (!(cpu_is_omap34xx()))
54 return -ENODEV;
55
Paul Walmsleyeeb37112012-04-13 06:34:32 -060056 snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main");
sricharan0abcf612011-02-08 14:10:45 +053057
58 oh = omap_hwmod_lookup(oh_name);
59
60 if (!oh)
61 pr_err("could not look up %s\n", oh_name);
62
Kevin Hilman3528c582011-07-21 13:48:45 -070063 pdev = omap_device_build("omap_l3_smx", 0, oh, NULL, 0,
sricharan0abcf612011-02-08 14:10:45 +053064 NULL, 0, 0);
65
Kevin Hilman3528c582011-07-21 13:48:45 -070066 WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
sricharan0abcf612011-02-08 14:10:45 +053067
Kevin Hilman3528c582011-07-21 13:48:45 -070068 return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
sricharan0abcf612011-02-08 14:10:45 +053069}
70postcore_initcall(omap3_l3_init);
71
sricharana4dc6162011-03-09 16:00:29 +053072static int __init omap4_l3_init(void)
73{
Paul Walmsleyeeb37112012-04-13 06:34:32 -060074 int i;
sricharana4dc6162011-03-09 16:00:29 +053075 struct omap_hwmod *oh[3];
Kevin Hilman3528c582011-07-21 13:48:45 -070076 struct platform_device *pdev;
sricharana4dc6162011-03-09 16:00:29 +053077 char oh_name[L3_MODULES_MAX_LEN];
78
Benoit Coussonad8dfac2011-08-12 13:48:47 +020079 /* If dtb is there, the devices will be created dynamically */
80 if (of_have_populated_dt())
81 return -ENODEV;
82
sricharana4dc6162011-03-09 16:00:29 +053083 /*
84 * To avoid code running on other OMAPs in
85 * multi-omap builds
86 */
87 if (!(cpu_is_omap44xx()))
88 return -ENODEV;
89
90 for (i = 0; i < L3_MODULES; i++) {
Paul Walmsleyeeb37112012-04-13 06:34:32 -060091 snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main_%d", i+1);
sricharana4dc6162011-03-09 16:00:29 +053092
93 oh[i] = omap_hwmod_lookup(oh_name);
94 if (!(oh[i]))
95 pr_err("could not look up %s\n", oh_name);
96 }
97
Kevin Hilman3528c582011-07-21 13:48:45 -070098 pdev = omap_device_build_ss("omap_l3_noc", 0, oh, 3, NULL,
sricharana4dc6162011-03-09 16:00:29 +053099 0, NULL, 0, 0);
100
Kevin Hilman3528c582011-07-21 13:48:45 -0700101 WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
sricharana4dc6162011-03-09 16:00:29 +0530102
Kevin Hilman3528c582011-07-21 13:48:45 -0700103 return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
sricharana4dc6162011-03-09 16:00:29 +0530104}
105postcore_initcall(omap4_l3_init);
106
Tony Lindgren828c7072009-03-23 18:23:49 -0700107#if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800108
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300109static struct resource omap2cam_resources[] = {
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800110 {
Tony Lindgren828c7072009-03-23 18:23:49 -0700111 .start = OMAP24XX_CAMERA_BASE,
112 .end = OMAP24XX_CAMERA_BASE + 0xfff,
113 .flags = IORESOURCE_MEM,
114 },
115 {
116 .start = INT_24XX_CAM_IRQ,
117 .flags = IORESOURCE_IRQ,
118 }
119};
120
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300121static struct platform_device omap2cam_device = {
Tony Lindgren828c7072009-03-23 18:23:49 -0700122 .name = "omap24xxcam",
123 .id = -1,
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300124 .num_resources = ARRAY_SIZE(omap2cam_resources),
125 .resource = omap2cam_resources,
Tony Lindgren828c7072009-03-23 18:23:49 -0700126};
Laurent Pincharta11f6702009-12-14 08:09:07 -0300127#endif
Tony Lindgren828c7072009-03-23 18:23:49 -0700128
Ohad Ben-Cohen1a51a0c2012-01-11 15:28:11 +0200129#if defined(CONFIG_IOMMU_API)
130
131#include <plat/iommu.h>
132
Tony Lindgren828c7072009-03-23 18:23:49 -0700133static struct resource omap3isp_resources[] = {
134 {
135 .start = OMAP3430_ISP_BASE,
136 .end = OMAP3430_ISP_END,
137 .flags = IORESOURCE_MEM,
138 },
139 {
Tony Lindgren828c7072009-03-23 18:23:49 -0700140 .start = OMAP3430_ISP_CCP2_BASE,
141 .end = OMAP3430_ISP_CCP2_END,
142 .flags = IORESOURCE_MEM,
143 },
144 {
145 .start = OMAP3430_ISP_CCDC_BASE,
146 .end = OMAP3430_ISP_CCDC_END,
147 .flags = IORESOURCE_MEM,
148 },
149 {
150 .start = OMAP3430_ISP_HIST_BASE,
151 .end = OMAP3430_ISP_HIST_END,
152 .flags = IORESOURCE_MEM,
153 },
154 {
155 .start = OMAP3430_ISP_H3A_BASE,
156 .end = OMAP3430_ISP_H3A_END,
157 .flags = IORESOURCE_MEM,
158 },
159 {
160 .start = OMAP3430_ISP_PREV_BASE,
161 .end = OMAP3430_ISP_PREV_END,
162 .flags = IORESOURCE_MEM,
163 },
164 {
165 .start = OMAP3430_ISP_RESZ_BASE,
166 .end = OMAP3430_ISP_RESZ_END,
167 .flags = IORESOURCE_MEM,
168 },
169 {
170 .start = OMAP3430_ISP_SBL_BASE,
171 .end = OMAP3430_ISP_SBL_END,
172 .flags = IORESOURCE_MEM,
173 },
174 {
Tuukka Toivonen6817a692010-02-02 11:17:33 -0300175 .start = OMAP3430_ISP_CSI2A_REGS1_BASE,
176 .end = OMAP3430_ISP_CSI2A_REGS1_END,
Tony Lindgren828c7072009-03-23 18:23:49 -0700177 .flags = IORESOURCE_MEM,
178 },
179 {
Tuukka Toivonen6817a692010-02-02 11:17:33 -0300180 .start = OMAP3430_ISP_CSIPHY2_BASE,
181 .end = OMAP3430_ISP_CSIPHY2_END,
182 .flags = IORESOURCE_MEM,
183 },
184 {
185 .start = OMAP3630_ISP_CSI2A_REGS2_BASE,
186 .end = OMAP3630_ISP_CSI2A_REGS2_END,
187 .flags = IORESOURCE_MEM,
188 },
189 {
190 .start = OMAP3630_ISP_CSI2C_REGS1_BASE,
191 .end = OMAP3630_ISP_CSI2C_REGS1_END,
192 .flags = IORESOURCE_MEM,
193 },
194 {
195 .start = OMAP3630_ISP_CSIPHY1_BASE,
196 .end = OMAP3630_ISP_CSIPHY1_END,
197 .flags = IORESOURCE_MEM,
198 },
199 {
200 .start = OMAP3630_ISP_CSI2C_REGS2_BASE,
201 .end = OMAP3630_ISP_CSI2C_REGS2_END,
Tony Lindgren828c7072009-03-23 18:23:49 -0700202 .flags = IORESOURCE_MEM,
203 },
204 {
205 .start = INT_34XX_CAM_IRQ,
206 .flags = IORESOURCE_IRQ,
207 }
208};
209
210static struct platform_device omap3isp_device = {
211 .name = "omap3isp",
212 .id = -1,
213 .num_resources = ARRAY_SIZE(omap3isp_resources),
214 .resource = omap3isp_resources,
215};
216
Ohad Ben-Cohenc8eaab32011-09-23 16:44:57 +0300217static struct omap_iommu_arch_data omap3_isp_iommu = {
218 .name = "isp",
219};
220
Laurent Pincharta11f6702009-12-14 08:09:07 -0300221int omap3_init_camera(struct isp_platform_data *pdata)
Tony Lindgren828c7072009-03-23 18:23:49 -0700222{
Laurent Pincharta11f6702009-12-14 08:09:07 -0300223 omap3isp_device.dev.platform_data = pdata;
Ohad Ben-Cohenc8eaab32011-09-23 16:44:57 +0300224 omap3isp_device.dev.archdata.iommu = &omap3_isp_iommu;
225
Laurent Pincharta11f6702009-12-14 08:09:07 -0300226 return platform_device_register(&omap3isp_device);
Tony Lindgren828c7072009-03-23 18:23:49 -0700227}
Tony Lindgren828c7072009-03-23 18:23:49 -0700228
Ohad Ben-Cohen1a51a0c2012-01-11 15:28:11 +0200229#else /* !CONFIG_IOMMU_API */
230
231int omap3_init_camera(struct isp_platform_data *pdata)
232{
233 return 0;
234}
235
236#endif
237
Tony Lindgren1dbae812005-11-10 14:26:51 +0000238static inline void omap_init_camera(void)
239{
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300240#if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
241 if (cpu_is_omap24xx())
242 platform_device_register(&omap2cam_device);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000243#endif
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300244}
Tony Lindgren1dbae812005-11-10 14:26:51 +0000245
Syed Rafiuddin59556762010-12-27 05:51:45 +0000246int __init omap4_keyboard_init(struct omap4_keypad_platform_data
Shubhrajyoti Dattaf67df6c2011-07-05 03:38:24 -0700247 *sdp4430_keypad_data, struct omap_board_data *bdata)
Syed Rafiuddin59556762010-12-27 05:51:45 +0000248{
Kevin Hilman3528c582011-07-21 13:48:45 -0700249 struct platform_device *pdev;
Syed Rafiuddin59556762010-12-27 05:51:45 +0000250 struct omap_hwmod *oh;
251 struct omap4_keypad_platform_data *keypad_data;
252 unsigned int id = -1;
253 char *oh_name = "kbd";
254 char *name = "omap4-keypad";
255
256 oh = omap_hwmod_lookup(oh_name);
257 if (!oh) {
258 pr_err("Could not look up %s\n", oh_name);
259 return -ENODEV;
260 }
261
262 keypad_data = sdp4430_keypad_data;
263
Kevin Hilman3528c582011-07-21 13:48:45 -0700264 pdev = omap_device_build(name, id, oh, keypad_data,
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200265 sizeof(struct omap4_keypad_platform_data), NULL, 0, 0);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000266
Kevin Hilman3528c582011-07-21 13:48:45 -0700267 if (IS_ERR(pdev)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300268 WARN(1, "Can't build omap_device for %s:%s.\n",
Syed Rafiuddin59556762010-12-27 05:51:45 +0000269 name, oh->name);
Kevin Hilman3528c582011-07-21 13:48:45 -0700270 return PTR_ERR(pdev);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000271 }
Shubhrajyoti Dattaf67df6c2011-07-05 03:38:24 -0700272 oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000273
274 return 0;
275}
276
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700277#if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE)
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800278static inline void __init omap_init_mbox(void)
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800279{
Felipe Contreras69dbf852011-02-24 12:51:33 -0800280 struct omap_hwmod *oh;
Kevin Hilman3528c582011-07-21 13:48:45 -0700281 struct platform_device *pdev;
Felipe Contreras69dbf852011-02-24 12:51:33 -0800282
283 oh = omap_hwmod_lookup("mailbox");
284 if (!oh) {
285 pr_err("%s: unable to find hwmod\n", __func__);
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700286 return;
287 }
Felipe Contreras69dbf852011-02-24 12:51:33 -0800288
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200289 pdev = omap_device_build("omap-mailbox", -1, oh, NULL, 0, NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700290 WARN(IS_ERR(pdev), "%s: could not build device, err %ld\n",
291 __func__, PTR_ERR(pdev));
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800292}
293#else
294static inline void omap_init_mbox(void) { }
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700295#endif /* CONFIG_OMAP_MBOX_FWK */
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800296
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100297static inline void omap_init_sti(void) {}
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100298
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000299#if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
300
301static struct platform_device omap_pcm = {
302 .name = "omap-pcm-audio",
303 .id = -1,
304};
305
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000306static void omap_init_audio(void)
307{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000308 platform_device_register(&omap_pcm);
309}
310
311#else
312static inline void omap_init_audio(void) {}
313#endif
314
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600315#if defined(CONFIG_SND_OMAP_SOC_MCPDM) || \
316 defined(CONFIG_SND_OMAP_SOC_MCPDM_MODULE)
317
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800318static void __init omap_init_mcpdm(void)
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600319{
320 struct omap_hwmod *oh;
Peter Ujfalusi927dbbb2011-11-03 10:41:22 +0200321 struct platform_device *pdev;
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600322
323 oh = omap_hwmod_lookup("mcpdm");
324 if (!oh) {
325 printk(KERN_ERR "Could not look up mcpdm hw_mod\n");
326 return;
327 }
328
Peter Ujfalusi927dbbb2011-11-03 10:41:22 +0200329 pdev = omap_device_build("omap-mcpdm", -1, oh, NULL, 0, NULL, 0, 0);
330 WARN(IS_ERR(pdev), "Can't build omap_device for omap-mcpdm.\n");
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600331}
332#else
333static inline void omap_init_mcpdm(void) {}
334#endif
335
Peter Ujfaluside9eb092011-12-13 10:48:54 -0800336#if defined(CONFIG_SND_OMAP_SOC_DMIC) || \
337 defined(CONFIG_SND_OMAP_SOC_DMIC_MODULE)
338
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800339static void __init omap_init_dmic(void)
Peter Ujfaluside9eb092011-12-13 10:48:54 -0800340{
341 struct omap_hwmod *oh;
342 struct platform_device *pdev;
343
344 oh = omap_hwmod_lookup("dmic");
345 if (!oh) {
346 printk(KERN_ERR "Could not look up mcpdm hw_mod\n");
347 return;
348 }
349
350 pdev = omap_device_build("omap-dmic", -1, oh, NULL, 0, NULL, 0, 0);
351 WARN(IS_ERR(pdev), "Can't build omap_device for omap-dmic.\n");
352}
353#else
354static inline void omap_init_dmic(void) {}
355#endif
356
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300357#if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700358
Tony Lindgrence491cf2009-10-20 09:40:47 -0700359#include <plat/mcspi.h>
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700360
Kevin Hilman9cf793f2012-02-20 09:43:30 -0800361static int __init omap_mcspi_init(struct omap_hwmod *oh, void *unused)
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700362{
Kevin Hilman3528c582011-07-21 13:48:45 -0700363 struct platform_device *pdev;
Charulatha V1a5d8192011-02-02 17:52:14 +0530364 char *name = "omap2_mcspi";
365 struct omap2_mcspi_platform_config *pdata;
366 static int spi_num;
367 struct omap2_mcspi_dev_attr *mcspi_attrib = oh->dev_attr;
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700368
Charulatha V1a5d8192011-02-02 17:52:14 +0530369 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
370 if (!pdata) {
371 pr_err("Memory allocation for McSPI device failed\n");
372 return -ENOMEM;
373 }
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700374
Charulatha V1a5d8192011-02-02 17:52:14 +0530375 pdata->num_cs = mcspi_attrib->num_chipselect;
376 switch (oh->class->rev) {
377 case OMAP2_MCSPI_REV:
378 case OMAP3_MCSPI_REV:
379 pdata->regs_offset = 0;
380 break;
381 case OMAP4_MCSPI_REV:
382 pdata->regs_offset = OMAP4_MCSPI_REG_OFFSET;
383 break;
384 default:
385 pr_err("Invalid McSPI Revision value\n");
Julia Lawalle0feca892011-12-23 18:39:31 +0100386 kfree(pdata);
Charulatha V1a5d8192011-02-02 17:52:14 +0530387 return -EINVAL;
388 }
389
390 spi_num++;
Kevin Hilman3528c582011-07-21 13:48:45 -0700391 pdev = omap_device_build(name, spi_num, oh, pdata,
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200392 sizeof(*pdata), NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700393 WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s\n",
Charulatha V1a5d8192011-02-02 17:52:14 +0530394 name, oh->name);
395 kfree(pdata);
396 return 0;
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700397}
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700398
399static void omap_init_mcspi(void)
400{
Charulatha V1a5d8192011-02-02 17:52:14 +0530401 omap_hwmod_for_each_by_class("mcspi", omap_mcspi_init, NULL);
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700402}
403
404#else
405static inline void omap_init_mcspi(void) {}
406#endif
407
Will Deacon88341332010-04-09 13:54:43 +0100408static struct resource omap2_pmu_resource = {
409 .start = 3,
410 .end = 3,
411 .flags = IORESOURCE_IRQ,
412};
413
414static struct resource omap3_pmu_resource = {
415 .start = INT_34XX_BENCH_MPU_EMUL,
416 .end = INT_34XX_BENCH_MPU_EMUL,
417 .flags = IORESOURCE_IRQ,
418};
419
420static struct platform_device omap_pmu_device = {
421 .name = "arm-pmu",
422 .id = ARM_PMU_DEVICE_CPU,
423 .num_resources = 1,
424};
425
426static void omap_init_pmu(void)
427{
428 if (cpu_is_omap24xx())
429 omap_pmu_device.resource = &omap2_pmu_resource;
430 else if (cpu_is_omap34xx())
431 omap_pmu_device.resource = &omap3_pmu_resource;
432 else
433 return;
434
435 platform_device_register(&omap_pmu_device);
436}
437
438
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800439#if defined(CONFIG_CRYPTO_DEV_OMAP_SHAM) || defined(CONFIG_CRYPTO_DEV_OMAP_SHAM_MODULE)
440
Dmitry Kasatkinedc774e2010-05-14 14:45:08 +1000441#ifdef CONFIG_ARCH_OMAP2
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800442static struct resource omap2_sham_resources[] = {
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300443 {
444 .start = OMAP24XX_SEC_SHA1MD5_BASE,
445 .end = OMAP24XX_SEC_SHA1MD5_BASE + 0x64,
446 .flags = IORESOURCE_MEM,
447 },
448 {
449 .start = INT_24XX_SHA1MD5,
450 .flags = IORESOURCE_IRQ,
451 }
452};
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800453static int omap2_sham_resources_sz = ARRAY_SIZE(omap2_sham_resources);
454#else
455#define omap2_sham_resources NULL
456#define omap2_sham_resources_sz 0
457#endif
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300458
Dmitry Kasatkinedc774e2010-05-14 14:45:08 +1000459#ifdef CONFIG_ARCH_OMAP3
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800460static struct resource omap3_sham_resources[] = {
461 {
462 .start = OMAP34XX_SEC_SHA1MD5_BASE,
463 .end = OMAP34XX_SEC_SHA1MD5_BASE + 0x64,
464 .flags = IORESOURCE_MEM,
465 },
466 {
467 .start = INT_34XX_SHA1MD52_IRQ,
468 .flags = IORESOURCE_IRQ,
469 },
470 {
471 .start = OMAP34XX_DMA_SHA1MD5_RX,
472 .flags = IORESOURCE_DMA,
473 }
474};
475static int omap3_sham_resources_sz = ARRAY_SIZE(omap3_sham_resources);
476#else
477#define omap3_sham_resources NULL
478#define omap3_sham_resources_sz 0
479#endif
480
481static struct platform_device sham_device = {
482 .name = "omap-sham",
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300483 .id = -1,
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300484};
485
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800486static void omap_init_sham(void)
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300487{
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800488 if (cpu_is_omap24xx()) {
489 sham_device.resource = omap2_sham_resources;
490 sham_device.num_resources = omap2_sham_resources_sz;
491 } else if (cpu_is_omap34xx()) {
492 sham_device.resource = omap3_sham_resources;
493 sham_device.num_resources = omap3_sham_resources_sz;
494 } else {
495 pr_err("%s: platform not supported\n", __func__);
496 return;
497 }
498 platform_device_register(&sham_device);
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300499}
500#else
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800501static inline void omap_init_sham(void) { }
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300502#endif
503
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800504#if defined(CONFIG_CRYPTO_DEV_OMAP_AES) || defined(CONFIG_CRYPTO_DEV_OMAP_AES_MODULE)
505
Dmitry Kasatkin82a0c142010-08-20 13:44:46 +0000506#ifdef CONFIG_ARCH_OMAP2
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800507static struct resource omap2_aes_resources[] = {
508 {
509 .start = OMAP24XX_SEC_AES_BASE,
510 .end = OMAP24XX_SEC_AES_BASE + 0x4C,
511 .flags = IORESOURCE_MEM,
512 },
513 {
514 .start = OMAP24XX_DMA_AES_TX,
515 .flags = IORESOURCE_DMA,
516 },
517 {
518 .start = OMAP24XX_DMA_AES_RX,
519 .flags = IORESOURCE_DMA,
520 }
521};
522static int omap2_aes_resources_sz = ARRAY_SIZE(omap2_aes_resources);
523#else
524#define omap2_aes_resources NULL
525#define omap2_aes_resources_sz 0
526#endif
527
Dmitry Kasatkin82a0c142010-08-20 13:44:46 +0000528#ifdef CONFIG_ARCH_OMAP3
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800529static struct resource omap3_aes_resources[] = {
530 {
531 .start = OMAP34XX_SEC_AES_BASE,
532 .end = OMAP34XX_SEC_AES_BASE + 0x4C,
533 .flags = IORESOURCE_MEM,
534 },
535 {
536 .start = OMAP34XX_DMA_AES2_TX,
537 .flags = IORESOURCE_DMA,
538 },
539 {
540 .start = OMAP34XX_DMA_AES2_RX,
541 .flags = IORESOURCE_DMA,
542 }
543};
544static int omap3_aes_resources_sz = ARRAY_SIZE(omap3_aes_resources);
545#else
546#define omap3_aes_resources NULL
547#define omap3_aes_resources_sz 0
548#endif
549
550static struct platform_device aes_device = {
551 .name = "omap-aes",
552 .id = -1,
553};
554
555static void omap_init_aes(void)
556{
557 if (cpu_is_omap24xx()) {
558 aes_device.resource = omap2_aes_resources;
559 aes_device.num_resources = omap2_aes_resources_sz;
560 } else if (cpu_is_omap34xx()) {
561 aes_device.resource = omap3_aes_resources;
562 aes_device.num_resources = omap3_aes_resources_sz;
563 } else {
564 pr_err("%s: platform not supported\n", __func__);
565 return;
566 }
567 platform_device_register(&aes_device);
568}
569
570#else
571static inline void omap_init_aes(void) { }
572#endif
573
Tony Lindgrend8874662008-12-10 17:37:16 -0800574/*-------------------------------------------------------------------------*/
575
Anand Gadiyare08016d2011-03-01 13:12:55 -0800576#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
Kevin Hilman917fa282008-12-10 17:37:17 -0800577
Anand Gadiyare08016d2011-03-01 13:12:55 -0800578static inline void omap242x_mmc_mux(struct omap_mmc_platform_data
579 *mmc_controller)
Tony Lindgrend8874662008-12-10 17:37:16 -0800580{
stanley.miaoed8303fc2010-05-13 12:39:30 +0000581 if ((mmc_controller->slots[0].switch_pin > 0) && \
582 (mmc_controller->slots[0].switch_pin < OMAP_MAX_GPIO_LINES))
583 omap_mux_init_gpio(mmc_controller->slots[0].switch_pin,
584 OMAP_PIN_INPUT_PULLUP);
585 if ((mmc_controller->slots[0].gpio_wp > 0) && \
586 (mmc_controller->slots[0].gpio_wp < OMAP_MAX_GPIO_LINES))
587 omap_mux_init_gpio(mmc_controller->slots[0].gpio_wp,
588 OMAP_PIN_INPUT_PULLUP);
589
Anand Gadiyare08016d2011-03-01 13:12:55 -0800590 omap_mux_init_signal("sdmmc_cmd", 0);
591 omap_mux_init_signal("sdmmc_clki", 0);
592 omap_mux_init_signal("sdmmc_clko", 0);
593 omap_mux_init_signal("sdmmc_dat0", 0);
594 omap_mux_init_signal("sdmmc_dat_dir0", 0);
595 omap_mux_init_signal("sdmmc_cmd_dir", 0);
596 if (mmc_controller->slots[0].caps & MMC_CAP_4_BIT_DATA) {
597 omap_mux_init_signal("sdmmc_dat1", 0);
598 omap_mux_init_signal("sdmmc_dat2", 0);
599 omap_mux_init_signal("sdmmc_dat3", 0);
600 omap_mux_init_signal("sdmmc_dat_dir1", 0);
601 omap_mux_init_signal("sdmmc_dat_dir2", 0);
602 omap_mux_init_signal("sdmmc_dat_dir3", 0);
Tony Lindgrend8874662008-12-10 17:37:16 -0800603 }
Vikram Pandita57b9daa2009-08-28 11:24:11 -0700604
Anand Gadiyare08016d2011-03-01 13:12:55 -0800605 /*
606 * Use internal loop-back in MMC/SDIO Module Input Clock
607 * selection
608 */
609 if (mmc_controller->slots[0].internal_clock) {
610 u32 v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
611 v |= (1 << 24);
612 omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0);
Vikram Pandita57b9daa2009-08-28 11:24:11 -0700613 }
Tony Lindgrend8874662008-12-10 17:37:16 -0800614}
615
Anand Gadiyare08016d2011-03-01 13:12:55 -0800616void __init omap242x_init_mmc(struct omap_mmc_platform_data **mmc_data)
Tony Lindgrend8874662008-12-10 17:37:16 -0800617{
Anand Gadiyare08016d2011-03-01 13:12:55 -0800618 char *name = "mmci-omap";
Tony Lindgrend8874662008-12-10 17:37:16 -0800619
Anand Gadiyare08016d2011-03-01 13:12:55 -0800620 if (!mmc_data[0]) {
621 pr_err("%s fails: Incomplete platform data\n", __func__);
622 return;
623 }
Tony Lindgrend8874662008-12-10 17:37:16 -0800624
Anand Gadiyare08016d2011-03-01 13:12:55 -0800625 omap242x_mmc_mux(mmc_data[0]);
626 omap_mmc_add(name, 0, OMAP2_MMC1_BASE, OMAP2420_MMC_SIZE,
627 INT_24XX_MMC_IRQ, mmc_data[0]);
Tony Lindgrend8874662008-12-10 17:37:16 -0800628}
629
630#endif
631
632/*-------------------------------------------------------------------------*/
633
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300634#if defined(CONFIG_HDQ_MASTER_OMAP) || defined(CONFIG_HDQ_MASTER_OMAP_MODULE)
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300635#define OMAP_HDQ_BASE 0x480B2000
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300636static struct resource omap_hdq_resources[] = {
637 {
638 .start = OMAP_HDQ_BASE,
639 .end = OMAP_HDQ_BASE + 0x1C,
640 .flags = IORESOURCE_MEM,
641 },
642 {
643 .start = INT_24XX_HDQ_IRQ,
644 .flags = IORESOURCE_IRQ,
645 },
646};
647static struct platform_device omap_hdq_dev = {
648 .name = "omap_hdq",
649 .id = 0,
650 .dev = {
651 .platform_data = NULL,
652 },
653 .num_resources = ARRAY_SIZE(omap_hdq_resources),
654 .resource = omap_hdq_resources,
655};
656static inline void omap_hdq_init(void)
657{
Tony Lindgrene3a98fe2012-02-23 16:41:53 -0800658 if (cpu_is_omap2420())
659 return;
660
661 platform_device_register(&omap_hdq_dev);
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300662}
663#else
664static inline void omap_hdq_init(void) {}
665#endif
666
Vaibhav Hiremathb2273582010-05-10 14:29:14 -0700667/*---------------------------------------------------------------------------*/
668
669#if defined(CONFIG_VIDEO_OMAP2_VOUT) || \
670 defined(CONFIG_VIDEO_OMAP2_VOUT_MODULE)
671#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
672static struct resource omap_vout_resource[3 - CONFIG_FB_OMAP2_NUM_FBS] = {
673};
674#else
675static struct resource omap_vout_resource[2] = {
676};
677#endif
678
679static struct platform_device omap_vout_device = {
680 .name = "omap_vout",
681 .num_resources = ARRAY_SIZE(omap_vout_resource),
682 .resource = &omap_vout_resource[0],
683 .id = -1,
684};
685static void omap_init_vout(void)
686{
687 if (platform_device_register(&omap_vout_device) < 0)
688 printk(KERN_ERR "Unable to register OMAP-VOUT device\n");
689}
690#else
691static inline void omap_init_vout(void) {}
692#endif
693
Tony Lindgren1dbae812005-11-10 14:26:51 +0000694/*-------------------------------------------------------------------------*/
695
696static int __init omap2_init_devices(void)
697{
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -0700698 /*
699 * please keep these calls, and their implementations above,
Tony Lindgren1dbae812005-11-10 14:26:51 +0000700 * in alphabetical order so they're easier to sort through.
701 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000702 omap_init_audio();
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600703 omap_init_mcpdm();
Peter Ujfaluside9eb092011-12-13 10:48:54 -0800704 omap_init_dmic();
Tony Lindgren828c7072009-03-23 18:23:49 -0700705 omap_init_camera();
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800706 omap_init_mbox();
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700707 omap_init_mcspi();
Will Deacon88341332010-04-09 13:54:43 +0100708 omap_init_pmu();
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300709 omap_hdq_init();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100710 omap_init_sti();
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800711 omap_init_sham();
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800712 omap_init_aes();
Vaibhav Hiremathb2273582010-05-10 14:29:14 -0700713 omap_init_vout();
Tony Lindgren1dbae812005-11-10 14:26:51 +0000714
715 return 0;
716}
717arch_initcall(omap2_init_devices);
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530718
719#if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530720static int __init omap_init_wdt(void)
721{
722 int id = -1;
Kevin Hilman3528c582011-07-21 13:48:45 -0700723 struct platform_device *pdev;
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530724 struct omap_hwmod *oh;
725 char *oh_name = "wd_timer2";
726 char *dev_name = "omap_wdt";
727
728 if (!cpu_class_is_omap2())
729 return 0;
730
731 oh = omap_hwmod_lookup(oh_name);
732 if (!oh) {
733 pr_err("Could not look up wd_timer%d hwmod\n", id);
734 return -EINVAL;
735 }
736
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200737 pdev = omap_device_build(dev_name, id, oh, NULL, 0, NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700738 WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s.\n",
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530739 dev_name, oh->name);
740 return 0;
741}
742subsys_initcall(omap_init_wdt);
743#endif