Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. menu "SuperH architecture"
  2. depends on SH
  3. config CPU_SH2
  4. bool
  5. config CPU_SH2A
  6. bool
  7. select CPU_SH2
  8. config CPU_SH3
  9. bool
  10. config CPU_SH4
  11. bool
  12. config CPU_SH4A
  13. bool
  14. select CPU_SH4
  15. config SH_32BIT
  16. bool "32bit mode"
  17. depends on CPU_SH4A
  18. default n
  19. help
  20. SH4A has 2 physical memory maps. This use 32bit mode.
  21. And this is board specific. Please check your board if you
  22. want to use this.
  23. choice
  24. prompt "Target select"
  25. optional
  26. config TARGET_RSK7203
  27. bool "RSK+ 7203"
  28. select CPU_SH2A
  29. config TARGET_RSK7264
  30. bool "RSK2+SH7264"
  31. select CPU_SH2A
  32. config TARGET_RSK7269
  33. bool "RSK2+SH7269"
  34. select CPU_SH2A
  35. config TARGET_MPR2
  36. bool "Magic Panel Release 2 board"
  37. select CPU_SH3
  38. config TARGET_MS7720SE
  39. bool "Support ms7720se"
  40. select CPU_SH3
  41. config TARGET_SHMIN
  42. bool "SHMIN"
  43. select CPU_SH3
  44. config TARGET_ESPT
  45. bool "Data Technology ESPT-GIGA board"
  46. select CPU_SH4
  47. config TARGET_MS7722SE
  48. bool "SolutionEngine 7722"
  49. select CPU_SH4
  50. config TARGET_MS7750SE
  51. bool "SolutionEngine 7750"
  52. select CPU_SH4
  53. config TARGET_AP_SH4A_4A
  54. bool "ALPHAPROJECT AP-SH4A-4A"
  55. select CPU_SH4A
  56. config TARGET_AP325RXA
  57. bool "Renesas AP-325RXA"
  58. select CPU_SH4
  59. config TARGET_ECOVEC
  60. bool "EcoVec"
  61. select CPU_SH4A
  62. config TARGET_MIGOR
  63. bool "Migo-R"
  64. select CPU_SH4
  65. config TARGET_R0P7734
  66. bool "Support r0p7734"
  67. select CPU_SH4A
  68. config TARGET_R2DPLUS
  69. bool "Renesas R2D-PLUS"
  70. select CPU_SH4
  71. config TARGET_R7780MP
  72. bool "R7780MP board"
  73. select CPU_SH4A
  74. config TARGET_SH7752EVB
  75. bool "SH7752EVB"
  76. select CPU_SH4A
  77. config TARGET_SH7753EVB
  78. bool "SH7753EVB"
  79. select CPU_SH4
  80. config TARGET_SH7757LCR
  81. bool "SH7757LCR"
  82. select CPU_SH4A
  83. config TARGET_SH7763RDP
  84. bool "SH7763RDP"
  85. select CPU_SH4
  86. config TARGET_SH7785LCR
  87. bool "SH7785LCR"
  88. select CPU_SH4A
  89. endchoice
  90. config SYS_ARCH
  91. default "sh"
  92. config SYS_CPU
  93. default "sh2" if CPU_SH2
  94. default "sh3" if CPU_SH3
  95. default "sh4" if CPU_SH4
  96. source "board/alphaproject/ap_sh4a_4a/Kconfig"
  97. source "board/espt/Kconfig"
  98. source "board/mpr2/Kconfig"
  99. source "board/ms7720se/Kconfig"
  100. source "board/ms7722se/Kconfig"
  101. source "board/ms7750se/Kconfig"
  102. source "board/renesas/MigoR/Kconfig"
  103. source "board/renesas/ap325rxa/Kconfig"
  104. source "board/renesas/ecovec/Kconfig"
  105. source "board/renesas/r0p7734/Kconfig"
  106. source "board/renesas/r2dplus/Kconfig"
  107. source "board/renesas/r7780mp/Kconfig"
  108. source "board/renesas/rsk7203/Kconfig"
  109. source "board/renesas/rsk7264/Kconfig"
  110. source "board/renesas/rsk7269/Kconfig"
  111. source "board/renesas/sh7752evb/Kconfig"
  112. source "board/renesas/sh7753evb/Kconfig"
  113. source "board/renesas/sh7757lcr/Kconfig"
  114. source "board/renesas/sh7763rdp/Kconfig"
  115. source "board/renesas/sh7785lcr/Kconfig"
  116. source "board/shmin/Kconfig"
  117. endmenu