1if RCAR_GEN3
2
3choice
4	prompt "Select Target SoC"
5
6config R8A7795
7	bool "Renesas SoC R8A7795"
8	imply CLK_R8A7795
9
10config R8A7796
11	bool "Renesas SoC R8A7796"
12	imply CLK_R8A7796
13
14config R8A77970
15	bool "Renesas SoC R8A77970"
16	imply CLK_R8A77970
17
18config R8A77990
19	bool "Renesas SoC R8A77990"
20	imply CLK_R8A77990
21
22config R8A77995
23	bool "Renesas SoC R8A77995"
24	imply CLK_R8A77995
25
26endchoice
27
28choice
29	prompt "Renesus ARM64 SoCs board select"
30	optional
31
32config TARGET_DRAAK
33	bool "Draak board"
34	help
35          Support for Renesas R-Car Gen3 Draak platform
36
37config TARGET_EAGLE
38	bool "Eagle board"
39	help
40          Support for Renesas R-Car Gen3 Eagle platform
41
42config TARGET_EBISU
43	bool "Ebisu board"
44	help
45          Support for Renesas R-Car Gen3 Ebisu platform
46
47config TARGET_SALVATOR_X
48	bool "Salvator-X board"
49	help
50          Support for Renesas R-Car Gen3 platform
51
52config TARGET_ULCB
53	bool "ULCB board"
54	help
55          Support for Renesas R-Car Gen3 ULCB platform
56
57endchoice
58
59config SYS_SOC
60	default "rmobile"
61
62source "board/renesas/draak/Kconfig"
63source "board/renesas/eagle/Kconfig"
64source "board/renesas/ebisu/Kconfig"
65source "board/renesas/salvator-x/Kconfig"
66source "board/renesas/ulcb/Kconfig"
67
68endif
69