Kconfig 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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 MCF5227x
  47. select OF_CONTROL
  48. select DM
  49. select DM_SERIAL
  50. bool
  51. # processor type
  52. config M5208
  53. bool
  54. select MCF520x
  55. config M5235
  56. bool
  57. select MCF523x
  58. config M5249
  59. bool
  60. select MCF52x2
  61. config M5253
  62. bool
  63. select MCF52x2
  64. config M5271
  65. bool
  66. select MCF52x2
  67. config M5272
  68. bool
  69. select MCF52x2
  70. config M5275
  71. bool
  72. select MCF52x2
  73. config M5282
  74. bool
  75. select MCF52x2
  76. config M5307
  77. bool
  78. select MCF530x
  79. config M53015
  80. bool
  81. select MCF5301x
  82. config M5329
  83. bool
  84. select MCF532x
  85. config M5373
  86. bool
  87. select MCF532x
  88. select MCF537x
  89. config M54418
  90. bool
  91. select MCF5441x
  92. choice
  93. prompt "Target select"
  94. optional
  95. config TARGET_M5235EVB
  96. bool "Support M5235EVB"
  97. select M5235
  98. config TARGET_COBRA5272
  99. bool "Support cobra5272"
  100. select M5272
  101. config TARGET_EB_CPU5282
  102. bool "Support eb_cpu5282"
  103. select M5282
  104. config TARGET_M5208EVBE
  105. bool "Support M5208EVBE"
  106. select M5208
  107. config TARGET_M5249EVB
  108. bool "Support M5249EVB"
  109. select M5249
  110. config TARGET_M5253DEMO
  111. bool "Support M5253DEMO"
  112. select M5253
  113. config TARGET_M5272C3
  114. bool "Support M5272C3"
  115. select M5272
  116. config TARGET_M5275EVB
  117. bool "Support M5275EVB"
  118. select M5275
  119. config TARGET_M5282EVB
  120. bool "Support M5282EVB"
  121. select M5282
  122. config TARGET_ASTRO_MCF5373L
  123. bool "Support astro_mcf5373l"
  124. select M5373
  125. config TARGET_M53017EVB
  126. bool "Support M53017EVB"
  127. select M53015
  128. config TARGET_M5329EVB
  129. bool "Support M5329EVB"
  130. select M5329
  131. config TARGET_M5373EVB
  132. bool "Support M5373EVB"
  133. select M5373
  134. config TARGET_AMCORE
  135. bool "Support AMCORE"
  136. select M5307
  137. config TARGET_STMARK2
  138. bool "Support stmark2"
  139. select M54418
  140. endchoice
  141. source "board/BuS/eb_cpu5282/Kconfig"
  142. source "board/astro/mcf5373l/Kconfig"
  143. source "board/cobra5272/Kconfig"
  144. source "board/freescale/m5208evbe/Kconfig"
  145. source "board/freescale/m5235evb/Kconfig"
  146. source "board/freescale/m5249evb/Kconfig"
  147. source "board/freescale/m5253demo/Kconfig"
  148. source "board/freescale/m5272c3/Kconfig"
  149. source "board/freescale/m5275evb/Kconfig"
  150. source "board/freescale/m5282evb/Kconfig"
  151. source "board/freescale/m53017evb/Kconfig"
  152. source "board/freescale/m5329evb/Kconfig"
  153. source "board/freescale/m5373evb/Kconfig"
  154. source "board/sysam/amcore/Kconfig"
  155. source "board/sysam/stmark2/Kconfig"
  156. endmenu