ACPI: Do not try to set up acpi processor stuff on cores exceeding maxcpus=
[zen-stable.git] / arch / arm / plat-mxc / Kconfig
blob7f7ad6f289bd53383ed5ed952099d62c2a4f52b1
1 if ARCH_MXC
3 menu "Freescale MXC Implementations"
5 choice
6         prompt "Freescale CPU family:"
7         default ARCH_MX3
9 config ARCH_MX1
10         bool "MX1-based"
11         select CPU_ARM920T
12         select IMX_HAVE_IOMUX_V1
13         help
14           This enables support for systems based on the Freescale i.MX1 family
16 config ARCH_MX2
17         bool "MX2-based"
18         select CPU_ARM926T
19         select IMX_HAVE_IOMUX_V1
20         help
21           This enables support for systems based on the Freescale i.MX2 family
23 config ARCH_MX25
24         bool "MX25-based"
25         select CPU_ARM926T
26         select ARCH_MXC_IOMUX_V3
27         select HAVE_FB_IMX
28         help
29           This enables support for systems based on the Freescale i.MX25 family
31 config ARCH_MX3
32         bool "MX3-based"
33         select CPU_V6
34         help
35           This enables support for systems based on the Freescale i.MX3 family
37 config ARCH_MXC91231
38         bool "MXC91231-based"
39         select CPU_V6
40         help
41           This enables support for systems based on the Freescale MXC91231 family
43 config ARCH_MX5
44         bool "MX5-based"
45         select CPU_V7
46         help
47           This enables support for systems based on the Freescale i.MX51 family
49 endchoice
51 source "arch/arm/mach-mx1/Kconfig"
52 source "arch/arm/mach-mx2/Kconfig"
53 source "arch/arm/mach-mx3/Kconfig"
54 source "arch/arm/mach-mx25/Kconfig"
55 source "arch/arm/mach-mxc91231/Kconfig"
56 source "arch/arm/mach-mx5/Kconfig"
58 endmenu
60 config MXC_IRQ_PRIOR
61         bool "Use IRQ priority"
62         help
63           Select this if you want to use prioritized IRQ handling.
64           This feature prevents higher priority ISR to be interrupted
65           by lower priority IRQ even IRQF_DISABLED flag is not set.
66           This may be useful in embedded applications, where are strong
67           requirements for timing.
68           Say N here, unless you have a specialized requirement.
70 config MXC_TZIC
71         bool "Enable TrustZone Interrupt Controller"
72         depends on ARCH_MX51
73         help
74           This will be automatically selected for all processors
75           containing this interrupt controller.
76           Say N here only if you are really sure.
78 config MXC_PWM
79         tristate "Enable PWM driver"
80         select HAVE_PWM
81         help
82           Enable support for the i.MX PWM controller(s).
84 config MXC_ULPI
85         bool
87 config ARCH_HAS_RNGA
88         bool
90 config IMX_HAVE_IOMUX_V1
91         bool
93 config ARCH_MXC_IOMUX_V3
94         bool
96 config ARCH_MXC_AUDMUX_V1
97         bool
99 config ARCH_MXC_AUDMUX_V2
100         bool
102 endif