Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 IMX_HAVE_IOMUX_V1
  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 IMX_HAVE_IOMUX_V1
  16. help
  17. This enables support for systems based on the Freescale i.MX2 family
  18. config ARCH_MX25
  19. bool "MX25-based"
  20. select CPU_ARM926T
  21. help
  22. This enables support for systems based on the Freescale i.MX25 family
  23. config ARCH_MX3
  24. bool "MX3-based"
  25. select CPU_V6
  26. help
  27. This enables support for systems based on the Freescale i.MX3 family
  28. config ARCH_MXC91231
  29. bool "MXC91231-based"
  30. select CPU_V6
  31. help
  32. This enables support for systems based on the Freescale MXC91231 family
  33. endchoice
  34. source "arch/arm/mach-mx1/Kconfig"
  35. source "arch/arm/mach-mx2/Kconfig"
  36. source "arch/arm/mach-mx3/Kconfig"
  37. source "arch/arm/mach-mx25/Kconfig"
  38. source "arch/arm/mach-mxc91231/Kconfig"
  39. endmenu
  40. config MXC_IRQ_PRIOR
  41. bool "Use IRQ priority"
  42. help
  43. Select this if you want to use prioritized IRQ handling.
  44. This feature prevents higher priority ISR to be interrupted
  45. by lower priority IRQ even IRQF_DISABLED flag is not set.
  46. This may be useful in embedded applications, where are strong
  47. requirements for timing.
  48. Say N here, unless you have a specialized requirement.
  49. config MXC_PWM
  50. tristate "Enable PWM driver"
  51. select HAVE_PWM
  52. help
  53. Enable support for the i.MX PWM controller(s).
  54. config MXC_ULPI
  55. bool
  56. config ARCH_HAS_RNGA
  57. bool
  58. config IMX_HAVE_IOMUX_V1
  59. bool
  60. config ARCH_MXC_IOMUX_V3
  61. bool
  62. config ARCH_MXC_AUDMUX_V1
  63. bool
  64. config ARCH_MXC_AUDMUX_V2
  65. bool
  66. endif