summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2013-09-09 17:05:19 +0200
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2013-09-09 17:05:19 +0200
commit41e76ebbfc4e8c6402fc79898986d70b18c91db3 (patch)
tree23088377d9a9778ccef96e2254469f2b3786cc5f /arch
parent0c341f6b8cd5b11172fff43c339c60607a893f3b (diff)
colibri_vf50: initial integration
Add initial Colibri VF50 support based off Timesys' implementation for Freescale's Vybrid Tower System TWR-VF65GS10: - New machine ID. - Default UART_A on SCI0. - ESDHC2 only. - 8-bit NAND. - No quad SPI. - FEC1 only. - Enabled command line editing. - PLL5 based RMII clocking (e.g. no external crystal). - UART_A, UART_B and UART_C I/O muxing. Tested on early Colibri VF50 prototypes V1.0a using SD card (mandatory for initial loading) as well as NAND boot.
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/include/asm/mach-types.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/include/asm/mach-types.h b/arch/arm/include/asm/mach-types.h
index 91079c9f10..4ed65ca501 100644
--- a/arch/arm/include/asm/mach-types.h
+++ b/arch/arm/include/asm/mach-types.h
@@ -1109,6 +1109,7 @@ extern unsigned int __machine_arch_type;
#define MACH_TYPE_VYBRID_VF6XX 4146
#define MACH_TYPE_VYBRID_VF5XX 4147
#define MACH_TYPE_VYBRID_VF4XX 4148
+#define MACH_TYPE_COLIBRI_VF50 4749
#ifdef CONFIG_ARCH_EBSA110
# ifdef machine_arch_type
@@ -14274,6 +14275,18 @@ extern unsigned int __machine_arch_type;
# define machine_is_vybrid_vf4xx() (0)
#endif
+#ifdef CONFIG_MACH_COLIBRI_VF50
+# ifdef machine_arch_type
+# undef machine_arch_type
+# define machine_arch_type __machine_arch_type
+# else
+# define machine_arch_type MACH_TYPE_COLIBRI_VF50
+# endif
+# define machine_is_colibri_vf50() (machine_arch_type == MACH_TYPE_COLIBRI_VF50)
+#else
+# define machine_is_colibri_vf50() (0)
+#endif
+
/*
* These have not yet been registered
*/