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