diff options
Diffstat (limited to 'drivers/net/stmmac/stmmac_mdio.c')
-rw-r--r-- | drivers/net/stmmac/stmmac_mdio.c | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/drivers/net/stmmac/stmmac_mdio.c b/drivers/net/stmmac/stmmac_mdio.c index 40b2c7929719..234b4068a1fc 100644 --- a/drivers/net/stmmac/stmmac_mdio.c +++ b/drivers/net/stmmac/stmmac_mdio.c | |||
@@ -47,21 +47,20 @@ static int stmmac_mdio_read(struct mii_bus *bus, int phyaddr, int phyreg) | |||
47 | { | 47 | { |
48 | struct net_device *ndev = bus->priv; | 48 | struct net_device *ndev = bus->priv; |
49 | struct stmmac_priv *priv = netdev_priv(ndev); | 49 | struct stmmac_priv *priv = netdev_priv(ndev); |
50 | unsigned long ioaddr = ndev->base_addr; | ||
51 | unsigned int mii_address = priv->hw->mii.addr; | 50 | unsigned int mii_address = priv->hw->mii.addr; |
52 | unsigned int mii_data = priv->hw->mii.data; | 51 | unsigned int mii_data = priv->hw->mii.data; |
53 | 52 | ||
54 | int data; | 53 | int data; |
55 | u16 regValue = (((phyaddr << 11) & (0x0000F800)) | | 54 | u16 regValue = (((phyaddr << 11) & (0x0000F800)) | |
56 | ((phyreg << 6) & (0x000007C0))); | 55 | ((phyreg << 6) & (0x000007C0))); |
57 | regValue |= MII_BUSY; /* in case of GMAC */ | 56 | regValue |= MII_BUSY | ((priv->plat->clk_csr & 7) << 2); |
58 | 57 | ||
59 | do {} while (((readl(ioaddr + mii_address)) & MII_BUSY) == 1); | 58 | do {} while (((readl(priv->ioaddr + mii_address)) & MII_BUSY) == 1); |
60 | writel(regValue, ioaddr + mii_address); | 59 | writel(regValue, priv->ioaddr + mii_address); |
61 | do {} while (((readl(ioaddr + mii_address)) & MII_BUSY) == 1); | 60 | do {} while (((readl(priv->ioaddr + mii_address)) & MII_BUSY) == 1); |
62 | 61 | ||
63 | /* Read the data from the MII data register */ | 62 | /* Read the data from the MII data register */ |
64 | data = (int)readl(ioaddr + mii_data); | 63 | data = (int)readl(priv->ioaddr + mii_data); |
65 | 64 | ||
66 | return data; | 65 | return data; |
67 | } | 66 | } |
@@ -79,7 +78,6 @@ static int stmmac_mdio_write(struct mii_bus *bus, int phyaddr, int phyreg, | |||
79 | { | 78 | { |
80 | struct net_device *ndev = bus->priv; | 79 | struct net_device *ndev = bus->priv; |
81 | struct stmmac_priv *priv = netdev_priv(ndev); | 80 | struct stmmac_priv *priv = netdev_priv(ndev); |
82 | unsigned long ioaddr = ndev->base_addr; | ||
83 | unsigned int mii_address = priv->hw->mii.addr; | 81 | unsigned int mii_address = priv->hw->mii.addr; |
84 | unsigned int mii_data = priv->hw->mii.data; | 82 | unsigned int mii_data = priv->hw->mii.data; |
85 | 83 | ||
@@ -87,17 +85,18 @@ static int stmmac_mdio_write(struct mii_bus *bus, int phyaddr, int phyreg, | |||
87 | (((phyaddr << 11) & (0x0000F800)) | ((phyreg << 6) & (0x000007C0))) | 85 | (((phyaddr << 11) & (0x0000F800)) | ((phyreg << 6) & (0x000007C0))) |
88 | | MII_WRITE; | 86 | | MII_WRITE; |
89 | 87 | ||
90 | value |= MII_BUSY; | 88 | value |= MII_BUSY | ((priv->plat->clk_csr & 7) << 2); |
89 | |||
91 | 90 | ||
92 | /* Wait until any existing MII operation is complete */ | 91 | /* Wait until any existing MII operation is complete */ |
93 | do {} while (((readl(ioaddr + mii_address)) & MII_BUSY) == 1); | 92 | do {} while (((readl(priv->ioaddr + mii_address)) & MII_BUSY) == 1); |
94 | 93 | ||
95 | /* Set the MII address register to write */ | 94 | /* Set the MII address register to write */ |
96 | writel(phydata, ioaddr + mii_data); | 95 | writel(phydata, priv->ioaddr + mii_data); |
97 | writel(value, ioaddr + mii_address); | 96 | writel(value, priv->ioaddr + mii_address); |
98 | 97 | ||
99 | /* Wait until any existing MII operation is complete */ | 98 | /* Wait until any existing MII operation is complete */ |
100 | do {} while (((readl(ioaddr + mii_address)) & MII_BUSY) == 1); | 99 | do {} while (((readl(priv->ioaddr + mii_address)) & MII_BUSY) == 1); |
101 | 100 | ||
102 | return 0; | 101 | return 0; |
103 | } | 102 | } |
@@ -111,19 +110,18 @@ static int stmmac_mdio_reset(struct mii_bus *bus) | |||
111 | { | 110 | { |
112 | struct net_device *ndev = bus->priv; | 111 | struct net_device *ndev = bus->priv; |
113 | struct stmmac_priv *priv = netdev_priv(ndev); | 112 | struct stmmac_priv *priv = netdev_priv(ndev); |
114 | unsigned long ioaddr = ndev->base_addr; | ||
115 | unsigned int mii_address = priv->hw->mii.addr; | 113 | unsigned int mii_address = priv->hw->mii.addr; |
116 | 114 | ||
117 | if (priv->phy_reset) { | 115 | if (priv->phy_reset) { |
118 | pr_debug("stmmac_mdio_reset: calling phy_reset\n"); | 116 | pr_debug("stmmac_mdio_reset: calling phy_reset\n"); |
119 | priv->phy_reset(priv->bsp_priv); | 117 | priv->phy_reset(priv->plat->bsp_priv); |
120 | } | 118 | } |
121 | 119 | ||
122 | /* This is a workaround for problems with the STE101P PHY. | 120 | /* This is a workaround for problems with the STE101P PHY. |
123 | * It doesn't complete its reset until at least one clock cycle | 121 | * It doesn't complete its reset until at least one clock cycle |
124 | * on MDC, so perform a dummy mdio read. | 122 | * on MDC, so perform a dummy mdio read. |
125 | */ | 123 | */ |
126 | writel(0, ioaddr + mii_address); | 124 | writel(0, priv->ioaddr + mii_address); |
127 | 125 | ||
128 | return 0; | 126 | return 0; |
129 | } | 127 | } |
@@ -159,7 +157,7 @@ int stmmac_mdio_register(struct net_device *ndev) | |||
159 | new_bus->read = &stmmac_mdio_read; | 157 | new_bus->read = &stmmac_mdio_read; |
160 | new_bus->write = &stmmac_mdio_write; | 158 | new_bus->write = &stmmac_mdio_write; |
161 | new_bus->reset = &stmmac_mdio_reset; | 159 | new_bus->reset = &stmmac_mdio_reset; |
162 | snprintf(new_bus->id, MII_BUS_ID_SIZE, "%x", priv->bus_id); | 160 | snprintf(new_bus->id, MII_BUS_ID_SIZE, "%x", priv->plat->bus_id); |
163 | new_bus->priv = ndev; | 161 | new_bus->priv = ndev; |
164 | new_bus->irq = irqlist; | 162 | new_bus->irq = irqlist; |
165 | new_bus->phy_mask = priv->phy_mask; | 163 | new_bus->phy_mask = priv->phy_mask; |