blob: 44f3a805ae56e1c2c13c1fdae1f3da5a11b884ca [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
Sascha Hauer7dae1132009-02-07 13:34:01 +010012 select COMMON_CLKDEV
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
Sascha Haueredfcea82009-02-16 15:13:43 +010019 select COMMON_CLKDEV
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
26 select COMMON_CLKDEV
Baruch Siach08268b72010-02-24 11:31:31 +020027 select ARCH_MXC_IOMUX_V3
Baruch Siachf6014412010-02-17 12:33:23 +020028 select HAVE_FB_IMX
Sascha Hauer8c25c362009-06-04 11:32:12 +020029 help
30 This enables support for systems based on the Freescale i.MX25 family
31
Quinn Jensen52c543f2007-07-09 22:06:53 +010032config ARCH_MX3
33 bool "MX3-based"
Russell Kingc7508152008-10-26 10:55:14 +000034 select CPU_V6
Sascha Hauer9eb2eb82009-02-18 11:55:33 +010035 select COMMON_CLKDEV
Quinn Jensen52c543f2007-07-09 22:06:53 +010036 help
37 This enables support for systems based on the Freescale i.MX3 family
38
Dmitriy Taychenachevfd6ac7b2009-07-31 20:29:22 +090039config ARCH_MXC91231
40 bool "MXC91231-based"
41 select CPU_V6
42 select COMMON_CLKDEV
43 help
44 This enables support for systems based on the Freescale MXC91231 family
45
Amit Kucheriab996b582010-02-02 11:57:53 -080046config ARCH_MX5
47 bool "MX5-based"
48 select CPU_V7
49 select COMMON_CLKDEV
50 help
51 This enables support for systems based on the Freescale i.MX51 family
52
Quinn Jensen52c543f2007-07-09 22:06:53 +010053endchoice
54
Paulius Zaleckascfca8b52008-11-14 11:01:38 +010055source "arch/arm/mach-mx1/Kconfig"
Juergen Beisert1bd55a42008-07-05 10:03:02 +020056source "arch/arm/mach-mx2/Kconfig"
Quinn Jensen52c543f2007-07-09 22:06:53 +010057source "arch/arm/mach-mx3/Kconfig"
Sascha Hauer8c25c362009-06-04 11:32:12 +020058source "arch/arm/mach-mx25/Kconfig"
Dmitriy Taychenachevfd6ac7b2009-07-31 20:29:22 +090059source "arch/arm/mach-mxc91231/Kconfig"
Amit Kucheriab996b582010-02-02 11:57:53 -080060source "arch/arm/mach-mx5/Kconfig"
Quinn Jensen52c543f2007-07-09 22:06:53 +010061
62endmenu
63
Darius Augulis479c9012008-09-09 11:29:41 +020064config MXC_IRQ_PRIOR
65 bool "Use IRQ priority"
66 depends on ARCH_MXC
67 help
68 Select this if you want to use prioritized IRQ handling.
69 This feature prevents higher priority ISR to be interrupted
70 by lower priority IRQ even IRQF_DISABLED flag is not set.
71 This may be useful in embedded applications, where are strong
72 requirements for timing.
73 Say N here, unless you have a specialized requirement.
74
Amit Kucheriaa0037082009-12-03 22:36:41 +020075config MXC_TZIC
76 bool "Enable TrustZone Interrupt Controller"
77 depends on ARCH_MX51
78 help
79 This will be automatically selected for all processors
80 containing this interrupt controller.
81 Say N here only if you are really sure.
82
Sascha Hauer166091b2009-01-16 15:17:16 +010083config MXC_PWM
84 tristate "Enable PWM driver"
85 depends on ARCH_MXC
Holger Schurigc010dba2009-04-14 12:50:20 +020086 select HAVE_PWM
Sascha Hauer166091b2009-01-16 15:17:16 +010087 help
88 Enable support for the i.MX PWM controller(s).
89
Daniel Mackf4f8bda2009-11-05 09:44:09 +010090config MXC_ULPI
91 bool
92
Alan Carvalho de Assis45001e92009-04-02 12:38:41 -030093config ARCH_HAS_RNGA
94 bool
95 depends on ARCH_MXC
96
Sascha Hauerbca6ef12009-04-01 11:11:48 +020097config ARCH_MXC_IOMUX_V3
98 bool
Sascha Hauer9eedbdf2009-10-29 17:12:39 +010099
100config ARCH_MXC_AUDMUX_V1
101 bool
102
103config ARCH_MXC_AUDMUX_V2
104 bool
105
Quinn Jensen52c543f2007-07-09 22:06:53 +0100106endif