Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. menu "ppc4xx CPU"
  2. depends on 4xx
  3. config SYS_CPU
  4. default "ppc4xx"
  5. choice
  6. prompt "Target select"
  7. optional
  8. config TARGET_LWMON5
  9. bool "Support lwmon5"
  10. config TARGET_T3CORP
  11. bool "Support t3corp"
  12. config TARGET_ACADIA
  13. bool "Support acadia"
  14. config TARGET_BAMBOO
  15. bool "Support bamboo"
  16. config TARGET_BUBINGA
  17. bool "Support bubinga"
  18. config TARGET_CANYONLANDS
  19. bool "Support canyonlands"
  20. select DM
  21. select DM_SERIAL
  22. config TARGET_KATMAI
  23. bool "Support katmai"
  24. select PHYS_64BIT
  25. config TARGET_KILAUEA
  26. bool "Support kilauea"
  27. config TARGET_LUAN
  28. bool "Support luan"
  29. config TARGET_MAKALU
  30. bool "Support makalu"
  31. config TARGET_REDWOOD
  32. bool "Support redwood"
  33. config TARGET_SEQUOIA
  34. bool "Support sequoia"
  35. config TARGET_WALNUT
  36. bool "Support walnut"
  37. config TARGET_YOSEMITE
  38. bool "Support yosemite"
  39. config TARGET_YUCCA
  40. bool "Support yucca"
  41. config TARGET_CPCI2DP
  42. bool "Support CPCI2DP"
  43. config TARGET_CPCI4052
  44. bool "Support CPCI4052"
  45. config TARGET_PLU405
  46. bool "Support PLU405"
  47. config TARGET_PMC405DE
  48. bool "Support PMC405DE"
  49. config TARGET_PMC440
  50. bool "Support PMC440"
  51. config TARGET_VOM405
  52. bool "Support VOM405"
  53. config TARGET_DLVISION_10G
  54. bool "Support dlvision-10g"
  55. config TARGET_IO
  56. bool "Support io"
  57. config TARGET_IOCON
  58. bool "Support iocon"
  59. config TARGET_NEO
  60. bool "Support neo"
  61. config TARGET_IO64
  62. bool "Support io64"
  63. config TARGET_DLVISION
  64. bool "Support dlvision"
  65. config TARGET_GDPPC440ETX
  66. bool "Support gdppc440etx"
  67. config TARGET_INTIP
  68. bool "Support intip"
  69. config TARGET_ICON
  70. bool "Support icon"
  71. config TARGET_MIP405
  72. bool "Support MIP405"
  73. config TARGET_MIP405T
  74. bool "Support MIP405T"
  75. config TARGET_PIP405
  76. bool "Support PIP405"
  77. config TARGET_XPEDITE1000
  78. bool "Support xpedite1000"
  79. config TARGET_XILINX_PPC405_GENERIC
  80. bool "Support xilinx-ppc405-generic"
  81. select SUPPORT_SPL
  82. select OF_CONTROL
  83. select DM
  84. select DM_SERIAL
  85. config TARGET_XILINX_PPC440_GENERIC
  86. bool "Support xilinx-ppc440-generic"
  87. select SUPPORT_SPL
  88. select OF_CONTROL
  89. select DM
  90. select DM_SERIAL
  91. endchoice
  92. source "board/amcc/acadia/Kconfig"
  93. source "board/amcc/bamboo/Kconfig"
  94. source "board/amcc/bubinga/Kconfig"
  95. source "board/amcc/canyonlands/Kconfig"
  96. source "board/amcc/katmai/Kconfig"
  97. source "board/amcc/kilauea/Kconfig"
  98. source "board/amcc/luan/Kconfig"
  99. source "board/amcc/makalu/Kconfig"
  100. source "board/amcc/redwood/Kconfig"
  101. source "board/amcc/sequoia/Kconfig"
  102. source "board/amcc/walnut/Kconfig"
  103. source "board/amcc/yosemite/Kconfig"
  104. source "board/amcc/yucca/Kconfig"
  105. source "board/esd/cpci2dp/Kconfig"
  106. source "board/esd/cpci405/Kconfig"
  107. source "board/esd/plu405/Kconfig"
  108. source "board/esd/pmc405de/Kconfig"
  109. source "board/esd/pmc440/Kconfig"
  110. source "board/esd/vom405/Kconfig"
  111. source "board/gdsys/405ep/Kconfig"
  112. source "board/gdsys/405ex/Kconfig"
  113. source "board/gdsys/dlvision/Kconfig"
  114. source "board/gdsys/gdppc440etx/Kconfig"
  115. source "board/gdsys/intip/Kconfig"
  116. source "board/liebherr/lwmon5/Kconfig"
  117. source "board/mosaixtech/icon/Kconfig"
  118. source "board/mpl/mip405/Kconfig"
  119. source "board/mpl/pip405/Kconfig"
  120. source "board/t3corp/Kconfig"
  121. source "board/xes/xpedite1000/Kconfig"
  122. source "board/xilinx/ppc405-generic/Kconfig"
  123. source "board/xilinx/ppc440-generic/Kconfig"
  124. endmenu