diff options
author | Peng Fan <peng.fan@nxp.com> | 2019-08-08 09:55:52 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-10-08 16:33:45 +0200 |
commit | 81ae46c2e69f2864d73caa59a35e0887d155705e (patch) | |
tree | be00c2ac228676eaaaa9ece7517b4ddf9fbd030b /arch/arm/mach-imx/cpu.c | |
parent | 939a9644f0d02f63756dd92b7503f752919d6140 (diff) | |
download | u-boot-81ae46c2e69f2864d73caa59a35e0887d155705e.tar.gz |
imx: add i.MX6ULZ cpu type
Add i.MX6ULZ cpu type and helper.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Reviewed-by: Ye Li <ye.li@nxp.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
Diffstat (limited to 'arch/arm/mach-imx/cpu.c')
-rw-r--r-- | arch/arm/mach-imx/cpu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/cpu.c b/arch/arm/mach-imx/cpu.c index 6e9a175210..73ce7f8d7d 100644 --- a/arch/arm/mach-imx/cpu.c +++ b/arch/arm/mach-imx/cpu.c @@ -173,6 +173,8 @@ const char *get_imx_type(u32 imxtype) return "6UL"; /* Ultra-Lite version of the mx6 */ case MXC_CPU_MX6ULL: return "6ULL"; /* ULL version of the mx6 */ + case MXC_CPU_MX6ULZ: + return "6ULZ"; /* ULZ version of the mx6 */ case MXC_CPU_MX51: return "51"; case MXC_CPU_MX53: |