Kconfig 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. if ARCH_MXC
  2. source "arch/arm/plat-mxc/devices/Kconfig"
  3. menu "Freescale MXC Implementations"
  4. choice
  5. prompt "Freescale CPU family:"
  6. default ARCH_IMX_V6_V7
  7. config ARCH_IMX_V4_V5
  8. bool "i.MX1, i.MX21, i.MX25, i.MX27"
  9. select AUTO_ZRELADDR if !ZBOOT_ROM
  10. select ARM_PATCH_PHYS_VIRT
  11. help
  12. This enables support for systems based on the Freescale i.MX ARMv4
  13. and ARMv5 SoCs
  14. config ARCH_IMX_V6_V7
  15. bool "i.MX3, i.MX6"
  16. select AUTO_ZRELADDR if !ZBOOT_ROM
  17. select ARM_PATCH_PHYS_VIRT
  18. help
  19. This enables support for systems based on the Freescale i.MX3 and i.MX6
  20. family.
  21. config ARCH_MX5
  22. bool "i.MX50, i.MX51, i.MX53"
  23. select AUTO_ZRELADDR if !ZBOOT_ROM
  24. select ARM_PATCH_PHYS_VIRT
  25. help
  26. This enables support for machines using Freescale's i.MX50 and i.MX53
  27. processors.
  28. endchoice
  29. source "arch/arm/mach-imx/Kconfig"
  30. source "arch/arm/mach-mx5/Kconfig"
  31. endmenu
  32. config MXC_IRQ_PRIOR
  33. bool "Use IRQ priority"
  34. help
  35. Select this if you want to use prioritized IRQ handling.
  36. This feature prevents higher priority ISR to be interrupted
  37. by lower priority IRQ even IRQF_DISABLED flag is not set.
  38. This may be useful in embedded applications, where are strong
  39. requirements for timing.
  40. Say N here, unless you have a specialized requirement.
  41. config MXC_TZIC
  42. bool
  43. config MXC_AVIC
  44. bool
  45. config MXC_PWM
  46. tristate "Enable PWM driver"
  47. select HAVE_PWM
  48. help
  49. Enable support for the i.MX PWM controller(s).
  50. config MXC_DEBUG_BOARD
  51. bool "Enable MXC debug board(for 3-stack)"
  52. help
  53. The debug board is an integral part of the MXC 3-stack(PDK)
  54. platforms, it can be attached or removed from the peripheral
  55. board. On debug board, several debug devices(ethernet, UART,
  56. buttons, LEDs and JTAG) are implemented. Between the MCU and
  57. these devices, a CPLD is added as a bridge which performs
  58. data/address de-multiplexing and decode, signal level shift,
  59. interrupt control and various board functions.
  60. config HAVE_EPIT
  61. bool
  62. config MXC_USE_EPIT
  63. bool "Use EPIT instead of GPT"
  64. depends on HAVE_EPIT
  65. help
  66. Use EPIT as the system timer on systems that have it. Normally you
  67. don't have a reason to do so as the EPIT has the same features and
  68. uses the same clocks as the GPT. Anyway, on some systems the GPT
  69. may be in use for other purposes.
  70. config MXC_ULPI
  71. bool
  72. config ARCH_HAS_RNGA
  73. bool
  74. config IMX_HAVE_IOMUX_V1
  75. bool
  76. config ARCH_MXC_IOMUX_V3
  77. bool
  78. config ARCH_MXC_AUDMUX_V1
  79. bool
  80. config ARCH_MXC_AUDMUX_V2
  81. bool
  82. config IRAM_ALLOC
  83. bool
  84. select GENERIC_ALLOCATOR
  85. endif