OMAP3: PM: Enable system control module autoidle
[deliverable/linux.git] / arch / arm / mach-omap2 / devices.c
CommitLineData
1dbae815
TL
1/*
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
1dbae815
TL
12#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/platform_device.h>
fced80c7 16#include <linux/io.h>
917fa280 17#include <linux/clk.h>
1dbae815 18
a09e64fb 19#include <mach/hardware.h>
1dbae815
TL
20#include <asm/mach-types.h>
21#include <asm/mach/map.h>
22
ce491cf8
TL
23#include <plat/control.h>
24#include <plat/tc.h>
25#include <plat/board.h>
26#include <plat/mux.h>
a09e64fb 27#include <mach/gpio.h>
ce491cf8 28#include <plat/mmc.h>
1dbae815 29
4896e394
TL
30#include "mux.h"
31
828c707e 32#if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
c40fae95 33
828c707e 34static struct resource cam_resources[] = {
c40fae95 35 {
828c707e
TL
36 .start = OMAP24XX_CAMERA_BASE,
37 .end = OMAP24XX_CAMERA_BASE + 0xfff,
38 .flags = IORESOURCE_MEM,
39 },
40 {
41 .start = INT_24XX_CAM_IRQ,
42 .flags = IORESOURCE_IRQ,
43 }
44};
45
46static struct platform_device omap_cam_device = {
47 .name = "omap24xxcam",
48 .id = -1,
49 .num_resources = ARRAY_SIZE(cam_resources),
50 .resource = cam_resources,
51};
52
53static inline void omap_init_camera(void)
54{
55 platform_device_register(&omap_cam_device);
56}
57
58#elif defined(CONFIG_VIDEO_OMAP3) || defined(CONFIG_VIDEO_OMAP3_MODULE)
59
60static struct resource omap3isp_resources[] = {
61 {
62 .start = OMAP3430_ISP_BASE,
63 .end = OMAP3430_ISP_END,
64 .flags = IORESOURCE_MEM,
65 },
66 {
67 .start = OMAP3430_ISP_CBUFF_BASE,
68 .end = OMAP3430_ISP_CBUFF_END,
69 .flags = IORESOURCE_MEM,
70 },
71 {
72 .start = OMAP3430_ISP_CCP2_BASE,
73 .end = OMAP3430_ISP_CCP2_END,
74 .flags = IORESOURCE_MEM,
75 },
76 {
77 .start = OMAP3430_ISP_CCDC_BASE,
78 .end = OMAP3430_ISP_CCDC_END,
79 .flags = IORESOURCE_MEM,
80 },
81 {
82 .start = OMAP3430_ISP_HIST_BASE,
83 .end = OMAP3430_ISP_HIST_END,
84 .flags = IORESOURCE_MEM,
85 },
86 {
87 .start = OMAP3430_ISP_H3A_BASE,
88 .end = OMAP3430_ISP_H3A_END,
89 .flags = IORESOURCE_MEM,
90 },
91 {
92 .start = OMAP3430_ISP_PREV_BASE,
93 .end = OMAP3430_ISP_PREV_END,
94 .flags = IORESOURCE_MEM,
95 },
96 {
97 .start = OMAP3430_ISP_RESZ_BASE,
98 .end = OMAP3430_ISP_RESZ_END,
99 .flags = IORESOURCE_MEM,
100 },
101 {
102 .start = OMAP3430_ISP_SBL_BASE,
103 .end = OMAP3430_ISP_SBL_END,
104 .flags = IORESOURCE_MEM,
105 },
106 {
107 .start = OMAP3430_ISP_CSI2A_BASE,
108 .end = OMAP3430_ISP_CSI2A_END,
109 .flags = IORESOURCE_MEM,
110 },
111 {
112 .start = OMAP3430_ISP_CSI2PHY_BASE,
113 .end = OMAP3430_ISP_CSI2PHY_END,
114 .flags = IORESOURCE_MEM,
115 },
116 {
117 .start = INT_34XX_CAM_IRQ,
118 .flags = IORESOURCE_IRQ,
119 }
120};
121
122static struct platform_device omap3isp_device = {
123 .name = "omap3isp",
124 .id = -1,
125 .num_resources = ARRAY_SIZE(omap3isp_resources),
126 .resource = omap3isp_resources,
127};
128
129static inline void omap_init_camera(void)
130{
131 platform_device_register(&omap3isp_device);
132}
133#else
134static inline void omap_init_camera(void)
135{
136}
137#endif
138
6c20a683 139#if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE)
c40fae95 140
454bf340 141#define MBOX_REG_SIZE 0x120
6c20a683 142
454bf340
S
143#ifdef CONFIG_ARCH_OMAP2
144static struct resource omap_mbox_resources[] = {
c40fae95 145 {
6c20a683
HD
146 .start = OMAP24XX_MAILBOX_BASE,
147 .end = OMAP24XX_MAILBOX_BASE + MBOX_REG_SIZE - 1,
c40fae95
TL
148 .flags = IORESOURCE_MEM,
149 },
150 {
151 .start = INT_24XX_MAIL_U0_MPU,
152 .flags = IORESOURCE_IRQ,
153 },
154 {
155 .start = INT_24XX_MAIL_U3_MPU,
156 .flags = IORESOURCE_IRQ,
157 },
158};
454bf340 159#endif
c40fae95 160
454bf340
S
161#ifdef CONFIG_ARCH_OMAP3
162static struct resource omap_mbox_resources[] = {
6c20a683
HD
163 {
164 .start = OMAP34XX_MAILBOX_BASE,
165 .end = OMAP34XX_MAILBOX_BASE + MBOX_REG_SIZE - 1,
166 .flags = IORESOURCE_MEM,
167 },
168 {
169 .start = INT_24XX_MAIL_U0_MPU,
170 .flags = IORESOURCE_IRQ,
171 },
172};
454bf340
S
173#endif
174
175#ifdef CONFIG_ARCH_OMAP4
176
177#define OMAP4_MBOX_REG_SIZE 0x130
178static struct resource omap_mbox_resources[] = {
179 {
180 .start = OMAP44XX_MAILBOX_BASE,
181 .end = OMAP44XX_MAILBOX_BASE +
182 OMAP4_MBOX_REG_SIZE - 1,
183 .flags = IORESOURCE_MEM,
184 },
185 {
186 .start = INT_44XX_MAIL_U0_MPU,
187 .flags = IORESOURCE_IRQ,
188 },
189};
190#endif
6c20a683 191
c40fae95 192static struct platform_device mbox_device = {
da8cfe03 193 .name = "omap2-mailbox",
c40fae95 194 .id = -1,
c40fae95
TL
195};
196
197static inline void omap_init_mbox(void)
198{
454bf340
S
199 if (cpu_is_omap2420() || cpu_is_omap3430() || cpu_is_omap44xx()) {
200 mbox_device.num_resources = ARRAY_SIZE(omap_mbox_resources);
201 mbox_device.resource = omap_mbox_resources;
6c20a683
HD
202 } else {
203 pr_err("%s: platform not supported\n", __func__);
204 return;
205 }
c40fae95
TL
206 platform_device_register(&mbox_device);
207}
208#else
209static inline void omap_init_mbox(void) { }
6c20a683 210#endif /* CONFIG_OMAP_MBOX_FWK */
c40fae95 211
9b6553cd
TL
212#if defined(CONFIG_OMAP_STI)
213
646e3ed1
TL
214#if defined(CONFIG_ARCH_OMAP2)
215
216#define OMAP2_STI_BASE 0x48068000
9b6553cd
TL
217#define OMAP2_STI_CHANNEL_BASE 0x54000000
218#define OMAP2_STI_IRQ 4
219
220static struct resource sti_resources[] = {
221 {
222 .start = OMAP2_STI_BASE,
223 .end = OMAP2_STI_BASE + 0x7ff,
224 .flags = IORESOURCE_MEM,
225 },
226 {
227 .start = OMAP2_STI_CHANNEL_BASE,
228 .end = OMAP2_STI_CHANNEL_BASE + SZ_64K - 1,
229 .flags = IORESOURCE_MEM,
230 },
231 {
232 .start = OMAP2_STI_IRQ,
233 .flags = IORESOURCE_IRQ,
234 }
235};
646e3ed1
TL
236#elif defined(CONFIG_ARCH_OMAP3)
237
238#define OMAP3_SDTI_BASE 0x54500000
239#define OMAP3_SDTI_CHANNEL_BASE 0x54600000
240
241static struct resource sti_resources[] = {
242 {
243 .start = OMAP3_SDTI_BASE,
244 .end = OMAP3_SDTI_BASE + 0xFFF,
245 .flags = IORESOURCE_MEM,
246 },
247 {
248 .start = OMAP3_SDTI_CHANNEL_BASE,
249 .end = OMAP3_SDTI_CHANNEL_BASE + SZ_1M - 1,
250 .flags = IORESOURCE_MEM,
251 }
252};
253
254#endif
9b6553cd
TL
255
256static struct platform_device sti_device = {
257 .name = "sti",
258 .id = -1,
9b6553cd
TL
259 .num_resources = ARRAY_SIZE(sti_resources),
260 .resource = sti_resources,
261};
262
263static inline void omap_init_sti(void)
264{
265 platform_device_register(&sti_device);
266}
267#else
268static inline void omap_init_sti(void) {}
269#endif
270
646e3ed1 271#if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
ed7eb9d9 272
ce491cf8 273#include <plat/mcspi.h>
ed7eb9d9
JY
274
275#define OMAP2_MCSPI1_BASE 0x48098000
276#define OMAP2_MCSPI2_BASE 0x4809a000
646e3ed1
TL
277#define OMAP2_MCSPI3_BASE 0x480b8000
278#define OMAP2_MCSPI4_BASE 0x480ba000
ed7eb9d9 279
7869c0b9
SR
280#define OMAP4_MCSPI1_BASE 0x48098100
281#define OMAP4_MCSPI2_BASE 0x4809a100
282#define OMAP4_MCSPI3_BASE 0x480b8100
283#define OMAP4_MCSPI4_BASE 0x480ba100
284
ed7eb9d9 285static struct omap2_mcspi_platform_config omap2_mcspi1_config = {
ed7eb9d9
JY
286 .num_cs = 4,
287};
288
c40fae95
TL
289static struct resource omap2_mcspi1_resources[] = {
290 {
291 .start = OMAP2_MCSPI1_BASE,
292 .end = OMAP2_MCSPI1_BASE + 0xff,
293 .flags = IORESOURCE_MEM,
294 },
295};
296
646e3ed1 297static struct platform_device omap2_mcspi1 = {
ed7eb9d9
JY
298 .name = "omap2_mcspi",
299 .id = 1,
c40fae95
TL
300 .num_resources = ARRAY_SIZE(omap2_mcspi1_resources),
301 .resource = omap2_mcspi1_resources,
ed7eb9d9
JY
302 .dev = {
303 .platform_data = &omap2_mcspi1_config,
304 },
305};
306
307static struct omap2_mcspi_platform_config omap2_mcspi2_config = {
ed7eb9d9
JY
308 .num_cs = 2,
309};
310
c40fae95
TL
311static struct resource omap2_mcspi2_resources[] = {
312 {
313 .start = OMAP2_MCSPI2_BASE,
314 .end = OMAP2_MCSPI2_BASE + 0xff,
315 .flags = IORESOURCE_MEM,
316 },
317};
318
646e3ed1 319static struct platform_device omap2_mcspi2 = {
ed7eb9d9
JY
320 .name = "omap2_mcspi",
321 .id = 2,
c40fae95
TL
322 .num_resources = ARRAY_SIZE(omap2_mcspi2_resources),
323 .resource = omap2_mcspi2_resources,
ed7eb9d9
JY
324 .dev = {
325 .platform_data = &omap2_mcspi2_config,
326 },
327};
328
7869c0b9
SR
329#if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP3) || \
330 defined(CONFIG_ARCH_OMAP4)
646e3ed1
TL
331static struct omap2_mcspi_platform_config omap2_mcspi3_config = {
332 .num_cs = 2,
333};
334
335static struct resource omap2_mcspi3_resources[] = {
336 {
337 .start = OMAP2_MCSPI3_BASE,
338 .end = OMAP2_MCSPI3_BASE + 0xff,
339 .flags = IORESOURCE_MEM,
340 },
341};
342
343static struct platform_device omap2_mcspi3 = {
344 .name = "omap2_mcspi",
345 .id = 3,
346 .num_resources = ARRAY_SIZE(omap2_mcspi3_resources),
347 .resource = omap2_mcspi3_resources,
348 .dev = {
349 .platform_data = &omap2_mcspi3_config,
350 },
351};
352#endif
353
7869c0b9 354#if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
646e3ed1
TL
355static struct omap2_mcspi_platform_config omap2_mcspi4_config = {
356 .num_cs = 1,
357};
358
359static struct resource omap2_mcspi4_resources[] = {
360 {
361 .start = OMAP2_MCSPI4_BASE,
362 .end = OMAP2_MCSPI4_BASE + 0xff,
363 .flags = IORESOURCE_MEM,
364 },
365};
366
367static struct platform_device omap2_mcspi4 = {
368 .name = "omap2_mcspi",
369 .id = 4,
370 .num_resources = ARRAY_SIZE(omap2_mcspi4_resources),
371 .resource = omap2_mcspi4_resources,
372 .dev = {
373 .platform_data = &omap2_mcspi4_config,
374 },
375};
376#endif
377
af41a12f
TL
378#ifdef CONFIG_ARCH_OMAP4
379static inline void omap4_mcspi_fixup(void)
ed7eb9d9 380{
af41a12f
TL
381 omap2_mcspi1_resources[0].start = OMAP4_MCSPI1_BASE;
382 omap2_mcspi1_resources[0].end = OMAP4_MCSPI1_BASE + 0xff;
383 omap2_mcspi2_resources[0].start = OMAP4_MCSPI2_BASE;
384 omap2_mcspi2_resources[0].end = OMAP4_MCSPI2_BASE + 0xff;
385 omap2_mcspi3_resources[0].start = OMAP4_MCSPI3_BASE;
386 omap2_mcspi3_resources[0].end = OMAP4_MCSPI3_BASE + 0xff;
387 omap2_mcspi4_resources[0].start = OMAP4_MCSPI4_BASE;
388 omap2_mcspi4_resources[0].end = OMAP4_MCSPI4_BASE + 0xff;
389}
390#else
391static inline void omap4_mcspi_fixup(void)
392{
393}
394#endif
395
7869c0b9
SR
396#if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP3) || \
397 defined(CONFIG_ARCH_OMAP4)
af41a12f
TL
398static inline void omap2_mcspi3_init(void)
399{
400 platform_device_register(&omap2_mcspi3);
401}
402#else
403static inline void omap2_mcspi3_init(void)
404{
405}
646e3ed1 406#endif
af41a12f 407
7869c0b9 408#if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
af41a12f
TL
409static inline void omap2_mcspi4_init(void)
410{
411 platform_device_register(&omap2_mcspi4);
412}
413#else
414static inline void omap2_mcspi4_init(void)
415{
416}
646e3ed1 417#endif
af41a12f
TL
418
419static void omap_init_mcspi(void)
420{
421 if (cpu_is_omap44xx())
422 omap4_mcspi_fixup();
423
424 platform_device_register(&omap2_mcspi1);
425 platform_device_register(&omap2_mcspi2);
426
427 if (cpu_is_omap2430() || cpu_is_omap343x() || cpu_is_omap44xx())
428 omap2_mcspi3_init();
429
430 if (cpu_is_omap343x() || cpu_is_omap44xx())
431 omap2_mcspi4_init();
ed7eb9d9
JY
432}
433
434#else
435static inline void omap_init_mcspi(void) {}
436#endif
437
646e3ed1
TL
438#ifdef CONFIG_OMAP_SHA1_MD5
439static struct resource sha1_md5_resources[] = {
440 {
441 .start = OMAP24XX_SEC_SHA1MD5_BASE,
442 .end = OMAP24XX_SEC_SHA1MD5_BASE + 0x64,
443 .flags = IORESOURCE_MEM,
444 },
445 {
446 .start = INT_24XX_SHA1MD5,
447 .flags = IORESOURCE_IRQ,
448 }
449};
450
451static struct platform_device sha1_md5_device = {
452 .name = "OMAP SHA1/MD5",
453 .id = -1,
454 .num_resources = ARRAY_SIZE(sha1_md5_resources),
455 .resource = sha1_md5_resources,
456};
457
458static void omap_init_sha1_md5(void)
459{
460 platform_device_register(&sha1_md5_device);
461}
462#else
463static inline void omap_init_sha1_md5(void) { }
464#endif
465
d8874665
TL
466/*-------------------------------------------------------------------------*/
467
82cf818d 468#if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
917fa280
KH
469
470#define MMCHS_SYSCONFIG 0x0010
471#define MMCHS_SYSCONFIG_SWRESET (1 << 1)
472#define MMCHS_SYSSTATUS 0x0014
473#define MMCHS_SYSSTATUS_RESETDONE (1 << 0)
474
475static struct platform_device dummy_pdev = {
476 .dev = {
477 .bus = &platform_bus_type,
478 },
479};
480
481/**
482 * omap_hsmmc_reset() - Full reset of each HS-MMC controller
483 *
484 * Ensure that each MMC controller is fully reset. Controllers
485 * left in an unknown state (by bootloader) may prevent retention
486 * or OFF-mode. This is especially important in cases where the
487 * MMC driver is not enabled, _or_ built as a module.
488 *
489 * In order for reset to work, interface, functional and debounce
490 * clocks must be enabled. The debounce clock comes from func_32k_clk
491 * and is not under SW control, so we only enable i- and f-clocks.
492 **/
493static void __init omap_hsmmc_reset(void)
494{
82cf818d 495 u32 i, nr_controllers = cpu_is_omap44xx() ? OMAP44XX_NR_MMC :
496 (cpu_is_omap34xx() ? OMAP34XX_NR_MMC : OMAP24XX_NR_MMC);
917fa280
KH
497
498 for (i = 0; i < nr_controllers; i++) {
499 u32 v, base = 0;
500 struct clk *iclk, *fclk;
501 struct device *dev = &dummy_pdev.dev;
502
503 switch (i) {
504 case 0:
505 base = OMAP2_MMC1_BASE;
506 break;
507 case 1:
508 base = OMAP2_MMC2_BASE;
509 break;
510 case 2:
511 base = OMAP3_MMC3_BASE;
512 break;
82cf818d 513 case 3:
514 if (!cpu_is_omap44xx())
515 return;
516 base = OMAP4_MMC4_BASE;
517 break;
518 case 4:
519 if (!cpu_is_omap44xx())
520 return;
521 base = OMAP4_MMC5_BASE;
522 break;
917fa280
KH
523 }
524
82cf818d 525 if (cpu_is_omap44xx())
526 base += OMAP4_MMC_REG_OFFSET;
527
917fa280 528 dummy_pdev.id = i;
1e98ffa8 529 dev_set_name(&dummy_pdev.dev, "mmci-omap-hs.%d", i);
6f7607cc 530 iclk = clk_get(dev, "ick");
917fa280
KH
531 if (iclk && clk_enable(iclk))
532 iclk = NULL;
533
6f7607cc 534 fclk = clk_get(dev, "fck");
917fa280
KH
535 if (fclk && clk_enable(fclk))
536 fclk = NULL;
537
538 if (!iclk || !fclk) {
539 printk(KERN_WARNING
540 "%s: Unable to enable clocks for MMC%d, "
541 "cannot reset.\n", __func__, i);
542 break;
543 }
544
545 omap_writel(MMCHS_SYSCONFIG_SWRESET, base + MMCHS_SYSCONFIG);
546 v = omap_readl(base + MMCHS_SYSSTATUS);
547 while (!(omap_readl(base + MMCHS_SYSSTATUS) &
548 MMCHS_SYSSTATUS_RESETDONE))
549 cpu_relax();
550
551 if (fclk) {
552 clk_disable(fclk);
553 clk_put(fclk);
554 }
555 if (iclk) {
556 clk_disable(iclk);
557 clk_put(iclk);
558 }
559 }
560}
561#else
562static inline void omap_hsmmc_reset(void) {}
563#endif
564
d8874665
TL
565#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) || \
566 defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE)
567
568static inline void omap2_mmc_mux(struct omap_mmc_platform_data *mmc_controller,
569 int controller_nr)
570{
571 if (cpu_is_omap2420() && controller_nr == 0) {
572 omap_cfg_reg(H18_24XX_MMC_CMD);
573 omap_cfg_reg(H15_24XX_MMC_CLKI);
574 omap_cfg_reg(G19_24XX_MMC_CLKO);
575 omap_cfg_reg(F20_24XX_MMC_DAT0);
576 omap_cfg_reg(F19_24XX_MMC_DAT_DIR0);
577 omap_cfg_reg(G18_24XX_MMC_CMD_DIR);
90c62bf0 578 if (mmc_controller->slots[0].wires == 4) {
d8874665
TL
579 omap_cfg_reg(H14_24XX_MMC_DAT1);
580 omap_cfg_reg(E19_24XX_MMC_DAT2);
581 omap_cfg_reg(D19_24XX_MMC_DAT3);
582 omap_cfg_reg(E20_24XX_MMC_DAT_DIR1);
583 omap_cfg_reg(F18_24XX_MMC_DAT_DIR2);
584 omap_cfg_reg(E18_24XX_MMC_DAT_DIR3);
585 }
586
587 /*
588 * Use internal loop-back in MMC/SDIO Module Input Clock
589 * selection
590 */
591 if (mmc_controller->slots[0].internal_clock) {
592 u32 v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
593 v |= (1 << 24);
594 omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0);
595 }
596 }
57b9daa0 597
4596d14a 598 if (cpu_is_omap34xx()) {
57b9daa0 599 if (controller_nr == 0) {
4896e394
TL
600 omap_mux_init_signal("sdmmc1_clk",
601 OMAP_PIN_INPUT_PULLUP);
602 omap_mux_init_signal("sdmmc1_cmd",
603 OMAP_PIN_INPUT_PULLUP);
604 omap_mux_init_signal("sdmmc1_dat0",
605 OMAP_PIN_INPUT_PULLUP);
57b9daa0
VP
606 if (mmc_controller->slots[0].wires == 4 ||
607 mmc_controller->slots[0].wires == 8) {
4896e394
TL
608 omap_mux_init_signal("sdmmc1_dat1",
609 OMAP_PIN_INPUT_PULLUP);
610 omap_mux_init_signal("sdmmc1_dat2",
611 OMAP_PIN_INPUT_PULLUP);
612 omap_mux_init_signal("sdmmc1_dat3",
613 OMAP_PIN_INPUT_PULLUP);
57b9daa0
VP
614 }
615 if (mmc_controller->slots[0].wires == 8) {
4896e394
TL
616 omap_mux_init_signal("sdmmc1_dat4",
617 OMAP_PIN_INPUT_PULLUP);
618 omap_mux_init_signal("sdmmc1_dat5",
619 OMAP_PIN_INPUT_PULLUP);
620 omap_mux_init_signal("sdmmc1_dat6",
621 OMAP_PIN_INPUT_PULLUP);
622 omap_mux_init_signal("sdmmc1_dat7",
623 OMAP_PIN_INPUT_PULLUP);
57b9daa0
VP
624 }
625 }
626 if (controller_nr == 1) {
627 /* MMC2 */
4896e394
TL
628 omap_mux_init_signal("sdmmc2_clk",
629 OMAP_PIN_INPUT_PULLUP);
630 omap_mux_init_signal("sdmmc2_cmd",
631 OMAP_PIN_INPUT_PULLUP);
632 omap_mux_init_signal("sdmmc2_dat0",
633 OMAP_PIN_INPUT_PULLUP);
57b9daa0
VP
634
635 /*
636 * For 8 wire configurations, Lines DAT4, 5, 6 and 7 need to be muxed
637 * in the board-*.c files
638 */
639 if (mmc_controller->slots[0].wires == 4 ||
640 mmc_controller->slots[0].wires == 8) {
4896e394
TL
641 omap_mux_init_signal("sdmmc2_dat1",
642 OMAP_PIN_INPUT_PULLUP);
643 omap_mux_init_signal("sdmmc2_dat2",
644 OMAP_PIN_INPUT_PULLUP);
645 omap_mux_init_signal("sdmmc2_dat3",
646 OMAP_PIN_INPUT_PULLUP);
57b9daa0 647 }
4679232d 648 if (mmc_controller->slots[0].wires == 8) {
4896e394
TL
649 omap_mux_init_signal("sdmmc2_dat4.sdmmc2_dat4",
650 OMAP_PIN_INPUT_PULLUP);
651 omap_mux_init_signal("sdmmc2_dat5.sdmmc2_dat5",
652 OMAP_PIN_INPUT_PULLUP);
653 omap_mux_init_signal("sdmmc2_dat6.sdmmc2_dat6",
654 OMAP_PIN_INPUT_PULLUP);
655 omap_mux_init_signal("sdmmc2_dat7.sdmmc2_dat7",
656 OMAP_PIN_INPUT_PULLUP);
4679232d 657 }
57b9daa0
VP
658 }
659
660 /*
661 * For MMC3 the pins need to be muxed in the board-*.c files
662 */
663 }
d8874665
TL
664}
665
666void __init omap2_init_mmc(struct omap_mmc_platform_data **mmc_data,
667 int nr_controllers)
668{
669 int i;
0dffb5c5 670 char *name;
d8874665
TL
671
672 for (i = 0; i < nr_controllers; i++) {
673 unsigned long base, size;
674 unsigned int irq = 0;
675
676 if (!mmc_data[i])
677 continue;
678
679 omap2_mmc_mux(mmc_data[i], i);
680
681 switch (i) {
682 case 0:
683 base = OMAP2_MMC1_BASE;
684 irq = INT_24XX_MMC_IRQ;
685 break;
686 case 1:
687 base = OMAP2_MMC2_BASE;
688 irq = INT_24XX_MMC2_IRQ;
689 break;
690 case 2:
82cf818d 691 if (!cpu_is_omap44xx() && !cpu_is_omap34xx())
d8874665
TL
692 return;
693 base = OMAP3_MMC3_BASE;
694 irq = INT_34XX_MMC3_IRQ;
695 break;
82cf818d 696 case 3:
697 if (!cpu_is_omap44xx())
698 return;
699 base = OMAP4_MMC4_BASE + OMAP4_MMC_REG_OFFSET;
700 irq = INT_44XX_MMC4_IRQ;
701 break;
702 case 4:
703 if (!cpu_is_omap44xx())
704 return;
705 base = OMAP4_MMC5_BASE + OMAP4_MMC_REG_OFFSET;
706 irq = INT_44XX_MMC5_IRQ;
707 break;
d8874665
TL
708 default:
709 continue;
710 }
711
0dffb5c5 712 if (cpu_is_omap2420()) {
d8874665 713 size = OMAP2420_MMC_SIZE;
0dffb5c5 714 name = "mmci-omap";
82cf818d 715 } else if (cpu_is_omap44xx()) {
716 if (i < 3) {
717 base += OMAP4_MMC_REG_OFFSET;
718 irq += IRQ_GIC_START;
719 }
720 size = OMAP4_HSMMC_SIZE;
721 name = "mmci-omap-hs";
0dffb5c5 722 } else {
82cf818d 723 size = OMAP3_HSMMC_SIZE;
0dffb5c5
TL
724 name = "mmci-omap-hs";
725 }
726 omap_mmc_add(name, i, base, size, irq, mmc_data[i]);
d8874665
TL
727 };
728}
729
730#endif
731
732/*-------------------------------------------------------------------------*/
733
646e3ed1
TL
734#if defined(CONFIG_HDQ_MASTER_OMAP) || defined(CONFIG_HDQ_MASTER_OMAP_MODULE)
735#if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP3430)
736#define OMAP_HDQ_BASE 0x480B2000
737#endif
738static struct resource omap_hdq_resources[] = {
739 {
740 .start = OMAP_HDQ_BASE,
741 .end = OMAP_HDQ_BASE + 0x1C,
742 .flags = IORESOURCE_MEM,
743 },
744 {
745 .start = INT_24XX_HDQ_IRQ,
746 .flags = IORESOURCE_IRQ,
747 },
748};
749static struct platform_device omap_hdq_dev = {
750 .name = "omap_hdq",
751 .id = 0,
752 .dev = {
753 .platform_data = NULL,
754 },
755 .num_resources = ARRAY_SIZE(omap_hdq_resources),
756 .resource = omap_hdq_resources,
757};
758static inline void omap_hdq_init(void)
759{
760 (void) platform_device_register(&omap_hdq_dev);
761}
762#else
763static inline void omap_hdq_init(void) {}
764#endif
765
1dbae815
TL
766/*-------------------------------------------------------------------------*/
767
768static int __init omap2_init_devices(void)
769{
770 /* please keep these calls, and their implementations above,
771 * in alphabetical order so they're easier to sort through.
772 */
917fa280 773 omap_hsmmc_reset();
828c707e 774 omap_init_camera();
c40fae95 775 omap_init_mbox();
ed7eb9d9 776 omap_init_mcspi();
646e3ed1 777 omap_hdq_init();
9b6553cd 778 omap_init_sti();
646e3ed1 779 omap_init_sha1_md5();
1dbae815
TL
780
781 return 0;
782}
783arch_initcall(omap2_init_devices);
This page took 0.355856 seconds and 5 git commands to generate.