summaryrefslogtreecommitdiff
path: root/arch/arm/mach-omap2/clkt_iclk.c
diff options
context:
space:
mode:
authorPaul Walmsley <paul@pwsan.com>2011-02-25 22:39:29 (GMT)
committerPaul Walmsley <paul@pwsan.com>2011-03-08 03:03:12 (GMT)
commite892b2528b8dc9eef8ca3f9af7b5b650b4e90bea (patch)
tree241d8a083b2ead40072b4992409f072cbe441173 /arch/arm/mach-omap2/clkt_iclk.c
parent6ae690da1b6315f34ab7312bd2a02d49a606ccf7 (diff)
downloadlinux-fsl-qoriq-e892b2528b8dc9eef8ca3f9af7b5b650b4e90bea.tar.xz
OMAP2430/3xxx: clock: add modem clock autoidle support
OMAP2430 and OMAP3xxx have modem autoidle bits that are actually attached to clocks with CM_FCLKEN bits; add the code and data to handle these. Signed-off-by: Paul Walmsley <paul@pwsan.com> Tested-by: Rajendra Nayak <rnayak@ti.com> Reviewed-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/clkt_iclk.c')
-rw-r--r--arch/arm/mach-omap2/clkt_iclk.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/clkt_iclk.c b/arch/arm/mach-omap2/clkt_iclk.c
index dd8a6d3..3d43fba 100644
--- a/arch/arm/mach-omap2/clkt_iclk.c
+++ b/arch/arm/mach-omap2/clkt_iclk.c
@@ -71,3 +71,12 @@ const struct clkops clkops_omap2_iclk_idle_only = {
.deny_idle = omap2_clkt_iclk_deny_idle,
};
+const struct clkops clkops_omap2_mdmclk_dflt_wait = {
+ .enable = omap2_dflt_clk_enable,
+ .disable = omap2_dflt_clk_disable,
+ .find_companion = omap2_clk_dflt_find_companion,
+ .find_idlest = omap2_clk_dflt_find_idlest,
+ .allow_idle = omap2_clkt_iclk_allow_idle,
+ .deny_idle = omap2_clkt_iclk_deny_idle,
+};
+