Files
u-boot/arch/arm/mach-renesas/Kconfig.rcar5
Marek Vasut 567a4cdd14 arm64: renesas: Select R-Car Gen5 R8A78000 X5H CPG clock driver
Select the R8A78000 clock driver on R-Car Gen5 X5H SoC by default.
The clock driver is used to remap DT clock IDs to SCMI clock IDs,
which is necessary to support multiple SCP firmware versions with
varying SCMI clock IDs across versions.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
2026-05-21 21:48:05 +02:00

39 lines
739 B
Plaintext

if RCAR_GEN5
config RCAR_64_RSIP
bool "Renesas ARM SoCs R-Car Gen5 (use Cortex-M33 RSIP)"
select SKIP_RELOCATE_CODE
select TMU_TIMER
help
Build U-Boot for the Cortex-M33 RSIP core present on selected SoC.
The default is n, meaning U-Boot is built for the Cortex-A core.
menu "Select Target SoC"
config R8A78000
bool "Renesas SoC R8A78000"
select GICV3
imply CLK_R8A78000
imply PINCTRL_PFC_R8A78000
endmenu
choice
prompt "Renesas ARM64 SoCs board select"
optional
config TARGET_IRONHIDE
bool "Ironhide board"
imply R8A78000
help
Support for Renesas R-Car Gen5 Ironhide platform
endchoice
source "board/renesas/ironhide/Kconfig"
config SKIP_RELOCATE_CODE_DATA_OFFSET
default 0xa0000000 if RCAR_64_RSIP
endif