]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Let the EQoS in imx8mp handle fixed-phy too.
authorElmar Psilog <epsi@gmx.de>
Mon, 20 Feb 2023 15:03:15 +0000 (16:03 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 5 May 2023 21:48:37 +0000 (17:48 -0400)
Without that patch it lost track to the node to scan
speed and duplex.
Patch was created by Marek Vasut, just tested by me.

Signed-off-by: Elmar Psilog <epsi@gmx.de>
Reviewed-by: Marek Vasut <marex@denx.de>
drivers/net/dwc_eth_qos.c

index ec58697b311d7b105549897aa508ef217e4ac724..9bbba6eed0752bc3762812bf9c3b0797de95b01d 100644 (file)
@@ -794,9 +794,21 @@ static int eqos_start(struct udevice *dev)
         */
        if (!eqos->phy) {
                int addr = -1;
-               addr = eqos_get_phy_addr(eqos, dev);
-               eqos->phy = phy_connect(eqos->mii, addr, dev,
-                                       eqos->config->interface(dev));
+               ofnode fixed_node;
+
+               if (IS_ENABLED(CONFIG_PHY_FIXED)) {
+                       fixed_node = ofnode_find_subnode(dev_ofnode(dev),
+                                                        "fixed-link");
+                       if (ofnode_valid(fixed_node))
+                               eqos->phy = fixed_phy_create(dev_ofnode(dev));
+               }
+
+               if (!eqos->phy) {
+                       addr = eqos_get_phy_addr(eqos, dev);
+                       eqos->phy = phy_connect(eqos->mii, addr, dev,
+                                               eqos->config->interface(dev));
+               }
+
                if (!eqos->phy) {
                        pr_err("phy_connect() failed");
                        goto err_stop_resets;