Kconfig.32 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. if RCAR_32
  2. config ARCH_RMOBILE_BOARD_STRING
  3. string "Renesas RCar Gen2 board name"
  4. default "Board"
  5. config RCAR_GEN2
  6. bool "Renesas RCar Gen2"
  7. config R8A7740
  8. bool "Renesas SoC R8A7740"
  9. config R8A7790
  10. bool "Renesas SoC R8A7790"
  11. select RCAR_GEN2
  12. config R8A7791
  13. bool "Renesas SoC R8A7791"
  14. select RCAR_GEN2
  15. config R8A7792
  16. bool "Renesas SoC R8A7792"
  17. select RCAR_GEN2
  18. config R8A7793
  19. bool "Renesas SoC R8A7793"
  20. select RCAR_GEN2
  21. config R8A7794
  22. bool "Renesas SoC R8A7794"
  23. select RCAR_GEN2
  24. choice
  25. prompt "Renesas ARM SoCs board select"
  26. optional
  27. config TARGET_ARMADILLO_800EVA
  28. bool "armadillo 800 eva board"
  29. config TARGET_BLANCHE
  30. bool "Blanche board"
  31. select DM
  32. select DM_SERIAL
  33. select USE_TINY_PRINTF
  34. config TARGET_GOSE
  35. bool "Gose board"
  36. select DM
  37. select DM_SERIAL
  38. select SUPPORT_SPL
  39. select USE_TINY_PRINTF
  40. select SPL_TINY_MEMSET
  41. config TARGET_KOELSCH
  42. bool "Koelsch board"
  43. select DM
  44. select DM_SERIAL
  45. select SUPPORT_SPL
  46. select USE_TINY_PRINTF
  47. select SPL_TINY_MEMSET
  48. config TARGET_LAGER
  49. bool "Lager board"
  50. select DM
  51. select DM_SERIAL
  52. select SUPPORT_SPL
  53. select USE_TINY_PRINTF
  54. select SPL_TINY_MEMSET
  55. config TARGET_KZM9G
  56. bool "KZM9D board"
  57. config TARGET_ALT
  58. bool "Alt board"
  59. select DM
  60. select DM_SERIAL
  61. select SUPPORT_SPL
  62. select USE_TINY_PRINTF
  63. select SPL_TINY_MEMSET
  64. config TARGET_SILK
  65. bool "Silk board"
  66. select DM
  67. select DM_SERIAL
  68. select SUPPORT_SPL
  69. select USE_TINY_PRINTF
  70. select SPL_TINY_MEMSET
  71. config TARGET_PORTER
  72. bool "Porter board"
  73. select DM
  74. select DM_SERIAL
  75. select SUPPORT_SPL
  76. select USE_TINY_PRINTF
  77. select SPL_TINY_MEMSET
  78. config TARGET_STOUT
  79. bool "Stout board"
  80. select DM
  81. select DM_SERIAL
  82. select SUPPORT_SPL
  83. select USE_TINY_PRINTF
  84. select SPL_TINY_MEMSET
  85. endchoice
  86. config SYS_SOC
  87. default "rmobile"
  88. config RMOBILE_EXTRAM_BOOT
  89. bool "Enable boot from RAM"
  90. depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
  91. default n
  92. choice
  93. prompt "Qos setting primary"
  94. depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
  95. default QOS_PRI_NORMAL
  96. config QOS_PRI_NORMAL
  97. bool "Non primary"
  98. help
  99. Select normal mode for QoS setting.
  100. config QOS_PRI_MEDIA
  101. bool "Media primary"
  102. help
  103. Select multimedia primary mode for QoS setting.
  104. config QOS_PRI_GFX
  105. bool "GFX primary"
  106. help
  107. Select GFX(graphics) primary mode for QoS setting.
  108. endchoice
  109. source "board/atmark-techno/armadillo-800eva/Kconfig"
  110. source "board/renesas/blanche/Kconfig"
  111. source "board/renesas/gose/Kconfig"
  112. source "board/renesas/koelsch/Kconfig"
  113. source "board/renesas/lager/Kconfig"
  114. source "board/kmc/kzm9g/Kconfig"
  115. source "board/renesas/alt/Kconfig"
  116. source "board/renesas/silk/Kconfig"
  117. source "board/renesas/porter/Kconfig"
  118. source "board/renesas/stout/Kconfig"
  119. endif