aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorSimon Horman <horms+renesas@verge.net.au>2016-04-22 03:22:21 -0400
committerSimon Horman <horms+renesas@verge.net.au>2016-04-22 03:22:21 -0400
commita93fed0956bef9e4df420aa181198d86d347895d (patch)
treec0527fea578f7ca2ee969f2f9094b529e671aa54 /include/linux
parent839a04d847f5871516f500091519c52dc40fe01d (diff)
parent2066390ad47b374f3d35075a32325b47d15bf735 (diff)
Merge tag 'clk-renesas-for-v4.7-tag2' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers into rcar-sysc-for-v4.7
clk: renesas: R-Car SYSC PM Domain Preparation - Export the CPG/MSSR and CPG/MSTP attach/detach_dev callbacks, so they can be called by the R-Car SYSC PM Domain driver.
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/clk/renesas.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/include/linux/clk/renesas.h b/include/linux/clk/renesas.h
index 7adfd80fbf55..ba6fa4148515 100644
--- a/include/linux/clk/renesas.h
+++ b/include/linux/clk/renesas.h
@@ -24,12 +24,20 @@ void r8a7778_clocks_init(u32 mode);
24void r8a7779_clocks_init(u32 mode); 24void r8a7779_clocks_init(u32 mode);
25void rcar_gen2_clocks_init(u32 mode); 25void rcar_gen2_clocks_init(u32 mode);
26 26
27#ifdef CONFIG_PM_GENERIC_DOMAINS_OF
28void cpg_mstp_add_clk_domain(struct device_node *np); 27void cpg_mstp_add_clk_domain(struct device_node *np);
29int cpg_mstp_attach_dev(struct generic_pm_domain *domain, struct device *dev); 28#ifdef CONFIG_CLK_RENESAS_CPG_MSTP
30void cpg_mstp_detach_dev(struct generic_pm_domain *domain, struct device *dev); 29int cpg_mstp_attach_dev(struct generic_pm_domain *unused, struct device *dev);
30void cpg_mstp_detach_dev(struct generic_pm_domain *unused, struct device *dev);
31#else 31#else
32static inline void cpg_mstp_add_clk_domain(struct device_node *np) {} 32#define cpg_mstp_attach_dev NULL
33#define cpg_mstp_detach_dev NULL
33#endif 34#endif
34 35
36#ifdef CONFIG_CLK_RENESAS_CPG_MSSR
37int cpg_mssr_attach_dev(struct generic_pm_domain *unused, struct device *dev);
38void cpg_mssr_detach_dev(struct generic_pm_domain *unused, struct device *dev);
39#else
40#define cpg_mssr_attach_dev NULL
41#define cpg_mssr_detach_dev NULL
42#endif
35#endif 43#endif