diff options
author | Tom Rini <trini@konsulko.com> | 2025-05-04 08:51:43 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-05-04 08:51:43 -0600 |
commit | dcea465e5e299903b889f5f426eac6d6523cbf84 (patch) | |
tree | 9ead94204004efef6be0c1b1942a6d194426db7c /drivers/cpu/imx8_cpu.c | |
parent | 0c8a89d252c3db3401ffa572ee2e4dfcb94e2c3b (diff) | |
parent | fbe176c39c896e3dcec356bd3153074d411d487e (diff) |
Merge tag 'u-boot-imx-master-20250503' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/26064
- Add i.MX95 support.
- Enable BOOTAUX on the i.MX8M Beacon boards.
Diffstat (limited to 'drivers/cpu/imx8_cpu.c')
-rw-r--r-- | drivers/cpu/imx8_cpu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/cpu/imx8_cpu.c b/drivers/cpu/imx8_cpu.c index 4e1eccaa5b0..4836bddd93b 100644 --- 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 "??"; } |