diff options
author | Yong Shen <yong.shen@linaro.org> | 2011-01-04 09:22:56 +0300 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-01-04 14:00:23 +0300 |
commit | a58154d1c3535f451a409abbd0bda6770b2d9380 (patch) | |
tree | 695c321719b7c13e5c55b4a857c2bc99d66023f2 /arch/arm/mach-mx5/Makefile.boot | |
parent | 644b1d586d6670262501057ae99d893fadb012de (diff) | |
download | linux-a58154d1c3535f451a409abbd0bda6770b2d9380.tar.xz |
ARM i.MX53: Make MX53 EVK bootable
1. Add entries to Kconfig
2. Add machine definition
3. Add Uart platform data, pad setting and base address
4. Adjust GPIO irq number
Signed-off-by: Yong Shen <yong.shen@linaro.org>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx5/Makefile.boot')
-rw-r--r-- | arch/arm/mach-mx5/Makefile.boot | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-mx5/Makefile.boot b/arch/arm/mach-mx5/Makefile.boot index 854748f80cc1..e928be1b6757 100644 --- a/arch/arm/mach-mx5/Makefile.boot +++ b/arch/arm/mach-mx5/Makefile.boot @@ -4,3 +4,6 @@ initrd_phys-$(CONFIG_ARCH_MX50) := 0x70800000 zreladdr-$(CONFIG_ARCH_MX51) := 0x90008000 params_phys-$(CONFIG_ARCH_MX51) := 0x90000100 initrd_phys-$(CONFIG_ARCH_MX51) := 0x90800000 + zreladdr-$(CONFIG_ARCH_MX53) := 0x70008000 +params_phys-$(CONFIG_ARCH_MX53) := 0x70000100 +initrd_phys-$(CONFIG_ARCH_MX53) := 0x70800000 |