-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arm/imx21: add kbuild support for the Freescale i.MX21
* adds Kconfig variables * specifies different physical address for i.MX21 because of the different memory layouts * disables support for UART5/UART6 in the i.MX serial driver (the i.MX21 doesn't have those modules) Based on code from "Martin Fuzzey" <mfuzzey@gmail.com> Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
- Loading branch information
Holger Schurig
authored and
Sascha Hauer
committed
Mar 13, 2009
1 parent
ccfe30a
commit 5512e88
Showing
5 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
zreladdr-y := 0xA0008000 | ||
params_phys-y := 0xA0000100 | ||
initrd_phys-y := 0xA0800000 | ||
zreladdr-$(CONFIG_MACH_MX21) := 0xC0008000 | ||
params_phys-$(CONFIG_MACH_MX21) := 0xC0000100 | ||
initrd_phys-$(CONFIG_MACH_MX21) := 0xC0800000 | ||
|
||
zreladdr-$(CONFIG_MACH_MX27) := 0xA0008000 | ||
params_phys-$(CONFIG_MACH_MX27) := 0xA0000100 | ||
initrd_phys-$(CONFIG_MACH_MX27) := 0xA0800000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters