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
15config R8A77995
16	bool "Renesas SoC R8A77995"
17
18endchoice
19
20choice
21	prompt "Renesus ARM64 SoCs board select"
22	optional
23
24config TARGET_SALVATOR_X
25	bool "Salvator-X board"
26	help
27          Support for Renesas R-Car Gen3 platform
28
29config TARGET_ULCB
30	bool "ULCB board"
31	help
32          Support for Renesas R-Car Gen3 ULCB platform
33
34endchoice
35
36config SYS_SOC
37	default "rmobile"
38
39source "board/renesas/salvator-x/Kconfig"
40source "board/renesas/ulcb/Kconfig"
41
42endif
43