]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/arm/plat-mxc/Kconfig
usb: ch9.h: usb_endpoint_maxp() uses __le16_to_cpu()
[karo-tx-linux.git] / arch / arm / plat-mxc / Kconfig
1 if ARCH_MXC
2
3 source "arch/arm/plat-mxc/devices/Kconfig"
4
5 menu "Freescale MXC Implementations"
6
7 choice
8         prompt "Freescale CPU family:"
9         default ARCH_IMX_V6_V7
10
11 config ARCH_IMX_V4_V5
12         bool "i.MX1, i.MX21, i.MX25, i.MX27"
13         select AUTO_ZRELADDR if !ZBOOT_ROM
14         select ARM_PATCH_PHYS_VIRT
15         help
16           This enables support for systems based on the Freescale i.MX ARMv4
17           and ARMv5 SoCs
18
19 config ARCH_IMX_V6_V7
20         bool "i.MX3, i.MX6"
21         select AUTO_ZRELADDR if !ZBOOT_ROM
22         select ARM_PATCH_PHYS_VIRT
23         select MIGHT_HAVE_CACHE_L2X0
24         help
25           This enables support for systems based on the Freescale i.MX3 and i.MX6
26           family.
27
28 config ARCH_MX5
29         bool "i.MX50, i.MX51, i.MX53"
30         select AUTO_ZRELADDR if !ZBOOT_ROM
31         select ARM_PATCH_PHYS_VIRT
32         help
33           This enables support for machines using Freescale's i.MX50 and i.MX53
34           processors.
35
36 endchoice
37
38 source "arch/arm/mach-imx/Kconfig"
39 source "arch/arm/mach-mx5/Kconfig"
40
41 endmenu
42
43 config MXC_IRQ_PRIOR
44         bool "Use IRQ priority"
45         help
46           Select this if you want to use prioritized IRQ handling.
47           This feature prevents higher priority ISR to be interrupted
48           by lower priority IRQ even IRQF_DISABLED flag is not set.
49           This may be useful in embedded applications, where are strong
50           requirements for timing.
51           Say N here, unless you have a specialized requirement.
52
53 config MXC_TZIC
54         bool
55
56 config MXC_AVIC
57         bool
58
59 config MXC_PWM
60         tristate "Enable PWM driver"
61         select HAVE_PWM
62         help
63           Enable support for the i.MX PWM controller(s).
64
65 config MXC_DEBUG_BOARD
66         bool "Enable MXC debug board(for 3-stack)"
67         help
68           The debug board is an integral part of the MXC 3-stack(PDK)
69           platforms, it can be attached or removed from the peripheral
70           board. On debug board, several debug devices(ethernet, UART,
71           buttons, LEDs and JTAG) are implemented. Between the MCU and
72           these devices, a CPLD is added as a bridge which performs
73           data/address de-multiplexing and decode, signal level shift,
74           interrupt control and various board functions.
75
76 config HAVE_EPIT
77         bool
78
79 config MXC_USE_EPIT
80         bool "Use EPIT instead of GPT"
81         depends on HAVE_EPIT
82         help
83           Use EPIT as the system timer on systems that have it. Normally you
84           don't have a reason to do so as the EPIT has the same features and
85           uses the same clocks as the GPT. Anyway, on some systems the GPT
86           may be in use for other purposes.
87
88 config MXC_ULPI
89         bool
90
91 config ARCH_HAS_RNGA
92         bool
93
94 config IMX_HAVE_IOMUX_V1
95         bool
96
97 config ARCH_MXC_IOMUX_V3
98         bool
99
100 config ARCH_MXC_AUDMUX_V1
101         bool
102
103 config ARCH_MXC_AUDMUX_V2
104         bool
105
106 config IRAM_ALLOC
107         bool
108         select GENERIC_ALLOCATOR
109
110 endif