blob: d231263574d17c790375e797260a612d13a32373 [file] [log] [blame]
Nobuhiro Iwamatsu581183d2016-04-01 03:51:34 +09001if RCAR_GEN3
2
Marek Vasuta0f64042017-05-13 15:57:35 +02003choice
4 prompt "Select Target SoC"
5
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +09006config R8A7795
Marek Vasuta0f64042017-05-13 15:57:35 +02007 bool "Renesas SoC R8A7795"
Marek Vasut46467ce2019-02-18 13:20:48 +01008 imply CLK_R8A7795
Marek Vasut669367f2019-02-18 13:22:03 +01009 imply PINCTRL_PFC_R8A7795
Marek Vasuta0f64042017-05-13 15:57:35 +020010
Marek Vasut2dea3b32017-05-13 15:57:39 +020011config R8A7796
12 bool "Renesas SoC R8A7796"
Marek Vasut46467ce2019-02-18 13:20:48 +010013 imply CLK_R8A7796
Marek Vasut669367f2019-02-18 13:22:03 +010014 imply PINCTRL_PFC_R8A7796
Marek Vasut2dea3b32017-05-13 15:57:39 +020015
Marek Vasut5cb19e72017-10-09 20:39:47 +020016config R8A77970
17 bool "Renesas SoC R8A77970"
Marek Vasut46467ce2019-02-18 13:20:48 +010018 imply CLK_R8A77970
Marek Vasut669367f2019-02-18 13:22:03 +010019 imply PINCTRL_PFC_R8A77970
Marek Vasut5cb19e72017-10-09 20:39:47 +020020
Marek Vasuta0410a62018-04-26 10:09:06 +020021config R8A77990
22 bool "Renesas SoC R8A77990"
Marek Vasut46467ce2019-02-18 13:20:48 +010023 imply CLK_R8A77990
Marek Vasut669367f2019-02-18 13:22:03 +010024 imply PINCTRL_PFC_R8A77990
Marek Vasuta0410a62018-04-26 10:09:06 +020025
Marek Vasut11545412017-10-08 20:52:52 +020026config R8A77995
27 bool "Renesas SoC R8A77995"
Marek Vasut46467ce2019-02-18 13:20:48 +010028 imply CLK_R8A77995
Marek Vasut669367f2019-02-18 13:22:03 +010029 imply PINCTRL_PFC_R8A77995
Marek Vasut11545412017-10-08 20:52:52 +020030
Marek Vasuta0f64042017-05-13 15:57:35 +020031endchoice
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090032
Nobuhiro Iwamatsu581183d2016-04-01 03:51:34 +090033choice
34 prompt "Renesus ARM64 SoCs board select"
35 optional
36
Marek Vasut7387d4c2017-10-08 20:41:18 +020037config TARGET_DRAAK
38 bool "Draak board"
39 help
40 Support for Renesas R-Car Gen3 Draak platform
41
Marek Vasutd21f08b2017-10-09 21:08:10 +020042config TARGET_EAGLE
43 bool "Eagle board"
44 help
45 Support for Renesas R-Car Gen3 Eagle platform
46
Marek Vasut63e22512018-04-26 13:31:39 +020047config TARGET_EBISU
48 bool "Ebisu board"
49 help
50 Support for Renesas R-Car Gen3 Ebisu platform
51
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090052config TARGET_SALVATOR_X
53 bool "Salvator-X board"
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090054 help
Marek Vasut2aef8f32017-05-13 15:57:40 +020055 Support for Renesas R-Car Gen3 platform
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090056
Marek Vasutbd390502017-07-21 23:15:21 +020057config TARGET_ULCB
58 bool "ULCB board"
59 help
60 Support for Renesas R-Car Gen3 ULCB platform
61
Nobuhiro Iwamatsu581183d2016-04-01 03:51:34 +090062endchoice
63
64config SYS_SOC
65 default "rmobile"
66
Marek Vasut7387d4c2017-10-08 20:41:18 +020067source "board/renesas/draak/Kconfig"
Marek Vasutd21f08b2017-10-09 21:08:10 +020068source "board/renesas/eagle/Kconfig"
Marek Vasut63e22512018-04-26 13:31:39 +020069source "board/renesas/ebisu/Kconfig"
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090070source "board/renesas/salvator-x/Kconfig"
Marek Vasutbd390502017-07-21 23:15:21 +020071source "board/renesas/ulcb/Kconfig"
Nobuhiro Iwamatsue525d342016-04-01 03:51:36 +090072
Nobuhiro Iwamatsu581183d2016-04-01 03:51:34 +090073endif