]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm: mvebu: turris_mox: Set "sfp" label in eth1 DT node when only Mox SFP is detected
authorPali Rohár <pali@kernel.org>
Wed, 10 Aug 2022 10:54:11 +0000 (12:54 +0200)
committerStefan Roese <sr@denx.de>
Tue, 23 Aug 2022 10:35:37 +0000 (12:35 +0200)
When Mox SFP module is connected after Topaz or Peridot module then port DT
node already contains "sfp" label. But Mox SFP module can be connected also
without Topaz or Peridot module in which case it is connected directly into
he eth1 DT node, which is without any label. So add "sfp" label into eth1
DT node in this case.

Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Marek Behún <kabel@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
board/CZ.NIC/turris_mox/turris_mox.c

index 28259e71405f64baa0e8d27aaaf4aae0dada1844..3dbd68e52366642c0e1716f8c45a64ce0aac7ada 100644 (file)
@@ -821,6 +821,11 @@ int ft_board_setup(void *blob, struct bd_info *bd)
                                                 "sgmii");
                        if (res < 0)
                                return res;
+
+                       res = fdt_setprop_string(blob, node, "label",
+                                                "sfp");
+                       if (res < 0)
+                               return res;
                }
 
                res = fdt_status_okay_by_compatible(blob, "cznic,moxtet-gpio");