summaryrefslogtreecommitdiff
path: root/drivers/cpu
diff options
context:
space:
mode:
authorAlice Guo <alice.guo@nxp.com>2025-09-23 10:14:54 +0800
committerFabio Estevam <festevam@gmail.com>2025-09-26 09:51:21 -0300
commita2d62d3b1d357dccc2e9ed56a4e7bdbb030ca06f (patch)
tree1c44750d5aaa557ee67be893cb5d391960f7ac37 /drivers/cpu
parenta87b9283266344ac31ef76a3a3ccf2da65429818 (diff)
cpu: imx94: Add support for i.MX94 in get_imx_type_str()
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>
Diffstat (limited to 'drivers/cpu')
-rw-r--r--drivers/cpu/imx8_cpu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/cpu/imx8_cpu.c b/drivers/cpu/imx8_cpu.c
index 950630453f9..630919a3642 100644
--- a/drivers/cpu/imx8_cpu.c
+++ b/drivers/cpu/imx8_cpu.c
@@ -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 "??";
}