git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0bd99a1
)
cpu: imx95: add i.MX95 support
author
Alice Guo
<alice.guo@nxp.com>
Mon, 28 Apr 2025 10:37:35 +0000
(18:37 +0800)
committer
Fabio Estevam
<festevam@gmail.com>
Sat, 3 May 2025 19:55:32 +0000
(16:55 -0300)
This patch is used to add the imx type string of i.MX95 ao that the
i.MX95 CPU info can be printed.
Signed-off-by: Alice Guo <alice.guo@nxp.com>
drivers/cpu/imx8_cpu.c
patch
|
blob
|
history
diff --git
a/drivers/cpu/imx8_cpu.c
b/drivers/cpu/imx8_cpu.c
index
4e1ecca
..
4836bdd
100644
(file)
--- a/
drivers/cpu/imx8_cpu.c
+++ b/
drivers/cpu/imx8_cpu.c
@@
-111,6
+111,8
@@
static const char *get_imx_type_str(u32 imxtype)
return "91(11)";/* iMX91 9x9 Reduced feature */
case MXC_CPU_IMX9101:
return "91(01)";/* iMX91 9x9 Specific feature */
+ case MXC_CPU_IMX95:
+ return "95";
default:
return "??";
}