Files
u-boot/arch/arm/mach-renesas/Kconfig.rcar4
Marek Vasut 55c4a6db54 arm64: dts: renesas: r8a779g3: Add Retronix R-Car V4H Sparrow Hawk board support
Add Retronix R-Car V4H Sparrow Hawk board based on Renesas R-Car V4H ES3.0
(R8A779G3) SoC. This is a single-board computer with single gigabit ethernet,
DSI-to-eDP bridge, DSI and two CSI2 interfaces, audio codec, two CANFD ports,
micro SD card slot, USB PD supply, USB 3.0 ports, M.2 Key-M slot for NVMe SSD,
debug UART and JTAG.

DT is imported from Linux next commit:
a719915e76f2 ("arm64: dts: renesas: r8a779g3: Add Retronix R-Car V4H Sparrow Hawk board support")

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
2025-06-10 20:50:50 +02:00

91 lines
1.7 KiB
Plaintext

if RCAR_GEN4
menu "Select Target SoC"
config R8A779A0
bool "Renesas SoC R8A779A0"
select GICV3
imply CLK_R8A779A0
imply PINCTRL_PFC_R8A779A0
config R8A779F0
bool "Renesas SoC R8A779F0"
select GICV3
imply CLK_R8A779F0
imply PINCTRL_PFC_R8A779F0
config R8A779G0
bool "Renesas SoC R8A779G0"
select GICV3
select BINMAN
select SUPPORT_SPL
imply SPL
imply SPL_BOARD_INIT
imply SPL_LIBCOMMON_SUPPORT
imply SPL_LIBGENERIC_SUPPORT
imply SPL_SERIAL
imply SPL_SYS_MALLOC_SIMPLE
imply SPL_TINY_MEMSET
imply SPL_USE_TINY_PRINTF
imply CLK_R8A779G0
imply PINCTRL_PFC_R8A779G0
config R8A779H0
bool "Renesas SoC R8A779H0"
select GICV3
imply CLK_R8A779H0
imply PINCTRL_PFC_R8A779H0
endmenu
choice
prompt "Renesas ARM64 SoCs board select"
optional
config TARGET_FALCON
bool "Falcon board"
imply R8A779A0
help
Support for Renesas R-Car Gen3 Falcon platform
config TARGET_SPIDER
bool "Spider board"
imply R8A779F0
help
Support for Renesas R-Car Gen4 Spider platform
config TARGET_S4SK
bool "S4SK board"
imply R8A779F0
help
Support for Renesas R-Car Gen4 S4SK platform
config TARGET_WHITEHAWK
bool "White Hawk board"
imply R8A779G0
help
Support for Renesas R-Car Gen4 White Hawk platform
config TARGET_SPARROWHAWK
bool "Sparrow Hawk board"
imply R8A779G0
help
Support for Renesas R-Car Gen4 Sparrow Hawk platform
config TARGET_GRAYHAWK
bool "Gray Hawk board"
imply R8A779H0
help
Support for Renesas R-Car Gen4 Gray Hawk platform
endchoice
source "board/renesas/falcon/Kconfig"
source "board/renesas/spider/Kconfig"
source "board/renesas/s4sk/Kconfig"
source "board/renesas/whitehawk/Kconfig"
source "board/renesas/sparrowhawk/Kconfig"
source "board/renesas/grayhawk/Kconfig"
endif