Kconfig 1.2 KB

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