[LS1046] 10G ethernet packet error issue

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

[LS1046] 10G ethernet packet error issue

185 次查看
charleshuang
Senior Contributor II

Hi NXP team,

 

Our client feedbacks an issue where "Rx Error Packets" appear when testing the LS1046 with the AQR113 10G module.

The client's setup is as follows picture, and the issue can be reproduced regardless of whether the bandwidth is 10G or 1G. Please provide some suggestions to help us solve this issue. Thank you ~

charleshuang_0-1721264982744.png

charleshuang_1-1721264999608.png

charleshuang_2-1721265004247.png

 

And we have observed a phenomenon where, in a 10G environment, the port fm1-mac1 cannot display the connection speed using ethtool.
We are not sure if these two issues are related.

charleshuang_4-1721265060786.png

 

BR.

 

标记 (1)
0 项奖励
回复
1 回复

124 次查看
yipingwang
NXP TechSupport
NXP TechSupport

In the dts of ls1046ardb, fm1-mac10 is defined as fixed-link to support SFP+ module.

ethernet@f2000 { /* 10GEC2 */
fixed-link = <0 1 1000 0 0>;
phy-connection-type = "xgmii";
};

On your target board, you are using AQR113 10G external PHY, please define the Ethernet port similar as ethernet@f0000.

Please modify "reg = <0x0>" with the MDIO PHY address of AQR113 PHY.

In addition, please enable AQR113 PHY driver in Linux Kernel configuration file.

ethernet@f2000 { /* 10GEC1 */
phy-handle = <&aqr113_phy>;
phy-connection-type = "xgmii";
};

 

mdio@fd000 {
aqr106_phy: ethernet-phy@0 {
compatible = "ethernet-phy-ieee802.3-c45";
reg = <0x0>;
};
};

0 项奖励
回复