arm64: dts: renesas: falcon: Complete SCIF0 nodes
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Thu, 21 Jan 2021 11:00:06 +0000 (12:00 +0100)
committerGeert Uytterhoeven <geert+renesas@glider.be>
Mon, 25 Jan 2021 09:32:43 +0000 (10:32 +0100)
SCIF0 has been enabled by the firmware, so it worked already. Still, add
the proper nodes to make it work in any case.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Link: https://lore.kernel.org/r/20210121110008.15894-3-wsa+renesas@sang-engineering.com
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
arch/arm64/boot/dts/renesas/r8a779a0-falcon-cpu.dtsi

index 597676ee4deb5f6e6481f44c27f85f893e7afefc..c0df0e7f32b86033929bd220e62630acb8496f09 100644 (file)
@@ -83,6 +83,9 @@
 };
 
 &pfc {
+       pinctrl-0 = <&scif_clk_pins>;
+       pinctrl-names = "default";
+
        avb0_pins: avb0 {
                mux {
                        groups = "avb0_link", "avb0_mdio", "avb0_rgmii", "avb0_txcrefclk";
                groups = "i2c6";
                function = "i2c6";
        };
+
+       scif0_pins: scif0 {
+               groups = "scif0_data", "scif0_ctrl";
+               function = "scif0";
+       };
+
+       scif_clk_pins: scif_clk {
+               groups = "scif_clk";
+               function = "scif_clk";
+       };
 };
 
 &scif0 {
+       pinctrl-0 = <&scif0_pins>;
+       pinctrl-names = "default";
+
+       uart-has-rtscts;
        status = "okay";
 };
+
+&scif_clk {
+       clock-frequency = <24000000>;
+};