Kconfig 2.7 KB

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