imx: arch-mx6: add is_soc_type helper macro
authorAdrian Alonso <aalonso@freescale.com>
Wed, 2 Sep 2015 18:54:12 +0000 (13:54 -0500)
committerStefano Babic <sbabic@denx.de>
Sun, 13 Sep 2015 08:11:52 +0000 (10:11 +0200)
Add helper macro is_soc_type to identify iMX SoC family

Signed-off-by: Adrian Alonso <aalonso@freescale.com>
arch/arm/include/asm/arch-imx/cpu.h
arch/arm/include/asm/imx-common/sys_proto.h

index 1c8d24e576f99a9c9c9e732c6ffb9a9f00457611..416905ad06f46db3749927da4f0456b34575ca14 100644 (file)
@@ -23,6 +23,8 @@
 #define MXC_CPU_MX6QP          0x69
 #define MXC_CPU_VF610          0xF6 /* dummy ID */
 
+#define MXC_SOC_MX6            0x60
+
 #define CS0_128                                        0
 #define CS0_64M_CS1_64M                                1
 #define CS0_64M_CS1_32M_CS2_32M                        2
index 6954ee918e0bec13fd9c170d2da228c3d962c7b8..250f3f4db6042bf17694dd1f2229fd642b2a6c23 100644 (file)
 
 /* returns MXC_CPU_ value */
 #define cpu_type(rev) (((rev) >> 12) & 0xff)
+#define soc_type(rev) (((rev) >> 12) & 0xf0)
 /* both macros return/take MXC_CPU_ constants */
 #define get_cpu_type() (cpu_type(get_cpu_rev()))
+#define get_soc_type() (soc_type(get_cpu_rev()))
 #define is_cpu_type(cpu) (get_cpu_type() == cpu)
+#define is_soc_type(soc) (get_soc_type() == soc)
 
 #define is_mx6dqp() (is_cpu_type(MXC_CPU_MX6QP) || is_cpu_type(MXC_CPU_MX6DP))