blob: 0e9c0fa99622738ac3f84675482f74f9cbf49d39 [file] [log] [blame]
Nobuhiro Iwamatsu1cc95f62015-10-10 05:58:28 +09001if ARCH_RMOBILE
Masahiro Yamadaf40b9892014-08-31 07:10:57 +09002
3choice
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +09004 prompt "Target Renesas SoC select"
5 default RCAR_32
Masahiro Yamadaf40b9892014-08-31 07:10:57 +09006
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +09007config RCAR_32
8 bool "Renesas ARM SoCs R-Car Gen1/Gen2 (32bit)"
Lokesh Vutlaacf15002018-04-26 18:21:26 +05309 select CPU_V7A
Vladimir Barinov21871132015-07-20 20:49:59 +030010
Nobuhiro Iwamatsu581183d2016-04-01 03:51:34 +090011config RCAR_GEN3
12 bool "Renesas ARM SoCs R-Car Gen3 (64bit)"
13 select ARM64
Marek Vasut806df252018-10-02 22:48:26 +020014 select PHY
Hiroyuki Yokoyamafeaf3012018-09-26 14:32:13 +090015 select CMD_CACHE
Marek Vasut8f76c9d2021-04-03 16:58:49 +020016 select OF_BOARD_SETUP
Marek Vasut6b955cb2019-04-21 22:14:11 +020017 select PINCTRL
18 select PINCONF
19 select PINCTRL_PFC
Marek Vasut2525fa32021-06-13 22:40:45 +020020 select POSITION_INDEPENDENT
Marek Vasut56023302018-10-03 12:44:13 +020021 select SUPPORT_SPL
Marek Vasut66582cf2018-12-03 23:46:11 +010022 imply CMD_FS_UUID
23 imply CMD_GPT
24 imply CMD_UUID
25 imply CMD_MMC_SWRITE if MMC
26 imply SUPPORT_EMMC_RPMB if MMC
Marek Vasut56023302018-10-03 12:44:13 +020027 imply SPL
28 imply SPL_BOARD_INIT
29 imply SPL_GZIP
30 imply SPL_LIBCOMMON_SUPPORT
31 imply SPL_LIBGENERIC_SUPPORT
Simon Glass2a736062021-08-08 12:20:12 -060032 imply SPL_SERIAL
Marek Vasut56023302018-10-03 12:44:13 +020033 imply SPL_SYS_MALLOC_SIMPLE
34 imply SPL_TINY_MEMSET
35 imply SPL_YMODEM_SUPPORT
Simon Glass27084c02019-09-25 08:56:27 -060036 imply SPL_USE_TINY_PRINTF
Nobuhiro Iwamatsu581183d2016-04-01 03:51:34 +090037
Chris Brandt35295962017-08-23 14:53:59 -050038config RZA1
39 prompt "Renesas ARM SoCs RZ/A1 (32bit)"
40 select CPU_V7A
41
Masahiro Yamadaf40b9892014-08-31 07:10:57 +090042endchoice
43
Nobuhiro Iwamatsu7a500a72016-06-17 13:52:13 +090044source "arch/arm/mach-rmobile/Kconfig.32"
Nobuhiro Iwamatsu581183d2016-04-01 03:51:34 +090045source "arch/arm/mach-rmobile/Kconfig.64"
Chris Brandt35295962017-08-23 14:53:59 -050046source "arch/arm/mach-rmobile/Kconfig.rza1"
Masahiro Yamadaf40b9892014-08-31 07:10:57 +090047
48endif