Kconfig 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. help
  22. This enables support for systems based on the Freescale i.MX25 family
  23. config ARCH_MX3
  24. bool "MX3-based"
  25. select CPU_V6
  26. help
  27. This enables support for systems based on the Freescale i.MX3 family
  28. config ARCH_MXC91231
  29. bool "MXC91231-based"
  30. select CPU_V6
  31. help
  32. This enables support for systems based on the Freescale MXC91231 family
  33. config ARCH_MX5
  34. bool "MX5-based"
  35. select CPU_V7
  36. help
  37. This enables support for systems based on the Freescale i.MX51 family
  38. endchoice
  39. source "arch/arm/mach-imx/Kconfig"
  40. source "arch/arm/mach-mx3/Kconfig"
  41. source "arch/arm/mach-mx25/Kconfig"
  42. source "arch/arm/mach-mxc91231/Kconfig"
  43. source "arch/arm/mach-mx5/Kconfig"
  44. endmenu
  45. config MXC_IRQ_PRIOR
  46. bool "Use IRQ priority"
  47. help
  48. Select this if you want to use prioritized IRQ handling.
  49. This feature prevents higher priority ISR to be interrupted
  50. by lower priority IRQ even IRQF_DISABLED flag is not set.
  51. This may be useful in embedded applications, where are strong
  52. requirements for timing.
  53. Say N here, unless you have a specialized requirement.
  54. config MXC_TZIC
  55. bool "Enable TrustZone Interrupt Controller"
  56. depends on ARCH_MX51
  57. help
  58. This will be automatically selected for all processors
  59. containing this interrupt controller.
  60. Say N here only if you are really sure.
  61. config MXC_PWM
  62. tristate "Enable PWM driver"
  63. select HAVE_PWM
  64. help
  65. Enable support for the i.MX PWM controller(s).
  66. config MXC_ULPI
  67. bool
  68. config ARCH_HAS_RNGA
  69. bool
  70. config IMX_HAVE_IOMUX_V1
  71. bool
  72. config ARCH_MXC_IOMUX_V3
  73. bool
  74. config ARCH_MXC_AUDMUX_V1
  75. bool
  76. config ARCH_MXC_AUDMUX_V2
  77. bool
  78. endif