Kconfig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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_MX3
  19. bool "MX3-based"
  20. select CPU_V6
  21. select COMMON_CLKDEV
  22. help
  23. This enables support for systems based on the Freescale i.MX3 family
  24. endchoice
  25. source "arch/arm/mach-mx1/Kconfig"
  26. source "arch/arm/mach-mx2/Kconfig"
  27. source "arch/arm/mach-mx3/Kconfig"
  28. endmenu
  29. config MXC_IRQ_PRIOR
  30. bool "Use IRQ priority"
  31. depends on ARCH_MXC
  32. help
  33. Select this if you want to use prioritized IRQ handling.
  34. This feature prevents higher priority ISR to be interrupted
  35. by lower priority IRQ even IRQF_DISABLED flag is not set.
  36. This may be useful in embedded applications, where are strong
  37. requirements for timing.
  38. Say N here, unless you have a specialized requirement.
  39. config MXC_PWM
  40. tristate "Enable PWM driver"
  41. depends on ARCH_MXC
  42. select HAVE_PWM
  43. help
  44. Enable support for the i.MX PWM controller(s).
  45. config ARCH_HAS_RNGA
  46. bool
  47. depends on ARCH_MXC
  48. config ARCH_MXC_IOMUX_V3
  49. bool
  50. endif