系统相关
首页 > 系统相关> > Marvell 88E1111(1000M PHY) linux 配置

Marvell 88E1111(1000M PHY) linux 配置

作者:互联网

 

1. driver

 

 

2. kernel config

Device Drivers  --->
    [*] Network device support  --->
        -*-   PHY Device support and infrastructure  --->
            <*>   Marvell PHYs

 

 

3. dts config

    mdio {
        #address-cells = <1>;
        #size-cells = <0>;
        compatible = "snps,dwmac-mdio";
        phy0: phy@0 {
            device_tpye = "ethernet-phy";
            compatible = "ethernet-phy-id0141.0cc0", "ethernet-phy-ieee802.3-c22";
            reg = <0>;
        };
    };

    phy-mode = "gmii";

 

 

标签:Marvell,mdio,phy,---,PHY,88E1111,linux,device,ethernet
来源: https://blog.csdn.net/u012247418/article/details/117715376