Message ID | 1429017137-20218-10-git-send-email-rnayak@codeaurora.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi, Rajendra, On 04/14/2015 04:12 PM, Rajendra Nayak wrote: > The devices within a gdsc power domain, quite often have additional > clocks to be turned on/off along with the power domain itself. > Once the drivers for these devices are converted to use runtime PM, > it would be possible to remove all clock handling from the drivers if > the gdsc driver can handle it. > Use PM clocks to add support for this. A list of con_ids[] specified > per gdsc would be the clocks turned on/off on every device start/stop > callbacks. > > Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org> > --- > drivers/clk/qcom/gdsc.c | 43 +++++++++++++++++++++++++++++++++++++++++++ > drivers/clk/qcom/gdsc.h | 2 ++ > 2 files changed, 45 insertions(+) <snip> > > +static int gdsc_attach(struct generic_pm_domain *domain, struct device *dev) > +{ > + int ret; > + struct gdsc *sc = domain_to_gdsc(domain); > + char **con_id; > + > + if (!sc->con_ids[0]) > + return 0; Did you test this on your side? It panic kernel badly cause the flexible array is not initialised. Could you revisit the above check. Or you could add below initialisation for every gdsc structure in gcc-xxx.c files. static struct gdsc venus_gdsc = { .gdscr = 0x4c018, .pd = { .name = "venus", }, .con_ids = { NULL }, }; > + > + ret = pm_clk_create(dev); > + if (ret) { > + dev_err(dev, "pm_clk_create failed %d\n", ret); > + return ret; > + } > + > + for (con_id = sc->con_ids; *con_id; con_id++) { > + ret = pm_clk_add(dev, *con_id); > + if (ret) { > + dev_err(dev, "pm_clk_add failed %d\n", ret); > + goto fail; > + } > + } > + return 0; > +fail: > + pm_clk_destroy(dev); > + return ret; > +}; > + <snip>
[] >> >> +static int gdsc_attach(struct generic_pm_domain *domain, struct device *dev) >> +{ >> + int ret; >> + struct gdsc *sc = domain_to_gdsc(domain); >> + char **con_id; >> + >> + if (!sc->con_ids[0]) >> + return 0; > > Did you test this on your side? It panic kernel badly cause the flexible > array is not initialised. > > Could you revisit the above check. Or you could add below initialisation > for every gdsc structure in gcc-xxx.c files. Hey, that does seem like a problem. Not sure how I did not end up seeing it. I'll fix it up, thanks. > > static struct gdsc venus_gdsc = { > .gdscr = 0x4c018, > .pd = { > .name = "venus", > }, > .con_ids = { NULL }, > }; > > >> + >> + ret = pm_clk_create(dev); >> + if (ret) { >> + dev_err(dev, "pm_clk_create failed %d\n", ret); >> + return ret; >> + } >> + >> + for (con_id = sc->con_ids; *con_id; con_id++) { >> + ret = pm_clk_add(dev, *con_id); >> + if (ret) { >> + dev_err(dev, "pm_clk_add failed %d\n", ret); >> + goto fail; >> + } >> + } >> + return 0; >> +fail: >> + pm_clk_destroy(dev); >> + return ret; >> +}; >> + > > <snip> > >
diff --git a/drivers/clk/qcom/gdsc.c b/drivers/clk/qcom/gdsc.c index a59655b..ab55310 100644 --- a/drivers/clk/qcom/gdsc.c +++ b/drivers/clk/qcom/gdsc.c @@ -14,6 +14,7 @@ #include <linux/delay.h> #include <linux/err.h> #include <linux/jiffies.h> +#include <linux/pm_clock.h> #include <linux/slab.h> #include "gdsc.h" @@ -104,6 +105,45 @@ static int gdsc_disable(struct generic_pm_domain *domain) return gdsc_toggle_logic(sc, false); } +static int gdsc_attach(struct generic_pm_domain *domain, struct device *dev) +{ + int ret; + struct gdsc *sc = domain_to_gdsc(domain); + char **con_id; + + if (!sc->con_ids[0]) + return 0; + + ret = pm_clk_create(dev); + if (ret) { + dev_err(dev, "pm_clk_create failed %d\n", ret); + return ret; + } + + for (con_id = sc->con_ids; *con_id; con_id++) { + ret = pm_clk_add(dev, *con_id); + if (ret) { + dev_err(dev, "pm_clk_add failed %d\n", ret); + goto fail; + } + } + return 0; +fail: + pm_clk_destroy(dev); + return ret; +}; + +static void gdsc_detach(struct generic_pm_domain *domain, struct device *dev) +{ + struct gdsc *sc = domain_to_gdsc(domain); + + if (!sc->con_ids[0]) + return; + + pm_clk_destroy(dev); + return; +}; + static int gdsc_init(struct gdsc *sc) { u32 mask, val; @@ -127,6 +167,9 @@ static int gdsc_init(struct gdsc *sc) sc->pd.power_off = gdsc_disable; sc->pd.power_on = gdsc_enable; + sc->pd.attach_dev = gdsc_attach; + sc->pd.detach_dev = gdsc_detach; + sc->pd.flags = GENPD_FLAG_PM_CLK; pm_genpd_init(&sc->pd, NULL, !on); return 0; diff --git a/drivers/clk/qcom/gdsc.h b/drivers/clk/qcom/gdsc.h index e26a496..734f341 100644 --- a/drivers/clk/qcom/gdsc.h +++ b/drivers/clk/qcom/gdsc.h @@ -22,11 +22,13 @@ * @pd: generic power domain * @regmap: regmap for MMIO accesses * @gdscr: gsdc control register + * @con_ids: List of clocks to be controlled for the gdsc */ struct gdsc { struct generic_pm_domain pd; struct regmap *regmap; unsigned int gdscr; + char *con_ids[]; }; #ifdef CONFIG_QCOM_GDSC
The devices within a gdsc power domain, quite often have additional clocks to be turned on/off along with the power domain itself. Once the drivers for these devices are converted to use runtime PM, it would be possible to remove all clock handling from the drivers if the gdsc driver can handle it. Use PM clocks to add support for this. A list of con_ids[] specified per gdsc would be the clocks turned on/off on every device start/stop callbacks. Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org> --- drivers/clk/qcom/gdsc.c | 43 +++++++++++++++++++++++++++++++++++++++++++ drivers/clk/qcom/gdsc.h | 2 ++ 2 files changed, 45 insertions(+)