]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm: imx: imx8m: soc: Fix VPU fdt disable fixup
authorVitor Soares <vitor.soares@toradex.com>
Tue, 1 Oct 2024 16:01:52 +0000 (17:01 +0100)
committerFabio Estevam <festevam@gmail.com>
Fri, 4 Oct 2024 12:15:33 +0000 (09:15 -0300)
With the introduction of downstream Linux 6.6, the iMX8MP VPU block
control node in DTS was renamed "blk-ctl@38330000" and will not match
the ones found in `node_path_imx8mp` resulting in the node not being
disabled on the VPU-less variants.

Add an extra node_path entry for imx8mp VPU block control that match
with downstream Linux.

Signed-off-by: Vitor Soares <vitor.soares@toradex.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
arch/arm/mach-imx/imx8m/soc.c

index 46974bf0618d53886a9c629f7993b329d852fd2f..5293cb85e56628f1f17f2894d4ebae640579de2a 100644 (file)
@@ -1004,6 +1004,7 @@ int disable_vpu_nodes(void *blob)
                "/soc@0/video-codec@38300000",
                "/soc@0/video-codec@38310000",
                "/soc@0/blk-ctrl@38330000",
+               "/soc@0/blk-ctl@38330000",
        };
 
        if (is_imx8mq())