Kconfig.32 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. if RCAR_32
  2. choice
  3. prompt "Renesus ARM SoCs board select"
  4. optional
  5. config TARGET_ARMADILLO_800EVA
  6. bool "armadillo 800 eva board"
  7. config TARGET_BLANCHE
  8. bool "Blanche board"
  9. select DM
  10. select DM_SERIAL
  11. config TARGET_GOSE
  12. bool "Gose board"
  13. select DM
  14. select DM_SERIAL
  15. config TARGET_KOELSCH
  16. bool "Koelsch board"
  17. select DM
  18. select DM_SERIAL
  19. config TARGET_LAGER
  20. bool "Lager board"
  21. select DM
  22. select DM_SERIAL
  23. config TARGET_KZM9G
  24. bool "KZM9D board"
  25. config TARGET_ALT
  26. bool "Alt board"
  27. select DM
  28. select DM_SERIAL
  29. config TARGET_SILK
  30. bool "Silk board"
  31. select DM
  32. select DM_SERIAL
  33. config TARGET_PORTER
  34. bool "Porter board"
  35. select DM
  36. select DM_SERIAL
  37. config TARGET_STOUT
  38. bool "Stout board"
  39. select DM
  40. select DM_SERIAL
  41. endchoice
  42. config SYS_SOC
  43. default "rmobile"
  44. config RMOBILE_EXTRAM_BOOT
  45. bool "Enable boot from RAM"
  46. depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT
  47. default n
  48. choice
  49. prompt "Qos setting primary"
  50. depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER
  51. default QOS_PRI_NORMAL
  52. config QOS_PRI_NORMAL
  53. bool "Non primary"
  54. help
  55. Select normal mode for QoS setting.
  56. config QOS_PRI_MEDIA
  57. bool "Media primary"
  58. help
  59. Select multimedia primary mode for QoS setting.
  60. config QOS_PRI_GFX
  61. bool "GFX primary"
  62. help
  63. Select GFX(graphics) primary mode for QoS setting.
  64. endchoice
  65. source "board/atmark-techno/armadillo-800eva/Kconfig"
  66. source "board/renesas/blanche/Kconfig"
  67. source "board/renesas/gose/Kconfig"
  68. source "board/renesas/koelsch/Kconfig"
  69. source "board/renesas/lager/Kconfig"
  70. source "board/kmc/kzm9g/Kconfig"
  71. source "board/renesas/alt/Kconfig"
  72. source "board/renesas/silk/Kconfig"
  73. source "board/renesas/porter/Kconfig"
  74. source "board/renesas/stout/Kconfig"
  75. endif