Kconfig 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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_MX1
  8. bool "MX1-based"
  9. select SOC_IMX1
  10. help
  11. This enables support for systems based on the Freescale i.MX1 family
  12. config ARCH_MX2
  13. bool "MX2-based"
  14. help
  15. This enables support for systems based on the Freescale i.MX2 family
  16. config ARCH_MX25
  17. bool "MX25-based"
  18. help
  19. This enables support for systems based on the Freescale i.MX25 family
  20. config ARCH_MX3
  21. bool "MX3-based"
  22. select CPU_V6
  23. help
  24. This enables support for systems based on the Freescale i.MX3 family
  25. config ARCH_MXC91231
  26. bool "MXC91231-based"
  27. select CPU_V6
  28. help
  29. This enables support for systems based on the Freescale MXC91231 family
  30. config ARCH_MX5
  31. bool "MX5-based"
  32. select CPU_V7
  33. select ARM_L1_CACHE_SHIFT_6
  34. help
  35. This enables support for systems based on the Freescale i.MX51 family
  36. endchoice
  37. source "arch/arm/mach-imx/Kconfig"
  38. source "arch/arm/mach-mx3/Kconfig"
  39. source "arch/arm/mach-mxc91231/Kconfig"
  40. source "arch/arm/mach-mx5/Kconfig"
  41. endmenu
  42. config MXC_IRQ_PRIOR
  43. bool "Use IRQ priority"
  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. config MXC_TZIC
  52. bool
  53. config MXC_AVIC
  54. bool
  55. config MXC_PWM
  56. tristate "Enable PWM driver"
  57. select HAVE_PWM
  58. help
  59. Enable support for the i.MX PWM controller(s).
  60. config MXC_DEBUG_BOARD
  61. bool "Enable MXC debug board(for 3-stack)"
  62. help
  63. The debug board is an integral part of the MXC 3-stack(PDK)
  64. platforms, it can be attached or removed from the peripheral
  65. board. On debug board, several debug devices(ethernet, UART,
  66. buttons, LEDs and JTAG) are implemented. Between the MCU and
  67. these devices, a CPLD is added as a bridge which performs
  68. data/address de-multiplexing and decode, signal level shift,
  69. interrupt control and various board functions.
  70. config HAVE_EPIT
  71. bool
  72. config MXC_USE_EPIT
  73. bool "Use EPIT instead of GPT"
  74. depends on HAVE_EPIT
  75. help
  76. Use EPIT as the system timer on systems that have it. Normally you
  77. don't have a reason to do so as the EPIT has the same features and
  78. uses the same clocks as the GPT. Anyway, on some systems the GPT
  79. may be in use for other purposes.
  80. config MXC_ULPI
  81. bool
  82. config ARCH_HAS_RNGA
  83. bool
  84. config IMX_HAVE_IOMUX_V1
  85. bool
  86. config ARCH_MXC_IOMUX_V3
  87. bool
  88. config ARCH_MXC_AUDMUX_V1
  89. bool
  90. config ARCH_MXC_AUDMUX_V2
  91. bool
  92. config IRAM_ALLOC
  93. bool
  94. select GENERIC_ALLOCATOR
  95. endif