Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. if ARCH_MX5
  2. config MX5
  3. bool
  4. default y
  5. select GPT_TIMER
  6. config MX51
  7. bool
  8. select ARM_CORTEX_A8_CVE_2017_5715
  9. select SYS_FSL_ERRATUM_ESDHC_A001
  10. config MX53
  11. bool
  12. select ARM_CORTEX_A8_CVE_2017_5715
  13. choice
  14. prompt "MX5 board select"
  15. optional
  16. config TARGET_KP_IMX53
  17. bool "Support K+P imx53 board"
  18. select BOARD_LATE_INIT
  19. select DM
  20. select DM_ETH
  21. select DM_GPIO
  22. select DM_I2C
  23. select DM_PMIC
  24. select DM_SERIAL
  25. select DM_MMC
  26. select BLK
  27. select DM_USB
  28. select DM_REGULATOR
  29. select MX53
  30. imply CMD_DM
  31. config TARGET_M53MENLO
  32. bool "Support m53menlo"
  33. select MX53
  34. select SUPPORT_SPL
  35. config TARGET_MX51EVK
  36. bool "Support mx51evk"
  37. select BOARD_LATE_INIT
  38. select MX51
  39. config TARGET_MX53ARD
  40. bool "Support mx53ard"
  41. select MX53
  42. config TARGET_MX53CX9020
  43. bool "Support CX9020"
  44. select BOARD_LATE_INIT
  45. select DM
  46. select DM_SERIAL
  47. select MX53
  48. imply CMD_DM
  49. config TARGET_MX53EVK
  50. bool "Support mx53evk"
  51. select BOARD_LATE_INIT
  52. select MX53
  53. config TARGET_MX53LOCO
  54. bool "Support mx53loco"
  55. select BOARD_LATE_INIT
  56. select MX53
  57. config TARGET_MX53PPD
  58. bool "Support mx53ppd"
  59. select MX53
  60. help
  61. Enable support for the GE Healthcare PPD.
  62. config TARGET_MX53SMD
  63. bool "Support mx53smd"
  64. select MX53
  65. config TARGET_TS4800
  66. bool "Support TS4800"
  67. select MX51
  68. config TARGET_USBARMORY
  69. bool "Support USB armory"
  70. select MX53
  71. endchoice
  72. config SYS_SOC
  73. default "mx5"
  74. source "board/beckhoff/mx53cx9020/Kconfig"
  75. source "board/freescale/mx51evk/Kconfig"
  76. source "board/freescale/mx53ard/Kconfig"
  77. source "board/freescale/mx53evk/Kconfig"
  78. source "board/freescale/mx53loco/Kconfig"
  79. source "board/freescale/mx53smd/Kconfig"
  80. source "board/ge/mx53ppd/Kconfig"
  81. source "board/inversepath/usbarmory/Kconfig"
  82. source "board/k+p/kp_imx53/Kconfig"
  83. source "board/menlo/m53menlo/Kconfig"
  84. source "board/technologic/ts4800/Kconfig"
  85. endif