Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. if OMAP54XX
  2. config SPL_EXT_SUPPORT
  3. default y
  4. config SPL_FAT_SUPPORT
  5. default y
  6. config SPL_GPIO_SUPPORT
  7. default y
  8. config SPL_I2C_SUPPORT
  9. default y
  10. config SPL_LIBCOMMON_SUPPORT
  11. default y
  12. config SPL_LIBDISK_SUPPORT
  13. default y
  14. config SPL_LIBGENERIC_SUPPORT
  15. default y
  16. config SPL_MMC_SUPPORT
  17. default y
  18. config SPL_NAND_SUPPORT
  19. default y
  20. config SPL_POWER_SUPPORT
  21. default y
  22. config SPL_SERIAL_SUPPORT
  23. default y
  24. config SPL_DISPLAY_PRINT
  25. default y
  26. choice
  27. prompt "OMAP5 board select"
  28. optional
  29. config TARGET_CL_SOM_AM57X
  30. bool "CompuLab CL-SOM-AM57x"
  31. config TARGET_CM_T54
  32. bool "CompuLab CM-T54"
  33. config TARGET_OMAP5_UEVM
  34. bool "TI OMAP5 uEVM board"
  35. config TARGET_DRA7XX_EVM
  36. bool "TI DRA7XX"
  37. select TI_I2C_BOARD_DETECT
  38. select PHYS_64BIT
  39. config TARGET_AM57XX_EVM
  40. bool "AM57XX"
  41. select TI_I2C_BOARD_DETECT
  42. endchoice
  43. config SYS_SOC
  44. default "omap5"
  45. if TARGET_DRA7XX_EVM || TARGET_AM57XX_EVM
  46. menu "Voltage Domain OPP selections"
  47. choice
  48. prompt "MPU Voltage Domain"
  49. default DRA7_MPU_OPP_NOM
  50. help
  51. Select the Operating Performance Point(OPP) for the MPU voltage
  52. domain on DRA7xx & AM57xx SoCs.
  53. config DRA7_MPU_OPP_NOM
  54. bool "OPP NOM"
  55. help
  56. This config option enables Normal OPP for MPU. This is the safest
  57. option for booting.
  58. endchoice
  59. choice
  60. prompt "DSPEVE Voltage Domain"
  61. help
  62. Select the Operating Performance Point(OPP) for the DSPEVE voltage
  63. domain on DRA7xx & AM57xx SoCs.
  64. config DRA7_DSPEVE_OPP_NOM
  65. bool "OPP NOM"
  66. help
  67. This config option enables Normal OPP for DSPEVE. This is the safest
  68. option for booting and choose this when unsure about other OPPs .
  69. config DRA7_DSPEVE_OPP_OD
  70. bool "OPP OD"
  71. help
  72. This config option enables Over drive OPP for DSPEVE.
  73. config DRA7_DSPEVE_OPP_HIGH
  74. bool "OPP HIGH"
  75. help
  76. This config option enables High OPP for DSPEVE.
  77. endchoice
  78. choice
  79. prompt "IVA Voltage Domain"
  80. help
  81. Select the Operating Performance Point(OPP) for the IVA voltage
  82. domain on DRA7xx & AM57xx SoCs.
  83. config DRA7_IVA_OPP_NOM
  84. bool "OPP NOM"
  85. help
  86. This config option enables Normal OPP for IVA. This is the safest
  87. option for booting and choose this when unsure about other OPPs .
  88. config DRA7_IVA_OPP_OD
  89. bool "OPP OD"
  90. help
  91. This config option enables Over drive OPP for IVA.
  92. config DRA7_IVA_OPP_HIGH
  93. bool "OPP HIGH"
  94. help
  95. This config option enables High OPP for IVA.
  96. endchoice
  97. choice
  98. prompt "GPU Voltage Domain"
  99. help
  100. Select the Operating Performance Point(OPP) for the GPU voltage
  101. domain on DRA7xx & AM57xx SoCs.
  102. config DRA7_GPU_OPP_NOM
  103. bool "OPP NOM"
  104. help
  105. This config option enables Normal OPP for GPU. This is the safest
  106. option for booting and choose this when unsure about other OPPs .
  107. config DRA7_GPU_OPP_OD
  108. bool "OPP OD"
  109. help
  110. This config option enables Over drive OPP for GPU.
  111. config DRA7_GPU_OPP_HIGH
  112. bool "OPP HIGH"
  113. help
  114. This config option enables High OPP for GPU.
  115. endchoice
  116. endmenu
  117. endif
  118. source "board/compulab/cl-som-am57x/Kconfig"
  119. source "board/compulab/cm_t54/Kconfig"
  120. source "board/ti/omap5_uevm/Kconfig"
  121. source "board/ti/dra7xx/Kconfig"
  122. source "board/ti/am57xx/Kconfig"
  123. endif