From: abhinavk@codeaurora.org
To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: Rob Clark <robdclark@gmail.com>, Sean Paul <sean@poorly.run>,
Jonathan Marek <jonathan@marek.ca>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
linux-arm-msm@vger.kernel.org, Daniel Palmer <daniel@0x0f.com>,
dri-devel@lists.freedesktop.org, David Airlie <airlied@linux.ie>,
Daniel Vetter <daniel@ffwll.ch>,
freedreno@lists.freedesktop.org, linux-clk@vger.kernel.org
Subject: Re: [Freedreno] [PATCH v2 01/28] clk: fixed: add devm helper for clk_hw_register_fixed_factor()
Date: Fri, 26 Mar 2021 10:43:10 -0700 [thread overview]
Message-ID: <4d2f69071681f0ccd2bffb7740a4f260@codeaurora.org> (raw)
In-Reply-To: <20210324151846.2774204-2-dmitry.baryshkov@linaro.org>
Hi Dmitry
On 2021-03-24 08:18, Dmitry Baryshkov wrote:
> From: Daniel Palmer <daniel@0x0f.com>
>
> Add a devm helper for clk_hw_register_fixed_factor() so that drivers
> that internally
> register fixed factor clocks for things like dividers don't need to
> manually unregister
> them on remove or if probe fails.
>
> Signed-off-by: Daniel Palmer <daniel@0x0f.com>
> Link:
> https://lore.kernel.org/r/20210211052206.2955988-4-daniel@0x0f.com
> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Doesnt this need your signed-off too?
Other than that,
Reviewed-by: Abhinav Kumar <abhinavk@codeaurora.org>
> ---
> drivers/clk/clk-fixed-factor.c | 39 ++++++++++++++++++++++++++++------
> include/linux/clk-provider.h | 4 +++-
> 2 files changed, 36 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/clk/clk-fixed-factor.c
> b/drivers/clk/clk-fixed-factor.c
> index 910e6e74ae90..4f7bf3929d6d 100644
> --- a/drivers/clk/clk-fixed-factor.c
> +++ b/drivers/clk/clk-fixed-factor.c
> @@ -64,10 +64,16 @@ const struct clk_ops clk_fixed_factor_ops = {
> };
> EXPORT_SYMBOL_GPL(clk_fixed_factor_ops);
>
> +static void devm_clk_hw_register_fixed_factor_release(struct device
> *dev, void *res)
> +{
> + clk_hw_unregister_fixed_factor(&((struct clk_fixed_factor
> *)res)->hw);
> +}
> +
> static struct clk_hw *
> __clk_hw_register_fixed_factor(struct device *dev, struct device_node
> *np,
> const char *name, const char *parent_name, int index,
> - unsigned long flags, unsigned int mult, unsigned int div)
> + unsigned long flags, unsigned int mult, unsigned int div,
> + bool devm)
> {
> struct clk_fixed_factor *fix;
> struct clk_init_data init = { };
> @@ -75,7 +81,15 @@ __clk_hw_register_fixed_factor(struct device *dev,
> struct device_node *np,
> struct clk_hw *hw;
> int ret;
>
> - fix = kmalloc(sizeof(*fix), GFP_KERNEL);
> + /* You can't use devm without a dev */
> + if (devm && !dev)
> + return ERR_PTR(-EINVAL);
> +
> + if (devm)
> + fix = devres_alloc(devm_clk_hw_register_fixed_factor_release,
> + sizeof(*fix), GFP_KERNEL);
> + else
> + fix = kmalloc(sizeof(*fix), GFP_KERNEL);
> if (!fix)
> return ERR_PTR(-ENOMEM);
>
> @@ -99,9 +113,13 @@ __clk_hw_register_fixed_factor(struct device *dev,
> struct device_node *np,
> else
> ret = of_clk_hw_register(np, hw);
> if (ret) {
> - kfree(fix);
> + if (devm)
> + devres_free(fix);
> + else
> + kfree(fix);
> hw = ERR_PTR(ret);
> - }
> + } else if (devm)
> + devres_add(dev, fix);
>
> return hw;
> }
> @@ -111,7 +129,7 @@ struct clk_hw *clk_hw_register_fixed_factor(struct
> device *dev,
> unsigned int mult, unsigned int div)
> {
> return __clk_hw_register_fixed_factor(dev, NULL, name, parent_name,
> -1,
> - flags, mult, div);
> + flags, mult, div, false);
> }
> EXPORT_SYMBOL_GPL(clk_hw_register_fixed_factor);
>
> @@ -153,6 +171,15 @@ void clk_hw_unregister_fixed_factor(struct clk_hw
> *hw)
> }
> EXPORT_SYMBOL_GPL(clk_hw_unregister_fixed_factor);
>
> +struct clk_hw *devm_clk_hw_register_fixed_factor(struct device *dev,
> + const char *name, const char *parent_name, unsigned long flags,
> + unsigned int mult, unsigned int div)
> +{
> + return __clk_hw_register_fixed_factor(dev, NULL, name, parent_name,
> -1,
> + flags, mult, div, true);
> +}
> +EXPORT_SYMBOL_GPL(devm_clk_hw_register_fixed_factor);
> +
> #ifdef CONFIG_OF
> static const struct of_device_id set_rate_parent_matches[] = {
> { .compatible = "allwinner,sun4i-a10-pll3-2x-clk" },
> @@ -185,7 +212,7 @@ static struct clk_hw
> *_of_fixed_factor_clk_setup(struct device_node *node)
> flags |= CLK_SET_RATE_PARENT;
>
> hw = __clk_hw_register_fixed_factor(NULL, node, clk_name, NULL, 0,
> - flags, mult, div);
> + flags, mult, div, false);
> if (IS_ERR(hw)) {
> /*
> * Clear OF_POPULATED flag so that clock registration can be
> diff --git a/include/linux/clk-provider.h
> b/include/linux/clk-provider.h
> index e4316890661a..58f6fe866ae9 100644
> --- a/include/linux/clk-provider.h
> +++ b/include/linux/clk-provider.h
> @@ -941,7 +941,9 @@ struct clk_hw *clk_hw_register_fixed_factor(struct
> device *dev,
> const char *name, const char *parent_name, unsigned long flags,
> unsigned int mult, unsigned int div);
> void clk_hw_unregister_fixed_factor(struct clk_hw *hw);
> -
> +struct clk_hw *devm_clk_hw_register_fixed_factor(struct device *dev,
> + const char *name, const char *parent_name, unsigned long flags,
> + unsigned int mult, unsigned int div);
> /**
> * struct clk_fractional_divider - adjustable fractional divider clock
> *
WARNING: multiple messages have this Message-ID (diff)
From: abhinavk@codeaurora.org
To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: freedreno@lists.freedesktop.org,
Jonathan Marek <jonathan@marek.ca>,
Stephen Boyd <sboyd@kernel.org>,
linux-arm-msm@vger.kernel.org,
Michael Turquette <mturquette@baylibre.com>,
Daniel Palmer <daniel@0x0f.com>,
dri-devel@lists.freedesktop.org, David Airlie <airlied@linux.ie>,
Sean Paul <sean@poorly.run>,
linux-clk@vger.kernel.org
Subject: Re: [Freedreno] [PATCH v2 01/28] clk: fixed: add devm helper for clk_hw_register_fixed_factor()
Date: Fri, 26 Mar 2021 10:43:10 -0700 [thread overview]
Message-ID: <4d2f69071681f0ccd2bffb7740a4f260@codeaurora.org> (raw)
In-Reply-To: <20210324151846.2774204-2-dmitry.baryshkov@linaro.org>
Hi Dmitry
On 2021-03-24 08:18, Dmitry Baryshkov wrote:
> From: Daniel Palmer <daniel@0x0f.com>
>
> Add a devm helper for clk_hw_register_fixed_factor() so that drivers
> that internally
> register fixed factor clocks for things like dividers don't need to
> manually unregister
> them on remove or if probe fails.
>
> Signed-off-by: Daniel Palmer <daniel@0x0f.com>
> Link:
> https://lore.kernel.org/r/20210211052206.2955988-4-daniel@0x0f.com
> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Doesnt this need your signed-off too?
Other than that,
Reviewed-by: Abhinav Kumar <abhinavk@codeaurora.org>
> ---
> drivers/clk/clk-fixed-factor.c | 39 ++++++++++++++++++++++++++++------
> include/linux/clk-provider.h | 4 +++-
> 2 files changed, 36 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/clk/clk-fixed-factor.c
> b/drivers/clk/clk-fixed-factor.c
> index 910e6e74ae90..4f7bf3929d6d 100644
> --- a/drivers/clk/clk-fixed-factor.c
> +++ b/drivers/clk/clk-fixed-factor.c
> @@ -64,10 +64,16 @@ const struct clk_ops clk_fixed_factor_ops = {
> };
> EXPORT_SYMBOL_GPL(clk_fixed_factor_ops);
>
> +static void devm_clk_hw_register_fixed_factor_release(struct device
> *dev, void *res)
> +{
> + clk_hw_unregister_fixed_factor(&((struct clk_fixed_factor
> *)res)->hw);
> +}
> +
> static struct clk_hw *
> __clk_hw_register_fixed_factor(struct device *dev, struct device_node
> *np,
> const char *name, const char *parent_name, int index,
> - unsigned long flags, unsigned int mult, unsigned int div)
> + unsigned long flags, unsigned int mult, unsigned int div,
> + bool devm)
> {
> struct clk_fixed_factor *fix;
> struct clk_init_data init = { };
> @@ -75,7 +81,15 @@ __clk_hw_register_fixed_factor(struct device *dev,
> struct device_node *np,
> struct clk_hw *hw;
> int ret;
>
> - fix = kmalloc(sizeof(*fix), GFP_KERNEL);
> + /* You can't use devm without a dev */
> + if (devm && !dev)
> + return ERR_PTR(-EINVAL);
> +
> + if (devm)
> + fix = devres_alloc(devm_clk_hw_register_fixed_factor_release,
> + sizeof(*fix), GFP_KERNEL);
> + else
> + fix = kmalloc(sizeof(*fix), GFP_KERNEL);
> if (!fix)
> return ERR_PTR(-ENOMEM);
>
> @@ -99,9 +113,13 @@ __clk_hw_register_fixed_factor(struct device *dev,
> struct device_node *np,
> else
> ret = of_clk_hw_register(np, hw);
> if (ret) {
> - kfree(fix);
> + if (devm)
> + devres_free(fix);
> + else
> + kfree(fix);
> hw = ERR_PTR(ret);
> - }
> + } else if (devm)
> + devres_add(dev, fix);
>
> return hw;
> }
> @@ -111,7 +129,7 @@ struct clk_hw *clk_hw_register_fixed_factor(struct
> device *dev,
> unsigned int mult, unsigned int div)
> {
> return __clk_hw_register_fixed_factor(dev, NULL, name, parent_name,
> -1,
> - flags, mult, div);
> + flags, mult, div, false);
> }
> EXPORT_SYMBOL_GPL(clk_hw_register_fixed_factor);
>
> @@ -153,6 +171,15 @@ void clk_hw_unregister_fixed_factor(struct clk_hw
> *hw)
> }
> EXPORT_SYMBOL_GPL(clk_hw_unregister_fixed_factor);
>
> +struct clk_hw *devm_clk_hw_register_fixed_factor(struct device *dev,
> + const char *name, const char *parent_name, unsigned long flags,
> + unsigned int mult, unsigned int div)
> +{
> + return __clk_hw_register_fixed_factor(dev, NULL, name, parent_name,
> -1,
> + flags, mult, div, true);
> +}
> +EXPORT_SYMBOL_GPL(devm_clk_hw_register_fixed_factor);
> +
> #ifdef CONFIG_OF
> static const struct of_device_id set_rate_parent_matches[] = {
> { .compatible = "allwinner,sun4i-a10-pll3-2x-clk" },
> @@ -185,7 +212,7 @@ static struct clk_hw
> *_of_fixed_factor_clk_setup(struct device_node *node)
> flags |= CLK_SET_RATE_PARENT;
>
> hw = __clk_hw_register_fixed_factor(NULL, node, clk_name, NULL, 0,
> - flags, mult, div);
> + flags, mult, div, false);
> if (IS_ERR(hw)) {
> /*
> * Clear OF_POPULATED flag so that clock registration can be
> diff --git a/include/linux/clk-provider.h
> b/include/linux/clk-provider.h
> index e4316890661a..58f6fe866ae9 100644
> --- a/include/linux/clk-provider.h
> +++ b/include/linux/clk-provider.h
> @@ -941,7 +941,9 @@ struct clk_hw *clk_hw_register_fixed_factor(struct
> device *dev,
> const char *name, const char *parent_name, unsigned long flags,
> unsigned int mult, unsigned int div);
> void clk_hw_unregister_fixed_factor(struct clk_hw *hw);
> -
> +struct clk_hw *devm_clk_hw_register_fixed_factor(struct device *dev,
> + const char *name, const char *parent_name, unsigned long flags,
> + unsigned int mult, unsigned int div);
> /**
> * struct clk_fractional_divider - adjustable fractional divider clock
> *
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2021-03-26 17:44 UTC|newest]
Thread overview: 84+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-24 15:18 [PATCH v2 00/28] drm/msm/dsi: refactor MSM DSI PHY/PLL drivers Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 01/28] clk: fixed: add devm helper for clk_hw_register_fixed_factor() Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-26 17:43 ` abhinavk [this message]
2021-03-26 17:43 ` [Freedreno] " abhinavk
2021-03-24 15:18 ` [PATCH v2 02/28] clk: mux: provide devm_clk_hw_register_mux() Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-26 17:44 ` [Freedreno] " abhinavk
2021-03-26 17:44 ` abhinavk
2021-03-24 15:18 ` [PATCH v2 03/28] clk: divider: add devm_clk_hw_register_divider Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-26 17:45 ` [Freedreno] " abhinavk
2021-03-26 17:45 ` abhinavk
2021-03-24 15:18 ` [PATCH v2 04/28] drm/msm/dsi: replace PHY's init callback with configurable data Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-26 17:46 ` [Freedreno] " abhinavk
2021-03-26 17:46 ` abhinavk
2021-03-24 15:18 ` [PATCH v2 05/28] drm/msm/dsi: fuse dsi_pll_* code into dsi_phy_* code Dmitry Baryshkov
2021-03-26 17:48 ` [Freedreno] " abhinavk
2021-03-24 15:18 ` [PATCH v2 06/28] drm/msm/dsi: drop multiple pll enable_seq support Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-26 17:49 ` [Freedreno] " abhinavk
2021-03-26 17:49 ` abhinavk
2021-03-24 15:18 ` [PATCH v2 07/28] drm/msm/dsi: move all PLL callbacks into PHY config struct Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-26 17:51 ` [Freedreno] " abhinavk
2021-03-26 17:51 ` abhinavk
2021-03-24 15:18 ` [PATCH v2 08/28] drm/msm/dsi: drop global msm_dsi_phy_type enumaration Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-26 17:52 ` [Freedreno] " abhinavk
2021-03-26 17:52 ` abhinavk
2021-03-24 15:18 ` [PATCH v2 09/28] drm/msm/dsi: move min/max PLL rate to phy config Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-26 17:53 ` [Freedreno] " abhinavk
2021-03-26 17:53 ` abhinavk
2021-03-24 15:18 ` [PATCH v2 10/28] drm/msm/dsi: remove msm_dsi_pll_set_usecase Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-26 17:54 ` [Freedreno] " abhinavk
2021-03-26 17:54 ` abhinavk
2021-03-24 15:18 ` [PATCH v2 11/28] drm/msm/dsi: stop setting clock parents manually Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-26 18:05 ` [Freedreno] " abhinavk
2021-03-26 18:05 ` abhinavk
2021-03-26 20:36 ` Dmitry Baryshkov
2021-03-26 20:36 ` Dmitry Baryshkov
2021-03-26 20:48 ` abhinavk
2021-03-26 20:48 ` abhinavk
2021-03-27 0:58 ` Dmitry Baryshkov
2021-03-27 0:58 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 12/28] arm64: dts: qcom: sdm845: assign DSI clock source parents Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 13/28] arm64: dts: qcom: sc7180: " Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 14/28] drm/msm/dsi: push provided clocks handling into a generic code Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 15/28] drm/msm/dsi: use devm_clk_*register to registe DSI PHY clocks Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 16/28] drm/msm/dsi: use devm_of_clk_add_hw_provider Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 17/28] drm/msm/dsi: make save/restore_state phy-level functions Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 18/28] drm/msm/dsi: drop vco_delay setting from 7nm, 10nm, 14nm drivers Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 19/28] drm/msm/dpu: simplify vco_delay handling in dsi_phy_28nm driver Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 20/28] drm/msi/dsi: inline msm_dsi_pll_helper_clk_prepare/unprepare Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 21/28] drm/msm/dsi: make save_state/restore_state callbacks accept msm_dsi_phy Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 22/28] drm/msm/dsi: drop msm_dsi_pll abstracton Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 23/28] drm/msm/dsi: drop PLL accessor functions Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 24/28] drm/msm/dsi: move ioremaps to dsi_phy_driver_probe Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 25/28] drm/msm/dsi: remove duplicate fields from dsi_pll_Nnm instances Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 26/28] drm/msm/dsi: remove temp data from global pll structure Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 27/28] drm/msm/dsi: inline msm_dsi_phy_set_src_pll Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 28/28] drm/msm/dsi: stop passing src_pll_id to the phy_enable call Dmitry Baryshkov
2021-03-24 15:18 ` Dmitry Baryshkov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4d2f69071681f0ccd2bffb7740a4f260@codeaurora.org \
--to=abhinavk@codeaurora.org \
--cc=airlied@linux.ie \
--cc=daniel@0x0f.com \
--cc=daniel@ffwll.ch \
--cc=dmitry.baryshkov@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=jonathan@marek.ca \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=robdclark@gmail.com \
--cc=sboyd@kernel.org \
--cc=sean@poorly.run \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.