Kconfig 1020 B

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