Kconfig 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.MX5, i.MX6"
  16. select AUTO_ZRELADDR if !ZBOOT_ROM
  17. select ARM_PATCH_PHYS_VIRT
  18. select MIGHT_HAVE_CACHE_L2X0
  19. help
  20. This enables support for systems based on the Freescale i.MX3, i.MX5
  21. and i.MX6 family.
  22. endchoice
  23. source "arch/arm/mach-imx/Kconfig"
  24. endmenu
  25. config MXC_IRQ_PRIOR
  26. bool "Use IRQ priority"
  27. help
  28. Select this if you want to use prioritized IRQ handling.
  29. This feature prevents higher priority ISR to be interrupted
  30. by lower priority IRQ even IRQF_DISABLED flag is not set.
  31. This may be useful in embedded applications, where are strong
  32. requirements for timing.
  33. Say N here, unless you have a specialized requirement.
  34. config MXC_TZIC
  35. bool
  36. config MXC_AVIC
  37. bool
  38. config MXC_DEBUG_BOARD
  39. bool "Enable MXC debug board(for 3-stack)"
  40. help
  41. The debug board is an integral part of the MXC 3-stack(PDK)
  42. platforms, it can be attached or removed from the peripheral
  43. board. On debug board, several debug devices(ethernet, UART,
  44. buttons, LEDs and JTAG) are implemented. Between the MCU and
  45. these devices, a CPLD is added as a bridge which performs
  46. data/address de-multiplexing and decode, signal level shift,
  47. interrupt control and various board functions.
  48. config HAVE_EPIT
  49. bool
  50. config MXC_USE_EPIT
  51. bool "Use EPIT instead of GPT"
  52. depends on HAVE_EPIT
  53. help
  54. Use EPIT as the system timer on systems that have it. Normally you
  55. don't have a reason to do so as the EPIT has the same features and
  56. uses the same clocks as the GPT. Anyway, on some systems the GPT
  57. may be in use for other purposes.
  58. config MXC_ULPI
  59. bool
  60. config ARCH_HAS_RNGA
  61. bool
  62. config IMX_HAVE_IOMUX_V1
  63. bool
  64. config ARCH_MXC_IOMUX_V3
  65. bool
  66. config IRAM_ALLOC
  67. bool
  68. select GENERIC_ALLOCATOR
  69. endif