doc: rockchip: Adapt Pine64 Rock64 board instructions
[platform/kernel/u-boot.git] / arch / arm / mach-rmobile / Kconfig
1 if ARCH_RMOBILE
2
3 choice
4         prompt "Target Renesas SoC select"
5         default RCAR_32
6
7 config RCAR_32
8         bool "Renesas ARM SoCs R-Car Gen1/Gen2 (32bit)"
9         select CPU_V7A
10
11 config RCAR_GEN3
12         bool "Renesas ARM SoCs R-Car Gen3 (64bit)"
13         select ARM64
14         select PHY
15         select CMD_CACHE
16         select PINCTRL
17         select PINCONF
18         select PINCTRL_PFC
19         select SUPPORT_SPL
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
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
34         imply USE_TINY_PRINTF
35
36 config RZA1
37         prompt "Renesas ARM SoCs RZ/A1 (32bit)"
38         select CPU_V7A
39
40 endchoice
41
42 source "arch/arm/mach-rmobile/Kconfig.32"
43 source "arch/arm/mach-rmobile/Kconfig.64"
44 source "arch/arm/mach-rmobile/Kconfig.rza1"
45
46 endif