Re: [PATCH] ARM: dts: realtek: Add support for Realtek RTD16XX evaluation board

From: Arnd Bergmann
Date: Thu Sep 05 2019 - 04:51:48 EST


On Thu, Sep 5, 2019 at 10:10 AM <jamestai.sky@xxxxxxxxx> wrote:

> +
> +/ {
> + model= "Realtek Mjolnir Evaluation Board";
> + model_hex= <0x00000653>;

The 'mode_hex' property is rather unusual, please drop that for now.

> + chosen {
> + bootargs = "console=ttyS0,115200 earlycon";
> + };
> +
> + memory@0 {
> + device_type = "memory";
> + reg = <0x0 0x0 0x0 0x80000000>;
> + };
> +
> + uart0: serial0@98007800 {
> + compatible = "snps,dw-apb-uart";
> + reg = <0x0 0x98007800 0x0 0x400>,
> + <0x0 0x98007000 0x0 0x100>;
> + reg-shift = <2>;
> + reg-io-width = <4>;
> + interrupts = <0 68 4>;
> + clock-frequency = <27000000>;
> + status = "okay";
> + };

This looks like an on-chip uart. Please move that into rtd16xx.dtsi
instead, and just mark it as 'status="disabled"' there if there are
multiple uarts (and add the other ones as well), then enable
it for the board here.

There should also be an 'aliases'. You normally also want to add

aliases {
serial0 = &uart0;
};

chosen {
stdout-path= "serial0:115200n8"
};

in the board file to make earlycon work right.

Arnd