blob: 3adad3822279334b3bff6d1a4cbbf064674b8bc6 [file] [log] [blame]
Quinn Jensen52c543f2007-07-09 22:06:53 +01001if ARCH_MXC
2
3menu "Freescale MXC Implementations"
4
5choice
Holger Schurig6bbdbf22009-01-29 14:42:25 +01006 prompt "Freescale CPU family:"
Robert Schwebeld2db9aa2008-04-02 10:29:30 +01007 default ARCH_MX3
Quinn Jensen52c543f2007-07-09 22:06:53 +01008
Paulius Zaleckascfca8b52008-11-14 11:01:38 +01009config ARCH_MX1
10 bool "MX1-based"
Sascha Hauer2955de52008-12-18 09:32:23 +010011 select CPU_ARM920T
Uwe Kleine-König5e2e95f2010-02-15 09:42:59 +010012 select IMX_HAVE_IOMUX_V1
Paulius Zaleckascfca8b52008-11-14 11:01:38 +010013 help
14 This enables support for systems based on the Freescale i.MX1 family
15
Juergen Beisert1bd55a42008-07-05 10:03:02 +020016config ARCH_MX2
17 bool "MX2-based"
Russell Kingc7508152008-10-26 10:55:14 +000018 select CPU_ARM926T
Uwe Kleine-König5e2e95f2010-02-15 09:42:59 +010019 select IMX_HAVE_IOMUX_V1
Juergen Beisert1bd55a42008-07-05 10:03:02 +020020 help
21 This enables support for systems based on the Freescale i.MX2 family
22
Sascha Hauer8c25c362009-06-04 11:32:12 +020023config ARCH_MX25
24 bool "MX25-based"
25 select CPU_ARM926T
Baruch Siach08268b72010-02-24 11:31:31 +020026 select ARCH_MXC_IOMUX_V3
Baruch Siachf6014412010-02-17 12:33:23 +020027 select HAVE_FB_IMX
Sascha Hauer8c25c362009-06-04 11:32:12 +020028 help
29 This enables support for systems based on the Freescale i.MX25 family
30
Quinn Jensen52c543f2007-07-09 22:06:53 +010031config ARCH_MX3
32 bool "MX3-based"
Russell Kingc7508152008-10-26 10:55:14 +000033 select CPU_V6
Quinn Jensen52c543f2007-07-09 22:06:53 +010034 help
35 This enables support for systems based on the Freescale i.MX3 family
36
Dmitriy Taychenachevfd6ac7b2009-07-31 20:29:22 +090037config ARCH_MXC91231
38 bool "MXC91231-based"
39 select CPU_V6
Dmitriy Taychenachevfd6ac7b2009-07-31 20:29:22 +090040 help
41 This enables support for systems based on the Freescale MXC91231 family
42
Amit Kucheriab996b582010-02-02 11:57:53 -080043config ARCH_MX5
44 bool "MX5-based"
45 select CPU_V7
Amit Kucheriab996b582010-02-02 11:57:53 -080046 help
47 This enables support for systems based on the Freescale i.MX51 family
48
Quinn Jensen52c543f2007-07-09 22:06:53 +010049endchoice
50
Uwe Kleine-Königd1091672010-06-10 15:11:13 +020051source "arch/arm/mach-imx/Kconfig"
Quinn Jensen52c543f2007-07-09 22:06:53 +010052source "arch/arm/mach-mx3/Kconfig"
Sascha Hauer8c25c362009-06-04 11:32:12 +020053source "arch/arm/mach-mx25/Kconfig"
Dmitriy Taychenachevfd6ac7b2009-07-31 20:29:22 +090054source "arch/arm/mach-mxc91231/Kconfig"
Amit Kucheriab996b582010-02-02 11:57:53 -080055source "arch/arm/mach-mx5/Kconfig"
Quinn Jensen52c543f2007-07-09 22:06:53 +010056
57endmenu
58
Darius Augulis479c9012008-09-09 11:29:41 +020059config MXC_IRQ_PRIOR
60 bool "Use IRQ priority"
Darius Augulis479c9012008-09-09 11:29:41 +020061 help
62 Select this if you want to use prioritized IRQ handling.
63 This feature prevents higher priority ISR to be interrupted
64 by lower priority IRQ even IRQF_DISABLED flag is not set.
65 This may be useful in embedded applications, where are strong
66 requirements for timing.
67 Say N here, unless you have a specialized requirement.
68
Amit Kucheriaa0037082009-12-03 22:36:41 +020069config MXC_TZIC
70 bool "Enable TrustZone Interrupt Controller"
71 depends on ARCH_MX51
72 help
73 This will be automatically selected for all processors
74 containing this interrupt controller.
75 Say N here only if you are really sure.
76
Sascha Hauer166091b2009-01-16 15:17:16 +010077config MXC_PWM
78 tristate "Enable PWM driver"
Holger Schurigc010dba2009-04-14 12:50:20 +020079 select HAVE_PWM
Sascha Hauer166091b2009-01-16 15:17:16 +010080 help
81 Enable support for the i.MX PWM controller(s).
82
Daniel Mackf4f8bda2009-11-05 09:44:09 +010083config MXC_ULPI
84 bool
85
Alan Carvalho de Assis45001e92009-04-02 12:38:41 -030086config ARCH_HAS_RNGA
87 bool
Alan Carvalho de Assis45001e92009-04-02 12:38:41 -030088
Uwe Kleine-König5e2e95f2010-02-15 09:42:59 +010089config IMX_HAVE_IOMUX_V1
90 bool
91
Sascha Hauerbca6ef12009-04-01 11:11:48 +020092config ARCH_MXC_IOMUX_V3
93 bool
Sascha Hauer9eedbdf2009-10-29 17:12:39 +010094
95config ARCH_MXC_AUDMUX_V1
96 bool
97
98config ARCH_MXC_AUDMUX_V2
99 bool
100
Quinn Jensen52c543f2007-07-09 22:06:53 +0100101endif