diff options
author | Fabio Estevam | 2016-02-28 12:33:17 -0300 |
---|---|---|
committer | Stefano Babic | 2016-03-09 12:50:39 +0100 |
commit | e25a0656bac63c5fcd20ef4313dc09c409fc512d (patch) | |
tree | 4a30d53acb7d103362be51f92a404b1f7886cde9 /arch/arm/imx-common | |
parent | 5d69269deed053d2733bdd0fe537fcba663c0826 (diff) |
mx7: Distinguish between dual and solo versions
Read the number of cores in the fuses to distinguish between
the dual and solo versions.
Tested on a mx7d sabresd and on a mx7solo warp7.
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'arch/arm/imx-common')
-rw-r--r-- | arch/arm/imx-common/cpu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c index 656bb60bbe2..5fb3ed840f8 100644 --- a/arch/arm/imx-common/cpu.c +++ b/arch/arm/imx-common/cpu.c @@ -137,6 +137,8 @@ unsigned imx_ddr_size(void) const char *get_imx_type(u32 imxtype) { switch (imxtype) { + case MXC_CPU_MX7S: + return "7SOLO"; /* Single-core version of the mx7 */ case MXC_CPU_MX7D: return "7D"; /* Dual-core version of the mx7 */ case MXC_CPU_MX6QP: |