diff options
author | Peng Fan <peng.fan@nxp.com> | 2019-03-05 02:32:28 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-04-25 17:03:25 +0200 |
commit | 7f50af6090507e79505846d80f76c8636903367c (patch) | |
tree | 772b34670befc387941dffe6cb15f4b4764b25e9 /arch/arm/mach-imx/imx8/cpu.c | |
parent | b18da229a36f503466e04bef113b426702e8ebdc (diff) | |
download | u-boot-7f50af6090507e79505846d80f76c8636903367c.tar.gz |
imx8: add cpu support
Add cpu type and Kconfig entry
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'arch/arm/mach-imx/imx8/cpu.c')
-rw-r--r-- | arch/arm/mach-imx/imx8/cpu.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/imx8/cpu.c b/arch/arm/mach-imx/imx8/cpu.c index 4bbc956f9db..2c425357b56 100644 --- a/arch/arm/mach-imx/imx8/cpu.c +++ b/arch/arm/mach-imx/imx8/cpu.c @@ -542,6 +542,8 @@ const char *get_imx8_type(u32 imxtype) case MXC_CPU_IMX8QXP: case MXC_CPU_IMX8QXP_A0: return "QXP"; + case MXC_CPU_IMX8QM: + return "QM"; default: return "??"; } @@ -613,6 +615,7 @@ static const struct cpu_ops cpu_imx8_ops = { static const struct udevice_id cpu_imx8_ids[] = { { .compatible = "arm,cortex-a35" }, + { .compatible = "arm,cortex-a53" }, { } }; |