summaryrefslogtreecommitdiff
path: root/arch/arm/mach-mx5/Kconfig
diff options
context:
space:
mode:
authorDinh Nguyen <Dinh.Nguyen@freescale.com>2010-03-18 14:43:02 -0500
committerAlejandro Gonzalez <alex.gonzalez@digi.com>2010-05-25 11:20:13 +0200
commitfe5f8e57cebd49332675067f969ed232465abb4c (patch)
tree6a0578101cae1e0bf119a30acb9df66553852907 /arch/arm/mach-mx5/Kconfig
parentcfd568c81b246f5adca17a84ceaeaff03f558d41 (diff)
ENGR00121109 MX53: Add MSL layer
Added MSL layer for MX53 with changes in MX51 for single kernel boot support. Added CCGR clocking changes. Fixed SDHC clock dependencies. Fix emi_intr clocks and fix warnings in clock code. Signed-off-by: Rob Herring <r.herring@freescale.com> Signed-off-by: Lily Zhang <r58066@freescale.com> Signed-off-by: Xinyu Chen <xinyu.chen@freescale.com> Signed-off-by: Ranjani Vaidyanathan-RA5478 <Ranjani.Vaidyanathan@freescale.com> Signed-off-by: Dinh Nguyen <Dinh.Nguyen@freescale.com> Signed-off-by: Alejandro Gonzalez <alex.gonzalez@digi.com>
Diffstat (limited to 'arch/arm/mach-mx5/Kconfig')
-rw-r--r--arch/arm/mach-mx5/Kconfig29
1 files changed, 19 insertions, 10 deletions
diff --git a/arch/arm/mach-mx5/Kconfig b/arch/arm/mach-mx5/Kconfig
index 9dc1d3a02b18..e7bc97f9fcd1 100644
--- a/arch/arm/mach-mx5/Kconfig
+++ b/arch/arm/mach-mx5/Kconfig
@@ -1,9 +1,10 @@
-menu "MX5 Options"
- depends on ARCH_MX5
+if ARCH_MX5
config ARCH_MX51
- bool "Support MX51 based platforms"
- default y
+ bool
+
+config ARCH_MX53
+ bool
config FORCE_MAX_ZONEORDER
int "MAX_ORDER"
@@ -17,20 +18,28 @@ config MX5_OPTIONS
select MXC_TZIC
config MACH_MX51_3DS
- bool "Support MX51 3-Stack platforms"
- default y
- depends on ARCH_MX51
+ bool "Support MX51 3-Stack platform"
+ select ARCH_MX51
help
Include support for MX51 3-Stack platform. This includes specific
configurations for the board and its peripherals.
config MACH_MX51_BABBAGE
- bool "Support MX51 BABBAGE platforms"
- depends on ARCH_MX51
+ bool "Support MX51 BABBAGE platform"
+ select ARCH_MX51
help
Include support for MX51 Babbage platform. This includes specific
configurations for the board and its peripherals.
+config MACH_MX53_EVK
+ bool "Support MX53 EVK platform"
+ select ARCH_MX53
+ help
+ Include support for MX53 EVK platform. This includes specific
+ configurations for the board and its peripherals.
+
+comment "MX5x Options:"
+
config MXC_SDMA_API
bool "Use SDMA API"
default y
@@ -60,4 +69,4 @@ config SDMA_IRAM
help
Support Internal RAM as SDMA buffer or control structures
-endmenu
+endif