Nobuhiro Iwamatsu | 1cc95f6 | 2015-10-10 05:58:28 +0900 | [diff] [blame] | 1 | if ARCH_RMOBILE |
Masahiro Yamada | f40b989 | 2014-08-31 07:10:57 +0900 | [diff] [blame] | 2 | |
| 3 | choice |
Nobuhiro Iwamatsu | 7a500a7 | 2016-06-17 13:52:13 +0900 | [diff] [blame] | 4 | prompt "Target Renesas SoC select" |
| 5 | default RCAR_32 |
Masahiro Yamada | f40b989 | 2014-08-31 07:10:57 +0900 | [diff] [blame] | 6 | |
Nobuhiro Iwamatsu | 7a500a7 | 2016-06-17 13:52:13 +0900 | [diff] [blame] | 7 | config RCAR_32 |
| 8 | bool "Renesas ARM SoCs R-Car Gen1/Gen2 (32bit)" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 9 | select CPU_V7A |
Vladimir Barinov | 2187113 | 2015-07-20 20:49:59 +0300 | [diff] [blame] | 10 | |
Nobuhiro Iwamatsu | 581183d | 2016-04-01 03:51:34 +0900 | [diff] [blame] | 11 | config RCAR_GEN3 |
| 12 | bool "Renesas ARM SoCs R-Car Gen3 (64bit)" |
| 13 | select ARM64 |
Marek Vasut | 806df25 | 2018-10-02 22:48:26 +0200 | [diff] [blame] | 14 | select PHY |
Hiroyuki Yokoyama | feaf301 | 2018-09-26 14:32:13 +0900 | [diff] [blame] | 15 | select CMD_CACHE |
Marek Vasut | 6b955cb | 2019-04-21 22:14:11 +0200 | [diff] [blame] | 16 | select PINCTRL |
| 17 | select PINCONF |
| 18 | select PINCTRL_PFC |
Marek Vasut | 5602330 | 2018-10-03 12:44:13 +0200 | [diff] [blame] | 19 | select SUPPORT_SPL |
Marek Vasut | 66582cf | 2018-12-03 23:46:11 +0100 | [diff] [blame] | 20 | imply CMD_FS_UUID |
| 21 | imply CMD_GPT |
| 22 | imply CMD_UUID |
| 23 | imply CMD_MMC_SWRITE if MMC |
| 24 | imply SUPPORT_EMMC_RPMB if MMC |
Marek Vasut | 5602330 | 2018-10-03 12:44:13 +0200 | [diff] [blame] | 25 | imply SPL |
| 26 | imply SPL_BOARD_INIT |
| 27 | imply SPL_GZIP |
| 28 | imply SPL_LIBCOMMON_SUPPORT |
| 29 | imply SPL_LIBGENERIC_SUPPORT |
| 30 | imply SPL_SERIAL_SUPPORT |
| 31 | imply SPL_SYS_MALLOC_SIMPLE |
| 32 | imply SPL_TINY_MEMSET |
| 33 | imply SPL_YMODEM_SUPPORT |
Simon Glass | 27084c0 | 2019-09-25 08:56:27 -0600 | [diff] [blame] | 34 | imply SPL_USE_TINY_PRINTF |
Nobuhiro Iwamatsu | 581183d | 2016-04-01 03:51:34 +0900 | [diff] [blame] | 35 | |
Chris Brandt | 3529596 | 2017-08-23 14:53:59 -0500 | [diff] [blame] | 36 | config RZA1 |
| 37 | prompt "Renesas ARM SoCs RZ/A1 (32bit)" |
| 38 | select CPU_V7A |
| 39 | |
Masahiro Yamada | f40b989 | 2014-08-31 07:10:57 +0900 | [diff] [blame] | 40 | endchoice |
| 41 | |
Nobuhiro Iwamatsu | 7a500a7 | 2016-06-17 13:52:13 +0900 | [diff] [blame] | 42 | source "arch/arm/mach-rmobile/Kconfig.32" |
Nobuhiro Iwamatsu | 581183d | 2016-04-01 03:51:34 +0900 | [diff] [blame] | 43 | source "arch/arm/mach-rmobile/Kconfig.64" |
Chris Brandt | 3529596 | 2017-08-23 14:53:59 -0500 | [diff] [blame] | 44 | source "arch/arm/mach-rmobile/Kconfig.rza1" |
Masahiro Yamada | f40b989 | 2014-08-31 07:10:57 +0900 | [diff] [blame] | 45 | |
| 46 | endif |