Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. endchoice
  31. source "arch/arm/mach-mx1/Kconfig"
  32. source "arch/arm/mach-mx2/Kconfig"
  33. source "arch/arm/mach-mx3/Kconfig"
  34. source "arch/arm/mach-mx25/Kconfig"
  35. endmenu
  36. config MXC_IRQ_PRIOR
  37. bool "Use IRQ priority"
  38. depends on ARCH_MXC
  39. help
  40. Select this if you want to use prioritized IRQ handling.
  41. This feature prevents higher priority ISR to be interrupted
  42. by lower priority IRQ even IRQF_DISABLED flag is not set.
  43. This may be useful in embedded applications, where are strong
  44. requirements for timing.
  45. Say N here, unless you have a specialized requirement.
  46. config MXC_PWM
  47. tristate "Enable PWM driver"
  48. depends on ARCH_MXC
  49. select HAVE_PWM
  50. help
  51. Enable support for the i.MX PWM controller(s).
  52. config ARCH_HAS_RNGA
  53. bool
  54. depends on ARCH_MXC
  55. config ARCH_MXC_IOMUX_V3
  56. bool
  57. endif