提交 19449bfc 编写于 作者: A avisconti 提交者: David S. Miller

stmmac: enable/disable rx/tx in the core with a single write.

This patch enables and disables the rx and tx bits in the MAC control reg
by using a single write operation.
This also solves a possible problem (spotted on SPEAr platforms) at 10Mbps
where two consecutive writes to a MAC control register can take more than
4 phy_clk cycles.
Signed-off-by: NArmando Visconti <armando.visconti@st.com>
Acked-by: NGiuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 d1abc9a9
...@@ -337,33 +337,19 @@ static int stmmac_init_phy(struct net_device *dev) ...@@ -337,33 +337,19 @@ static int stmmac_init_phy(struct net_device *dev)
return 0; return 0;
} }
static inline void stmmac_mac_enable_rx(void __iomem *ioaddr) static inline void stmmac_enable_mac(void __iomem *ioaddr)
{ {
u32 value = readl(ioaddr + MAC_CTRL_REG); u32 value = readl(ioaddr + MAC_CTRL_REG);
value |= MAC_RNABLE_RX;
/* Set the RE (receive enable bit into the MAC CTRL register). */
writel(value, ioaddr + MAC_CTRL_REG);
}
static inline void stmmac_mac_enable_tx(void __iomem *ioaddr) value |= MAC_RNABLE_RX | MAC_ENABLE_TX;
{
u32 value = readl(ioaddr + MAC_CTRL_REG);
value |= MAC_ENABLE_TX;
/* Set the TE (transmit enable bit into the MAC CTRL register). */
writel(value, ioaddr + MAC_CTRL_REG); writel(value, ioaddr + MAC_CTRL_REG);
} }
static inline void stmmac_mac_disable_rx(void __iomem *ioaddr) static inline void stmmac_disable_mac(void __iomem *ioaddr)
{ {
u32 value = readl(ioaddr + MAC_CTRL_REG); u32 value = readl(ioaddr + MAC_CTRL_REG);
value &= ~MAC_RNABLE_RX;
writel(value, ioaddr + MAC_CTRL_REG);
}
static inline void stmmac_mac_disable_tx(void __iomem *ioaddr) value &= ~(MAC_ENABLE_TX | MAC_RNABLE_RX);
{
u32 value = readl(ioaddr + MAC_CTRL_REG);
value &= ~MAC_ENABLE_TX;
writel(value, ioaddr + MAC_CTRL_REG); writel(value, ioaddr + MAC_CTRL_REG);
} }
...@@ -857,8 +843,7 @@ static int stmmac_open(struct net_device *dev) ...@@ -857,8 +843,7 @@ static int stmmac_open(struct net_device *dev)
writel(0xffffffff, priv->ioaddr + MMC_LOW_INTR_MASK); writel(0xffffffff, priv->ioaddr + MMC_LOW_INTR_MASK);
/* Enable the MAC Rx/Tx */ /* Enable the MAC Rx/Tx */
stmmac_mac_enable_rx(priv->ioaddr); stmmac_enable_mac(priv->ioaddr);
stmmac_mac_enable_tx(priv->ioaddr);
/* Set the HW DMA mode and the COE */ /* Set the HW DMA mode and the COE */
stmmac_dma_operation_mode(priv); stmmac_dma_operation_mode(priv);
...@@ -928,9 +913,8 @@ static int stmmac_release(struct net_device *dev) ...@@ -928,9 +913,8 @@ static int stmmac_release(struct net_device *dev)
/* Release and free the Rx/Tx resources */ /* Release and free the Rx/Tx resources */
free_dma_desc_resources(priv); free_dma_desc_resources(priv);
/* Disable the MAC core */ /* Disable the MAC Rx/Tx */
stmmac_mac_disable_tx(priv->ioaddr); stmmac_disable_mac(priv->ioaddr);
stmmac_mac_disable_rx(priv->ioaddr);
netif_carrier_off(dev); netif_carrier_off(dev);
...@@ -1787,8 +1771,7 @@ static int stmmac_dvr_remove(struct platform_device *pdev) ...@@ -1787,8 +1771,7 @@ static int stmmac_dvr_remove(struct platform_device *pdev)
priv->hw->dma->stop_rx(priv->ioaddr); priv->hw->dma->stop_rx(priv->ioaddr);
priv->hw->dma->stop_tx(priv->ioaddr); priv->hw->dma->stop_tx(priv->ioaddr);
stmmac_mac_disable_rx(priv->ioaddr); stmmac_disable_mac(priv->ioaddr);
stmmac_mac_disable_tx(priv->ioaddr);
netif_carrier_off(ndev); netif_carrier_off(ndev);
...@@ -1839,13 +1822,11 @@ static int stmmac_suspend(struct platform_device *pdev, pm_message_t state) ...@@ -1839,13 +1822,11 @@ static int stmmac_suspend(struct platform_device *pdev, pm_message_t state)
dis_ic); dis_ic);
priv->hw->desc->init_tx_desc(priv->dma_tx, priv->dma_tx_size); priv->hw->desc->init_tx_desc(priv->dma_tx, priv->dma_tx_size);
stmmac_mac_disable_tx(priv->ioaddr);
/* Enable Power down mode by programming the PMT regs */ /* Enable Power down mode by programming the PMT regs */
if (device_can_wakeup(priv->device)) if (device_can_wakeup(priv->device))
priv->hw->mac->pmt(priv->ioaddr, priv->wolopts); priv->hw->mac->pmt(priv->ioaddr, priv->wolopts);
else else
stmmac_mac_disable_rx(priv->ioaddr); stmmac_disable_mac(priv->ioaddr);
} else { } else {
priv->shutdown = 1; priv->shutdown = 1;
/* Although this can appear slightly redundant it actually /* Although this can appear slightly redundant it actually
...@@ -1886,8 +1867,7 @@ static int stmmac_resume(struct platform_device *pdev) ...@@ -1886,8 +1867,7 @@ static int stmmac_resume(struct platform_device *pdev)
netif_device_attach(dev); netif_device_attach(dev);
/* Enable the MAC and DMA */ /* Enable the MAC and DMA */
stmmac_mac_enable_rx(priv->ioaddr); stmmac_enable_mac(priv->ioaddr);
stmmac_mac_enable_tx(priv->ioaddr);
priv->hw->dma->start_tx(priv->ioaddr); priv->hw->dma->start_tx(priv->ioaddr);
priv->hw->dma->start_rx(priv->ioaddr); priv->hw->dma->start_rx(priv->ioaddr);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册