blob: 68ec03152d5fc4e811842f4cb4c5c6e634a5fae5 [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>
Tony Lindgren1dbae812005-11-10 14:26:51 +000020
Russell Kinga09e64f2008-08-05 16:14:15 +010021#include <mach/hardware.h>
Will Deacon88341332010-04-09 13:54:43 +010022#include <mach/irqs.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000023#include <asm/mach-types.h>
24#include <asm/mach/map.h>
Will Deacon88341332010-04-09 13:54:43 +010025#include <asm/pmu.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000026
Tony Lindgrence491cf2009-10-20 09:40:47 -070027#include <plat/tc.h>
28#include <plat/board.h>
Jarkko Nikulaa09f73f2010-10-04 15:04:53 +030029#include <plat/mcbsp.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{
45 int l;
46 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
57 l = snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main");
58
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{
75 int l, i;
76 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 */
88 if (!(cpu_is_omap44xx()))
89 return -ENODEV;
90
91 for (i = 0; i < L3_MODULES; i++) {
92 l = snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main_%d", i+1);
93
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 Lindgrenc40fae92006-12-07 13:58:10 -0800109
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300110static struct resource omap2cam_resources[] = {
Tony Lindgrenc40fae92006-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 {
117 .start = INT_24XX_CAM_IRQ,
118 .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
130static struct resource omap3isp_resources[] = {
131 {
132 .start = OMAP3430_ISP_BASE,
133 .end = OMAP3430_ISP_END,
134 .flags = IORESOURCE_MEM,
135 },
136 {
Tony Lindgren828c7072009-03-23 18:23:49 -0700137 .start = OMAP3430_ISP_CCP2_BASE,
138 .end = OMAP3430_ISP_CCP2_END,
139 .flags = IORESOURCE_MEM,
140 },
141 {
142 .start = OMAP3430_ISP_CCDC_BASE,
143 .end = OMAP3430_ISP_CCDC_END,
144 .flags = IORESOURCE_MEM,
145 },
146 {
147 .start = OMAP3430_ISP_HIST_BASE,
148 .end = OMAP3430_ISP_HIST_END,
149 .flags = IORESOURCE_MEM,
150 },
151 {
152 .start = OMAP3430_ISP_H3A_BASE,
153 .end = OMAP3430_ISP_H3A_END,
154 .flags = IORESOURCE_MEM,
155 },
156 {
157 .start = OMAP3430_ISP_PREV_BASE,
158 .end = OMAP3430_ISP_PREV_END,
159 .flags = IORESOURCE_MEM,
160 },
161 {
162 .start = OMAP3430_ISP_RESZ_BASE,
163 .end = OMAP3430_ISP_RESZ_END,
164 .flags = IORESOURCE_MEM,
165 },
166 {
167 .start = OMAP3430_ISP_SBL_BASE,
168 .end = OMAP3430_ISP_SBL_END,
169 .flags = IORESOURCE_MEM,
170 },
171 {
Tuukka Toivonen6817a692010-02-02 11:17:33 -0300172 .start = OMAP3430_ISP_CSI2A_REGS1_BASE,
173 .end = OMAP3430_ISP_CSI2A_REGS1_END,
Tony Lindgren828c7072009-03-23 18:23:49 -0700174 .flags = IORESOURCE_MEM,
175 },
176 {
Tuukka Toivonen6817a692010-02-02 11:17:33 -0300177 .start = OMAP3430_ISP_CSIPHY2_BASE,
178 .end = OMAP3430_ISP_CSIPHY2_END,
179 .flags = IORESOURCE_MEM,
180 },
181 {
182 .start = OMAP3630_ISP_CSI2A_REGS2_BASE,
183 .end = OMAP3630_ISP_CSI2A_REGS2_END,
184 .flags = IORESOURCE_MEM,
185 },
186 {
187 .start = OMAP3630_ISP_CSI2C_REGS1_BASE,
188 .end = OMAP3630_ISP_CSI2C_REGS1_END,
189 .flags = IORESOURCE_MEM,
190 },
191 {
192 .start = OMAP3630_ISP_CSIPHY1_BASE,
193 .end = OMAP3630_ISP_CSIPHY1_END,
194 .flags = IORESOURCE_MEM,
195 },
196 {
197 .start = OMAP3630_ISP_CSI2C_REGS2_BASE,
198 .end = OMAP3630_ISP_CSI2C_REGS2_END,
Tony Lindgren828c7072009-03-23 18:23:49 -0700199 .flags = IORESOURCE_MEM,
200 },
201 {
202 .start = INT_34XX_CAM_IRQ,
203 .flags = IORESOURCE_IRQ,
204 }
205};
206
207static struct platform_device omap3isp_device = {
208 .name = "omap3isp",
209 .id = -1,
210 .num_resources = ARRAY_SIZE(omap3isp_resources),
211 .resource = omap3isp_resources,
212};
213
Laurent Pincharta11f6702009-12-14 08:09:07 -0300214int omap3_init_camera(struct isp_platform_data *pdata)
Tony Lindgren828c7072009-03-23 18:23:49 -0700215{
Laurent Pincharta11f6702009-12-14 08:09:07 -0300216 omap3isp_device.dev.platform_data = pdata;
217 return platform_device_register(&omap3isp_device);
Tony Lindgren828c7072009-03-23 18:23:49 -0700218}
Tony Lindgren828c7072009-03-23 18:23:49 -0700219
Tony Lindgren1dbae812005-11-10 14:26:51 +0000220static inline void omap_init_camera(void)
221{
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300222#if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
223 if (cpu_is_omap24xx())
224 platform_device_register(&omap2cam_device);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000225#endif
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300226}
Tony Lindgren1dbae812005-11-10 14:26:51 +0000227
Syed Rafiuddin59556762010-12-27 05:51:45 +0000228int __init omap4_keyboard_init(struct omap4_keypad_platform_data
Shubhrajyoti Dattaf67df6c2011-07-05 03:38:24 -0700229 *sdp4430_keypad_data, struct omap_board_data *bdata)
Syed Rafiuddin59556762010-12-27 05:51:45 +0000230{
Kevin Hilman3528c582011-07-21 13:48:45 -0700231 struct platform_device *pdev;
Syed Rafiuddin59556762010-12-27 05:51:45 +0000232 struct omap_hwmod *oh;
233 struct omap4_keypad_platform_data *keypad_data;
234 unsigned int id = -1;
235 char *oh_name = "kbd";
236 char *name = "omap4-keypad";
237
238 oh = omap_hwmod_lookup(oh_name);
239 if (!oh) {
240 pr_err("Could not look up %s\n", oh_name);
241 return -ENODEV;
242 }
243
244 keypad_data = sdp4430_keypad_data;
245
Kevin Hilman3528c582011-07-21 13:48:45 -0700246 pdev = omap_device_build(name, id, oh, keypad_data,
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200247 sizeof(struct omap4_keypad_platform_data), NULL, 0, 0);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000248
Kevin Hilman3528c582011-07-21 13:48:45 -0700249 if (IS_ERR(pdev)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300250 WARN(1, "Can't build omap_device for %s:%s.\n",
Syed Rafiuddin59556762010-12-27 05:51:45 +0000251 name, oh->name);
Kevin Hilman3528c582011-07-21 13:48:45 -0700252 return PTR_ERR(pdev);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000253 }
Shubhrajyoti Dattaf67df6c2011-07-05 03:38:24 -0700254 oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000255
256 return 0;
257}
258
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700259#if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE)
Tony Lindgrenc40fae92006-12-07 13:58:10 -0800260static inline void omap_init_mbox(void)
261{
Felipe Contreras69dbf852011-02-24 12:51:33 -0800262 struct omap_hwmod *oh;
Kevin Hilman3528c582011-07-21 13:48:45 -0700263 struct platform_device *pdev;
Felipe Contreras69dbf852011-02-24 12:51:33 -0800264
265 oh = omap_hwmod_lookup("mailbox");
266 if (!oh) {
267 pr_err("%s: unable to find hwmod\n", __func__);
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700268 return;
269 }
Felipe Contreras69dbf852011-02-24 12:51:33 -0800270
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200271 pdev = omap_device_build("omap-mailbox", -1, oh, NULL, 0, NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700272 WARN(IS_ERR(pdev), "%s: could not build device, err %ld\n",
273 __func__, PTR_ERR(pdev));
Tony Lindgrenc40fae92006-12-07 13:58:10 -0800274}
275#else
276static inline void omap_init_mbox(void) { }
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700277#endif /* CONFIG_OMAP_MBOX_FWK */
Tony Lindgrenc40fae92006-12-07 13:58:10 -0800278
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100279static inline void omap_init_sti(void) {}
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100280
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000281#if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
282
283static struct platform_device omap_pcm = {
284 .name = "omap-pcm-audio",
285 .id = -1,
286};
287
288/*
289 * OMAP2420 has 2 McBSP ports
290 * OMAP2430 has 5 McBSP ports
291 * OMAP3 has 5 McBSP ports
292 * OMAP4 has 4 McBSP ports
293 */
294OMAP_MCBSP_PLATFORM_DEVICE(1);
295OMAP_MCBSP_PLATFORM_DEVICE(2);
296OMAP_MCBSP_PLATFORM_DEVICE(3);
297OMAP_MCBSP_PLATFORM_DEVICE(4);
298OMAP_MCBSP_PLATFORM_DEVICE(5);
299
300static void omap_init_audio(void)
301{
302 platform_device_register(&omap_mcbsp1);
303 platform_device_register(&omap_mcbsp2);
304 if (cpu_is_omap243x() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
305 platform_device_register(&omap_mcbsp3);
306 platform_device_register(&omap_mcbsp4);
307 }
308 if (cpu_is_omap243x() || cpu_is_omap34xx())
309 platform_device_register(&omap_mcbsp5);
310
311 platform_device_register(&omap_pcm);
312}
313
314#else
315static inline void omap_init_audio(void) {}
316#endif
317
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600318#if defined(CONFIG_SND_OMAP_SOC_MCPDM) || \
319 defined(CONFIG_SND_OMAP_SOC_MCPDM_MODULE)
320
321static struct omap_device_pm_latency omap_mcpdm_latency[] = {
322 {
323 .deactivate_func = omap_device_idle_hwmods,
324 .activate_func = omap_device_enable_hwmods,
325 .flags = OMAP_DEVICE_LATENCY_AUTO_ADJUST,
326 },
327};
328
329static void omap_init_mcpdm(void)
330{
331 struct omap_hwmod *oh;
332 struct omap_device *od;
333
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
340 od = omap_device_build("omap-mcpdm", -1, oh, NULL, 0,
341 omap_mcpdm_latency,
342 ARRAY_SIZE(omap_mcpdm_latency), 0);
343 if (IS_ERR(od))
344 printk(KERN_ERR "Could not build omap_device for omap-mcpdm-dai\n");
345}
346#else
347static inline void omap_init_mcpdm(void) {}
348#endif
349
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300350#if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700351
Tony Lindgrence491cf2009-10-20 09:40:47 -0700352#include <plat/mcspi.h>
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700353
Charulatha V1a5d8192011-02-02 17:52:14 +0530354static int omap_mcspi_init(struct omap_hwmod *oh, void *unused)
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700355{
Kevin Hilman3528c582011-07-21 13:48:45 -0700356 struct platform_device *pdev;
Charulatha V1a5d8192011-02-02 17:52:14 +0530357 char *name = "omap2_mcspi";
358 struct omap2_mcspi_platform_config *pdata;
359 static int spi_num;
360 struct omap2_mcspi_dev_attr *mcspi_attrib = oh->dev_attr;
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700361
Charulatha V1a5d8192011-02-02 17:52:14 +0530362 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
363 if (!pdata) {
364 pr_err("Memory allocation for McSPI device failed\n");
365 return -ENOMEM;
366 }
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700367
Charulatha V1a5d8192011-02-02 17:52:14 +0530368 pdata->num_cs = mcspi_attrib->num_chipselect;
369 switch (oh->class->rev) {
370 case OMAP2_MCSPI_REV:
371 case OMAP3_MCSPI_REV:
372 pdata->regs_offset = 0;
373 break;
374 case OMAP4_MCSPI_REV:
375 pdata->regs_offset = OMAP4_MCSPI_REG_OFFSET;
376 break;
377 default:
378 pr_err("Invalid McSPI Revision value\n");
379 return -EINVAL;
380 }
381
382 spi_num++;
Kevin Hilman3528c582011-07-21 13:48:45 -0700383 pdev = omap_device_build(name, spi_num, oh, pdata,
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200384 sizeof(*pdata), NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700385 WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s\n",
Charulatha V1a5d8192011-02-02 17:52:14 +0530386 name, oh->name);
387 kfree(pdata);
388 return 0;
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700389}
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700390
391static void omap_init_mcspi(void)
392{
Charulatha V1a5d8192011-02-02 17:52:14 +0530393 omap_hwmod_for_each_by_class("mcspi", omap_mcspi_init, NULL);
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700394}
395
396#else
397static inline void omap_init_mcspi(void) {}
398#endif
399
Will Deacon88341332010-04-09 13:54:43 +0100400static struct resource omap2_pmu_resource = {
401 .start = 3,
402 .end = 3,
403 .flags = IORESOURCE_IRQ,
404};
405
406static struct resource omap3_pmu_resource = {
407 .start = INT_34XX_BENCH_MPU_EMUL,
408 .end = INT_34XX_BENCH_MPU_EMUL,
409 .flags = IORESOURCE_IRQ,
410};
411
412static struct platform_device omap_pmu_device = {
413 .name = "arm-pmu",
414 .id = ARM_PMU_DEVICE_CPU,
415 .num_resources = 1,
416};
417
418static void omap_init_pmu(void)
419{
420 if (cpu_is_omap24xx())
421 omap_pmu_device.resource = &omap2_pmu_resource;
422 else if (cpu_is_omap34xx())
423 omap_pmu_device.resource = &omap3_pmu_resource;
424 else
425 return;
426
427 platform_device_register(&omap_pmu_device);
428}
429
430
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800431#if defined(CONFIG_CRYPTO_DEV_OMAP_SHAM) || defined(CONFIG_CRYPTO_DEV_OMAP_SHAM_MODULE)
432
Dmitry Kasatkinedc774e2010-05-14 14:45:08 +1000433#ifdef CONFIG_ARCH_OMAP2
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800434static struct resource omap2_sham_resources[] = {
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300435 {
436 .start = OMAP24XX_SEC_SHA1MD5_BASE,
437 .end = OMAP24XX_SEC_SHA1MD5_BASE + 0x64,
438 .flags = IORESOURCE_MEM,
439 },
440 {
441 .start = INT_24XX_SHA1MD5,
442 .flags = IORESOURCE_IRQ,
443 }
444};
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800445static int omap2_sham_resources_sz = ARRAY_SIZE(omap2_sham_resources);
446#else
447#define omap2_sham_resources NULL
448#define omap2_sham_resources_sz 0
449#endif
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300450
Dmitry Kasatkinedc774e2010-05-14 14:45:08 +1000451#ifdef CONFIG_ARCH_OMAP3
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800452static struct resource omap3_sham_resources[] = {
453 {
454 .start = OMAP34XX_SEC_SHA1MD5_BASE,
455 .end = OMAP34XX_SEC_SHA1MD5_BASE + 0x64,
456 .flags = IORESOURCE_MEM,
457 },
458 {
459 .start = INT_34XX_SHA1MD52_IRQ,
460 .flags = IORESOURCE_IRQ,
461 },
462 {
463 .start = OMAP34XX_DMA_SHA1MD5_RX,
464 .flags = IORESOURCE_DMA,
465 }
466};
467static int omap3_sham_resources_sz = ARRAY_SIZE(omap3_sham_resources);
468#else
469#define omap3_sham_resources NULL
470#define omap3_sham_resources_sz 0
471#endif
472
473static struct platform_device sham_device = {
474 .name = "omap-sham",
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300475 .id = -1,
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300476};
477
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800478static void omap_init_sham(void)
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300479{
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800480 if (cpu_is_omap24xx()) {
481 sham_device.resource = omap2_sham_resources;
482 sham_device.num_resources = omap2_sham_resources_sz;
483 } else if (cpu_is_omap34xx()) {
484 sham_device.resource = omap3_sham_resources;
485 sham_device.num_resources = omap3_sham_resources_sz;
486 } else {
487 pr_err("%s: platform not supported\n", __func__);
488 return;
489 }
490 platform_device_register(&sham_device);
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300491}
492#else
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800493static inline void omap_init_sham(void) { }
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300494#endif
495
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800496#if defined(CONFIG_CRYPTO_DEV_OMAP_AES) || defined(CONFIG_CRYPTO_DEV_OMAP_AES_MODULE)
497
Dmitry Kasatkin82a0c142010-08-20 13:44:46 +0000498#ifdef CONFIG_ARCH_OMAP2
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800499static struct resource omap2_aes_resources[] = {
500 {
501 .start = OMAP24XX_SEC_AES_BASE,
502 .end = OMAP24XX_SEC_AES_BASE + 0x4C,
503 .flags = IORESOURCE_MEM,
504 },
505 {
506 .start = OMAP24XX_DMA_AES_TX,
507 .flags = IORESOURCE_DMA,
508 },
509 {
510 .start = OMAP24XX_DMA_AES_RX,
511 .flags = IORESOURCE_DMA,
512 }
513};
514static int omap2_aes_resources_sz = ARRAY_SIZE(omap2_aes_resources);
515#else
516#define omap2_aes_resources NULL
517#define omap2_aes_resources_sz 0
518#endif
519
Dmitry Kasatkin82a0c142010-08-20 13:44:46 +0000520#ifdef CONFIG_ARCH_OMAP3
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800521static struct resource omap3_aes_resources[] = {
522 {
523 .start = OMAP34XX_SEC_AES_BASE,
524 .end = OMAP34XX_SEC_AES_BASE + 0x4C,
525 .flags = IORESOURCE_MEM,
526 },
527 {
528 .start = OMAP34XX_DMA_AES2_TX,
529 .flags = IORESOURCE_DMA,
530 },
531 {
532 .start = OMAP34XX_DMA_AES2_RX,
533 .flags = IORESOURCE_DMA,
534 }
535};
536static int omap3_aes_resources_sz = ARRAY_SIZE(omap3_aes_resources);
537#else
538#define omap3_aes_resources NULL
539#define omap3_aes_resources_sz 0
540#endif
541
542static struct platform_device aes_device = {
543 .name = "omap-aes",
544 .id = -1,
545};
546
547static void omap_init_aes(void)
548{
549 if (cpu_is_omap24xx()) {
550 aes_device.resource = omap2_aes_resources;
551 aes_device.num_resources = omap2_aes_resources_sz;
552 } else if (cpu_is_omap34xx()) {
553 aes_device.resource = omap3_aes_resources;
554 aes_device.num_resources = omap3_aes_resources_sz;
555 } else {
556 pr_err("%s: platform not supported\n", __func__);
557 return;
558 }
559 platform_device_register(&aes_device);
560}
561
562#else
563static inline void omap_init_aes(void) { }
564#endif
565
Tony Lindgrend8874662008-12-10 17:37:16 -0800566/*-------------------------------------------------------------------------*/
567
Anand Gadiyare08016d2011-03-01 13:12:55 -0800568#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
Kevin Hilman917fa282008-12-10 17:37:17 -0800569
Anand Gadiyare08016d2011-03-01 13:12:55 -0800570static inline void omap242x_mmc_mux(struct omap_mmc_platform_data
571 *mmc_controller)
Tony Lindgrend8874662008-12-10 17:37:16 -0800572{
stanley.miaoed8303fc2010-05-13 12:39:30 +0000573 if ((mmc_controller->slots[0].switch_pin > 0) && \
574 (mmc_controller->slots[0].switch_pin < OMAP_MAX_GPIO_LINES))
575 omap_mux_init_gpio(mmc_controller->slots[0].switch_pin,
576 OMAP_PIN_INPUT_PULLUP);
577 if ((mmc_controller->slots[0].gpio_wp > 0) && \
578 (mmc_controller->slots[0].gpio_wp < OMAP_MAX_GPIO_LINES))
579 omap_mux_init_gpio(mmc_controller->slots[0].gpio_wp,
580 OMAP_PIN_INPUT_PULLUP);
581
Anand Gadiyare08016d2011-03-01 13:12:55 -0800582 omap_mux_init_signal("sdmmc_cmd", 0);
583 omap_mux_init_signal("sdmmc_clki", 0);
584 omap_mux_init_signal("sdmmc_clko", 0);
585 omap_mux_init_signal("sdmmc_dat0", 0);
586 omap_mux_init_signal("sdmmc_dat_dir0", 0);
587 omap_mux_init_signal("sdmmc_cmd_dir", 0);
588 if (mmc_controller->slots[0].caps & MMC_CAP_4_BIT_DATA) {
589 omap_mux_init_signal("sdmmc_dat1", 0);
590 omap_mux_init_signal("sdmmc_dat2", 0);
591 omap_mux_init_signal("sdmmc_dat3", 0);
592 omap_mux_init_signal("sdmmc_dat_dir1", 0);
593 omap_mux_init_signal("sdmmc_dat_dir2", 0);
594 omap_mux_init_signal("sdmmc_dat_dir3", 0);
Tony Lindgrend8874662008-12-10 17:37:16 -0800595 }
Vikram Pandita57b9daa2009-08-28 11:24:11 -0700596
Anand Gadiyare08016d2011-03-01 13:12:55 -0800597 /*
598 * Use internal loop-back in MMC/SDIO Module Input Clock
599 * selection
600 */
601 if (mmc_controller->slots[0].internal_clock) {
602 u32 v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
603 v |= (1 << 24);
604 omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0);
Vikram Pandita57b9daa2009-08-28 11:24:11 -0700605 }
Tony Lindgrend8874662008-12-10 17:37:16 -0800606}
607
Anand Gadiyare08016d2011-03-01 13:12:55 -0800608void __init omap242x_init_mmc(struct omap_mmc_platform_data **mmc_data)
Tony Lindgrend8874662008-12-10 17:37:16 -0800609{
Anand Gadiyare08016d2011-03-01 13:12:55 -0800610 char *name = "mmci-omap";
Tony Lindgrend8874662008-12-10 17:37:16 -0800611
Anand Gadiyare08016d2011-03-01 13:12:55 -0800612 if (!mmc_data[0]) {
613 pr_err("%s fails: Incomplete platform data\n", __func__);
614 return;
615 }
Tony Lindgrend8874662008-12-10 17:37:16 -0800616
Anand Gadiyare08016d2011-03-01 13:12:55 -0800617 omap242x_mmc_mux(mmc_data[0]);
618 omap_mmc_add(name, 0, OMAP2_MMC1_BASE, OMAP2420_MMC_SIZE,
619 INT_24XX_MMC_IRQ, mmc_data[0]);
Tony Lindgrend8874662008-12-10 17:37:16 -0800620}
621
622#endif
623
624/*-------------------------------------------------------------------------*/
625
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300626#if defined(CONFIG_HDQ_MASTER_OMAP) || defined(CONFIG_HDQ_MASTER_OMAP_MODULE)
Tony Lindgren59b479e2011-01-27 16:39:40 -0800627#if defined(CONFIG_SOC_OMAP2430) || defined(CONFIG_SOC_OMAP3430)
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300628#define OMAP_HDQ_BASE 0x480B2000
629#endif
630static struct resource omap_hdq_resources[] = {
631 {
632 .start = OMAP_HDQ_BASE,
633 .end = OMAP_HDQ_BASE + 0x1C,
634 .flags = IORESOURCE_MEM,
635 },
636 {
637 .start = INT_24XX_HDQ_IRQ,
638 .flags = IORESOURCE_IRQ,
639 },
640};
641static struct platform_device omap_hdq_dev = {
642 .name = "omap_hdq",
643 .id = 0,
644 .dev = {
645 .platform_data = NULL,
646 },
647 .num_resources = ARRAY_SIZE(omap_hdq_resources),
648 .resource = omap_hdq_resources,
649};
650static inline void omap_hdq_init(void)
651{
652 (void) platform_device_register(&omap_hdq_dev);
653}
654#else
655static inline void omap_hdq_init(void) {}
656#endif
657
Vaibhav Hiremathb2273582010-05-10 14:29:14 -0700658/*---------------------------------------------------------------------------*/
659
660#if defined(CONFIG_VIDEO_OMAP2_VOUT) || \
661 defined(CONFIG_VIDEO_OMAP2_VOUT_MODULE)
662#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
663static struct resource omap_vout_resource[3 - CONFIG_FB_OMAP2_NUM_FBS] = {
664};
665#else
666static struct resource omap_vout_resource[2] = {
667};
668#endif
669
670static struct platform_device omap_vout_device = {
671 .name = "omap_vout",
672 .num_resources = ARRAY_SIZE(omap_vout_resource),
673 .resource = &omap_vout_resource[0],
674 .id = -1,
675};
676static void omap_init_vout(void)
677{
678 if (platform_device_register(&omap_vout_device) < 0)
679 printk(KERN_ERR "Unable to register OMAP-VOUT device\n");
680}
681#else
682static inline void omap_init_vout(void) {}
683#endif
684
Tony Lindgren1dbae812005-11-10 14:26:51 +0000685/*-------------------------------------------------------------------------*/
686
687static int __init omap2_init_devices(void)
688{
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -0700689 /*
690 * please keep these calls, and their implementations above,
Tony Lindgren1dbae812005-11-10 14:26:51 +0000691 * in alphabetical order so they're easier to sort through.
692 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000693 omap_init_audio();
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600694 omap_init_mcpdm();
Tony Lindgren828c7072009-03-23 18:23:49 -0700695 omap_init_camera();
Tony Lindgrenc40fae92006-12-07 13:58:10 -0800696 omap_init_mbox();
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700697 omap_init_mcspi();
Will Deacon88341332010-04-09 13:54:43 +0100698 omap_init_pmu();
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300699 omap_hdq_init();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100700 omap_init_sti();
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800701 omap_init_sham();
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800702 omap_init_aes();
Vaibhav Hiremathb2273582010-05-10 14:29:14 -0700703 omap_init_vout();
Tony Lindgren1dbae812005-11-10 14:26:51 +0000704
705 return 0;
706}
707arch_initcall(omap2_init_devices);
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530708
709#if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530710static int __init omap_init_wdt(void)
711{
712 int id = -1;
Kevin Hilman3528c582011-07-21 13:48:45 -0700713 struct platform_device *pdev;
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530714 struct omap_hwmod *oh;
715 char *oh_name = "wd_timer2";
716 char *dev_name = "omap_wdt";
717
718 if (!cpu_class_is_omap2())
719 return 0;
720
721 oh = omap_hwmod_lookup(oh_name);
722 if (!oh) {
723 pr_err("Could not look up wd_timer%d hwmod\n", id);
724 return -EINVAL;
725 }
726
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200727 pdev = omap_device_build(dev_name, id, oh, NULL, 0, NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700728 WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s.\n",
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530729 dev_name, oh->name);
730 return 0;
731}
732subsys_initcall(omap_init_wdt);
733#endif