Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 SOC_IMX1
  9. help
  10. This enables support for systems based on the Freescale i.MX1 family
  11. config ARCH_MX2
  12. bool "MX2-based"
  13. help
  14. This enables support for systems based on the Freescale i.MX2 family
  15. config ARCH_MX25
  16. bool "MX25-based"
  17. select CPU_ARM926T
  18. select ARCH_MXC_IOMUX_V3
  19. select HAVE_FB_IMX
  20. help
  21. This enables support for systems based on the Freescale i.MX25 family
  22. config ARCH_MX3
  23. bool "MX3-based"
  24. select CPU_V6
  25. help
  26. This enables support for systems based on the Freescale i.MX3 family
  27. config ARCH_MXC91231
  28. bool "MXC91231-based"
  29. select CPU_V6
  30. help
  31. This enables support for systems based on the Freescale MXC91231 family
  32. config ARCH_MX5
  33. bool "MX5-based"
  34. select CPU_V7
  35. help
  36. This enables support for systems based on the Freescale i.MX51 family
  37. endchoice
  38. source "arch/arm/mach-imx/Kconfig"
  39. source "arch/arm/mach-mx3/Kconfig"
  40. source "arch/arm/mach-mx25/Kconfig"
  41. source "arch/arm/mach-mxc91231/Kconfig"
  42. source "arch/arm/mach-mx5/Kconfig"
  43. endmenu
  44. config MXC_IRQ_PRIOR
  45. bool "Use IRQ priority"
  46. help
  47. Select this if you want to use prioritized IRQ handling.
  48. This feature prevents higher priority ISR to be interrupted
  49. by lower priority IRQ even IRQF_DISABLED flag is not set.
  50. This may be useful in embedded applications, where are strong
  51. requirements for timing.
  52. Say N here, unless you have a specialized requirement.
  53. config MXC_TZIC
  54. bool "Enable TrustZone Interrupt Controller"
  55. depends on ARCH_MX51
  56. help
  57. This will be automatically selected for all processors
  58. containing this interrupt controller.
  59. Say N here only if you are really sure.
  60. config MXC_PWM
  61. tristate "Enable PWM driver"
  62. select HAVE_PWM
  63. help
  64. Enable support for the i.MX PWM controller(s).
  65. config MXC_ULPI
  66. bool
  67. config ARCH_HAS_RNGA
  68. bool
  69. config IMX_HAVE_IOMUX_V1
  70. bool
  71. config ARCH_MXC_IOMUX_V3
  72. bool
  73. config ARCH_MXC_AUDMUX_V1
  74. bool
  75. config ARCH_MXC_AUDMUX_V2
  76. bool
  77. endif