priv->cur_rx:已经传递给协议层的index。 3)status =(priv->hw->desc->rx_status(&priv->dev->stats, &priv->xstats,p)); 获取收到帧状态,如果是丢弃帧,则什么都不处理;否则上传到上层网络。 4)frame_len = priv->hw->desc->get_rx_frame_len(p, coe); 获取帧长度 5)skb = priv->rx_skbuf...
之后会调用phy_init_hw进行phy config配置,配置完成后执行phy_resume启用phy设备。phy_init_hw函数中将对phy设备做soft_reset、fixup、config_init等操作,这些操作涉及一系列的phy寄存器操作。在stmmac_init_phy函数的最后会根据接口模式MII或RMII(GMII)设置不同的advertising带宽属性。
* stmmac_eee_init * @priv: private device pointer * Description: * If the EEE support has been enabled while configuring the driver, * if the GMAC actually supports the EEE (from the HW cap reg) and the * phy can also manage EEE, so enable the LPI state and start the timer ...
3765 + goto init_error; 3766 + } 3767 + } 3768 + 3760 3769 ret = stmmac_hw_setup(dev, true); 3761 3770 if (ret < 0) { 3762 3771 netdev_err(priv->dev, "%s: Hw setup failed\n", __func__); @@ -3846,6 +3855,10 @@ static int stmmac_release(struct net_d...
ethernet / stmicro / stmmac / stmmac_platform.c v6 v6.14 v6.13 v6.13.7 v6.13.6 v6.13.5 v6.13.4 v6.13.3 v6.13.2 v6.13.1 v6.13 v6.13-rc7 v6.13-rc6 v6.13-rc5 v6.13-rc4 v6.13-rc3 v6.13-rc2 v6.13-rc1 ...
sun8i_dwmac_core_init(structmac_device_info*hw, structnet_device*dev) { void__iomem*ioaddr=hw->pcsr; u32v; v=(8<<EMAC_BURSTLEN_SHIFT);/* burst len */ writel(v,ioaddr+EMAC_BASIC_CTL1); } staticvoidsun8i_dwmac_set_mac
static void dwmac4_core_init(struct mac_device_info *hw, struct net_device *dev) @@ -768,6 +769,40 @@ static const struct stmmac_ops dwmac410_ops = { .set_filter = dwmac4_set_filter, }; static const struct stmmac_ops dwmac510_ops = { .core_init = dwmac4_core_init, .set...