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