blob: d80de4eacd2a0d47f5d1ab251ca550a30d2f56b7 [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"
Uwe Kleine-Könige780d232010-06-14 17:39:21 +020011 select SOC_IMX1
Paulius Zaleckascfca8b52008-11-14 11:01:38 +010012 help
13 This enables support for systems based on the Freescale i.MX1 family
14
Juergen Beisert1bd55a42008-07-05 10:03:02 +020015config ARCH_MX2
16 bool "MX2-based"
17 help
18 This enables support for systems based on the Freescale i.MX2 family
19
Sascha Hauer8c25c362009-06-04 11:32:12 +020020config ARCH_MX25
21 bool "MX25-based"
22 select CPU_ARM926T
Baruch Siach08268b72010-02-24 11:31:31 +020023 select ARCH_MXC_IOMUX_V3
Baruch Siachf6014412010-02-17 12:33:23 +020024 select HAVE_FB_IMX
Sascha Hauer8c25c362009-06-04 11:32:12 +020025 help
26 This enables support for systems based on the Freescale i.MX25 family
27
Quinn Jensen52c543f2007-07-09 22:06:53 +010028config ARCH_MX3
29 bool "MX3-based"
Russell Kingc7508152008-10-26 10:55:14 +000030 select CPU_V6
Quinn Jensen52c543f2007-07-09 22:06:53 +010031 help
32 This enables support for systems based on the Freescale i.MX3 family
33
Dmitriy Taychenachevfd6ac7b2009-07-31 20:29:22 +090034config ARCH_MXC91231
35 bool "MXC91231-based"
36 select CPU_V6
Dmitriy Taychenachevfd6ac7b2009-07-31 20:29:22 +090037 help
38 This enables support for systems based on the Freescale MXC91231 family
39
Amit Kucheriab996b582010-02-02 11:57:53 -080040config ARCH_MX5
41 bool "MX5-based"
42 select CPU_V7
Amit Kucheriab996b582010-02-02 11:57:53 -080043 help
44 This enables support for systems based on the Freescale i.MX51 family
45
Quinn Jensen52c543f2007-07-09 22:06:53 +010046endchoice
47
Uwe Kleine-Königd1091672010-06-10 15:11:13 +020048source "arch/arm/mach-imx/Kconfig"
Quinn Jensen52c543f2007-07-09 22:06:53 +010049source "arch/arm/mach-mx3/Kconfig"
Sascha Hauer8c25c362009-06-04 11:32:12 +020050source "arch/arm/mach-mx25/Kconfig"
Dmitriy Taychenachevfd6ac7b2009-07-31 20:29:22 +090051source "arch/arm/mach-mxc91231/Kconfig"
Amit Kucheriab996b582010-02-02 11:57:53 -080052source "arch/arm/mach-mx5/Kconfig"
Quinn Jensen52c543f2007-07-09 22:06:53 +010053
54endmenu
55
Darius Augulis479c9012008-09-09 11:29:41 +020056config MXC_IRQ_PRIOR
57 bool "Use IRQ priority"
Darius Augulis479c9012008-09-09 11:29:41 +020058 help
59 Select this if you want to use prioritized IRQ handling.
60 This feature prevents higher priority ISR to be interrupted
61 by lower priority IRQ even IRQF_DISABLED flag is not set.
62 This may be useful in embedded applications, where are strong
63 requirements for timing.
64 Say N here, unless you have a specialized requirement.
65
Amit Kucheriaa0037082009-12-03 22:36:41 +020066config MXC_TZIC
67 bool "Enable TrustZone Interrupt Controller"
68 depends on ARCH_MX51
69 help
70 This will be automatically selected for all processors
71 containing this interrupt controller.
72 Say N here only if you are really sure.
73
Sascha Hauer166091b2009-01-16 15:17:16 +010074config MXC_PWM
75 tristate "Enable PWM driver"
Holger Schurigc010dba2009-04-14 12:50:20 +020076 select HAVE_PWM
Sascha Hauer166091b2009-01-16 15:17:16 +010077 help
78 Enable support for the i.MX PWM controller(s).
79
Daniel Mackf4f8bda2009-11-05 09:44:09 +010080config MXC_ULPI
81 bool
82
Alan Carvalho de Assis45001e92009-04-02 12:38:41 -030083config ARCH_HAS_RNGA
84 bool
Alan Carvalho de Assis45001e92009-04-02 12:38:41 -030085
Uwe Kleine-König5e2e95f2010-02-15 09:42:59 +010086config IMX_HAVE_IOMUX_V1
87 bool
88
Sascha Hauerbca6ef12009-04-01 11:11:48 +020089config ARCH_MXC_IOMUX_V3
90 bool
Sascha Hauer9eedbdf2009-10-29 17:12:39 +010091
92config ARCH_MXC_AUDMUX_V1
93 bool
94
95config ARCH_MXC_AUDMUX_V2
96 bool
97
Quinn Jensen52c543f2007-07-09 22:06:53 +010098endif