diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2015-11-12 02:32:59 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2015-11-12 12:57:44 -0500 |
commit | 469689a45f78505d864210b3a5d75404eb7f24ee (patch) | |
tree | 6fc8bd35dc889d577ab2b26117a27913128c0ab7 /arch | |
parent | c12ba8ce2335389ce5416f88391cd67c7325c963 (diff) |
ARM: OMAP: DRA7: hwmod: Add data for McASP3
McASP3 is used by default on DRA7x based boards for audio.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Acked-by: Paul Walmsley <paul@pwsan.com>
Tested-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-omap2/omap_hwmod_7xx_data.c | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod_7xx_data.c b/arch/arm/mach-omap2/omap_hwmod_7xx_data.c index 51d1ecb384bd..ee4e04434a94 100644 --- a/arch/arm/mach-omap2/omap_hwmod_7xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_7xx_data.c | |||
@@ -1298,6 +1298,44 @@ static struct omap_hwmod dra7xx_mcspi4_hwmod = { | |||
1298 | }; | 1298 | }; |
1299 | 1299 | ||
1300 | /* | 1300 | /* |
1301 | * 'mcasp' class | ||
1302 | * | ||
1303 | */ | ||
1304 | static struct omap_hwmod_class_sysconfig dra7xx_mcasp_sysc = { | ||
1305 | .sysc_offs = 0x0004, | ||
1306 | .sysc_flags = SYSC_HAS_SIDLEMODE, | ||
1307 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
1308 | .sysc_fields = &omap_hwmod_sysc_type3, | ||
1309 | }; | ||
1310 | |||
1311 | static struct omap_hwmod_class dra7xx_mcasp_hwmod_class = { | ||
1312 | .name = "mcasp", | ||
1313 | .sysc = &dra7xx_mcasp_sysc, | ||
1314 | }; | ||
1315 | |||
1316 | /* mcasp3 */ | ||
1317 | static struct omap_hwmod_opt_clk mcasp3_opt_clks[] = { | ||
1318 | { .role = "ahclkx", .clk = "mcasp3_ahclkx_mux" }, | ||
1319 | }; | ||
1320 | |||
1321 | static struct omap_hwmod dra7xx_mcasp3_hwmod = { | ||
1322 | .name = "mcasp3", | ||
1323 | .class = &dra7xx_mcasp_hwmod_class, | ||
1324 | .clkdm_name = "l4per2_clkdm", | ||
1325 | .main_clk = "mcasp3_aux_gfclk_mux", | ||
1326 | .flags = HWMOD_OPT_CLKS_NEEDED, | ||
1327 | .prcm = { | ||
1328 | .omap4 = { | ||
1329 | .clkctrl_offs = DRA7XX_CM_L4PER2_MCASP3_CLKCTRL_OFFSET, | ||
1330 | .context_offs = DRA7XX_RM_L4PER2_MCASP3_CONTEXT_OFFSET, | ||
1331 | .modulemode = MODULEMODE_SWCTRL, | ||
1332 | }, | ||
1333 | }, | ||
1334 | .opt_clks = mcasp3_opt_clks, | ||
1335 | .opt_clks_cnt = ARRAY_SIZE(mcasp3_opt_clks), | ||
1336 | }; | ||
1337 | |||
1338 | /* | ||
1301 | * 'mmc' class | 1339 | * 'mmc' class |
1302 | * | 1340 | * |
1303 | */ | 1341 | */ |
@@ -2566,6 +2604,22 @@ static struct omap_hwmod_ocp_if dra7xx_l3_main_1__hdmi = { | |||
2566 | .user = OCP_USER_MPU | OCP_USER_SDMA, | 2604 | .user = OCP_USER_MPU | OCP_USER_SDMA, |
2567 | }; | 2605 | }; |
2568 | 2606 | ||
2607 | /* l4_per2 -> mcasp3 */ | ||
2608 | static struct omap_hwmod_ocp_if dra7xx_l4_per2__mcasp3 = { | ||
2609 | .master = &dra7xx_l4_per2_hwmod, | ||
2610 | .slave = &dra7xx_mcasp3_hwmod, | ||
2611 | .clk = "l4_root_clk_div", | ||
2612 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2613 | }; | ||
2614 | |||
2615 | /* l3_main_1 -> mcasp3 */ | ||
2616 | static struct omap_hwmod_ocp_if dra7xx_l3_main_1__mcasp3 = { | ||
2617 | .master = &dra7xx_l3_main_1_hwmod, | ||
2618 | .slave = &dra7xx_mcasp3_hwmod, | ||
2619 | .clk = "l3_iclk_div", | ||
2620 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2621 | }; | ||
2622 | |||
2569 | /* l4_per1 -> elm */ | 2623 | /* l4_per1 -> elm */ |
2570 | static struct omap_hwmod_ocp_if dra7xx_l4_per1__elm = { | 2624 | static struct omap_hwmod_ocp_if dra7xx_l4_per1__elm = { |
2571 | .master = &dra7xx_l4_per1_hwmod, | 2625 | .master = &dra7xx_l4_per1_hwmod, |
@@ -3308,6 +3362,8 @@ static struct omap_hwmod_ocp_if *dra7xx_hwmod_ocp_ifs[] __initdata = { | |||
3308 | &dra7xx_l4_wkup__dcan1, | 3362 | &dra7xx_l4_wkup__dcan1, |
3309 | &dra7xx_l4_per2__dcan2, | 3363 | &dra7xx_l4_per2__dcan2, |
3310 | &dra7xx_l4_per2__cpgmac0, | 3364 | &dra7xx_l4_per2__cpgmac0, |
3365 | &dra7xx_l4_per2__mcasp3, | ||
3366 | &dra7xx_l3_main_1__mcasp3, | ||
3311 | &dra7xx_gmac__mdio, | 3367 | &dra7xx_gmac__mdio, |
3312 | &dra7xx_l4_cfg__dma_system, | 3368 | &dra7xx_l4_cfg__dma_system, |
3313 | &dra7xx_l3_main_1__dss, | 3369 | &dra7xx_l3_main_1__dss, |