LS1028A based custom board RGMII interface

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

LS1028A based custom board RGMII interface

ソリューションへジャンプ
943件の閲覧回数
mkraj
Contributor III

Dear Community,

We have integrated the KSZ9131 RGMII PHY into our custom design based on the LS1028A platform. In the reference design, the corresponding pins were originally used for SAI and IEEE 1588 functionality as per attached schematic.

Could anyone please advise on the necessary software modifications required to bring up the RGMII interface? Specifically, we would appreciate guidance on changes needed in the RCW, device tree, and any relevant driver configurations.

Looking forward to your support.

Best Regards,
Raju

タグ(1)
0 件の賞賛
返信
1 解決策
931件の閲覧回数
yipingwang
NXP TechSupport
NXP TechSupport

Please configure CONFIG_MICREL_PHY in Linux Kernel configuration file.

For dts file, please refer to the following link.

https://github.com/nxp-qoriq/linux/blob/lf-6.12.y/arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts

You need to modify the following section to replace "reg" value with your real PHY address. 

qds_phy1: ethernet-phy@5 {
                /* Atheros 8035 */
                reg = <5>; //please modify the PHY address with the real PHY address on your custom board. 
            };

元の投稿で解決策を見る

1 返信
932件の閲覧回数
yipingwang
NXP TechSupport
NXP TechSupport

Please configure CONFIG_MICREL_PHY in Linux Kernel configuration file.

For dts file, please refer to the following link.

https://github.com/nxp-qoriq/linux/blob/lf-6.12.y/arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts

You need to modify the following section to replace "reg" value with your real PHY address. 

qds_phy1: ethernet-phy@5 {
                /* Atheros 8035 */
                reg = <5>; //please modify the PHY address with the real PHY address on your custom board. 
            };