Kconfig 2.0 KB

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