mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
36b63c92c3
Add board code for R8A779G0 V4H White Hawk board. Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Signed-off-by: Hai Pham <hai.pham.ud@renesas.com> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> [Marek: Synchronize configuration symbols which are now switched to Kconfig Mallocate gd->bd->bi_boot_params, i.e. drop the assignment Sort headers, use clrbits_le32(), use BIT macros where appropriate Use CONFIG_SYS_CLK_FREQ for counter frequency instead of custom macro]
53 lines
931 B
Text
53 lines
931 B
Text
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
|
|
imply CLK_R8A779G0
|
|
imply PINCTRL_PFC_R8A779G0
|
|
|
|
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_WHITEHAWK
|
|
bool "White Hawk board"
|
|
imply R8A779G0
|
|
help
|
|
Support for Renesas R-Car Gen4 White Hawk platform
|
|
|
|
endchoice
|
|
|
|
source "board/renesas/falcon/Kconfig"
|
|
source "board/renesas/spider/Kconfig"
|
|
source "board/renesas/whitehawk/Kconfig"
|
|
|
|
endif
|