diff options
author | Stefan Agner <stefan@agner.ch> | 2014-08-05 23:27:30 +0200 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2014-08-18 16:59:04 -0700 |
commit | 24d4d422c104a7bc29f2a6368e7836a2e2488b19 (patch) | |
tree | 07423e6ffedc92854d3491c24fa269c5f90f2945 /arch/arm/include | |
parent | aeb3fcb35956461077804720b8a252d50758d7e0 (diff) | |
download | u-boot-imx-24d4d422c104a7bc29f2a6368e7836a2e2488b19.zip u-boot-imx-24d4d422c104a7bc29f2a6368e7836a2e2488b19.tar.gz u-boot-imx-24d4d422c104a7bc29f2a6368e7836a2e2488b19.tar.bz2 |
ARM: tegra: add Colibri T30 board support
This adds board support for the Toradex Colibri T30 module.
Working functions:
- SD card boot
- eMMC environment and boot
- USB host/USB client (on the dual role port)
- Network (via ASIX USB)
Signed-off-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/mach-types.h | 13 |
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 440b041..560924e 100644 --- a/arch/arm/include/asm/mach-types.h +++ b/arch/arm/include/asm/mach-types.h @@ -1106,6 +1106,7 @@ extern unsigned int __machine_arch_type; #define MACH_TYPE_OMAP5_SEVM 3777 #define MACH_TYPE_ARMADILLO_800EVA 3863 #define MACH_TYPE_KZM9G 4140 +#define MACH_TYPE_COLIBRI_T30 4493 #ifdef CONFIG_ARCH_EBSA110 # ifdef machine_arch_type @@ -14235,6 +14236,18 @@ extern unsigned int __machine_arch_type; # define machine_is_kzm9g() (0) #endif +#ifdef CONFIG_MACH_COLIBRI_T30 +# ifdef machine_arch_type +# undef machine_arch_type +# define machine_arch_type __machine_arch_type +# else +# define machine_arch_type MACH_TYPE_COLIBRI_T30 +# endif +# define machine_is_colibri_t30() (machine_arch_type == MACH_TYPE_COLIBRI_T30) +#else +# define machine_is_colibri_t30() (0) +#endif + /* * These have not yet been registered */ |