Kconfig 2.1 KB
Newer Older
1 2
if ARCH_MXC

3 4
source "arch/arm/plat-mxc/devices/Kconfig"

5 6 7
menu "Freescale MXC Implementations"

choice
H
Holger Schurig 已提交
8
	prompt "Freescale CPU family:"
S
Sascha Hauer 已提交
9
	default ARCH_IMX_V6_V7
10

11 12 13
config ARCH_IMX_V4_V5
	bool "i.MX1, i.MX21, i.MX25, i.MX27"
	select ARM_PATCH_PHYS_VIRT
14
	select AUTO_ZRELADDR if !ZBOOT_ROM
S
Sascha Hauer 已提交
15
	help
16 17
	  This enables support for systems based on the Freescale i.MX ARMv4
	  and ARMv5 SoCs
S
Sascha Hauer 已提交
18

S
Sascha Hauer 已提交
19
config ARCH_IMX_V6_V7
20
	bool "i.MX3, i.MX5, i.MX6"
S
Sascha Hauer 已提交
21
	select ARM_PATCH_PHYS_VIRT
22
	select AUTO_ZRELADDR if !ZBOOT_ROM
23
	select MIGHT_HAVE_CACHE_L2X0
24
	help
25 26
	  This enables support for systems based on the Freescale i.MX3, i.MX5
	  and i.MX6 family.
27

28 29
endchoice

30
source "arch/arm/mach-imx/Kconfig"
31 32 33

endmenu

34 35 36 37 38 39 40 41 42 43
config MXC_IRQ_PRIOR
	bool "Use IRQ priority"
	help
	  Select this if you want to use prioritized IRQ handling.
	  This feature prevents higher priority ISR to be interrupted
	  by lower priority IRQ even IRQF_DISABLED flag is not set.
	  This may be useful in embedded applications, where are strong
	  requirements for timing.
	  Say N here, unless you have a specialized requirement.

44
config MXC_TZIC
45
	bool
46

47 48 49
config MXC_AVIC
	bool

50 51 52 53 54 55 56 57 58 59 60
config MXC_DEBUG_BOARD
	bool "Enable MXC debug board(for 3-stack)"
	help
	  The debug board is an integral part of the MXC 3-stack(PDK)
	  platforms, it can be attached or removed from the peripheral
	  board. On debug board, several debug devices(ethernet, UART,
	  buttons, LEDs and JTAG) are implemented. Between the MCU and
	  these devices, a CPLD is added as a bridge which performs
	  data/address de-multiplexing and decode, signal level shift,
	  interrupt control and various board functions.

S
Sascha Hauer 已提交
61 62 63 64 65 66 67 68 69 70 71 72
config HAVE_EPIT
	bool

config MXC_USE_EPIT
	bool "Use EPIT instead of GPT"
	depends on HAVE_EPIT
	help
	  Use EPIT as the system timer on systems that have it. Normally you
	  don't have a reason to do so as the EPIT has the same features and
	  uses the same clocks as the GPT. Anyway, on some systems the GPT
	  may be in use for other purposes.

D
Daniel Mack 已提交
73 74 75
config MXC_ULPI
	bool

76 77 78
config ARCH_HAS_RNGA
	bool

79 80 81
config IMX_HAVE_IOMUX_V1
	bool

82 83
config ARCH_MXC_IOMUX_V3
	bool
84

85 86 87 88
config IRAM_ALLOC
	bool
	select GENERIC_ALLOCATOR

89
endif