diff options
Diffstat (limited to 'arch/arm/mach-omap2/omap_hwmod_2430_data.c')
| -rw-r--r-- | arch/arm/mach-omap2/omap_hwmod_2430_data.c | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod_2430_data.c b/arch/arm/mach-omap2/omap_hwmod_2430_data.c index 4d726498123..58b5bc196d3 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2430_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2430_data.c @@ -296,6 +296,11 @@ static struct omap_hwmod_class omap2430_mcbsp_hwmod_class = {  	.rev  = MCBSP_CONFIG_TYPE2,  }; +static struct omap_hwmod_opt_clk mcbsp_opt_clks[] = { +	{ .role = "pad_fck", .clk = "mcbsp_clks" }, +	{ .role = "prcm_fck", .clk = "func_96m_ck" }, +}; +  /* mcbsp1 */  static struct omap_hwmod_irq_info omap2430_mcbsp1_irqs[] = {  	{ .name = "tx",		.irq = 59 }, @@ -320,6 +325,8 @@ static struct omap_hwmod omap2430_mcbsp1_hwmod = {  			.idlest_idle_bit = OMAP24XX_ST_MCBSP1_SHIFT,  		},  	}, +	.opt_clks	= mcbsp_opt_clks, +	.opt_clks_cnt	= ARRAY_SIZE(mcbsp_opt_clks),  };  /* mcbsp2 */ @@ -345,6 +352,8 @@ static struct omap_hwmod omap2430_mcbsp2_hwmod = {  			.idlest_idle_bit = OMAP24XX_ST_MCBSP2_SHIFT,  		},  	}, +	.opt_clks	= mcbsp_opt_clks, +	.opt_clks_cnt	= ARRAY_SIZE(mcbsp_opt_clks),  };  /* mcbsp3 */ @@ -370,6 +379,8 @@ static struct omap_hwmod omap2430_mcbsp3_hwmod = {  			.idlest_idle_bit = OMAP2430_ST_MCBSP3_SHIFT,  		},  	}, +	.opt_clks	= mcbsp_opt_clks, +	.opt_clks_cnt	= ARRAY_SIZE(mcbsp_opt_clks),  };  /* mcbsp4 */ @@ -401,6 +412,8 @@ static struct omap_hwmod omap2430_mcbsp4_hwmod = {  			.idlest_idle_bit = OMAP2430_ST_MCBSP4_SHIFT,  		},  	}, +	.opt_clks	= mcbsp_opt_clks, +	.opt_clks_cnt	= ARRAY_SIZE(mcbsp_opt_clks),  };  /* mcbsp5 */ @@ -432,6 +445,8 @@ static struct omap_hwmod omap2430_mcbsp5_hwmod = {  			.idlest_idle_bit = OMAP2430_ST_MCBSP5_SHIFT,  		},  	}, +	.opt_clks	= mcbsp_opt_clks, +	.opt_clks_cnt	= ARRAY_SIZE(mcbsp_opt_clks),  };  /* MMC/SD/SDIO common */ @@ -938,5 +953,6 @@ static struct omap_hwmod_ocp_if *omap2430_hwmod_ocp_ifs[] __initdata = {  int __init omap2430_hwmod_init(void)  { +	omap_hwmod_init();  	return omap_hwmod_register_links(omap2430_hwmod_ocp_ifs);  }  |