Message ID | 20250129165122.2980-14-thierry.bultel.yh@bp.renesas.com (mailing list archive) |
---|---|
State | New |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | add initial support for Renesas RZ/T2H SoC | expand |
On 29/01/2025 17:37, Thierry Bultel wrote: > diff --git a/arch/arm64/boot/dts/renesas/r9a09g077m44-rzt2h-evk.dts b/arch/arm64/boot/dts/renesas/r9a09g077m44-rzt2h-evk.dts > new file mode 100644 > index 000000000000..f2b448aaec82 > --- /dev/null > +++ b/arch/arm64/boot/dts/renesas/r9a09g077m44-rzt2h-evk.dts > @@ -0,0 +1,37 @@ > +// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) > +/* > + * Device Tree Source for the RZ/T2H Development EVK board > + * > + * Copyright (C) 2025 Renesas Electronics Corp. > + */ > + > +/dts-v1/; > + > +#include "r9a09g077m44.dtsi" > + > +/ { > + model = "Renesas Development EVK based on r9a09g077m44"; > + compatible = "renesas,r9a9g077m44-rzt2h-evk", "renesas,r9a9g077"; > + > + aliases { > + serial0 = &sci0; > + }; > + > + chosen { > + bootargs = "ignore_loglevel"; Drop, that's development, not wide-mainline use. > + stdout-path = "serial0:115200n8"; > + }; > + Stray blank line. Best regards, Krzysztof
diff --git a/arch/arm64/boot/dts/renesas/Makefile b/arch/arm64/boot/dts/renesas/Makefile index 97228a3cb99c..422ff9ccd05e 100644 --- a/arch/arm64/boot/dts/renesas/Makefile +++ b/arch/arm64/boot/dts/renesas/Makefile @@ -140,6 +140,7 @@ dtb-$(CONFIG_ARCH_R9A08G045) += r9a08g045s33-smarc.dtb dtb-$(CONFIG_ARCH_R9A09G011) += r9a09g011-v2mevk2.dtb +dtb-$(CONFIG_ARCH_R9A09G077) += r9a09g077m44-rzt2h-evk.dtb dtb-$(CONFIG_ARCH_R9A09G057) += r9a09g057h44-rzv2h-evk.dtb dtb-$(CONFIG_ARCH_RCAR_GEN3) += draak-ebisu-panel-aa104xd12.dtbo diff --git a/arch/arm64/boot/dts/renesas/r9a09g077m44-rzt2h-evk.dts b/arch/arm64/boot/dts/renesas/r9a09g077m44-rzt2h-evk.dts new file mode 100644 index 000000000000..f2b448aaec82 --- /dev/null +++ b/arch/arm64/boot/dts/renesas/r9a09g077m44-rzt2h-evk.dts @@ -0,0 +1,37 @@ +// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +/* + * Device Tree Source for the RZ/T2H Development EVK board + * + * Copyright (C) 2025 Renesas Electronics Corp. + */ + +/dts-v1/; + +#include "r9a09g077m44.dtsi" + +/ { + model = "Renesas Development EVK based on r9a09g077m44"; + compatible = "renesas,r9a9g077m44-rzt2h-evk", "renesas,r9a9g077"; + + aliases { + serial0 = &sci0; + }; + + chosen { + bootargs = "ignore_loglevel"; + stdout-path = "serial0:115200n8"; + }; + +}; + +&extal { + clock-frequency = <25000000>; +}; + +&loco { + clock-frequency = <1000000>; +}; + +&sci0 { + status = "okay"; +};
Add the initial device tree for the RZ/T2H evaluation board. Signed-off-by: Thierry Bultel <thierry.bultel.yh@bp.renesas.com> --- arch/arm64/boot/dts/renesas/Makefile | 1 + .../dts/renesas/r9a09g077m44-rzt2h-evk.dts | 37 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 arch/arm64/boot/dts/renesas/r9a09g077m44-rzt2h-evk.dts