Kconfig 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. if OMAP34XX
  2. # We only enable the clocks for the GPIO banks that a given board requies.
  3. config OMAP3_GPIO_2
  4. bool
  5. config OMAP3_GPIO_3
  6. bool
  7. config OMAP3_GPIO_4
  8. bool
  9. config OMAP3_GPIO_5
  10. bool
  11. config OMAP3_GPIO_6
  12. bool
  13. choice
  14. prompt "OMAP3 board select"
  15. optional
  16. config TARGET_AM3517_EVM
  17. bool "AM3517 EVM"
  18. config TARGET_MT_VENTOUX
  19. bool "TeeJet Mt.Ventoux"
  20. select OMAP3_GPIO_4
  21. select OMAP3_GPIO_5 if USB_EHCI_HCD
  22. config TARGET_OMAP3_BEAGLE
  23. bool "TI OMAP3 BeagleBoard"
  24. select DM
  25. select DM_SERIAL
  26. select DM_GPIO
  27. select OMAP3_GPIO_5
  28. select OMAP3_GPIO_6
  29. config TARGET_CM_T35
  30. bool "CompuLab CM-T3530 and CM-T3730 boards"
  31. select OMAP3_GPIO_2
  32. select OMAP3_GPIO_5
  33. select OMAP3_GPIO_6 if LED_STATUS
  34. config TARGET_CM_T3517
  35. bool "CompuLab CM-T3517 boards"
  36. select OMAP3_GPIO_2
  37. select OMAP3_GPIO_5
  38. select OMAP3_GPIO_6 if LED_STATUS
  39. config TARGET_DEVKIT8000
  40. bool "TimLL OMAP3 Devkit8000"
  41. select DM
  42. select DM_SERIAL
  43. select DM_GPIO
  44. config TARGET_OMAP3_EVM
  45. bool "TI OMAP3 EVM"
  46. config TARGET_OMAP3_IGEP00X0
  47. bool "IGEP"
  48. select DM
  49. select DM_SERIAL
  50. select DM_GPIO
  51. select OMAP3_GPIO_3
  52. select OMAP3_GPIO_5
  53. select OMAP3_GPIO_6
  54. config TARGET_OMAP3_OVERO
  55. bool "OMAP35xx Gumstix Overo"
  56. select DM
  57. select DM_SERIAL
  58. select DM_GPIO
  59. select OMAP3_GPIO_2
  60. select OMAP3_GPIO_3
  61. select OMAP3_GPIO_4
  62. select OMAP3_GPIO_5
  63. select OMAP3_GPIO_6
  64. config TARGET_OMAP3_ZOOM1
  65. bool "TI Zoom1"
  66. select DM
  67. select DM_SERIAL
  68. select DM_GPIO
  69. config TARGET_AM3517_CRANE
  70. bool "am3517_crane"
  71. config TARGET_OMAP3_PANDORA
  72. bool "OMAP3 Pandora"
  73. select OMAP3_GPIO_4
  74. select OMAP3_GPIO_6
  75. config TARGET_ECO5PK
  76. bool "ECO5PK"
  77. select OMAP3_GPIO_5 if USB_EHCI_HCD
  78. config TARGET_TRICORDER
  79. bool "Tricorder"
  80. select OMAP3_GPIO_2
  81. config TARGET_MCX
  82. bool "MCX"
  83. select BOARD_LATE_INIT
  84. select OMAP3_GPIO_2 if USB_EHCI_HCD
  85. select OMAP3_GPIO_5 if USB_EHCI_HCD
  86. config TARGET_OMAP3_LOGIC
  87. bool "OMAP3 Logic"
  88. select BOARD_LATE_INIT
  89. select DM
  90. select DM_SERIAL
  91. select DM_GPIO
  92. select OMAP3_GPIO_4
  93. select OMAP3_GPIO_6
  94. config TARGET_NOKIA_RX51
  95. bool "Nokia RX51"
  96. config TARGET_TAO3530
  97. bool "TAO3530"
  98. select OMAP3_GPIO_2
  99. select OMAP3_GPIO_3
  100. select OMAP3_GPIO_4
  101. select OMAP3_GPIO_5
  102. select OMAP3_GPIO_6
  103. config TARGET_TWISTER
  104. bool "Twister"
  105. select OMAP3_GPIO_2
  106. select OMAP3_GPIO_5 if USB_EHCI_HCD
  107. config TARGET_OMAP3_CAIRO
  108. bool "QUIPOS CAIRO"
  109. select DM
  110. select DM_SERIAL
  111. select DM_GPIO
  112. config TARGET_SNIPER
  113. bool "LG Optimus Black"
  114. select DM
  115. select DM_SERIAL
  116. select DM_GPIO
  117. select OMAP3_GPIO_2
  118. select OMAP3_GPIO_3
  119. select OMAP3_GPIO_4
  120. select OMAP3_GPIO_5
  121. select OMAP3_GPIO_6
  122. endchoice
  123. config SYS_SOC
  124. default "omap3"
  125. source "board/logicpd/am3517evm/Kconfig"
  126. source "board/teejet/mt_ventoux/Kconfig"
  127. source "board/ti/beagle/Kconfig"
  128. source "board/compulab/cm_t35/Kconfig"
  129. source "board/compulab/cm_t3517/Kconfig"
  130. source "board/timll/devkit8000/Kconfig"
  131. source "board/ti/evm/Kconfig"
  132. source "board/isee/igep00x0/Kconfig"
  133. source "board/overo/Kconfig"
  134. source "board/logicpd/zoom1/Kconfig"
  135. source "board/ti/am3517crane/Kconfig"
  136. source "board/pandora/Kconfig"
  137. source "board/8dtech/eco5pk/Kconfig"
  138. source "board/corscience/tricorder/Kconfig"
  139. source "board/htkw/mcx/Kconfig"
  140. source "board/logicpd/omap3som/Kconfig"
  141. source "board/nokia/rx51/Kconfig"
  142. source "board/technexion/tao3530/Kconfig"
  143. source "board/technexion/twister/Kconfig"
  144. source "board/quipos/cairo/Kconfig"
  145. source "board/lg/sniper/Kconfig"
  146. endif