Before pinctrl driver implemented, the uart0 controller reply on
bootloader for setting correct pin mux and configurations.
Now, let's add pinctrl property to uart0 of Bananapi-F3 board.
Signed-off-by: Yixun Lan <dlan@gentoo.org>
  */
 
 #include "k1.dtsi"
+#include "k1-pinctrl.dtsi"
 
 / {
        model = "Banana Pi BPI-F3";
 };
 
 &uart0 {
+       pinctrl-names = "default";
+       pinctrl-0 = <&uart0_2_cfg>;
        status = "okay";
 };
 
--- /dev/null
+// SPDX-License-Identifier: GPL-2.0 OR MIT
+/*
+ * Copyright (c) 2024 Yixun Lan <dlan@gentoo.org>
+ */
+
+#include <dt-bindings/gpio/gpio.h>
+
+#define K1_PADCONF(pin, func) (((pin) << 16) | (func))
+
+&pinctrl {
+       uart0_2_cfg: uart0-2-cfg {
+               uart0-2-pins {
+                       pinmux = <K1_PADCONF(68, 2)>,
+                                <K1_PADCONF(69, 2)>;
+
+                       bias-pull-up = <0>;
+                       drive-strength = <32>;
+               };
+       };
+};
 
                        status = "disabled";
                };
 
+               pinctrl: pinctrl@d401e000 {
+                       compatible = "spacemit,k1-pinctrl";
+                       reg = <0x0 0xd401e000 0x0 0x400>;
+               };
+
                plic: interrupt-controller@e0000000 {
                        compatible = "spacemit,k1-plic", "sifive,plic-1.0.0";
                        reg = <0x0 0xe0000000 0x0 0x4000000>;