blob: 87742e20cd5fe6193b002f54e9d2a37330d690f0 [file] [log] [blame]
Paul Walmsley73591542010-02-22 22:09:32 -07001/*
2 * omap_hwmod_3xxx_data.c - hardware modules present on the OMAP3xxx chips
3 *
Paul Walmsley78183f32011-07-09 19:14:05 -06004 * Copyright (C) 2009-2011 Nokia Corporation
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06005 * Copyright (C) 2012 Texas Instruments, Inc.
Paul Walmsley73591542010-02-22 22:09:32 -07006 * Paul Walmsley
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * The data in this file should be completely autogeneratable from
13 * the TI hardware database or other technical documentation.
14 *
15 * XXX these should be marked initdata for multi-OMAP kernels
16 */
17#include <plat/omap_hwmod.h>
18#include <mach/irqs.h>
19#include <plat/cpu.h>
20#include <plat/dma.h>
Kevin Hilman046465b2010-09-27 20:19:30 +053021#include <plat/serial.h>
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +000022#include <plat/l3_3xxx.h>
Rajendra Nayak4fe20e92010-09-21 19:37:13 +053023#include <plat/l4_3xxx.h>
24#include <plat/i2c.h>
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -080025#include <plat/gpio.h>
Kishore Kadiyala6ab89462011-03-01 13:12:56 -080026#include <plat/mmc.h>
Charulatha Vdc48e5f2011-02-24 15:16:49 +053027#include <plat/mcbsp.h>
Charulatha V0f616a42011-02-17 09:53:10 -080028#include <plat/mcspi.h>
Thara Gopinathce722d22011-02-23 00:14:05 -070029#include <plat/dmtimer.h>
Paul Walmsley73591542010-02-22 22:09:32 -070030
Paul Walmsley43b40992010-02-22 22:09:34 -070031#include "omap_hwmod_common_data.h"
32
Shweta Gulaticea6b942012-02-29 23:33:37 +010033#include "smartreflex.h"
Paul Walmsley73591542010-02-22 22:09:32 -070034#include "prm-regbits-34xx.h"
Varadarajan, Charulatha6b667f82010-09-23 20:02:38 +053035#include "cm-regbits-34xx.h"
Paul Walmsleyff2516f2010-12-21 15:39:15 -070036#include "wd_timer.h"
Hema HK273ff8c2011-02-17 12:07:19 +053037#include <mach/am35xx.h>
Paul Walmsley73591542010-02-22 22:09:32 -070038
39/*
40 * OMAP3xxx hardware module integration data
41 *
Paul Walmsley844a3b62012-04-19 04:04:33 -060042 * All of the data in this section should be autogeneratable from the
Paul Walmsley73591542010-02-22 22:09:32 -070043 * TI hardware database or other technical documentation. Data that
44 * is driver-specific or driver-kernel integration-specific belongs
45 * elsewhere.
46 */
47
Paul Walmsley844a3b62012-04-19 04:04:33 -060048/*
49 * IP blocks
50 */
Paul Walmsley73591542010-02-22 22:09:32 -070051
Paul Walmsley844a3b62012-04-19 04:04:33 -060052/* L3 */
53static struct omap_hwmod_irq_info omap3xxx_l3_main_irqs[] = {
54 { .irq = INT_34XX_L3_DBG_IRQ },
55 { .irq = INT_34XX_L3_APP_IRQ },
56 { .irq = -1 }
57};
G, Manjunath Kondaiah01438ab2010-12-20 18:27:19 -080058
Paul Walmsley844a3b62012-04-19 04:04:33 -060059static struct omap_hwmod omap3xxx_l3_main_hwmod = {
60 .name = "l3_main",
61 .class = &l3_hwmod_class,
62 .mpu_irqs = omap3xxx_l3_main_irqs,
63 .flags = HWMOD_NO_IDLEST,
64};
65
66/* L4 CORE */
67static struct omap_hwmod omap3xxx_l4_core_hwmod = {
68 .name = "l4_core",
69 .class = &l4_hwmod_class,
70 .flags = HWMOD_NO_IDLEST,
71};
72
73/* L4 PER */
74static struct omap_hwmod omap3xxx_l4_per_hwmod = {
75 .name = "l4_per",
76 .class = &l4_hwmod_class,
77 .flags = HWMOD_NO_IDLEST,
78};
79
80/* L4 WKUP */
81static struct omap_hwmod omap3xxx_l4_wkup_hwmod = {
82 .name = "l4_wkup",
83 .class = &l4_hwmod_class,
84 .flags = HWMOD_NO_IDLEST,
85};
86
87/* L4 SEC */
88static struct omap_hwmod omap3xxx_l4_sec_hwmod = {
89 .name = "l4_sec",
90 .class = &l4_hwmod_class,
91 .flags = HWMOD_NO_IDLEST,
92};
93
94/* MPU */
95static struct omap_hwmod omap3xxx_mpu_hwmod = {
96 .name = "mpu",
97 .class = &mpu_hwmod_class,
98 .main_clk = "arm_fck",
99};
100
101/* IVA2 (IVA2) */
Paul Walmsleyf42c5492012-04-19 04:04:37 -0600102static struct omap_hwmod_rst_info omap3xxx_iva_resets[] = {
103 { .name = "logic", .rst_shift = 0 },
104 { .name = "seq0", .rst_shift = 1 },
105 { .name = "seq1", .rst_shift = 2 },
106};
107
Paul Walmsley844a3b62012-04-19 04:04:33 -0600108static struct omap_hwmod omap3xxx_iva_hwmod = {
109 .name = "iva",
110 .class = &iva_hwmod_class,
Paul Walmsleyf42c5492012-04-19 04:04:37 -0600111 .clkdm_name = "iva2_clkdm",
112 .rst_lines = omap3xxx_iva_resets,
113 .rst_lines_cnt = ARRAY_SIZE(omap3xxx_iva_resets),
114 .main_clk = "iva2_ck",
Paul Walmsley844a3b62012-04-19 04:04:33 -0600115};
116
117/* timer class */
118static struct omap_hwmod_class_sysconfig omap3xxx_timer_1ms_sysc = {
119 .rev_offs = 0x0000,
120 .sysc_offs = 0x0010,
121 .syss_offs = 0x0014,
122 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_CLOCKACTIVITY |
123 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
124 SYSC_HAS_EMUFREE | SYSC_HAS_AUTOIDLE),
125 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
126 .sysc_fields = &omap_hwmod_sysc_type1,
127};
128
129static struct omap_hwmod_class omap3xxx_timer_1ms_hwmod_class = {
130 .name = "timer",
131 .sysc = &omap3xxx_timer_1ms_sysc,
132 .rev = OMAP_TIMER_IP_VERSION_1,
133};
134
135static struct omap_hwmod_class_sysconfig omap3xxx_timer_sysc = {
136 .rev_offs = 0x0000,
137 .sysc_offs = 0x0010,
138 .syss_offs = 0x0014,
139 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_ENAWAKEUP |
140 SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE),
141 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
142 .sysc_fields = &omap_hwmod_sysc_type1,
143};
144
145static struct omap_hwmod_class omap3xxx_timer_hwmod_class = {
146 .name = "timer",
147 .sysc = &omap3xxx_timer_sysc,
148 .rev = OMAP_TIMER_IP_VERSION_1,
149};
150
151/* secure timers dev attribute */
152static struct omap_timer_capability_dev_attr capability_secure_dev_attr = {
153 .timer_capability = OMAP_TIMER_SECURE,
154};
155
156/* always-on timers dev attribute */
157static struct omap_timer_capability_dev_attr capability_alwon_dev_attr = {
158 .timer_capability = OMAP_TIMER_ALWON,
159};
160
161/* pwm timers dev attribute */
162static struct omap_timer_capability_dev_attr capability_pwm_dev_attr = {
163 .timer_capability = OMAP_TIMER_HAS_PWM,
164};
165
166/* timer1 */
167static struct omap_hwmod omap3xxx_timer1_hwmod = {
168 .name = "timer1",
169 .mpu_irqs = omap2_timer1_mpu_irqs,
170 .main_clk = "gpt1_fck",
171 .prcm = {
172 .omap2 = {
173 .prcm_reg_id = 1,
174 .module_bit = OMAP3430_EN_GPT1_SHIFT,
175 .module_offs = WKUP_MOD,
176 .idlest_reg_id = 1,
177 .idlest_idle_bit = OMAP3430_ST_GPT1_SHIFT,
178 },
179 },
180 .dev_attr = &capability_alwon_dev_attr,
181 .class = &omap3xxx_timer_1ms_hwmod_class,
182};
183
184/* timer2 */
185static struct omap_hwmod omap3xxx_timer2_hwmod = {
186 .name = "timer2",
187 .mpu_irqs = omap2_timer2_mpu_irqs,
188 .main_clk = "gpt2_fck",
189 .prcm = {
190 .omap2 = {
191 .prcm_reg_id = 1,
192 .module_bit = OMAP3430_EN_GPT2_SHIFT,
193 .module_offs = OMAP3430_PER_MOD,
194 .idlest_reg_id = 1,
195 .idlest_idle_bit = OMAP3430_ST_GPT2_SHIFT,
196 },
197 },
198 .dev_attr = &capability_alwon_dev_attr,
199 .class = &omap3xxx_timer_1ms_hwmod_class,
200};
201
202/* timer3 */
203static struct omap_hwmod omap3xxx_timer3_hwmod = {
204 .name = "timer3",
205 .mpu_irqs = omap2_timer3_mpu_irqs,
206 .main_clk = "gpt3_fck",
207 .prcm = {
208 .omap2 = {
209 .prcm_reg_id = 1,
210 .module_bit = OMAP3430_EN_GPT3_SHIFT,
211 .module_offs = OMAP3430_PER_MOD,
212 .idlest_reg_id = 1,
213 .idlest_idle_bit = OMAP3430_ST_GPT3_SHIFT,
214 },
215 },
216 .dev_attr = &capability_alwon_dev_attr,
217 .class = &omap3xxx_timer_hwmod_class,
218};
219
220/* timer4 */
221static struct omap_hwmod omap3xxx_timer4_hwmod = {
222 .name = "timer4",
223 .mpu_irqs = omap2_timer4_mpu_irqs,
224 .main_clk = "gpt4_fck",
225 .prcm = {
226 .omap2 = {
227 .prcm_reg_id = 1,
228 .module_bit = OMAP3430_EN_GPT4_SHIFT,
229 .module_offs = OMAP3430_PER_MOD,
230 .idlest_reg_id = 1,
231 .idlest_idle_bit = OMAP3430_ST_GPT4_SHIFT,
232 },
233 },
234 .dev_attr = &capability_alwon_dev_attr,
235 .class = &omap3xxx_timer_hwmod_class,
236};
237
238/* timer5 */
239static struct omap_hwmod omap3xxx_timer5_hwmod = {
240 .name = "timer5",
241 .mpu_irqs = omap2_timer5_mpu_irqs,
242 .main_clk = "gpt5_fck",
243 .prcm = {
244 .omap2 = {
245 .prcm_reg_id = 1,
246 .module_bit = OMAP3430_EN_GPT5_SHIFT,
247 .module_offs = OMAP3430_PER_MOD,
248 .idlest_reg_id = 1,
249 .idlest_idle_bit = OMAP3430_ST_GPT5_SHIFT,
250 },
251 },
252 .dev_attr = &capability_alwon_dev_attr,
253 .class = &omap3xxx_timer_hwmod_class,
254};
255
256/* timer6 */
257static struct omap_hwmod omap3xxx_timer6_hwmod = {
258 .name = "timer6",
259 .mpu_irqs = omap2_timer6_mpu_irqs,
260 .main_clk = "gpt6_fck",
261 .prcm = {
262 .omap2 = {
263 .prcm_reg_id = 1,
264 .module_bit = OMAP3430_EN_GPT6_SHIFT,
265 .module_offs = OMAP3430_PER_MOD,
266 .idlest_reg_id = 1,
267 .idlest_idle_bit = OMAP3430_ST_GPT6_SHIFT,
268 },
269 },
270 .dev_attr = &capability_alwon_dev_attr,
271 .class = &omap3xxx_timer_hwmod_class,
272};
273
274/* timer7 */
275static struct omap_hwmod omap3xxx_timer7_hwmod = {
276 .name = "timer7",
277 .mpu_irqs = omap2_timer7_mpu_irqs,
278 .main_clk = "gpt7_fck",
279 .prcm = {
280 .omap2 = {
281 .prcm_reg_id = 1,
282 .module_bit = OMAP3430_EN_GPT7_SHIFT,
283 .module_offs = OMAP3430_PER_MOD,
284 .idlest_reg_id = 1,
285 .idlest_idle_bit = OMAP3430_ST_GPT7_SHIFT,
286 },
287 },
288 .dev_attr = &capability_alwon_dev_attr,
289 .class = &omap3xxx_timer_hwmod_class,
290};
291
292/* timer8 */
293static struct omap_hwmod omap3xxx_timer8_hwmod = {
294 .name = "timer8",
295 .mpu_irqs = omap2_timer8_mpu_irqs,
296 .main_clk = "gpt8_fck",
297 .prcm = {
298 .omap2 = {
299 .prcm_reg_id = 1,
300 .module_bit = OMAP3430_EN_GPT8_SHIFT,
301 .module_offs = OMAP3430_PER_MOD,
302 .idlest_reg_id = 1,
303 .idlest_idle_bit = OMAP3430_ST_GPT8_SHIFT,
304 },
305 },
306 .dev_attr = &capability_pwm_dev_attr,
307 .class = &omap3xxx_timer_hwmod_class,
308};
309
310/* timer9 */
311static struct omap_hwmod omap3xxx_timer9_hwmod = {
312 .name = "timer9",
313 .mpu_irqs = omap2_timer9_mpu_irqs,
314 .main_clk = "gpt9_fck",
315 .prcm = {
316 .omap2 = {
317 .prcm_reg_id = 1,
318 .module_bit = OMAP3430_EN_GPT9_SHIFT,
319 .module_offs = OMAP3430_PER_MOD,
320 .idlest_reg_id = 1,
321 .idlest_idle_bit = OMAP3430_ST_GPT9_SHIFT,
322 },
323 },
324 .dev_attr = &capability_pwm_dev_attr,
325 .class = &omap3xxx_timer_hwmod_class,
326};
327
328/* timer10 */
329static struct omap_hwmod omap3xxx_timer10_hwmod = {
330 .name = "timer10",
331 .mpu_irqs = omap2_timer10_mpu_irqs,
332 .main_clk = "gpt10_fck",
333 .prcm = {
334 .omap2 = {
335 .prcm_reg_id = 1,
336 .module_bit = OMAP3430_EN_GPT10_SHIFT,
337 .module_offs = CORE_MOD,
338 .idlest_reg_id = 1,
339 .idlest_idle_bit = OMAP3430_ST_GPT10_SHIFT,
340 },
341 },
342 .dev_attr = &capability_pwm_dev_attr,
343 .class = &omap3xxx_timer_1ms_hwmod_class,
344};
345
346/* timer11 */
347static struct omap_hwmod omap3xxx_timer11_hwmod = {
348 .name = "timer11",
349 .mpu_irqs = omap2_timer11_mpu_irqs,
350 .main_clk = "gpt11_fck",
351 .prcm = {
352 .omap2 = {
353 .prcm_reg_id = 1,
354 .module_bit = OMAP3430_EN_GPT11_SHIFT,
355 .module_offs = CORE_MOD,
356 .idlest_reg_id = 1,
357 .idlest_idle_bit = OMAP3430_ST_GPT11_SHIFT,
358 },
359 },
360 .dev_attr = &capability_pwm_dev_attr,
361 .class = &omap3xxx_timer_hwmod_class,
362};
363
364/* timer12 */
365static struct omap_hwmod_irq_info omap3xxx_timer12_mpu_irqs[] = {
366 { .irq = 95, },
367 { .irq = -1 }
368};
369
370static struct omap_hwmod omap3xxx_timer12_hwmod = {
371 .name = "timer12",
372 .mpu_irqs = omap3xxx_timer12_mpu_irqs,
373 .main_clk = "gpt12_fck",
374 .prcm = {
375 .omap2 = {
376 .prcm_reg_id = 1,
377 .module_bit = OMAP3430_EN_GPT12_SHIFT,
378 .module_offs = WKUP_MOD,
379 .idlest_reg_id = 1,
380 .idlest_idle_bit = OMAP3430_ST_GPT12_SHIFT,
381 },
382 },
383 .dev_attr = &capability_secure_dev_attr,
384 .class = &omap3xxx_timer_hwmod_class,
385};
386
387/*
388 * 'wd_timer' class
389 * 32-bit watchdog upward counter that generates a pulse on the reset pin on
390 * overflow condition
391 */
392
393static struct omap_hwmod_class_sysconfig omap3xxx_wd_timer_sysc = {
394 .rev_offs = 0x0000,
395 .sysc_offs = 0x0010,
396 .syss_offs = 0x0014,
397 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_EMUFREE |
398 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
399 SYSC_HAS_AUTOIDLE | SYSC_HAS_CLOCKACTIVITY |
400 SYSS_HAS_RESET_STATUS),
401 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
402 .sysc_fields = &omap_hwmod_sysc_type1,
403};
404
405/* I2C common */
406static struct omap_hwmod_class_sysconfig i2c_sysc = {
407 .rev_offs = 0x00,
408 .sysc_offs = 0x20,
409 .syss_offs = 0x10,
410 .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE |
411 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
412 SYSC_HAS_AUTOIDLE | SYSS_HAS_RESET_STATUS),
413 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
414 .clockact = CLOCKACT_TEST_ICLK,
415 .sysc_fields = &omap_hwmod_sysc_type1,
416};
417
418static struct omap_hwmod_class omap3xxx_wd_timer_hwmod_class = {
419 .name = "wd_timer",
420 .sysc = &omap3xxx_wd_timer_sysc,
421 .pre_shutdown = &omap2_wd_timer_disable
422};
423
424static struct omap_hwmod omap3xxx_wd_timer2_hwmod = {
425 .name = "wd_timer2",
426 .class = &omap3xxx_wd_timer_hwmod_class,
427 .main_clk = "wdt2_fck",
428 .prcm = {
429 .omap2 = {
430 .prcm_reg_id = 1,
431 .module_bit = OMAP3430_EN_WDT2_SHIFT,
432 .module_offs = WKUP_MOD,
433 .idlest_reg_id = 1,
434 .idlest_idle_bit = OMAP3430_ST_WDT2_SHIFT,
435 },
436 },
437 /*
438 * XXX: Use software supervised mode, HW supervised smartidle seems to
439 * block CORE power domain idle transitions. Maybe a HW bug in wdt2?
440 */
441 .flags = HWMOD_SWSUP_SIDLE,
442};
443
444/* UART1 */
445static struct omap_hwmod omap3xxx_uart1_hwmod = {
446 .name = "uart1",
447 .mpu_irqs = omap2_uart1_mpu_irqs,
448 .sdma_reqs = omap2_uart1_sdma_reqs,
449 .main_clk = "uart1_fck",
450 .prcm = {
451 .omap2 = {
452 .module_offs = CORE_MOD,
453 .prcm_reg_id = 1,
454 .module_bit = OMAP3430_EN_UART1_SHIFT,
455 .idlest_reg_id = 1,
456 .idlest_idle_bit = OMAP3430_EN_UART1_SHIFT,
457 },
458 },
459 .class = &omap2_uart_class,
460};
461
462/* UART2 */
463static struct omap_hwmod omap3xxx_uart2_hwmod = {
464 .name = "uart2",
465 .mpu_irqs = omap2_uart2_mpu_irqs,
466 .sdma_reqs = omap2_uart2_sdma_reqs,
467 .main_clk = "uart2_fck",
468 .prcm = {
469 .omap2 = {
470 .module_offs = CORE_MOD,
471 .prcm_reg_id = 1,
472 .module_bit = OMAP3430_EN_UART2_SHIFT,
473 .idlest_reg_id = 1,
474 .idlest_idle_bit = OMAP3430_EN_UART2_SHIFT,
475 },
476 },
477 .class = &omap2_uart_class,
478};
479
480/* UART3 */
481static struct omap_hwmod omap3xxx_uart3_hwmod = {
482 .name = "uart3",
483 .mpu_irqs = omap2_uart3_mpu_irqs,
484 .sdma_reqs = omap2_uart3_sdma_reqs,
485 .main_clk = "uart3_fck",
486 .prcm = {
487 .omap2 = {
488 .module_offs = OMAP3430_PER_MOD,
489 .prcm_reg_id = 1,
490 .module_bit = OMAP3430_EN_UART3_SHIFT,
491 .idlest_reg_id = 1,
492 .idlest_idle_bit = OMAP3430_EN_UART3_SHIFT,
493 },
494 },
495 .class = &omap2_uart_class,
496};
497
498/* UART4 */
499static struct omap_hwmod_irq_info uart4_mpu_irqs[] = {
500 { .irq = INT_36XX_UART4_IRQ, },
501 { .irq = -1 }
502};
503
504static struct omap_hwmod_dma_info uart4_sdma_reqs[] = {
505 { .name = "rx", .dma_req = OMAP36XX_DMA_UART4_RX, },
506 { .name = "tx", .dma_req = OMAP36XX_DMA_UART4_TX, },
507 { .dma_req = -1 }
508};
509
510static struct omap_hwmod omap36xx_uart4_hwmod = {
511 .name = "uart4",
512 .mpu_irqs = uart4_mpu_irqs,
513 .sdma_reqs = uart4_sdma_reqs,
514 .main_clk = "uart4_fck",
515 .prcm = {
516 .omap2 = {
517 .module_offs = OMAP3430_PER_MOD,
518 .prcm_reg_id = 1,
519 .module_bit = OMAP3630_EN_UART4_SHIFT,
520 .idlest_reg_id = 1,
521 .idlest_idle_bit = OMAP3630_EN_UART4_SHIFT,
522 },
523 },
524 .class = &omap2_uart_class,
525};
526
527static struct omap_hwmod_irq_info am35xx_uart4_mpu_irqs[] = {
528 { .irq = INT_35XX_UART4_IRQ, },
529};
530
531static struct omap_hwmod_dma_info am35xx_uart4_sdma_reqs[] = {
532 { .name = "rx", .dma_req = AM35XX_DMA_UART4_RX, },
533 { .name = "tx", .dma_req = AM35XX_DMA_UART4_TX, },
534};
535
536static struct omap_hwmod am35xx_uart4_hwmod = {
537 .name = "uart4",
538 .mpu_irqs = am35xx_uart4_mpu_irqs,
539 .sdma_reqs = am35xx_uart4_sdma_reqs,
540 .main_clk = "uart4_fck",
541 .prcm = {
542 .omap2 = {
543 .module_offs = CORE_MOD,
544 .prcm_reg_id = 1,
545 .module_bit = OMAP3430_EN_UART4_SHIFT,
546 .idlest_reg_id = 1,
547 .idlest_idle_bit = OMAP3430_EN_UART4_SHIFT,
548 },
549 },
550 .class = &omap2_uart_class,
551};
552
553static struct omap_hwmod_class i2c_class = {
554 .name = "i2c",
555 .sysc = &i2c_sysc,
556 .rev = OMAP_I2C_IP_VERSION_1,
557 .reset = &omap_i2c_reset,
558};
559
560static struct omap_hwmod_dma_info omap3xxx_dss_sdma_chs[] = {
561 { .name = "dispc", .dma_req = 5 },
562 { .name = "dsi1", .dma_req = 74 },
563 { .dma_req = -1 }
564};
565
566/* dss */
567static struct omap_hwmod_opt_clk dss_opt_clks[] = {
568 /*
569 * The DSS HW needs all DSS clocks enabled during reset. The dss_core
570 * driver does not use these clocks.
571 */
572 { .role = "sys_clk", .clk = "dss2_alwon_fck" },
573 { .role = "tv_clk", .clk = "dss_tv_fck" },
574 /* required only on OMAP3430 */
575 { .role = "tv_dac_clk", .clk = "dss_96m_fck" },
576};
577
578static struct omap_hwmod omap3430es1_dss_core_hwmod = {
579 .name = "dss_core",
580 .class = &omap2_dss_hwmod_class,
581 .main_clk = "dss1_alwon_fck", /* instead of dss_fck */
582 .sdma_reqs = omap3xxx_dss_sdma_chs,
583 .prcm = {
584 .omap2 = {
585 .prcm_reg_id = 1,
586 .module_bit = OMAP3430_EN_DSS1_SHIFT,
587 .module_offs = OMAP3430_DSS_MOD,
588 .idlest_reg_id = 1,
589 .idlest_stdby_bit = OMAP3430ES1_ST_DSS_SHIFT,
590 },
591 },
592 .opt_clks = dss_opt_clks,
593 .opt_clks_cnt = ARRAY_SIZE(dss_opt_clks),
594 .flags = HWMOD_NO_IDLEST | HWMOD_CONTROL_OPT_CLKS_IN_RESET,
595};
596
597static struct omap_hwmod omap3xxx_dss_core_hwmod = {
598 .name = "dss_core",
599 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
600 .class = &omap2_dss_hwmod_class,
601 .main_clk = "dss1_alwon_fck", /* instead of dss_fck */
602 .sdma_reqs = omap3xxx_dss_sdma_chs,
603 .prcm = {
604 .omap2 = {
605 .prcm_reg_id = 1,
606 .module_bit = OMAP3430_EN_DSS1_SHIFT,
607 .module_offs = OMAP3430_DSS_MOD,
608 .idlest_reg_id = 1,
609 .idlest_idle_bit = OMAP3430ES2_ST_DSS_IDLE_SHIFT,
610 .idlest_stdby_bit = OMAP3430ES2_ST_DSS_STDBY_SHIFT,
611 },
612 },
613 .opt_clks = dss_opt_clks,
614 .opt_clks_cnt = ARRAY_SIZE(dss_opt_clks),
615};
616
617/*
618 * 'dispc' class
619 * display controller
620 */
621
622static struct omap_hwmod_class_sysconfig omap3_dispc_sysc = {
623 .rev_offs = 0x0000,
624 .sysc_offs = 0x0010,
625 .syss_offs = 0x0014,
626 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_MIDLEMODE |
627 SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE |
628 SYSC_HAS_ENAWAKEUP),
629 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |
630 MSTANDBY_FORCE | MSTANDBY_NO | MSTANDBY_SMART),
631 .sysc_fields = &omap_hwmod_sysc_type1,
632};
633
634static struct omap_hwmod_class omap3_dispc_hwmod_class = {
635 .name = "dispc",
636 .sysc = &omap3_dispc_sysc,
637};
638
639static struct omap_hwmod omap3xxx_dss_dispc_hwmod = {
640 .name = "dss_dispc",
641 .class = &omap3_dispc_hwmod_class,
642 .mpu_irqs = omap2_dispc_irqs,
643 .main_clk = "dss1_alwon_fck",
644 .prcm = {
645 .omap2 = {
646 .prcm_reg_id = 1,
647 .module_bit = OMAP3430_EN_DSS1_SHIFT,
648 .module_offs = OMAP3430_DSS_MOD,
649 },
650 },
651 .flags = HWMOD_NO_IDLEST,
652 .dev_attr = &omap2_3_dss_dispc_dev_attr
653};
654
655/*
656 * 'dsi' class
657 * display serial interface controller
658 */
659
660static struct omap_hwmod_class omap3xxx_dsi_hwmod_class = {
661 .name = "dsi",
662};
663
664static struct omap_hwmod_irq_info omap3xxx_dsi1_irqs[] = {
665 { .irq = 25 },
666 { .irq = -1 }
667};
668
669/* dss_dsi1 */
670static struct omap_hwmod_opt_clk dss_dsi1_opt_clks[] = {
671 { .role = "sys_clk", .clk = "dss2_alwon_fck" },
672};
673
674static struct omap_hwmod omap3xxx_dss_dsi1_hwmod = {
675 .name = "dss_dsi1",
676 .class = &omap3xxx_dsi_hwmod_class,
677 .mpu_irqs = omap3xxx_dsi1_irqs,
678 .main_clk = "dss1_alwon_fck",
679 .prcm = {
680 .omap2 = {
681 .prcm_reg_id = 1,
682 .module_bit = OMAP3430_EN_DSS1_SHIFT,
683 .module_offs = OMAP3430_DSS_MOD,
684 },
685 },
686 .opt_clks = dss_dsi1_opt_clks,
687 .opt_clks_cnt = ARRAY_SIZE(dss_dsi1_opt_clks),
688 .flags = HWMOD_NO_IDLEST,
689};
690
691static struct omap_hwmod_opt_clk dss_rfbi_opt_clks[] = {
692 { .role = "ick", .clk = "dss_ick" },
693};
694
695static struct omap_hwmod omap3xxx_dss_rfbi_hwmod = {
696 .name = "dss_rfbi",
697 .class = &omap2_rfbi_hwmod_class,
698 .main_clk = "dss1_alwon_fck",
699 .prcm = {
700 .omap2 = {
701 .prcm_reg_id = 1,
702 .module_bit = OMAP3430_EN_DSS1_SHIFT,
703 .module_offs = OMAP3430_DSS_MOD,
704 },
705 },
706 .opt_clks = dss_rfbi_opt_clks,
707 .opt_clks_cnt = ARRAY_SIZE(dss_rfbi_opt_clks),
708 .flags = HWMOD_NO_IDLEST,
709};
710
711static struct omap_hwmod_opt_clk dss_venc_opt_clks[] = {
712 /* required only on OMAP3430 */
713 { .role = "tv_dac_clk", .clk = "dss_96m_fck" },
714};
715
716static struct omap_hwmod omap3xxx_dss_venc_hwmod = {
717 .name = "dss_venc",
718 .class = &omap2_venc_hwmod_class,
719 .main_clk = "dss_tv_fck",
720 .prcm = {
721 .omap2 = {
722 .prcm_reg_id = 1,
723 .module_bit = OMAP3430_EN_DSS1_SHIFT,
724 .module_offs = OMAP3430_DSS_MOD,
725 },
726 },
727 .opt_clks = dss_venc_opt_clks,
728 .opt_clks_cnt = ARRAY_SIZE(dss_venc_opt_clks),
729 .flags = HWMOD_NO_IDLEST,
730};
731
732/* I2C1 */
733static struct omap_i2c_dev_attr i2c1_dev_attr = {
734 .fifo_depth = 8, /* bytes */
735 .flags = OMAP_I2C_FLAG_APPLY_ERRATA_I207 |
736 OMAP_I2C_FLAG_RESET_REGS_POSTIDLE |
737 OMAP_I2C_FLAG_BUS_SHIFT_2,
738};
739
740static struct omap_hwmod omap3xxx_i2c1_hwmod = {
741 .name = "i2c1",
742 .flags = HWMOD_16BIT_REG | HWMOD_SET_DEFAULT_CLOCKACT,
743 .mpu_irqs = omap2_i2c1_mpu_irqs,
744 .sdma_reqs = omap2_i2c1_sdma_reqs,
745 .main_clk = "i2c1_fck",
746 .prcm = {
747 .omap2 = {
748 .module_offs = CORE_MOD,
749 .prcm_reg_id = 1,
750 .module_bit = OMAP3430_EN_I2C1_SHIFT,
751 .idlest_reg_id = 1,
752 .idlest_idle_bit = OMAP3430_ST_I2C1_SHIFT,
753 },
754 },
755 .class = &i2c_class,
756 .dev_attr = &i2c1_dev_attr,
757};
758
759/* I2C2 */
760static struct omap_i2c_dev_attr i2c2_dev_attr = {
761 .fifo_depth = 8, /* bytes */
762 .flags = OMAP_I2C_FLAG_APPLY_ERRATA_I207 |
763 OMAP_I2C_FLAG_RESET_REGS_POSTIDLE |
764 OMAP_I2C_FLAG_BUS_SHIFT_2,
765};
766
767static struct omap_hwmod omap3xxx_i2c2_hwmod = {
768 .name = "i2c2",
769 .flags = HWMOD_16BIT_REG | HWMOD_SET_DEFAULT_CLOCKACT,
770 .mpu_irqs = omap2_i2c2_mpu_irqs,
771 .sdma_reqs = omap2_i2c2_sdma_reqs,
772 .main_clk = "i2c2_fck",
773 .prcm = {
774 .omap2 = {
775 .module_offs = CORE_MOD,
776 .prcm_reg_id = 1,
777 .module_bit = OMAP3430_EN_I2C2_SHIFT,
778 .idlest_reg_id = 1,
779 .idlest_idle_bit = OMAP3430_ST_I2C2_SHIFT,
780 },
781 },
782 .class = &i2c_class,
783 .dev_attr = &i2c2_dev_attr,
784};
785
786/* I2C3 */
787static struct omap_i2c_dev_attr i2c3_dev_attr = {
788 .fifo_depth = 64, /* bytes */
789 .flags = OMAP_I2C_FLAG_APPLY_ERRATA_I207 |
790 OMAP_I2C_FLAG_RESET_REGS_POSTIDLE |
791 OMAP_I2C_FLAG_BUS_SHIFT_2,
792};
793
794static struct omap_hwmod_irq_info i2c3_mpu_irqs[] = {
795 { .irq = INT_34XX_I2C3_IRQ, },
796 { .irq = -1 }
797};
798
799static struct omap_hwmod_dma_info i2c3_sdma_reqs[] = {
800 { .name = "tx", .dma_req = OMAP34XX_DMA_I2C3_TX },
801 { .name = "rx", .dma_req = OMAP34XX_DMA_I2C3_RX },
802 { .dma_req = -1 }
803};
804
805static struct omap_hwmod omap3xxx_i2c3_hwmod = {
806 .name = "i2c3",
807 .flags = HWMOD_16BIT_REG | HWMOD_SET_DEFAULT_CLOCKACT,
808 .mpu_irqs = i2c3_mpu_irqs,
809 .sdma_reqs = i2c3_sdma_reqs,
810 .main_clk = "i2c3_fck",
811 .prcm = {
812 .omap2 = {
813 .module_offs = CORE_MOD,
814 .prcm_reg_id = 1,
815 .module_bit = OMAP3430_EN_I2C3_SHIFT,
816 .idlest_reg_id = 1,
817 .idlest_idle_bit = OMAP3430_ST_I2C3_SHIFT,
818 },
819 },
820 .class = &i2c_class,
821 .dev_attr = &i2c3_dev_attr,
822};
823
824/*
825 * 'gpio' class
826 * general purpose io module
827 */
828
829static struct omap_hwmod_class_sysconfig omap3xxx_gpio_sysc = {
830 .rev_offs = 0x0000,
831 .sysc_offs = 0x0010,
832 .syss_offs = 0x0014,
833 .sysc_flags = (SYSC_HAS_ENAWAKEUP | SYSC_HAS_SIDLEMODE |
834 SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE |
835 SYSS_HAS_RESET_STATUS),
836 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
837 .sysc_fields = &omap_hwmod_sysc_type1,
838};
839
840static struct omap_hwmod_class omap3xxx_gpio_hwmod_class = {
841 .name = "gpio",
842 .sysc = &omap3xxx_gpio_sysc,
843 .rev = 1,
844};
845
846/* gpio_dev_attr */
847static struct omap_gpio_dev_attr gpio_dev_attr = {
848 .bank_width = 32,
849 .dbck_flag = true,
850};
851
852/* gpio1 */
853static struct omap_hwmod_opt_clk gpio1_opt_clks[] = {
854 { .role = "dbclk", .clk = "gpio1_dbck", },
855};
856
857static struct omap_hwmod omap3xxx_gpio1_hwmod = {
858 .name = "gpio1",
859 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
860 .mpu_irqs = omap2_gpio1_irqs,
861 .main_clk = "gpio1_ick",
862 .opt_clks = gpio1_opt_clks,
863 .opt_clks_cnt = ARRAY_SIZE(gpio1_opt_clks),
864 .prcm = {
865 .omap2 = {
866 .prcm_reg_id = 1,
867 .module_bit = OMAP3430_EN_GPIO1_SHIFT,
868 .module_offs = WKUP_MOD,
869 .idlest_reg_id = 1,
870 .idlest_idle_bit = OMAP3430_ST_GPIO1_SHIFT,
871 },
872 },
873 .class = &omap3xxx_gpio_hwmod_class,
874 .dev_attr = &gpio_dev_attr,
875};
876
877/* gpio2 */
878static struct omap_hwmod_opt_clk gpio2_opt_clks[] = {
879 { .role = "dbclk", .clk = "gpio2_dbck", },
880};
881
882static struct omap_hwmod omap3xxx_gpio2_hwmod = {
883 .name = "gpio2",
884 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
885 .mpu_irqs = omap2_gpio2_irqs,
886 .main_clk = "gpio2_ick",
887 .opt_clks = gpio2_opt_clks,
888 .opt_clks_cnt = ARRAY_SIZE(gpio2_opt_clks),
889 .prcm = {
890 .omap2 = {
891 .prcm_reg_id = 1,
892 .module_bit = OMAP3430_EN_GPIO2_SHIFT,
893 .module_offs = OMAP3430_PER_MOD,
894 .idlest_reg_id = 1,
895 .idlest_idle_bit = OMAP3430_ST_GPIO2_SHIFT,
896 },
897 },
898 .class = &omap3xxx_gpio_hwmod_class,
899 .dev_attr = &gpio_dev_attr,
900};
901
902/* gpio3 */
903static struct omap_hwmod_opt_clk gpio3_opt_clks[] = {
904 { .role = "dbclk", .clk = "gpio3_dbck", },
905};
906
907static struct omap_hwmod omap3xxx_gpio3_hwmod = {
908 .name = "gpio3",
909 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
910 .mpu_irqs = omap2_gpio3_irqs,
911 .main_clk = "gpio3_ick",
912 .opt_clks = gpio3_opt_clks,
913 .opt_clks_cnt = ARRAY_SIZE(gpio3_opt_clks),
914 .prcm = {
915 .omap2 = {
916 .prcm_reg_id = 1,
917 .module_bit = OMAP3430_EN_GPIO3_SHIFT,
918 .module_offs = OMAP3430_PER_MOD,
919 .idlest_reg_id = 1,
920 .idlest_idle_bit = OMAP3430_ST_GPIO3_SHIFT,
921 },
922 },
923 .class = &omap3xxx_gpio_hwmod_class,
924 .dev_attr = &gpio_dev_attr,
925};
926
927/* gpio4 */
928static struct omap_hwmod_opt_clk gpio4_opt_clks[] = {
929 { .role = "dbclk", .clk = "gpio4_dbck", },
930};
931
932static struct omap_hwmod omap3xxx_gpio4_hwmod = {
933 .name = "gpio4",
934 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
935 .mpu_irqs = omap2_gpio4_irqs,
936 .main_clk = "gpio4_ick",
937 .opt_clks = gpio4_opt_clks,
938 .opt_clks_cnt = ARRAY_SIZE(gpio4_opt_clks),
939 .prcm = {
940 .omap2 = {
941 .prcm_reg_id = 1,
942 .module_bit = OMAP3430_EN_GPIO4_SHIFT,
943 .module_offs = OMAP3430_PER_MOD,
944 .idlest_reg_id = 1,
945 .idlest_idle_bit = OMAP3430_ST_GPIO4_SHIFT,
946 },
947 },
948 .class = &omap3xxx_gpio_hwmod_class,
949 .dev_attr = &gpio_dev_attr,
950};
951
952/* gpio5 */
953static struct omap_hwmod_irq_info omap3xxx_gpio5_irqs[] = {
954 { .irq = 33 }, /* INT_34XX_GPIO_BANK5 */
955 { .irq = -1 }
956};
957
958static struct omap_hwmod_opt_clk gpio5_opt_clks[] = {
959 { .role = "dbclk", .clk = "gpio5_dbck", },
960};
961
962static struct omap_hwmod omap3xxx_gpio5_hwmod = {
963 .name = "gpio5",
964 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
965 .mpu_irqs = omap3xxx_gpio5_irqs,
966 .main_clk = "gpio5_ick",
967 .opt_clks = gpio5_opt_clks,
968 .opt_clks_cnt = ARRAY_SIZE(gpio5_opt_clks),
969 .prcm = {
970 .omap2 = {
971 .prcm_reg_id = 1,
972 .module_bit = OMAP3430_EN_GPIO5_SHIFT,
973 .module_offs = OMAP3430_PER_MOD,
974 .idlest_reg_id = 1,
975 .idlest_idle_bit = OMAP3430_ST_GPIO5_SHIFT,
976 },
977 },
978 .class = &omap3xxx_gpio_hwmod_class,
979 .dev_attr = &gpio_dev_attr,
980};
981
982/* gpio6 */
983static struct omap_hwmod_irq_info omap3xxx_gpio6_irqs[] = {
984 { .irq = 34 }, /* INT_34XX_GPIO_BANK6 */
985 { .irq = -1 }
986};
987
988static struct omap_hwmod_opt_clk gpio6_opt_clks[] = {
989 { .role = "dbclk", .clk = "gpio6_dbck", },
990};
991
992static struct omap_hwmod omap3xxx_gpio6_hwmod = {
993 .name = "gpio6",
994 .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
995 .mpu_irqs = omap3xxx_gpio6_irqs,
996 .main_clk = "gpio6_ick",
997 .opt_clks = gpio6_opt_clks,
998 .opt_clks_cnt = ARRAY_SIZE(gpio6_opt_clks),
999 .prcm = {
1000 .omap2 = {
1001 .prcm_reg_id = 1,
1002 .module_bit = OMAP3430_EN_GPIO6_SHIFT,
1003 .module_offs = OMAP3430_PER_MOD,
1004 .idlest_reg_id = 1,
1005 .idlest_idle_bit = OMAP3430_ST_GPIO6_SHIFT,
1006 },
1007 },
1008 .class = &omap3xxx_gpio_hwmod_class,
1009 .dev_attr = &gpio_dev_attr,
1010};
1011
1012/* dma attributes */
1013static struct omap_dma_dev_attr dma_dev_attr = {
1014 .dev_caps = RESERVE_CHANNEL | DMA_LINKED_LCH | GLOBAL_PRIORITY |
1015 IS_CSSA_32 | IS_CDSA_32 | IS_RW_PRIORITY,
1016 .lch_count = 32,
1017};
1018
1019static struct omap_hwmod_class_sysconfig omap3xxx_dma_sysc = {
1020 .rev_offs = 0x0000,
1021 .sysc_offs = 0x002c,
1022 .syss_offs = 0x0028,
1023 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET |
1024 SYSC_HAS_MIDLEMODE | SYSC_HAS_CLOCKACTIVITY |
1025 SYSC_HAS_EMUFREE | SYSC_HAS_AUTOIDLE |
1026 SYSS_HAS_RESET_STATUS),
1027 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |
1028 MSTANDBY_FORCE | MSTANDBY_NO | MSTANDBY_SMART),
1029 .sysc_fields = &omap_hwmod_sysc_type1,
1030};
1031
1032static struct omap_hwmod_class omap3xxx_dma_hwmod_class = {
1033 .name = "dma",
1034 .sysc = &omap3xxx_dma_sysc,
1035};
1036
1037/* dma_system */
1038static struct omap_hwmod omap3xxx_dma_system_hwmod = {
1039 .name = "dma",
1040 .class = &omap3xxx_dma_hwmod_class,
1041 .mpu_irqs = omap2_dma_system_irqs,
1042 .main_clk = "core_l3_ick",
1043 .prcm = {
1044 .omap2 = {
1045 .module_offs = CORE_MOD,
1046 .prcm_reg_id = 1,
1047 .module_bit = OMAP3430_ST_SDMA_SHIFT,
1048 .idlest_reg_id = 1,
1049 .idlest_idle_bit = OMAP3430_ST_SDMA_SHIFT,
1050 },
1051 },
1052 .dev_attr = &dma_dev_attr,
1053 .flags = HWMOD_NO_IDLEST,
1054};
1055
1056/*
1057 * 'mcbsp' class
1058 * multi channel buffered serial port controller
1059 */
1060
1061static struct omap_hwmod_class_sysconfig omap3xxx_mcbsp_sysc = {
1062 .sysc_offs = 0x008c,
1063 .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_ENAWAKEUP |
1064 SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET),
1065 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
1066 .sysc_fields = &omap_hwmod_sysc_type1,
1067 .clockact = 0x2,
1068};
1069
1070static struct omap_hwmod_class omap3xxx_mcbsp_hwmod_class = {
1071 .name = "mcbsp",
1072 .sysc = &omap3xxx_mcbsp_sysc,
1073 .rev = MCBSP_CONFIG_TYPE3,
1074};
1075
1076/* mcbsp1 */
1077static struct omap_hwmod_irq_info omap3xxx_mcbsp1_irqs[] = {
Peter Ujfalusi1c2badc2012-05-08 11:34:28 -06001078 { .name = "common", .irq = 16 },
Paul Walmsley844a3b62012-04-19 04:04:33 -06001079 { .name = "tx", .irq = 59 },
1080 { .name = "rx", .irq = 60 },
1081 { .irq = -1 }
1082};
1083
1084static struct omap_hwmod omap3xxx_mcbsp1_hwmod = {
1085 .name = "mcbsp1",
1086 .class = &omap3xxx_mcbsp_hwmod_class,
1087 .mpu_irqs = omap3xxx_mcbsp1_irqs,
1088 .sdma_reqs = omap2_mcbsp1_sdma_reqs,
1089 .main_clk = "mcbsp1_fck",
1090 .prcm = {
1091 .omap2 = {
1092 .prcm_reg_id = 1,
1093 .module_bit = OMAP3430_EN_MCBSP1_SHIFT,
1094 .module_offs = CORE_MOD,
1095 .idlest_reg_id = 1,
1096 .idlest_idle_bit = OMAP3430_ST_MCBSP1_SHIFT,
1097 },
1098 },
1099};
1100
1101/* mcbsp2 */
1102static struct omap_hwmod_irq_info omap3xxx_mcbsp2_irqs[] = {
Peter Ujfalusi1c2badc2012-05-08 11:34:28 -06001103 { .name = "common", .irq = 17 },
Paul Walmsley844a3b62012-04-19 04:04:33 -06001104 { .name = "tx", .irq = 62 },
1105 { .name = "rx", .irq = 63 },
1106 { .irq = -1 }
1107};
1108
1109static struct omap_mcbsp_dev_attr omap34xx_mcbsp2_dev_attr = {
1110 .sidetone = "mcbsp2_sidetone",
1111};
1112
1113static struct omap_hwmod omap3xxx_mcbsp2_hwmod = {
1114 .name = "mcbsp2",
1115 .class = &omap3xxx_mcbsp_hwmod_class,
1116 .mpu_irqs = omap3xxx_mcbsp2_irqs,
1117 .sdma_reqs = omap2_mcbsp2_sdma_reqs,
1118 .main_clk = "mcbsp2_fck",
1119 .prcm = {
1120 .omap2 = {
1121 .prcm_reg_id = 1,
1122 .module_bit = OMAP3430_EN_MCBSP2_SHIFT,
1123 .module_offs = OMAP3430_PER_MOD,
1124 .idlest_reg_id = 1,
1125 .idlest_idle_bit = OMAP3430_ST_MCBSP2_SHIFT,
1126 },
1127 },
1128 .dev_attr = &omap34xx_mcbsp2_dev_attr,
1129};
1130
1131/* mcbsp3 */
1132static struct omap_hwmod_irq_info omap3xxx_mcbsp3_irqs[] = {
Peter Ujfalusi1c2badc2012-05-08 11:34:28 -06001133 { .name = "common", .irq = 22 },
Paul Walmsley844a3b62012-04-19 04:04:33 -06001134 { .name = "tx", .irq = 89 },
1135 { .name = "rx", .irq = 90 },
1136 { .irq = -1 }
1137};
1138
1139static struct omap_mcbsp_dev_attr omap34xx_mcbsp3_dev_attr = {
1140 .sidetone = "mcbsp3_sidetone",
1141};
1142
1143static struct omap_hwmod omap3xxx_mcbsp3_hwmod = {
1144 .name = "mcbsp3",
1145 .class = &omap3xxx_mcbsp_hwmod_class,
1146 .mpu_irqs = omap3xxx_mcbsp3_irqs,
1147 .sdma_reqs = omap2_mcbsp3_sdma_reqs,
1148 .main_clk = "mcbsp3_fck",
1149 .prcm = {
1150 .omap2 = {
1151 .prcm_reg_id = 1,
1152 .module_bit = OMAP3430_EN_MCBSP3_SHIFT,
1153 .module_offs = OMAP3430_PER_MOD,
1154 .idlest_reg_id = 1,
1155 .idlest_idle_bit = OMAP3430_ST_MCBSP3_SHIFT,
1156 },
1157 },
1158 .dev_attr = &omap34xx_mcbsp3_dev_attr,
1159};
1160
1161/* mcbsp4 */
1162static struct omap_hwmod_irq_info omap3xxx_mcbsp4_irqs[] = {
Peter Ujfalusi1c2badc2012-05-08 11:34:28 -06001163 { .name = "common", .irq = 23 },
Paul Walmsley844a3b62012-04-19 04:04:33 -06001164 { .name = "tx", .irq = 54 },
1165 { .name = "rx", .irq = 55 },
1166 { .irq = -1 }
1167};
1168
1169static struct omap_hwmod_dma_info omap3xxx_mcbsp4_sdma_chs[] = {
1170 { .name = "rx", .dma_req = 20 },
1171 { .name = "tx", .dma_req = 19 },
1172 { .dma_req = -1 }
1173};
1174
1175static struct omap_hwmod omap3xxx_mcbsp4_hwmod = {
1176 .name = "mcbsp4",
1177 .class = &omap3xxx_mcbsp_hwmod_class,
1178 .mpu_irqs = omap3xxx_mcbsp4_irqs,
1179 .sdma_reqs = omap3xxx_mcbsp4_sdma_chs,
1180 .main_clk = "mcbsp4_fck",
1181 .prcm = {
1182 .omap2 = {
1183 .prcm_reg_id = 1,
1184 .module_bit = OMAP3430_EN_MCBSP4_SHIFT,
1185 .module_offs = OMAP3430_PER_MOD,
1186 .idlest_reg_id = 1,
1187 .idlest_idle_bit = OMAP3430_ST_MCBSP4_SHIFT,
1188 },
1189 },
1190};
1191
1192/* mcbsp5 */
1193static struct omap_hwmod_irq_info omap3xxx_mcbsp5_irqs[] = {
Peter Ujfalusi1c2badc2012-05-08 11:34:28 -06001194 { .name = "common", .irq = 27 },
Paul Walmsley844a3b62012-04-19 04:04:33 -06001195 { .name = "tx", .irq = 81 },
1196 { .name = "rx", .irq = 82 },
1197 { .irq = -1 }
1198};
1199
1200static struct omap_hwmod_dma_info omap3xxx_mcbsp5_sdma_chs[] = {
1201 { .name = "rx", .dma_req = 22 },
1202 { .name = "tx", .dma_req = 21 },
1203 { .dma_req = -1 }
1204};
1205
1206static struct omap_hwmod omap3xxx_mcbsp5_hwmod = {
1207 .name = "mcbsp5",
1208 .class = &omap3xxx_mcbsp_hwmod_class,
1209 .mpu_irqs = omap3xxx_mcbsp5_irqs,
1210 .sdma_reqs = omap3xxx_mcbsp5_sdma_chs,
1211 .main_clk = "mcbsp5_fck",
1212 .prcm = {
1213 .omap2 = {
1214 .prcm_reg_id = 1,
1215 .module_bit = OMAP3430_EN_MCBSP5_SHIFT,
1216 .module_offs = CORE_MOD,
1217 .idlest_reg_id = 1,
1218 .idlest_idle_bit = OMAP3430_ST_MCBSP5_SHIFT,
1219 },
1220 },
1221};
1222
1223/* 'mcbsp sidetone' class */
1224static struct omap_hwmod_class_sysconfig omap3xxx_mcbsp_sidetone_sysc = {
1225 .sysc_offs = 0x0010,
1226 .sysc_flags = SYSC_HAS_AUTOIDLE,
1227 .sysc_fields = &omap_hwmod_sysc_type1,
1228};
1229
1230static struct omap_hwmod_class omap3xxx_mcbsp_sidetone_hwmod_class = {
1231 .name = "mcbsp_sidetone",
1232 .sysc = &omap3xxx_mcbsp_sidetone_sysc,
1233};
1234
1235/* mcbsp2_sidetone */
1236static struct omap_hwmod_irq_info omap3xxx_mcbsp2_sidetone_irqs[] = {
1237 { .name = "irq", .irq = 4 },
1238 { .irq = -1 }
1239};
1240
1241static struct omap_hwmod omap3xxx_mcbsp2_sidetone_hwmod = {
1242 .name = "mcbsp2_sidetone",
1243 .class = &omap3xxx_mcbsp_sidetone_hwmod_class,
1244 .mpu_irqs = omap3xxx_mcbsp2_sidetone_irqs,
1245 .main_clk = "mcbsp2_fck",
1246 .prcm = {
1247 .omap2 = {
1248 .prcm_reg_id = 1,
1249 .module_bit = OMAP3430_EN_MCBSP2_SHIFT,
1250 .module_offs = OMAP3430_PER_MOD,
1251 .idlest_reg_id = 1,
1252 .idlest_idle_bit = OMAP3430_ST_MCBSP2_SHIFT,
1253 },
1254 },
1255};
1256
1257/* mcbsp3_sidetone */
1258static struct omap_hwmod_irq_info omap3xxx_mcbsp3_sidetone_irqs[] = {
1259 { .name = "irq", .irq = 5 },
1260 { .irq = -1 }
1261};
1262
1263static struct omap_hwmod omap3xxx_mcbsp3_sidetone_hwmod = {
1264 .name = "mcbsp3_sidetone",
1265 .class = &omap3xxx_mcbsp_sidetone_hwmod_class,
1266 .mpu_irqs = omap3xxx_mcbsp3_sidetone_irqs,
1267 .main_clk = "mcbsp3_fck",
1268 .prcm = {
1269 .omap2 = {
1270 .prcm_reg_id = 1,
1271 .module_bit = OMAP3430_EN_MCBSP3_SHIFT,
1272 .module_offs = OMAP3430_PER_MOD,
1273 .idlest_reg_id = 1,
1274 .idlest_idle_bit = OMAP3430_ST_MCBSP3_SHIFT,
1275 },
1276 },
1277};
1278
1279/* SR common */
1280static struct omap_hwmod_sysc_fields omap34xx_sr_sysc_fields = {
1281 .clkact_shift = 20,
1282};
1283
1284static struct omap_hwmod_class_sysconfig omap34xx_sr_sysc = {
1285 .sysc_offs = 0x24,
1286 .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_NO_CACHE),
1287 .clockact = CLOCKACT_TEST_ICLK,
1288 .sysc_fields = &omap34xx_sr_sysc_fields,
1289};
1290
1291static struct omap_hwmod_class omap34xx_smartreflex_hwmod_class = {
1292 .name = "smartreflex",
1293 .sysc = &omap34xx_sr_sysc,
1294 .rev = 1,
1295};
1296
1297static struct omap_hwmod_sysc_fields omap36xx_sr_sysc_fields = {
1298 .sidle_shift = 24,
1299 .enwkup_shift = 26,
1300};
1301
1302static struct omap_hwmod_class_sysconfig omap36xx_sr_sysc = {
1303 .sysc_offs = 0x38,
1304 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
1305 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_ENAWAKEUP |
1306 SYSC_NO_CACHE),
1307 .sysc_fields = &omap36xx_sr_sysc_fields,
1308};
1309
1310static struct omap_hwmod_class omap36xx_smartreflex_hwmod_class = {
1311 .name = "smartreflex",
1312 .sysc = &omap36xx_sr_sysc,
1313 .rev = 2,
1314};
1315
1316/* SR1 */
1317static struct omap_smartreflex_dev_attr sr1_dev_attr = {
1318 .sensor_voltdm_name = "mpu_iva",
1319};
1320
1321static struct omap_hwmod_irq_info omap3_smartreflex_mpu_irqs[] = {
1322 { .irq = 18 },
1323 { .irq = -1 }
1324};
1325
1326static struct omap_hwmod omap34xx_sr1_hwmod = {
1327 .name = "sr1",
1328 .class = &omap34xx_smartreflex_hwmod_class,
1329 .main_clk = "sr1_fck",
1330 .prcm = {
1331 .omap2 = {
1332 .prcm_reg_id = 1,
1333 .module_bit = OMAP3430_EN_SR1_SHIFT,
1334 .module_offs = WKUP_MOD,
1335 .idlest_reg_id = 1,
1336 .idlest_idle_bit = OMAP3430_EN_SR1_SHIFT,
1337 },
1338 },
1339 .dev_attr = &sr1_dev_attr,
1340 .mpu_irqs = omap3_smartreflex_mpu_irqs,
1341 .flags = HWMOD_SET_DEFAULT_CLOCKACT,
1342};
1343
1344static struct omap_hwmod omap36xx_sr1_hwmod = {
1345 .name = "sr1",
1346 .class = &omap36xx_smartreflex_hwmod_class,
1347 .main_clk = "sr1_fck",
1348 .prcm = {
1349 .omap2 = {
1350 .prcm_reg_id = 1,
1351 .module_bit = OMAP3430_EN_SR1_SHIFT,
1352 .module_offs = WKUP_MOD,
1353 .idlest_reg_id = 1,
1354 .idlest_idle_bit = OMAP3430_EN_SR1_SHIFT,
1355 },
1356 },
1357 .dev_attr = &sr1_dev_attr,
1358 .mpu_irqs = omap3_smartreflex_mpu_irqs,
1359};
1360
1361/* SR2 */
1362static struct omap_smartreflex_dev_attr sr2_dev_attr = {
1363 .sensor_voltdm_name = "core",
1364};
1365
1366static struct omap_hwmod_irq_info omap3_smartreflex_core_irqs[] = {
1367 { .irq = 19 },
1368 { .irq = -1 }
1369};
1370
1371static struct omap_hwmod omap34xx_sr2_hwmod = {
1372 .name = "sr2",
1373 .class = &omap34xx_smartreflex_hwmod_class,
1374 .main_clk = "sr2_fck",
1375 .prcm = {
1376 .omap2 = {
1377 .prcm_reg_id = 1,
1378 .module_bit = OMAP3430_EN_SR2_SHIFT,
1379 .module_offs = WKUP_MOD,
1380 .idlest_reg_id = 1,
1381 .idlest_idle_bit = OMAP3430_EN_SR2_SHIFT,
1382 },
1383 },
1384 .dev_attr = &sr2_dev_attr,
1385 .mpu_irqs = omap3_smartreflex_core_irqs,
1386 .flags = HWMOD_SET_DEFAULT_CLOCKACT,
1387};
1388
1389static struct omap_hwmod omap36xx_sr2_hwmod = {
1390 .name = "sr2",
1391 .class = &omap36xx_smartreflex_hwmod_class,
1392 .main_clk = "sr2_fck",
1393 .prcm = {
1394 .omap2 = {
1395 .prcm_reg_id = 1,
1396 .module_bit = OMAP3430_EN_SR2_SHIFT,
1397 .module_offs = WKUP_MOD,
1398 .idlest_reg_id = 1,
1399 .idlest_idle_bit = OMAP3430_EN_SR2_SHIFT,
1400 },
1401 },
1402 .dev_attr = &sr2_dev_attr,
1403 .mpu_irqs = omap3_smartreflex_core_irqs,
1404};
1405
1406/*
1407 * 'mailbox' class
1408 * mailbox module allowing communication between the on-chip processors
1409 * using a queued mailbox-interrupt mechanism.
1410 */
1411
1412static struct omap_hwmod_class_sysconfig omap3xxx_mailbox_sysc = {
1413 .rev_offs = 0x000,
1414 .sysc_offs = 0x010,
1415 .syss_offs = 0x014,
1416 .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE |
1417 SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE),
1418 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
1419 .sysc_fields = &omap_hwmod_sysc_type1,
1420};
1421
1422static struct omap_hwmod_class omap3xxx_mailbox_hwmod_class = {
1423 .name = "mailbox",
1424 .sysc = &omap3xxx_mailbox_sysc,
1425};
1426
1427static struct omap_hwmod_irq_info omap3xxx_mailbox_irqs[] = {
1428 { .irq = 26 },
1429 { .irq = -1 }
1430};
1431
1432static struct omap_hwmod omap3xxx_mailbox_hwmod = {
1433 .name = "mailbox",
1434 .class = &omap3xxx_mailbox_hwmod_class,
1435 .mpu_irqs = omap3xxx_mailbox_irqs,
1436 .main_clk = "mailboxes_ick",
1437 .prcm = {
1438 .omap2 = {
1439 .prcm_reg_id = 1,
1440 .module_bit = OMAP3430_EN_MAILBOXES_SHIFT,
1441 .module_offs = CORE_MOD,
1442 .idlest_reg_id = 1,
1443 .idlest_idle_bit = OMAP3430_ST_MAILBOXES_SHIFT,
1444 },
1445 },
1446};
1447
1448/*
1449 * 'mcspi' class
1450 * multichannel serial port interface (mcspi) / master/slave synchronous serial
1451 * bus
1452 */
1453
1454static struct omap_hwmod_class_sysconfig omap34xx_mcspi_sysc = {
1455 .rev_offs = 0x0000,
1456 .sysc_offs = 0x0010,
1457 .syss_offs = 0x0014,
1458 .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE |
1459 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
1460 SYSC_HAS_AUTOIDLE | SYSS_HAS_RESET_STATUS),
1461 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
1462 .sysc_fields = &omap_hwmod_sysc_type1,
1463};
1464
1465static struct omap_hwmod_class omap34xx_mcspi_class = {
1466 .name = "mcspi",
1467 .sysc = &omap34xx_mcspi_sysc,
1468 .rev = OMAP3_MCSPI_REV,
1469};
1470
1471/* mcspi1 */
1472static struct omap2_mcspi_dev_attr omap_mcspi1_dev_attr = {
1473 .num_chipselect = 4,
1474};
1475
1476static struct omap_hwmod omap34xx_mcspi1 = {
1477 .name = "mcspi1",
1478 .mpu_irqs = omap2_mcspi1_mpu_irqs,
1479 .sdma_reqs = omap2_mcspi1_sdma_reqs,
1480 .main_clk = "mcspi1_fck",
1481 .prcm = {
1482 .omap2 = {
1483 .module_offs = CORE_MOD,
1484 .prcm_reg_id = 1,
1485 .module_bit = OMAP3430_EN_MCSPI1_SHIFT,
1486 .idlest_reg_id = 1,
1487 .idlest_idle_bit = OMAP3430_ST_MCSPI1_SHIFT,
1488 },
1489 },
1490 .class = &omap34xx_mcspi_class,
1491 .dev_attr = &omap_mcspi1_dev_attr,
1492};
1493
1494/* mcspi2 */
1495static struct omap2_mcspi_dev_attr omap_mcspi2_dev_attr = {
1496 .num_chipselect = 2,
1497};
1498
1499static struct omap_hwmod omap34xx_mcspi2 = {
1500 .name = "mcspi2",
1501 .mpu_irqs = omap2_mcspi2_mpu_irqs,
1502 .sdma_reqs = omap2_mcspi2_sdma_reqs,
1503 .main_clk = "mcspi2_fck",
1504 .prcm = {
1505 .omap2 = {
1506 .module_offs = CORE_MOD,
1507 .prcm_reg_id = 1,
1508 .module_bit = OMAP3430_EN_MCSPI2_SHIFT,
1509 .idlest_reg_id = 1,
1510 .idlest_idle_bit = OMAP3430_ST_MCSPI2_SHIFT,
1511 },
1512 },
1513 .class = &omap34xx_mcspi_class,
1514 .dev_attr = &omap_mcspi2_dev_attr,
1515};
1516
1517/* mcspi3 */
1518static struct omap_hwmod_irq_info omap34xx_mcspi3_mpu_irqs[] = {
1519 { .name = "irq", .irq = 91 }, /* 91 */
1520 { .irq = -1 }
1521};
1522
1523static struct omap_hwmod_dma_info omap34xx_mcspi3_sdma_reqs[] = {
1524 { .name = "tx0", .dma_req = 15 },
1525 { .name = "rx0", .dma_req = 16 },
1526 { .name = "tx1", .dma_req = 23 },
1527 { .name = "rx1", .dma_req = 24 },
1528 { .dma_req = -1 }
1529};
1530
1531static struct omap2_mcspi_dev_attr omap_mcspi3_dev_attr = {
1532 .num_chipselect = 2,
1533};
1534
1535static struct omap_hwmod omap34xx_mcspi3 = {
1536 .name = "mcspi3",
1537 .mpu_irqs = omap34xx_mcspi3_mpu_irqs,
1538 .sdma_reqs = omap34xx_mcspi3_sdma_reqs,
1539 .main_clk = "mcspi3_fck",
1540 .prcm = {
1541 .omap2 = {
1542 .module_offs = CORE_MOD,
1543 .prcm_reg_id = 1,
1544 .module_bit = OMAP3430_EN_MCSPI3_SHIFT,
1545 .idlest_reg_id = 1,
1546 .idlest_idle_bit = OMAP3430_ST_MCSPI3_SHIFT,
1547 },
1548 },
1549 .class = &omap34xx_mcspi_class,
1550 .dev_attr = &omap_mcspi3_dev_attr,
1551};
1552
1553/* mcspi4 */
1554static struct omap_hwmod_irq_info omap34xx_mcspi4_mpu_irqs[] = {
1555 { .name = "irq", .irq = INT_34XX_SPI4_IRQ }, /* 48 */
1556 { .irq = -1 }
1557};
1558
1559static struct omap_hwmod_dma_info omap34xx_mcspi4_sdma_reqs[] = {
1560 { .name = "tx0", .dma_req = 70 }, /* DMA_SPI4_TX0 */
1561 { .name = "rx0", .dma_req = 71 }, /* DMA_SPI4_RX0 */
1562 { .dma_req = -1 }
1563};
1564
1565static struct omap2_mcspi_dev_attr omap_mcspi4_dev_attr = {
1566 .num_chipselect = 1,
1567};
1568
1569static struct omap_hwmod omap34xx_mcspi4 = {
1570 .name = "mcspi4",
1571 .mpu_irqs = omap34xx_mcspi4_mpu_irqs,
1572 .sdma_reqs = omap34xx_mcspi4_sdma_reqs,
1573 .main_clk = "mcspi4_fck",
1574 .prcm = {
1575 .omap2 = {
1576 .module_offs = CORE_MOD,
1577 .prcm_reg_id = 1,
1578 .module_bit = OMAP3430_EN_MCSPI4_SHIFT,
1579 .idlest_reg_id = 1,
1580 .idlest_idle_bit = OMAP3430_ST_MCSPI4_SHIFT,
1581 },
1582 },
1583 .class = &omap34xx_mcspi_class,
1584 .dev_attr = &omap_mcspi4_dev_attr,
1585};
1586
1587/* usbhsotg */
1588static struct omap_hwmod_class_sysconfig omap3xxx_usbhsotg_sysc = {
1589 .rev_offs = 0x0400,
1590 .sysc_offs = 0x0404,
1591 .syss_offs = 0x0408,
1592 .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_MIDLEMODE|
1593 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
1594 SYSC_HAS_AUTOIDLE),
1595 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |
1596 MSTANDBY_FORCE | MSTANDBY_NO | MSTANDBY_SMART),
1597 .sysc_fields = &omap_hwmod_sysc_type1,
1598};
1599
1600static struct omap_hwmod_class usbotg_class = {
1601 .name = "usbotg",
1602 .sysc = &omap3xxx_usbhsotg_sysc,
1603};
1604
1605/* usb_otg_hs */
1606static struct omap_hwmod_irq_info omap3xxx_usbhsotg_mpu_irqs[] = {
1607
1608 { .name = "mc", .irq = 92 },
1609 { .name = "dma", .irq = 93 },
1610 { .irq = -1 }
1611};
1612
1613static struct omap_hwmod omap3xxx_usbhsotg_hwmod = {
1614 .name = "usb_otg_hs",
1615 .mpu_irqs = omap3xxx_usbhsotg_mpu_irqs,
1616 .main_clk = "hsotgusb_ick",
1617 .prcm = {
1618 .omap2 = {
1619 .prcm_reg_id = 1,
1620 .module_bit = OMAP3430_EN_HSOTGUSB_SHIFT,
1621 .module_offs = CORE_MOD,
1622 .idlest_reg_id = 1,
1623 .idlest_idle_bit = OMAP3430ES2_ST_HSOTGUSB_IDLE_SHIFT,
1624 .idlest_stdby_bit = OMAP3430ES2_ST_HSOTGUSB_STDBY_SHIFT
1625 },
1626 },
1627 .class = &usbotg_class,
1628
1629 /*
1630 * Erratum ID: i479 idle_req / idle_ack mechanism potentially
1631 * broken when autoidle is enabled
1632 * workaround is to disable the autoidle bit at module level.
1633 */
1634 .flags = HWMOD_NO_OCP_AUTOIDLE | HWMOD_SWSUP_SIDLE
1635 | HWMOD_SWSUP_MSTANDBY,
1636};
1637
1638/* usb_otg_hs */
1639static struct omap_hwmod_irq_info am35xx_usbhsotg_mpu_irqs[] = {
1640
1641 { .name = "mc", .irq = 71 },
1642 { .irq = -1 }
1643};
1644
1645static struct omap_hwmod_class am35xx_usbotg_class = {
1646 .name = "am35xx_usbotg",
1647 .sysc = NULL,
1648};
1649
1650static struct omap_hwmod am35xx_usbhsotg_hwmod = {
1651 .name = "am35x_otg_hs",
1652 .mpu_irqs = am35xx_usbhsotg_mpu_irqs,
1653 .main_clk = NULL,
1654 .prcm = {
1655 .omap2 = {
1656 },
1657 },
1658 .class = &am35xx_usbotg_class,
1659};
1660
1661/* MMC/SD/SDIO common */
1662static struct omap_hwmod_class_sysconfig omap34xx_mmc_sysc = {
1663 .rev_offs = 0x1fc,
1664 .sysc_offs = 0x10,
1665 .syss_offs = 0x14,
1666 .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE |
1667 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
1668 SYSC_HAS_AUTOIDLE | SYSS_HAS_RESET_STATUS),
1669 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
1670 .sysc_fields = &omap_hwmod_sysc_type1,
1671};
1672
1673static struct omap_hwmod_class omap34xx_mmc_class = {
1674 .name = "mmc",
1675 .sysc = &omap34xx_mmc_sysc,
1676};
1677
1678/* MMC/SD/SDIO1 */
1679
1680static struct omap_hwmod_irq_info omap34xx_mmc1_mpu_irqs[] = {
1681 { .irq = 83, },
1682 { .irq = -1 }
1683};
1684
1685static struct omap_hwmod_dma_info omap34xx_mmc1_sdma_reqs[] = {
1686 { .name = "tx", .dma_req = 61, },
1687 { .name = "rx", .dma_req = 62, },
1688 { .dma_req = -1 }
1689};
1690
1691static struct omap_hwmod_opt_clk omap34xx_mmc1_opt_clks[] = {
1692 { .role = "dbck", .clk = "omap_32k_fck", },
1693};
1694
1695static struct omap_mmc_dev_attr mmc1_dev_attr = {
1696 .flags = OMAP_HSMMC_SUPPORTS_DUAL_VOLT,
1697};
1698
1699/* See 35xx errata 2.1.1.128 in SPRZ278F */
1700static struct omap_mmc_dev_attr mmc1_pre_es3_dev_attr = {
1701 .flags = (OMAP_HSMMC_SUPPORTS_DUAL_VOLT |
1702 OMAP_HSMMC_BROKEN_MULTIBLOCK_READ),
1703};
1704
1705static struct omap_hwmod omap3xxx_pre_es3_mmc1_hwmod = {
1706 .name = "mmc1",
1707 .mpu_irqs = omap34xx_mmc1_mpu_irqs,
1708 .sdma_reqs = omap34xx_mmc1_sdma_reqs,
1709 .opt_clks = omap34xx_mmc1_opt_clks,
1710 .opt_clks_cnt = ARRAY_SIZE(omap34xx_mmc1_opt_clks),
1711 .main_clk = "mmchs1_fck",
1712 .prcm = {
1713 .omap2 = {
1714 .module_offs = CORE_MOD,
1715 .prcm_reg_id = 1,
1716 .module_bit = OMAP3430_EN_MMC1_SHIFT,
1717 .idlest_reg_id = 1,
1718 .idlest_idle_bit = OMAP3430_ST_MMC1_SHIFT,
1719 },
1720 },
1721 .dev_attr = &mmc1_pre_es3_dev_attr,
1722 .class = &omap34xx_mmc_class,
1723};
1724
1725static struct omap_hwmod omap3xxx_es3plus_mmc1_hwmod = {
1726 .name = "mmc1",
1727 .mpu_irqs = omap34xx_mmc1_mpu_irqs,
1728 .sdma_reqs = omap34xx_mmc1_sdma_reqs,
1729 .opt_clks = omap34xx_mmc1_opt_clks,
1730 .opt_clks_cnt = ARRAY_SIZE(omap34xx_mmc1_opt_clks),
1731 .main_clk = "mmchs1_fck",
1732 .prcm = {
1733 .omap2 = {
1734 .module_offs = CORE_MOD,
1735 .prcm_reg_id = 1,
1736 .module_bit = OMAP3430_EN_MMC1_SHIFT,
1737 .idlest_reg_id = 1,
1738 .idlest_idle_bit = OMAP3430_ST_MMC1_SHIFT,
1739 },
1740 },
1741 .dev_attr = &mmc1_dev_attr,
1742 .class = &omap34xx_mmc_class,
1743};
1744
1745/* MMC/SD/SDIO2 */
1746
1747static struct omap_hwmod_irq_info omap34xx_mmc2_mpu_irqs[] = {
1748 { .irq = INT_24XX_MMC2_IRQ, },
1749 { .irq = -1 }
1750};
1751
1752static struct omap_hwmod_dma_info omap34xx_mmc2_sdma_reqs[] = {
1753 { .name = "tx", .dma_req = 47, },
1754 { .name = "rx", .dma_req = 48, },
1755 { .dma_req = -1 }
1756};
1757
1758static struct omap_hwmod_opt_clk omap34xx_mmc2_opt_clks[] = {
1759 { .role = "dbck", .clk = "omap_32k_fck", },
1760};
1761
1762/* See 35xx errata 2.1.1.128 in SPRZ278F */
1763static struct omap_mmc_dev_attr mmc2_pre_es3_dev_attr = {
1764 .flags = OMAP_HSMMC_BROKEN_MULTIBLOCK_READ,
1765};
1766
1767static struct omap_hwmod omap3xxx_pre_es3_mmc2_hwmod = {
1768 .name = "mmc2",
1769 .mpu_irqs = omap34xx_mmc2_mpu_irqs,
1770 .sdma_reqs = omap34xx_mmc2_sdma_reqs,
1771 .opt_clks = omap34xx_mmc2_opt_clks,
1772 .opt_clks_cnt = ARRAY_SIZE(omap34xx_mmc2_opt_clks),
1773 .main_clk = "mmchs2_fck",
1774 .prcm = {
1775 .omap2 = {
1776 .module_offs = CORE_MOD,
1777 .prcm_reg_id = 1,
1778 .module_bit = OMAP3430_EN_MMC2_SHIFT,
1779 .idlest_reg_id = 1,
1780 .idlest_idle_bit = OMAP3430_ST_MMC2_SHIFT,
1781 },
1782 },
1783 .dev_attr = &mmc2_pre_es3_dev_attr,
1784 .class = &omap34xx_mmc_class,
1785};
1786
1787static struct omap_hwmod omap3xxx_es3plus_mmc2_hwmod = {
1788 .name = "mmc2",
1789 .mpu_irqs = omap34xx_mmc2_mpu_irqs,
1790 .sdma_reqs = omap34xx_mmc2_sdma_reqs,
1791 .opt_clks = omap34xx_mmc2_opt_clks,
1792 .opt_clks_cnt = ARRAY_SIZE(omap34xx_mmc2_opt_clks),
1793 .main_clk = "mmchs2_fck",
1794 .prcm = {
1795 .omap2 = {
1796 .module_offs = CORE_MOD,
1797 .prcm_reg_id = 1,
1798 .module_bit = OMAP3430_EN_MMC2_SHIFT,
1799 .idlest_reg_id = 1,
1800 .idlest_idle_bit = OMAP3430_ST_MMC2_SHIFT,
1801 },
1802 },
1803 .class = &omap34xx_mmc_class,
1804};
1805
1806/* MMC/SD/SDIO3 */
1807
1808static struct omap_hwmod_irq_info omap34xx_mmc3_mpu_irqs[] = {
1809 { .irq = 94, },
1810 { .irq = -1 }
1811};
1812
1813static struct omap_hwmod_dma_info omap34xx_mmc3_sdma_reqs[] = {
1814 { .name = "tx", .dma_req = 77, },
1815 { .name = "rx", .dma_req = 78, },
1816 { .dma_req = -1 }
1817};
1818
1819static struct omap_hwmod_opt_clk omap34xx_mmc3_opt_clks[] = {
1820 { .role = "dbck", .clk = "omap_32k_fck", },
1821};
1822
1823static struct omap_hwmod omap3xxx_mmc3_hwmod = {
1824 .name = "mmc3",
1825 .mpu_irqs = omap34xx_mmc3_mpu_irqs,
1826 .sdma_reqs = omap34xx_mmc3_sdma_reqs,
1827 .opt_clks = omap34xx_mmc3_opt_clks,
1828 .opt_clks_cnt = ARRAY_SIZE(omap34xx_mmc3_opt_clks),
1829 .main_clk = "mmchs3_fck",
1830 .prcm = {
1831 .omap2 = {
1832 .prcm_reg_id = 1,
1833 .module_bit = OMAP3430_EN_MMC3_SHIFT,
1834 .idlest_reg_id = 1,
1835 .idlest_idle_bit = OMAP3430_ST_MMC3_SHIFT,
1836 },
1837 },
1838 .class = &omap34xx_mmc_class,
1839};
1840
1841/*
1842 * 'usb_host_hs' class
1843 * high-speed multi-port usb host controller
1844 */
1845
1846static struct omap_hwmod_class_sysconfig omap3xxx_usb_host_hs_sysc = {
1847 .rev_offs = 0x0000,
1848 .sysc_offs = 0x0010,
1849 .syss_offs = 0x0014,
1850 .sysc_flags = (SYSC_HAS_MIDLEMODE | SYSC_HAS_CLOCKACTIVITY |
1851 SYSC_HAS_SIDLEMODE | SYSC_HAS_ENAWAKEUP |
1852 SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE),
1853 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |
1854 MSTANDBY_FORCE | MSTANDBY_NO | MSTANDBY_SMART),
1855 .sysc_fields = &omap_hwmod_sysc_type1,
1856};
1857
1858static struct omap_hwmod_class omap3xxx_usb_host_hs_hwmod_class = {
1859 .name = "usb_host_hs",
1860 .sysc = &omap3xxx_usb_host_hs_sysc,
1861};
1862
1863static struct omap_hwmod_opt_clk omap3xxx_usb_host_hs_opt_clks[] = {
1864 { .role = "ehci_logic_fck", .clk = "usbhost_120m_fck", },
1865};
1866
1867static struct omap_hwmod_irq_info omap3xxx_usb_host_hs_irqs[] = {
1868 { .name = "ohci-irq", .irq = 76 },
1869 { .name = "ehci-irq", .irq = 77 },
1870 { .irq = -1 }
1871};
1872
1873static struct omap_hwmod omap3xxx_usb_host_hs_hwmod = {
1874 .name = "usb_host_hs",
1875 .class = &omap3xxx_usb_host_hs_hwmod_class,
1876 .clkdm_name = "l3_init_clkdm",
1877 .mpu_irqs = omap3xxx_usb_host_hs_irqs,
1878 .main_clk = "usbhost_48m_fck",
1879 .prcm = {
1880 .omap2 = {
1881 .module_offs = OMAP3430ES2_USBHOST_MOD,
1882 .prcm_reg_id = 1,
1883 .module_bit = OMAP3430ES2_EN_USBHOST1_SHIFT,
1884 .idlest_reg_id = 1,
1885 .idlest_idle_bit = OMAP3430ES2_ST_USBHOST_IDLE_SHIFT,
1886 .idlest_stdby_bit = OMAP3430ES2_ST_USBHOST_STDBY_SHIFT,
1887 },
1888 },
1889 .opt_clks = omap3xxx_usb_host_hs_opt_clks,
1890 .opt_clks_cnt = ARRAY_SIZE(omap3xxx_usb_host_hs_opt_clks),
1891
1892 /*
1893 * Errata: USBHOST Configured In Smart-Idle Can Lead To a Deadlock
1894 * id: i660
1895 *
1896 * Description:
1897 * In the following configuration :
1898 * - USBHOST module is set to smart-idle mode
1899 * - PRCM asserts idle_req to the USBHOST module ( This typically
1900 * happens when the system is going to a low power mode : all ports
1901 * have been suspended, the master part of the USBHOST module has
1902 * entered the standby state, and SW has cut the functional clocks)
1903 * - an USBHOST interrupt occurs before the module is able to answer
1904 * idle_ack, typically a remote wakeup IRQ.
1905 * Then the USB HOST module will enter a deadlock situation where it
1906 * is no more accessible nor functional.
1907 *
1908 * Workaround:
1909 * Don't use smart idle; use only force idle, hence HWMOD_SWSUP_SIDLE
1910 */
1911
1912 /*
1913 * Errata: USB host EHCI may stall when entering smart-standby mode
1914 * Id: i571
1915 *
1916 * Description:
1917 * When the USBHOST module is set to smart-standby mode, and when it is
1918 * ready to enter the standby state (i.e. all ports are suspended and
1919 * all attached devices are in suspend mode), then it can wrongly assert
1920 * the Mstandby signal too early while there are still some residual OCP
1921 * transactions ongoing. If this condition occurs, the internal state
1922 * machine may go to an undefined state and the USB link may be stuck
1923 * upon the next resume.
1924 *
1925 * Workaround:
1926 * Don't use smart standby; use only force standby,
1927 * hence HWMOD_SWSUP_MSTANDBY
1928 */
1929
1930 /*
1931 * During system boot; If the hwmod framework resets the module
1932 * the module will have smart idle settings; which can lead to deadlock
1933 * (above Errata Id:i660); so, dont reset the module during boot;
1934 * Use HWMOD_INIT_NO_RESET.
1935 */
1936
1937 .flags = HWMOD_SWSUP_SIDLE | HWMOD_SWSUP_MSTANDBY |
1938 HWMOD_INIT_NO_RESET,
1939};
1940
1941/*
1942 * 'usb_tll_hs' class
1943 * usb_tll_hs module is the adapter on the usb_host_hs ports
1944 */
1945static struct omap_hwmod_class_sysconfig omap3xxx_usb_tll_hs_sysc = {
1946 .rev_offs = 0x0000,
1947 .sysc_offs = 0x0010,
1948 .syss_offs = 0x0014,
1949 .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE |
1950 SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET |
1951 SYSC_HAS_AUTOIDLE),
1952 .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART),
1953 .sysc_fields = &omap_hwmod_sysc_type1,
1954};
1955
1956static struct omap_hwmod_class omap3xxx_usb_tll_hs_hwmod_class = {
1957 .name = "usb_tll_hs",
1958 .sysc = &omap3xxx_usb_tll_hs_sysc,
1959};
1960
1961static struct omap_hwmod_irq_info omap3xxx_usb_tll_hs_irqs[] = {
1962 { .name = "tll-irq", .irq = 78 },
1963 { .irq = -1 }
1964};
1965
1966static struct omap_hwmod omap3xxx_usb_tll_hs_hwmod = {
1967 .name = "usb_tll_hs",
1968 .class = &omap3xxx_usb_tll_hs_hwmod_class,
1969 .clkdm_name = "l3_init_clkdm",
1970 .mpu_irqs = omap3xxx_usb_tll_hs_irqs,
1971 .main_clk = "usbtll_fck",
1972 .prcm = {
1973 .omap2 = {
1974 .module_offs = CORE_MOD,
1975 .prcm_reg_id = 3,
1976 .module_bit = OMAP3430ES2_EN_USBTLL_SHIFT,
1977 .idlest_reg_id = 3,
1978 .idlest_idle_bit = OMAP3430ES2_ST_USBTLL_SHIFT,
1979 },
1980 },
1981};
1982
Paul Walmsley45a4bb02012-05-08 11:34:28 -06001983static struct omap_hwmod omap3xxx_hdq1w_hwmod = {
1984 .name = "hdq1w",
1985 .mpu_irqs = omap2_hdq1w_mpu_irqs,
1986 .main_clk = "hdq_fck",
1987 .prcm = {
1988 .omap2 = {
1989 .module_offs = CORE_MOD,
1990 .prcm_reg_id = 1,
1991 .module_bit = OMAP3430_EN_HDQ_SHIFT,
1992 .idlest_reg_id = 1,
1993 .idlest_idle_bit = OMAP3430_ST_HDQ_SHIFT,
1994 },
1995 },
1996 .class = &omap2_hdq1w_class,
1997};
1998
Paul Walmsley844a3b62012-04-19 04:04:33 -06001999/*
2000 * interfaces
2001 */
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302002
Paul Walmsley73591542010-02-22 22:09:32 -07002003/* L3 -> L4_CORE interface */
Kevin Hilman4a7cf902010-07-26 16:34:32 -06002004static struct omap_hwmod_ocp_if omap3xxx_l3_main__l4_core = {
2005 .master = &omap3xxx_l3_main_hwmod,
Paul Walmsley73591542010-02-22 22:09:32 -07002006 .slave = &omap3xxx_l4_core_hwmod,
2007 .user = OCP_USER_MPU | OCP_USER_SDMA,
2008};
2009
2010/* L3 -> L4_PER interface */
Kevin Hilman4a7cf902010-07-26 16:34:32 -06002011static struct omap_hwmod_ocp_if omap3xxx_l3_main__l4_per = {
2012 .master = &omap3xxx_l3_main_hwmod,
Paul Walmsley73591542010-02-22 22:09:32 -07002013 .slave = &omap3xxx_l4_per_hwmod,
2014 .user = OCP_USER_MPU | OCP_USER_SDMA,
2015};
2016
sricharan4bb194d2011-02-08 22:13:37 +05302017static struct omap_hwmod_addr_space omap3xxx_l3_main_addrs[] = {
2018 {
Paul Walmsley844a3b62012-04-19 04:04:33 -06002019 .pa_start = 0x68000000,
2020 .pa_end = 0x6800ffff,
2021 .flags = ADDR_TYPE_RT,
sricharan4bb194d2011-02-08 22:13:37 +05302022 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002023 { }
sricharan4bb194d2011-02-08 22:13:37 +05302024};
2025
Paul Walmsley73591542010-02-22 22:09:32 -07002026/* MPU -> L3 interface */
Kevin Hilman4a7cf902010-07-26 16:34:32 -06002027static struct omap_hwmod_ocp_if omap3xxx_mpu__l3_main = {
sricharan4bb194d2011-02-08 22:13:37 +05302028 .master = &omap3xxx_mpu_hwmod,
2029 .slave = &omap3xxx_l3_main_hwmod,
2030 .addr = omap3xxx_l3_main_addrs,
Paul Walmsley73591542010-02-22 22:09:32 -07002031 .user = OCP_USER_MPU,
2032};
2033
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002034/* DSS -> l3 */
Paul Walmsleyd69dc642012-04-19 04:03:52 -06002035static struct omap_hwmod_ocp_if omap3430es1_dss__l3 = {
2036 .master = &omap3430es1_dss_core_hwmod,
2037 .slave = &omap3xxx_l3_main_hwmod,
2038 .user = OCP_USER_MPU | OCP_USER_SDMA,
2039};
2040
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002041static struct omap_hwmod_ocp_if omap3xxx_dss__l3 = {
2042 .master = &omap3xxx_dss_core_hwmod,
2043 .slave = &omap3xxx_l3_main_hwmod,
2044 .fw = {
2045 .omap2 = {
2046 .l3_perm_bit = OMAP3_L3_CORE_FW_INIT_ID_DSS,
2047 .flags = OMAP_FIREWALL_L3,
2048 }
2049 },
2050 .user = OCP_USER_MPU | OCP_USER_SDMA,
2051};
2052
Hema HK870ea2b2011-02-17 12:07:18 +05302053/* l3_core -> usbhsotg interface */
2054static struct omap_hwmod_ocp_if omap3xxx_usbhsotg__l3 = {
2055 .master = &omap3xxx_usbhsotg_hwmod,
2056 .slave = &omap3xxx_l3_main_hwmod,
2057 .clk = "core_l3_ick",
2058 .user = OCP_USER_MPU,
2059};
Paul Walmsley73591542010-02-22 22:09:32 -07002060
Hema HK273ff8c2011-02-17 12:07:19 +05302061/* l3_core -> am35xx_usbhsotg interface */
2062static struct omap_hwmod_ocp_if am35xx_usbhsotg__l3 = {
2063 .master = &am35xx_usbhsotg_hwmod,
2064 .slave = &omap3xxx_l3_main_hwmod,
2065 .clk = "core_l3_ick",
2066 .user = OCP_USER_MPU,
2067};
Paul Walmsley73591542010-02-22 22:09:32 -07002068/* L4_CORE -> L4_WKUP interface */
2069static struct omap_hwmod_ocp_if omap3xxx_l4_core__l4_wkup = {
2070 .master = &omap3xxx_l4_core_hwmod,
2071 .slave = &omap3xxx_l4_wkup_hwmod,
2072 .user = OCP_USER_MPU | OCP_USER_SDMA,
2073};
2074
Paul Walmsleyb1636052011-03-01 13:12:56 -08002075/* L4 CORE -> MMC1 interface */
Paul Walmsley4a9efb62012-04-19 04:03:51 -06002076static struct omap_hwmod_ocp_if omap3xxx_l4_core__pre_es3_mmc1 = {
Paul Walmsleyb1636052011-03-01 13:12:56 -08002077 .master = &omap3xxx_l4_core_hwmod,
Paul Walmsley4a9efb62012-04-19 04:03:51 -06002078 .slave = &omap3xxx_pre_es3_mmc1_hwmod,
2079 .clk = "mmchs1_ick",
2080 .addr = omap2430_mmc1_addr_space,
2081 .user = OCP_USER_MPU | OCP_USER_SDMA,
2082 .flags = OMAP_FIREWALL_L4
2083};
2084
2085static struct omap_hwmod_ocp_if omap3xxx_l4_core__es3plus_mmc1 = {
2086 .master = &omap3xxx_l4_core_hwmod,
2087 .slave = &omap3xxx_es3plus_mmc1_hwmod,
Paul Walmsleyb1636052011-03-01 13:12:56 -08002088 .clk = "mmchs1_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002089 .addr = omap2430_mmc1_addr_space,
Paul Walmsleyb1636052011-03-01 13:12:56 -08002090 .user = OCP_USER_MPU | OCP_USER_SDMA,
2091 .flags = OMAP_FIREWALL_L4
2092};
2093
2094/* L4 CORE -> MMC2 interface */
Paul Walmsley4a9efb62012-04-19 04:03:51 -06002095static struct omap_hwmod_ocp_if omap3xxx_l4_core__pre_es3_mmc2 = {
Paul Walmsleyb1636052011-03-01 13:12:56 -08002096 .master = &omap3xxx_l4_core_hwmod,
Paul Walmsley4a9efb62012-04-19 04:03:51 -06002097 .slave = &omap3xxx_pre_es3_mmc2_hwmod,
2098 .clk = "mmchs2_ick",
2099 .addr = omap2430_mmc2_addr_space,
2100 .user = OCP_USER_MPU | OCP_USER_SDMA,
2101 .flags = OMAP_FIREWALL_L4
2102};
2103
2104static struct omap_hwmod_ocp_if omap3xxx_l4_core__es3plus_mmc2 = {
2105 .master = &omap3xxx_l4_core_hwmod,
2106 .slave = &omap3xxx_es3plus_mmc2_hwmod,
Paul Walmsleyb1636052011-03-01 13:12:56 -08002107 .clk = "mmchs2_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002108 .addr = omap2430_mmc2_addr_space,
Paul Walmsleyb1636052011-03-01 13:12:56 -08002109 .user = OCP_USER_MPU | OCP_USER_SDMA,
2110 .flags = OMAP_FIREWALL_L4
2111};
2112
2113/* L4 CORE -> MMC3 interface */
2114static struct omap_hwmod_addr_space omap3xxx_mmc3_addr_space[] = {
2115 {
2116 .pa_start = 0x480ad000,
2117 .pa_end = 0x480ad1ff,
2118 .flags = ADDR_TYPE_RT,
2119 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002120 { }
Paul Walmsleyb1636052011-03-01 13:12:56 -08002121};
2122
2123static struct omap_hwmod_ocp_if omap3xxx_l4_core__mmc3 = {
2124 .master = &omap3xxx_l4_core_hwmod,
2125 .slave = &omap3xxx_mmc3_hwmod,
2126 .clk = "mmchs3_ick",
2127 .addr = omap3xxx_mmc3_addr_space,
Paul Walmsleyb1636052011-03-01 13:12:56 -08002128 .user = OCP_USER_MPU | OCP_USER_SDMA,
2129 .flags = OMAP_FIREWALL_L4
2130};
2131
Kevin Hilman046465b2010-09-27 20:19:30 +05302132/* L4 CORE -> UART1 interface */
2133static struct omap_hwmod_addr_space omap3xxx_uart1_addr_space[] = {
2134 {
2135 .pa_start = OMAP3_UART1_BASE,
2136 .pa_end = OMAP3_UART1_BASE + SZ_8K - 1,
2137 .flags = ADDR_MAP_ON_INIT | ADDR_TYPE_RT,
2138 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002139 { }
Kevin Hilman046465b2010-09-27 20:19:30 +05302140};
2141
2142static struct omap_hwmod_ocp_if omap3_l4_core__uart1 = {
2143 .master = &omap3xxx_l4_core_hwmod,
2144 .slave = &omap3xxx_uart1_hwmod,
2145 .clk = "uart1_ick",
2146 .addr = omap3xxx_uart1_addr_space,
Kevin Hilman046465b2010-09-27 20:19:30 +05302147 .user = OCP_USER_MPU | OCP_USER_SDMA,
2148};
2149
2150/* L4 CORE -> UART2 interface */
2151static struct omap_hwmod_addr_space omap3xxx_uart2_addr_space[] = {
2152 {
2153 .pa_start = OMAP3_UART2_BASE,
2154 .pa_end = OMAP3_UART2_BASE + SZ_1K - 1,
2155 .flags = ADDR_MAP_ON_INIT | ADDR_TYPE_RT,
2156 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002157 { }
Kevin Hilman046465b2010-09-27 20:19:30 +05302158};
2159
2160static struct omap_hwmod_ocp_if omap3_l4_core__uart2 = {
2161 .master = &omap3xxx_l4_core_hwmod,
2162 .slave = &omap3xxx_uart2_hwmod,
2163 .clk = "uart2_ick",
2164 .addr = omap3xxx_uart2_addr_space,
Kevin Hilman046465b2010-09-27 20:19:30 +05302165 .user = OCP_USER_MPU | OCP_USER_SDMA,
2166};
2167
2168/* L4 PER -> UART3 interface */
2169static struct omap_hwmod_addr_space omap3xxx_uart3_addr_space[] = {
2170 {
2171 .pa_start = OMAP3_UART3_BASE,
2172 .pa_end = OMAP3_UART3_BASE + SZ_1K - 1,
2173 .flags = ADDR_MAP_ON_INIT | ADDR_TYPE_RT,
2174 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002175 { }
Kevin Hilman046465b2010-09-27 20:19:30 +05302176};
2177
2178static struct omap_hwmod_ocp_if omap3_l4_per__uart3 = {
2179 .master = &omap3xxx_l4_per_hwmod,
2180 .slave = &omap3xxx_uart3_hwmod,
2181 .clk = "uart3_ick",
2182 .addr = omap3xxx_uart3_addr_space,
Kevin Hilman046465b2010-09-27 20:19:30 +05302183 .user = OCP_USER_MPU | OCP_USER_SDMA,
2184};
2185
2186/* L4 PER -> UART4 interface */
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06002187static struct omap_hwmod_addr_space omap36xx_uart4_addr_space[] = {
Kevin Hilman046465b2010-09-27 20:19:30 +05302188 {
2189 .pa_start = OMAP3_UART4_BASE,
2190 .pa_end = OMAP3_UART4_BASE + SZ_1K - 1,
2191 .flags = ADDR_MAP_ON_INIT | ADDR_TYPE_RT,
2192 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002193 { }
Kevin Hilman046465b2010-09-27 20:19:30 +05302194};
2195
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06002196static struct omap_hwmod_ocp_if omap36xx_l4_per__uart4 = {
Kevin Hilman046465b2010-09-27 20:19:30 +05302197 .master = &omap3xxx_l4_per_hwmod,
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06002198 .slave = &omap36xx_uart4_hwmod,
Kevin Hilman046465b2010-09-27 20:19:30 +05302199 .clk = "uart4_ick",
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06002200 .addr = omap36xx_uart4_addr_space,
Kevin Hilman046465b2010-09-27 20:19:30 +05302201 .user = OCP_USER_MPU | OCP_USER_SDMA,
2202};
2203
Kyle Manna4bf90f62011-10-18 13:47:41 -05002204/* AM35xx: L4 CORE -> UART4 interface */
2205static struct omap_hwmod_addr_space am35xx_uart4_addr_space[] = {
2206 {
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06002207 .pa_start = OMAP3_UART4_AM35XX_BASE,
2208 .pa_end = OMAP3_UART4_AM35XX_BASE + SZ_1K - 1,
2209 .flags = ADDR_MAP_ON_INIT | ADDR_TYPE_RT,
Kyle Manna4bf90f62011-10-18 13:47:41 -05002210 },
2211};
2212
2213static struct omap_hwmod_ocp_if am35xx_l4_core__uart4 = {
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06002214 .master = &omap3xxx_l4_core_hwmod,
2215 .slave = &am35xx_uart4_hwmod,
2216 .clk = "uart4_ick",
2217 .addr = am35xx_uart4_addr_space,
2218 .user = OCP_USER_MPU | OCP_USER_SDMA,
Kyle Manna4bf90f62011-10-18 13:47:41 -05002219};
2220
Rajendra Nayak4fe20e92010-09-21 19:37:13 +05302221/* L4 CORE -> I2C1 interface */
Rajendra Nayak4fe20e92010-09-21 19:37:13 +05302222static struct omap_hwmod_ocp_if omap3_l4_core__i2c1 = {
2223 .master = &omap3xxx_l4_core_hwmod,
2224 .slave = &omap3xxx_i2c1_hwmod,
2225 .clk = "i2c1_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002226 .addr = omap2_i2c1_addr_space,
Rajendra Nayak4fe20e92010-09-21 19:37:13 +05302227 .fw = {
2228 .omap2 = {
2229 .l4_fw_region = OMAP3_L4_CORE_FW_I2C1_REGION,
2230 .l4_prot_group = 7,
2231 .flags = OMAP_FIREWALL_L4,
2232 }
2233 },
2234 .user = OCP_USER_MPU | OCP_USER_SDMA,
2235};
2236
2237/* L4 CORE -> I2C2 interface */
Rajendra Nayak4fe20e92010-09-21 19:37:13 +05302238static struct omap_hwmod_ocp_if omap3_l4_core__i2c2 = {
2239 .master = &omap3xxx_l4_core_hwmod,
2240 .slave = &omap3xxx_i2c2_hwmod,
2241 .clk = "i2c2_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002242 .addr = omap2_i2c2_addr_space,
Rajendra Nayak4fe20e92010-09-21 19:37:13 +05302243 .fw = {
2244 .omap2 = {
2245 .l4_fw_region = OMAP3_L4_CORE_FW_I2C2_REGION,
2246 .l4_prot_group = 7,
2247 .flags = OMAP_FIREWALL_L4,
2248 }
2249 },
2250 .user = OCP_USER_MPU | OCP_USER_SDMA,
2251};
2252
2253/* L4 CORE -> I2C3 interface */
2254static struct omap_hwmod_addr_space omap3xxx_i2c3_addr_space[] = {
2255 {
2256 .pa_start = 0x48060000,
Paul Walmsleyded11382011-07-09 19:14:06 -06002257 .pa_end = 0x48060000 + SZ_128 - 1,
Rajendra Nayak4fe20e92010-09-21 19:37:13 +05302258 .flags = ADDR_TYPE_RT,
2259 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002260 { }
Rajendra Nayak4fe20e92010-09-21 19:37:13 +05302261};
2262
2263static struct omap_hwmod_ocp_if omap3_l4_core__i2c3 = {
2264 .master = &omap3xxx_l4_core_hwmod,
2265 .slave = &omap3xxx_i2c3_hwmod,
2266 .clk = "i2c3_ick",
2267 .addr = omap3xxx_i2c3_addr_space,
Rajendra Nayak4fe20e92010-09-21 19:37:13 +05302268 .fw = {
2269 .omap2 = {
2270 .l4_fw_region = OMAP3_L4_CORE_FW_I2C3_REGION,
2271 .l4_prot_group = 7,
2272 .flags = OMAP_FIREWALL_L4,
2273 }
2274 },
2275 .user = OCP_USER_MPU | OCP_USER_SDMA,
2276};
2277
Thara Gopinathd3442722010-05-29 22:02:24 +05302278/* L4 CORE -> SR1 interface */
2279static struct omap_hwmod_addr_space omap3_sr1_addr_space[] = {
2280 {
2281 .pa_start = OMAP34XX_SR1_BASE,
2282 .pa_end = OMAP34XX_SR1_BASE + SZ_1K - 1,
2283 .flags = ADDR_TYPE_RT,
2284 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002285 { }
Thara Gopinathd3442722010-05-29 22:02:24 +05302286};
2287
Paul Walmsley844a3b62012-04-19 04:04:33 -06002288static struct omap_hwmod_ocp_if omap34xx_l4_core__sr1 = {
Thara Gopinathd3442722010-05-29 22:02:24 +05302289 .master = &omap3xxx_l4_core_hwmod,
2290 .slave = &omap34xx_sr1_hwmod,
2291 .clk = "sr_l4_ick",
2292 .addr = omap3_sr1_addr_space,
Thara Gopinathd3442722010-05-29 22:02:24 +05302293 .user = OCP_USER_MPU,
2294};
2295
Paul Walmsley844a3b62012-04-19 04:04:33 -06002296static struct omap_hwmod_ocp_if omap36xx_l4_core__sr1 = {
2297 .master = &omap3xxx_l4_core_hwmod,
2298 .slave = &omap36xx_sr1_hwmod,
2299 .clk = "sr_l4_ick",
2300 .addr = omap3_sr1_addr_space,
2301 .user = OCP_USER_MPU,
2302};
2303
Thara Gopinathd3442722010-05-29 22:02:24 +05302304/* L4 CORE -> SR1 interface */
2305static struct omap_hwmod_addr_space omap3_sr2_addr_space[] = {
2306 {
2307 .pa_start = OMAP34XX_SR2_BASE,
2308 .pa_end = OMAP34XX_SR2_BASE + SZ_1K - 1,
2309 .flags = ADDR_TYPE_RT,
2310 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002311 { }
Thara Gopinathd3442722010-05-29 22:02:24 +05302312};
2313
Paul Walmsley844a3b62012-04-19 04:04:33 -06002314static struct omap_hwmod_ocp_if omap34xx_l4_core__sr2 = {
Thara Gopinathd3442722010-05-29 22:02:24 +05302315 .master = &omap3xxx_l4_core_hwmod,
2316 .slave = &omap34xx_sr2_hwmod,
2317 .clk = "sr_l4_ick",
2318 .addr = omap3_sr2_addr_space,
Thara Gopinathd3442722010-05-29 22:02:24 +05302319 .user = OCP_USER_MPU,
2320};
2321
Paul Walmsley844a3b62012-04-19 04:04:33 -06002322static struct omap_hwmod_ocp_if omap36xx_l4_core__sr2 = {
2323 .master = &omap3xxx_l4_core_hwmod,
2324 .slave = &omap36xx_sr2_hwmod,
2325 .clk = "sr_l4_ick",
2326 .addr = omap3_sr2_addr_space,
2327 .user = OCP_USER_MPU,
2328};
Hema HK870ea2b2011-02-17 12:07:18 +05302329
2330static struct omap_hwmod_addr_space omap3xxx_usbhsotg_addrs[] = {
2331 {
2332 .pa_start = OMAP34XX_HSUSB_OTG_BASE,
2333 .pa_end = OMAP34XX_HSUSB_OTG_BASE + SZ_4K - 1,
2334 .flags = ADDR_TYPE_RT
2335 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002336 { }
Hema HK870ea2b2011-02-17 12:07:18 +05302337};
2338
2339/* l4_core -> usbhsotg */
2340static struct omap_hwmod_ocp_if omap3xxx_l4_core__usbhsotg = {
2341 .master = &omap3xxx_l4_core_hwmod,
2342 .slave = &omap3xxx_usbhsotg_hwmod,
2343 .clk = "l4_ick",
2344 .addr = omap3xxx_usbhsotg_addrs,
Hema HK870ea2b2011-02-17 12:07:18 +05302345 .user = OCP_USER_MPU,
2346};
2347
Hema HK273ff8c2011-02-17 12:07:19 +05302348static struct omap_hwmod_addr_space am35xx_usbhsotg_addrs[] = {
2349 {
2350 .pa_start = AM35XX_IPSS_USBOTGSS_BASE,
2351 .pa_end = AM35XX_IPSS_USBOTGSS_BASE + SZ_4K - 1,
2352 .flags = ADDR_TYPE_RT
2353 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002354 { }
Hema HK273ff8c2011-02-17 12:07:19 +05302355};
2356
2357/* l4_core -> usbhsotg */
2358static struct omap_hwmod_ocp_if am35xx_l4_core__usbhsotg = {
2359 .master = &omap3xxx_l4_core_hwmod,
2360 .slave = &am35xx_usbhsotg_hwmod,
2361 .clk = "l4_ick",
2362 .addr = am35xx_usbhsotg_addrs,
Hema HK273ff8c2011-02-17 12:07:19 +05302363 .user = OCP_USER_MPU,
2364};
2365
Paul Walmsley43085702012-04-19 04:03:53 -06002366/* L4_WKUP -> L4_SEC interface */
2367static struct omap_hwmod_ocp_if omap3xxx_l4_wkup__l4_sec = {
2368 .master = &omap3xxx_l4_wkup_hwmod,
2369 .slave = &omap3xxx_l4_sec_hwmod,
2370 .user = OCP_USER_MPU | OCP_USER_SDMA,
2371};
2372
Kevin Hilman540064b2010-07-26 16:34:32 -06002373/* IVA2 <- L3 interface */
2374static struct omap_hwmod_ocp_if omap3xxx_l3__iva = {
2375 .master = &omap3xxx_l3_main_hwmod,
2376 .slave = &omap3xxx_iva_hwmod,
Paul Walmsley064931a2012-04-19 04:04:35 -06002377 .clk = "core_l3_ick",
Kevin Hilman540064b2010-07-26 16:34:32 -06002378 .user = OCP_USER_MPU | OCP_USER_SDMA,
2379};
2380
Thara Gopinathce722d22011-02-23 00:14:05 -07002381static struct omap_hwmod_addr_space omap3xxx_timer1_addrs[] = {
2382 {
2383 .pa_start = 0x48318000,
2384 .pa_end = 0x48318000 + SZ_1K - 1,
2385 .flags = ADDR_TYPE_RT
2386 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002387 { }
Thara Gopinathce722d22011-02-23 00:14:05 -07002388};
2389
2390/* l4_wkup -> timer1 */
2391static struct omap_hwmod_ocp_if omap3xxx_l4_wkup__timer1 = {
2392 .master = &omap3xxx_l4_wkup_hwmod,
2393 .slave = &omap3xxx_timer1_hwmod,
2394 .clk = "gpt1_ick",
2395 .addr = omap3xxx_timer1_addrs,
Thara Gopinathce722d22011-02-23 00:14:05 -07002396 .user = OCP_USER_MPU | OCP_USER_SDMA,
2397};
2398
Thara Gopinathce722d22011-02-23 00:14:05 -07002399static struct omap_hwmod_addr_space omap3xxx_timer2_addrs[] = {
2400 {
2401 .pa_start = 0x49032000,
2402 .pa_end = 0x49032000 + SZ_1K - 1,
2403 .flags = ADDR_TYPE_RT
2404 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002405 { }
Thara Gopinathce722d22011-02-23 00:14:05 -07002406};
2407
2408/* l4_per -> timer2 */
2409static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer2 = {
2410 .master = &omap3xxx_l4_per_hwmod,
2411 .slave = &omap3xxx_timer2_hwmod,
2412 .clk = "gpt2_ick",
2413 .addr = omap3xxx_timer2_addrs,
Thara Gopinathce722d22011-02-23 00:14:05 -07002414 .user = OCP_USER_MPU | OCP_USER_SDMA,
2415};
2416
Thara Gopinathce722d22011-02-23 00:14:05 -07002417static struct omap_hwmod_addr_space omap3xxx_timer3_addrs[] = {
2418 {
2419 .pa_start = 0x49034000,
2420 .pa_end = 0x49034000 + SZ_1K - 1,
2421 .flags = ADDR_TYPE_RT
2422 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002423 { }
Thara Gopinathce722d22011-02-23 00:14:05 -07002424};
2425
2426/* l4_per -> timer3 */
2427static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer3 = {
2428 .master = &omap3xxx_l4_per_hwmod,
2429 .slave = &omap3xxx_timer3_hwmod,
2430 .clk = "gpt3_ick",
2431 .addr = omap3xxx_timer3_addrs,
Thara Gopinathce722d22011-02-23 00:14:05 -07002432 .user = OCP_USER_MPU | OCP_USER_SDMA,
2433};
2434
Thara Gopinathce722d22011-02-23 00:14:05 -07002435static struct omap_hwmod_addr_space omap3xxx_timer4_addrs[] = {
2436 {
2437 .pa_start = 0x49036000,
2438 .pa_end = 0x49036000 + SZ_1K - 1,
2439 .flags = ADDR_TYPE_RT
2440 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002441 { }
Thara Gopinathce722d22011-02-23 00:14:05 -07002442};
2443
2444/* l4_per -> timer4 */
2445static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer4 = {
2446 .master = &omap3xxx_l4_per_hwmod,
2447 .slave = &omap3xxx_timer4_hwmod,
2448 .clk = "gpt4_ick",
2449 .addr = omap3xxx_timer4_addrs,
Thara Gopinathce722d22011-02-23 00:14:05 -07002450 .user = OCP_USER_MPU | OCP_USER_SDMA,
2451};
2452
Thara Gopinathce722d22011-02-23 00:14:05 -07002453static struct omap_hwmod_addr_space omap3xxx_timer5_addrs[] = {
2454 {
2455 .pa_start = 0x49038000,
2456 .pa_end = 0x49038000 + SZ_1K - 1,
2457 .flags = ADDR_TYPE_RT
2458 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002459 { }
Thara Gopinathce722d22011-02-23 00:14:05 -07002460};
2461
2462/* l4_per -> timer5 */
2463static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer5 = {
2464 .master = &omap3xxx_l4_per_hwmod,
2465 .slave = &omap3xxx_timer5_hwmod,
2466 .clk = "gpt5_ick",
2467 .addr = omap3xxx_timer5_addrs,
Thara Gopinathce722d22011-02-23 00:14:05 -07002468 .user = OCP_USER_MPU | OCP_USER_SDMA,
2469};
2470
Thara Gopinathce722d22011-02-23 00:14:05 -07002471static struct omap_hwmod_addr_space omap3xxx_timer6_addrs[] = {
2472 {
2473 .pa_start = 0x4903A000,
2474 .pa_end = 0x4903A000 + SZ_1K - 1,
2475 .flags = ADDR_TYPE_RT
2476 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002477 { }
Thara Gopinathce722d22011-02-23 00:14:05 -07002478};
2479
2480/* l4_per -> timer6 */
2481static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer6 = {
2482 .master = &omap3xxx_l4_per_hwmod,
2483 .slave = &omap3xxx_timer6_hwmod,
2484 .clk = "gpt6_ick",
2485 .addr = omap3xxx_timer6_addrs,
Thara Gopinathce722d22011-02-23 00:14:05 -07002486 .user = OCP_USER_MPU | OCP_USER_SDMA,
2487};
2488
Thara Gopinathce722d22011-02-23 00:14:05 -07002489static struct omap_hwmod_addr_space omap3xxx_timer7_addrs[] = {
2490 {
2491 .pa_start = 0x4903C000,
2492 .pa_end = 0x4903C000 + SZ_1K - 1,
2493 .flags = ADDR_TYPE_RT
2494 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002495 { }
Thara Gopinathce722d22011-02-23 00:14:05 -07002496};
2497
2498/* l4_per -> timer7 */
2499static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer7 = {
2500 .master = &omap3xxx_l4_per_hwmod,
2501 .slave = &omap3xxx_timer7_hwmod,
2502 .clk = "gpt7_ick",
2503 .addr = omap3xxx_timer7_addrs,
Thara Gopinathce722d22011-02-23 00:14:05 -07002504 .user = OCP_USER_MPU | OCP_USER_SDMA,
2505};
2506
Thara Gopinathce722d22011-02-23 00:14:05 -07002507static struct omap_hwmod_addr_space omap3xxx_timer8_addrs[] = {
2508 {
2509 .pa_start = 0x4903E000,
2510 .pa_end = 0x4903E000 + SZ_1K - 1,
2511 .flags = ADDR_TYPE_RT
2512 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002513 { }
Thara Gopinathce722d22011-02-23 00:14:05 -07002514};
2515
2516/* l4_per -> timer8 */
2517static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer8 = {
2518 .master = &omap3xxx_l4_per_hwmod,
2519 .slave = &omap3xxx_timer8_hwmod,
2520 .clk = "gpt8_ick",
2521 .addr = omap3xxx_timer8_addrs,
Thara Gopinathce722d22011-02-23 00:14:05 -07002522 .user = OCP_USER_MPU | OCP_USER_SDMA,
2523};
2524
Thara Gopinathce722d22011-02-23 00:14:05 -07002525static struct omap_hwmod_addr_space omap3xxx_timer9_addrs[] = {
2526 {
2527 .pa_start = 0x49040000,
2528 .pa_end = 0x49040000 + SZ_1K - 1,
2529 .flags = ADDR_TYPE_RT
2530 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002531 { }
Thara Gopinathce722d22011-02-23 00:14:05 -07002532};
2533
2534/* l4_per -> timer9 */
2535static struct omap_hwmod_ocp_if omap3xxx_l4_per__timer9 = {
2536 .master = &omap3xxx_l4_per_hwmod,
2537 .slave = &omap3xxx_timer9_hwmod,
2538 .clk = "gpt9_ick",
2539 .addr = omap3xxx_timer9_addrs,
Thara Gopinathce722d22011-02-23 00:14:05 -07002540 .user = OCP_USER_MPU | OCP_USER_SDMA,
2541};
2542
Thara Gopinathce722d22011-02-23 00:14:05 -07002543/* l4_core -> timer10 */
2544static struct omap_hwmod_ocp_if omap3xxx_l4_core__timer10 = {
2545 .master = &omap3xxx_l4_core_hwmod,
2546 .slave = &omap3xxx_timer10_hwmod,
2547 .clk = "gpt10_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002548 .addr = omap2_timer10_addrs,
Thara Gopinathce722d22011-02-23 00:14:05 -07002549 .user = OCP_USER_MPU | OCP_USER_SDMA,
2550};
2551
Thara Gopinathce722d22011-02-23 00:14:05 -07002552/* l4_core -> timer11 */
2553static struct omap_hwmod_ocp_if omap3xxx_l4_core__timer11 = {
2554 .master = &omap3xxx_l4_core_hwmod,
2555 .slave = &omap3xxx_timer11_hwmod,
2556 .clk = "gpt11_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002557 .addr = omap2_timer11_addrs,
Thara Gopinathce722d22011-02-23 00:14:05 -07002558 .user = OCP_USER_MPU | OCP_USER_SDMA,
2559};
2560
Thara Gopinathce722d22011-02-23 00:14:05 -07002561static struct omap_hwmod_addr_space omap3xxx_timer12_addrs[] = {
2562 {
2563 .pa_start = 0x48304000,
2564 .pa_end = 0x48304000 + SZ_1K - 1,
2565 .flags = ADDR_TYPE_RT
2566 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002567 { }
Thara Gopinathce722d22011-02-23 00:14:05 -07002568};
2569
2570/* l4_core -> timer12 */
Paul Walmsley43085702012-04-19 04:03:53 -06002571static struct omap_hwmod_ocp_if omap3xxx_l4_sec__timer12 = {
2572 .master = &omap3xxx_l4_sec_hwmod,
Thara Gopinathce722d22011-02-23 00:14:05 -07002573 .slave = &omap3xxx_timer12_hwmod,
2574 .clk = "gpt12_ick",
2575 .addr = omap3xxx_timer12_addrs,
Thara Gopinathce722d22011-02-23 00:14:05 -07002576 .user = OCP_USER_MPU | OCP_USER_SDMA,
2577};
2578
Varadarajan, Charulatha6b667f82010-09-23 20:02:38 +05302579/* l4_wkup -> wd_timer2 */
2580static struct omap_hwmod_addr_space omap3xxx_wd_timer2_addrs[] = {
2581 {
2582 .pa_start = 0x48314000,
2583 .pa_end = 0x4831407f,
2584 .flags = ADDR_TYPE_RT
2585 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002586 { }
Varadarajan, Charulatha6b667f82010-09-23 20:02:38 +05302587};
2588
2589static struct omap_hwmod_ocp_if omap3xxx_l4_wkup__wd_timer2 = {
2590 .master = &omap3xxx_l4_wkup_hwmod,
2591 .slave = &omap3xxx_wd_timer2_hwmod,
2592 .clk = "wdt2_ick",
2593 .addr = omap3xxx_wd_timer2_addrs,
Varadarajan, Charulatha6b667f82010-09-23 20:02:38 +05302594 .user = OCP_USER_MPU | OCP_USER_SDMA,
2595};
2596
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002597/* l4_core -> dss */
2598static struct omap_hwmod_ocp_if omap3430es1_l4_core__dss = {
2599 .master = &omap3xxx_l4_core_hwmod,
2600 .slave = &omap3430es1_dss_core_hwmod,
2601 .clk = "dss_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002602 .addr = omap2_dss_addrs,
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002603 .fw = {
2604 .omap2 = {
2605 .l4_fw_region = OMAP3ES1_L4_CORE_FW_DSS_CORE_REGION,
2606 .l4_prot_group = OMAP3_L4_CORE_FW_DSS_PROT_GROUP,
2607 .flags = OMAP_FIREWALL_L4,
2608 }
2609 },
2610 .user = OCP_USER_MPU | OCP_USER_SDMA,
2611};
2612
2613static struct omap_hwmod_ocp_if omap3xxx_l4_core__dss = {
2614 .master = &omap3xxx_l4_core_hwmod,
2615 .slave = &omap3xxx_dss_core_hwmod,
2616 .clk = "dss_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002617 .addr = omap2_dss_addrs,
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002618 .fw = {
2619 .omap2 = {
2620 .l4_fw_region = OMAP3_L4_CORE_FW_DSS_CORE_REGION,
2621 .l4_prot_group = OMAP3_L4_CORE_FW_DSS_PROT_GROUP,
2622 .flags = OMAP_FIREWALL_L4,
2623 }
2624 },
2625 .user = OCP_USER_MPU | OCP_USER_SDMA,
2626};
2627
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002628/* l4_core -> dss_dispc */
2629static struct omap_hwmod_ocp_if omap3xxx_l4_core__dss_dispc = {
2630 .master = &omap3xxx_l4_core_hwmod,
2631 .slave = &omap3xxx_dss_dispc_hwmod,
2632 .clk = "dss_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002633 .addr = omap2_dss_dispc_addrs,
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002634 .fw = {
2635 .omap2 = {
2636 .l4_fw_region = OMAP3_L4_CORE_FW_DSS_DISPC_REGION,
2637 .l4_prot_group = OMAP3_L4_CORE_FW_DSS_PROT_GROUP,
2638 .flags = OMAP_FIREWALL_L4,
2639 }
2640 },
2641 .user = OCP_USER_MPU | OCP_USER_SDMA,
2642};
2643
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002644static struct omap_hwmod_addr_space omap3xxx_dss_dsi1_addrs[] = {
2645 {
2646 .pa_start = 0x4804FC00,
2647 .pa_end = 0x4804FFFF,
2648 .flags = ADDR_TYPE_RT
2649 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002650 { }
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002651};
2652
2653/* l4_core -> dss_dsi1 */
2654static struct omap_hwmod_ocp_if omap3xxx_l4_core__dss_dsi1 = {
2655 .master = &omap3xxx_l4_core_hwmod,
2656 .slave = &omap3xxx_dss_dsi1_hwmod,
Tomi Valkeinen6c3d7e32011-11-08 03:16:10 -07002657 .clk = "dss_ick",
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002658 .addr = omap3xxx_dss_dsi1_addrs,
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002659 .fw = {
2660 .omap2 = {
2661 .l4_fw_region = OMAP3_L4_CORE_FW_DSS_DSI_REGION,
2662 .l4_prot_group = OMAP3_L4_CORE_FW_DSS_PROT_GROUP,
2663 .flags = OMAP_FIREWALL_L4,
2664 }
2665 },
2666 .user = OCP_USER_MPU | OCP_USER_SDMA,
2667};
2668
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002669/* l4_core -> dss_rfbi */
2670static struct omap_hwmod_ocp_if omap3xxx_l4_core__dss_rfbi = {
2671 .master = &omap3xxx_l4_core_hwmod,
2672 .slave = &omap3xxx_dss_rfbi_hwmod,
2673 .clk = "dss_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002674 .addr = omap2_dss_rfbi_addrs,
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002675 .fw = {
2676 .omap2 = {
2677 .l4_fw_region = OMAP3_L4_CORE_FW_DSS_RFBI_REGION,
2678 .l4_prot_group = OMAP3_L4_CORE_FW_DSS_PROT_GROUP ,
2679 .flags = OMAP_FIREWALL_L4,
2680 }
2681 },
2682 .user = OCP_USER_MPU | OCP_USER_SDMA,
2683};
2684
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002685/* l4_core -> dss_venc */
2686static struct omap_hwmod_ocp_if omap3xxx_l4_core__dss_venc = {
2687 .master = &omap3xxx_l4_core_hwmod,
2688 .slave = &omap3xxx_dss_venc_hwmod,
Tomi Valkeinen6c3d7e32011-11-08 03:16:10 -07002689 .clk = "dss_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002690 .addr = omap2_dss_venc_addrs,
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002691 .fw = {
2692 .omap2 = {
2693 .l4_fw_region = OMAP3_L4_CORE_FW_DSS_VENC_REGION,
2694 .l4_prot_group = OMAP3_L4_CORE_FW_DSS_PROT_GROUP,
2695 .flags = OMAP_FIREWALL_L4,
2696 }
2697 },
Paul Walmsley844a3b62012-04-19 04:04:33 -06002698 .flags = OCPIF_SWSUP_IDLE,
Senthilvadivu Guruswamye04d9e12011-01-24 06:21:51 +00002699 .user = OCP_USER_MPU | OCP_USER_SDMA,
2700};
2701
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002702/* l4_wkup -> gpio1 */
2703static struct omap_hwmod_addr_space omap3xxx_gpio1_addrs[] = {
2704 {
2705 .pa_start = 0x48310000,
2706 .pa_end = 0x483101ff,
2707 .flags = ADDR_TYPE_RT
2708 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002709 { }
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002710};
2711
2712static struct omap_hwmod_ocp_if omap3xxx_l4_wkup__gpio1 = {
2713 .master = &omap3xxx_l4_wkup_hwmod,
2714 .slave = &omap3xxx_gpio1_hwmod,
2715 .addr = omap3xxx_gpio1_addrs,
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002716 .user = OCP_USER_MPU | OCP_USER_SDMA,
2717};
2718
2719/* l4_per -> gpio2 */
2720static struct omap_hwmod_addr_space omap3xxx_gpio2_addrs[] = {
2721 {
2722 .pa_start = 0x49050000,
2723 .pa_end = 0x490501ff,
2724 .flags = ADDR_TYPE_RT
2725 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002726 { }
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002727};
2728
2729static struct omap_hwmod_ocp_if omap3xxx_l4_per__gpio2 = {
2730 .master = &omap3xxx_l4_per_hwmod,
2731 .slave = &omap3xxx_gpio2_hwmod,
2732 .addr = omap3xxx_gpio2_addrs,
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002733 .user = OCP_USER_MPU | OCP_USER_SDMA,
2734};
2735
2736/* l4_per -> gpio3 */
2737static struct omap_hwmod_addr_space omap3xxx_gpio3_addrs[] = {
2738 {
2739 .pa_start = 0x49052000,
2740 .pa_end = 0x490521ff,
2741 .flags = ADDR_TYPE_RT
2742 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002743 { }
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002744};
2745
2746static struct omap_hwmod_ocp_if omap3xxx_l4_per__gpio3 = {
2747 .master = &omap3xxx_l4_per_hwmod,
2748 .slave = &omap3xxx_gpio3_hwmod,
2749 .addr = omap3xxx_gpio3_addrs,
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002750 .user = OCP_USER_MPU | OCP_USER_SDMA,
2751};
2752
2753/* l4_per -> gpio4 */
2754static struct omap_hwmod_addr_space omap3xxx_gpio4_addrs[] = {
2755 {
2756 .pa_start = 0x49054000,
2757 .pa_end = 0x490541ff,
2758 .flags = ADDR_TYPE_RT
2759 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002760 { }
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002761};
2762
2763static struct omap_hwmod_ocp_if omap3xxx_l4_per__gpio4 = {
2764 .master = &omap3xxx_l4_per_hwmod,
2765 .slave = &omap3xxx_gpio4_hwmod,
2766 .addr = omap3xxx_gpio4_addrs,
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002767 .user = OCP_USER_MPU | OCP_USER_SDMA,
2768};
2769
2770/* l4_per -> gpio5 */
2771static struct omap_hwmod_addr_space omap3xxx_gpio5_addrs[] = {
2772 {
2773 .pa_start = 0x49056000,
2774 .pa_end = 0x490561ff,
2775 .flags = ADDR_TYPE_RT
2776 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002777 { }
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002778};
2779
2780static struct omap_hwmod_ocp_if omap3xxx_l4_per__gpio5 = {
2781 .master = &omap3xxx_l4_per_hwmod,
2782 .slave = &omap3xxx_gpio5_hwmod,
2783 .addr = omap3xxx_gpio5_addrs,
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002784 .user = OCP_USER_MPU | OCP_USER_SDMA,
2785};
2786
2787/* l4_per -> gpio6 */
2788static struct omap_hwmod_addr_space omap3xxx_gpio6_addrs[] = {
2789 {
2790 .pa_start = 0x49058000,
2791 .pa_end = 0x490581ff,
2792 .flags = ADDR_TYPE_RT
2793 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002794 { }
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002795};
2796
2797static struct omap_hwmod_ocp_if omap3xxx_l4_per__gpio6 = {
2798 .master = &omap3xxx_l4_per_hwmod,
2799 .slave = &omap3xxx_gpio6_hwmod,
2800 .addr = omap3xxx_gpio6_addrs,
Varadarajan, Charulatha70034d32010-12-07 16:26:57 -08002801 .user = OCP_USER_MPU | OCP_USER_SDMA,
2802};
2803
G, Manjunath Kondaiah01438ab2010-12-20 18:27:19 -08002804/* dma_system -> L3 */
2805static struct omap_hwmod_ocp_if omap3xxx_dma_system__l3 = {
2806 .master = &omap3xxx_dma_system_hwmod,
2807 .slave = &omap3xxx_l3_main_hwmod,
2808 .clk = "core_l3_ick",
2809 .user = OCP_USER_MPU | OCP_USER_SDMA,
2810};
2811
G, Manjunath Kondaiah01438ab2010-12-20 18:27:19 -08002812static struct omap_hwmod_addr_space omap3xxx_dma_system_addrs[] = {
2813 {
2814 .pa_start = 0x48056000,
Benoit Cousson1286eeb2011-04-19 10:15:36 -06002815 .pa_end = 0x48056fff,
G, Manjunath Kondaiah01438ab2010-12-20 18:27:19 -08002816 .flags = ADDR_TYPE_RT
2817 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002818 { }
G, Manjunath Kondaiah01438ab2010-12-20 18:27:19 -08002819};
2820
G, Manjunath Kondaiah01438ab2010-12-20 18:27:19 -08002821/* l4_cfg -> dma_system */
2822static struct omap_hwmod_ocp_if omap3xxx_l4_core__dma_system = {
2823 .master = &omap3xxx_l4_core_hwmod,
2824 .slave = &omap3xxx_dma_system_hwmod,
2825 .clk = "core_l4_ick",
2826 .addr = omap3xxx_dma_system_addrs,
G, Manjunath Kondaiah01438ab2010-12-20 18:27:19 -08002827 .user = OCP_USER_MPU | OCP_USER_SDMA,
2828};
2829
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302830static struct omap_hwmod_addr_space omap3xxx_mcbsp1_addrs[] = {
2831 {
2832 .name = "mpu",
2833 .pa_start = 0x48074000,
2834 .pa_end = 0x480740ff,
2835 .flags = ADDR_TYPE_RT
2836 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002837 { }
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302838};
2839
2840/* l4_core -> mcbsp1 */
2841static struct omap_hwmod_ocp_if omap3xxx_l4_core__mcbsp1 = {
2842 .master = &omap3xxx_l4_core_hwmod,
2843 .slave = &omap3xxx_mcbsp1_hwmod,
2844 .clk = "mcbsp1_ick",
2845 .addr = omap3xxx_mcbsp1_addrs,
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302846 .user = OCP_USER_MPU | OCP_USER_SDMA,
2847};
2848
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302849static struct omap_hwmod_addr_space omap3xxx_mcbsp2_addrs[] = {
2850 {
2851 .name = "mpu",
2852 .pa_start = 0x49022000,
2853 .pa_end = 0x490220ff,
2854 .flags = ADDR_TYPE_RT
2855 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002856 { }
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302857};
2858
2859/* l4_per -> mcbsp2 */
2860static struct omap_hwmod_ocp_if omap3xxx_l4_per__mcbsp2 = {
2861 .master = &omap3xxx_l4_per_hwmod,
2862 .slave = &omap3xxx_mcbsp2_hwmod,
2863 .clk = "mcbsp2_ick",
2864 .addr = omap3xxx_mcbsp2_addrs,
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302865 .user = OCP_USER_MPU | OCP_USER_SDMA,
2866};
2867
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302868static struct omap_hwmod_addr_space omap3xxx_mcbsp3_addrs[] = {
2869 {
2870 .name = "mpu",
2871 .pa_start = 0x49024000,
2872 .pa_end = 0x490240ff,
2873 .flags = ADDR_TYPE_RT
2874 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002875 { }
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302876};
2877
2878/* l4_per -> mcbsp3 */
2879static struct omap_hwmod_ocp_if omap3xxx_l4_per__mcbsp3 = {
2880 .master = &omap3xxx_l4_per_hwmod,
2881 .slave = &omap3xxx_mcbsp3_hwmod,
2882 .clk = "mcbsp3_ick",
2883 .addr = omap3xxx_mcbsp3_addrs,
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302884 .user = OCP_USER_MPU | OCP_USER_SDMA,
2885};
2886
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302887static struct omap_hwmod_addr_space omap3xxx_mcbsp4_addrs[] = {
2888 {
2889 .name = "mpu",
2890 .pa_start = 0x49026000,
2891 .pa_end = 0x490260ff,
2892 .flags = ADDR_TYPE_RT
2893 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002894 { }
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302895};
2896
2897/* l4_per -> mcbsp4 */
2898static struct omap_hwmod_ocp_if omap3xxx_l4_per__mcbsp4 = {
2899 .master = &omap3xxx_l4_per_hwmod,
2900 .slave = &omap3xxx_mcbsp4_hwmod,
2901 .clk = "mcbsp4_ick",
2902 .addr = omap3xxx_mcbsp4_addrs,
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302903 .user = OCP_USER_MPU | OCP_USER_SDMA,
2904};
2905
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302906static struct omap_hwmod_addr_space omap3xxx_mcbsp5_addrs[] = {
2907 {
2908 .name = "mpu",
2909 .pa_start = 0x48096000,
2910 .pa_end = 0x480960ff,
2911 .flags = ADDR_TYPE_RT
2912 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002913 { }
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302914};
2915
2916/* l4_core -> mcbsp5 */
2917static struct omap_hwmod_ocp_if omap3xxx_l4_core__mcbsp5 = {
2918 .master = &omap3xxx_l4_core_hwmod,
2919 .slave = &omap3xxx_mcbsp5_hwmod,
2920 .clk = "mcbsp5_ick",
2921 .addr = omap3xxx_mcbsp5_addrs,
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302922 .user = OCP_USER_MPU | OCP_USER_SDMA,
2923};
2924
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302925static struct omap_hwmod_addr_space omap3xxx_mcbsp2_sidetone_addrs[] = {
2926 {
2927 .name = "sidetone",
2928 .pa_start = 0x49028000,
2929 .pa_end = 0x490280ff,
2930 .flags = ADDR_TYPE_RT
2931 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002932 { }
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302933};
2934
2935/* l4_per -> mcbsp2_sidetone */
2936static struct omap_hwmod_ocp_if omap3xxx_l4_per__mcbsp2_sidetone = {
2937 .master = &omap3xxx_l4_per_hwmod,
2938 .slave = &omap3xxx_mcbsp2_sidetone_hwmod,
2939 .clk = "mcbsp2_ick",
2940 .addr = omap3xxx_mcbsp2_sidetone_addrs,
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302941 .user = OCP_USER_MPU,
2942};
2943
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302944static struct omap_hwmod_addr_space omap3xxx_mcbsp3_sidetone_addrs[] = {
2945 {
2946 .name = "sidetone",
2947 .pa_start = 0x4902A000,
2948 .pa_end = 0x4902A0ff,
2949 .flags = ADDR_TYPE_RT
2950 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002951 { }
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302952};
2953
2954/* l4_per -> mcbsp3_sidetone */
2955static struct omap_hwmod_ocp_if omap3xxx_l4_per__mcbsp3_sidetone = {
2956 .master = &omap3xxx_l4_per_hwmod,
2957 .slave = &omap3xxx_mcbsp3_sidetone_hwmod,
2958 .clk = "mcbsp3_ick",
2959 .addr = omap3xxx_mcbsp3_sidetone_addrs,
Charulatha Vdc48e5f2011-02-24 15:16:49 +05302960 .user = OCP_USER_MPU,
2961};
2962
Felipe Contreras0f9dfdd2011-02-24 12:51:32 -08002963static struct omap_hwmod_addr_space omap3xxx_mailbox_addrs[] = {
2964 {
2965 .pa_start = 0x48094000,
2966 .pa_end = 0x480941ff,
2967 .flags = ADDR_TYPE_RT,
2968 },
Paul Walmsley78183f32011-07-09 19:14:05 -06002969 { }
Felipe Contreras0f9dfdd2011-02-24 12:51:32 -08002970};
2971
2972/* l4_core -> mailbox */
2973static struct omap_hwmod_ocp_if omap3xxx_l4_core__mailbox = {
2974 .master = &omap3xxx_l4_core_hwmod,
2975 .slave = &omap3xxx_mailbox_hwmod,
2976 .addr = omap3xxx_mailbox_addrs,
Felipe Contreras0f9dfdd2011-02-24 12:51:32 -08002977 .user = OCP_USER_MPU | OCP_USER_SDMA,
2978};
2979
Charulatha V0f616a42011-02-17 09:53:10 -08002980/* l4 core -> mcspi1 interface */
Charulatha V0f616a42011-02-17 09:53:10 -08002981static struct omap_hwmod_ocp_if omap34xx_l4_core__mcspi1 = {
2982 .master = &omap3xxx_l4_core_hwmod,
2983 .slave = &omap34xx_mcspi1,
2984 .clk = "mcspi1_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002985 .addr = omap2_mcspi1_addr_space,
Charulatha V0f616a42011-02-17 09:53:10 -08002986 .user = OCP_USER_MPU | OCP_USER_SDMA,
2987};
2988
2989/* l4 core -> mcspi2 interface */
Charulatha V0f616a42011-02-17 09:53:10 -08002990static struct omap_hwmod_ocp_if omap34xx_l4_core__mcspi2 = {
2991 .master = &omap3xxx_l4_core_hwmod,
2992 .slave = &omap34xx_mcspi2,
2993 .clk = "mcspi2_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06002994 .addr = omap2_mcspi2_addr_space,
Charulatha V0f616a42011-02-17 09:53:10 -08002995 .user = OCP_USER_MPU | OCP_USER_SDMA,
2996};
2997
2998/* l4 core -> mcspi3 interface */
Charulatha V0f616a42011-02-17 09:53:10 -08002999static struct omap_hwmod_ocp_if omap34xx_l4_core__mcspi3 = {
3000 .master = &omap3xxx_l4_core_hwmod,
3001 .slave = &omap34xx_mcspi3,
3002 .clk = "mcspi3_ick",
Paul Walmsleyded11382011-07-09 19:14:06 -06003003 .addr = omap2430_mcspi3_addr_space,
Charulatha V0f616a42011-02-17 09:53:10 -08003004 .user = OCP_USER_MPU | OCP_USER_SDMA,
3005};
3006
3007/* l4 core -> mcspi4 interface */
3008static struct omap_hwmod_addr_space omap34xx_mcspi4_addr_space[] = {
3009 {
3010 .pa_start = 0x480ba000,
3011 .pa_end = 0x480ba0ff,
3012 .flags = ADDR_TYPE_RT,
3013 },
Paul Walmsley78183f32011-07-09 19:14:05 -06003014 { }
Charulatha V0f616a42011-02-17 09:53:10 -08003015};
3016
3017static struct omap_hwmod_ocp_if omap34xx_l4_core__mcspi4 = {
3018 .master = &omap3xxx_l4_core_hwmod,
3019 .slave = &omap34xx_mcspi4,
3020 .clk = "mcspi4_ick",
3021 .addr = omap34xx_mcspi4_addr_space,
Charulatha V0f616a42011-02-17 09:53:10 -08003022 .user = OCP_USER_MPU | OCP_USER_SDMA,
3023};
3024
Keshava Munegowdade231382011-12-15 23:14:44 -07003025static struct omap_hwmod_ocp_if omap3xxx_usb_host_hs__l3_main_2 = {
3026 .master = &omap3xxx_usb_host_hs_hwmod,
3027 .slave = &omap3xxx_l3_main_hwmod,
3028 .clk = "core_l3_ick",
3029 .user = OCP_USER_MPU,
3030};
3031
Keshava Munegowdade231382011-12-15 23:14:44 -07003032static struct omap_hwmod_addr_space omap3xxx_usb_host_hs_addrs[] = {
3033 {
3034 .name = "uhh",
3035 .pa_start = 0x48064000,
3036 .pa_end = 0x480643ff,
3037 .flags = ADDR_TYPE_RT
3038 },
3039 {
3040 .name = "ohci",
3041 .pa_start = 0x48064400,
3042 .pa_end = 0x480647ff,
3043 },
3044 {
3045 .name = "ehci",
3046 .pa_start = 0x48064800,
3047 .pa_end = 0x48064cff,
3048 },
3049 {}
3050};
3051
3052static struct omap_hwmod_ocp_if omap3xxx_l4_core__usb_host_hs = {
3053 .master = &omap3xxx_l4_core_hwmod,
3054 .slave = &omap3xxx_usb_host_hs_hwmod,
3055 .clk = "usbhost_ick",
3056 .addr = omap3xxx_usb_host_hs_addrs,
3057 .user = OCP_USER_MPU | OCP_USER_SDMA,
3058};
3059
Keshava Munegowdade231382011-12-15 23:14:44 -07003060static struct omap_hwmod_addr_space omap3xxx_usb_tll_hs_addrs[] = {
3061 {
3062 .name = "tll",
3063 .pa_start = 0x48062000,
3064 .pa_end = 0x48062fff,
3065 .flags = ADDR_TYPE_RT
3066 },
3067 {}
3068};
3069
3070static struct omap_hwmod_ocp_if omap3xxx_l4_core__usb_tll_hs = {
3071 .master = &omap3xxx_l4_core_hwmod,
3072 .slave = &omap3xxx_usb_tll_hs_hwmod,
3073 .clk = "usbtll_ick",
3074 .addr = omap3xxx_usb_tll_hs_addrs,
3075 .user = OCP_USER_MPU | OCP_USER_SDMA,
3076};
3077
Paul Walmsley45a4bb02012-05-08 11:34:28 -06003078/* l4_core -> hdq1w interface */
3079static struct omap_hwmod_ocp_if omap3xxx_l4_core__hdq1w = {
3080 .master = &omap3xxx_l4_core_hwmod,
3081 .slave = &omap3xxx_hdq1w_hwmod,
3082 .clk = "hdq_ick",
3083 .addr = omap2_hdq1w_addr_space,
3084 .user = OCP_USER_MPU | OCP_USER_SDMA,
3085 .flags = OMAP_FIREWALL_L4 | OCPIF_SWSUP_IDLE,
3086};
3087
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003088static struct omap_hwmod_ocp_if *omap3xxx_hwmod_ocp_ifs[] __initdata = {
3089 &omap3xxx_l3_main__l4_core,
3090 &omap3xxx_l3_main__l4_per,
3091 &omap3xxx_mpu__l3_main,
3092 &omap3xxx_l4_core__l4_wkup,
3093 &omap3xxx_l4_core__mmc3,
3094 &omap3_l4_core__uart1,
3095 &omap3_l4_core__uart2,
3096 &omap3_l4_per__uart3,
3097 &omap3_l4_core__i2c1,
3098 &omap3_l4_core__i2c2,
3099 &omap3_l4_core__i2c3,
3100 &omap3xxx_l4_wkup__l4_sec,
3101 &omap3xxx_l4_wkup__timer1,
3102 &omap3xxx_l4_per__timer2,
3103 &omap3xxx_l4_per__timer3,
3104 &omap3xxx_l4_per__timer4,
3105 &omap3xxx_l4_per__timer5,
3106 &omap3xxx_l4_per__timer6,
3107 &omap3xxx_l4_per__timer7,
3108 &omap3xxx_l4_per__timer8,
3109 &omap3xxx_l4_per__timer9,
3110 &omap3xxx_l4_core__timer10,
3111 &omap3xxx_l4_core__timer11,
3112 &omap3xxx_l4_wkup__wd_timer2,
3113 &omap3xxx_l4_wkup__gpio1,
3114 &omap3xxx_l4_per__gpio2,
3115 &omap3xxx_l4_per__gpio3,
3116 &omap3xxx_l4_per__gpio4,
3117 &omap3xxx_l4_per__gpio5,
3118 &omap3xxx_l4_per__gpio6,
3119 &omap3xxx_dma_system__l3,
3120 &omap3xxx_l4_core__dma_system,
3121 &omap3xxx_l4_core__mcbsp1,
3122 &omap3xxx_l4_per__mcbsp2,
3123 &omap3xxx_l4_per__mcbsp3,
3124 &omap3xxx_l4_per__mcbsp4,
3125 &omap3xxx_l4_core__mcbsp5,
3126 &omap3xxx_l4_per__mcbsp2_sidetone,
3127 &omap3xxx_l4_per__mcbsp3_sidetone,
3128 &omap34xx_l4_core__mcspi1,
3129 &omap34xx_l4_core__mcspi2,
3130 &omap34xx_l4_core__mcspi3,
3131 &omap34xx_l4_core__mcspi4,
Paul Walmsley73591542010-02-22 22:09:32 -07003132 NULL,
3133};
3134
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003135/* GP-only hwmod links */
3136static struct omap_hwmod_ocp_if *omap3xxx_gp_hwmod_ocp_ifs[] __initdata = {
3137 &omap3xxx_l4_sec__timer12,
Aaro Koskinen91a36bd2011-12-15 22:38:37 -07003138 NULL
3139};
3140
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003141/* 3430ES1-only hwmod links */
3142static struct omap_hwmod_ocp_if *omap3430es1_hwmod_ocp_ifs[] __initdata = {
3143 &omap3430es1_dss__l3,
3144 &omap3430es1_l4_core__dss,
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003145 NULL
3146};
3147
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003148/* 3430ES2+-only hwmod links */
3149static struct omap_hwmod_ocp_if *omap3430es2plus_hwmod_ocp_ifs[] __initdata = {
3150 &omap3xxx_dss__l3,
3151 &omap3xxx_l4_core__dss,
3152 &omap3xxx_usbhsotg__l3,
3153 &omap3xxx_l4_core__usbhsotg,
3154 &omap3xxx_usb_host_hs__l3_main_2,
3155 &omap3xxx_l4_core__usb_host_hs,
3156 &omap3xxx_l4_core__usb_tll_hs,
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003157 NULL
3158};
3159
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003160/* <= 3430ES3-only hwmod links */
3161static struct omap_hwmod_ocp_if *omap3430_pre_es3_hwmod_ocp_ifs[] __initdata = {
3162 &omap3xxx_l4_core__pre_es3_mmc1,
3163 &omap3xxx_l4_core__pre_es3_mmc2,
Paul Walmsleya52e2ab2011-12-15 23:30:44 -07003164 NULL
3165};
3166
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003167/* 3430ES3+-only hwmod links */
3168static struct omap_hwmod_ocp_if *omap3430_es3plus_hwmod_ocp_ifs[] __initdata = {
3169 &omap3xxx_l4_core__es3plus_mmc1,
3170 &omap3xxx_l4_core__es3plus_mmc2,
Paul Walmsleya52e2ab2011-12-15 23:30:44 -07003171 NULL
3172};
3173
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003174/* 34xx-only hwmod links (all ES revisions) */
3175static struct omap_hwmod_ocp_if *omap34xx_hwmod_ocp_ifs[] __initdata = {
3176 &omap3xxx_l3__iva,
3177 &omap34xx_l4_core__sr1,
3178 &omap34xx_l4_core__sr2,
3179 &omap3xxx_l4_core__mailbox,
Paul Walmsley45a4bb02012-05-08 11:34:28 -06003180 &omap3xxx_l4_core__hdq1w,
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003181 NULL
3182};
3183
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003184/* 36xx-only hwmod links (all ES revisions) */
3185static struct omap_hwmod_ocp_if *omap36xx_hwmod_ocp_ifs[] __initdata = {
3186 &omap3xxx_l3__iva,
3187 &omap36xx_l4_per__uart4,
3188 &omap3xxx_dss__l3,
3189 &omap3xxx_l4_core__dss,
3190 &omap36xx_l4_core__sr1,
3191 &omap36xx_l4_core__sr2,
3192 &omap3xxx_usbhsotg__l3,
3193 &omap3xxx_l4_core__usbhsotg,
3194 &omap3xxx_l4_core__mailbox,
3195 &omap3xxx_usb_host_hs__l3_main_2,
3196 &omap3xxx_l4_core__usb_host_hs,
3197 &omap3xxx_l4_core__usb_tll_hs,
3198 &omap3xxx_l4_core__es3plus_mmc1,
3199 &omap3xxx_l4_core__es3plus_mmc2,
Paul Walmsley45a4bb02012-05-08 11:34:28 -06003200 &omap3xxx_l4_core__hdq1w,
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003201 NULL
3202};
3203
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003204static struct omap_hwmod_ocp_if *am35xx_hwmod_ocp_ifs[] __initdata = {
3205 &omap3xxx_dss__l3,
3206 &omap3xxx_l4_core__dss,
3207 &am35xx_usbhsotg__l3,
3208 &am35xx_l4_core__usbhsotg,
3209 &am35xx_l4_core__uart4,
3210 &omap3xxx_usb_host_hs__l3_main_2,
3211 &omap3xxx_l4_core__usb_host_hs,
3212 &omap3xxx_l4_core__usb_tll_hs,
3213 &omap3xxx_l4_core__es3plus_mmc1,
3214 &omap3xxx_l4_core__es3plus_mmc2,
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003215 NULL
3216};
3217
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003218static struct omap_hwmod_ocp_if *omap3xxx_dss_hwmod_ocp_ifs[] __initdata = {
3219 &omap3xxx_l4_core__dss_dispc,
3220 &omap3xxx_l4_core__dss_dsi1,
3221 &omap3xxx_l4_core__dss_rfbi,
3222 &omap3xxx_l4_core__dss_venc,
Ilya Yanok1d2f56c2011-12-28 00:31:33 +01003223 NULL
3224};
3225
Paul Walmsley73591542010-02-22 22:09:32 -07003226int __init omap3xxx_hwmod_init(void)
3227{
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003228 int r;
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003229 struct omap_hwmod_ocp_if **h = NULL;
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003230 unsigned int rev;
3231
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003232 /* Register hwmod links common to all OMAP3 */
3233 r = omap_hwmod_register_links(omap3xxx_hwmod_ocp_ifs);
Paul Walmsleyace90212011-10-06 14:39:28 -06003234 if (r < 0)
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003235 return r;
3236
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003237 /* Register GP-only hwmod links. */
Aaro Koskinen91a36bd2011-12-15 22:38:37 -07003238 if (omap_type() == OMAP2_DEVICE_TYPE_GP) {
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003239 r = omap_hwmod_register_links(omap3xxx_gp_hwmod_ocp_ifs);
Aaro Koskinen91a36bd2011-12-15 22:38:37 -07003240 if (r < 0)
3241 return r;
3242 }
3243
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003244 rev = omap_rev();
3245
3246 /*
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003247 * Register hwmod links common to individual OMAP3 families, all
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003248 * silicon revisions (e.g., 34xx, or AM3505/3517, or 36xx)
3249 * All possible revisions should be included in this conditional.
3250 */
3251 if (rev == OMAP3430_REV_ES1_0 || rev == OMAP3430_REV_ES2_0 ||
3252 rev == OMAP3430_REV_ES2_1 || rev == OMAP3430_REV_ES3_0 ||
3253 rev == OMAP3430_REV_ES3_1 || rev == OMAP3430_REV_ES3_1_2) {
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003254 h = omap34xx_hwmod_ocp_ifs;
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003255 } else if (rev == OMAP3517_REV_ES1_0 || rev == OMAP3517_REV_ES1_1) {
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003256 h = am35xx_hwmod_ocp_ifs;
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003257 } else if (rev == OMAP3630_REV_ES1_0 || rev == OMAP3630_REV_ES1_1 ||
3258 rev == OMAP3630_REV_ES1_2) {
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003259 h = omap36xx_hwmod_ocp_ifs;
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003260 } else {
3261 WARN(1, "OMAP3 hwmod family init: unknown chip type\n");
3262 return -EINVAL;
3263 };
3264
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003265 r = omap_hwmod_register_links(h);
Paul Walmsleyace90212011-10-06 14:39:28 -06003266 if (r < 0)
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003267 return r;
3268
3269 /*
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003270 * Register hwmod links specific to certain ES levels of a
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003271 * particular family of silicon (e.g., 34xx ES1.0)
3272 */
3273 h = NULL;
3274 if (rev == OMAP3430_REV_ES1_0) {
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003275 h = omap3430es1_hwmod_ocp_ifs;
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003276 } else if (rev == OMAP3430_REV_ES2_0 || rev == OMAP3430_REV_ES2_1 ||
3277 rev == OMAP3430_REV_ES3_0 || rev == OMAP3430_REV_ES3_1 ||
3278 rev == OMAP3430_REV_ES3_1_2) {
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003279 h = omap3430es2plus_hwmod_ocp_ifs;
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003280 };
3281
Paul Walmsleya52e2ab2011-12-15 23:30:44 -07003282 if (h) {
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003283 r = omap_hwmod_register_links(h);
Paul Walmsleya52e2ab2011-12-15 23:30:44 -07003284 if (r < 0)
3285 return r;
3286 }
3287
3288 h = NULL;
3289 if (rev == OMAP3430_REV_ES1_0 || rev == OMAP3430_REV_ES2_0 ||
3290 rev == OMAP3430_REV_ES2_1) {
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003291 h = omap3430_pre_es3_hwmod_ocp_ifs;
Paul Walmsleya52e2ab2011-12-15 23:30:44 -07003292 } else if (rev == OMAP3430_REV_ES3_0 || rev == OMAP3430_REV_ES3_1 ||
3293 rev == OMAP3430_REV_ES3_1_2) {
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003294 h = omap3430_es3plus_hwmod_ocp_ifs;
Paul Walmsleya52e2ab2011-12-15 23:30:44 -07003295 };
3296
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003297 if (h)
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003298 r = omap_hwmod_register_links(h);
Ilya Yanok1d2f56c2011-12-28 00:31:33 +01003299 if (r < 0)
3300 return r;
3301
3302 /*
3303 * DSS code presumes that dss_core hwmod is handled first,
3304 * _before_ any other DSS related hwmods so register common
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003305 * DSS hwmod links last to ensure that dss_core is already
3306 * registered. Otherwise some change things may happen, for
3307 * ex. if dispc is handled before dss_core and DSS is enabled
3308 * in bootloader DISPC will be reset with outputs enabled
3309 * which sometimes leads to unrecoverable L3 error. XXX The
3310 * long-term fix to this is to ensure hwmods are set up in
3311 * dependency order in the hwmod core code.
Ilya Yanok1d2f56c2011-12-28 00:31:33 +01003312 */
Paul Walmsley0a78c5c2012-04-19 04:04:31 -06003313 r = omap_hwmod_register_links(omap3xxx_dss_hwmod_ocp_ifs);
Paul Walmsleyd6504ac2011-09-14 17:23:19 -06003314
3315 return r;
Paul Walmsley73591542010-02-22 22:09:32 -07003316}