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