Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. menu "SuperH architecture"
  2. depends on SH
  3. config CPU_SH4
  4. bool
  5. config CPU_SH4A
  6. bool
  7. select CPU_SH4
  8. config SH_32BIT
  9. bool "32bit mode"
  10. depends on CPU_SH4A
  11. default n
  12. help
  13. SH4A has 2 physical memory maps. This use 32bit mode.
  14. And this is board specific. Please check your board if you
  15. want to use this.
  16. choice
  17. prompt "Target select"
  18. optional
  19. config TARGET_ESPT
  20. bool "Data Technology ESPT-GIGA board"
  21. select CPU_SH4
  22. config TARGET_MS7722SE
  23. bool "SolutionEngine 7722"
  24. select CPU_SH4
  25. config TARGET_MS7750SE
  26. bool "SolutionEngine 7750"
  27. select CPU_SH4
  28. config TARGET_AP_SH4A_4A
  29. bool "ALPHAPROJECT AP-SH4A-4A"
  30. select CPU_SH4A
  31. config TARGET_AP325RXA
  32. bool "Renesas AP-325RXA"
  33. select CPU_SH4
  34. config TARGET_MIGOR
  35. bool "Migo-R"
  36. select CPU_SH4
  37. config TARGET_R0P7734
  38. bool "Support r0p7734"
  39. select CPU_SH4A
  40. config TARGET_R2DPLUS
  41. bool "Renesas R2D-PLUS"
  42. select CPU_SH4
  43. config TARGET_R7780MP
  44. bool "R7780MP board"
  45. select CPU_SH4A
  46. config TARGET_SH7752EVB
  47. bool "SH7752EVB"
  48. select CPU_SH4A
  49. config TARGET_SH7753EVB
  50. bool "SH7753EVB"
  51. select CPU_SH4
  52. config TARGET_SH7757LCR
  53. bool "SH7757LCR"
  54. select CPU_SH4A
  55. config TARGET_SH7763RDP
  56. bool "SH7763RDP"
  57. select CPU_SH4
  58. endchoice
  59. config SYS_ARCH
  60. default "sh"
  61. config SYS_CPU
  62. default "sh4" if CPU_SH4
  63. source "arch/sh/lib/Kconfig"
  64. source "board/alphaproject/ap_sh4a_4a/Kconfig"
  65. source "board/espt/Kconfig"
  66. source "board/ms7722se/Kconfig"
  67. source "board/ms7750se/Kconfig"
  68. source "board/renesas/MigoR/Kconfig"
  69. source "board/renesas/ap325rxa/Kconfig"
  70. source "board/renesas/r0p7734/Kconfig"
  71. source "board/renesas/r2dplus/Kconfig"
  72. source "board/renesas/r7780mp/Kconfig"
  73. source "board/renesas/sh7752evb/Kconfig"
  74. source "board/renesas/sh7753evb/Kconfig"
  75. source "board/renesas/sh7757lcr/Kconfig"
  76. source "board/renesas/sh7763rdp/Kconfig"
  77. endmenu