Kconfig 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. menu "M68000 architecture"
  2. depends on M68K
  3. config SYS_ARCH
  4. default "m68k"
  5. # processor family
  6. config MCF520x
  7. select OF_CONTROL
  8. select DM
  9. select DM_SERIAL
  10. bool
  11. config MCF52x2
  12. select OF_CONTROL
  13. select DM
  14. select DM_SERIAL
  15. bool
  16. config MCF523x
  17. select OF_CONTROL
  18. select DM
  19. select DM_SERIAL
  20. bool
  21. config MCF530x
  22. select OF_CONTROL
  23. select DM
  24. select DM_SERIAL
  25. bool
  26. config MCF5301x
  27. select OF_CONTROL
  28. select DM
  29. select DM_SERIAL
  30. bool
  31. config MCF532x
  32. select OF_CONTROL
  33. select DM
  34. select DM_SERIAL
  35. bool
  36. config MCF537x
  37. select OF_CONTROL
  38. select DM
  39. select DM_SERIAL
  40. bool
  41. config MCF5441x
  42. select OF_CONTROL
  43. select DM
  44. select DM_SERIAL
  45. bool
  46. config MCF5445x
  47. select OF_CONTROL
  48. select DM
  49. select DM_SERIAL
  50. bool
  51. config MCF5227x
  52. select OF_CONTROL
  53. select DM
  54. select DM_SERIAL
  55. bool
  56. config MCF547x_8x
  57. select OF_CONTROL
  58. select DM
  59. select DM_SERIAL
  60. bool
  61. # processor type
  62. config M5208
  63. bool
  64. select MCF520x
  65. config M5235
  66. bool
  67. select MCF523x
  68. config M5249
  69. bool
  70. select MCF52x2
  71. config M5253
  72. bool
  73. select MCF52x2
  74. config M5271
  75. bool
  76. select MCF52x2
  77. config M5272
  78. bool
  79. select MCF52x2
  80. config M5275
  81. bool
  82. select MCF52x2
  83. config M5282
  84. bool
  85. select MCF52x2
  86. config M5307
  87. bool
  88. select MCF530x
  89. config M53015
  90. bool
  91. select MCF5301x
  92. config M5329
  93. bool
  94. select MCF532x
  95. config M5373
  96. bool
  97. select MCF532x
  98. select MCF537x
  99. config M54418
  100. bool
  101. select MCF5441x
  102. config M54451
  103. bool
  104. select MCF5445x
  105. config M54455
  106. bool
  107. select MCF5445x
  108. config M52277
  109. bool
  110. select MCF5227x
  111. config M547x
  112. bool
  113. select MCF547x_8x
  114. config M548x
  115. bool
  116. select MCF547x_8x
  117. choice
  118. prompt "Target select"
  119. optional
  120. config TARGET_M52277EVB
  121. bool "Support M52277EVB"
  122. select M52277
  123. config TARGET_M5235EVB
  124. bool "Support M5235EVB"
  125. select M5235
  126. config TARGET_COBRA5272
  127. bool "Support cobra5272"
  128. select M5272
  129. config TARGET_EB_CPU5282
  130. bool "Support eb_cpu5282"
  131. select M5282
  132. config TARGET_M5208EVBE
  133. bool "Support M5208EVBE"
  134. select M5208
  135. config TARGET_M5249EVB
  136. bool "Support M5249EVB"
  137. select M5249
  138. config TARGET_M5253DEMO
  139. bool "Support M5253DEMO"
  140. select M5253
  141. config TARGET_M5272C3
  142. bool "Support M5272C3"
  143. select M5272
  144. config TARGET_M5275EVB
  145. bool "Support M5275EVB"
  146. select M5275
  147. config TARGET_M5282EVB
  148. bool "Support M5282EVB"
  149. select M5282
  150. config TARGET_ASTRO_MCF5373L
  151. bool "Support astro_mcf5373l"
  152. select M5373
  153. config TARGET_M53017EVB
  154. bool "Support M53017EVB"
  155. select M53015
  156. config TARGET_M5329EVB
  157. bool "Support M5329EVB"
  158. select M5329
  159. config TARGET_M5373EVB
  160. bool "Support M5373EVB"
  161. select M5373
  162. config TARGET_M54418TWR
  163. bool "Support M54418TWR"
  164. select M54418
  165. config TARGET_M54451EVB
  166. bool "Support M54451EVB"
  167. select M54451
  168. config TARGET_M54455EVB
  169. bool "Support M54455EVB"
  170. select M54455
  171. config TARGET_M5475EVB
  172. bool "Support M5475EVB"
  173. select M547x
  174. config TARGET_M5485EVB
  175. bool "Support M5485EVB"
  176. select M548x
  177. config TARGET_AMCORE
  178. bool "Support AMCORE"
  179. select M5307
  180. config TARGET_STMARK2
  181. bool "Support stmark2"
  182. select M54418
  183. endchoice
  184. source "board/BuS/eb_cpu5282/Kconfig"
  185. source "board/astro/mcf5373l/Kconfig"
  186. source "board/cobra5272/Kconfig"
  187. source "board/freescale/m5208evbe/Kconfig"
  188. source "board/freescale/m52277evb/Kconfig"
  189. source "board/freescale/m5235evb/Kconfig"
  190. source "board/freescale/m5249evb/Kconfig"
  191. source "board/freescale/m5253demo/Kconfig"
  192. source "board/freescale/m5272c3/Kconfig"
  193. source "board/freescale/m5275evb/Kconfig"
  194. source "board/freescale/m5282evb/Kconfig"
  195. source "board/freescale/m53017evb/Kconfig"
  196. source "board/freescale/m5329evb/Kconfig"
  197. source "board/freescale/m5373evb/Kconfig"
  198. source "board/freescale/m54418twr/Kconfig"
  199. source "board/freescale/m54451evb/Kconfig"
  200. source "board/freescale/m54455evb/Kconfig"
  201. source "board/freescale/m547xevb/Kconfig"
  202. source "board/freescale/m548xevb/Kconfig"
  203. source "board/sysam/amcore/Kconfig"
  204. source "board/sysam/stmark2/Kconfig"
  205. endmenu