* [PATCH] pmdomain: imx: gpc: remove all initialized power domains
@ 2026-09-18 3:13 Guangshuo Li
2026-09-18 7:39 ` Andy Shevchenko
0 siblings, 1 reply; 2+ messages in thread
From: Guangshuo Li @ 2026-09-18 3:13 UTC (permalink / raw)
To: Ulf Hansson, Frank Li, Sascha Hauer, Pengutronix Kernel Team,
Fabio Estevam, Bartosz Golaszewski, Andy Shevchenko,
Greg Kroah-Hartman, Guangshuo Li, Wentao Liang, Miaoqian Lin,
Shawn Guo, Lucas Stach, Dong Aisheng, linux-pm, imx,
linux-arm-kernel, linux-kernel
Cc: stable
imx_gpc_old_dt_init() initializes all power domains described by
of_id_data->num_domains. Its probe failure path removes all of these
domains, but imx_gpc_remove() only removes the PU and ARM domains.
On SoCs with more than two domains, such as i.MX6SL and i.MX6SX, the
additional DISPLAY and PCI generic power domains can remain registered
after the GPC driver is removed.
Remove all initialized power domains in reverse order. Keep releasing
the PU clocks immediately after the PU domain has been successfully
removed.
This issue was found by manual code inspection.
Fixes: 5a42d1198901 ("soc: imx: gpc: fix imx6sl gpc power domain regression")
Cc: stable@vger.kernel.org
Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
---
drivers/pmdomain/imx/gpc.c | 27 ++++++++++++++-------------
1 file changed, 14 insertions(+), 13 deletions(-)
diff --git a/drivers/pmdomain/imx/gpc.c b/drivers/pmdomain/imx/gpc.c
index abca5f449a22..5766e3b40470 100644
--- a/drivers/pmdomain/imx/gpc.c
+++ b/drivers/pmdomain/imx/gpc.c
@@ -502,8 +502,10 @@ static int imx_gpc_probe(struct platform_device *pdev)
static void imx_gpc_remove(struct platform_device *pdev)
{
+ const struct imx_gpc_dt_data *of_id_data =
+ device_get_match_data(&pdev->dev);
struct device_node *pgc_node;
- int ret;
+ int i, ret;
pgc_node = of_get_child_by_name(pdev->dev.of_node, "pgc");
@@ -519,19 +521,18 @@ static void imx_gpc_remove(struct platform_device *pdev)
if (!pgc_node) {
of_genpd_del_provider(pdev->dev.of_node);
- ret = pm_genpd_remove(&imx_gpc_domains[GPC_PGC_DOMAIN_PU].base);
- if (ret) {
- dev_err(&pdev->dev, "Failed to remove PU power domain (%pe)\n",
- ERR_PTR(ret));
- return;
- }
- imx_pgc_put_clocks(&imx_gpc_domains[GPC_PGC_DOMAIN_PU]);
+ for (i = of_id_data->num_domains - 1; i >= 0; i--) {
+ ret = pm_genpd_remove(&imx_gpc_domains[i].base);
+ if (ret) {
+ dev_err(&pdev->dev,
+ "Failed to remove %s power domain (%pe)\n",
+ imx_gpc_domains[i].base.name,
+ ERR_PTR(ret));
+ return;
+ }
- ret = pm_genpd_remove(&imx_gpc_domains[GPC_PGC_DOMAIN_ARM].base);
- if (ret) {
- dev_err(&pdev->dev, "Failed to remove ARM power domain (%pe)\n",
- ERR_PTR(ret));
- return;
+ if (i == GPC_PGC_DOMAIN_PU)
+ imx_pgc_put_clocks(&imx_gpc_domains[i]);
}
}
--
2.43.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] pmdomain: imx: gpc: remove all initialized power domains
2026-09-18 3:13 [PATCH] pmdomain: imx: gpc: remove all initialized power domains Guangshuo Li
@ 2026-09-18 7:39 ` Andy Shevchenko
0 siblings, 0 replies; 2+ messages in thread
From: Andy Shevchenko @ 2026-09-18 7:39 UTC (permalink / raw)
To: Guangshuo Li
Cc: Ulf Hansson, Frank Li, Sascha Hauer, Pengutronix Kernel Team,
Fabio Estevam, Bartosz Golaszewski, Greg Kroah-Hartman,
Wentao Liang, Miaoqian Lin, Shawn Guo, Lucas Stach, Dong Aisheng,
linux-pm, imx, linux-arm-kernel, linux-kernel, stable
On Fri, Sep 18, 2026 at 11:13:22AM +0800, Guangshuo Li wrote:
> imx_gpc_old_dt_init() initializes all power domains described by
> of_id_data->num_domains. Its probe failure path removes all of these
> domains, but imx_gpc_remove() only removes the PU and ARM domains.
>
> On SoCs with more than two domains, such as i.MX6SL and i.MX6SX, the
> additional DISPLAY and PCI generic power domains can remain registered
> after the GPC driver is removed.
>
> Remove all initialized power domains in reverse order. Keep releasing
> the PU clocks immediately after the PU domain has been successfully
> removed.
>
> This issue was found by manual code inspection.
...
> static void imx_gpc_remove(struct platform_device *pdev)
> {
> + const struct imx_gpc_dt_data *of_id_data =
> + device_get_match_data(&pdev->dev);
No...
> struct device_node *pgc_node;
> - int ret;
> + int i, ret;
...and no.
The result of the device_get_match_data() better to be checked, in some cases
it might lead to NULL dereference.
It's better to split semantically different variables, also naming 'i' is not
good, num_domains is better. Besides that, why is it signed?
...
> + for (i = of_id_data->num_domains - 1; i >= 0; i--) {
What you are doing here can be written in a shorter form
num_domains = of_id_data->num_domains;
while (num_domains--) {
> + ret = pm_genpd_remove(&imx_gpc_domains[i].base);
> + if (ret) {
> + dev_err(&pdev->dev,
> + "Failed to remove %s power domain (%pe)\n",
> + imx_gpc_domains[i].base.name,
> + ERR_PTR(ret));
> + return;
> + }
>
> + if (i == GPC_PGC_DOMAIN_PU)
> + imx_pgc_put_clocks(&imx_gpc_domains[i]);
> }
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-18 7:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-18 3:13 [PATCH] pmdomain: imx: gpc: remove all initialized power domains Guangshuo Li
2026-09-18 7:39 ` Andy Shevchenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®