Kconfig.64 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. if RCAR_GEN3
  2. choice
  3. prompt "Select Target SoC"
  4. config R8A7795
  5. bool "Renesas SoC R8A7795"
  6. config R8A7796
  7. bool "Renesas SoC R8A7796"
  8. config R8A77970
  9. bool "Renesas SoC R8A77970"
  10. config R8A77990
  11. bool "Renesas SoC R8A77990"
  12. config R8A77995
  13. bool "Renesas SoC R8A77995"
  14. endchoice
  15. choice
  16. prompt "Renesus ARM64 SoCs board select"
  17. optional
  18. config TARGET_DRAAK
  19. bool "Draak board"
  20. help
  21. Support for Renesas R-Car Gen3 Draak platform
  22. config TARGET_EAGLE
  23. bool "Eagle board"
  24. help
  25. Support for Renesas R-Car Gen3 Eagle platform
  26. config TARGET_EBISU
  27. bool "Ebisu board"
  28. help
  29. Support for Renesas R-Car Gen3 Ebisu platform
  30. config TARGET_SALVATOR_X
  31. bool "Salvator-X board"
  32. help
  33. Support for Renesas R-Car Gen3 platform
  34. config TARGET_ULCB
  35. bool "ULCB board"
  36. help
  37. Support for Renesas R-Car Gen3 ULCB platform
  38. endchoice
  39. config SYS_SOC
  40. default "rmobile"
  41. source "board/renesas/draak/Kconfig"
  42. source "board/renesas/eagle/Kconfig"
  43. source "board/renesas/ebisu/Kconfig"
  44. source "board/renesas/salvator-x/Kconfig"
  45. source "board/renesas/ulcb/Kconfig"
  46. endif