diff mbox

[U-Boot] driver: net: ldpaa: Update the lane number to DPMAC mapping

Message ID 1448430873-10070-1-git-send-email-prabhakar@freescale.com
State Accepted
Delegated to: York Sun
Headers show

Commit Message

Prabhakar Kushwaha Nov. 25, 2015, 5:54 a.m. UTC
As of patch "http://patchwork.ozlabs.org/patch/539748/", serdes_init() is
passing correct DPMAC id.

So Update the lane to DPMAC mapping.

Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com>
---
 drivers/net/ldpaa_eth/ldpaa_wriop.c | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

Comments

York Sun Nov. 30, 2015, 5:33 p.m. UTC | #1
On 11/24/2015 09:54 PM, Prabhakar Kushwaha wrote:
> As of patch "http://patchwork.ozlabs.org/patch/539748/", serdes_init() is
> passing correct DPMAC id.
> 
> So Update the lane to DPMAC mapping.
> 
> Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com>
> ---
>  drivers/net/ldpaa_eth/ldpaa_wriop.c | 17 ++++++++---------
>  1 file changed, 8 insertions(+), 9 deletions(-)

Squashed with patch "armv8: lsch3: Fix lane protocol parsing logic"
http://patchwork.ozlabs.org/patch/539748/

York
diff mbox

Patch

diff --git a/drivers/net/ldpaa_eth/ldpaa_wriop.c b/drivers/net/ldpaa_eth/ldpaa_wriop.c
index 357b35a..f7f26c2 100644
--- a/drivers/net/ldpaa_eth/ldpaa_wriop.c
+++ b/drivers/net/ldpaa_eth/ldpaa_wriop.c
@@ -23,18 +23,17 @@  __weak phy_interface_t wriop_dpmac_enet_if(int dpmac_id, int lane_prtc)
 void wriop_init_dpmac(int sd, int dpmac_id, int lane_prtcl)
 {
 	phy_interface_t enet_if;
-	int index = dpmac_id + sd * 8;
 
-	dpmac_info[index].enabled = 0;
-	dpmac_info[index].id = 0;
-	dpmac_info[index].phy_addr = -1;
-	dpmac_info[index].enet_if = PHY_INTERFACE_MODE_NONE;
+	dpmac_info[dpmac_id].enabled = 0;
+	dpmac_info[dpmac_id].id = 0;
+	dpmac_info[dpmac_id].phy_addr = -1;
+	dpmac_info[dpmac_id].enet_if = PHY_INTERFACE_MODE_NONE;
 
-	enet_if = wriop_dpmac_enet_if(index, lane_prtcl);
+	enet_if = wriop_dpmac_enet_if(dpmac_id, lane_prtcl);
 	if (enet_if != PHY_INTERFACE_MODE_NONE) {
-		dpmac_info[index].enabled = 1;
-		dpmac_info[index].id = index;
-		dpmac_info[index].enet_if = enet_if;
+		dpmac_info[dpmac_id].enabled = 1;
+		dpmac_info[dpmac_id].id = dpmac_id;
+		dpmac_info[dpmac_id].enet_if = enet_if;
 	}
 }