Kconfig 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. if ARCH_MXC
  2. menu "Freescale MXC Implementations"
  3. choice
  4. prompt "Freescale CPU family:"
  5. default ARCH_MX3
  6. config ARCH_MX1
  7. bool "MX1-based"
  8. select CPU_ARM920T
  9. select IMX_HAVE_IOMUX_V1
  10. help
  11. This enables support for systems based on the Freescale i.MX1 family
  12. config ARCH_MX2
  13. bool "MX2-based"
  14. select CPU_ARM926T
  15. select IMX_HAVE_IOMUX_V1
  16. help
  17. This enables support for systems based on the Freescale i.MX2 family
  18. config ARCH_MX25
  19. bool "MX25-based"
  20. select CPU_ARM926T
  21. select ARCH_MXC_IOMUX_V3
  22. select HAVE_FB_IMX
  23. select ARCH_MXC_AUDMUX_V2
  24. help
  25. This enables support for systems based on the Freescale i.MX25 family
  26. config ARCH_MX3
  27. bool "MX3-based"
  28. select CPU_V6
  29. help
  30. This enables support for systems based on the Freescale i.MX3 family
  31. config ARCH_MXC91231
  32. bool "MXC91231-based"
  33. select CPU_V6
  34. help
  35. This enables support for systems based on the Freescale MXC91231 family
  36. config ARCH_MX5
  37. bool "MX5-based"
  38. select CPU_V7
  39. help
  40. This enables support for systems based on the Freescale i.MX51 family
  41. endchoice
  42. source "arch/arm/mach-mx1/Kconfig"
  43. source "arch/arm/mach-mx2/Kconfig"
  44. source "arch/arm/mach-mx3/Kconfig"
  45. source "arch/arm/mach-mx25/Kconfig"
  46. source "arch/arm/mach-mxc91231/Kconfig"
  47. source "arch/arm/mach-mx5/Kconfig"
  48. endmenu
  49. config MXC_IRQ_PRIOR
  50. bool "Use IRQ priority"
  51. help
  52. Select this if you want to use prioritized IRQ handling.
  53. This feature prevents higher priority ISR to be interrupted
  54. by lower priority IRQ even IRQF_DISABLED flag is not set.
  55. This may be useful in embedded applications, where are strong
  56. requirements for timing.
  57. Say N here, unless you have a specialized requirement.
  58. config MXC_TZIC
  59. bool "Enable TrustZone Interrupt Controller"
  60. depends on ARCH_MX51
  61. help
  62. This will be automatically selected for all processors
  63. containing this interrupt controller.
  64. Say N here only if you are really sure.
  65. config MXC_PWM
  66. tristate "Enable PWM driver"
  67. select HAVE_PWM
  68. help
  69. Enable support for the i.MX PWM controller(s).
  70. config MXC_ULPI
  71. bool
  72. config ARCH_HAS_RNGA
  73. bool
  74. config IMX_HAVE_IOMUX_V1
  75. bool
  76. config ARCH_MXC_IOMUX_V3
  77. bool
  78. config ARCH_MXC_AUDMUX_V1
  79. bool
  80. config ARCH_MXC_AUDMUX_V2
  81. bool
  82. endif