Kconfig 3.2 KB

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