Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. help
  41. Select this if you want to use prioritized IRQ handling.
  42. This feature prevents higher priority ISR to be interrupted
  43. by lower priority IRQ even IRQF_DISABLED flag is not set.
  44. This may be useful in embedded applications, where are strong
  45. requirements for timing.
  46. Say N here, unless you have a specialized requirement.
  47. config MXC_PWM
  48. tristate "Enable PWM driver"
  49. select HAVE_PWM
  50. help
  51. Enable support for the i.MX PWM controller(s).
  52. config MXC_ULPI
  53. bool
  54. config ARCH_HAS_RNGA
  55. bool
  56. config ARCH_MXC_IOMUX_V3
  57. bool
  58. config ARCH_MXC_AUDMUX_V1
  59. bool
  60. config ARCH_MXC_AUDMUX_V2
  61. bool
  62. endif