Kconfig.32 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. config TARGET_GOSE
  34. bool "Gose board"
  35. select DM
  36. select DM_SERIAL
  37. select SUPPORT_SPL
  38. select USE_TINY_PRINTF
  39. select SPL_TINY_MEMSET
  40. config TARGET_KOELSCH
  41. bool "Koelsch board"
  42. select DM
  43. select DM_SERIAL
  44. select SUPPORT_SPL
  45. select USE_TINY_PRINTF
  46. select SPL_TINY_MEMSET
  47. config TARGET_LAGER
  48. bool "Lager board"
  49. select DM
  50. select DM_SERIAL
  51. select SUPPORT_SPL
  52. select USE_TINY_PRINTF
  53. select SPL_TINY_MEMSET
  54. config TARGET_KZM9G
  55. bool "KZM9D board"
  56. config TARGET_ALT
  57. bool "Alt board"
  58. select DM
  59. select DM_SERIAL
  60. select SUPPORT_SPL
  61. select USE_TINY_PRINTF
  62. select SPL_TINY_MEMSET
  63. config TARGET_SILK
  64. bool "Silk board"
  65. select DM
  66. select DM_SERIAL
  67. select SUPPORT_SPL
  68. select USE_TINY_PRINTF
  69. select SPL_TINY_MEMSET
  70. config TARGET_PORTER
  71. bool "Porter board"
  72. select DM
  73. select DM_SERIAL
  74. select SUPPORT_SPL
  75. select USE_TINY_PRINTF
  76. select SPL_TINY_MEMSET
  77. config TARGET_STOUT
  78. bool "Stout board"
  79. select DM
  80. select DM_SERIAL
  81. select SUPPORT_SPL
  82. select USE_TINY_PRINTF
  83. select SPL_TINY_MEMSET
  84. endchoice
  85. config SYS_SOC
  86. default "rmobile"
  87. config RMOBILE_EXTRAM_BOOT
  88. bool "Enable boot from RAM"
  89. depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
  90. default n
  91. choice
  92. prompt "Qos setting primary"
  93. depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
  94. default QOS_PRI_NORMAL
  95. config QOS_PRI_NORMAL
  96. bool "Non primary"
  97. help
  98. Select normal mode for QoS setting.
  99. config QOS_PRI_MEDIA
  100. bool "Media primary"
  101. help
  102. Select multimedia primary mode for QoS setting.
  103. config QOS_PRI_GFX
  104. bool "GFX primary"
  105. help
  106. Select GFX(graphics) primary mode for QoS setting.
  107. endchoice
  108. source "board/atmark-techno/armadillo-800eva/Kconfig"
  109. source "board/renesas/blanche/Kconfig"
  110. source "board/renesas/gose/Kconfig"
  111. source "board/renesas/koelsch/Kconfig"
  112. source "board/renesas/lager/Kconfig"
  113. source "board/kmc/kzm9g/Kconfig"
  114. source "board/renesas/alt/Kconfig"
  115. source "board/renesas/silk/Kconfig"
  116. source "board/renesas/porter/Kconfig"
  117. source "board/renesas/stout/Kconfig"
  118. endif