From: Frank Li <Frank.li@nxp.com>
To: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
Cc: Abel Vesa <abelvesa@kernel.org>, Peng Fan <peng.fan@nxp.com>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>, Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <s.hauer@pengutronix.de>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
linux-clk@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/2] clk: imx95-blk-ctl: Save platform data in imx95_blk_ctl structure
Date: Wed, 30 Jul 2025 12:17:44 -0400 [thread overview]
Message-ID: <aIpFqB21VWlLgHVy@lizhi-Precision-Tower-5810> (raw)
In-Reply-To: <20250730125932.357379-2-laurentiu.palcu@oss.nxp.com>
On Wed, Jul 30, 2025 at 03:59:30PM +0300, Laurentiu Palcu wrote:
> Add a platform data (pdata) member to struct imx95_blk_ctl to store the
> result of of_device_get_match_data() during probe to avoid redundant
> calls in suspend and resume functions.
>
> Signed-off-by: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
Reviewed-by: Frank Li <Frank.Li@nxp.com>
> ---
> drivers/clk/imx/clk-imx95-blk-ctl.c | 36 +++++++++++------------------
> 1 file changed, 13 insertions(+), 23 deletions(-)
>
> diff --git a/drivers/clk/imx/clk-imx95-blk-ctl.c b/drivers/clk/imx/clk-imx95-blk-ctl.c
> index 7e88877a62451..c72debaf3a60b 100644
> --- a/drivers/clk/imx/clk-imx95-blk-ctl.c
> +++ b/drivers/clk/imx/clk-imx95-blk-ctl.c
> @@ -36,6 +36,7 @@ struct imx95_blk_ctl {
> void __iomem *base;
> /* clock gate register */
> u32 clk_reg_restore;
> + const struct imx95_blk_ctl_dev_data *pdata;
> };
>
> struct imx95_blk_ctl_clk_dev_data {
> @@ -349,7 +350,6 @@ static const struct imx95_blk_ctl_dev_data imx94_dispmix_csr_dev_data = {
> static int imx95_bc_probe(struct platform_device *pdev)
> {
> struct device *dev = &pdev->dev;
> - const struct imx95_blk_ctl_dev_data *bc_data;
> struct imx95_blk_ctl *bc;
> struct clk_hw_onecell_data *clk_hw_data;
> struct clk_hw **hws;
> @@ -379,25 +379,25 @@ static int imx95_bc_probe(struct platform_device *pdev)
> return ret;
> }
>
> - bc_data = of_device_get_match_data(dev);
> - if (!bc_data)
> + bc->pdata = of_device_get_match_data(dev);
> + if (!bc->pdata)
> return devm_of_platform_populate(dev);
>
> - clk_hw_data = devm_kzalloc(dev, struct_size(clk_hw_data, hws, bc_data->num_clks),
> + clk_hw_data = devm_kzalloc(dev, struct_size(clk_hw_data, hws, bc->pdata->num_clks),
> GFP_KERNEL);
> if (!clk_hw_data)
> return -ENOMEM;
>
> - if (bc_data->rpm_enabled) {
> + if (bc->pdata->rpm_enabled) {
> devm_pm_runtime_enable(&pdev->dev);
> pm_runtime_resume_and_get(&pdev->dev);
> }
>
> - clk_hw_data->num = bc_data->num_clks;
> + clk_hw_data->num = bc->pdata->num_clks;
> hws = clk_hw_data->hws;
>
> - for (i = 0; i < bc_data->num_clks; i++) {
> - const struct imx95_blk_ctl_clk_dev_data *data = &bc_data->clk_dev_data[i];
> + for (i = 0; i < bc->pdata->num_clks; i++) {
> + const struct imx95_blk_ctl_clk_dev_data *data = &bc->pdata->clk_dev_data[i];
> void __iomem *reg = base + data->reg;
>
> if (data->type == CLK_MUX) {
> @@ -439,7 +439,7 @@ static int imx95_bc_probe(struct platform_device *pdev)
> return 0;
>
> cleanup:
> - for (i = 0; i < bc_data->num_clks; i++) {
> + for (i = 0; i < bc->pdata->num_clks; i++) {
> if (IS_ERR_OR_NULL(hws[i]))
> continue;
> clk_hw_unregister(hws[i]);
> @@ -469,14 +469,9 @@ static int imx95_bc_runtime_resume(struct device *dev)
> static int imx95_bc_suspend(struct device *dev)
> {
> struct imx95_blk_ctl *bc = dev_get_drvdata(dev);
> - const struct imx95_blk_ctl_dev_data *bc_data;
> int ret;
>
> - bc_data = of_device_get_match_data(dev);
> - if (!bc_data)
> - return 0;
> -
> - if (bc_data->rpm_enabled) {
> + if (bc->pdata->rpm_enabled) {
> ret = pm_runtime_get_sync(bc->dev);
> if (ret < 0) {
> pm_runtime_put_noidle(bc->dev);
> @@ -484,7 +479,7 @@ static int imx95_bc_suspend(struct device *dev)
> }
> }
>
> - bc->clk_reg_restore = readl(bc->base + bc_data->clk_reg_offset);
> + bc->clk_reg_restore = readl(bc->base + bc->pdata->clk_reg_offset);
>
> return 0;
> }
> @@ -492,15 +487,10 @@ static int imx95_bc_suspend(struct device *dev)
> static int imx95_bc_resume(struct device *dev)
> {
> struct imx95_blk_ctl *bc = dev_get_drvdata(dev);
> - const struct imx95_blk_ctl_dev_data *bc_data;
> -
> - bc_data = of_device_get_match_data(dev);
> - if (!bc_data)
> - return 0;
>
> - writel(bc->clk_reg_restore, bc->base + bc_data->clk_reg_offset);
> + writel(bc->clk_reg_restore, bc->base + bc->pdata->clk_reg_offset);
>
> - if (bc_data->rpm_enabled)
> + if (bc->pdata->rpm_enabled)
> pm_runtime_put(bc->dev);
>
> return 0;
> --
> 2.46.1
>
next prev parent reply other threads:[~2025-07-30 16:21 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-30 12:59 [PATCH 0/2] clk: imx95-blk-ctl: Fix runtime PM issues Laurentiu Palcu
2025-07-30 12:59 ` [PATCH 1/2] clk: imx95-blk-ctl: Save platform data in imx95_blk_ctl structure Laurentiu Palcu
2025-07-30 16:17 ` Frank Li [this message]
2025-07-31 5:36 ` Daniel Baluta
2025-07-30 12:59 ` [PATCH 2/2] clk: imx95-blk-ctl: Save/restore registers when RPM routines are called Laurentiu Palcu
2025-07-30 16:23 ` Frank Li
2025-07-31 7:31 ` Laurentiu Palcu
2025-07-31 23:14 ` Frank Li
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=aIpFqB21VWlLgHVy@lizhi-Precision-Tower-5810 \
--to=frank.li@nxp.com \
--cc=abelvesa@kernel.org \
--cc=festevam@gmail.com \
--cc=imx@lists.linux.dev \
--cc=kernel@pengutronix.de \
--cc=laurentiu.palcu@oss.nxp.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=peng.fan@nxp.com \
--cc=s.hauer@pengutronix.de \
--cc=sboyd@kernel.org \
--cc=shawnguo@kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox