Kconfig 2.5 KB

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