omap_hwmod_2420_data.c 39.2 KB
Newer Older
1
/*
2
 * omap_hwmod_2420_data.c - hardware modules present on the OMAP2420 chips
3
 *
4
 * Copyright (C) 2009-2011 Nokia Corporation
5 6 7 8 9 10 11
 * Paul Walmsley
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * XXX handle crossbar/shared link difference for L3?
12
 * XXX these should be marked initdata for multi-OMAP kernels
13
 */
14
#include <plat/omap_hwmod.h>
15
#include <mach/irqs.h>
16 17
#include <plat/cpu.h>
#include <plat/dma.h>
18
#include <plat/serial.h>
19
#include <plat/i2c.h>
20
#include <plat/gpio.h>
C
Charulatha V 已提交
21
#include <plat/mcspi.h>
22
#include <plat/dmtimer.h>
23 24
#include <plat/l3_2xxx.h>
#include <plat/l4_2xxx.h>
25

26 27
#include "omap_hwmod_common_data.h"

28
#include "cm-regbits-24xx.h"
29
#include "prm-regbits-24xx.h"
30
#include "wd_timer.h"
31

32 33 34 35 36 37 38 39 40
/*
 * OMAP2420 hardware module integration data
 *
 * ALl of the data in this section should be autogeneratable from the
 * TI hardware database or other technical documentation.  Data that
 * is driver-specific or driver-kernel integration-specific belongs
 * elsewhere.
 */

41
static struct omap_hwmod omap2420_mpu_hwmod;
42
static struct omap_hwmod omap2420_iva_hwmod;
43
static struct omap_hwmod omap2420_l3_main_hwmod;
44
static struct omap_hwmod omap2420_l4_core_hwmod;
45 46 47 48
static struct omap_hwmod omap2420_dss_core_hwmod;
static struct omap_hwmod omap2420_dss_dispc_hwmod;
static struct omap_hwmod omap2420_dss_rfbi_hwmod;
static struct omap_hwmod omap2420_dss_venc_hwmod;
49
static struct omap_hwmod omap2420_wd_timer2_hwmod;
50 51 52 53
static struct omap_hwmod omap2420_gpio1_hwmod;
static struct omap_hwmod omap2420_gpio2_hwmod;
static struct omap_hwmod omap2420_gpio3_hwmod;
static struct omap_hwmod omap2420_gpio4_hwmod;
54
static struct omap_hwmod omap2420_dma_system_hwmod;
C
Charulatha V 已提交
55 56
static struct omap_hwmod omap2420_mcspi1_hwmod;
static struct omap_hwmod omap2420_mcspi2_hwmod;
57 58

/* L3 -> L4_CORE interface */
59 60
static struct omap_hwmod_ocp_if omap2420_l3_main__l4_core = {
	.master	= &omap2420_l3_main_hwmod,
61 62 63 64 65
	.slave	= &omap2420_l4_core_hwmod,
	.user	= OCP_USER_MPU | OCP_USER_SDMA,
};

/* MPU -> L3 interface */
66
static struct omap_hwmod_ocp_if omap2420_mpu__l3_main = {
67
	.master = &omap2420_mpu_hwmod,
68
	.slave	= &omap2420_l3_main_hwmod,
69 70 71 72
	.user	= OCP_USER_MPU,
};

/* Slave interfaces on the L3 interconnect */
73 74
static struct omap_hwmod_ocp_if *omap2420_l3_main_slaves[] = {
	&omap2420_mpu__l3_main,
75 76
};

77 78 79 80 81 82 83 84 85 86 87 88 89
/* DSS -> l3 */
static struct omap_hwmod_ocp_if omap2420_dss__l3 = {
	.master		= &omap2420_dss_core_hwmod,
	.slave		= &omap2420_l3_main_hwmod,
	.fw = {
		.omap2 = {
			.l3_perm_bit  = OMAP2_L3_CORE_FW_CONNID_DSS,
			.flags	= OMAP_FIREWALL_L3,
		}
	},
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

90
/* Master interfaces on the L3 interconnect */
91 92
static struct omap_hwmod_ocp_if *omap2420_l3_main_masters[] = {
	&omap2420_l3_main__l4_core,
93 94 95
};

/* L3 */
96
static struct omap_hwmod omap2420_l3_main_hwmod = {
97
	.name		= "l3_main",
98
	.class		= &l3_hwmod_class,
99 100 101 102
	.masters	= omap2420_l3_main_masters,
	.masters_cnt	= ARRAY_SIZE(omap2420_l3_main_masters),
	.slaves		= omap2420_l3_main_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_l3_main_slaves),
103
	.flags		= HWMOD_NO_IDLEST,
104 105 106
};

static struct omap_hwmod omap2420_l4_wkup_hwmod;
107 108 109
static struct omap_hwmod omap2420_uart1_hwmod;
static struct omap_hwmod omap2420_uart2_hwmod;
static struct omap_hwmod omap2420_uart3_hwmod;
110 111
static struct omap_hwmod omap2420_i2c1_hwmod;
static struct omap_hwmod omap2420_i2c2_hwmod;
C
Charulatha V 已提交
112 113
static struct omap_hwmod omap2420_mcbsp1_hwmod;
static struct omap_hwmod omap2420_mcbsp2_hwmod;
114

C
Charulatha V 已提交
115 116 117 118 119
/* l4 core -> mcspi1 interface */
static struct omap_hwmod_ocp_if omap2420_l4_core__mcspi1 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_mcspi1_hwmod,
	.clk		= "mcspi1_ick",
120
	.addr		= omap2_mcspi1_addr_space,
C
Charulatha V 已提交
121 122 123 124 125 126 127 128
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* l4 core -> mcspi2 interface */
static struct omap_hwmod_ocp_if omap2420_l4_core__mcspi2 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_mcspi2_hwmod,
	.clk		= "mcspi2_ick",
129
	.addr		= omap2_mcspi2_addr_space,
C
Charulatha V 已提交
130 131 132
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

133 134 135 136 137 138 139
/* L4_CORE -> L4_WKUP interface */
static struct omap_hwmod_ocp_if omap2420_l4_core__l4_wkup = {
	.master	= &omap2420_l4_core_hwmod,
	.slave	= &omap2420_l4_wkup_hwmod,
	.user	= OCP_USER_MPU | OCP_USER_SDMA,
};

140 141 142 143 144
/* L4 CORE -> UART1 interface */
static struct omap_hwmod_ocp_if omap2_l4_core__uart1 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_uart1_hwmod,
	.clk		= "uart1_ick",
145
	.addr		= omap2xxx_uart1_addr_space,
146 147 148 149 150 151 152 153
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* L4 CORE -> UART2 interface */
static struct omap_hwmod_ocp_if omap2_l4_core__uart2 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_uart2_hwmod,
	.clk		= "uart2_ick",
154
	.addr		= omap2xxx_uart2_addr_space,
155 156 157 158 159 160 161 162
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* L4 PER -> UART3 interface */
static struct omap_hwmod_ocp_if omap2_l4_core__uart3 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_uart3_hwmod,
	.clk		= "uart3_ick",
163
	.addr		= omap2xxx_uart3_addr_space,
164 165 166
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

167 168 169 170 171
/* L4 CORE -> I2C1 interface */
static struct omap_hwmod_ocp_if omap2420_l4_core__i2c1 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_i2c1_hwmod,
	.clk		= "i2c1_ick",
172
	.addr		= omap2_i2c1_addr_space,
173 174 175 176 177 178 179 180
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* L4 CORE -> I2C2 interface */
static struct omap_hwmod_ocp_if omap2420_l4_core__i2c2 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_i2c2_hwmod,
	.clk		= "i2c2_ick",
181
	.addr		= omap2_i2c2_addr_space,
182 183 184
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

185 186
/* Slave interfaces on the L4_CORE interconnect */
static struct omap_hwmod_ocp_if *omap2420_l4_core_slaves[] = {
187
	&omap2420_l3_main__l4_core,
188 189 190 191 192
};

/* Master interfaces on the L4_CORE interconnect */
static struct omap_hwmod_ocp_if *omap2420_l4_core_masters[] = {
	&omap2420_l4_core__l4_wkup,
193 194 195
	&omap2_l4_core__uart1,
	&omap2_l4_core__uart2,
	&omap2_l4_core__uart3,
196 197
	&omap2420_l4_core__i2c1,
	&omap2420_l4_core__i2c2
198 199 200 201
};

/* L4 CORE */
static struct omap_hwmod omap2420_l4_core_hwmod = {
202
	.name		= "l4_core",
203
	.class		= &l4_hwmod_class,
204 205 206 207
	.masters	= omap2420_l4_core_masters,
	.masters_cnt	= ARRAY_SIZE(omap2420_l4_core_masters),
	.slaves		= omap2420_l4_core_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_l4_core_slaves),
208
	.flags		= HWMOD_NO_IDLEST,
209 210 211 212 213 214 215 216 217 218 219 220 221
};

/* Slave interfaces on the L4_WKUP interconnect */
static struct omap_hwmod_ocp_if *omap2420_l4_wkup_slaves[] = {
	&omap2420_l4_core__l4_wkup,
};

/* Master interfaces on the L4_WKUP interconnect */
static struct omap_hwmod_ocp_if *omap2420_l4_wkup_masters[] = {
};

/* L4 WKUP */
static struct omap_hwmod omap2420_l4_wkup_hwmod = {
222
	.name		= "l4_wkup",
223
	.class		= &l4_hwmod_class,
224 225 226 227
	.masters	= omap2420_l4_wkup_masters,
	.masters_cnt	= ARRAY_SIZE(omap2420_l4_wkup_masters),
	.slaves		= omap2420_l4_wkup_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_l4_wkup_slaves),
228
	.flags		= HWMOD_NO_IDLEST,
229 230 231 232
};

/* Master interfaces on the MPU device */
static struct omap_hwmod_ocp_if *omap2420_mpu_masters[] = {
233
	&omap2420_mpu__l3_main,
234 235 236 237
};

/* MPU */
static struct omap_hwmod omap2420_mpu_hwmod = {
238
	.name		= "mpu",
239
	.class		= &mpu_hwmod_class,
240
	.main_clk	= "mpu_ck",
241 242 243 244
	.masters	= omap2420_mpu_masters,
	.masters_cnt	= ARRAY_SIZE(omap2420_mpu_masters),
};

245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
/*
 * IVA1 interface data
 */

/* IVA <- L3 interface */
static struct omap_hwmod_ocp_if omap2420_l3__iva = {
	.master		= &omap2420_l3_main_hwmod,
	.slave		= &omap2420_iva_hwmod,
	.clk		= "iva1_ifck",
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

static struct omap_hwmod_ocp_if *omap2420_iva_masters[] = {
	&omap2420_l3__iva,
};

/*
 * IVA2 (IVA2)
 */

static struct omap_hwmod omap2420_iva_hwmod = {
	.name		= "iva",
	.class		= &iva_hwmod_class,
	.masters	= omap2420_iva_masters,
	.masters_cnt	= ARRAY_SIZE(omap2420_iva_masters),
};

272 273 274 275 276 277 278 279 280 281
/* always-on timers dev attribute */
static struct omap_timer_capability_dev_attr capability_alwon_dev_attr = {
	.timer_capability       = OMAP_TIMER_ALWON,
};

/* pwm timers dev attribute */
static struct omap_timer_capability_dev_attr capability_pwm_dev_attr = {
	.timer_capability       = OMAP_TIMER_HAS_PWM,
};

282 283 284 285 286 287 288 289 290
/* timer1 */
static struct omap_hwmod omap2420_timer1_hwmod;

static struct omap_hwmod_addr_space omap2420_timer1_addrs[] = {
	{
		.pa_start	= 0x48028000,
		.pa_end		= 0x48028000 + SZ_1K - 1,
		.flags		= ADDR_TYPE_RT
	},
291
	{ }
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
};

/* l4_wkup -> timer1 */
static struct omap_hwmod_ocp_if omap2420_l4_wkup__timer1 = {
	.master		= &omap2420_l4_wkup_hwmod,
	.slave		= &omap2420_timer1_hwmod,
	.clk		= "gpt1_ick",
	.addr		= omap2420_timer1_addrs,
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* timer1 slave port */
static struct omap_hwmod_ocp_if *omap2420_timer1_slaves[] = {
	&omap2420_l4_wkup__timer1,
};

/* timer1 hwmod */
static struct omap_hwmod omap2420_timer1_hwmod = {
	.name		= "timer1",
311
	.mpu_irqs	= omap2_timer1_mpu_irqs,
312 313 314 315 316 317 318 319 320 321
	.main_clk	= "gpt1_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPT1_SHIFT,
			.module_offs = WKUP_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPT1_SHIFT,
		},
	},
322
	.dev_attr	= &capability_alwon_dev_attr,
323 324
	.slaves		= omap2420_timer1_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_timer1_slaves),
325
	.class		= &omap2xxx_timer_hwmod_class,
326 327 328 329 330 331 332 333 334 335
};

/* timer2 */
static struct omap_hwmod omap2420_timer2_hwmod;

/* l4_core -> timer2 */
static struct omap_hwmod_ocp_if omap2420_l4_core__timer2 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_timer2_hwmod,
	.clk		= "gpt2_ick",
336
	.addr		= omap2xxx_timer2_addrs,
337 338 339 340 341 342 343 344 345 346 347
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* timer2 slave port */
static struct omap_hwmod_ocp_if *omap2420_timer2_slaves[] = {
	&omap2420_l4_core__timer2,
};

/* timer2 hwmod */
static struct omap_hwmod omap2420_timer2_hwmod = {
	.name		= "timer2",
348
	.mpu_irqs	= omap2_timer2_mpu_irqs,
349 350 351 352 353 354 355 356 357 358
	.main_clk	= "gpt2_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPT2_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPT2_SHIFT,
		},
	},
359
	.dev_attr	= &capability_alwon_dev_attr,
360 361
	.slaves		= omap2420_timer2_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_timer2_slaves),
362
	.class		= &omap2xxx_timer_hwmod_class,
363 364 365 366 367 368 369 370 371 372
};

/* timer3 */
static struct omap_hwmod omap2420_timer3_hwmod;

/* l4_core -> timer3 */
static struct omap_hwmod_ocp_if omap2420_l4_core__timer3 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_timer3_hwmod,
	.clk		= "gpt3_ick",
373
	.addr		= omap2xxx_timer3_addrs,
374 375 376 377 378 379 380 381 382 383 384
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* timer3 slave port */
static struct omap_hwmod_ocp_if *omap2420_timer3_slaves[] = {
	&omap2420_l4_core__timer3,
};

/* timer3 hwmod */
static struct omap_hwmod omap2420_timer3_hwmod = {
	.name		= "timer3",
385
	.mpu_irqs	= omap2_timer3_mpu_irqs,
386 387 388 389 390 391 392 393 394 395
	.main_clk	= "gpt3_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPT3_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPT3_SHIFT,
		},
	},
396
	.dev_attr	= &capability_alwon_dev_attr,
397 398
	.slaves		= omap2420_timer3_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_timer3_slaves),
399
	.class		= &omap2xxx_timer_hwmod_class,
400 401 402 403 404 405 406 407 408 409
};

/* timer4 */
static struct omap_hwmod omap2420_timer4_hwmod;

/* l4_core -> timer4 */
static struct omap_hwmod_ocp_if omap2420_l4_core__timer4 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_timer4_hwmod,
	.clk		= "gpt4_ick",
410
	.addr		= omap2xxx_timer4_addrs,
411 412 413 414 415 416 417 418 419 420 421
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* timer4 slave port */
static struct omap_hwmod_ocp_if *omap2420_timer4_slaves[] = {
	&omap2420_l4_core__timer4,
};

/* timer4 hwmod */
static struct omap_hwmod omap2420_timer4_hwmod = {
	.name		= "timer4",
422
	.mpu_irqs	= omap2_timer4_mpu_irqs,
423 424 425 426 427 428 429 430 431 432
	.main_clk	= "gpt4_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPT4_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPT4_SHIFT,
		},
	},
433
	.dev_attr	= &capability_alwon_dev_attr,
434 435
	.slaves		= omap2420_timer4_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_timer4_slaves),
436
	.class		= &omap2xxx_timer_hwmod_class,
437 438 439 440 441 442 443 444 445 446
};

/* timer5 */
static struct omap_hwmod omap2420_timer5_hwmod;

/* l4_core -> timer5 */
static struct omap_hwmod_ocp_if omap2420_l4_core__timer5 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_timer5_hwmod,
	.clk		= "gpt5_ick",
447
	.addr		= omap2xxx_timer5_addrs,
448 449 450 451 452 453 454 455 456 457 458
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* timer5 slave port */
static struct omap_hwmod_ocp_if *omap2420_timer5_slaves[] = {
	&omap2420_l4_core__timer5,
};

/* timer5 hwmod */
static struct omap_hwmod omap2420_timer5_hwmod = {
	.name		= "timer5",
459
	.mpu_irqs	= omap2_timer5_mpu_irqs,
460 461 462 463 464 465 466 467 468 469
	.main_clk	= "gpt5_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPT5_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPT5_SHIFT,
		},
	},
470
	.dev_attr	= &capability_alwon_dev_attr,
471 472
	.slaves		= omap2420_timer5_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_timer5_slaves),
473
	.class		= &omap2xxx_timer_hwmod_class,
474 475 476 477 478 479 480 481 482 483 484
};


/* timer6 */
static struct omap_hwmod omap2420_timer6_hwmod;

/* l4_core -> timer6 */
static struct omap_hwmod_ocp_if omap2420_l4_core__timer6 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_timer6_hwmod,
	.clk		= "gpt6_ick",
485
	.addr		= omap2xxx_timer6_addrs,
486 487 488 489 490 491 492 493 494 495 496
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* timer6 slave port */
static struct omap_hwmod_ocp_if *omap2420_timer6_slaves[] = {
	&omap2420_l4_core__timer6,
};

/* timer6 hwmod */
static struct omap_hwmod omap2420_timer6_hwmod = {
	.name		= "timer6",
497
	.mpu_irqs	= omap2_timer6_mpu_irqs,
498 499 500 501 502 503 504 505 506 507
	.main_clk	= "gpt6_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPT6_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPT6_SHIFT,
		},
	},
508
	.dev_attr	= &capability_alwon_dev_attr,
509 510
	.slaves		= omap2420_timer6_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_timer6_slaves),
511
	.class		= &omap2xxx_timer_hwmod_class,
512 513 514 515 516 517 518 519 520 521
};

/* timer7 */
static struct omap_hwmod omap2420_timer7_hwmod;

/* l4_core -> timer7 */
static struct omap_hwmod_ocp_if omap2420_l4_core__timer7 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_timer7_hwmod,
	.clk		= "gpt7_ick",
522
	.addr		= omap2xxx_timer7_addrs,
523 524 525 526 527 528 529 530 531 532 533
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* timer7 slave port */
static struct omap_hwmod_ocp_if *omap2420_timer7_slaves[] = {
	&omap2420_l4_core__timer7,
};

/* timer7 hwmod */
static struct omap_hwmod omap2420_timer7_hwmod = {
	.name		= "timer7",
534
	.mpu_irqs	= omap2_timer7_mpu_irqs,
535 536 537 538 539 540 541 542 543 544
	.main_clk	= "gpt7_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPT7_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPT7_SHIFT,
		},
	},
545
	.dev_attr	= &capability_alwon_dev_attr,
546 547
	.slaves		= omap2420_timer7_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_timer7_slaves),
548
	.class		= &omap2xxx_timer_hwmod_class,
549 550 551 552 553 554 555 556 557 558
};

/* timer8 */
static struct omap_hwmod omap2420_timer8_hwmod;

/* l4_core -> timer8 */
static struct omap_hwmod_ocp_if omap2420_l4_core__timer8 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_timer8_hwmod,
	.clk		= "gpt8_ick",
559
	.addr		= omap2xxx_timer8_addrs,
560 561 562 563 564 565 566 567 568 569 570
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* timer8 slave port */
static struct omap_hwmod_ocp_if *omap2420_timer8_slaves[] = {
	&omap2420_l4_core__timer8,
};

/* timer8 hwmod */
static struct omap_hwmod omap2420_timer8_hwmod = {
	.name		= "timer8",
571
	.mpu_irqs	= omap2_timer8_mpu_irqs,
572 573 574 575 576 577 578 579 580 581
	.main_clk	= "gpt8_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPT8_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPT8_SHIFT,
		},
	},
582
	.dev_attr	= &capability_alwon_dev_attr,
583 584
	.slaves		= omap2420_timer8_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_timer8_slaves),
585
	.class		= &omap2xxx_timer_hwmod_class,
586 587 588 589 590 591 592 593 594 595
};

/* timer9 */
static struct omap_hwmod omap2420_timer9_hwmod;

/* l4_core -> timer9 */
static struct omap_hwmod_ocp_if omap2420_l4_core__timer9 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_timer9_hwmod,
	.clk		= "gpt9_ick",
596
	.addr		= omap2xxx_timer9_addrs,
597 598 599 600 601 602 603 604 605 606 607
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* timer9 slave port */
static struct omap_hwmod_ocp_if *omap2420_timer9_slaves[] = {
	&omap2420_l4_core__timer9,
};

/* timer9 hwmod */
static struct omap_hwmod omap2420_timer9_hwmod = {
	.name		= "timer9",
608
	.mpu_irqs	= omap2_timer9_mpu_irqs,
609 610 611 612 613 614 615 616 617 618
	.main_clk	= "gpt9_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPT9_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPT9_SHIFT,
		},
	},
619
	.dev_attr	= &capability_pwm_dev_attr,
620 621
	.slaves		= omap2420_timer9_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_timer9_slaves),
622
	.class		= &omap2xxx_timer_hwmod_class,
623 624 625 626 627 628 629 630 631 632
};

/* timer10 */
static struct omap_hwmod omap2420_timer10_hwmod;

/* l4_core -> timer10 */
static struct omap_hwmod_ocp_if omap2420_l4_core__timer10 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_timer10_hwmod,
	.clk		= "gpt10_ick",
633
	.addr		= omap2_timer10_addrs,
634 635 636 637 638 639 640 641 642 643 644
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* timer10 slave port */
static struct omap_hwmod_ocp_if *omap2420_timer10_slaves[] = {
	&omap2420_l4_core__timer10,
};

/* timer10 hwmod */
static struct omap_hwmod omap2420_timer10_hwmod = {
	.name		= "timer10",
645
	.mpu_irqs	= omap2_timer10_mpu_irqs,
646 647 648 649 650 651 652 653 654 655
	.main_clk	= "gpt10_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPT10_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPT10_SHIFT,
		},
	},
656
	.dev_attr	= &capability_pwm_dev_attr,
657 658
	.slaves		= omap2420_timer10_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_timer10_slaves),
659
	.class		= &omap2xxx_timer_hwmod_class,
660 661 662 663 664 665 666 667 668 669
};

/* timer11 */
static struct omap_hwmod omap2420_timer11_hwmod;

/* l4_core -> timer11 */
static struct omap_hwmod_ocp_if omap2420_l4_core__timer11 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_timer11_hwmod,
	.clk		= "gpt11_ick",
670
	.addr		= omap2_timer11_addrs,
671 672 673 674 675 676 677 678 679 680 681
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* timer11 slave port */
static struct omap_hwmod_ocp_if *omap2420_timer11_slaves[] = {
	&omap2420_l4_core__timer11,
};

/* timer11 hwmod */
static struct omap_hwmod omap2420_timer11_hwmod = {
	.name		= "timer11",
682
	.mpu_irqs	= omap2_timer11_mpu_irqs,
683 684 685 686 687 688 689 690 691 692
	.main_clk	= "gpt11_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPT11_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPT11_SHIFT,
		},
	},
693
	.dev_attr	= &capability_pwm_dev_attr,
694 695
	.slaves		= omap2420_timer11_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_timer11_slaves),
696
	.class		= &omap2xxx_timer_hwmod_class,
697 698 699 700 701 702 703 704 705 706
};

/* timer12 */
static struct omap_hwmod omap2420_timer12_hwmod;

/* l4_core -> timer12 */
static struct omap_hwmod_ocp_if omap2420_l4_core__timer12 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_timer12_hwmod,
	.clk		= "gpt12_ick",
707
	.addr		= omap2xxx_timer12_addrs,
708 709 710 711 712 713 714 715 716 717 718
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* timer12 slave port */
static struct omap_hwmod_ocp_if *omap2420_timer12_slaves[] = {
	&omap2420_l4_core__timer12,
};

/* timer12 hwmod */
static struct omap_hwmod omap2420_timer12_hwmod = {
	.name		= "timer12",
719
	.mpu_irqs	= omap2xxx_timer12_mpu_irqs,
720 721 722 723 724 725 726 727 728 729
	.main_clk	= "gpt12_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPT12_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPT12_SHIFT,
		},
	},
730
	.dev_attr	= &capability_pwm_dev_attr,
731 732
	.slaves		= omap2420_timer12_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_timer12_slaves),
733
	.class		= &omap2xxx_timer_hwmod_class,
734 735
};

736 737 738 739 740 741 742
/* l4_wkup -> wd_timer2 */
static struct omap_hwmod_addr_space omap2420_wd_timer2_addrs[] = {
	{
		.pa_start	= 0x48022000,
		.pa_end		= 0x4802207f,
		.flags		= ADDR_TYPE_RT
	},
743
	{ }
744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
};

static struct omap_hwmod_ocp_if omap2420_l4_wkup__wd_timer2 = {
	.master		= &omap2420_l4_wkup_hwmod,
	.slave		= &omap2420_wd_timer2_hwmod,
	.clk		= "mpu_wdt_ick",
	.addr		= omap2420_wd_timer2_addrs,
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* wd_timer2 */
static struct omap_hwmod_ocp_if *omap2420_wd_timer2_slaves[] = {
	&omap2420_l4_wkup__wd_timer2,
};

static struct omap_hwmod omap2420_wd_timer2_hwmod = {
	.name		= "wd_timer2",
761
	.class		= &omap2xxx_wd_timer_hwmod_class,
762 763 764 765 766 767 768 769 770 771 772 773 774 775
	.main_clk	= "mpu_wdt_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_MPU_WDT_SHIFT,
			.module_offs = WKUP_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_MPU_WDT_SHIFT,
		},
	},
	.slaves		= omap2420_wd_timer2_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_wd_timer2_slaves),
};

776 777 778 779 780 781 782 783
/* UART1 */

static struct omap_hwmod_ocp_if *omap2420_uart1_slaves[] = {
	&omap2_l4_core__uart1,
};

static struct omap_hwmod omap2420_uart1_hwmod = {
	.name		= "uart1",
784
	.mpu_irqs	= omap2_uart1_mpu_irqs,
785
	.sdma_reqs	= omap2_uart1_sdma_reqs,
786 787 788 789 790 791 792 793 794 795 796 797
	.main_clk	= "uart1_fck",
	.prcm		= {
		.omap2 = {
			.module_offs = CORE_MOD,
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_UART1_SHIFT,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_EN_UART1_SHIFT,
		},
	},
	.slaves		= omap2420_uart1_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_uart1_slaves),
798
	.class		= &omap2_uart_class,
799 800 801 802 803 804 805 806 807 808
};

/* UART2 */

static struct omap_hwmod_ocp_if *omap2420_uart2_slaves[] = {
	&omap2_l4_core__uart2,
};

static struct omap_hwmod omap2420_uart2_hwmod = {
	.name		= "uart2",
809
	.mpu_irqs	= omap2_uart2_mpu_irqs,
810
	.sdma_reqs	= omap2_uart2_sdma_reqs,
811 812 813 814 815 816 817 818 819 820 821 822
	.main_clk	= "uart2_fck",
	.prcm		= {
		.omap2 = {
			.module_offs = CORE_MOD,
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_UART2_SHIFT,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_EN_UART2_SHIFT,
		},
	},
	.slaves		= omap2420_uart2_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_uart2_slaves),
823
	.class		= &omap2_uart_class,
824 825 826 827 828 829 830 831 832 833
};

/* UART3 */

static struct omap_hwmod_ocp_if *omap2420_uart3_slaves[] = {
	&omap2_l4_core__uart3,
};

static struct omap_hwmod omap2420_uart3_hwmod = {
	.name		= "uart3",
834
	.mpu_irqs	= omap2_uart3_mpu_irqs,
835
	.sdma_reqs	= omap2_uart3_sdma_reqs,
836 837 838 839 840 841 842 843 844 845 846 847
	.main_clk	= "uart3_fck",
	.prcm		= {
		.omap2 = {
			.module_offs = CORE_MOD,
			.prcm_reg_id = 2,
			.module_bit = OMAP24XX_EN_UART3_SHIFT,
			.idlest_reg_id = 2,
			.idlest_idle_bit = OMAP24XX_EN_UART3_SHIFT,
		},
	},
	.slaves		= omap2420_uart3_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_uart3_slaves),
848
	.class		= &omap2_uart_class,
849 850
};

851 852 853 854 855 856 857 858 859 860 861
/* dss */
/* dss master ports */
static struct omap_hwmod_ocp_if *omap2420_dss_masters[] = {
	&omap2420_dss__l3,
};

/* l4_core -> dss */
static struct omap_hwmod_ocp_if omap2420_l4_core__dss = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_dss_core_hwmod,
	.clk		= "dss_ick",
862
	.addr		= omap2_dss_addrs,
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883
	.fw = {
		.omap2 = {
			.l4_fw_region  = OMAP2420_L4_CORE_FW_DSS_CORE_REGION,
			.flags	= OMAP_FIREWALL_L4,
		}
	},
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* dss slave ports */
static struct omap_hwmod_ocp_if *omap2420_dss_slaves[] = {
	&omap2420_l4_core__dss,
};

static struct omap_hwmod_opt_clk dss_opt_clks[] = {
	{ .role = "tv_clk", .clk = "dss_54m_fck" },
	{ .role = "sys_clk", .clk = "dss2_fck" },
};

static struct omap_hwmod omap2420_dss_core_hwmod = {
	.name		= "dss_core",
884
	.class		= &omap2_dss_hwmod_class,
885
	.main_clk	= "dss1_fck", /* instead of dss_fck */
886
	.sdma_reqs	= omap2xxx_dss_sdma_chs,
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_DSS1_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_stdby_bit = OMAP24XX_ST_DSS_SHIFT,
		},
	},
	.opt_clks	= dss_opt_clks,
	.opt_clks_cnt = ARRAY_SIZE(dss_opt_clks),
	.slaves		= omap2420_dss_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_dss_slaves),
	.masters	= omap2420_dss_masters,
	.masters_cnt	= ARRAY_SIZE(omap2420_dss_masters),
	.flags		= HWMOD_NO_IDLEST,
};

/* l4_core -> dss_dispc */
static struct omap_hwmod_ocp_if omap2420_l4_core__dss_dispc = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_dss_dispc_hwmod,
	.clk		= "dss_ick",
910
	.addr		= omap2_dss_dispc_addrs,
911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926
	.fw = {
		.omap2 = {
			.l4_fw_region  = OMAP2420_L4_CORE_FW_DSS_DISPC_REGION,
			.flags	= OMAP_FIREWALL_L4,
		}
	},
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* dss_dispc slave ports */
static struct omap_hwmod_ocp_if *omap2420_dss_dispc_slaves[] = {
	&omap2420_l4_core__dss_dispc,
};

static struct omap_hwmod omap2420_dss_dispc_hwmod = {
	.name		= "dss_dispc",
927
	.class		= &omap2_dispc_hwmod_class,
928
	.mpu_irqs	= omap2_dispc_irqs,
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948
	.main_clk	= "dss1_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_DSS1_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_stdby_bit = OMAP24XX_ST_DSS_SHIFT,
		},
	},
	.slaves		= omap2420_dss_dispc_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_dss_dispc_slaves),
	.flags		= HWMOD_NO_IDLEST,
};

/* l4_core -> dss_rfbi */
static struct omap_hwmod_ocp_if omap2420_l4_core__dss_rfbi = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_dss_rfbi_hwmod,
	.clk		= "dss_ick",
949
	.addr		= omap2_dss_rfbi_addrs,
950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965
	.fw = {
		.omap2 = {
			.l4_fw_region  = OMAP2420_L4_CORE_FW_DSS_CORE_REGION,
			.flags	= OMAP_FIREWALL_L4,
		}
	},
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* dss_rfbi slave ports */
static struct omap_hwmod_ocp_if *omap2420_dss_rfbi_slaves[] = {
	&omap2420_l4_core__dss_rfbi,
};

static struct omap_hwmod omap2420_dss_rfbi_hwmod = {
	.name		= "dss_rfbi",
966
	.class		= &omap2_rfbi_hwmod_class,
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984
	.main_clk	= "dss1_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_DSS1_SHIFT,
			.module_offs = CORE_MOD,
		},
	},
	.slaves		= omap2420_dss_rfbi_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_dss_rfbi_slaves),
	.flags		= HWMOD_NO_IDLEST,
};

/* l4_core -> dss_venc */
static struct omap_hwmod_ocp_if omap2420_l4_core__dss_venc = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_dss_venc_hwmod,
	.clk		= "dss_54m_fck",
985
	.addr		= omap2_dss_venc_addrs,
986 987 988 989 990 991
	.fw = {
		.omap2 = {
			.l4_fw_region  = OMAP2420_L4_CORE_FW_DSS_VENC_REGION,
			.flags	= OMAP_FIREWALL_L4,
		}
	},
992
	.flags		= OCPIF_SWSUP_IDLE,
993 994 995 996 997 998 999 1000 1001 1002
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* dss_venc slave ports */
static struct omap_hwmod_ocp_if *omap2420_dss_venc_slaves[] = {
	&omap2420_l4_core__dss_venc,
};

static struct omap_hwmod omap2420_dss_venc_hwmod = {
	.name		= "dss_venc",
1003
	.class		= &omap2_venc_hwmod_class,
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
	.main_clk	= "dss1_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_DSS1_SHIFT,
			.module_offs = CORE_MOD,
		},
	},
	.slaves		= omap2420_dss_venc_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_dss_venc_slaves),
	.flags		= HWMOD_NO_IDLEST,
};

1017 1018 1019 1020 1021
/* I2C common */
static struct omap_hwmod_class_sysconfig i2c_sysc = {
	.rev_offs	= 0x00,
	.sysc_offs	= 0x20,
	.syss_offs	= 0x10,
1022
	.sysc_flags	= (SYSC_HAS_SOFTRESET | SYSS_HAS_RESET_STATUS),
1023 1024 1025 1026 1027 1028
	.sysc_fields	= &omap_hwmod_sysc_type1,
};

static struct omap_hwmod_class i2c_class = {
	.name		= "i2c",
	.sysc		= &i2c_sysc,
1029
	.rev		= OMAP_I2C_IP_VERSION_1,
1030
	.reset		= &omap_i2c_reset,
1031 1032
};

1033 1034 1035 1036 1037 1038
static struct omap_i2c_dev_attr i2c_dev_attr = {
	.flags		= OMAP_I2C_FLAG_NO_FIFO |
			  OMAP_I2C_FLAG_SIMPLE_CLOCK |
			  OMAP_I2C_FLAG_16BIT_DATA_REG |
			  OMAP_I2C_FLAG_BUS_SHIFT_2,
};
1039 1040 1041 1042 1043 1044 1045 1046 1047

/* I2C1 */

static struct omap_hwmod_ocp_if *omap2420_i2c1_slaves[] = {
	&omap2420_l4_core__i2c1,
};

static struct omap_hwmod omap2420_i2c1_hwmod = {
	.name		= "i2c1",
1048
	.mpu_irqs	= omap2_i2c1_mpu_irqs,
1049
	.sdma_reqs	= omap2_i2c1_sdma_reqs,
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
	.main_clk	= "i2c1_fck",
	.prcm		= {
		.omap2 = {
			.module_offs = CORE_MOD,
			.prcm_reg_id = 1,
			.module_bit = OMAP2420_EN_I2C1_SHIFT,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP2420_ST_I2C1_SHIFT,
		},
	},
	.slaves		= omap2420_i2c1_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_i2c1_slaves),
	.class		= &i2c_class,
	.dev_attr	= &i2c_dev_attr,
	.flags		= HWMOD_16BIT_REG,
};

/* I2C2 */

static struct omap_hwmod_ocp_if *omap2420_i2c2_slaves[] = {
	&omap2420_l4_core__i2c2,
};

static struct omap_hwmod omap2420_i2c2_hwmod = {
	.name		= "i2c2",
1075
	.mpu_irqs	= omap2_i2c2_mpu_irqs,
1076
	.sdma_reqs	= omap2_i2c2_sdma_reqs,
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
	.main_clk	= "i2c2_fck",
	.prcm		= {
		.omap2 = {
			.module_offs = CORE_MOD,
			.prcm_reg_id = 1,
			.module_bit = OMAP2420_EN_I2C2_SHIFT,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP2420_ST_I2C2_SHIFT,
		},
	},
	.slaves		= omap2420_i2c2_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_i2c2_slaves),
	.class		= &i2c_class,
	.dev_attr	= &i2c_dev_attr,
	.flags		= HWMOD_16BIT_REG,
};

1094 1095 1096 1097 1098 1099 1100
/* l4_wkup -> gpio1 */
static struct omap_hwmod_addr_space omap2420_gpio1_addr_space[] = {
	{
		.pa_start	= 0x48018000,
		.pa_end		= 0x480181ff,
		.flags		= ADDR_TYPE_RT
	},
1101
	{ }
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
};

static struct omap_hwmod_ocp_if omap2420_l4_wkup__gpio1 = {
	.master		= &omap2420_l4_wkup_hwmod,
	.slave		= &omap2420_gpio1_hwmod,
	.clk		= "gpios_ick",
	.addr		= omap2420_gpio1_addr_space,
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* l4_wkup -> gpio2 */
static struct omap_hwmod_addr_space omap2420_gpio2_addr_space[] = {
	{
		.pa_start	= 0x4801a000,
		.pa_end		= 0x4801a1ff,
		.flags		= ADDR_TYPE_RT
	},
1119
	{ }
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
};

static struct omap_hwmod_ocp_if omap2420_l4_wkup__gpio2 = {
	.master		= &omap2420_l4_wkup_hwmod,
	.slave		= &omap2420_gpio2_hwmod,
	.clk		= "gpios_ick",
	.addr		= omap2420_gpio2_addr_space,
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* l4_wkup -> gpio3 */
static struct omap_hwmod_addr_space omap2420_gpio3_addr_space[] = {
	{
		.pa_start	= 0x4801c000,
		.pa_end		= 0x4801c1ff,
		.flags		= ADDR_TYPE_RT
	},
1137
	{ }
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
};

static struct omap_hwmod_ocp_if omap2420_l4_wkup__gpio3 = {
	.master		= &omap2420_l4_wkup_hwmod,
	.slave		= &omap2420_gpio3_hwmod,
	.clk		= "gpios_ick",
	.addr		= omap2420_gpio3_addr_space,
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* l4_wkup -> gpio4 */
static struct omap_hwmod_addr_space omap2420_gpio4_addr_space[] = {
	{
		.pa_start	= 0x4801e000,
		.pa_end		= 0x4801e1ff,
		.flags		= ADDR_TYPE_RT
	},
1155
	{ }
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178
};

static struct omap_hwmod_ocp_if omap2420_l4_wkup__gpio4 = {
	.master		= &omap2420_l4_wkup_hwmod,
	.slave		= &omap2420_gpio4_hwmod,
	.clk		= "gpios_ick",
	.addr		= omap2420_gpio4_addr_space,
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* gpio dev_attr */
static struct omap_gpio_dev_attr gpio_dev_attr = {
	.bank_width = 32,
	.dbck_flag = false,
};

/* gpio1 */
static struct omap_hwmod_ocp_if *omap2420_gpio1_slaves[] = {
	&omap2420_l4_wkup__gpio1,
};

static struct omap_hwmod omap2420_gpio1_hwmod = {
	.name		= "gpio1",
1179
	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,
1180
	.mpu_irqs	= omap2_gpio1_irqs,
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
	.main_clk	= "gpios_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPIOS_SHIFT,
			.module_offs = WKUP_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPIOS_SHIFT,
		},
	},
	.slaves		= omap2420_gpio1_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_gpio1_slaves),
1193
	.class		= &omap2xxx_gpio_hwmod_class,
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
	.dev_attr	= &gpio_dev_attr,
};

/* gpio2 */
static struct omap_hwmod_ocp_if *omap2420_gpio2_slaves[] = {
	&omap2420_l4_wkup__gpio2,
};

static struct omap_hwmod omap2420_gpio2_hwmod = {
	.name		= "gpio2",
1204
	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,
1205
	.mpu_irqs	= omap2_gpio2_irqs,
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
	.main_clk	= "gpios_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPIOS_SHIFT,
			.module_offs = WKUP_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPIOS_SHIFT,
		},
	},
	.slaves		= omap2420_gpio2_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_gpio2_slaves),
1218
	.class		= &omap2xxx_gpio_hwmod_class,
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228
	.dev_attr	= &gpio_dev_attr,
};

/* gpio3 */
static struct omap_hwmod_ocp_if *omap2420_gpio3_slaves[] = {
	&omap2420_l4_wkup__gpio3,
};

static struct omap_hwmod omap2420_gpio3_hwmod = {
	.name		= "gpio3",
1229
	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,
1230
	.mpu_irqs	= omap2_gpio3_irqs,
1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
	.main_clk	= "gpios_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPIOS_SHIFT,
			.module_offs = WKUP_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPIOS_SHIFT,
		},
	},
	.slaves		= omap2420_gpio3_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_gpio3_slaves),
1243
	.class		= &omap2xxx_gpio_hwmod_class,
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253
	.dev_attr	= &gpio_dev_attr,
};

/* gpio4 */
static struct omap_hwmod_ocp_if *omap2420_gpio4_slaves[] = {
	&omap2420_l4_wkup__gpio4,
};

static struct omap_hwmod omap2420_gpio4_hwmod = {
	.name		= "gpio4",
1254
	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,
1255
	.mpu_irqs	= omap2_gpio4_irqs,
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
	.main_clk	= "gpios_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_GPIOS_SHIFT,
			.module_offs = WKUP_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_GPIOS_SHIFT,
		},
	},
	.slaves		= omap2420_gpio4_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_gpio4_slaves),
1268
	.class		= &omap2xxx_gpio_hwmod_class,
1269 1270 1271
	.dev_attr	= &gpio_dev_attr,
};

1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
/* dma attributes */
static struct omap_dma_dev_attr dma_dev_attr = {
	.dev_caps  = RESERVE_CHANNEL | DMA_LINKED_LCH | GLOBAL_PRIORITY |
						IS_CSSA_32 | IS_CDSA_32,
	.lch_count = 32,
};

/* dma_system -> L3 */
static struct omap_hwmod_ocp_if omap2420_dma_system__l3 = {
	.master		= &omap2420_dma_system_hwmod,
	.slave		= &omap2420_l3_main_hwmod,
	.clk		= "core_l3_ck",
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* dma_system master ports */
static struct omap_hwmod_ocp_if *omap2420_dma_system_masters[] = {
	&omap2420_dma_system__l3,
};

/* l4_core -> dma_system */
static struct omap_hwmod_ocp_if omap2420_l4_core__dma_system = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_dma_system_hwmod,
	.clk		= "sdma_ick",
1297
	.addr		= omap2_dma_system_addrs,
1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* dma_system slave ports */
static struct omap_hwmod_ocp_if *omap2420_dma_system_slaves[] = {
	&omap2420_l4_core__dma_system,
};

static struct omap_hwmod omap2420_dma_system_hwmod = {
	.name		= "dma",
1308
	.class		= &omap2xxx_dma_hwmod_class,
1309
	.mpu_irqs	= omap2_dma_system_irqs,
1310 1311 1312 1313 1314 1315 1316 1317 1318
	.main_clk	= "core_l3_ck",
	.slaves		= omap2420_dma_system_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_dma_system_slaves),
	.masters	= omap2420_dma_system_masters,
	.masters_cnt	= ARRAY_SIZE(omap2420_dma_system_masters),
	.dev_attr	= &dma_dev_attr,
	.flags		= HWMOD_NO_IDLEST,
};

1319 1320 1321 1322 1323
/* mailbox */
static struct omap_hwmod omap2420_mailbox_hwmod;
static struct omap_hwmod_irq_info omap2420_mailbox_irqs[] = {
	{ .name = "dsp", .irq = 26 },
	{ .name = "iva", .irq = 34 },
1324
	{ .irq = -1 }
1325 1326 1327 1328 1329 1330
};

/* l4_core -> mailbox */
static struct omap_hwmod_ocp_if omap2420_l4_core__mailbox = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_mailbox_hwmod,
1331
	.addr		= omap2_mailbox_addrs,
1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* mailbox slave ports */
static struct omap_hwmod_ocp_if *omap2420_mailbox_slaves[] = {
	&omap2420_l4_core__mailbox,
};

static struct omap_hwmod omap2420_mailbox_hwmod = {
	.name		= "mailbox",
1342
	.class		= &omap2xxx_mailbox_hwmod_class,
1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357
	.mpu_irqs	= omap2420_mailbox_irqs,
	.main_clk	= "mailboxes_ick",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_MAILBOXES_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_MAILBOXES_SHIFT,
		},
	},
	.slaves		= omap2420_mailbox_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_mailbox_slaves),
};

C
Charulatha V 已提交
1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
/* mcspi1 */
static struct omap_hwmod_ocp_if *omap2420_mcspi1_slaves[] = {
	&omap2420_l4_core__mcspi1,
};

static struct omap2_mcspi_dev_attr omap_mcspi1_dev_attr = {
	.num_chipselect = 4,
};

static struct omap_hwmod omap2420_mcspi1_hwmod = {
	.name		= "mcspi1_hwmod",
1369
	.mpu_irqs	= omap2_mcspi1_mpu_irqs,
1370
	.sdma_reqs	= omap2_mcspi1_sdma_reqs,
C
Charulatha V 已提交
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382
	.main_clk	= "mcspi1_fck",
	.prcm		= {
		.omap2 = {
			.module_offs = CORE_MOD,
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_MCSPI1_SHIFT,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_MCSPI1_SHIFT,
		},
	},
	.slaves		= omap2420_mcspi1_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_mcspi1_slaves),
1383 1384
	.class		= &omap2xxx_mcspi_class,
	.dev_attr	= &omap_mcspi1_dev_attr,
C
Charulatha V 已提交
1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
};

/* mcspi2 */
static struct omap_hwmod_ocp_if *omap2420_mcspi2_slaves[] = {
	&omap2420_l4_core__mcspi2,
};

static struct omap2_mcspi_dev_attr omap_mcspi2_dev_attr = {
	.num_chipselect = 2,
};

static struct omap_hwmod omap2420_mcspi2_hwmod = {
	.name		= "mcspi2_hwmod",
1398
	.mpu_irqs	= omap2_mcspi2_mpu_irqs,
1399
	.sdma_reqs	= omap2_mcspi2_sdma_reqs,
C
Charulatha V 已提交
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
	.main_clk	= "mcspi2_fck",
	.prcm		= {
		.omap2 = {
			.module_offs = CORE_MOD,
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_MCSPI2_SHIFT,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_MCSPI2_SHIFT,
		},
	},
	.slaves		= omap2420_mcspi2_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_mcspi2_slaves),
1412 1413
	.class		= &omap2xxx_mcspi_class,
	.dev_attr	= &omap_mcspi2_dev_attr,
C
Charulatha V 已提交
1414 1415
};

C
Charulatha V 已提交
1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428
/*
 * 'mcbsp' class
 * multi channel buffered serial port controller
 */

static struct omap_hwmod_class omap2420_mcbsp_hwmod_class = {
	.name = "mcbsp",
};

/* mcbsp1 */
static struct omap_hwmod_irq_info omap2420_mcbsp1_irqs[] = {
	{ .name = "tx", .irq = 59 },
	{ .name = "rx", .irq = 60 },
1429
	{ .irq = -1 }
C
Charulatha V 已提交
1430 1431 1432 1433 1434 1435 1436
};

/* l4_core -> mcbsp1 */
static struct omap_hwmod_ocp_if omap2420_l4_core__mcbsp1 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_mcbsp1_hwmod,
	.clk		= "mcbsp1_ick",
1437
	.addr		= omap2_mcbsp1_addrs,
C
Charulatha V 已提交
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* mcbsp1 slave ports */
static struct omap_hwmod_ocp_if *omap2420_mcbsp1_slaves[] = {
	&omap2420_l4_core__mcbsp1,
};

static struct omap_hwmod omap2420_mcbsp1_hwmod = {
	.name		= "mcbsp1",
	.class		= &omap2420_mcbsp_hwmod_class,
	.mpu_irqs	= omap2420_mcbsp1_irqs,
1450
	.sdma_reqs	= omap2_mcbsp1_sdma_reqs,
C
Charulatha V 已提交
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468
	.main_clk	= "mcbsp1_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_MCBSP1_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_MCBSP1_SHIFT,
		},
	},
	.slaves		= omap2420_mcbsp1_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_mcbsp1_slaves),
};

/* mcbsp2 */
static struct omap_hwmod_irq_info omap2420_mcbsp2_irqs[] = {
	{ .name = "tx", .irq = 62 },
	{ .name = "rx", .irq = 63 },
1469
	{ .irq = -1 }
C
Charulatha V 已提交
1470 1471 1472 1473 1474 1475 1476
};

/* l4_core -> mcbsp2 */
static struct omap_hwmod_ocp_if omap2420_l4_core__mcbsp2 = {
	.master		= &omap2420_l4_core_hwmod,
	.slave		= &omap2420_mcbsp2_hwmod,
	.clk		= "mcbsp2_ick",
1477
	.addr		= omap2xxx_mcbsp2_addrs,
C
Charulatha V 已提交
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489
	.user		= OCP_USER_MPU | OCP_USER_SDMA,
};

/* mcbsp2 slave ports */
static struct omap_hwmod_ocp_if *omap2420_mcbsp2_slaves[] = {
	&omap2420_l4_core__mcbsp2,
};

static struct omap_hwmod omap2420_mcbsp2_hwmod = {
	.name		= "mcbsp2",
	.class		= &omap2420_mcbsp_hwmod_class,
	.mpu_irqs	= omap2420_mcbsp2_irqs,
1490
	.sdma_reqs	= omap2_mcbsp2_sdma_reqs,
C
Charulatha V 已提交
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504
	.main_clk	= "mcbsp2_fck",
	.prcm		= {
		.omap2 = {
			.prcm_reg_id = 1,
			.module_bit = OMAP24XX_EN_MCBSP2_SHIFT,
			.module_offs = CORE_MOD,
			.idlest_reg_id = 1,
			.idlest_idle_bit = OMAP24XX_ST_MCBSP2_SHIFT,
		},
	},
	.slaves		= omap2420_mcbsp2_slaves,
	.slaves_cnt	= ARRAY_SIZE(omap2420_mcbsp2_slaves),
};

1505
static __initdata struct omap_hwmod *omap2420_hwmods[] = {
1506
	&omap2420_l3_main_hwmod,
1507 1508 1509
	&omap2420_l4_core_hwmod,
	&omap2420_l4_wkup_hwmod,
	&omap2420_mpu_hwmod,
1510
	&omap2420_iva_hwmod,
1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524

	&omap2420_timer1_hwmod,
	&omap2420_timer2_hwmod,
	&omap2420_timer3_hwmod,
	&omap2420_timer4_hwmod,
	&omap2420_timer5_hwmod,
	&omap2420_timer6_hwmod,
	&omap2420_timer7_hwmod,
	&omap2420_timer8_hwmod,
	&omap2420_timer9_hwmod,
	&omap2420_timer10_hwmod,
	&omap2420_timer11_hwmod,
	&omap2420_timer12_hwmod,

1525
	&omap2420_wd_timer2_hwmod,
1526 1527 1528
	&omap2420_uart1_hwmod,
	&omap2420_uart2_hwmod,
	&omap2420_uart3_hwmod,
1529 1530 1531 1532 1533 1534
	/* dss class */
	&omap2420_dss_core_hwmod,
	&omap2420_dss_dispc_hwmod,
	&omap2420_dss_rfbi_hwmod,
	&omap2420_dss_venc_hwmod,
	/* i2c class */
1535 1536
	&omap2420_i2c1_hwmod,
	&omap2420_i2c2_hwmod,
1537 1538 1539 1540 1541 1542

	/* gpio class */
	&omap2420_gpio1_hwmod,
	&omap2420_gpio2_hwmod,
	&omap2420_gpio3_hwmod,
	&omap2420_gpio4_hwmod,
1543 1544 1545

	/* dma_system class*/
	&omap2420_dma_system_hwmod,
C
Charulatha V 已提交
1546

1547 1548 1549
	/* mailbox class */
	&omap2420_mailbox_hwmod,

C
Charulatha V 已提交
1550 1551 1552 1553
	/* mcbsp class */
	&omap2420_mcbsp1_hwmod,
	&omap2420_mcbsp2_hwmod,

C
Charulatha V 已提交
1554 1555 1556
	/* mcspi class */
	&omap2420_mcspi1_hwmod,
	&omap2420_mcspi2_hwmod,
1557 1558 1559
	NULL,
};

1560 1561
int __init omap2420_hwmod_init(void)
{
1562
	return omap_hwmod_register(omap2420_hwmods);
1563
}