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 R8A77990
16	bool "Renesas SoC R8A77990"
17
18config R8A77995
19	bool "Renesas SoC R8A77995"
20
21endchoice
22
23choice
24	prompt "Renesus ARM64 SoCs board select"
25	optional
26
27config TARGET_DRAAK
28	bool "Draak board"
29	help
30          Support for Renesas R-Car Gen3 Draak platform
31
32config TARGET_EAGLE
33	bool "Eagle board"
34	help
35          Support for Renesas R-Car Gen3 Eagle platform
36
37config TARGET_EBISU
38	bool "Ebisu board"
39	help
40          Support for Renesas R-Car Gen3 Ebisu platform
41
42config TARGET_SALVATOR_X
43	bool "Salvator-X board"
44	help
45          Support for Renesas R-Car Gen3 platform
46
47config TARGET_ULCB
48	bool "ULCB board"
49	help
50          Support for Renesas R-Car Gen3 ULCB platform
51
52endchoice
53
54config SYS_SOC
55	default "rmobile"
56
57source "board/renesas/draak/Kconfig"
58source "board/renesas/eagle/Kconfig"
59source "board/renesas/ebisu/Kconfig"
60source "board/renesas/salvator-x/Kconfig"
61source "board/renesas/ulcb/Kconfig"
62
63endif
64