Kconfig 1.7 KB

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