Kconfig 2.0 KB

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