Kconfig 837 B

12345678910111213141516171819202122232425262728293031323334353637
  1. if ARCH_MXC
  2. menu "Freescale MXC Implementations"
  3. choice
  4. prompt "MXC/iMX Base Type"
  5. default ARCH_MX3
  6. config ARCH_MX2
  7. bool "MX2-based"
  8. help
  9. This enables support for systems based on the Freescale i.MX2 family
  10. config ARCH_MX3
  11. bool "MX3-based"
  12. help
  13. This enables support for systems based on the Freescale i.MX3 family
  14. endchoice
  15. source "arch/arm/mach-mx2/Kconfig"
  16. source "arch/arm/mach-mx3/Kconfig"
  17. endmenu
  18. config MXC_IRQ_PRIOR
  19. bool "Use IRQ priority"
  20. depends on ARCH_MXC
  21. help
  22. Select this if you want to use prioritized IRQ handling.
  23. This feature prevents higher priority ISR to be interrupted
  24. by lower priority IRQ even IRQF_DISABLED flag is not set.
  25. This may be useful in embedded applications, where are strong
  26. requirements for timing.
  27. Say N here, unless you have a specialized requirement.
  28. endif