Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. select CPU_ARM926T
  19. select ARCH_MXC_IOMUX_V3
  20. select HAVE_FB_IMX
  21. select ARCH_MXC_AUDMUX_V2
  22. help
  23. This enables support for systems based on the Freescale i.MX25 family
  24. config ARCH_MX3
  25. bool "MX3-based"
  26. select CPU_V6
  27. help
  28. This enables support for systems based on the Freescale i.MX3 family
  29. config ARCH_MXC91231
  30. bool "MXC91231-based"
  31. select CPU_V6
  32. help
  33. This enables support for systems based on the Freescale MXC91231 family
  34. config ARCH_MX5
  35. bool "MX5-based"
  36. select CPU_V7
  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-mx3/Kconfig"
  42. source "arch/arm/mach-mx25/Kconfig"
  43. source "arch/arm/mach-mxc91231/Kconfig"
  44. source "arch/arm/mach-mx5/Kconfig"
  45. endmenu
  46. config MXC_IRQ_PRIOR
  47. bool "Use IRQ priority"
  48. help
  49. Select this if you want to use prioritized IRQ handling.
  50. This feature prevents higher priority ISR to be interrupted
  51. by lower priority IRQ even IRQF_DISABLED flag is not set.
  52. This may be useful in embedded applications, where are strong
  53. requirements for timing.
  54. Say N here, unless you have a specialized requirement.
  55. config MXC_TZIC
  56. bool "Enable TrustZone Interrupt Controller"
  57. depends on ARCH_MX51
  58. help
  59. This will be automatically selected for all processors
  60. containing this interrupt controller.
  61. Say N here only if you are really sure.
  62. config MXC_PWM
  63. tristate "Enable PWM driver"
  64. select HAVE_PWM
  65. help
  66. Enable support for the i.MX PWM controller(s).
  67. config MXC_DEBUG_BOARD
  68. bool "Enable MXC debug board(for 3-stack)"
  69. help
  70. The debug board is an integral part of the MXC 3-stack(PDK)
  71. platforms, it can be attached or removed from the peripheral
  72. board. On debug board, several debug devices(ethernet, UART,
  73. buttons, LEDs and JTAG) are implemented. Between the MCU and
  74. these devices, a CPLD is added as a bridge which performs
  75. data/address de-multiplexing and decode, signal level shift,
  76. interrupt control and various board functions.
  77. config MXC_ULPI
  78. bool
  79. config ARCH_HAS_RNGA
  80. bool
  81. config IMX_HAVE_IOMUX_V1
  82. bool
  83. config ARCH_MXC_IOMUX_V3
  84. bool
  85. config ARCH_MXC_AUDMUX_V1
  86. bool
  87. config ARCH_MXC_AUDMUX_V2
  88. bool
  89. endif