blob: 3f0b143cb37bc1f4d498d0c7ded62c1603e9d63c [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 */
11
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>
Tony Lindgren1dbae812005-11-10 14:26:51 +000019
Russell Kinga09e64f2008-08-05 16:14:15 +010020#include <mach/hardware.h>
Will Deacon88341332010-04-09 13:54:43 +010021#include <mach/irqs.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000022#include <asm/mach-types.h>
23#include <asm/mach/map.h>
Will Deacon88341332010-04-09 13:54:43 +010024#include <asm/pmu.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000025
Tony Lindgrence491cf2009-10-20 09:40:47 -070026#include <plat/tc.h>
27#include <plat/board.h>
Jarkko Nikulaa09f73f2010-10-04 15:04:53 +030028#include <plat/mcbsp.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/gpio.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;
47 struct omap_device *od;
48 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
64 od = omap_device_build("omap_l3_smx", 0, oh, NULL, 0,
65 NULL, 0, 0);
66
67 WARN(IS_ERR(od), "could not build omap_device for %s\n", oh_name);
68
Aaro Koskinen36133862011-03-18 16:53:19 -070069 return IS_ERR(od) ? PTR_ERR(od) : 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];
77 struct omap_device *od;
78 char oh_name[L3_MODULES_MAX_LEN];
79
80 /*
81 * To avoid code running on other OMAPs in
82 * multi-omap builds
83 */
84 if (!(cpu_is_omap44xx()))
85 return -ENODEV;
86
87 for (i = 0; i < L3_MODULES; i++) {
88 l = snprintf(oh_name, L3_MODULES_MAX_LEN, "l3_main_%d", i+1);
89
90 oh[i] = omap_hwmod_lookup(oh_name);
91 if (!(oh[i]))
92 pr_err("could not look up %s\n", oh_name);
93 }
94
95 od = omap_device_build_ss("omap_l3_noc", 0, oh, 3, NULL,
96 0, NULL, 0, 0);
97
98 WARN(IS_ERR(od), "could not build omap_device for %s\n", oh_name);
99
Rabin Vincent1499f2d2011-05-07 22:28:47 +0530100 return IS_ERR(od) ? PTR_ERR(od) : 0;
sricharana4dc6162011-03-09 16:00:29 +0530101}
102postcore_initcall(omap4_l3_init);
103
Tony Lindgren828c7072009-03-23 18:23:49 -0700104#if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800105
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300106static struct resource omap2cam_resources[] = {
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800107 {
Tony Lindgren828c7072009-03-23 18:23:49 -0700108 .start = OMAP24XX_CAMERA_BASE,
109 .end = OMAP24XX_CAMERA_BASE + 0xfff,
110 .flags = IORESOURCE_MEM,
111 },
112 {
113 .start = INT_24XX_CAM_IRQ,
114 .flags = IORESOURCE_IRQ,
115 }
116};
117
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300118static struct platform_device omap2cam_device = {
Tony Lindgren828c7072009-03-23 18:23:49 -0700119 .name = "omap24xxcam",
120 .id = -1,
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300121 .num_resources = ARRAY_SIZE(omap2cam_resources),
122 .resource = omap2cam_resources,
Tony Lindgren828c7072009-03-23 18:23:49 -0700123};
Laurent Pincharta11f6702009-12-14 08:09:07 -0300124#endif
Tony Lindgren828c7072009-03-23 18:23:49 -0700125
126static struct resource omap3isp_resources[] = {
127 {
128 .start = OMAP3430_ISP_BASE,
129 .end = OMAP3430_ISP_END,
130 .flags = IORESOURCE_MEM,
131 },
132 {
Tony Lindgren828c7072009-03-23 18:23:49 -0700133 .start = OMAP3430_ISP_CCP2_BASE,
134 .end = OMAP3430_ISP_CCP2_END,
135 .flags = IORESOURCE_MEM,
136 },
137 {
138 .start = OMAP3430_ISP_CCDC_BASE,
139 .end = OMAP3430_ISP_CCDC_END,
140 .flags = IORESOURCE_MEM,
141 },
142 {
143 .start = OMAP3430_ISP_HIST_BASE,
144 .end = OMAP3430_ISP_HIST_END,
145 .flags = IORESOURCE_MEM,
146 },
147 {
148 .start = OMAP3430_ISP_H3A_BASE,
149 .end = OMAP3430_ISP_H3A_END,
150 .flags = IORESOURCE_MEM,
151 },
152 {
153 .start = OMAP3430_ISP_PREV_BASE,
154 .end = OMAP3430_ISP_PREV_END,
155 .flags = IORESOURCE_MEM,
156 },
157 {
158 .start = OMAP3430_ISP_RESZ_BASE,
159 .end = OMAP3430_ISP_RESZ_END,
160 .flags = IORESOURCE_MEM,
161 },
162 {
163 .start = OMAP3430_ISP_SBL_BASE,
164 .end = OMAP3430_ISP_SBL_END,
165 .flags = IORESOURCE_MEM,
166 },
167 {
Tuukka Toivonen6817a692010-02-02 11:17:33 -0300168 .start = OMAP3430_ISP_CSI2A_REGS1_BASE,
169 .end = OMAP3430_ISP_CSI2A_REGS1_END,
Tony Lindgren828c7072009-03-23 18:23:49 -0700170 .flags = IORESOURCE_MEM,
171 },
172 {
Tuukka Toivonen6817a692010-02-02 11:17:33 -0300173 .start = OMAP3430_ISP_CSIPHY2_BASE,
174 .end = OMAP3430_ISP_CSIPHY2_END,
175 .flags = IORESOURCE_MEM,
176 },
177 {
178 .start = OMAP3630_ISP_CSI2A_REGS2_BASE,
179 .end = OMAP3630_ISP_CSI2A_REGS2_END,
180 .flags = IORESOURCE_MEM,
181 },
182 {
183 .start = OMAP3630_ISP_CSI2C_REGS1_BASE,
184 .end = OMAP3630_ISP_CSI2C_REGS1_END,
185 .flags = IORESOURCE_MEM,
186 },
187 {
188 .start = OMAP3630_ISP_CSIPHY1_BASE,
189 .end = OMAP3630_ISP_CSIPHY1_END,
190 .flags = IORESOURCE_MEM,
191 },
192 {
193 .start = OMAP3630_ISP_CSI2C_REGS2_BASE,
194 .end = OMAP3630_ISP_CSI2C_REGS2_END,
Tony Lindgren828c7072009-03-23 18:23:49 -0700195 .flags = IORESOURCE_MEM,
196 },
197 {
198 .start = INT_34XX_CAM_IRQ,
199 .flags = IORESOURCE_IRQ,
200 }
201};
202
203static struct platform_device omap3isp_device = {
204 .name = "omap3isp",
205 .id = -1,
206 .num_resources = ARRAY_SIZE(omap3isp_resources),
207 .resource = omap3isp_resources,
208};
209
Laurent Pincharta11f6702009-12-14 08:09:07 -0300210int omap3_init_camera(struct isp_platform_data *pdata)
Tony Lindgren828c7072009-03-23 18:23:49 -0700211{
Laurent Pincharta11f6702009-12-14 08:09:07 -0300212 omap3isp_device.dev.platform_data = pdata;
213 return platform_device_register(&omap3isp_device);
Tony Lindgren828c7072009-03-23 18:23:49 -0700214}
Tony Lindgren828c7072009-03-23 18:23:49 -0700215
Tony Lindgren1dbae812005-11-10 14:26:51 +0000216static inline void omap_init_camera(void)
217{
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300218#if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
219 if (cpu_is_omap24xx())
220 platform_device_register(&omap2cam_device);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000221#endif
Sergio Aguirrecfe2cde2010-11-15 11:29:54 -0300222}
Tony Lindgren1dbae812005-11-10 14:26:51 +0000223
Syed Rafiuddin59556762010-12-27 05:51:45 +0000224struct omap_device_pm_latency omap_keyboard_latency[] = {
225 {
226 .deactivate_func = omap_device_idle_hwmods,
227 .activate_func = omap_device_enable_hwmods,
228 .flags = OMAP_DEVICE_LATENCY_AUTO_ADJUST,
229 },
230};
231
232int __init omap4_keyboard_init(struct omap4_keypad_platform_data
Shubhrajyoti Dattaf67df6c2011-07-05 03:38:24 -0700233 *sdp4430_keypad_data, struct omap_board_data *bdata)
Syed Rafiuddin59556762010-12-27 05:51:45 +0000234{
235 struct omap_device *od;
236 struct omap_hwmod *oh;
237 struct omap4_keypad_platform_data *keypad_data;
238 unsigned int id = -1;
239 char *oh_name = "kbd";
240 char *name = "omap4-keypad";
241
242 oh = omap_hwmod_lookup(oh_name);
243 if (!oh) {
244 pr_err("Could not look up %s\n", oh_name);
245 return -ENODEV;
246 }
247
248 keypad_data = sdp4430_keypad_data;
249
250 od = omap_device_build(name, id, oh, keypad_data,
251 sizeof(struct omap4_keypad_platform_data),
252 omap_keyboard_latency,
253 ARRAY_SIZE(omap_keyboard_latency), 0);
254
255 if (IS_ERR(od)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300256 WARN(1, "Can't build omap_device for %s:%s.\n",
Syed Rafiuddin59556762010-12-27 05:51:45 +0000257 name, oh->name);
258 return PTR_ERR(od);
259 }
Shubhrajyoti Dattaf67df6c2011-07-05 03:38:24 -0700260 oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt);
Syed Rafiuddin59556762010-12-27 05:51:45 +0000261
262 return 0;
263}
264
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700265#if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE)
Felipe Contreras69dbf852011-02-24 12:51:33 -0800266static struct omap_device_pm_latency mbox_latencies[] = {
267 [0] = {
268 .activate_func = omap_device_enable_hwmods,
269 .deactivate_func = omap_device_idle_hwmods,
270 .flags = OMAP_DEVICE_LATENCY_AUTO_ADJUST,
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800271 },
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800272};
273
274static inline void omap_init_mbox(void)
275{
Felipe Contreras69dbf852011-02-24 12:51:33 -0800276 struct omap_hwmod *oh;
277 struct omap_device *od;
278
279 oh = omap_hwmod_lookup("mailbox");
280 if (!oh) {
281 pr_err("%s: unable to find hwmod\n", __func__);
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700282 return;
283 }
Felipe Contreras69dbf852011-02-24 12:51:33 -0800284
285 od = omap_device_build("omap-mailbox", -1, oh, NULL, 0,
286 mbox_latencies, ARRAY_SIZE(mbox_latencies), 0);
287 WARN(IS_ERR(od), "%s: could not build device, err %ld\n",
288 __func__, PTR_ERR(od));
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800289}
290#else
291static inline void omap_init_mbox(void) { }
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700292#endif /* CONFIG_OMAP_MBOX_FWK */
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800293
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100294static inline void omap_init_sti(void) {}
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100295
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000296#if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
297
298static struct platform_device omap_pcm = {
299 .name = "omap-pcm-audio",
300 .id = -1,
301};
302
303/*
304 * OMAP2420 has 2 McBSP ports
305 * OMAP2430 has 5 McBSP ports
306 * OMAP3 has 5 McBSP ports
307 * OMAP4 has 4 McBSP ports
308 */
309OMAP_MCBSP_PLATFORM_DEVICE(1);
310OMAP_MCBSP_PLATFORM_DEVICE(2);
311OMAP_MCBSP_PLATFORM_DEVICE(3);
312OMAP_MCBSP_PLATFORM_DEVICE(4);
313OMAP_MCBSP_PLATFORM_DEVICE(5);
314
315static void omap_init_audio(void)
316{
317 platform_device_register(&omap_mcbsp1);
318 platform_device_register(&omap_mcbsp2);
319 if (cpu_is_omap243x() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
320 platform_device_register(&omap_mcbsp3);
321 platform_device_register(&omap_mcbsp4);
322 }
323 if (cpu_is_omap243x() || cpu_is_omap34xx())
324 platform_device_register(&omap_mcbsp5);
325
326 platform_device_register(&omap_pcm);
327}
328
329#else
330static inline void omap_init_audio(void) {}
331#endif
332
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600333#if defined(CONFIG_SND_OMAP_SOC_MCPDM) || \
334 defined(CONFIG_SND_OMAP_SOC_MCPDM_MODULE)
335
336static struct omap_device_pm_latency omap_mcpdm_latency[] = {
337 {
338 .deactivate_func = omap_device_idle_hwmods,
339 .activate_func = omap_device_enable_hwmods,
340 .flags = OMAP_DEVICE_LATENCY_AUTO_ADJUST,
341 },
342};
343
344static void omap_init_mcpdm(void)
345{
346 struct omap_hwmod *oh;
347 struct omap_device *od;
348
349 oh = omap_hwmod_lookup("mcpdm");
350 if (!oh) {
351 printk(KERN_ERR "Could not look up mcpdm hw_mod\n");
352 return;
353 }
354
355 od = omap_device_build("omap-mcpdm", -1, oh, NULL, 0,
356 omap_mcpdm_latency,
357 ARRAY_SIZE(omap_mcpdm_latency), 0);
358 if (IS_ERR(od))
359 printk(KERN_ERR "Could not build omap_device for omap-mcpdm-dai\n");
360}
361#else
362static inline void omap_init_mcpdm(void) {}
363#endif
364
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300365#if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700366
Tony Lindgrence491cf2009-10-20 09:40:47 -0700367#include <plat/mcspi.h>
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700368
Charulatha V1a5d8192011-02-02 17:52:14 +0530369struct omap_device_pm_latency omap_mcspi_latency[] = {
370 [0] = {
371 .deactivate_func = omap_device_idle_hwmods,
372 .activate_func = omap_device_enable_hwmods,
373 .flags = OMAP_DEVICE_LATENCY_AUTO_ADJUST,
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800374 },
375};
376
Charulatha V1a5d8192011-02-02 17:52:14 +0530377static int omap_mcspi_init(struct omap_hwmod *oh, void *unused)
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700378{
Charulatha V1a5d8192011-02-02 17:52:14 +0530379 struct omap_device *od;
380 char *name = "omap2_mcspi";
381 struct omap2_mcspi_platform_config *pdata;
382 static int spi_num;
383 struct omap2_mcspi_dev_attr *mcspi_attrib = oh->dev_attr;
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700384
Charulatha V1a5d8192011-02-02 17:52:14 +0530385 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
386 if (!pdata) {
387 pr_err("Memory allocation for McSPI device failed\n");
388 return -ENOMEM;
389 }
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700390
Charulatha V1a5d8192011-02-02 17:52:14 +0530391 pdata->num_cs = mcspi_attrib->num_chipselect;
392 switch (oh->class->rev) {
393 case OMAP2_MCSPI_REV:
394 case OMAP3_MCSPI_REV:
395 pdata->regs_offset = 0;
396 break;
397 case OMAP4_MCSPI_REV:
398 pdata->regs_offset = OMAP4_MCSPI_REG_OFFSET;
399 break;
400 default:
401 pr_err("Invalid McSPI Revision value\n");
402 return -EINVAL;
403 }
404
405 spi_num++;
406 od = omap_device_build(name, spi_num, oh, pdata,
407 sizeof(*pdata), omap_mcspi_latency,
408 ARRAY_SIZE(omap_mcspi_latency), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300409 WARN(IS_ERR(od), "Can't build omap_device for %s:%s\n",
Charulatha V1a5d8192011-02-02 17:52:14 +0530410 name, oh->name);
411 kfree(pdata);
412 return 0;
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700413}
Tony Lindgrenaf41a122009-09-24 16:23:05 -0700414
415static void omap_init_mcspi(void)
416{
Charulatha V1a5d8192011-02-02 17:52:14 +0530417 omap_hwmod_for_each_by_class("mcspi", omap_mcspi_init, NULL);
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700418}
419
420#else
421static inline void omap_init_mcspi(void) {}
422#endif
423
Will Deacon88341332010-04-09 13:54:43 +0100424static struct resource omap2_pmu_resource = {
425 .start = 3,
426 .end = 3,
427 .flags = IORESOURCE_IRQ,
428};
429
430static struct resource omap3_pmu_resource = {
431 .start = INT_34XX_BENCH_MPU_EMUL,
432 .end = INT_34XX_BENCH_MPU_EMUL,
433 .flags = IORESOURCE_IRQ,
434};
435
436static struct platform_device omap_pmu_device = {
437 .name = "arm-pmu",
438 .id = ARM_PMU_DEVICE_CPU,
439 .num_resources = 1,
440};
441
442static void omap_init_pmu(void)
443{
444 if (cpu_is_omap24xx())
445 omap_pmu_device.resource = &omap2_pmu_resource;
446 else if (cpu_is_omap34xx())
447 omap_pmu_device.resource = &omap3_pmu_resource;
448 else
449 return;
450
451 platform_device_register(&omap_pmu_device);
452}
453
454
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800455#if defined(CONFIG_CRYPTO_DEV_OMAP_SHAM) || defined(CONFIG_CRYPTO_DEV_OMAP_SHAM_MODULE)
456
Dmitry Kasatkinedc774e2010-05-14 14:45:08 +1000457#ifdef CONFIG_ARCH_OMAP2
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800458static struct resource omap2_sham_resources[] = {
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300459 {
460 .start = OMAP24XX_SEC_SHA1MD5_BASE,
461 .end = OMAP24XX_SEC_SHA1MD5_BASE + 0x64,
462 .flags = IORESOURCE_MEM,
463 },
464 {
465 .start = INT_24XX_SHA1MD5,
466 .flags = IORESOURCE_IRQ,
467 }
468};
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800469static int omap2_sham_resources_sz = ARRAY_SIZE(omap2_sham_resources);
470#else
471#define omap2_sham_resources NULL
472#define omap2_sham_resources_sz 0
473#endif
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300474
Dmitry Kasatkinedc774e2010-05-14 14:45:08 +1000475#ifdef CONFIG_ARCH_OMAP3
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800476static struct resource omap3_sham_resources[] = {
477 {
478 .start = OMAP34XX_SEC_SHA1MD5_BASE,
479 .end = OMAP34XX_SEC_SHA1MD5_BASE + 0x64,
480 .flags = IORESOURCE_MEM,
481 },
482 {
483 .start = INT_34XX_SHA1MD52_IRQ,
484 .flags = IORESOURCE_IRQ,
485 },
486 {
487 .start = OMAP34XX_DMA_SHA1MD5_RX,
488 .flags = IORESOURCE_DMA,
489 }
490};
491static int omap3_sham_resources_sz = ARRAY_SIZE(omap3_sham_resources);
492#else
493#define omap3_sham_resources NULL
494#define omap3_sham_resources_sz 0
495#endif
496
497static struct platform_device sham_device = {
498 .name = "omap-sham",
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300499 .id = -1,
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300500};
501
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800502static void omap_init_sham(void)
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300503{
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800504 if (cpu_is_omap24xx()) {
505 sham_device.resource = omap2_sham_resources;
506 sham_device.num_resources = omap2_sham_resources_sz;
507 } else if (cpu_is_omap34xx()) {
508 sham_device.resource = omap3_sham_resources;
509 sham_device.num_resources = omap3_sham_resources_sz;
510 } else {
511 pr_err("%s: platform not supported\n", __func__);
512 return;
513 }
514 platform_device_register(&sham_device);
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300515}
516#else
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800517static inline void omap_init_sham(void) { }
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300518#endif
519
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800520#if defined(CONFIG_CRYPTO_DEV_OMAP_AES) || defined(CONFIG_CRYPTO_DEV_OMAP_AES_MODULE)
521
Dmitry Kasatkin82a0c142010-08-20 13:44:46 +0000522#ifdef CONFIG_ARCH_OMAP2
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800523static struct resource omap2_aes_resources[] = {
524 {
525 .start = OMAP24XX_SEC_AES_BASE,
526 .end = OMAP24XX_SEC_AES_BASE + 0x4C,
527 .flags = IORESOURCE_MEM,
528 },
529 {
530 .start = OMAP24XX_DMA_AES_TX,
531 .flags = IORESOURCE_DMA,
532 },
533 {
534 .start = OMAP24XX_DMA_AES_RX,
535 .flags = IORESOURCE_DMA,
536 }
537};
538static int omap2_aes_resources_sz = ARRAY_SIZE(omap2_aes_resources);
539#else
540#define omap2_aes_resources NULL
541#define omap2_aes_resources_sz 0
542#endif
543
Dmitry Kasatkin82a0c142010-08-20 13:44:46 +0000544#ifdef CONFIG_ARCH_OMAP3
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800545static struct resource omap3_aes_resources[] = {
546 {
547 .start = OMAP34XX_SEC_AES_BASE,
548 .end = OMAP34XX_SEC_AES_BASE + 0x4C,
549 .flags = IORESOURCE_MEM,
550 },
551 {
552 .start = OMAP34XX_DMA_AES2_TX,
553 .flags = IORESOURCE_DMA,
554 },
555 {
556 .start = OMAP34XX_DMA_AES2_RX,
557 .flags = IORESOURCE_DMA,
558 }
559};
560static int omap3_aes_resources_sz = ARRAY_SIZE(omap3_aes_resources);
561#else
562#define omap3_aes_resources NULL
563#define omap3_aes_resources_sz 0
564#endif
565
566static struct platform_device aes_device = {
567 .name = "omap-aes",
568 .id = -1,
569};
570
571static void omap_init_aes(void)
572{
573 if (cpu_is_omap24xx()) {
574 aes_device.resource = omap2_aes_resources;
575 aes_device.num_resources = omap2_aes_resources_sz;
576 } else if (cpu_is_omap34xx()) {
577 aes_device.resource = omap3_aes_resources;
578 aes_device.num_resources = omap3_aes_resources_sz;
579 } else {
580 pr_err("%s: platform not supported\n", __func__);
581 return;
582 }
583 platform_device_register(&aes_device);
584}
585
586#else
587static inline void omap_init_aes(void) { }
588#endif
589
Tony Lindgrend8874662008-12-10 17:37:16 -0800590/*-------------------------------------------------------------------------*/
591
Anand Gadiyare08016d2011-03-01 13:12:55 -0800592#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
Kevin Hilman917fa282008-12-10 17:37:17 -0800593
Anand Gadiyare08016d2011-03-01 13:12:55 -0800594static inline void omap242x_mmc_mux(struct omap_mmc_platform_data
595 *mmc_controller)
Tony Lindgrend8874662008-12-10 17:37:16 -0800596{
stanley.miaoed8303fc2010-05-13 12:39:30 +0000597 if ((mmc_controller->slots[0].switch_pin > 0) && \
598 (mmc_controller->slots[0].switch_pin < OMAP_MAX_GPIO_LINES))
599 omap_mux_init_gpio(mmc_controller->slots[0].switch_pin,
600 OMAP_PIN_INPUT_PULLUP);
601 if ((mmc_controller->slots[0].gpio_wp > 0) && \
602 (mmc_controller->slots[0].gpio_wp < OMAP_MAX_GPIO_LINES))
603 omap_mux_init_gpio(mmc_controller->slots[0].gpio_wp,
604 OMAP_PIN_INPUT_PULLUP);
605
Anand Gadiyare08016d2011-03-01 13:12:55 -0800606 omap_mux_init_signal("sdmmc_cmd", 0);
607 omap_mux_init_signal("sdmmc_clki", 0);
608 omap_mux_init_signal("sdmmc_clko", 0);
609 omap_mux_init_signal("sdmmc_dat0", 0);
610 omap_mux_init_signal("sdmmc_dat_dir0", 0);
611 omap_mux_init_signal("sdmmc_cmd_dir", 0);
612 if (mmc_controller->slots[0].caps & MMC_CAP_4_BIT_DATA) {
613 omap_mux_init_signal("sdmmc_dat1", 0);
614 omap_mux_init_signal("sdmmc_dat2", 0);
615 omap_mux_init_signal("sdmmc_dat3", 0);
616 omap_mux_init_signal("sdmmc_dat_dir1", 0);
617 omap_mux_init_signal("sdmmc_dat_dir2", 0);
618 omap_mux_init_signal("sdmmc_dat_dir3", 0);
Tony Lindgrend8874662008-12-10 17:37:16 -0800619 }
Vikram Pandita57b9daa2009-08-28 11:24:11 -0700620
Anand Gadiyare08016d2011-03-01 13:12:55 -0800621 /*
622 * Use internal loop-back in MMC/SDIO Module Input Clock
623 * selection
624 */
625 if (mmc_controller->slots[0].internal_clock) {
626 u32 v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
627 v |= (1 << 24);
628 omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0);
Vikram Pandita57b9daa2009-08-28 11:24:11 -0700629 }
Tony Lindgrend8874662008-12-10 17:37:16 -0800630}
631
Anand Gadiyare08016d2011-03-01 13:12:55 -0800632void __init omap242x_init_mmc(struct omap_mmc_platform_data **mmc_data)
Tony Lindgrend8874662008-12-10 17:37:16 -0800633{
Anand Gadiyare08016d2011-03-01 13:12:55 -0800634 char *name = "mmci-omap";
Tony Lindgrend8874662008-12-10 17:37:16 -0800635
Anand Gadiyare08016d2011-03-01 13:12:55 -0800636 if (!mmc_data[0]) {
637 pr_err("%s fails: Incomplete platform data\n", __func__);
638 return;
639 }
Tony Lindgrend8874662008-12-10 17:37:16 -0800640
Anand Gadiyare08016d2011-03-01 13:12:55 -0800641 omap242x_mmc_mux(mmc_data[0]);
642 omap_mmc_add(name, 0, OMAP2_MMC1_BASE, OMAP2420_MMC_SIZE,
643 INT_24XX_MMC_IRQ, mmc_data[0]);
Tony Lindgrend8874662008-12-10 17:37:16 -0800644}
645
646#endif
647
648/*-------------------------------------------------------------------------*/
649
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300650#if defined(CONFIG_HDQ_MASTER_OMAP) || defined(CONFIG_HDQ_MASTER_OMAP_MODULE)
Tony Lindgren59b479e2011-01-27 16:39:40 -0800651#if defined(CONFIG_SOC_OMAP2430) || defined(CONFIG_SOC_OMAP3430)
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300652#define OMAP_HDQ_BASE 0x480B2000
653#endif
654static struct resource omap_hdq_resources[] = {
655 {
656 .start = OMAP_HDQ_BASE,
657 .end = OMAP_HDQ_BASE + 0x1C,
658 .flags = IORESOURCE_MEM,
659 },
660 {
661 .start = INT_24XX_HDQ_IRQ,
662 .flags = IORESOURCE_IRQ,
663 },
664};
665static struct platform_device omap_hdq_dev = {
666 .name = "omap_hdq",
667 .id = 0,
668 .dev = {
669 .platform_data = NULL,
670 },
671 .num_resources = ARRAY_SIZE(omap_hdq_resources),
672 .resource = omap_hdq_resources,
673};
674static inline void omap_hdq_init(void)
675{
676 (void) platform_device_register(&omap_hdq_dev);
677}
678#else
679static inline void omap_hdq_init(void) {}
680#endif
681
Vaibhav Hiremathb2273582010-05-10 14:29:14 -0700682/*---------------------------------------------------------------------------*/
683
684#if defined(CONFIG_VIDEO_OMAP2_VOUT) || \
685 defined(CONFIG_VIDEO_OMAP2_VOUT_MODULE)
686#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
687static struct resource omap_vout_resource[3 - CONFIG_FB_OMAP2_NUM_FBS] = {
688};
689#else
690static struct resource omap_vout_resource[2] = {
691};
692#endif
693
694static struct platform_device omap_vout_device = {
695 .name = "omap_vout",
696 .num_resources = ARRAY_SIZE(omap_vout_resource),
697 .resource = &omap_vout_resource[0],
698 .id = -1,
699};
700static void omap_init_vout(void)
701{
702 if (platform_device_register(&omap_vout_device) < 0)
703 printk(KERN_ERR "Unable to register OMAP-VOUT device\n");
704}
705#else
706static inline void omap_init_vout(void) {}
707#endif
708
Tony Lindgren1dbae812005-11-10 14:26:51 +0000709/*-------------------------------------------------------------------------*/
710
711static int __init omap2_init_devices(void)
712{
Paul Walmsley81fbc5ef2010-12-21 19:56:17 -0700713 /*
714 * please keep these calls, and their implementations above,
Tony Lindgren1dbae812005-11-10 14:26:51 +0000715 * in alphabetical order so they're easier to sort through.
716 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000717 omap_init_audio();
Peter Ujfalusid231f5c2011-02-12 22:28:56 -0600718 omap_init_mcpdm();
Tony Lindgren828c7072009-03-23 18:23:49 -0700719 omap_init_camera();
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800720 omap_init_mbox();
Juha Yrjolaed7eb9d2006-06-26 16:16:10 -0700721 omap_init_mcspi();
Will Deacon88341332010-04-09 13:54:43 +0100722 omap_init_pmu();
Tony Lindgren646e3ed2008-10-06 15:49:36 +0300723 omap_hdq_init();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100724 omap_init_sti();
Dmitry Kasatkinee5500c2010-05-03 11:10:03 +0800725 omap_init_sham();
Dmitry Kasatkinb744c672010-09-03 19:13:55 +0800726 omap_init_aes();
Vaibhav Hiremathb2273582010-05-10 14:29:14 -0700727 omap_init_vout();
Tony Lindgren1dbae812005-11-10 14:26:51 +0000728
729 return 0;
730}
731arch_initcall(omap2_init_devices);
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530732
733#if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
Nishanth Menona9b365b2011-01-06 19:49:29 -0800734static struct omap_device_pm_latency omap_wdt_latency[] = {
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530735 [0] = {
736 .deactivate_func = omap_device_idle_hwmods,
737 .activate_func = omap_device_enable_hwmods,
738 .flags = OMAP_DEVICE_LATENCY_AUTO_ADJUST,
739 },
740};
741
742static int __init omap_init_wdt(void)
743{
744 int id = -1;
745 struct omap_device *od;
746 struct omap_hwmod *oh;
747 char *oh_name = "wd_timer2";
748 char *dev_name = "omap_wdt";
749
750 if (!cpu_class_is_omap2())
751 return 0;
752
753 oh = omap_hwmod_lookup(oh_name);
754 if (!oh) {
755 pr_err("Could not look up wd_timer%d hwmod\n", id);
756 return -EINVAL;
757 }
758
759 od = omap_device_build(dev_name, id, oh, NULL, 0,
760 omap_wdt_latency,
761 ARRAY_SIZE(omap_wdt_latency), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300762 WARN(IS_ERR(od), "Can't build omap_device for %s:%s.\n",
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530763 dev_name, oh->name);
764 return 0;
765}
766subsys_initcall(omap_init_wdt);
767#endif