aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorSebastien Jan <s-jan@ti.com>2011-09-23 13:31:19 -0400
committerPaolo Pisati <paolo.pisati@canonical.com>2012-08-17 04:19:21 -0400
commite28279295b7334cfaf7dd22295c871ef86eacdc7 (patch)
tree2bd1271c81af64762cbb008a303d157e18df390d /arch/arm
parent924c4a91e110f7e8649c0fd0b1e5793de9e3d3ac (diff)
hwmod: add missing ipu addresses
Signed-off-by: Sebastien Jan <s-jan@ti.com>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/mach-omap2/omap_hwmod_44xx_data.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c
index 6c478e8afb3..05daa418bcd 100644
--- a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c
+++ b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c
@@ -2669,11 +2669,21 @@ static struct omap_hwmod_ocp_if *omap44xx_ipu_masters[] = {
2669 &omap44xx_ipu__l3_main_2, 2669 &omap44xx_ipu__l3_main_2,
2670}; 2670};
2671 2671
2672static struct omap_hwmod_addr_space omap44xx_ipummu_addrs[] = {
2673 {
2674 .pa_start = 0x55082000,
2675 .pa_end = 0x550820ff,
2676 .flags = ADDR_TYPE_RT
2677 },
2678};
2679
2672/* l3_main_2 -> ipu */ 2680/* l3_main_2 -> ipu */
2673static struct omap_hwmod_ocp_if omap44xx_l3_main_2__ipu = { 2681static struct omap_hwmod_ocp_if omap44xx_l3_main_2__ipu = {
2674 .master = &omap44xx_l3_main_2_hwmod, 2682 .master = &omap44xx_l3_main_2_hwmod,
2675 .slave = &omap44xx_ipu_hwmod, 2683 .slave = &omap44xx_ipu_hwmod,
2676 .clk = "l3_div_ck", 2684 .clk = "l3_div_ck",
2685 .addr = omap44xx_ipummu_addrs,
2686 .addr_cnt = ARRAY_SIZE(omap44xx_ipummu_addrs),
2677 .user = OCP_USER_MPU | OCP_USER_SDMA, 2687 .user = OCP_USER_MPU | OCP_USER_SDMA,
2678}; 2688};
2679 2689