diff options
author | Fabio Estevam | 2014-06-24 17:40:58 -0300 |
---|---|---|
committer | Stefano Babic | 2014-07-10 15:29:16 +0200 |
commit | 05d54b827fa84b7834fc39c9ff7bb77cce829beb (patch) | |
tree | 90f716f445653def78135d210255fbf523ce15e7 /arch/arm/imx-common | |
parent | e153333eeb50021fb3a730a3216c1968e7710999 (diff) |
mx6: Add support for the mx6solox variant
mx6solox is the newest member of the mx6 family.
Some of the new features on this variants are:
- Cortex M4 microcontroller (besides the CortexA9)
- Dual Gigabit Ethernet
Add the initial support for it.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.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 5a09107c5ab..7bb0e83a173 100644 --- a/arch/arm/imx-common/cpu.c +++ b/arch/arm/imx-common/cpu.c @@ -112,6 +112,8 @@ const char *get_imx_type(u32 imxtype) return "6SOLO"; /* Solo version of the mx6 */ case MXC_CPU_MX6SL: return "6SL"; /* Solo-Lite version of the mx6 */ + case MXC_CPU_MX6SX: + return "6SX"; /* SoloX version of the mx6 */ case MXC_CPU_MX51: return "51"; case MXC_CPU_MX53: |