mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 10:48:51 +00:00
05d54b827f
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>
14 lines
337 B
C
14 lines
337 B
C
/*
|
|
* (C) Copyright 2014 Freescale Semiconductor, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#define MXC_CPU_MX51 0x51
|
|
#define MXC_CPU_MX53 0x53
|
|
#define MXC_CPU_MX6SL 0x60
|
|
#define MXC_CPU_MX6DL 0x61
|
|
#define MXC_CPU_MX6SX 0x62
|
|
#define MXC_CPU_MX6Q 0x63
|
|
#define MXC_CPU_MX6D 0x64
|
|
#define MXC_CPU_MX6SOLO 0x65 /* dummy ID */
|