| Quinn Jensen | 52c543f | 2007-07-09 22:06:53 +0100 | [diff] [blame] | 1 | if ARCH_MXC | 
 | 2 |  | 
| Uwe Kleine-König | 66384ee | 2010-06-15 18:14:19 +0200 | [diff] [blame] | 3 | source "arch/arm/plat-mxc/devices/Kconfig" | 
 | 4 |  | 
| Quinn Jensen | 52c543f | 2007-07-09 22:06:53 +0100 | [diff] [blame] | 5 | menu "Freescale MXC Implementations" | 
 | 6 |  | 
 | 7 | choice | 
| Holger Schurig | 6bbdbf2 | 2009-01-29 14:42:25 +0100 | [diff] [blame] | 8 | 	prompt "Freescale CPU family:" | 
| Sascha Hauer | a89cf59 | 2011-09-27 13:48:02 +0800 | [diff] [blame] | 9 | 	default ARCH_IMX_V6_V7 | 
| Quinn Jensen | 52c543f | 2007-07-09 22:06:53 +0100 | [diff] [blame] | 10 |  | 
| Sascha Hauer | ae4fa7f | 2011-08-23 09:39:35 +0200 | [diff] [blame] | 11 | config ARCH_IMX_V4_V5 | 
 | 12 | 	bool "i.MX1, i.MX21, i.MX25, i.MX27" | 
| Shawn Guo | 1b92999 | 2011-11-10 16:39:31 +0800 | [diff] [blame] | 13 | 	select AUTO_ZRELADDR if !ZBOOT_ROM | 
| Sascha Hauer | ae4fa7f | 2011-08-23 09:39:35 +0200 | [diff] [blame] | 14 | 	select ARM_PATCH_PHYS_VIRT | 
| Paulius Zaleckas | cfca8b5 | 2008-11-14 11:01:38 +0100 | [diff] [blame] | 15 | 	help | 
| Sascha Hauer | ae4fa7f | 2011-08-23 09:39:35 +0200 | [diff] [blame] | 16 | 	  This enables support for systems based on the Freescale i.MX ARMv4 | 
 | 17 | 	  and ARMv5 SoCs | 
| Sascha Hauer | 8c25c36 | 2009-06-04 11:32:12 +0200 | [diff] [blame] | 18 |  | 
| Sascha Hauer | a89cf59 | 2011-09-27 13:48:02 +0800 | [diff] [blame] | 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 | 
| Quinn Jensen | 52c543f | 2007-07-09 22:06:53 +0100 | [diff] [blame] | 23 | 	help | 
| Sascha Hauer | a89cf59 | 2011-09-27 13:48:02 +0800 | [diff] [blame] | 24 | 	  This enables support for systems based on the Freescale i.MX3 and i.MX6 | 
 | 25 | 	  family. | 
| Quinn Jensen | 52c543f | 2007-07-09 22:06:53 +0100 | [diff] [blame] | 26 |  | 
| Sascha Hauer | 7409cd1 | 2011-08-24 08:54:04 +0200 | [diff] [blame] | 27 | config ARCH_MX5 | 
 | 28 | 	bool "i.MX50, i.MX51, i.MX53" | 
| Shawn Guo | 1b92999 | 2011-11-10 16:39:31 +0800 | [diff] [blame] | 29 | 	select AUTO_ZRELADDR if !ZBOOT_ROM | 
| Sascha Hauer | 7409cd1 | 2011-08-24 08:54:04 +0200 | [diff] [blame] | 30 | 	select ARM_PATCH_PHYS_VIRT | 
| Uwe Kleine-König | 7db4d88 | 2011-04-08 11:06:43 +0200 | [diff] [blame] | 31 | 	help | 
| Paul Bolle | d0451c2 | 2011-10-12 14:18:51 +0200 | [diff] [blame] | 32 | 	  This enables support for machines using Freescale's i.MX50 and i.MX53 | 
| Uwe Kleine-König | 7db4d88 | 2011-04-08 11:06:43 +0200 | [diff] [blame] | 33 | 	  processors. | 
 | 34 |  | 
| Quinn Jensen | 52c543f | 2007-07-09 22:06:53 +0100 | [diff] [blame] | 35 | endchoice | 
 | 36 |  | 
| Uwe Kleine-König | d109167 | 2010-06-10 15:11:13 +0200 | [diff] [blame] | 37 | source "arch/arm/mach-imx/Kconfig" | 
| Amit Kucheria | b996b58 | 2010-02-02 11:57:53 -0800 | [diff] [blame] | 38 | source "arch/arm/mach-mx5/Kconfig" | 
| Quinn Jensen | 52c543f | 2007-07-09 22:06:53 +0100 | [diff] [blame] | 39 |  | 
 | 40 | endmenu | 
 | 41 |  | 
| Darius Augulis | 479c901 | 2008-09-09 11:29:41 +0200 | [diff] [blame] | 42 | config MXC_IRQ_PRIOR | 
 | 43 | 	bool "Use IRQ priority" | 
| Darius Augulis | 479c901 | 2008-09-09 11:29:41 +0200 | [diff] [blame] | 44 | 	help | 
 | 45 | 	  Select this if you want to use prioritized IRQ handling. | 
 | 46 | 	  This feature prevents higher priority ISR to be interrupted | 
 | 47 | 	  by lower priority IRQ even IRQF_DISABLED flag is not set. | 
 | 48 | 	  This may be useful in embedded applications, where are strong | 
 | 49 | 	  requirements for timing. | 
 | 50 | 	  Say N here, unless you have a specialized requirement. | 
 | 51 |  | 
| Amit Kucheria | a003708 | 2009-12-03 22:36:41 +0200 | [diff] [blame] | 52 | config MXC_TZIC | 
| Sascha Hauer | ec4bb25 | 2010-11-05 09:47:21 +0100 | [diff] [blame] | 53 | 	bool | 
| Amit Kucheria | a003708 | 2009-12-03 22:36:41 +0200 | [diff] [blame] | 54 |  | 
| Sascha Hauer | c7259df | 2010-11-05 09:37:22 +0100 | [diff] [blame] | 55 | config MXC_AVIC | 
 | 56 | 	bool | 
 | 57 |  | 
| Sascha Hauer | 166091b | 2009-01-16 15:17:16 +0100 | [diff] [blame] | 58 | config MXC_PWM | 
 | 59 | 	tristate "Enable PWM driver" | 
| Holger Schurig | c010dba | 2009-04-14 12:50:20 +0200 | [diff] [blame] | 60 | 	select HAVE_PWM | 
| Sascha Hauer | 166091b | 2009-01-16 15:17:16 +0100 | [diff] [blame] | 61 | 	help | 
 | 62 | 	  Enable support for the i.MX PWM controller(s). | 
 | 63 |  | 
| Jason Wang | fa94f8d | 2010-06-24 21:11:28 +0800 | [diff] [blame] | 64 | config MXC_DEBUG_BOARD | 
 | 65 | 	bool "Enable MXC debug board(for 3-stack)" | 
 | 66 | 	help | 
 | 67 | 	  The debug board is an integral part of the MXC 3-stack(PDK) | 
 | 68 | 	  platforms, it can be attached or removed from the peripheral | 
 | 69 | 	  board. On debug board, several debug devices(ethernet, UART, | 
 | 70 | 	  buttons, LEDs and JTAG) are implemented. Between the MCU and | 
 | 71 | 	  these devices, a CPLD is added as a bridge which performs | 
 | 72 | 	  data/address de-multiplexing and decode, signal level shift, | 
 | 73 | 	  interrupt control and various board functions. | 
 | 74 |  | 
| Sascha Hauer | f2b8901 | 2010-08-19 14:08:04 +0200 | [diff] [blame] | 75 | config HAVE_EPIT | 
 | 76 | 	bool | 
 | 77 |  | 
 | 78 | config MXC_USE_EPIT | 
 | 79 | 	bool "Use EPIT instead of GPT" | 
 | 80 | 	depends on HAVE_EPIT | 
 | 81 | 	help | 
 | 82 | 	  Use EPIT as the system timer on systems that have it. Normally you | 
 | 83 | 	  don't have a reason to do so as the EPIT has the same features and | 
 | 84 | 	  uses the same clocks as the GPT. Anyway, on some systems the GPT | 
 | 85 | 	  may be in use for other purposes. | 
 | 86 |  | 
| Daniel Mack | f4f8bda | 2009-11-05 09:44:09 +0100 | [diff] [blame] | 87 | config MXC_ULPI | 
 | 88 | 	bool | 
 | 89 |  | 
| Alan Carvalho de Assis | 45001e9 | 2009-04-02 12:38:41 -0300 | [diff] [blame] | 90 | config ARCH_HAS_RNGA | 
 | 91 | 	bool | 
| Alan Carvalho de Assis | 45001e9 | 2009-04-02 12:38:41 -0300 | [diff] [blame] | 92 |  | 
| Uwe Kleine-König | 5e2e95f | 2010-02-15 09:42:59 +0100 | [diff] [blame] | 93 | config IMX_HAVE_IOMUX_V1 | 
 | 94 | 	bool | 
 | 95 |  | 
| Sascha Hauer | bca6ef1 | 2009-04-01 11:11:48 +0200 | [diff] [blame] | 96 | config ARCH_MXC_IOMUX_V3 | 
 | 97 | 	bool | 
| Sascha Hauer | 9eedbdf | 2009-10-29 17:12:39 +0100 | [diff] [blame] | 98 |  | 
 | 99 | config ARCH_MXC_AUDMUX_V1 | 
 | 100 | 	bool | 
 | 101 |  | 
 | 102 | config ARCH_MXC_AUDMUX_V2 | 
 | 103 | 	bool | 
 | 104 |  | 
| Dinh Nguyen | 68a2f73 | 2010-10-12 11:29:01 -0500 | [diff] [blame] | 105 | config IRAM_ALLOC | 
 | 106 | 	bool | 
 | 107 | 	select GENERIC_ALLOCATOR | 
 | 108 |  | 
| Quinn Jensen | 52c543f | 2007-07-09 22:06:53 +0100 | [diff] [blame] | 109 | endif |