2 * omap_hwmod_3xxx_data.c - hardware modules present on the OMAP3xxx chips
4 * Copyright (C) 2009-2011 Nokia Corporation
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * The data in this file should be completely autogeneratable from
12 * the TI hardware database or other technical documentation.
14 * XXX these should be marked initdata for multi-OMAP kernels
16 #include <plat/omap_hwmod.h>
17 #include <mach/irqs.h>
20 #include <plat/serial.h>
21 #include <plat/l3_3xxx.h>
22 #include <plat/l4_3xxx.h>
24 #include <plat/gpio.h>
26 #include <plat/mcbsp.h>
27 #include <plat/mcspi.h>
28 #include <plat/dmtimer.h>
30 #include "omap_hwmod_common_data.h"
32 #include "prm-regbits-34xx.h"
33 #include "cm-regbits-34xx.h"
35 #include <mach/am35xx.h>
38 * OMAP3xxx hardware module integration data
40 * ALl of the data in this section should be autogeneratable from the
41 * TI hardware database or other technical documentation. Data that
42 * is driver-specific or driver-kernel integration-specific belongs
46 static struct omap_hwmod omap3xxx_mpu_hwmod;
47 static struct omap_hwmod omap3xxx_iva_hwmod;
48 static struct omap_hwmod omap3xxx_l3_main_hwmod;
49 static struct omap_hwmod omap3xxx_l4_core_hwmod;
50 static struct omap_hwmod omap3xxx_l4_per_hwmod;
51 static struct omap_hwmod omap3xxx_wd_timer2_hwmod;
52 static struct omap_hwmod omap3430es1_dss_core_hwmod;
53 static struct omap_hwmod omap3xxx_dss_core_hwmod;
54 static struct omap_hwmod omap3xxx_dss_dispc_hwmod;
55 static struct omap_hwmod omap3xxx_dss_dsi1_hwmod;
56 static struct omap_hwmod omap3xxx_dss_rfbi_hwmod;
57 static struct omap_hwmod omap3xxx_dss_venc_hwmod;
58 static struct omap_hwmod omap3xxx_i2c1_hwmod;
59 static struct omap_hwmod omap3xxx_i2c2_hwmod;
60 static struct omap_hwmod omap3xxx_i2c3_hwmod;
61 static struct omap_hwmod omap3xxx_gpio1_hwmod;
62 static struct omap_hwmod omap3xxx_gpio2_hwmod;
63 static struct omap_hwmod omap3xxx_gpio3_hwmod;
64 static struct omap_hwmod omap3xxx_gpio4_hwmod;
65 static struct omap_hwmod omap3xxx_gpio5_hwmod;
66 static struct omap_hwmod omap3xxx_gpio6_hwmod;
67 static struct omap_hwmod omap34xx_sr1_hwmod;
68 static struct omap_hwmod omap34xx_sr2_hwmod;
69 static struct omap_hwmod omap34xx_mcspi1;
70 static struct omap_hwmod omap34xx_mcspi2;
71 static struct omap_hwmod omap34xx_mcspi3;
72 static struct omap_hwmod omap34xx_mcspi4;
73 static struct omap_hwmod omap3xxx_mmc1_hwmod;
74 static struct omap_hwmod omap3xxx_mmc2_hwmod;
75 static struct omap_hwmod omap3xxx_mmc3_hwmod;
76 static struct omap_hwmod am35xx_usbhsotg_hwmod;
78 static struct omap_hwmod omap3xxx_dma_system_hwmod;
80 static struct omap_hwmod omap3xxx_mcbsp1_hwmod;
81 static struct omap_hwmod omap3xxx_mcbsp2_hwmod;
82 static struct omap_hwmod omap3xxx_mcbsp3_hwmod;
83 static struct omap_hwmod omap3xxx_mcbsp4_hwmod;
84 static struct omap_hwmod omap3xxx_mcbsp5_hwmod;
85 static struct omap_hwmod omap3xxx_mcbsp2_sidetone_hwmod;
86 static struct omap_hwmod omap3xxx_mcbsp3_sidetone_hwmod;
88 /* L3 -> L4_CORE interface */
89 static struct omap_hwmod_ocp_if omap3xxx_l3_main__l4_core = {
90 .master = &omap3xxx_l3_main_hwmod,
91 .slave = &omap3xxx_l4_core_hwmod,
92 .user = OCP_USER_MPU | OCP_USER_SDMA,
95 /* L3 -> L4_PER interface */
96 static struct omap_hwmod_ocp_if omap3xxx_l3_main__l4_per = {
97 .master = &omap3xxx_l3_main_hwmod,
98 .slave = &omap3xxx_l4_per_hwmod,
99 .user = OCP_USER_MPU | OCP_USER_SDMA,
102 /* L3 taret configuration and error log registers */
103 static struct omap_hwmod_irq_info omap3xxx_l3_main_irqs[] = {
104 { .irq = INT_34XX_L3_DBG_IRQ },
105 { .irq = INT_34XX_L3_APP_IRQ },
109 static struct omap_hwmod_addr_space omap3xxx_l3_main_addrs[] = {
111 .pa_start = 0x68000000,
112 .pa_end = 0x6800ffff,
113 .flags = ADDR_TYPE_RT,
118 /* MPU -> L3 interface */
119 static struct omap_hwmod_ocp_if omap3xxx_mpu__l3_main = {
120 .master = &omap3xxx_mpu_hwmod,
121 .slave = &omap3xxx_l3_main_hwmod,
122 .addr = omap3xxx_l3_main_addrs,
123 .user = OCP_USER_MPU,
126 /* Slave interfaces on the L3 interconnect */
127 static struct omap_hwmod_ocp_if *omap3xxx_l3_main_slaves[] = {
128 &omap3xxx_mpu__l3_main,
132 static struct omap_hwmod_ocp_if omap3xxx_dss__l3 = {
133 .master = &omap3xxx_dss_core_hwmod,
134 .slave = &omap3xxx_l3_main_hwmod,
137 .l3_perm_bit = OMAP3_L3_CORE_FW_INIT_ID_DSS,
138 .flags = OMAP_FIREWALL_L3,
141 .user = OCP_USER_MPU | OCP_USER_SDMA,
144 /* Master interfaces on the L3 interconnect */
145 static struct omap_hwmod_ocp_if *omap3xxx_l3_main_masters[] = {
146 &omap3xxx_l3_main__l4_core,
147 &omap3xxx_l3_main__l4_per,
151 static struct omap_hwmod omap3xxx_l3_main_hwmod = {
153 .class = &l3_hwmod_class,
154 .mpu_irqs = omap3xxx_l3_main_irqs,
155 .masters = omap3xxx_l3_main_masters,
156 .masters_cnt = ARRAY_SIZE(omap3xxx_l3_main_masters),
157 .slaves = omap3xxx_l3_main_slaves,
158 .slaves_cnt = ARRAY_SIZE(omap3xxx_l3_main_slaves),
159 .flags = HWMOD_NO_IDLEST,
162 static struct omap_hwmod omap3xxx_l4_wkup_hwmod;
163 static struct omap_hwmod omap3xxx_uart1_hwmod;
164 static struct omap_hwmod omap3xxx_uart2_hwmod;
165 static struct omap_hwmod omap3xxx_uart3_hwmod;
166 static struct omap_hwmod omap3xxx_uart4_hwmod;
167 static struct omap_hwmod omap3xxx_usbhsotg_hwmod;
169 /* l3_core -> usbhsotg interface */
170 static struct omap_hwmod_ocp_if omap3xxx_usbhsotg__l3 = {
171 .master = &omap3xxx_usbhsotg_hwmod,
172 .slave = &omap3xxx_l3_main_hwmod,
173 .clk = "core_l3_ick",
174 .user = OCP_USER_MPU,
177 /* l3_core -> am35xx_usbhsotg interface */
178 static struct omap_hwmod_ocp_if am35xx_usbhsotg__l3 = {
179 .master = &am35xx_usbhsotg_hwmod,
180 .slave = &omap3xxx_l3_main_hwmod,
181 .clk = "core_l3_ick",
182 .user = OCP_USER_MPU,
184 /* L4_CORE -> L4_WKUP interface */
185 static struct omap_hwmod_ocp_if omap3xxx_l4_core__l4_wkup = {
186 .master = &omap3xxx_l4_core_hwmod,
187 .slave = &omap3xxx_l4_wkup_hwmod,
188 .user = OCP_USER_MPU | OCP_USER_SDMA,
191 /* L4 CORE -> MMC1 interface */
192 static struct omap_hwmod_ocp_if omap3xxx_l4_core__mmc1 = {
193 .master = &omap3xxx_l4_core_hwmod,
194 .slave = &omap3xxx_mmc1_hwmod,
196 .addr = omap2430_mmc1_addr_space,
197 .user = OCP_USER_MPU | OCP_USER_SDMA,
198 .flags = OMAP_FIREWALL_L4
201 /* L4 CORE -> MMC2 interface */
202 static struct omap_hwmod_ocp_if omap3xxx_l4_core__mmc2 = {
203 .master = &omap3xxx_l4_core_hwmod,
204 .slave = &omap3xxx_mmc2_hwmod,
206 .addr = omap2430_mmc2_addr_space,
207 .user = OCP_USER_MPU | OCP_USER_SDMA,
208 .flags = OMAP_FIREWALL_L4
211 /* L4 CORE -> MMC3 interface */
212 static struct omap_hwmod_addr_space omap3xxx_mmc3_addr_space[] = {
214 .pa_start = 0x480ad000,
215 .pa_end = 0x480ad1ff,
216 .flags = ADDR_TYPE_RT,
221 static struct omap_hwmod_ocp_if omap3xxx_l4_core__mmc3 = {
222 .master = &omap3xxx_l4_core_hwmod,
223 .slave = &omap3xxx_mmc3_hwmod,
225 .addr = omap3xxx_mmc3_addr_space,
226 .user = OCP_USER_MPU | OCP_USER_SDMA,
227 .flags = OMAP_FIREWALL_L4
230 /* L4 CORE -> UART1 interface */
231 static struct omap_hwmod_addr_space omap3xxx_uart1_addr_space[] = {
233 .pa_start = OMAP3_UART1_BASE,
234 .pa_end = OMAP3_UART1_BASE + SZ_8K - 1,
235 .flags = ADDR_MAP_ON_INIT | ADDR_TYPE_RT,
240 static struct omap_hwmod_ocp_if omap3_l4_core__uart1 = {
241 .master = &omap3xxx_l4_core_hwmod,
242 .slave = &omap3xxx_uart1_hwmod,
244 .addr = omap3xxx_uart1_addr_space,
245 .user = OCP_USER_MPU | OCP_USER_SDMA,
248 /* L4 CORE -> UART2 interface */
249 static struct omap_hwmod_addr_space omap3xxx_uart2_addr_space[] = {
251 .pa_start = OMAP3_UART2_BASE,
252 .pa_end = OMAP3_UART2_BASE + SZ_1K - 1,
253 .flags = ADDR_MAP_ON_INIT | ADDR_TYPE_RT,
258 static struct omap_hwmod_ocp_if omap3_l4_core__uart2 = {
259 .master = &omap3xxx_l4_core_hwmod,
260 .slave = &omap3xxx_uart2_hwmod,
262 .addr = omap3xxx_uart2_addr_space,
263 .user = OCP_USER_MPU | OCP_USER_SDMA,
266 /* L4 PER -> UART3 interface */
267 static struct omap_hwmod_addr_space omap3xxx_uart3_addr_space[] = {
269 .pa_start = OMAP3_UART3_BASE,
270 .pa_end = OMAP3_UART3_BASE + SZ_1K - 1,
271 .flags = ADDR_MAP_ON_INIT | ADDR_TYPE_RT,
276 static struct omap_hwmod_ocp_if omap3_l4_per__uart3 = {
277 .master = &omap3xxx_l4_per_hwmod,
278 .slave = &omap3xxx_uart3_hwmod,
280 .addr = omap3xxx_uart3_addr_space,
281 .user = OCP_USER_MPU | OCP_USER_SDMA,
284 /* L4 PER -> UART4 interface */
285 static struct omap_hwmod_addr_space omap3xxx_uart4_addr_space[] = {
287 .pa_start = OMAP3_UART4_BASE,
288 .pa_end = OMAP3_UART4_BASE + SZ_1K - 1,
289 .flags = ADDR_MAP_ON_INIT | ADDR_TYPE_RT,
294 static struct omap_hwmod_ocp_if omap3_l4_per__uart4 = {
295 .master = &omap3xxx_l4_per_hwmod,
296 .slave = &omap3xxx_uart4_hwmod,
298 .addr = omap3xxx_uart4_addr_space,
299 .user = OCP_USER_MPU | OCP_USER_SDMA,
302 /* L4 CORE -> I2C1 interface */
303 static struct omap_hwmod_ocp_if omap3_l4_core__i2c1 = {
304 .master = &omap3xxx_l4_core_hwmod,
305 .slave = &omap3xxx_i2c1_hwmod,
307 .addr = omap2_i2c1_addr_space,
310 .l4_fw_region = OMAP3_L4_CORE_FW_I2C1_REGION,
312 .flags = OMAP_FIREWALL_L4,
315 .user = OCP_USER_MPU | OCP_USER_SDMA,
318 /* L4 CORE -> I2C2 interface */
319 static struct omap_hwmod_ocp_if omap3_l4_core__i2c2 = {
320 .master = &omap3xxx_l4_core_hwmod,
321 .slave = &omap3xxx_i2c2_hwmod,
323 .addr = omap2_i2c2_addr_space,
326 .l4_fw_region = OMAP3_L4_CORE_FW_I2C2_REGION,
328 .flags = OMAP_FIREWALL_L4,
331 .user = OCP_USER_MPU | OCP_USER_SDMA,
334 /* L4 CORE -> I2C3 interface */
335 static struct omap_hwmod_addr_space omap3xxx_i2c3_addr_space[] = {
337 .pa_start = 0x48060000,
338 .pa_end = 0x48060000 + SZ_128 - 1,
339 .flags = ADDR_TYPE_RT,
344 static struct omap_hwmod_ocp_if omap3_l4_core__i2c3 = {
345 .master = &omap3xxx_l4_core_hwmod,
346 .slave = &omap3xxx_i2c3_hwmod,
348 .addr = omap3xxx_i2c3_addr_space,
351 .l4_fw_region = OMAP3_L4_CORE_FW_I2C3_REGION,
353 .flags = OMAP_FIREWALL_L4,
356 .user = OCP_USER_MPU | OCP_USER_SDMA,
359 /* L4 CORE -> SR1 interface */
360 static struct omap_hwmod_addr_space omap3_sr1_addr_space[] = {
362 .pa_start = OMAP34XX_SR1_BASE,
363 .pa_end = OMAP34XX_SR1_BASE + SZ_1K - 1,
364 .flags = ADDR_TYPE_RT,
369 static struct omap_hwmod_ocp_if omap3_l4_core__sr1 = {
370 .master = &omap3xxx_l4_core_hwmod,
371 .slave = &omap34xx_sr1_hwmod,
373 .addr = omap3_sr1_addr_space,
374 .user = OCP_USER_MPU,
377 /* L4 CORE -> SR1 interface */
378 static struct omap_hwmod_addr_space omap3_sr2_addr_space[] = {
380 .pa_start = OMAP34XX_SR2_BASE,
381 .pa_end = OMAP34XX_SR2_BASE + SZ_1K - 1,
382 .flags = ADDR_TYPE_RT,
387 static struct omap_hwmod_ocp_if omap3_l4_core__sr2 = {
388 .master = &omap3xxx_l4_core_hwmod,
389 .slave = &omap34xx_sr2_hwmod,
391 .addr = omap3_sr2_addr_space,
392 .user = OCP_USER_MPU,
396 * usbhsotg interface data
399 static struct omap_hwmod_addr_space omap3xxx_usbhsotg_addrs[] = {
401 .pa_start = OMAP34XX_HSUSB_OTG_BASE,
402 .pa_end = OMAP34XX_HSUSB_OTG_BASE + SZ_4K - 1,
403 .flags = ADDR_TYPE_RT
408 /* l4_core -> usbhsotg */
409 static struct omap_hwmod_ocp_if omap3xxx_l4_core__usbhsotg = {
410 .master = &omap3xxx_l4_core_hwmod,
411 .slave = &omap3xxx_usbhsotg_hwmod,
413 .addr = omap3xxx_usbhsotg_addrs,
414 .user = OCP_USER_MPU,
417 static struct omap_hwmod_ocp_if *omap3xxx_usbhsotg_masters[] = {
418 &omap3xxx_usbhsotg__l3,
421 static struct omap_hwmod_ocp_if *omap3xxx_usbhsotg_slaves[] = {
422 &omap3xxx_l4_core__usbhsotg,
425 static struct omap_hwmod_addr_space am35xx_usbhsotg_addrs[] = {
427 .pa_start = AM35XX_IPSS_USBOTGSS_BASE,
428 .pa_end = AM35XX_IPSS_USBOTGSS_BASE + SZ_4K - 1,
429 .flags = ADDR_TYPE_RT
434 /* l4_core -> usbhsotg */
435 static struct omap_hwmod_ocp_if am35xx_l4_core__usbhsotg = {
436 .master = &omap3xxx_l4_core_hwmod,
437 .slave = &am35xx_usbhsotg_hwmod,
439 .addr = am35xx_usbhsotg_addrs,
440 .user = OCP_USER_MPU,
443 static struct omap_hwmod_ocp_if *am35xx_usbhsotg_masters[] = {
444 &am35xx_usbhsotg__l3,
447 static struct omap_hwmod_ocp_if *am35xx_usbhsotg_slaves[] = {
448 &am35xx_l4_core__usbhsotg,
450 /* Slave interfaces on the L4_CORE interconnect */
451 static struct omap_hwmod_ocp_if *omap3xxx_l4_core_slaves[] = {
452 &omap3xxx_l3_main__l4_core,
456 static struct omap_hwmod omap3xxx_l4_core_hwmod = {
458 .class = &l4_hwmod_class,
459 .slaves = omap3xxx_l4_core_slaves,
460 .slaves_cnt = ARRAY_SIZE(omap3xxx_l4_core_slaves),
461 .flags = HWMOD_NO_IDLEST,
464 /* Slave interfaces on the L4_PER interconnect */
465 static struct omap_hwmod_ocp_if *omap3xxx_l4_per_slaves[] = {
466 &omap3xxx_l3_main__l4_per,
470 static struct omap_hwmod omap3xxx_l4_per_hwmod = {
472 .class = &l4_hwmod_class,
473 .slaves = omap3xxx_l4_per_slaves,
474 .slaves_cnt = ARRAY_SIZE(omap3xxx_l4_per_slaves),
475 .flags = HWMOD_NO_IDLEST,
478 /* Slave interfaces on the L4_WKUP interconnect */
479 static struct omap_hwmod_ocp_if *omap3xxx_l4_wkup_slaves[] = {
480 &omap3xxx_l4_core__l4_wkup,
484 static struct omap_hwmod omap3xxx_l4_wkup_hwmod = {
486 .class = &l4_hwmod_class,
487 .slaves = omap3xxx_l4_wkup_slaves,
488 .slaves_cnt = ARRAY_SIZE(omap3xxx_l4_wkup_slaves),
489 .flags = HWMOD_NO_IDLEST,
492 /* Master interfaces on the MPU device */
493 static struct omap_hwmod_ocp_if *omap3xxx_mpu_masters[] = {
494 &omap3xxx_mpu__l3_main,
498 static struct omap_hwmod omap3xxx_mpu_hwmod = {
500 .class = &mpu_hwmod_class,
501 .main_clk = "arm_fck",
502 .masters = omap3xxx_mpu_masters,
503 .masters_cnt = ARRAY_SIZE(omap3xxx_mpu_masters),
507 * IVA2_2 interface data
510 /* IVA2 <- L3 interface */
511 static struct omap_hwmod_ocp_if omap3xxx_l3__iva = {
512 .master = &omap3xxx_l3_main_hwmod,
513 .slave = &omap3xxx_iva_hwmod,
515 .user = OCP_USER_MPU | OCP_USER_SDMA,
518 static struct omap_hwmod_ocp_if *omap3xxx_iva_masters[] = {
526 static struct omap_hwmod omap3xxx_iva_hwmod = {
528 .class = &iva_hwmod_class,
529 .masters = omap3xxx_iva_masters,
530 .masters_cnt = ARRAY_SIZE(omap3xxx_iva_masters),
534 static struct omap_hwmod_class_sysconfig omap3xxx_timer_1ms_sysc = {
538 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_CLOCKACTIVITY |
539 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
540 SYSC_HAS_EMUFREE | SYSC_HAS_AUTOIDLE),
541 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
542 .sysc_fields = &omap_hwmod_sysc_type1,
545 static struct omap_hwmod_class omap3xxx_timer_1ms_hwmod_class = {
547 .sysc = &omap3xxx_timer_1ms_sysc,
548 .rev = OMAP_TIMER_IP_VERSION_1,
551 static struct omap_hwmod_class_sysconfig omap3xxx_timer_sysc = {
555 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_ENAWAKEUP |
556 SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE),
557 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
558 .sysc_fields = &omap_hwmod_sysc_type1,
561 static struct omap_hwmod_class omap3xxx_timer_hwmod_class = {
563 .sysc = &omap3xxx_timer_sysc,
564 .rev = OMAP_TIMER_IP_VERSION_1,
567 /* secure timers dev attribute */
568 static struct omap_timer_capability_dev_attr capability_secure_dev_attr = {
569 .timer_capability = OMAP_TIMER_SECURE,
572 /* always-on timers dev attribute */
573 static struct omap_timer_capability_dev_attr capability_alwon_dev_attr = {
574 .timer_capability = OMAP_TIMER_ALWON,
577 /* pwm timers dev attribute */
578 static struct omap_timer_capability_dev_attr capability_pwm_dev_attr = {
579 .timer_capability = OMAP_TIMER_HAS_PWM,
583 static struct omap_hwmod omap3xxx_timer1_hwmod;
585 static struct omap_hwmod_addr_space omap3xxx_timer1_addrs[] = {
587 .pa_start = 0x48318000,
588 .pa_end = 0x48318000 + SZ_1K - 1,
589 .flags = ADDR_TYPE_RT
594 /* l4_wkup -> timer1 */
595 static struct omap_hwmod_ocp_if omap3xxx_l4_wkup__timer1 = {
596 .master = &omap3xxx_l4_wkup_hwmod,
597 .slave = &omap3xxx_timer1_hwmod,
599 .addr = omap3xxx_timer1_addrs,
600 .user = OCP_USER_MPU | OCP_USER_SDMA,
603 /* timer1 slave port */
604 static struct omap_hwmod_ocp_if *omap3xxx_timer1_slaves[] = {
605 &omap3xxx_l4_wkup__timer1,
609 static struct omap_hwmod omap3xxx_timer1_hwmod = {
611 .mpu_irqs = omap2_timer1_mpu_irqs,
612 .main_clk = "gpt1_fck",
616 .module_bit = OMAP3430_EN_GPT1_SHIFT,
617 .module_offs = WKUP_MOD,
619 .idlest_idle_bit = OMAP3430_ST_GPT1_SHIFT,
622 .dev_attr = &capability_alwon_dev_attr,
623 .slaves = omap3xxx_timer1_slaves,
624 .slaves_cnt = ARRAY_SIZE(omap3xxx_timer1_slaves),
625 .class = &omap3xxx_timer_1ms_hwmod_class,
629 static struct omap_hwmod omap3xxx_timer2_hwmod;
631 static struct omap_hwmod_addr_space omap3xxx_timer2_addrs[] = {
633 .pa_start = 0x49032000,
634 .pa_end = 0x49032000 + SZ_1K - 1,
635 .flags = ADDR_TYPE_RT
640 /* l4_per -> timer2 */
641 static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer2 = {
642 .master = &omap3xxx_l4_per_hwmod,
643 .slave = &omap3xxx_timer2_hwmod,
645 .addr = omap3xxx_timer2_addrs,
646 .user = OCP_USER_MPU | OCP_USER_SDMA,
649 /* timer2 slave port */
650 static struct omap_hwmod_ocp_if *omap3xxx_timer2_slaves[] = {
651 &omap3xxx_l4_per__timer2,
655 static struct omap_hwmod omap3xxx_timer2_hwmod = {
657 .mpu_irqs = omap2_timer2_mpu_irqs,
658 .main_clk = "gpt2_fck",
662 .module_bit = OMAP3430_EN_GPT2_SHIFT,
663 .module_offs = OMAP3430_PER_MOD,
665 .idlest_idle_bit = OMAP3430_ST_GPT2_SHIFT,
668 .dev_attr = &capability_alwon_dev_attr,
669 .slaves = omap3xxx_timer2_slaves,
670 .slaves_cnt = ARRAY_SIZE(omap3xxx_timer2_slaves),
671 .class = &omap3xxx_timer_1ms_hwmod_class,
675 static struct omap_hwmod omap3xxx_timer3_hwmod;
677 static struct omap_hwmod_addr_space omap3xxx_timer3_addrs[] = {
679 .pa_start = 0x49034000,
680 .pa_end = 0x49034000 + SZ_1K - 1,
681 .flags = ADDR_TYPE_RT
686 /* l4_per -> timer3 */
687 static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer3 = {
688 .master = &omap3xxx_l4_per_hwmod,
689 .slave = &omap3xxx_timer3_hwmod,
691 .addr = omap3xxx_timer3_addrs,
692 .user = OCP_USER_MPU | OCP_USER_SDMA,
695 /* timer3 slave port */
696 static struct omap_hwmod_ocp_if *omap3xxx_timer3_slaves[] = {
697 &omap3xxx_l4_per__timer3,
701 static struct omap_hwmod omap3xxx_timer3_hwmod = {
703 .mpu_irqs = omap2_timer3_mpu_irqs,
704 .main_clk = "gpt3_fck",
708 .module_bit = OMAP3430_EN_GPT3_SHIFT,
709 .module_offs = OMAP3430_PER_MOD,
711 .idlest_idle_bit = OMAP3430_ST_GPT3_SHIFT,
714 .dev_attr = &capability_alwon_dev_attr,
715 .slaves = omap3xxx_timer3_slaves,
716 .slaves_cnt = ARRAY_SIZE(omap3xxx_timer3_slaves),
717 .class = &omap3xxx_timer_hwmod_class,
721 static struct omap_hwmod omap3xxx_timer4_hwmod;
723 static struct omap_hwmod_addr_space omap3xxx_timer4_addrs[] = {
725 .pa_start = 0x49036000,
726 .pa_end = 0x49036000 + SZ_1K - 1,
727 .flags = ADDR_TYPE_RT
732 /* l4_per -> timer4 */
733 static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer4 = {
734 .master = &omap3xxx_l4_per_hwmod,
735 .slave = &omap3xxx_timer4_hwmod,
737 .addr = omap3xxx_timer4_addrs,
738 .user = OCP_USER_MPU | OCP_USER_SDMA,
741 /* timer4 slave port */
742 static struct omap_hwmod_ocp_if *omap3xxx_timer4_slaves[] = {
743 &omap3xxx_l4_per__timer4,
747 static struct omap_hwmod omap3xxx_timer4_hwmod = {
749 .mpu_irqs = omap2_timer4_mpu_irqs,
750 .main_clk = "gpt4_fck",
754 .module_bit = OMAP3430_EN_GPT4_SHIFT,
755 .module_offs = OMAP3430_PER_MOD,
757 .idlest_idle_bit = OMAP3430_ST_GPT4_SHIFT,
760 .dev_attr = &capability_alwon_dev_attr,
761 .slaves = omap3xxx_timer4_slaves,
762 .slaves_cnt = ARRAY_SIZE(omap3xxx_timer4_slaves),
763 .class = &omap3xxx_timer_hwmod_class,
767 static struct omap_hwmod omap3xxx_timer5_hwmod;
769 static struct omap_hwmod_addr_space omap3xxx_timer5_addrs[] = {
771 .pa_start = 0x49038000,
772 .pa_end = 0x49038000 + SZ_1K - 1,
773 .flags = ADDR_TYPE_RT
778 /* l4_per -> timer5 */
779 static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer5 = {
780 .master = &omap3xxx_l4_per_hwmod,
781 .slave = &omap3xxx_timer5_hwmod,
783 .addr = omap3xxx_timer5_addrs,
784 .user = OCP_USER_MPU | OCP_USER_SDMA,
787 /* timer5 slave port */
788 static struct omap_hwmod_ocp_if *omap3xxx_timer5_slaves[] = {
789 &omap3xxx_l4_per__timer5,
793 static struct omap_hwmod omap3xxx_timer5_hwmod = {
795 .mpu_irqs = omap2_timer5_mpu_irqs,
796 .main_clk = "gpt5_fck",
800 .module_bit = OMAP3430_EN_GPT5_SHIFT,
801 .module_offs = OMAP3430_PER_MOD,
803 .idlest_idle_bit = OMAP3430_ST_GPT5_SHIFT,
806 .dev_attr = &capability_alwon_dev_attr,
807 .slaves = omap3xxx_timer5_slaves,
808 .slaves_cnt = ARRAY_SIZE(omap3xxx_timer5_slaves),
809 .class = &omap3xxx_timer_hwmod_class,
813 static struct omap_hwmod omap3xxx_timer6_hwmod;
815 static struct omap_hwmod_addr_space omap3xxx_timer6_addrs[] = {
817 .pa_start = 0x4903A000,
818 .pa_end = 0x4903A000 + SZ_1K - 1,
819 .flags = ADDR_TYPE_RT
824 /* l4_per -> timer6 */
825 static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer6 = {
826 .master = &omap3xxx_l4_per_hwmod,
827 .slave = &omap3xxx_timer6_hwmod,
829 .addr = omap3xxx_timer6_addrs,
830 .user = OCP_USER_MPU | OCP_USER_SDMA,
833 /* timer6 slave port */
834 static struct omap_hwmod_ocp_if *omap3xxx_timer6_slaves[] = {
835 &omap3xxx_l4_per__timer6,
839 static struct omap_hwmod omap3xxx_timer6_hwmod = {
841 .mpu_irqs = omap2_timer6_mpu_irqs,
842 .main_clk = "gpt6_fck",
846 .module_bit = OMAP3430_EN_GPT6_SHIFT,
847 .module_offs = OMAP3430_PER_MOD,
849 .idlest_idle_bit = OMAP3430_ST_GPT6_SHIFT,
852 .dev_attr = &capability_alwon_dev_attr,
853 .slaves = omap3xxx_timer6_slaves,
854 .slaves_cnt = ARRAY_SIZE(omap3xxx_timer6_slaves),
855 .class = &omap3xxx_timer_hwmod_class,
859 static struct omap_hwmod omap3xxx_timer7_hwmod;
861 static struct omap_hwmod_addr_space omap3xxx_timer7_addrs[] = {
863 .pa_start = 0x4903C000,
864 .pa_end = 0x4903C000 + SZ_1K - 1,
865 .flags = ADDR_TYPE_RT
870 /* l4_per -> timer7 */
871 static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer7 = {
872 .master = &omap3xxx_l4_per_hwmod,
873 .slave = &omap3xxx_timer7_hwmod,
875 .addr = omap3xxx_timer7_addrs,
876 .user = OCP_USER_MPU | OCP_USER_SDMA,
879 /* timer7 slave port */
880 static struct omap_hwmod_ocp_if *omap3xxx_timer7_slaves[] = {
881 &omap3xxx_l4_per__timer7,
885 static struct omap_hwmod omap3xxx_timer7_hwmod = {
887 .mpu_irqs = omap2_timer7_mpu_irqs,
888 .main_clk = "gpt7_fck",
892 .module_bit = OMAP3430_EN_GPT7_SHIFT,
893 .module_offs = OMAP3430_PER_MOD,
895 .idlest_idle_bit = OMAP3430_ST_GPT7_SHIFT,
898 .dev_attr = &capability_alwon_dev_attr,
899 .slaves = omap3xxx_timer7_slaves,
900 .slaves_cnt = ARRAY_SIZE(omap3xxx_timer7_slaves),
901 .class = &omap3xxx_timer_hwmod_class,
905 static struct omap_hwmod omap3xxx_timer8_hwmod;
907 static struct omap_hwmod_addr_space omap3xxx_timer8_addrs[] = {
909 .pa_start = 0x4903E000,
910 .pa_end = 0x4903E000 + SZ_1K - 1,
911 .flags = ADDR_TYPE_RT
916 /* l4_per -> timer8 */
917 static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer8 = {
918 .master = &omap3xxx_l4_per_hwmod,
919 .slave = &omap3xxx_timer8_hwmod,
921 .addr = omap3xxx_timer8_addrs,
922 .user = OCP_USER_MPU | OCP_USER_SDMA,
925 /* timer8 slave port */
926 static struct omap_hwmod_ocp_if *omap3xxx_timer8_slaves[] = {
927 &omap3xxx_l4_per__timer8,
931 static struct omap_hwmod omap3xxx_timer8_hwmod = {
933 .mpu_irqs = omap2_timer8_mpu_irqs,
934 .main_clk = "gpt8_fck",
938 .module_bit = OMAP3430_EN_GPT8_SHIFT,
939 .module_offs = OMAP3430_PER_MOD,
941 .idlest_idle_bit = OMAP3430_ST_GPT8_SHIFT,
944 .dev_attr = &capability_pwm_dev_attr,
945 .slaves = omap3xxx_timer8_slaves,
946 .slaves_cnt = ARRAY_SIZE(omap3xxx_timer8_slaves),
947 .class = &omap3xxx_timer_hwmod_class,
951 static struct omap_hwmod omap3xxx_timer9_hwmod;
953 static struct omap_hwmod_addr_space omap3xxx_timer9_addrs[] = {
955 .pa_start = 0x49040000,
956 .pa_end = 0x49040000 + SZ_1K - 1,
957 .flags = ADDR_TYPE_RT
962 /* l4_per -> timer9 */
963 static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer9 = {
964 .master = &omap3xxx_l4_per_hwmod,
965 .slave = &omap3xxx_timer9_hwmod,
967 .addr = omap3xxx_timer9_addrs,
968 .user = OCP_USER_MPU | OCP_USER_SDMA,
971 /* timer9 slave port */
972 static struct omap_hwmod_ocp_if *omap3xxx_timer9_slaves[] = {
973 &omap3xxx_l4_per__timer9,
977 static struct omap_hwmod omap3xxx_timer9_hwmod = {
979 .mpu_irqs = omap2_timer9_mpu_irqs,
980 .main_clk = "gpt9_fck",
984 .module_bit = OMAP3430_EN_GPT9_SHIFT,
985 .module_offs = OMAP3430_PER_MOD,
987 .idlest_idle_bit = OMAP3430_ST_GPT9_SHIFT,
990 .dev_attr = &capability_pwm_dev_attr,
991 .slaves = omap3xxx_timer9_slaves,
992 .slaves_cnt = ARRAY_SIZE(omap3xxx_timer9_slaves),
993 .class = &omap3xxx_timer_hwmod_class,
997 static struct omap_hwmod omap3xxx_timer10_hwmod;
999 /* l4_core -> timer10 */
1000 static struct omap_hwmod_ocp_if omap3xxx_l4_core__timer10 = {
1001 .master = &omap3xxx_l4_core_hwmod,
1002 .slave = &omap3xxx_timer10_hwmod,
1004 .addr = omap2_timer10_addrs,
1005 .user = OCP_USER_MPU | OCP_USER_SDMA,
1008 /* timer10 slave port */
1009 static struct omap_hwmod_ocp_if *omap3xxx_timer10_slaves[] = {
1010 &omap3xxx_l4_core__timer10,
1014 static struct omap_hwmod omap3xxx_timer10_hwmod = {
1016 .mpu_irqs = omap2_timer10_mpu_irqs,
1017 .main_clk = "gpt10_fck",
1021 .module_bit = OMAP3430_EN_GPT10_SHIFT,
1022 .module_offs = CORE_MOD,
1024 .idlest_idle_bit = OMAP3430_ST_GPT10_SHIFT,
1027 .dev_attr = &capability_pwm_dev_attr,
1028 .slaves = omap3xxx_timer10_slaves,
1029 .slaves_cnt = ARRAY_SIZE(omap3xxx_timer10_slaves),
1030 .class = &omap3xxx_timer_1ms_hwmod_class,
1034 static struct omap_hwmod omap3xxx_timer11_hwmod;
1036 /* l4_core -> timer11 */
1037 static struct omap_hwmod_ocp_if omap3xxx_l4_core__timer11 = {
1038 .master = &omap3xxx_l4_core_hwmod,
1039 .slave = &omap3xxx_timer11_hwmod,
1041 .addr = omap2_timer11_addrs,
1042 .user = OCP_USER_MPU | OCP_USER_SDMA,
1045 /* timer11 slave port */
1046 static struct omap_hwmod_ocp_if *omap3xxx_timer11_slaves[] = {
1047 &omap3xxx_l4_core__timer11,
1051 static struct omap_hwmod omap3xxx_timer11_hwmod = {
1053 .mpu_irqs = omap2_timer11_mpu_irqs,
1054 .main_clk = "gpt11_fck",
1058 .module_bit = OMAP3430_EN_GPT11_SHIFT,
1059 .module_offs = CORE_MOD,
1061 .idlest_idle_bit = OMAP3430_ST_GPT11_SHIFT,
1064 .dev_attr = &capability_pwm_dev_attr,
1065 .slaves = omap3xxx_timer11_slaves,
1066 .slaves_cnt = ARRAY_SIZE(omap3xxx_timer11_slaves),
1067 .class = &omap3xxx_timer_hwmod_class,
1071 static struct omap_hwmod omap3xxx_timer12_hwmod;
1072 static struct omap_hwmod_irq_info omap3xxx_timer12_mpu_irqs[] = {
1077 static struct omap_hwmod_addr_space omap3xxx_timer12_addrs[] = {
1079 .pa_start = 0x48304000,
1080 .pa_end = 0x48304000 + SZ_1K - 1,
1081 .flags = ADDR_TYPE_RT
1086 /* l4_core -> timer12 */
1087 static struct omap_hwmod_ocp_if omap3xxx_l4_core__timer12 = {
1088 .master = &omap3xxx_l4_core_hwmod,
1089 .slave = &omap3xxx_timer12_hwmod,
1091 .addr = omap3xxx_timer12_addrs,
1092 .user = OCP_USER_MPU | OCP_USER_SDMA,
1095 /* timer12 slave port */
1096 static struct omap_hwmod_ocp_if *omap3xxx_timer12_slaves[] = {
1097 &omap3xxx_l4_core__timer12,
1101 static struct omap_hwmod omap3xxx_timer12_hwmod = {
1103 .mpu_irqs = omap3xxx_timer12_mpu_irqs,
1104 .main_clk = "gpt12_fck",
1108 .module_bit = OMAP3430_EN_GPT12_SHIFT,
1109 .module_offs = WKUP_MOD,
1111 .idlest_idle_bit = OMAP3430_ST_GPT12_SHIFT,
1114 .dev_attr = &capability_secure_dev_attr,
1115 .slaves = omap3xxx_timer12_slaves,
1116 .slaves_cnt = ARRAY_SIZE(omap3xxx_timer12_slaves),
1117 .class = &omap3xxx_timer_hwmod_class,
1120 /* l4_wkup -> wd_timer2 */
1121 static struct omap_hwmod_addr_space omap3xxx_wd_timer2_addrs[] = {
1123 .pa_start = 0x48314000,
1124 .pa_end = 0x4831407f,
1125 .flags = ADDR_TYPE_RT
1130 static struct omap_hwmod_ocp_if omap3xxx_l4_wkup__wd_timer2 = {
1131 .master = &omap3xxx_l4_wkup_hwmod,
1132 .slave = &omap3xxx_wd_timer2_hwmod,
1134 .addr = omap3xxx_wd_timer2_addrs,
1135 .user = OCP_USER_MPU | OCP_USER_SDMA,
1140 * 32-bit watchdog upward counter that generates a pulse on the reset pin on
1141 * overflow condition
1144 static struct omap_hwmod_class_sysconfig omap3xxx_wd_timer_sysc = {
1146 .sysc_offs = 0x0010,
1147 .syss_offs = 0x0014,
1148 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_EMUFREE |
1149 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
1150 SYSC_HAS_AUTOIDLE | SYSC_HAS_CLOCKACTIVITY |
1151 SYSS_HAS_RESET_STATUS),
1152 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
1153 .sysc_fields = &omap_hwmod_sysc_type1,
1157 static struct omap_hwmod_class_sysconfig i2c_sysc = {
1161 .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE |
1162 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
1163 SYSC_HAS_AUTOIDLE | SYSS_HAS_RESET_STATUS),
1164 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
1165 .sysc_fields = &omap_hwmod_sysc_type1,
1168 static struct omap_hwmod_class omap3xxx_wd_timer_hwmod_class = {
1170 .sysc = &omap3xxx_wd_timer_sysc,
1171 .pre_shutdown = &omap2_wd_timer_disable
1175 static struct omap_hwmod_ocp_if *omap3xxx_wd_timer2_slaves[] = {
1176 &omap3xxx_l4_wkup__wd_timer2,
1179 static struct omap_hwmod omap3xxx_wd_timer2_hwmod = {
1180 .name = "wd_timer2",
1181 .class = &omap3xxx_wd_timer_hwmod_class,
1182 .main_clk = "wdt2_fck",
1186 .module_bit = OMAP3430_EN_WDT2_SHIFT,
1187 .module_offs = WKUP_MOD,
1189 .idlest_idle_bit = OMAP3430_ST_WDT2_SHIFT,
1192 .slaves = omap3xxx_wd_timer2_slaves,
1193 .slaves_cnt = ARRAY_SIZE(omap3xxx_wd_timer2_slaves),
1195 * XXX: Use software supervised mode, HW supervised smartidle seems to
1196 * block CORE power domain idle transitions. Maybe a HW bug in wdt2?
1198 .flags = HWMOD_SWSUP_SIDLE,
1203 static struct omap_hwmod_ocp_if *omap3xxx_uart1_slaves[] = {
1204 &omap3_l4_core__uart1,
1207 static struct omap_hwmod omap3xxx_uart1_hwmod = {
1209 .mpu_irqs = omap2_uart1_mpu_irqs,
1210 .sdma_reqs = omap2_uart1_sdma_reqs,
1211 .main_clk = "uart1_fck",
1214 .module_offs = CORE_MOD,
1216 .module_bit = OMAP3430_EN_UART1_SHIFT,
1218 .idlest_idle_bit = OMAP3430_EN_UART1_SHIFT,
1221 .slaves = omap3xxx_uart1_slaves,
1222 .slaves_cnt = ARRAY_SIZE(omap3xxx_uart1_slaves),
1223 .class = &omap2_uart_class,
1228 static struct omap_hwmod_ocp_if *omap3xxx_uart2_slaves[] = {
1229 &omap3_l4_core__uart2,
1232 static struct omap_hwmod omap3xxx_uart2_hwmod = {
1234 .mpu_irqs = omap2_uart2_mpu_irqs,
1235 .sdma_reqs = omap2_uart2_sdma_reqs,
1236 .main_clk = "uart2_fck",
1239 .module_offs = CORE_MOD,
1241 .module_bit = OMAP3430_EN_UART2_SHIFT,
1243 .idlest_idle_bit = OMAP3430_EN_UART2_SHIFT,
1246 .slaves = omap3xxx_uart2_slaves,
1247 .slaves_cnt = ARRAY_SIZE(omap3xxx_uart2_slaves),
1248 .class = &omap2_uart_class,
1253 static struct omap_hwmod_ocp_if *omap3xxx_uart3_slaves[] = {
1254 &omap3_l4_per__uart3,
1257 static struct omap_hwmod omap3xxx_uart3_hwmod = {
1259 .mpu_irqs = omap2_uart3_mpu_irqs,
1260 .sdma_reqs = omap2_uart3_sdma_reqs,
1261 .main_clk = "uart3_fck",
1264 .module_offs = OMAP3430_PER_MOD,
1266 .module_bit = OMAP3430_EN_UART3_SHIFT,
1268 .idlest_idle_bit = OMAP3430_EN_UART3_SHIFT,
1271 .slaves = omap3xxx_uart3_slaves,
1272 .slaves_cnt = ARRAY_SIZE(omap3xxx_uart3_slaves),
1273 .class = &omap2_uart_class,
1278 static struct omap_hwmod_irq_info uart4_mpu_irqs[] = {
1279 { .irq = INT_36XX_UART4_IRQ, },
1283 static struct omap_hwmod_dma_info uart4_sdma_reqs[] = {
1284 { .name = "rx", .dma_req = OMAP36XX_DMA_UART4_RX, },
1285 { .name = "tx", .dma_req = OMAP36XX_DMA_UART4_TX, },
1289 static struct omap_hwmod_ocp_if *omap3xxx_uart4_slaves[] = {
1290 &omap3_l4_per__uart4,
1293 static struct omap_hwmod omap3xxx_uart4_hwmod = {
1295 .mpu_irqs = uart4_mpu_irqs,
1296 .sdma_reqs = uart4_sdma_reqs,
1297 .main_clk = "uart4_fck",
1300 .module_offs = OMAP3430_PER_MOD,
1302 .module_bit = OMAP3630_EN_UART4_SHIFT,
1304 .idlest_idle_bit = OMAP3630_EN_UART4_SHIFT,
1307 .slaves = omap3xxx_uart4_slaves,
1308 .slaves_cnt = ARRAY_SIZE(omap3xxx_uart4_slaves),
1309 .class = &omap2_uart_class,
1312 static struct omap_hwmod_class i2c_class = {
1315 .rev = OMAP_I2C_IP_VERSION_1,
1316 .reset = &omap_i2c_reset,
1319 static struct omap_hwmod_dma_info omap3xxx_dss_sdma_chs[] = {
1320 { .name = "dispc", .dma_req = 5 },
1321 { .name = "dsi1", .dma_req = 74 },
1326 /* dss master ports */
1327 static struct omap_hwmod_ocp_if *omap3xxx_dss_masters[] = {
1331 /* l4_core -> dss */
1332 static struct omap_hwmod_ocp_if omap3430es1_l4_core__dss = {
1333 .master = &omap3xxx_l4_core_hwmod,
1334 .slave = &omap3430es1_dss_core_hwmod,
1336 .addr = omap2_dss_addrs,
1339 .l4_fw_region = OMAP3ES1_L4_CORE_FW_DSS_CORE_REGION,
1340 .l4_prot_group = OMAP3_L4_CORE_FW_DSS_PROT_GROUP,
1341 .flags = OMAP_FIREWALL_L4,
1344 .user = OCP_USER_MPU | OCP_USER_SDMA,
1347 static struct omap_hwmod_ocp_if omap3xxx_l4_core__dss = {
1348 .master = &omap3xxx_l4_core_hwmod,
1349 .slave = &omap3xxx_dss_core_hwmod,
1351 .addr = omap2_dss_addrs,
1354 .l4_fw_region = OMAP3_L4_CORE_FW_DSS_CORE_REGION,
1355 .l4_prot_group = OMAP3_L4_CORE_FW_DSS_PROT_GROUP,
1356 .flags = OMAP_FIREWALL_L4,
1359 .user = OCP_USER_MPU | OCP_USER_SDMA,
1362 /* dss slave ports */
1363 static struct omap_hwmod_ocp_if *omap3430es1_dss_slaves[] = {
1364 &omap3430es1_l4_core__dss,
1367 static struct omap_hwmod_ocp_if *omap3xxx_dss_slaves[] = {
1368 &omap3xxx_l4_core__dss,
1371 static struct omap_hwmod_opt_clk dss_opt_clks[] = {
1373 * The DSS HW needs all DSS clocks enabled during reset. The dss_core
1374 * driver does not use these clocks.
1376 { .role = "sys_clk", .clk = "dss2_alwon_fck" },
1377 { .role = "tv_clk", .clk = "dss_tv_fck" },
1378 /* required only on OMAP3430 */
1379 { .role = "tv_dac_clk", .clk = "dss_96m_fck" },
1382 static struct omap_hwmod omap3430es1_dss_core_hwmod = {
1384 .class = &omap2_dss_hwmod_class,
1385 .main_clk = "dss1_alwon_fck", /* instead of dss_fck */
1386 .sdma_reqs = omap3xxx_dss_sdma_chs,
1390 .module_bit = OMAP3430_EN_DSS1_SHIFT,
1391 .module_offs = OMAP3430_DSS_MOD,
1393 .idlest_stdby_bit = OMAP3430ES1_ST_DSS_SHIFT,
1396 .opt_clks = dss_opt_clks,
1397 .opt_clks_cnt = ARRAY_SIZE(dss_opt_clks),
1398 .slaves = omap3430es1_dss_slaves,
1399 .slaves_cnt = ARRAY_SIZE(omap3430es1_dss_slaves),
1400 .masters = omap3xxx_dss_masters,
1401 .masters_cnt = ARRAY_SIZE(omap3xxx_dss_masters),
1402 .flags = HWMOD_NO_IDLEST | HWMOD_CONTROL_OPT_CLKS_IN_RESET,
1405 static struct omap_hwmod omap3xxx_dss_core_hwmod = {
1407 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
1408 .class = &omap2_dss_hwmod_class,
1409 .main_clk = "dss1_alwon_fck", /* instead of dss_fck */
1410 .sdma_reqs = omap3xxx_dss_sdma_chs,
1414 .module_bit = OMAP3430_EN_DSS1_SHIFT,
1415 .module_offs = OMAP3430_DSS_MOD,
1417 .idlest_idle_bit = OMAP3430ES2_ST_DSS_IDLE_SHIFT,
1418 .idlest_stdby_bit = OMAP3430ES2_ST_DSS_STDBY_SHIFT,
1421 .opt_clks = dss_opt_clks,
1422 .opt_clks_cnt = ARRAY_SIZE(dss_opt_clks),
1423 .slaves = omap3xxx_dss_slaves,
1424 .slaves_cnt = ARRAY_SIZE(omap3xxx_dss_slaves),
1425 .masters = omap3xxx_dss_masters,
1426 .masters_cnt = ARRAY_SIZE(omap3xxx_dss_masters),
1431 * display controller
1434 static struct omap_hwmod_class_sysconfig omap3_dispc_sysc = {
1436 .sysc_offs = 0x0010,
1437 .syss_offs = 0x0014,
1438 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_MIDLEMODE |
1439 SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE |
1440 SYSC_HAS_ENAWAKEUP),
1441 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |
1442 MSTANDBY_FORCE | MSTANDBY_NO | MSTANDBY_SMART),
1443 .sysc_fields = &omap_hwmod_sysc_type1,
1446 static struct omap_hwmod_class omap3_dispc_hwmod_class = {
1448 .sysc = &omap3_dispc_sysc,
1451 /* l4_core -> dss_dispc */
1452 static struct omap_hwmod_ocp_if omap3xxx_l4_core__dss_dispc = {
1453 .master = &omap3xxx_l4_core_hwmod,
1454 .slave = &omap3xxx_dss_dispc_hwmod,
1456 .addr = omap2_dss_dispc_addrs,
1459 .l4_fw_region = OMAP3_L4_CORE_FW_DSS_DISPC_REGION,
1460 .l4_prot_group = OMAP3_L4_CORE_FW_DSS_PROT_GROUP,
1461 .flags = OMAP_FIREWALL_L4,
1464 .user = OCP_USER_MPU | OCP_USER_SDMA,
1467 /* dss_dispc slave ports */
1468 static struct omap_hwmod_ocp_if *omap3xxx_dss_dispc_slaves[] = {
1469 &omap3xxx_l4_core__dss_dispc,
1472 static struct omap_hwmod omap3xxx_dss_dispc_hwmod = {
1473 .name = "dss_dispc",
1474 .class = &omap3_dispc_hwmod_class,
1475 .mpu_irqs = omap2_dispc_irqs,
1476 .main_clk = "dss1_alwon_fck",
1480 .module_bit = OMAP3430_EN_DSS1_SHIFT,
1481 .module_offs = OMAP3430_DSS_MOD,
1484 .slaves = omap3xxx_dss_dispc_slaves,
1485 .slaves_cnt = ARRAY_SIZE(omap3xxx_dss_dispc_slaves),
1486 .flags = HWMOD_NO_IDLEST,
1487 .dev_attr = &omap2_3_dss_dispc_dev_attr
1492 * display serial interface controller
1495 static struct omap_hwmod_class omap3xxx_dsi_hwmod_class = {
1499 static struct omap_hwmod_irq_info omap3xxx_dsi1_irqs[] = {
1505 static struct omap_hwmod_addr_space omap3xxx_dss_dsi1_addrs[] = {
1507 .pa_start = 0x4804FC00,
1508 .pa_end = 0x4804FFFF,
1509 .flags = ADDR_TYPE_RT
1514 /* l4_core -> dss_dsi1 */
1515 static struct omap_hwmod_ocp_if omap3xxx_l4_core__dss_dsi1 = {
1516 .master = &omap3xxx_l4_core_hwmod,
1517 .slave = &omap3xxx_dss_dsi1_hwmod,
1519 .addr = omap3xxx_dss_dsi1_addrs,
1522 .l4_fw_region = OMAP3_L4_CORE_FW_DSS_DSI_REGION,
1523 .l4_prot_group = OMAP3_L4_CORE_FW_DSS_PROT_GROUP,
1524 .flags = OMAP_FIREWALL_L4,
1527 .user = OCP_USER_MPU | OCP_USER_SDMA,
1530 /* dss_dsi1 slave ports */
1531 static struct omap_hwmod_ocp_if *omap3xxx_dss_dsi1_slaves[] = {
1532 &omap3xxx_l4_core__dss_dsi1,
1535 static struct omap_hwmod_opt_clk dss_dsi1_opt_clks[] = {
1536 { .role = "sys_clk", .clk = "dss2_alwon_fck" },
1539 static struct omap_hwmod omap3xxx_dss_dsi1_hwmod = {
1541 .class = &omap3xxx_dsi_hwmod_class,
1542 .mpu_irqs = omap3xxx_dsi1_irqs,
1543 .main_clk = "dss1_alwon_fck",
1547 .module_bit = OMAP3430_EN_DSS1_SHIFT,
1548 .module_offs = OMAP3430_DSS_MOD,
1551 .opt_clks = dss_dsi1_opt_clks,
1552 .opt_clks_cnt = ARRAY_SIZE(dss_dsi1_opt_clks),
1553 .slaves = omap3xxx_dss_dsi1_slaves,
1554 .slaves_cnt = ARRAY_SIZE(omap3xxx_dss_dsi1_slaves),
1555 .flags = HWMOD_NO_IDLEST,
1558 /* l4_core -> dss_rfbi */
1559 static struct omap_hwmod_ocp_if omap3xxx_l4_core__dss_rfbi = {
1560 .master = &omap3xxx_l4_core_hwmod,
1561 .slave = &omap3xxx_dss_rfbi_hwmod,
1563 .addr = omap2_dss_rfbi_addrs,
1566 .l4_fw_region = OMAP3_L4_CORE_FW_DSS_RFBI_REGION,
1567 .l4_prot_group = OMAP3_L4_CORE_FW_DSS_PROT_GROUP ,
1568 .flags = OMAP_FIREWALL_L4,
1571 .user = OCP_USER_MPU | OCP_USER_SDMA,
1574 /* dss_rfbi slave ports */
1575 static struct omap_hwmod_ocp_if *omap3xxx_dss_rfbi_slaves[] = {
1576 &omap3xxx_l4_core__dss_rfbi,
1579 static struct omap_hwmod_opt_clk dss_rfbi_opt_clks[] = {
1580 { .role = "ick", .clk = "dss_ick" },
1583 static struct omap_hwmod omap3xxx_dss_rfbi_hwmod = {
1585 .class = &omap2_rfbi_hwmod_class,
1586 .main_clk = "dss1_alwon_fck",
1590 .module_bit = OMAP3430_EN_DSS1_SHIFT,
1591 .module_offs = OMAP3430_DSS_MOD,
1594 .opt_clks = dss_rfbi_opt_clks,
1595 .opt_clks_cnt = ARRAY_SIZE(dss_rfbi_opt_clks),
1596 .slaves = omap3xxx_dss_rfbi_slaves,
1597 .slaves_cnt = ARRAY_SIZE(omap3xxx_dss_rfbi_slaves),
1598 .flags = HWMOD_NO_IDLEST,
1601 /* l4_core -> dss_venc */
1602 static struct omap_hwmod_ocp_if omap3xxx_l4_core__dss_venc = {
1603 .master = &omap3xxx_l4_core_hwmod,
1604 .slave = &omap3xxx_dss_venc_hwmod,
1606 .addr = omap2_dss_venc_addrs,
1609 .l4_fw_region = OMAP3_L4_CORE_FW_DSS_VENC_REGION,
1610 .l4_prot_group = OMAP3_L4_CORE_FW_DSS_PROT_GROUP,
1611 .flags = OMAP_FIREWALL_L4,
1614 .user = OCP_USER_MPU | OCP_USER_SDMA,
1617 /* dss_venc slave ports */
1618 static struct omap_hwmod_ocp_if *omap3xxx_dss_venc_slaves[] = {
1619 &omap3xxx_l4_core__dss_venc,
1622 static struct omap_hwmod_opt_clk dss_venc_opt_clks[] = {
1623 /* required only on OMAP3430 */
1624 { .role = "tv_dac_clk", .clk = "dss_96m_fck" },
1627 static struct omap_hwmod omap3xxx_dss_venc_hwmod = {
1629 .class = &omap2_venc_hwmod_class,
1630 .main_clk = "dss_tv_fck",
1634 .module_bit = OMAP3430_EN_DSS1_SHIFT,
1635 .module_offs = OMAP3430_DSS_MOD,
1638 .opt_clks = dss_venc_opt_clks,
1639 .opt_clks_cnt = ARRAY_SIZE(dss_venc_opt_clks),
1640 .slaves = omap3xxx_dss_venc_slaves,
1641 .slaves_cnt = ARRAY_SIZE(omap3xxx_dss_venc_slaves),
1642 .flags = HWMOD_NO_IDLEST,
1647 static struct omap_i2c_dev_attr i2c1_dev_attr = {
1648 .fifo_depth = 8, /* bytes */
1649 .flags = OMAP_I2C_FLAG_APPLY_ERRATA_I207 |
1650 OMAP_I2C_FLAG_RESET_REGS_POSTIDLE |
1651 OMAP_I2C_FLAG_BUS_SHIFT_2,
1654 static struct omap_hwmod_ocp_if *omap3xxx_i2c1_slaves[] = {
1655 &omap3_l4_core__i2c1,
1658 static struct omap_hwmod omap3xxx_i2c1_hwmod = {
1660 .flags = HWMOD_16BIT_REG,
1661 .mpu_irqs = omap2_i2c1_mpu_irqs,
1662 .sdma_reqs = omap2_i2c1_sdma_reqs,
1663 .main_clk = "i2c1_fck",
1666 .module_offs = CORE_MOD,
1668 .module_bit = OMAP3430_EN_I2C1_SHIFT,
1670 .idlest_idle_bit = OMAP3430_ST_I2C1_SHIFT,
1673 .slaves = omap3xxx_i2c1_slaves,
1674 .slaves_cnt = ARRAY_SIZE(omap3xxx_i2c1_slaves),
1675 .class = &i2c_class,
1676 .dev_attr = &i2c1_dev_attr,
1681 static struct omap_i2c_dev_attr i2c2_dev_attr = {
1682 .fifo_depth = 8, /* bytes */
1683 .flags = OMAP_I2C_FLAG_APPLY_ERRATA_I207 |
1684 OMAP_I2C_FLAG_RESET_REGS_POSTIDLE |
1685 OMAP_I2C_FLAG_BUS_SHIFT_2,
1688 static struct omap_hwmod_ocp_if *omap3xxx_i2c2_slaves[] = {
1689 &omap3_l4_core__i2c2,
1692 static struct omap_hwmod omap3xxx_i2c2_hwmod = {
1694 .flags = HWMOD_16BIT_REG,
1695 .mpu_irqs = omap2_i2c2_mpu_irqs,
1696 .sdma_reqs = omap2_i2c2_sdma_reqs,
1697 .main_clk = "i2c2_fck",
1700 .module_offs = CORE_MOD,
1702 .module_bit = OMAP3430_EN_I2C2_SHIFT,
1704 .idlest_idle_bit = OMAP3430_ST_I2C2_SHIFT,
1707 .slaves = omap3xxx_i2c2_slaves,
1708 .slaves_cnt = ARRAY_SIZE(omap3xxx_i2c2_slaves),
1709 .class = &i2c_class,
1710 .dev_attr = &i2c2_dev_attr,
1715 static struct omap_i2c_dev_attr i2c3_dev_attr = {
1716 .fifo_depth = 64, /* bytes */
1717 .flags = OMAP_I2C_FLAG_APPLY_ERRATA_I207 |
1718 OMAP_I2C_FLAG_RESET_REGS_POSTIDLE |
1719 OMAP_I2C_FLAG_BUS_SHIFT_2,
1722 static struct omap_hwmod_irq_info i2c3_mpu_irqs[] = {
1723 { .irq = INT_34XX_I2C3_IRQ, },
1727 static struct omap_hwmod_dma_info i2c3_sdma_reqs[] = {
1728 { .name = "tx", .dma_req = OMAP34XX_DMA_I2C3_TX },
1729 { .name = "rx", .dma_req = OMAP34XX_DMA_I2C3_RX },
1733 static struct omap_hwmod_ocp_if *omap3xxx_i2c3_slaves[] = {
1734 &omap3_l4_core__i2c3,
1737 static struct omap_hwmod omap3xxx_i2c3_hwmod = {
1739 .flags = HWMOD_16BIT_REG,
1740 .mpu_irqs = i2c3_mpu_irqs,
1741 .sdma_reqs = i2c3_sdma_reqs,
1742 .main_clk = "i2c3_fck",
1745 .module_offs = CORE_MOD,
1747 .module_bit = OMAP3430_EN_I2C3_SHIFT,
1749 .idlest_idle_bit = OMAP3430_ST_I2C3_SHIFT,
1752 .slaves = omap3xxx_i2c3_slaves,
1753 .slaves_cnt = ARRAY_SIZE(omap3xxx_i2c3_slaves),
1754 .class = &i2c_class,
1755 .dev_attr = &i2c3_dev_attr,
1758 /* l4_wkup -> gpio1 */
1759 static struct omap_hwmod_addr_space omap3xxx_gpio1_addrs[] = {
1761 .pa_start = 0x48310000,
1762 .pa_end = 0x483101ff,
1763 .flags = ADDR_TYPE_RT
1768 static struct omap_hwmod_ocp_if omap3xxx_l4_wkup__gpio1 = {
1769 .master = &omap3xxx_l4_wkup_hwmod,
1770 .slave = &omap3xxx_gpio1_hwmod,
1771 .addr = omap3xxx_gpio1_addrs,
1772 .user = OCP_USER_MPU | OCP_USER_SDMA,
1775 /* l4_per -> gpio2 */
1776 static struct omap_hwmod_addr_space omap3xxx_gpio2_addrs[] = {
1778 .pa_start = 0x49050000,
1779 .pa_end = 0x490501ff,
1780 .flags = ADDR_TYPE_RT
1785 static struct omap_hwmod_ocp_if omap3xxx_l4_per__gpio2 = {
1786 .master = &omap3xxx_l4_per_hwmod,
1787 .slave = &omap3xxx_gpio2_hwmod,
1788 .addr = omap3xxx_gpio2_addrs,
1789 .user = OCP_USER_MPU | OCP_USER_SDMA,
1792 /* l4_per -> gpio3 */
1793 static struct omap_hwmod_addr_space omap3xxx_gpio3_addrs[] = {
1795 .pa_start = 0x49052000,
1796 .pa_end = 0x490521ff,
1797 .flags = ADDR_TYPE_RT
1802 static struct omap_hwmod_ocp_if omap3xxx_l4_per__gpio3 = {
1803 .master = &omap3xxx_l4_per_hwmod,
1804 .slave = &omap3xxx_gpio3_hwmod,
1805 .addr = omap3xxx_gpio3_addrs,
1806 .user = OCP_USER_MPU | OCP_USER_SDMA,
1809 /* l4_per -> gpio4 */
1810 static struct omap_hwmod_addr_space omap3xxx_gpio4_addrs[] = {
1812 .pa_start = 0x49054000,
1813 .pa_end = 0x490541ff,
1814 .flags = ADDR_TYPE_RT
1819 static struct omap_hwmod_ocp_if omap3xxx_l4_per__gpio4 = {
1820 .master = &omap3xxx_l4_per_hwmod,
1821 .slave = &omap3xxx_gpio4_hwmod,
1822 .addr = omap3xxx_gpio4_addrs,
1823 .user = OCP_USER_MPU | OCP_USER_SDMA,
1826 /* l4_per -> gpio5 */
1827 static struct omap_hwmod_addr_space omap3xxx_gpio5_addrs[] = {
1829 .pa_start = 0x49056000,
1830 .pa_end = 0x490561ff,
1831 .flags = ADDR_TYPE_RT
1836 static struct omap_hwmod_ocp_if omap3xxx_l4_per__gpio5 = {
1837 .master = &omap3xxx_l4_per_hwmod,
1838 .slave = &omap3xxx_gpio5_hwmod,
1839 .addr = omap3xxx_gpio5_addrs,
1840 .user = OCP_USER_MPU | OCP_USER_SDMA,
1843 /* l4_per -> gpio6 */
1844 static struct omap_hwmod_addr_space omap3xxx_gpio6_addrs[] = {
1846 .pa_start = 0x49058000,
1847 .pa_end = 0x490581ff,
1848 .flags = ADDR_TYPE_RT
1853 static struct omap_hwmod_ocp_if omap3xxx_l4_per__gpio6 = {
1854 .master = &omap3xxx_l4_per_hwmod,
1855 .slave = &omap3xxx_gpio6_hwmod,
1856 .addr = omap3xxx_gpio6_addrs,
1857 .user = OCP_USER_MPU | OCP_USER_SDMA,
1862 * general purpose io module
1865 static struct omap_hwmod_class_sysconfig omap3xxx_gpio_sysc = {
1867 .sysc_offs = 0x0010,
1868 .syss_offs = 0x0014,
1869 .sysc_flags = (SYSC_HAS_ENAWAKEUP | SYSC_HAS_SIDLEMODE |
1870 SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE |
1871 SYSS_HAS_RESET_STATUS),
1872 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
1873 .sysc_fields = &omap_hwmod_sysc_type1,
1876 static struct omap_hwmod_class omap3xxx_gpio_hwmod_class = {
1878 .sysc = &omap3xxx_gpio_sysc,
1883 static struct omap_gpio_dev_attr gpio_dev_attr = {
1889 static struct omap_hwmod_opt_clk gpio1_opt_clks[] = {
1890 { .role = "dbclk", .clk = "gpio1_dbck", },
1893 static struct omap_hwmod_ocp_if *omap3xxx_gpio1_slaves[] = {
1894 &omap3xxx_l4_wkup__gpio1,
1897 static struct omap_hwmod omap3xxx_gpio1_hwmod = {
1899 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
1900 .mpu_irqs = omap2_gpio1_irqs,
1901 .main_clk = "gpio1_ick",
1902 .opt_clks = gpio1_opt_clks,
1903 .opt_clks_cnt = ARRAY_SIZE(gpio1_opt_clks),
1907 .module_bit = OMAP3430_EN_GPIO1_SHIFT,
1908 .module_offs = WKUP_MOD,
1910 .idlest_idle_bit = OMAP3430_ST_GPIO1_SHIFT,
1913 .slaves = omap3xxx_gpio1_slaves,
1914 .slaves_cnt = ARRAY_SIZE(omap3xxx_gpio1_slaves),
1915 .class = &omap3xxx_gpio_hwmod_class,
1916 .dev_attr = &gpio_dev_attr,
1920 static struct omap_hwmod_opt_clk gpio2_opt_clks[] = {
1921 { .role = "dbclk", .clk = "gpio2_dbck", },
1924 static struct omap_hwmod_ocp_if *omap3xxx_gpio2_slaves[] = {
1925 &omap3xxx_l4_per__gpio2,
1928 static struct omap_hwmod omap3xxx_gpio2_hwmod = {
1930 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
1931 .mpu_irqs = omap2_gpio2_irqs,
1932 .main_clk = "gpio2_ick",
1933 .opt_clks = gpio2_opt_clks,
1934 .opt_clks_cnt = ARRAY_SIZE(gpio2_opt_clks),
1938 .module_bit = OMAP3430_EN_GPIO2_SHIFT,
1939 .module_offs = OMAP3430_PER_MOD,
1941 .idlest_idle_bit = OMAP3430_ST_GPIO2_SHIFT,
1944 .slaves = omap3xxx_gpio2_slaves,
1945 .slaves_cnt = ARRAY_SIZE(omap3xxx_gpio2_slaves),
1946 .class = &omap3xxx_gpio_hwmod_class,
1947 .dev_attr = &gpio_dev_attr,
1951 static struct omap_hwmod_opt_clk gpio3_opt_clks[] = {
1952 { .role = "dbclk", .clk = "gpio3_dbck", },
1955 static struct omap_hwmod_ocp_if *omap3xxx_gpio3_slaves[] = {
1956 &omap3xxx_l4_per__gpio3,
1959 static struct omap_hwmod omap3xxx_gpio3_hwmod = {
1961 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
1962 .mpu_irqs = omap2_gpio3_irqs,
1963 .main_clk = "gpio3_ick",
1964 .opt_clks = gpio3_opt_clks,
1965 .opt_clks_cnt = ARRAY_SIZE(gpio3_opt_clks),
1969 .module_bit = OMAP3430_EN_GPIO3_SHIFT,
1970 .module_offs = OMAP3430_PER_MOD,
1972 .idlest_idle_bit = OMAP3430_ST_GPIO3_SHIFT,
1975 .slaves = omap3xxx_gpio3_slaves,
1976 .slaves_cnt = ARRAY_SIZE(omap3xxx_gpio3_slaves),
1977 .class = &omap3xxx_gpio_hwmod_class,
1978 .dev_attr = &gpio_dev_attr,
1982 static struct omap_hwmod_opt_clk gpio4_opt_clks[] = {
1983 { .role = "dbclk", .clk = "gpio4_dbck", },
1986 static struct omap_hwmod_ocp_if *omap3xxx_gpio4_slaves[] = {
1987 &omap3xxx_l4_per__gpio4,
1990 static struct omap_hwmod omap3xxx_gpio4_hwmod = {
1992 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
1993 .mpu_irqs = omap2_gpio4_irqs,
1994 .main_clk = "gpio4_ick",
1995 .opt_clks = gpio4_opt_clks,
1996 .opt_clks_cnt = ARRAY_SIZE(gpio4_opt_clks),
2000 .module_bit = OMAP3430_EN_GPIO4_SHIFT,
2001 .module_offs = OMAP3430_PER_MOD,
2003 .idlest_idle_bit = OMAP3430_ST_GPIO4_SHIFT,
2006 .slaves = omap3xxx_gpio4_slaves,
2007 .slaves_cnt = ARRAY_SIZE(omap3xxx_gpio4_slaves),
2008 .class = &omap3xxx_gpio_hwmod_class,
2009 .dev_attr = &gpio_dev_attr,
2013 static struct omap_hwmod_irq_info omap3xxx_gpio5_irqs[] = {
2014 { .irq = 33 }, /* INT_34XX_GPIO_BANK5 */
2018 static struct omap_hwmod_opt_clk gpio5_opt_clks[] = {
2019 { .role = "dbclk", .clk = "gpio5_dbck", },
2022 static struct omap_hwmod_ocp_if *omap3xxx_gpio5_slaves[] = {
2023 &omap3xxx_l4_per__gpio5,
2026 static struct omap_hwmod omap3xxx_gpio5_hwmod = {
2028 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
2029 .mpu_irqs = omap3xxx_gpio5_irqs,
2030 .main_clk = "gpio5_ick",
2031 .opt_clks = gpio5_opt_clks,
2032 .opt_clks_cnt = ARRAY_SIZE(gpio5_opt_clks),
2036 .module_bit = OMAP3430_EN_GPIO5_SHIFT,
2037 .module_offs = OMAP3430_PER_MOD,
2039 .idlest_idle_bit = OMAP3430_ST_GPIO5_SHIFT,
2042 .slaves = omap3xxx_gpio5_slaves,
2043 .slaves_cnt = ARRAY_SIZE(omap3xxx_gpio5_slaves),
2044 .class = &omap3xxx_gpio_hwmod_class,
2045 .dev_attr = &gpio_dev_attr,
2049 static struct omap_hwmod_irq_info omap3xxx_gpio6_irqs[] = {
2050 { .irq = 34 }, /* INT_34XX_GPIO_BANK6 */
2054 static struct omap_hwmod_opt_clk gpio6_opt_clks[] = {
2055 { .role = "dbclk", .clk = "gpio6_dbck", },
2058 static struct omap_hwmod_ocp_if *omap3xxx_gpio6_slaves[] = {
2059 &omap3xxx_l4_per__gpio6,
2062 static struct omap_hwmod omap3xxx_gpio6_hwmod = {
2064 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
2065 .mpu_irqs = omap3xxx_gpio6_irqs,
2066 .main_clk = "gpio6_ick",
2067 .opt_clks = gpio6_opt_clks,
2068 .opt_clks_cnt = ARRAY_SIZE(gpio6_opt_clks),
2072 .module_bit = OMAP3430_EN_GPIO6_SHIFT,
2073 .module_offs = OMAP3430_PER_MOD,
2075 .idlest_idle_bit = OMAP3430_ST_GPIO6_SHIFT,
2078 .slaves = omap3xxx_gpio6_slaves,
2079 .slaves_cnt = ARRAY_SIZE(omap3xxx_gpio6_slaves),
2080 .class = &omap3xxx_gpio_hwmod_class,
2081 .dev_attr = &gpio_dev_attr,
2084 /* dma_system -> L3 */
2085 static struct omap_hwmod_ocp_if omap3xxx_dma_system__l3 = {
2086 .master = &omap3xxx_dma_system_hwmod,
2087 .slave = &omap3xxx_l3_main_hwmod,
2088 .clk = "core_l3_ick",
2089 .user = OCP_USER_MPU | OCP_USER_SDMA,
2092 /* dma attributes */
2093 static struct omap_dma_dev_attr dma_dev_attr = {
2094 .dev_caps = RESERVE_CHANNEL | DMA_LINKED_LCH | GLOBAL_PRIORITY |
2095 IS_CSSA_32 | IS_CDSA_32 | IS_RW_PRIORITY,
2099 static struct omap_hwmod_class_sysconfig omap3xxx_dma_sysc = {
2101 .sysc_offs = 0x002c,
2102 .syss_offs = 0x0028,
2103 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET |
2104 SYSC_HAS_MIDLEMODE | SYSC_HAS_CLOCKACTIVITY |
2105 SYSC_HAS_EMUFREE | SYSC_HAS_AUTOIDLE |
2106 SYSS_HAS_RESET_STATUS),
2107 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |
2108 MSTANDBY_FORCE | MSTANDBY_NO | MSTANDBY_SMART),
2109 .sysc_fields = &omap_hwmod_sysc_type1,
2112 static struct omap_hwmod_class omap3xxx_dma_hwmod_class = {
2114 .sysc = &omap3xxx_dma_sysc,
2118 static struct omap_hwmod_addr_space omap3xxx_dma_system_addrs[] = {
2120 .pa_start = 0x48056000,
2121 .pa_end = 0x48056fff,
2122 .flags = ADDR_TYPE_RT
2127 /* dma_system master ports */
2128 static struct omap_hwmod_ocp_if *omap3xxx_dma_system_masters[] = {
2129 &omap3xxx_dma_system__l3,
2132 /* l4_cfg -> dma_system */
2133 static struct omap_hwmod_ocp_if omap3xxx_l4_core__dma_system = {
2134 .master = &omap3xxx_l4_core_hwmod,
2135 .slave = &omap3xxx_dma_system_hwmod,
2136 .clk = "core_l4_ick",
2137 .addr = omap3xxx_dma_system_addrs,
2138 .user = OCP_USER_MPU | OCP_USER_SDMA,
2141 /* dma_system slave ports */
2142 static struct omap_hwmod_ocp_if *omap3xxx_dma_system_slaves[] = {
2143 &omap3xxx_l4_core__dma_system,
2146 static struct omap_hwmod omap3xxx_dma_system_hwmod = {
2148 .class = &omap3xxx_dma_hwmod_class,
2149 .mpu_irqs = omap2_dma_system_irqs,
2150 .main_clk = "core_l3_ick",
2153 .module_offs = CORE_MOD,
2155 .module_bit = OMAP3430_ST_SDMA_SHIFT,
2157 .idlest_idle_bit = OMAP3430_ST_SDMA_SHIFT,
2160 .slaves = omap3xxx_dma_system_slaves,
2161 .slaves_cnt = ARRAY_SIZE(omap3xxx_dma_system_slaves),
2162 .masters = omap3xxx_dma_system_masters,
2163 .masters_cnt = ARRAY_SIZE(omap3xxx_dma_system_masters),
2164 .dev_attr = &dma_dev_attr,
2165 .flags = HWMOD_NO_IDLEST,
2170 * multi channel buffered serial port controller
2173 static struct omap_hwmod_class_sysconfig omap3xxx_mcbsp_sysc = {
2174 .sysc_offs = 0x008c,
2175 .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_ENAWAKEUP |
2176 SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET),
2177 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
2178 .sysc_fields = &omap_hwmod_sysc_type1,
2182 static struct omap_hwmod_class omap3xxx_mcbsp_hwmod_class = {
2184 .sysc = &omap3xxx_mcbsp_sysc,
2185 .rev = MCBSP_CONFIG_TYPE3,
2189 static struct omap_hwmod_irq_info omap3xxx_mcbsp1_irqs[] = {
2190 { .name = "irq", .irq = 16 },
2191 { .name = "tx", .irq = 59 },
2192 { .name = "rx", .irq = 60 },
2196 static struct omap_hwmod_addr_space omap3xxx_mcbsp1_addrs[] = {
2199 .pa_start = 0x48074000,
2200 .pa_end = 0x480740ff,
2201 .flags = ADDR_TYPE_RT
2206 /* l4_core -> mcbsp1 */
2207 static struct omap_hwmod_ocp_if omap3xxx_l4_core__mcbsp1 = {
2208 .master = &omap3xxx_l4_core_hwmod,
2209 .slave = &omap3xxx_mcbsp1_hwmod,
2210 .clk = "mcbsp1_ick",
2211 .addr = omap3xxx_mcbsp1_addrs,
2212 .user = OCP_USER_MPU | OCP_USER_SDMA,
2215 /* mcbsp1 slave ports */
2216 static struct omap_hwmod_ocp_if *omap3xxx_mcbsp1_slaves[] = {
2217 &omap3xxx_l4_core__mcbsp1,
2220 static struct omap_hwmod omap3xxx_mcbsp1_hwmod = {
2222 .class = &omap3xxx_mcbsp_hwmod_class,
2223 .mpu_irqs = omap3xxx_mcbsp1_irqs,
2224 .sdma_reqs = omap2_mcbsp1_sdma_reqs,
2225 .main_clk = "mcbsp1_fck",
2229 .module_bit = OMAP3430_EN_MCBSP1_SHIFT,
2230 .module_offs = CORE_MOD,
2232 .idlest_idle_bit = OMAP3430_ST_MCBSP1_SHIFT,
2235 .slaves = omap3xxx_mcbsp1_slaves,
2236 .slaves_cnt = ARRAY_SIZE(omap3xxx_mcbsp1_slaves),
2240 static struct omap_hwmod_irq_info omap3xxx_mcbsp2_irqs[] = {
2241 { .name = "irq", .irq = 17 },
2242 { .name = "tx", .irq = 62 },
2243 { .name = "rx", .irq = 63 },
2247 static struct omap_hwmod_addr_space omap3xxx_mcbsp2_addrs[] = {
2250 .pa_start = 0x49022000,
2251 .pa_end = 0x490220ff,
2252 .flags = ADDR_TYPE_RT
2257 /* l4_per -> mcbsp2 */
2258 static struct omap_hwmod_ocp_if omap3xxx_l4_per__mcbsp2 = {
2259 .master = &omap3xxx_l4_per_hwmod,
2260 .slave = &omap3xxx_mcbsp2_hwmod,
2261 .clk = "mcbsp2_ick",
2262 .addr = omap3xxx_mcbsp2_addrs,
2263 .user = OCP_USER_MPU | OCP_USER_SDMA,
2266 /* mcbsp2 slave ports */
2267 static struct omap_hwmod_ocp_if *omap3xxx_mcbsp2_slaves[] = {
2268 &omap3xxx_l4_per__mcbsp2,
2271 static struct omap_mcbsp_dev_attr omap34xx_mcbsp2_dev_attr = {
2272 .sidetone = "mcbsp2_sidetone",
2275 static struct omap_hwmod omap3xxx_mcbsp2_hwmod = {
2277 .class = &omap3xxx_mcbsp_hwmod_class,
2278 .mpu_irqs = omap3xxx_mcbsp2_irqs,
2279 .sdma_reqs = omap2_mcbsp2_sdma_reqs,
2280 .main_clk = "mcbsp2_fck",
2284 .module_bit = OMAP3430_EN_MCBSP2_SHIFT,
2285 .module_offs = OMAP3430_PER_MOD,
2287 .idlest_idle_bit = OMAP3430_ST_MCBSP2_SHIFT,
2290 .slaves = omap3xxx_mcbsp2_slaves,
2291 .slaves_cnt = ARRAY_SIZE(omap3xxx_mcbsp2_slaves),
2292 .dev_attr = &omap34xx_mcbsp2_dev_attr,
2296 static struct omap_hwmod_irq_info omap3xxx_mcbsp3_irqs[] = {
2297 { .name = "irq", .irq = 22 },
2298 { .name = "tx", .irq = 89 },
2299 { .name = "rx", .irq = 90 },
2303 static struct omap_hwmod_addr_space omap3xxx_mcbsp3_addrs[] = {
2306 .pa_start = 0x49024000,
2307 .pa_end = 0x490240ff,
2308 .flags = ADDR_TYPE_RT
2313 /* l4_per -> mcbsp3 */
2314 static struct omap_hwmod_ocp_if omap3xxx_l4_per__mcbsp3 = {
2315 .master = &omap3xxx_l4_per_hwmod,
2316 .slave = &omap3xxx_mcbsp3_hwmod,
2317 .clk = "mcbsp3_ick",
2318 .addr = omap3xxx_mcbsp3_addrs,
2319 .user = OCP_USER_MPU | OCP_USER_SDMA,
2322 /* mcbsp3 slave ports */
2323 static struct omap_hwmod_ocp_if *omap3xxx_mcbsp3_slaves[] = {
2324 &omap3xxx_l4_per__mcbsp3,
2327 static struct omap_mcbsp_dev_attr omap34xx_mcbsp3_dev_attr = {
2328 .sidetone = "mcbsp3_sidetone",
2331 static struct omap_hwmod omap3xxx_mcbsp3_hwmod = {
2333 .class = &omap3xxx_mcbsp_hwmod_class,
2334 .mpu_irqs = omap3xxx_mcbsp3_irqs,
2335 .sdma_reqs = omap2_mcbsp3_sdma_reqs,
2336 .main_clk = "mcbsp3_fck",
2340 .module_bit = OMAP3430_EN_MCBSP3_SHIFT,
2341 .module_offs = OMAP3430_PER_MOD,
2343 .idlest_idle_bit = OMAP3430_ST_MCBSP3_SHIFT,
2346 .slaves = omap3xxx_mcbsp3_slaves,
2347 .slaves_cnt = ARRAY_SIZE(omap3xxx_mcbsp3_slaves),
2348 .dev_attr = &omap34xx_mcbsp3_dev_attr,
2352 static struct omap_hwmod_irq_info omap3xxx_mcbsp4_irqs[] = {
2353 { .name = "irq", .irq = 23 },
2354 { .name = "tx", .irq = 54 },
2355 { .name = "rx", .irq = 55 },
2359 static struct omap_hwmod_dma_info omap3xxx_mcbsp4_sdma_chs[] = {
2360 { .name = "rx", .dma_req = 20 },
2361 { .name = "tx", .dma_req = 19 },
2365 static struct omap_hwmod_addr_space omap3xxx_mcbsp4_addrs[] = {
2368 .pa_start = 0x49026000,
2369 .pa_end = 0x490260ff,
2370 .flags = ADDR_TYPE_RT
2375 /* l4_per -> mcbsp4 */
2376 static struct omap_hwmod_ocp_if omap3xxx_l4_per__mcbsp4 = {
2377 .master = &omap3xxx_l4_per_hwmod,
2378 .slave = &omap3xxx_mcbsp4_hwmod,
2379 .clk = "mcbsp4_ick",
2380 .addr = omap3xxx_mcbsp4_addrs,
2381 .user = OCP_USER_MPU | OCP_USER_SDMA,
2384 /* mcbsp4 slave ports */
2385 static struct omap_hwmod_ocp_if *omap3xxx_mcbsp4_slaves[] = {
2386 &omap3xxx_l4_per__mcbsp4,
2389 static struct omap_hwmod omap3xxx_mcbsp4_hwmod = {
2391 .class = &omap3xxx_mcbsp_hwmod_class,
2392 .mpu_irqs = omap3xxx_mcbsp4_irqs,
2393 .sdma_reqs = omap3xxx_mcbsp4_sdma_chs,
2394 .main_clk = "mcbsp4_fck",
2398 .module_bit = OMAP3430_EN_MCBSP4_SHIFT,
2399 .module_offs = OMAP3430_PER_MOD,
2401 .idlest_idle_bit = OMAP3430_ST_MCBSP4_SHIFT,
2404 .slaves = omap3xxx_mcbsp4_slaves,
2405 .slaves_cnt = ARRAY_SIZE(omap3xxx_mcbsp4_slaves),
2409 static struct omap_hwmod_irq_info omap3xxx_mcbsp5_irqs[] = {
2410 { .name = "irq", .irq = 27 },
2411 { .name = "tx", .irq = 81 },
2412 { .name = "rx", .irq = 82 },
2416 static struct omap_hwmod_dma_info omap3xxx_mcbsp5_sdma_chs[] = {
2417 { .name = "rx", .dma_req = 22 },
2418 { .name = "tx", .dma_req = 21 },
2422 static struct omap_hwmod_addr_space omap3xxx_mcbsp5_addrs[] = {
2425 .pa_start = 0x48096000,
2426 .pa_end = 0x480960ff,
2427 .flags = ADDR_TYPE_RT
2432 /* l4_core -> mcbsp5 */
2433 static struct omap_hwmod_ocp_if omap3xxx_l4_core__mcbsp5 = {
2434 .master = &omap3xxx_l4_core_hwmod,
2435 .slave = &omap3xxx_mcbsp5_hwmod,
2436 .clk = "mcbsp5_ick",
2437 .addr = omap3xxx_mcbsp5_addrs,
2438 .user = OCP_USER_MPU | OCP_USER_SDMA,
2441 /* mcbsp5 slave ports */
2442 static struct omap_hwmod_ocp_if *omap3xxx_mcbsp5_slaves[] = {
2443 &omap3xxx_l4_core__mcbsp5,
2446 static struct omap_hwmod omap3xxx_mcbsp5_hwmod = {
2448 .class = &omap3xxx_mcbsp_hwmod_class,
2449 .mpu_irqs = omap3xxx_mcbsp5_irqs,
2450 .sdma_reqs = omap3xxx_mcbsp5_sdma_chs,
2451 .main_clk = "mcbsp5_fck",
2455 .module_bit = OMAP3430_EN_MCBSP5_SHIFT,
2456 .module_offs = CORE_MOD,
2458 .idlest_idle_bit = OMAP3430_ST_MCBSP5_SHIFT,
2461 .slaves = omap3xxx_mcbsp5_slaves,
2462 .slaves_cnt = ARRAY_SIZE(omap3xxx_mcbsp5_slaves),
2464 /* 'mcbsp sidetone' class */
2466 static struct omap_hwmod_class_sysconfig omap3xxx_mcbsp_sidetone_sysc = {
2467 .sysc_offs = 0x0010,
2468 .sysc_flags = SYSC_HAS_AUTOIDLE,
2469 .sysc_fields = &omap_hwmod_sysc_type1,
2472 static struct omap_hwmod_class omap3xxx_mcbsp_sidetone_hwmod_class = {
2473 .name = "mcbsp_sidetone",
2474 .sysc = &omap3xxx_mcbsp_sidetone_sysc,
2477 /* mcbsp2_sidetone */
2478 static struct omap_hwmod_irq_info omap3xxx_mcbsp2_sidetone_irqs[] = {
2479 { .name = "irq", .irq = 4 },
2483 static struct omap_hwmod_addr_space omap3xxx_mcbsp2_sidetone_addrs[] = {
2486 .pa_start = 0x49028000,
2487 .pa_end = 0x490280ff,
2488 .flags = ADDR_TYPE_RT
2493 /* l4_per -> mcbsp2_sidetone */
2494 static struct omap_hwmod_ocp_if omap3xxx_l4_per__mcbsp2_sidetone = {
2495 .master = &omap3xxx_l4_per_hwmod,
2496 .slave = &omap3xxx_mcbsp2_sidetone_hwmod,
2497 .clk = "mcbsp2_ick",
2498 .addr = omap3xxx_mcbsp2_sidetone_addrs,
2499 .user = OCP_USER_MPU,
2502 /* mcbsp2_sidetone slave ports */
2503 static struct omap_hwmod_ocp_if *omap3xxx_mcbsp2_sidetone_slaves[] = {
2504 &omap3xxx_l4_per__mcbsp2_sidetone,
2507 static struct omap_hwmod omap3xxx_mcbsp2_sidetone_hwmod = {
2508 .name = "mcbsp2_sidetone",
2509 .class = &omap3xxx_mcbsp_sidetone_hwmod_class,
2510 .mpu_irqs = omap3xxx_mcbsp2_sidetone_irqs,
2511 .main_clk = "mcbsp2_fck",
2515 .module_bit = OMAP3430_EN_MCBSP2_SHIFT,
2516 .module_offs = OMAP3430_PER_MOD,
2518 .idlest_idle_bit = OMAP3430_ST_MCBSP2_SHIFT,
2521 .slaves = omap3xxx_mcbsp2_sidetone_slaves,
2522 .slaves_cnt = ARRAY_SIZE(omap3xxx_mcbsp2_sidetone_slaves),
2525 /* mcbsp3_sidetone */
2526 static struct omap_hwmod_irq_info omap3xxx_mcbsp3_sidetone_irqs[] = {
2527 { .name = "irq", .irq = 5 },
2531 static struct omap_hwmod_addr_space omap3xxx_mcbsp3_sidetone_addrs[] = {
2534 .pa_start = 0x4902A000,
2535 .pa_end = 0x4902A0ff,
2536 .flags = ADDR_TYPE_RT
2541 /* l4_per -> mcbsp3_sidetone */
2542 static struct omap_hwmod_ocp_if omap3xxx_l4_per__mcbsp3_sidetone = {
2543 .master = &omap3xxx_l4_per_hwmod,
2544 .slave = &omap3xxx_mcbsp3_sidetone_hwmod,
2545 .clk = "mcbsp3_ick",
2546 .addr = omap3xxx_mcbsp3_sidetone_addrs,
2547 .user = OCP_USER_MPU,
2550 /* mcbsp3_sidetone slave ports */
2551 static struct omap_hwmod_ocp_if *omap3xxx_mcbsp3_sidetone_slaves[] = {
2552 &omap3xxx_l4_per__mcbsp3_sidetone,
2555 static struct omap_hwmod omap3xxx_mcbsp3_sidetone_hwmod = {
2556 .name = "mcbsp3_sidetone",
2557 .class = &omap3xxx_mcbsp_sidetone_hwmod_class,
2558 .mpu_irqs = omap3xxx_mcbsp3_sidetone_irqs,
2559 .main_clk = "mcbsp3_fck",
2563 .module_bit = OMAP3430_EN_MCBSP3_SHIFT,
2564 .module_offs = OMAP3430_PER_MOD,
2566 .idlest_idle_bit = OMAP3430_ST_MCBSP3_SHIFT,
2569 .slaves = omap3xxx_mcbsp3_sidetone_slaves,
2570 .slaves_cnt = ARRAY_SIZE(omap3xxx_mcbsp3_sidetone_slaves),
2575 static struct omap_hwmod_sysc_fields omap34xx_sr_sysc_fields = {
2579 static struct omap_hwmod_class_sysconfig omap34xx_sr_sysc = {
2581 .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_NO_CACHE),
2582 .clockact = CLOCKACT_TEST_ICLK,
2583 .sysc_fields = &omap34xx_sr_sysc_fields,
2586 static struct omap_hwmod_class omap34xx_smartreflex_hwmod_class = {
2587 .name = "smartreflex",
2588 .sysc = &omap34xx_sr_sysc,
2592 static struct omap_hwmod_sysc_fields omap36xx_sr_sysc_fields = {
2597 static struct omap_hwmod_class_sysconfig omap36xx_sr_sysc = {
2599 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
2600 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_ENAWAKEUP |
2602 .sysc_fields = &omap36xx_sr_sysc_fields,
2605 static struct omap_hwmod_class omap36xx_smartreflex_hwmod_class = {
2606 .name = "smartreflex",
2607 .sysc = &omap36xx_sr_sysc,
2612 static struct omap_hwmod_ocp_if *omap3_sr1_slaves[] = {
2613 &omap3_l4_core__sr1,
2616 static struct omap_hwmod omap34xx_sr1_hwmod = {
2618 .class = &omap34xx_smartreflex_hwmod_class,
2619 .main_clk = "sr1_fck",
2620 .vdd_name = "mpu_iva",
2624 .module_bit = OMAP3430_EN_SR1_SHIFT,
2625 .module_offs = WKUP_MOD,
2627 .idlest_idle_bit = OMAP3430_EN_SR1_SHIFT,
2630 .slaves = omap3_sr1_slaves,
2631 .slaves_cnt = ARRAY_SIZE(omap3_sr1_slaves),
2632 .flags = HWMOD_SET_DEFAULT_CLOCKACT,
2635 static struct omap_hwmod omap36xx_sr1_hwmod = {
2637 .class = &omap36xx_smartreflex_hwmod_class,
2638 .main_clk = "sr1_fck",
2639 .vdd_name = "mpu_iva",
2643 .module_bit = OMAP3430_EN_SR1_SHIFT,
2644 .module_offs = WKUP_MOD,
2646 .idlest_idle_bit = OMAP3430_EN_SR1_SHIFT,
2649 .slaves = omap3_sr1_slaves,
2650 .slaves_cnt = ARRAY_SIZE(omap3_sr1_slaves),
2654 static struct omap_hwmod_ocp_if *omap3_sr2_slaves[] = {
2655 &omap3_l4_core__sr2,
2658 static struct omap_hwmod omap34xx_sr2_hwmod = {
2660 .class = &omap34xx_smartreflex_hwmod_class,
2661 .main_clk = "sr2_fck",
2666 .module_bit = OMAP3430_EN_SR2_SHIFT,
2667 .module_offs = WKUP_MOD,
2669 .idlest_idle_bit = OMAP3430_EN_SR2_SHIFT,
2672 .slaves = omap3_sr2_slaves,
2673 .slaves_cnt = ARRAY_SIZE(omap3_sr2_slaves),
2674 .flags = HWMOD_SET_DEFAULT_CLOCKACT,
2677 static struct omap_hwmod omap36xx_sr2_hwmod = {
2679 .class = &omap36xx_smartreflex_hwmod_class,
2680 .main_clk = "sr2_fck",
2685 .module_bit = OMAP3430_EN_SR2_SHIFT,
2686 .module_offs = WKUP_MOD,
2688 .idlest_idle_bit = OMAP3430_EN_SR2_SHIFT,
2691 .slaves = omap3_sr2_slaves,
2692 .slaves_cnt = ARRAY_SIZE(omap3_sr2_slaves),
2697 * mailbox module allowing communication between the on-chip processors
2698 * using a queued mailbox-interrupt mechanism.
2701 static struct omap_hwmod_class_sysconfig omap3xxx_mailbox_sysc = {
2705 .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE |
2706 SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE),
2707 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
2708 .sysc_fields = &omap_hwmod_sysc_type1,
2711 static struct omap_hwmod_class omap3xxx_mailbox_hwmod_class = {
2713 .sysc = &omap3xxx_mailbox_sysc,
2716 static struct omap_hwmod omap3xxx_mailbox_hwmod;
2717 static struct omap_hwmod_irq_info omap3xxx_mailbox_irqs[] = {
2722 static struct omap_hwmod_addr_space omap3xxx_mailbox_addrs[] = {
2724 .pa_start = 0x48094000,
2725 .pa_end = 0x480941ff,
2726 .flags = ADDR_TYPE_RT,
2731 /* l4_core -> mailbox */
2732 static struct omap_hwmod_ocp_if omap3xxx_l4_core__mailbox = {
2733 .master = &omap3xxx_l4_core_hwmod,
2734 .slave = &omap3xxx_mailbox_hwmod,
2735 .addr = omap3xxx_mailbox_addrs,
2736 .user = OCP_USER_MPU | OCP_USER_SDMA,
2739 /* mailbox slave ports */
2740 static struct omap_hwmod_ocp_if *omap3xxx_mailbox_slaves[] = {
2741 &omap3xxx_l4_core__mailbox,
2744 static struct omap_hwmod omap3xxx_mailbox_hwmod = {
2746 .class = &omap3xxx_mailbox_hwmod_class,
2747 .mpu_irqs = omap3xxx_mailbox_irqs,
2748 .main_clk = "mailboxes_ick",
2752 .module_bit = OMAP3430_EN_MAILBOXES_SHIFT,
2753 .module_offs = CORE_MOD,
2755 .idlest_idle_bit = OMAP3430_ST_MAILBOXES_SHIFT,
2758 .slaves = omap3xxx_mailbox_slaves,
2759 .slaves_cnt = ARRAY_SIZE(omap3xxx_mailbox_slaves),
2762 /* l4 core -> mcspi1 interface */
2763 static struct omap_hwmod_ocp_if omap34xx_l4_core__mcspi1 = {
2764 .master = &omap3xxx_l4_core_hwmod,
2765 .slave = &omap34xx_mcspi1,
2766 .clk = "mcspi1_ick",
2767 .addr = omap2_mcspi1_addr_space,
2768 .user = OCP_USER_MPU | OCP_USER_SDMA,
2771 /* l4 core -> mcspi2 interface */
2772 static struct omap_hwmod_ocp_if omap34xx_l4_core__mcspi2 = {
2773 .master = &omap3xxx_l4_core_hwmod,
2774 .slave = &omap34xx_mcspi2,
2775 .clk = "mcspi2_ick",
2776 .addr = omap2_mcspi2_addr_space,
2777 .user = OCP_USER_MPU | OCP_USER_SDMA,
2780 /* l4 core -> mcspi3 interface */
2781 static struct omap_hwmod_ocp_if omap34xx_l4_core__mcspi3 = {
2782 .master = &omap3xxx_l4_core_hwmod,
2783 .slave = &omap34xx_mcspi3,
2784 .clk = "mcspi3_ick",
2785 .addr = omap2430_mcspi3_addr_space,
2786 .user = OCP_USER_MPU | OCP_USER_SDMA,
2789 /* l4 core -> mcspi4 interface */
2790 static struct omap_hwmod_addr_space omap34xx_mcspi4_addr_space[] = {
2792 .pa_start = 0x480ba000,
2793 .pa_end = 0x480ba0ff,
2794 .flags = ADDR_TYPE_RT,
2799 static struct omap_hwmod_ocp_if omap34xx_l4_core__mcspi4 = {
2800 .master = &omap3xxx_l4_core_hwmod,
2801 .slave = &omap34xx_mcspi4,
2802 .clk = "mcspi4_ick",
2803 .addr = omap34xx_mcspi4_addr_space,
2804 .user = OCP_USER_MPU | OCP_USER_SDMA,
2809 * multichannel serial port interface (mcspi) / master/slave synchronous serial
2813 static struct omap_hwmod_class_sysconfig omap34xx_mcspi_sysc = {
2815 .sysc_offs = 0x0010,
2816 .syss_offs = 0x0014,
2817 .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE |
2818 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
2819 SYSC_HAS_AUTOIDLE | SYSS_HAS_RESET_STATUS),
2820 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
2821 .sysc_fields = &omap_hwmod_sysc_type1,
2824 static struct omap_hwmod_class omap34xx_mcspi_class = {
2826 .sysc = &omap34xx_mcspi_sysc,
2827 .rev = OMAP3_MCSPI_REV,
2831 static struct omap_hwmod_ocp_if *omap34xx_mcspi1_slaves[] = {
2832 &omap34xx_l4_core__mcspi1,
2835 static struct omap2_mcspi_dev_attr omap_mcspi1_dev_attr = {
2836 .num_chipselect = 4,
2839 static struct omap_hwmod omap34xx_mcspi1 = {
2841 .mpu_irqs = omap2_mcspi1_mpu_irqs,
2842 .sdma_reqs = omap2_mcspi1_sdma_reqs,
2843 .main_clk = "mcspi1_fck",
2846 .module_offs = CORE_MOD,
2848 .module_bit = OMAP3430_EN_MCSPI1_SHIFT,
2850 .idlest_idle_bit = OMAP3430_ST_MCSPI1_SHIFT,
2853 .slaves = omap34xx_mcspi1_slaves,
2854 .slaves_cnt = ARRAY_SIZE(omap34xx_mcspi1_slaves),
2855 .class = &omap34xx_mcspi_class,
2856 .dev_attr = &omap_mcspi1_dev_attr,
2860 static struct omap_hwmod_ocp_if *omap34xx_mcspi2_slaves[] = {
2861 &omap34xx_l4_core__mcspi2,
2864 static struct omap2_mcspi_dev_attr omap_mcspi2_dev_attr = {
2865 .num_chipselect = 2,
2868 static struct omap_hwmod omap34xx_mcspi2 = {
2870 .mpu_irqs = omap2_mcspi2_mpu_irqs,
2871 .sdma_reqs = omap2_mcspi2_sdma_reqs,
2872 .main_clk = "mcspi2_fck",
2875 .module_offs = CORE_MOD,
2877 .module_bit = OMAP3430_EN_MCSPI2_SHIFT,
2879 .idlest_idle_bit = OMAP3430_ST_MCSPI2_SHIFT,
2882 .slaves = omap34xx_mcspi2_slaves,
2883 .slaves_cnt = ARRAY_SIZE(omap34xx_mcspi2_slaves),
2884 .class = &omap34xx_mcspi_class,
2885 .dev_attr = &omap_mcspi2_dev_attr,
2889 static struct omap_hwmod_irq_info omap34xx_mcspi3_mpu_irqs[] = {
2890 { .name = "irq", .irq = 91 }, /* 91 */
2894 static struct omap_hwmod_dma_info omap34xx_mcspi3_sdma_reqs[] = {
2895 { .name = "tx0", .dma_req = 15 },
2896 { .name = "rx0", .dma_req = 16 },
2897 { .name = "tx1", .dma_req = 23 },
2898 { .name = "rx1", .dma_req = 24 },
2902 static struct omap_hwmod_ocp_if *omap34xx_mcspi3_slaves[] = {
2903 &omap34xx_l4_core__mcspi3,
2906 static struct omap2_mcspi_dev_attr omap_mcspi3_dev_attr = {
2907 .num_chipselect = 2,
2910 static struct omap_hwmod omap34xx_mcspi3 = {
2912 .mpu_irqs = omap34xx_mcspi3_mpu_irqs,
2913 .sdma_reqs = omap34xx_mcspi3_sdma_reqs,
2914 .main_clk = "mcspi3_fck",
2917 .module_offs = CORE_MOD,
2919 .module_bit = OMAP3430_EN_MCSPI3_SHIFT,
2921 .idlest_idle_bit = OMAP3430_ST_MCSPI3_SHIFT,
2924 .slaves = omap34xx_mcspi3_slaves,
2925 .slaves_cnt = ARRAY_SIZE(omap34xx_mcspi3_slaves),
2926 .class = &omap34xx_mcspi_class,
2927 .dev_attr = &omap_mcspi3_dev_attr,
2931 static struct omap_hwmod_irq_info omap34xx_mcspi4_mpu_irqs[] = {
2932 { .name = "irq", .irq = INT_34XX_SPI4_IRQ }, /* 48 */
2936 static struct omap_hwmod_dma_info omap34xx_mcspi4_sdma_reqs[] = {
2937 { .name = "tx0", .dma_req = 70 }, /* DMA_SPI4_TX0 */
2938 { .name = "rx0", .dma_req = 71 }, /* DMA_SPI4_RX0 */
2942 static struct omap_hwmod_ocp_if *omap34xx_mcspi4_slaves[] = {
2943 &omap34xx_l4_core__mcspi4,
2946 static struct omap2_mcspi_dev_attr omap_mcspi4_dev_attr = {
2947 .num_chipselect = 1,
2950 static struct omap_hwmod omap34xx_mcspi4 = {
2952 .mpu_irqs = omap34xx_mcspi4_mpu_irqs,
2953 .sdma_reqs = omap34xx_mcspi4_sdma_reqs,
2954 .main_clk = "mcspi4_fck",
2957 .module_offs = CORE_MOD,
2959 .module_bit = OMAP3430_EN_MCSPI4_SHIFT,
2961 .idlest_idle_bit = OMAP3430_ST_MCSPI4_SHIFT,
2964 .slaves = omap34xx_mcspi4_slaves,
2965 .slaves_cnt = ARRAY_SIZE(omap34xx_mcspi4_slaves),
2966 .class = &omap34xx_mcspi_class,
2967 .dev_attr = &omap_mcspi4_dev_attr,
2973 static struct omap_hwmod_class_sysconfig omap3xxx_usbhsotg_sysc = {
2975 .sysc_offs = 0x0404,
2976 .syss_offs = 0x0408,
2977 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_MIDLEMODE|
2978 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
2980 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |
2981 MSTANDBY_FORCE | MSTANDBY_NO | MSTANDBY_SMART),
2982 .sysc_fields = &omap_hwmod_sysc_type1,
2985 static struct omap_hwmod_class usbotg_class = {
2987 .sysc = &omap3xxx_usbhsotg_sysc,
2990 static struct omap_hwmod_irq_info omap3xxx_usbhsotg_mpu_irqs[] = {
2992 { .name = "mc", .irq = 92 },
2993 { .name = "dma", .irq = 93 },
2997 static struct omap_hwmod omap3xxx_usbhsotg_hwmod = {
2998 .name = "usb_otg_hs",
2999 .mpu_irqs = omap3xxx_usbhsotg_mpu_irqs,
3000 .main_clk = "hsotgusb_ick",
3004 .module_bit = OMAP3430_EN_HSOTGUSB_SHIFT,
3005 .module_offs = CORE_MOD,
3007 .idlest_idle_bit = OMAP3430ES2_ST_HSOTGUSB_IDLE_SHIFT,
3008 .idlest_stdby_bit = OMAP3430ES2_ST_HSOTGUSB_STDBY_SHIFT