]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
clk: qcom: gdsc: Manage clocks with !CONFIG_PM
authorRajendra Nayak <rnayak@codeaurora.org>
Thu, 6 Aug 2015 10:37:54 +0000 (16:07 +0530)
committerSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Mon, 11 Jan 2016 09:54:46 +0000 (09:54 +0000)
With CONFIG_PM disabled, turn the devices clocks on during
driver binding to the device, and turn them off when the
driver is unbound from the device. Platforms can specify
all the clocks that need to be managed in !CONFIG_PM case
using qcom_pm_add_notifier().

The use of pm_clk_add_notifier() isn't appropriate here since we need
to only manage clocks with valid power domain associations done via
DT, instead of what pm_clk_add_notifier() does, which is manage clocks
for all on SoC/off SoC devices associating all of them to a dummy power
domain instead

Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org>
drivers/clk/qcom/gdsc.c
drivers/clk/qcom/gdsc.h

index 20965fc3ecc2b98efba690fa6b5968fe4943ad8e..afc0b15fa2cbd515ae3bf5b9158f8822a12f78ed 100644 (file)
@@ -17,6 +17,7 @@
 #include <linux/err.h>
 #include <linux/jiffies.h>
 #include <linux/kernel.h>
+#include <linux/platform_device.h>
 #include <linux/pm_clock.h>
 #include <linux/pm_domain.h>
 #include <linux/regmap.h>
@@ -303,3 +304,76 @@ void gdsc_unregister(struct device *dev)
 {
        of_genpd_del_provider(dev->of_node);
 }
+
+#ifndef CONFIG_PM
+static void enable_clock(struct of_phandle_args *clkspec)
+{
+       struct clk *clk;
+
+       clk = of_clk_get_from_provider(clkspec);
+       if (!IS_ERR(clk)) {
+               clk_prepare_enable(clk);
+               clk_put(clk);
+       }
+}
+
+static void disable_clock(struct of_phandle_args *clkspec)
+{
+       struct clk *clk;
+
+       clk = of_clk_get_from_provider(clkspec);
+       if (!IS_ERR(clk)) {
+               clk_disable_unprepare(clk);
+               clk_put(clk);
+       }
+}
+
+static int clk_notify(struct notifier_block *nb, unsigned long action,
+                     void *data)
+{
+       int sz, i = 0;
+       struct device *dev = data;
+       struct gdsc_notifier_block *gdsc_nb;
+       struct of_phandle_args clkspec;
+       struct device_node *np = dev->of_node;
+
+       if (!of_find_property(dev->of_node, "power-domains", &sz))
+               return 0;
+
+       gdsc_nb = container_of(nb, struct gdsc_notifier_block, nb);
+
+       if (!gdsc_nb->clock_count)
+               return 0;
+
+       switch (action) {
+       case BUS_NOTIFY_BIND_DRIVER:
+               while (!of_parse_phandle_with_args(np, "clocks", "#clock-cells",
+                                                  i, &clkspec)) {
+                       if (match(clkspec.args[0], gdsc_nb->clocks,
+                                 gdsc_nb->clock_count))
+                               enable_clock(&clkspec);
+                       i++;
+               }
+               break;
+       case BUS_NOTIFY_UNBOUND_DRIVER:
+               while (!of_parse_phandle_with_args(np, "clocks", "#clock-cells",
+                                                  i, &clkspec)) {
+                       if (match(clkspec.args[0], gdsc_nb->clocks,
+                                 gdsc_nb->clock_count))
+                               disable_clock(&clkspec);
+                       i++;
+               }
+               break;
+       }
+       return 0;
+}
+
+void qcom_pm_add_notifier(struct gdsc_notifier_block *gdsc_nb)
+{
+       if (!gdsc_nb)
+               return;
+
+       gdsc_nb->nb.notifier_call = clk_notify,
+       bus_register_notifier(&platform_bus_type, &gdsc_nb->nb);
+}
+#endif
index 0b958a60844a5b928e024c3c4bbc1656cfe4917e..b0a36ede4ffe79fd941d9af1be7897d42f319327 100644 (file)
@@ -76,4 +76,12 @@ static inline int gdsc_register(struct device *d, struct gdsc **g, size_t n,
 
 static inline void gdsc_unregister(struct device *d) {};
 #endif /* CONFIG_QCOM_GDSC */
+#ifndef CONFIG_PM
+struct gdsc_notifier_block {
+       struct notifier_block nb;
+       unsigned int    *clocks;
+       unsigned int    clock_count;
+};
+void qcom_pm_add_notifier(struct gdsc_notifier_block *);
+#endif /* !CONFIG_PM */
 #endif /* __QCOM_GDSC_H__ */