board: fsl: lx2160ardb: add dts fixup for RevC
authorIoana Ciornei <ioana.ciornei@nxp.com>
Wed, 21 Apr 2021 09:53:10 +0000 (12:53 +0300)
committerPriyanka Jain <priyanka.jain@nxp.com>
Wed, 28 Apr 2021 04:22:59 +0000 (09:52 +0530)
Use the newly fdt_fixup_board_phy_revc() function introduced to updated
both kernel's DTS and u-boot's DTS in case we are running with DM_ETH.

Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com>
Signed-off-by: Florin Chiculita <florinlaurentiu.chiculita@nxp.com>
board/freescale/lx2160a/eth_lx2160ardb.c
board/freescale/lx2160a/lx2160a.c

index c693ad9..30a3af9 100644 (file)
@@ -366,5 +366,5 @@ int fdt_fixup_board_phy(void *fdt)
                }
        }
 
-       return ret;
+       return fdt_fixup_board_phy_revc(fdt);
 }
index af6d96e..8b9fb8b 100644 (file)
@@ -211,6 +211,11 @@ int board_fix_fdt(void *fdt)
                                                    "fsl,lx2160a-pcie");
        }
 
+       /* Fixup u-boot's DTS in case this is a revC board and
+        * we're using DM_ETH.
+        */
+       if (IS_ENABLED(CONFIG_TARGET_LX2160ARDB) && IS_ENABLED(CONFIG_DM_ETH))
+               fdt_fixup_board_phy_revc(fdt);
        return 0;
 }
 #endif
@@ -775,6 +780,9 @@ void fdt_fixup_board_enet(void *fdt)
                fdt_status_okay(fdt, offset);
 #ifndef CONFIG_DM_ETH
                fdt_fixup_board_phy(fdt);
+#else
+               if (IS_ENABLED(CONFIG_TARGET_LX2160ARDB))
+                       fdt_fixup_board_phy_revc(fdt);
 #endif
        } else {
                fdt_status_fail(fdt, offset);