summaryrefslogtreecommitdiff
path: root/arch/arm/mach-mx5/Kconfig
diff options
context:
space:
mode:
authorAlejandro Gonzalez <alex.gonzalez@digi.com>2010-05-25 17:42:29 +0200
committerAlejandro Gonzalez <alex.gonzalez@digi.com>2010-05-26 13:29:17 +0200
commite749e37adf1735c5a0b3bc5262cb542995ce42e9 (patch)
tree17c06371247666953fa01265485d9fd8a0642266 /arch/arm/mach-mx5/Kconfig
parentad3c88d1e262462a23d9692c6f7a7cd661f129b2 (diff)
ccwmx51: Fix compilation issues after applying Freescale patches
The mach-mx51 folder has been replaced by mach-mx5 to enable the addition of more platforms. Signed-off-by: Alejandro Gonzalez <alex.gonzalez@digi.com>
Diffstat (limited to 'arch/arm/mach-mx5/Kconfig')
-rw-r--r--arch/arm/mach-mx5/Kconfig78
1 files changed, 76 insertions, 2 deletions
diff --git a/arch/arm/mach-mx5/Kconfig b/arch/arm/mach-mx5/Kconfig
index 5c07a3a5d2b6..cd6a985af260 100644
--- a/arch/arm/mach-mx5/Kconfig
+++ b/arch/arm/mach-mx5/Kconfig
@@ -1,10 +1,10 @@
if ARCH_MX5
config ARCH_MX51
- bool
+ bool "MX51"
config ARCH_MX53
- bool
+ bool "MX53"
config FORCE_MAX_ZONEORDER
int "MAX_ORDER"
@@ -44,6 +44,25 @@ config MACH_MX53_EVK
Include support for MX53 EVK platform. This includes specific
configurations for the board and its peripherals.
+config MODULE_CCXMX51
+ bool
+
+config MACH_CCWMX51JS
+ bool "Support for the ConnectCore Wi-i.MX51 module, on the JSK base board"
+ select MODULE_CCXMX51
+ help
+ Include support for the Digi ConnectCore Wi-i.MX51 Embedded Module, on the
+ JumpStart Kit base board. This includes specific configurations for the
+ peripherals on that base board.
+
+config MACH_CCWMX51
+ bool "Support for the ConnectCore Wi-i.MX51 module"
+ select MODULE_CCXMX51
+ help
+ Include support for the Digi ConnectCore Wi-i.MX51 Embedded Module, on a
+ custom board. The machine file should be modified to include support for
+ the interfaces available in that board.
+
comment "MX5x Options:"
config MXC_SDMA_API
@@ -76,3 +95,58 @@ config SDMA_IRAM
Support Internal RAM as SDMA buffer or control structures
endif
+
+menu "Serial Port Options"
+config UART1_ENABLED
+ bool "Enable UART1"
+ default y
+ depends on SERIAL_MXC && MACH_CCWMX51JS
+ help
+ Enable the MX51 UART1 interface
+
+config UART2_ENABLED
+ bool "Enable UART2"
+ default y
+ depends on SERIAL_MXC && MACH_CCWMX51JS
+ help
+ Enable the MX51 UART2 interface
+
+config UART3_ENABLED
+ bool "Enable UART3"
+ default y
+ depends on SERIAL_MXC && MACH_CCWMX51JS
+ help
+ Enable the MX51 UART3 interface
+endmenu
+
+menu "SPI Interface Options"
+config SPI_MXC_SELECT1
+ bool "Enable CSPI1"
+ depends on SPI_MXC && MACH_CCWMX51JS
+ default y
+ help
+ Enable the CSPI1 interface
+
+config SPI_MXC_SELECT1_SS1
+ bool "Enable SS1 line for CSPI1"
+ depends on SPI_MXC_SELECT1 && MACH_CCWMX51JS
+ default y
+ help
+ Enable SS1 (slave select 1) line, used on ConnectCore Wi-i.MX51 base board SPI connector
+
+config SPI_MXC_SELECT2
+ bool "Enable CSPI2"
+ depends on SPI_MXC && MACH_CCWMX51JS
+ default n
+ help
+ Enable the CSPI2 interface
+
+config SPI_MXC_SELECT3
+ bool "Enable CSPI3"
+ depends on SPI_MXC && MACH_CCWMX51JS
+ default n
+ help
+ Enable the CSPI3 interface
+endmenu
+
+source "arch/arm/mach-mx5/displays/Kconfig" \ No newline at end of file