diff options
author | Anish Trivedi <anish@freescale.com> | 2010-09-20 17:26:19 -0500 |
---|---|---|
committer | Anish Trivedi <anish@freescale.com> | 2010-09-21 10:13:42 -0500 |
commit | a8e2d7b371963585736d34c3e589b9309ddff493 (patch) | |
tree | c8f5f1d4c580b69b8805fe301acc358ac0c1bced /include/asm-arm | |
parent | 359ec824c60dffdca80f42ca626fb5baf67ad20e (diff) | |
download | u-boot-imx-a8e2d7b371963585736d34c3e589b9309ddff493.zip u-boot-imx-a8e2d7b371963585736d34c3e589b9309ddff493.tar.gz u-boot-imx-a8e2d7b371963585736d34c3e589b9309ddff493.tar.bz2 |
ENGR00131691 MX50 RDP Uboot
Add support for building uboot for MX50 reference design platform:
1) LPDDR2 init script (v0.3 from Mike Kjar, dated 9/14)
2) iomux
3) new board file and machine id for RDP
4) Updates for iram boot on RDP
Signed-off-by: Anish Trivedi <anish@freescale.com>
Diffstat (limited to 'include/asm-arm')
-rw-r--r-- | include/asm-arm/mach-types.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/asm-arm/mach-types.h b/include/asm-arm/mach-types.h index fbebae1..7f222bf 100644 --- a/include/asm-arm/mach-types.h +++ b/include/asm-arm/mach-types.h @@ -39780,6 +39780,18 @@ extern unsigned int __machine_arch_type; # define machine_is_torbreck() (0) #endif +#ifdef CONFIG_MACH_MX50_RDP +# ifdef machine_arch_type +# undef machine_arch_type +# define machine_arch_type __machine_arch_type +# else +# define machine_arch_type MACH_TYPE_MX50_RDP +# endif +# define machine_is_mx50_rdp() (machine_arch_type == MACH_TYPE_MX50_RDP) +#else +# define machine_is_mx50_rdp() (0) +#endif + /* * These have not yet been registered */ |