]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
cpu: imx94: Add support for i.MX94 in get_imx_type_str()
authorAlice Guo <alice.guo@nxp.com>
Tue, 23 Sep 2025 02:14:54 +0000 (10:14 +0800)
committerFabio Estevam <festevam@gmail.com>
Fri, 26 Sep 2025 12:51:21 +0000 (09:51 -0300)
Add a case for i.MX94 to return the correct string identifier in the
get_imx_type_str() function. This ensures proper CPU type reporting for
i.MX94 platforms.

Signed-off-by: Alice Guo <alice.guo@nxp.com>
drivers/cpu/imx8_cpu.c

index 950630453f9d3415293c28063cbc48d391840011..630919a3642984dea1eb16fdb1d33a41696af801 100644 (file)
@@ -113,6 +113,8 @@ static const char *get_imx_type_str(u32 imxtype)
                return "91(01)";/* iMX91 9x9 Specific feature */
        case MXC_CPU_IMX95:
                return "95";
+       case MXC_CPU_IMX94:
+               return "94";
        default:
                return "??";
        }