2 * linux/arch/arm/mach-omap2/devices.c
4 * OMAP2 platform device setup/initialization
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.
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
17 #include <linux/clk.h>
19 #include <mach/hardware.h>
20 #include <asm/mach-types.h>
21 #include <asm/mach/map.h>
23 #include <plat/control.h>
25 #include <plat/board.h>
27 #include <mach/gpio.h>
32 #if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
34 static struct resource cam_resources
[] = {
36 .start
= OMAP24XX_CAMERA_BASE
,
37 .end
= OMAP24XX_CAMERA_BASE
+ 0xfff,
38 .flags
= IORESOURCE_MEM
,
41 .start
= INT_24XX_CAM_IRQ
,
42 .flags
= IORESOURCE_IRQ
,
46 static struct platform_device omap_cam_device
= {
47 .name
= "omap24xxcam",
49 .num_resources
= ARRAY_SIZE(cam_resources
),
50 .resource
= cam_resources
,
53 static inline void omap_init_camera(void)
55 platform_device_register(&omap_cam_device
);
58 #elif defined(CONFIG_VIDEO_OMAP3) || defined(CONFIG_VIDEO_OMAP3_MODULE)
60 static struct resource omap3isp_resources
[] = {
62 .start
= OMAP3430_ISP_BASE
,
63 .end
= OMAP3430_ISP_END
,
64 .flags
= IORESOURCE_MEM
,
67 .start
= OMAP3430_ISP_CBUFF_BASE
,
68 .end
= OMAP3430_ISP_CBUFF_END
,
69 .flags
= IORESOURCE_MEM
,
72 .start
= OMAP3430_ISP_CCP2_BASE
,
73 .end
= OMAP3430_ISP_CCP2_END
,
74 .flags
= IORESOURCE_MEM
,
77 .start
= OMAP3430_ISP_CCDC_BASE
,
78 .end
= OMAP3430_ISP_CCDC_END
,
79 .flags
= IORESOURCE_MEM
,
82 .start
= OMAP3430_ISP_HIST_BASE
,
83 .end
= OMAP3430_ISP_HIST_END
,
84 .flags
= IORESOURCE_MEM
,
87 .start
= OMAP3430_ISP_H3A_BASE
,
88 .end
= OMAP3430_ISP_H3A_END
,
89 .flags
= IORESOURCE_MEM
,
92 .start
= OMAP3430_ISP_PREV_BASE
,
93 .end
= OMAP3430_ISP_PREV_END
,
94 .flags
= IORESOURCE_MEM
,
97 .start
= OMAP3430_ISP_RESZ_BASE
,
98 .end
= OMAP3430_ISP_RESZ_END
,
99 .flags
= IORESOURCE_MEM
,
102 .start
= OMAP3430_ISP_SBL_BASE
,
103 .end
= OMAP3430_ISP_SBL_END
,
104 .flags
= IORESOURCE_MEM
,
107 .start
= OMAP3430_ISP_CSI2A_BASE
,
108 .end
= OMAP3430_ISP_CSI2A_END
,
109 .flags
= IORESOURCE_MEM
,
112 .start
= OMAP3430_ISP_CSI2PHY_BASE
,
113 .end
= OMAP3430_ISP_CSI2PHY_END
,
114 .flags
= IORESOURCE_MEM
,
117 .start
= INT_34XX_CAM_IRQ
,
118 .flags
= IORESOURCE_IRQ
,
122 static struct platform_device omap3isp_device
= {
125 .num_resources
= ARRAY_SIZE(omap3isp_resources
),
126 .resource
= omap3isp_resources
,
129 static inline void omap_init_camera(void)
131 platform_device_register(&omap3isp_device
);
134 static inline void omap_init_camera(void)
139 #if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE)
141 #define MBOX_REG_SIZE 0x120
143 #ifdef CONFIG_ARCH_OMAP2
144 static struct resource omap_mbox_resources
[] = {
146 .start
= OMAP24XX_MAILBOX_BASE
,
147 .end
= OMAP24XX_MAILBOX_BASE
+ MBOX_REG_SIZE
- 1,
148 .flags
= IORESOURCE_MEM
,
151 .start
= INT_24XX_MAIL_U0_MPU
,
152 .flags
= IORESOURCE_IRQ
,
155 .start
= INT_24XX_MAIL_U3_MPU
,
156 .flags
= IORESOURCE_IRQ
,
161 #ifdef CONFIG_ARCH_OMAP3
162 static struct resource omap_mbox_resources
[] = {
164 .start
= OMAP34XX_MAILBOX_BASE
,
165 .end
= OMAP34XX_MAILBOX_BASE
+ MBOX_REG_SIZE
- 1,
166 .flags
= IORESOURCE_MEM
,
169 .start
= INT_24XX_MAIL_U0_MPU
,
170 .flags
= IORESOURCE_IRQ
,
175 #ifdef CONFIG_ARCH_OMAP4
177 #define OMAP4_MBOX_REG_SIZE 0x130
178 static struct resource omap_mbox_resources
[] = {
180 .start
= OMAP44XX_MAILBOX_BASE
,
181 .end
= OMAP44XX_MAILBOX_BASE
+
182 OMAP4_MBOX_REG_SIZE
- 1,
183 .flags
= IORESOURCE_MEM
,
186 .start
= INT_44XX_MAIL_U0_MPU
,
187 .flags
= IORESOURCE_IRQ
,
192 static struct platform_device mbox_device
= {
193 .name
= "omap2-mailbox",
197 static inline void omap_init_mbox(void)
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
;
203 pr_err("%s: platform not supported\n", __func__
);
206 platform_device_register(&mbox_device
);
209 static inline void omap_init_mbox(void) { }
210 #endif /* CONFIG_OMAP_MBOX_FWK */
212 #if defined(CONFIG_OMAP_STI)
214 #if defined(CONFIG_ARCH_OMAP2)
216 #define OMAP2_STI_BASE 0x48068000
217 #define OMAP2_STI_CHANNEL_BASE 0x54000000
218 #define OMAP2_STI_IRQ 4
220 static struct resource sti_resources
[] = {
222 .start
= OMAP2_STI_BASE
,
223 .end
= OMAP2_STI_BASE
+ 0x7ff,
224 .flags
= IORESOURCE_MEM
,
227 .start
= OMAP2_STI_CHANNEL_BASE
,
228 .end
= OMAP2_STI_CHANNEL_BASE
+ SZ_64K
- 1,
229 .flags
= IORESOURCE_MEM
,
232 .start
= OMAP2_STI_IRQ
,
233 .flags
= IORESOURCE_IRQ
,
236 #elif defined(CONFIG_ARCH_OMAP3)
238 #define OMAP3_SDTI_BASE 0x54500000
239 #define OMAP3_SDTI_CHANNEL_BASE 0x54600000
241 static struct resource sti_resources
[] = {
243 .start
= OMAP3_SDTI_BASE
,
244 .end
= OMAP3_SDTI_BASE
+ 0xFFF,
245 .flags
= IORESOURCE_MEM
,
248 .start
= OMAP3_SDTI_CHANNEL_BASE
,
249 .end
= OMAP3_SDTI_CHANNEL_BASE
+ SZ_1M
- 1,
250 .flags
= IORESOURCE_MEM
,
256 static struct platform_device sti_device
= {
259 .num_resources
= ARRAY_SIZE(sti_resources
),
260 .resource
= sti_resources
,
263 static inline void omap_init_sti(void)
265 platform_device_register(&sti_device
);
268 static inline void omap_init_sti(void) {}
271 #if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
273 #include <plat/mcspi.h>
275 #define OMAP2_MCSPI1_BASE 0x48098000
276 #define OMAP2_MCSPI2_BASE 0x4809a000
277 #define OMAP2_MCSPI3_BASE 0x480b8000
278 #define OMAP2_MCSPI4_BASE 0x480ba000
280 #define OMAP4_MCSPI1_BASE 0x48098100
281 #define OMAP4_MCSPI2_BASE 0x4809a100
282 #define OMAP4_MCSPI3_BASE 0x480b8100
283 #define OMAP4_MCSPI4_BASE 0x480ba100
285 static struct omap2_mcspi_platform_config omap2_mcspi1_config
= {
289 static struct resource omap2_mcspi1_resources
[] = {
291 .start
= OMAP2_MCSPI1_BASE
,
292 .end
= OMAP2_MCSPI1_BASE
+ 0xff,
293 .flags
= IORESOURCE_MEM
,
297 static struct platform_device omap2_mcspi1
= {
298 .name
= "omap2_mcspi",
300 .num_resources
= ARRAY_SIZE(omap2_mcspi1_resources
),
301 .resource
= omap2_mcspi1_resources
,
303 .platform_data
= &omap2_mcspi1_config
,
307 static struct omap2_mcspi_platform_config omap2_mcspi2_config
= {
311 static struct resource omap2_mcspi2_resources
[] = {
313 .start
= OMAP2_MCSPI2_BASE
,
314 .end
= OMAP2_MCSPI2_BASE
+ 0xff,
315 .flags
= IORESOURCE_MEM
,
319 static struct platform_device omap2_mcspi2
= {
320 .name
= "omap2_mcspi",
322 .num_resources
= ARRAY_SIZE(omap2_mcspi2_resources
),
323 .resource
= omap2_mcspi2_resources
,
325 .platform_data
= &omap2_mcspi2_config
,
329 #if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP3) || \
330 defined(CONFIG_ARCH_OMAP4)
331 static struct omap2_mcspi_platform_config omap2_mcspi3_config
= {
335 static struct resource omap2_mcspi3_resources
[] = {
337 .start
= OMAP2_MCSPI3_BASE
,
338 .end
= OMAP2_MCSPI3_BASE
+ 0xff,
339 .flags
= IORESOURCE_MEM
,
343 static struct platform_device omap2_mcspi3
= {
344 .name
= "omap2_mcspi",
346 .num_resources
= ARRAY_SIZE(omap2_mcspi3_resources
),
347 .resource
= omap2_mcspi3_resources
,
349 .platform_data
= &omap2_mcspi3_config
,
354 #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
355 static struct omap2_mcspi_platform_config omap2_mcspi4_config
= {
359 static struct resource omap2_mcspi4_resources
[] = {
361 .start
= OMAP2_MCSPI4_BASE
,
362 .end
= OMAP2_MCSPI4_BASE
+ 0xff,
363 .flags
= IORESOURCE_MEM
,
367 static struct platform_device omap2_mcspi4
= {
368 .name
= "omap2_mcspi",
370 .num_resources
= ARRAY_SIZE(omap2_mcspi4_resources
),
371 .resource
= omap2_mcspi4_resources
,
373 .platform_data
= &omap2_mcspi4_config
,
378 #ifdef CONFIG_ARCH_OMAP4
379 static inline void omap4_mcspi_fixup(void)
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;
391 static inline void omap4_mcspi_fixup(void)
396 #if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP3) || \
397 defined(CONFIG_ARCH_OMAP4)
398 static inline void omap2_mcspi3_init(void)
400 platform_device_register(&omap2_mcspi3
);
403 static inline void omap2_mcspi3_init(void)
408 #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
409 static inline void omap2_mcspi4_init(void)
411 platform_device_register(&omap2_mcspi4
);
414 static inline void omap2_mcspi4_init(void)
419 static void omap_init_mcspi(void)
421 if (cpu_is_omap44xx())
424 platform_device_register(&omap2_mcspi1
);
425 platform_device_register(&omap2_mcspi2
);
427 if (cpu_is_omap2430() || cpu_is_omap343x() || cpu_is_omap44xx())
430 if (cpu_is_omap343x() || cpu_is_omap44xx())
435 static inline void omap_init_mcspi(void) {}
438 #ifdef CONFIG_OMAP_SHA1_MD5
439 static struct resource sha1_md5_resources
[] = {
441 .start
= OMAP24XX_SEC_SHA1MD5_BASE
,
442 .end
= OMAP24XX_SEC_SHA1MD5_BASE
+ 0x64,
443 .flags
= IORESOURCE_MEM
,
446 .start
= INT_24XX_SHA1MD5
,
447 .flags
= IORESOURCE_IRQ
,
451 static struct platform_device sha1_md5_device
= {
452 .name
= "OMAP SHA1/MD5",
454 .num_resources
= ARRAY_SIZE(sha1_md5_resources
),
455 .resource
= sha1_md5_resources
,
458 static void omap_init_sha1_md5(void)
460 platform_device_register(&sha1_md5_device
);
463 static inline void omap_init_sha1_md5(void) { }
466 /*-------------------------------------------------------------------------*/
468 #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
470 #define MMCHS_SYSCONFIG 0x0010
471 #define MMCHS_SYSCONFIG_SWRESET (1 << 1)
472 #define MMCHS_SYSSTATUS 0x0014
473 #define MMCHS_SYSSTATUS_RESETDONE (1 << 0)
475 static struct platform_device dummy_pdev
= {
477 .bus
= &platform_bus_type
,
482 * omap_hsmmc_reset() - Full reset of each HS-MMC controller
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.
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.
493 static void __init
omap_hsmmc_reset(void)
495 u32 i
, nr_controllers
= cpu_is_omap44xx() ? OMAP44XX_NR_MMC
:
496 (cpu_is_omap34xx() ? OMAP34XX_NR_MMC
: OMAP24XX_NR_MMC
);
498 for (i
= 0; i
< nr_controllers
; i
++) {
500 struct clk
*iclk
, *fclk
;
501 struct device
*dev
= &dummy_pdev
.dev
;
505 base
= OMAP2_MMC1_BASE
;
508 base
= OMAP2_MMC2_BASE
;
511 base
= OMAP3_MMC3_BASE
;
514 if (!cpu_is_omap44xx())
516 base
= OMAP4_MMC4_BASE
;
519 if (!cpu_is_omap44xx())
521 base
= OMAP4_MMC5_BASE
;
525 if (cpu_is_omap44xx())
526 base
+= OMAP4_MMC_REG_OFFSET
;
529 dev_set_name(&dummy_pdev
.dev
, "mmci-omap-hs.%d", i
);
530 iclk
= clk_get(dev
, "ick");
531 if (iclk
&& clk_enable(iclk
))
534 fclk
= clk_get(dev
, "fck");
535 if (fclk
&& clk_enable(fclk
))
538 if (!iclk
|| !fclk
) {
540 "%s: Unable to enable clocks for MMC%d, "
541 "cannot reset.\n", __func__
, i
);
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
))
562 static inline void omap_hsmmc_reset(void) {}
565 #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) || \
566 defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE)
568 static inline void omap2_mmc_mux(struct omap_mmc_platform_data
*mmc_controller
,
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
);
578 if (mmc_controller
->slots
[0].wires
== 4) {
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
);
588 * Use internal loop-back in MMC/SDIO Module Input Clock
591 if (mmc_controller
->slots
[0].internal_clock
) {
592 u32 v
= omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0
);
594 omap_ctrl_writel(v
, OMAP2_CONTROL_DEVCONF0
);
598 if (cpu_is_omap34xx()) {
599 if (controller_nr
== 0) {
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
);
606 if (mmc_controller
->slots
[0].wires
== 4 ||
607 mmc_controller
->slots
[0].wires
== 8) {
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
);
615 if (mmc_controller
->slots
[0].wires
== 8) {
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
);
626 if (controller_nr
== 1) {
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
);
636 * For 8 wire configurations, Lines DAT4, 5, 6 and 7 need to be muxed
637 * in the board-*.c files
639 if (mmc_controller
->slots
[0].wires
== 4 ||
640 mmc_controller
->slots
[0].wires
== 8) {
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
);
648 if (mmc_controller
->slots
[0].wires
== 8) {
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
);
661 * For MMC3 the pins need to be muxed in the board-*.c files
666 void __init
omap2_init_mmc(struct omap_mmc_platform_data
**mmc_data
,
672 for (i
= 0; i
< nr_controllers
; i
++) {
673 unsigned long base
, size
;
674 unsigned int irq
= 0;
679 omap2_mmc_mux(mmc_data
[i
], i
);
683 base
= OMAP2_MMC1_BASE
;
684 irq
= INT_24XX_MMC_IRQ
;
687 base
= OMAP2_MMC2_BASE
;
688 irq
= INT_24XX_MMC2_IRQ
;
691 if (!cpu_is_omap44xx() && !cpu_is_omap34xx())
693 base
= OMAP3_MMC3_BASE
;
694 irq
= INT_34XX_MMC3_IRQ
;
697 if (!cpu_is_omap44xx())
699 base
= OMAP4_MMC4_BASE
+ OMAP4_MMC_REG_OFFSET
;
700 irq
= INT_44XX_MMC4_IRQ
;
703 if (!cpu_is_omap44xx())
705 base
= OMAP4_MMC5_BASE
+ OMAP4_MMC_REG_OFFSET
;
706 irq
= INT_44XX_MMC5_IRQ
;
712 if (cpu_is_omap2420()) {
713 size
= OMAP2420_MMC_SIZE
;
715 } else if (cpu_is_omap44xx()) {
717 base
+= OMAP4_MMC_REG_OFFSET
;
718 irq
+= IRQ_GIC_START
;
720 size
= OMAP4_HSMMC_SIZE
;
721 name
= "mmci-omap-hs";
723 size
= OMAP3_HSMMC_SIZE
;
724 name
= "mmci-omap-hs";
726 omap_mmc_add(name
, i
, base
, size
, irq
, mmc_data
[i
]);
732 /*-------------------------------------------------------------------------*/
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
738 static struct resource omap_hdq_resources
[] = {
740 .start
= OMAP_HDQ_BASE
,
741 .end
= OMAP_HDQ_BASE
+ 0x1C,
742 .flags
= IORESOURCE_MEM
,
745 .start
= INT_24XX_HDQ_IRQ
,
746 .flags
= IORESOURCE_IRQ
,
749 static struct platform_device omap_hdq_dev
= {
753 .platform_data
= NULL
,
755 .num_resources
= ARRAY_SIZE(omap_hdq_resources
),
756 .resource
= omap_hdq_resources
,
758 static inline void omap_hdq_init(void)
760 (void) platform_device_register(&omap_hdq_dev
);
763 static inline void omap_hdq_init(void) {}
766 /*-------------------------------------------------------------------------*/
768 static int __init
omap2_init_devices(void)
770 /* please keep these calls, and their implementations above,
771 * in alphabetical order so they're easier to sort through.
779 omap_init_sha1_md5();
783 arch_initcall(omap2_init_devices
);