diff options
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r-- | arch/arm/mach-imx/Kconfig | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig index 3ca8fa7d91ae..5edead235bd1 100644 --- a/arch/arm/mach-imx/Kconfig +++ b/arch/arm/mach-imx/Kconfig | |||
@@ -1,5 +1,10 @@ | |||
1 | if ARCH_MX1 | 1 | if ARCH_MX1 |
2 | 2 | ||
3 | config SOC_IMX1 | ||
4 | select CPU_ARM920T | ||
5 | select IMX_HAVE_IOMUX_V1 | ||
6 | bool | ||
7 | |||
3 | comment "MX1 platforms:" | 8 | comment "MX1 platforms:" |
4 | config MACH_MXLADS | 9 | config MACH_MXLADS |
5 | bool | 10 | bool |
@@ -19,19 +24,31 @@ endif | |||
19 | 24 | ||
20 | if ARCH_MX2 | 25 | if ARCH_MX2 |
21 | 26 | ||
27 | config SOC_IMX21 | ||
28 | select CPU_ARM926T | ||
29 | select ARCH_MXC_AUDMUX_V1 | ||
30 | select IMX_HAVE_IOMUX_V1 | ||
31 | bool | ||
32 | |||
33 | config SOC_IMX27 | ||
34 | select CPU_ARM926T | ||
35 | select ARCH_MXC_AUDMUX_V1 | ||
36 | select IMX_HAVE_IOMUX_V1 | ||
37 | bool | ||
38 | |||
22 | choice | 39 | choice |
23 | prompt "CPUs:" | 40 | prompt "CPUs:" |
24 | default MACH_MX21 | 41 | default MACH_MX21 |
25 | 42 | ||
26 | config MACH_MX21 | 43 | config MACH_MX21 |
27 | bool "i.MX21 support" | 44 | bool "i.MX21 support" |
28 | select ARCH_MXC_AUDMUX_V1 | 45 | select SOC_IMX21 |
29 | help | 46 | help |
30 | This enables support for Freescale's MX2 based i.MX21 processor. | 47 | This enables support for Freescale's MX2 based i.MX21 processor. |
31 | 48 | ||
32 | config MACH_MX27 | 49 | config MACH_MX27 |
33 | bool "i.MX27 support" | 50 | bool "i.MX27 support" |
34 | select ARCH_MXC_AUDMUX_V1 | 51 | select SOC_IMX27 |
35 | help | 52 | help |
36 | This enables support for Freescale's MX2 based i.MX27 processor. | 53 | This enables support for Freescale's MX2 based i.MX27 processor. |
37 | 54 | ||