]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
imx: power-domain: Fix crash due to uninitialized 'id' field
authorFrieder Schrempf <frieder.schrempf@kontron.de>
Tue, 22 Jul 2025 08:31:18 +0000 (10:31 +0200)
committerFabio Estevam <festevam@gmail.com>
Thu, 24 Jul 2025 10:59:22 +0000 (07:59 -0300)
In case of the i.MX8M power-domains (i.MX8MQ, MM, MN) there is only
one power-domain for each device. Therefore the 'id' field in struct
power_domain should always be zero.

Currently if a power-domain is accessed after the initial bind, the
'id' field is left uninitialized. This didn't cause any problems
until the following commits were introduced:

9086b64ca071 ("power-domain: Add support for refcounting (again)")
a785ef24487b ("imx: power-domain: Enable refcounting on imx8mp")

Now the 'id' field gets accessed in the power_domain_off() sequence
and the invalid value causes "Synchronous Abort" failures.

This was observed on a i.MX8MM board when running "usb start" and
then "usb stop".

Fix this issue by setting power_domain->id to '0' in
imx8m_power_domain_of_xlate().

Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de>
Fixes: d08a194871fd ("imx: add support for i.MX8MQ power domain controller")
Fixes: 9086b64ca071 ("power-domain: Add support for refcounting (again)")
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
drivers/power/domain/imx8m-power-domain.c

index b44aae78e6de9733e1e53bbec80f54562487a76b..a7e64971a2abc211e275094bacdc705a2be625e8 100644 (file)
@@ -468,6 +468,8 @@ out_clk_disable:
 static int imx8m_power_domain_of_xlate(struct power_domain *power_domain,
                                      struct ofnode_phandle_args *args)
 {
+       power_domain->id = 0;
+
        return 0;
 }