Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: Renesas RZN1D-DB Board base file

This adds a base device tree file for the RZN1-DB board, with only the
basic support allowing the system to boot to a prompt. Only one UART is
used, with only a single CPU running.

Signed-off-by: Michel Pollet <michel.pollet@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>

authored by

Michel Pollet and committed by
Simon Horman
df7112c9 769d7248

+29
+1
arch/arm/boot/dts/Makefile
··· 819 819 r8a7793-gose.dtb \ 820 820 r8a7794-alt.dtb \ 821 821 r8a7794-silk.dtb \ 822 + r9a06g032-rzn1d400-db.dtb \ 822 823 sh73a0-kzm9g.dtb 823 824 dtb-$(CONFIG_ARCH_ROCKCHIP) += \ 824 825 rv1108-evb.dtb \
+28
arch/arm/boot/dts/r9a06g032-rzn1d400-db.dts
··· 1 + // SPDX-License-Identifier: GPL-2.0 2 + /* 3 + * Device Tree Source for the RZN1D-DB Board 4 + * 5 + * Copyright (C) 2018 Renesas Electronics Europe Limited 6 + * 7 + */ 8 + 9 + /dts-v1/; 10 + 11 + #include "r9a06g032.dtsi" 12 + 13 + / { 14 + model = "RZN1D-DB Board"; 15 + compatible = "renesas,rzn1d400-db", "renesas,r9a06g032"; 16 + 17 + chosen { 18 + stdout-path = "serial0:115200n8"; 19 + }; 20 + 21 + aliases { 22 + serial0 = &uart0; 23 + }; 24 + }; 25 + 26 + &uart0 { 27 + status = "okay"; 28 + };