xref: /openbmc/u-boot/arch/arm/mach-rmobile/Kconfig.64 (revision 5cb19e7ad5be07de3b1368f3ff4349396e504002)
1if RCAR_GEN3
2
3choice
4	prompt "Select Target SoC"
5
6config R8A7795
7	bool "Renesas SoC R8A7795"
8
9config R8A7796
10	bool "Renesas SoC R8A7796"
11
12config R8A77970
13	bool "Renesas SoC R8A77970"
14
15endchoice
16
17choice
18	prompt "Renesus ARM64 SoCs board select"
19	optional
20
21config TARGET_SALVATOR_X
22	bool "Salvator-X board"
23	help
24          Support for Renesas R-Car Gen3 platform
25
26config TARGET_ULCB
27	bool "ULCB board"
28	help
29          Support for Renesas R-Car Gen3 ULCB platform
30
31endchoice
32
33config SYS_SOC
34	default "rmobile"
35
36source "board/renesas/salvator-x/Kconfig"
37source "board/renesas/ulcb/Kconfig"
38
39endif
40