Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. if ARCH_MXC
  2. menu "Freescale MXC Implementations"
  3. choice
  4. prompt "MXC/iMX Base Type"
  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. help
  15. This enables support for systems based on the Freescale i.MX2 family
  16. config ARCH_MX3
  17. bool "MX3-based"
  18. select CPU_V6
  19. help
  20. This enables support for systems based on the Freescale i.MX3 family
  21. endchoice
  22. source "arch/arm/mach-mx1/Kconfig"
  23. source "arch/arm/mach-mx2/Kconfig"
  24. source "arch/arm/mach-mx3/Kconfig"
  25. endmenu
  26. config MXC_IRQ_PRIOR
  27. bool "Use IRQ priority"
  28. depends on ARCH_MXC
  29. help
  30. Select this if you want to use prioritized IRQ handling.
  31. This feature prevents higher priority ISR to be interrupted
  32. by lower priority IRQ even IRQF_DISABLED flag is not set.
  33. This may be useful in embedded applications, where are strong
  34. requirements for timing.
  35. Say N here, unless you have a specialized requirement.
  36. endif