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_DRAAK
25	bool "Draak board"
26	help
27          Support for Renesas R-Car Gen3 Draak platform
28
29config TARGET_EAGLE
30	bool "Eagle board"
31	help
32          Support for Renesas R-Car Gen3 Eagle platform
33
34config TARGET_SALVATOR_X
35	bool "Salvator-X board"
36	help
37          Support for Renesas R-Car Gen3 platform
38
39config TARGET_ULCB
40	bool "ULCB board"
41	help
42          Support for Renesas R-Car Gen3 ULCB platform
43
44endchoice
45
46config SYS_SOC
47	default "rmobile"
48
49source "board/renesas/draak/Kconfig"
50source "board/renesas/eagle/Kconfig"
51source "board/renesas/salvator-x/Kconfig"
52source "board/renesas/ulcb/Kconfig"
53
54endif
55