mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-28 08:35:38 +00:00

Rename arch-rmobile to arch-renesas and mach-rmobile to mach-renesas because all the chips are made by Renesas, while only a subset of them is from the R-Mobile line. Use the following command to perform the rename, with manual move of the directories using git mv and manual fix up to arch/arm/Makefile: " $ git grep -l '\<\(arch\|mach\)-rmobile\>' | \ xargs -I {} sed -i 's@\<\(arch\|mach\)-rmobile\>@\1-renesas@g' {} $ sed -i 's@rmobile@renesas@' board/*/*/Kconfig " Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Paul Barker <paul.barker.ct@bp.renesas.com>
32 lines
685 B
Text
32 lines
685 B
Text
# Copyright (C) 2023 Renesas Electronics Corporation
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
if RZG2L
|
|
|
|
config R9A07G044L
|
|
bool "Renesas R9A07G044L SoC"
|
|
imply CLK_R9A07G044
|
|
help
|
|
Enable support for the Renesas R9A07G044L (RZ/G2L) SoC.
|
|
|
|
choice
|
|
prompt "Renesas RZ/G2L Family Board selection"
|
|
default TARGET_RZG2L_SMARC_EVK
|
|
|
|
config TARGET_RZG2L_SMARC_EVK
|
|
bool "Renesas RZ/G2L SMARC EVK"
|
|
imply R9A07G044L
|
|
help
|
|
Enable support for the RZ/G2L SMARC evaluation board.
|
|
|
|
source "board/renesas/rzg2l/Kconfig"
|
|
|
|
endchoice
|
|
|
|
config MULTI_DTB_FIT_UNCOMPRESS_SZ
|
|
default 0x80000 if TARGET_RZG2L_SMARC_EVK
|
|
|
|
config MULTI_DTB_FIT_USER_DEF_ADDR
|
|
default 0x49000000 if TARGET_RZG2L_SMARC_EVK
|
|
|
|
endif
|