diff options
author | Giuseppe CAVALLARO <peppe.cavallaro@st.com> | 2010-11-23 21:37:58 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-24 14:14:24 -0500 |
commit | 9dfeb4d953f914bd3bb56ce60e22ee84687399ce (patch) | |
tree | 37d9d33974944cb219e911e0aa965d337fee2ed7 /drivers/net/stmmac | |
parent | b340007f79941297c44a7dfba4d3c587ff81590f (diff) |
stmmac: tidy-up stmmac_priv structure
This patch tidies-up the stmmac_priv structure
that had many fileds alredy defined in the
plat_stmmacenet_data structure.
Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/stmmac')
-rw-r--r-- | drivers/net/stmmac/stmmac.h | 15 | ||||
-rw-r--r-- | drivers/net/stmmac/stmmac_ethtool.c | 4 | ||||
-rw-r--r-- | drivers/net/stmmac/stmmac_main.c | 69 | ||||
-rw-r--r-- | drivers/net/stmmac/stmmac_mdio.c | 8 |
4 files changed, 44 insertions, 52 deletions
diff --git a/drivers/net/stmmac/stmmac.h b/drivers/net/stmmac/stmmac.h index 79bdc2e13224..31575670d862 100644 --- a/drivers/net/stmmac/stmmac.h +++ b/drivers/net/stmmac/stmmac.h | |||
@@ -37,7 +37,6 @@ struct stmmac_priv { | |||
37 | unsigned int cur_tx; | 37 | unsigned int cur_tx; |
38 | unsigned int dirty_tx; | 38 | unsigned int dirty_tx; |
39 | unsigned int dma_tx_size; | 39 | unsigned int dma_tx_size; |
40 | int tx_coe; | ||
41 | int tx_coalesce; | 40 | int tx_coalesce; |
42 | 41 | ||
43 | struct dma_desc *dma_rx ; | 42 | struct dma_desc *dma_rx ; |
@@ -48,7 +47,6 @@ struct stmmac_priv { | |||
48 | struct sk_buff_head rx_recycle; | 47 | struct sk_buff_head rx_recycle; |
49 | 48 | ||
50 | struct net_device *dev; | 49 | struct net_device *dev; |
51 | int is_gmac; | ||
52 | dma_addr_t dma_rx_phy; | 50 | dma_addr_t dma_rx_phy; |
53 | unsigned int dma_rx_size; | 51 | unsigned int dma_rx_size; |
54 | unsigned int dma_buf_sz; | 52 | unsigned int dma_buf_sz; |
@@ -60,14 +58,11 @@ struct stmmac_priv { | |||
60 | struct napi_struct napi; | 58 | struct napi_struct napi; |
61 | 59 | ||
62 | phy_interface_t phy_interface; | 60 | phy_interface_t phy_interface; |
63 | int pbl; | ||
64 | int bus_id; | ||
65 | int phy_addr; | 61 | int phy_addr; |
66 | int phy_mask; | 62 | int phy_mask; |
67 | int (*phy_reset) (void *priv); | 63 | int (*phy_reset) (void *priv); |
68 | void (*fix_mac_speed) (void *priv, unsigned int speed); | 64 | int rx_coe; |
69 | void (*bus_setup)(void __iomem *ioaddr); | 65 | int no_csum_insertion; |
70 | void *bsp_priv; | ||
71 | 66 | ||
72 | int phy_irq; | 67 | int phy_irq; |
73 | struct phy_device *phydev; | 68 | struct phy_device *phydev; |
@@ -77,7 +72,6 @@ struct stmmac_priv { | |||
77 | unsigned int flow_ctrl; | 72 | unsigned int flow_ctrl; |
78 | unsigned int pause; | 73 | unsigned int pause; |
79 | struct mii_bus *mii; | 74 | struct mii_bus *mii; |
80 | int mii_clk_csr; | ||
81 | 75 | ||
82 | u32 msg_enable; | 76 | u32 msg_enable; |
83 | spinlock_t lock; | 77 | spinlock_t lock; |
@@ -90,10 +84,7 @@ struct stmmac_priv { | |||
90 | #ifdef STMMAC_VLAN_TAG_USED | 84 | #ifdef STMMAC_VLAN_TAG_USED |
91 | struct vlan_group *vlgrp; | 85 | struct vlan_group *vlgrp; |
92 | #endif | 86 | #endif |
93 | int enh_desc; | 87 | struct plat_stmmacenet_data *plat; |
94 | int rx_coe; | ||
95 | int bugged_jumbo; | ||
96 | int no_csum_insertion; | ||
97 | }; | 88 | }; |
98 | 89 | ||
99 | #ifdef CONFIG_STM_DRIVERS | 90 | #ifdef CONFIG_STM_DRIVERS |
diff --git a/drivers/net/stmmac/stmmac_ethtool.c b/drivers/net/stmmac/stmmac_ethtool.c index 6d65482e789a..f2695fd180ca 100644 --- a/drivers/net/stmmac/stmmac_ethtool.c +++ b/drivers/net/stmmac/stmmac_ethtool.c | |||
@@ -94,7 +94,7 @@ static void stmmac_ethtool_getdrvinfo(struct net_device *dev, | |||
94 | { | 94 | { |
95 | struct stmmac_priv *priv = netdev_priv(dev); | 95 | struct stmmac_priv *priv = netdev_priv(dev); |
96 | 96 | ||
97 | if (!priv->is_gmac) | 97 | if (!priv->plat->has_gmac) |
98 | strcpy(info->driver, MAC100_ETHTOOL_NAME); | 98 | strcpy(info->driver, MAC100_ETHTOOL_NAME); |
99 | else | 99 | else |
100 | strcpy(info->driver, GMAC_ETHTOOL_NAME); | 100 | strcpy(info->driver, GMAC_ETHTOOL_NAME); |
@@ -176,7 +176,7 @@ static void stmmac_ethtool_gregs(struct net_device *dev, | |||
176 | 176 | ||
177 | memset(reg_space, 0x0, REG_SPACE_SIZE); | 177 | memset(reg_space, 0x0, REG_SPACE_SIZE); |
178 | 178 | ||
179 | if (!priv->is_gmac) { | 179 | if (!priv->plat->has_gmac) { |
180 | /* MAC registers */ | 180 | /* MAC registers */ |
181 | for (i = 0; i < 12; i++) | 181 | for (i = 0; i < 12; i++) |
182 | reg_space[i] = readl(priv->ioaddr + (i * 4)); | 182 | reg_space[i] = readl(priv->ioaddr + (i * 4)); |
diff --git a/drivers/net/stmmac/stmmac_main.c b/drivers/net/stmmac/stmmac_main.c index 06bc6034ce81..29ba28660fa9 100644 --- a/drivers/net/stmmac/stmmac_main.c +++ b/drivers/net/stmmac/stmmac_main.c | |||
@@ -186,6 +186,18 @@ static inline u32 stmmac_tx_avail(struct stmmac_priv *priv) | |||
186 | return priv->dirty_tx + priv->dma_tx_size - priv->cur_tx - 1; | 186 | return priv->dirty_tx + priv->dma_tx_size - priv->cur_tx - 1; |
187 | } | 187 | } |
188 | 188 | ||
189 | /* On some ST platforms, some HW system configuraton registers have to be | ||
190 | * set according to the link speed negotiated. | ||
191 | */ | ||
192 | static inline void stmmac_hw_fix_mac_speed(struct stmmac_priv *priv) | ||
193 | { | ||
194 | struct phy_device *phydev = priv->phydev; | ||
195 | |||
196 | if (likely(priv->plat->fix_mac_speed)) | ||
197 | priv->plat->fix_mac_speed(priv->plat->bsp_priv, | ||
198 | phydev->speed); | ||
199 | } | ||
200 | |||
189 | /** | 201 | /** |
190 | * stmmac_adjust_link | 202 | * stmmac_adjust_link |
191 | * @dev: net device structure | 203 | * @dev: net device structure |
@@ -228,15 +240,13 @@ static void stmmac_adjust_link(struct net_device *dev) | |||
228 | new_state = 1; | 240 | new_state = 1; |
229 | switch (phydev->speed) { | 241 | switch (phydev->speed) { |
230 | case 1000: | 242 | case 1000: |
231 | if (likely(priv->is_gmac)) | 243 | if (likely(priv->plat->has_gmac)) |
232 | ctrl &= ~priv->hw->link.port; | 244 | ctrl &= ~priv->hw->link.port; |
233 | if (likely(priv->fix_mac_speed)) | 245 | stmmac_hw_fix_mac_speed(priv); |
234 | priv->fix_mac_speed(priv->bsp_priv, | ||
235 | phydev->speed); | ||
236 | break; | 246 | break; |
237 | case 100: | 247 | case 100: |
238 | case 10: | 248 | case 10: |
239 | if (priv->is_gmac) { | 249 | if (priv->plat->has_gmac) { |
240 | ctrl |= priv->hw->link.port; | 250 | ctrl |= priv->hw->link.port; |
241 | if (phydev->speed == SPEED_100) { | 251 | if (phydev->speed == SPEED_100) { |
242 | ctrl |= priv->hw->link.speed; | 252 | ctrl |= priv->hw->link.speed; |
@@ -246,9 +256,7 @@ static void stmmac_adjust_link(struct net_device *dev) | |||
246 | } else { | 256 | } else { |
247 | ctrl &= ~priv->hw->link.port; | 257 | ctrl &= ~priv->hw->link.port; |
248 | } | 258 | } |
249 | if (likely(priv->fix_mac_speed)) | 259 | stmmac_hw_fix_mac_speed(priv); |
250 | priv->fix_mac_speed(priv->bsp_priv, | ||
251 | phydev->speed); | ||
252 | break; | 260 | break; |
253 | default: | 261 | default: |
254 | if (netif_msg_link(priv)) | 262 | if (netif_msg_link(priv)) |
@@ -305,7 +313,7 @@ static int stmmac_init_phy(struct net_device *dev) | |||
305 | return 0; | 313 | return 0; |
306 | } | 314 | } |
307 | 315 | ||
308 | snprintf(bus_id, MII_BUS_ID_SIZE, "%x", priv->bus_id); | 316 | snprintf(bus_id, MII_BUS_ID_SIZE, "%x", priv->plat->bus_id); |
309 | snprintf(phy_id, MII_BUS_ID_SIZE + 3, PHY_ID_FMT, bus_id, | 317 | snprintf(phy_id, MII_BUS_ID_SIZE + 3, PHY_ID_FMT, bus_id, |
310 | priv->phy_addr); | 318 | priv->phy_addr); |
311 | pr_debug("stmmac_init_phy: trying to attach to %s\n", phy_id); | 319 | pr_debug("stmmac_init_phy: trying to attach to %s\n", phy_id); |
@@ -552,7 +560,7 @@ static void free_dma_desc_resources(struct stmmac_priv *priv) | |||
552 | */ | 560 | */ |
553 | static void stmmac_dma_operation_mode(struct stmmac_priv *priv) | 561 | static void stmmac_dma_operation_mode(struct stmmac_priv *priv) |
554 | { | 562 | { |
555 | if (likely((priv->tx_coe) && (!priv->no_csum_insertion))) { | 563 | if (likely((priv->plat->tx_coe) && (!priv->no_csum_insertion))) { |
556 | /* In case of GMAC, SF mode has to be enabled | 564 | /* In case of GMAC, SF mode has to be enabled |
557 | * to perform the TX COE. This depends on: | 565 | * to perform the TX COE. This depends on: |
558 | * 1) TX COE if actually supported | 566 | * 1) TX COE if actually supported |
@@ -814,7 +822,7 @@ static int stmmac_open(struct net_device *dev) | |||
814 | init_dma_desc_rings(dev); | 822 | init_dma_desc_rings(dev); |
815 | 823 | ||
816 | /* DMA initialization and SW reset */ | 824 | /* DMA initialization and SW reset */ |
817 | if (unlikely(priv->hw->dma->init(priv->ioaddr, priv->pbl, | 825 | if (unlikely(priv->hw->dma->init(priv->ioaddr, priv->plat->pbl, |
818 | priv->dma_tx_phy, | 826 | priv->dma_tx_phy, |
819 | priv->dma_rx_phy) < 0)) { | 827 | priv->dma_rx_phy) < 0)) { |
820 | 828 | ||
@@ -825,15 +833,15 @@ static int stmmac_open(struct net_device *dev) | |||
825 | /* Copy the MAC addr into the HW */ | 833 | /* Copy the MAC addr into the HW */ |
826 | priv->hw->mac->set_umac_addr(priv->ioaddr, dev->dev_addr, 0); | 834 | priv->hw->mac->set_umac_addr(priv->ioaddr, dev->dev_addr, 0); |
827 | /* If required, perform hw setup of the bus. */ | 835 | /* If required, perform hw setup of the bus. */ |
828 | if (priv->bus_setup) | 836 | if (priv->plat->bus_setup) |
829 | priv->bus_setup(priv->ioaddr); | 837 | priv->plat->bus_setup(priv->ioaddr); |
830 | /* Initialize the MAC Core */ | 838 | /* Initialize the MAC Core */ |
831 | priv->hw->mac->core_init(priv->ioaddr); | 839 | priv->hw->mac->core_init(priv->ioaddr); |
832 | 840 | ||
833 | priv->rx_coe = priv->hw->mac->rx_coe(priv->ioaddr); | 841 | priv->rx_coe = priv->hw->mac->rx_coe(priv->ioaddr); |
834 | if (priv->rx_coe) | 842 | if (priv->rx_coe) |
835 | pr_info("stmmac: Rx Checksum Offload Engine supported\n"); | 843 | pr_info("stmmac: Rx Checksum Offload Engine supported\n"); |
836 | if (priv->tx_coe) | 844 | if (priv->plat->tx_coe) |
837 | pr_info("\tTX Checksum insertion supported\n"); | 845 | pr_info("\tTX Checksum insertion supported\n"); |
838 | 846 | ||
839 | priv->shutdown = 0; | 847 | priv->shutdown = 0; |
@@ -1042,7 +1050,8 @@ static netdev_tx_t stmmac_xmit(struct sk_buff *skb, struct net_device *dev) | |||
1042 | return stmmac_sw_tso(priv, skb); | 1050 | return stmmac_sw_tso(priv, skb); |
1043 | 1051 | ||
1044 | if (likely((skb->ip_summed == CHECKSUM_PARTIAL))) { | 1052 | if (likely((skb->ip_summed == CHECKSUM_PARTIAL))) { |
1045 | if (unlikely((!priv->tx_coe) || (priv->no_csum_insertion))) | 1053 | if (unlikely((!priv->plat->tx_coe) || |
1054 | (priv->no_csum_insertion))) | ||
1046 | skb_checksum_help(skb); | 1055 | skb_checksum_help(skb); |
1047 | else | 1056 | else |
1048 | csum_insertion = 1; | 1057 | csum_insertion = 1; |
@@ -1146,7 +1155,7 @@ static inline void stmmac_rx_refill(struct stmmac_priv *priv) | |||
1146 | DMA_FROM_DEVICE); | 1155 | DMA_FROM_DEVICE); |
1147 | 1156 | ||
1148 | (p + entry)->des2 = priv->rx_skbuff_dma[entry]; | 1157 | (p + entry)->des2 = priv->rx_skbuff_dma[entry]; |
1149 | if (unlikely(priv->is_gmac)) { | 1158 | if (unlikely(priv->plat->has_gmac)) { |
1150 | if (bfsize >= BUF_SIZE_8KiB) | 1159 | if (bfsize >= BUF_SIZE_8KiB) |
1151 | (p + entry)->des3 = | 1160 | (p + entry)->des3 = |
1152 | (p + entry)->des2 + BUF_SIZE_8KiB; | 1161 | (p + entry)->des2 + BUF_SIZE_8KiB; |
@@ -1356,7 +1365,7 @@ static int stmmac_change_mtu(struct net_device *dev, int new_mtu) | |||
1356 | return -EBUSY; | 1365 | return -EBUSY; |
1357 | } | 1366 | } |
1358 | 1367 | ||
1359 | if (priv->is_gmac) | 1368 | if (priv->plat->has_gmac) |
1360 | max_mtu = JUMBO_LEN; | 1369 | max_mtu = JUMBO_LEN; |
1361 | else | 1370 | else |
1362 | max_mtu = ETH_DATA_LEN; | 1371 | max_mtu = ETH_DATA_LEN; |
@@ -1370,7 +1379,7 @@ static int stmmac_change_mtu(struct net_device *dev, int new_mtu) | |||
1370 | * needs to have the Tx COE disabled for oversized frames | 1379 | * needs to have the Tx COE disabled for oversized frames |
1371 | * (due to limited buffer sizes). In this case we disable | 1380 | * (due to limited buffer sizes). In this case we disable |
1372 | * the TX csum insertionin the TDES and not use SF. */ | 1381 | * the TX csum insertionin the TDES and not use SF. */ |
1373 | if ((priv->bugged_jumbo) && (priv->dev->mtu > ETH_DATA_LEN)) | 1382 | if ((priv->plat->bugged_jumbo) && (priv->dev->mtu > ETH_DATA_LEN)) |
1374 | priv->no_csum_insertion = 1; | 1383 | priv->no_csum_insertion = 1; |
1375 | else | 1384 | else |
1376 | priv->no_csum_insertion = 0; | 1385 | priv->no_csum_insertion = 0; |
@@ -1390,7 +1399,7 @@ static irqreturn_t stmmac_interrupt(int irq, void *dev_id) | |||
1390 | return IRQ_NONE; | 1399 | return IRQ_NONE; |
1391 | } | 1400 | } |
1392 | 1401 | ||
1393 | if (priv->is_gmac) | 1402 | if (priv->plat->has_gmac) |
1394 | /* To handle GMAC own interrupts */ | 1403 | /* To handle GMAC own interrupts */ |
1395 | priv->hw->mac->host_irq_status((void __iomem *) dev->base_addr); | 1404 | priv->hw->mac->host_irq_status((void __iomem *) dev->base_addr); |
1396 | 1405 | ||
@@ -1536,7 +1545,7 @@ static int stmmac_mac_device_setup(struct net_device *dev) | |||
1536 | 1545 | ||
1537 | struct mac_device_info *device; | 1546 | struct mac_device_info *device; |
1538 | 1547 | ||
1539 | if (priv->is_gmac) | 1548 | if (priv->plat->has_gmac) |
1540 | device = dwmac1000_setup(priv->ioaddr); | 1549 | device = dwmac1000_setup(priv->ioaddr); |
1541 | else | 1550 | else |
1542 | device = dwmac100_setup(priv->ioaddr); | 1551 | device = dwmac100_setup(priv->ioaddr); |
@@ -1544,7 +1553,7 @@ static int stmmac_mac_device_setup(struct net_device *dev) | |||
1544 | if (!device) | 1553 | if (!device) |
1545 | return -ENOMEM; | 1554 | return -ENOMEM; |
1546 | 1555 | ||
1547 | if (priv->enh_desc) { | 1556 | if (priv->plat->enh_desc) { |
1548 | device->desc = &enh_desc_ops; | 1557 | device->desc = &enh_desc_ops; |
1549 | pr_info("\tEnhanced descriptor structure\n"); | 1558 | pr_info("\tEnhanced descriptor structure\n"); |
1550 | } else | 1559 | } else |
@@ -1598,7 +1607,7 @@ static int stmmac_associate_phy(struct device *dev, void *data) | |||
1598 | plat_dat->bus_id); | 1607 | plat_dat->bus_id); |
1599 | 1608 | ||
1600 | /* Check that this phy is for the MAC being initialised */ | 1609 | /* Check that this phy is for the MAC being initialised */ |
1601 | if (priv->bus_id != plat_dat->bus_id) | 1610 | if (priv->plat->bus_id != plat_dat->bus_id) |
1602 | return 0; | 1611 | return 0; |
1603 | 1612 | ||
1604 | /* OK, this PHY is connected to the MAC. | 1613 | /* OK, this PHY is connected to the MAC. |
@@ -1683,13 +1692,9 @@ static int stmmac_dvr_probe(struct platform_device *pdev) | |||
1683 | priv->device = &(pdev->dev); | 1692 | priv->device = &(pdev->dev); |
1684 | priv->dev = ndev; | 1693 | priv->dev = ndev; |
1685 | plat_dat = pdev->dev.platform_data; | 1694 | plat_dat = pdev->dev.platform_data; |
1686 | priv->bus_id = plat_dat->bus_id; | 1695 | |
1687 | priv->pbl = plat_dat->pbl; /* TLI */ | 1696 | priv->plat = plat_dat; |
1688 | priv->mii_clk_csr = plat_dat->clk_csr; | 1697 | |
1689 | priv->tx_coe = plat_dat->tx_coe; | ||
1690 | priv->bugged_jumbo = plat_dat->bugged_jumbo; | ||
1691 | priv->is_gmac = plat_dat->has_gmac; /* GMAC is on board */ | ||
1692 | priv->enh_desc = plat_dat->enh_desc; | ||
1693 | priv->ioaddr = addr; | 1698 | priv->ioaddr = addr; |
1694 | 1699 | ||
1695 | /* PMT module is not integrated in all the MAC devices. */ | 1700 | /* PMT module is not integrated in all the MAC devices. */ |
@@ -1727,16 +1732,12 @@ static int stmmac_dvr_probe(struct platform_device *pdev) | |||
1727 | goto out; | 1732 | goto out; |
1728 | } | 1733 | } |
1729 | 1734 | ||
1730 | priv->fix_mac_speed = plat_dat->fix_mac_speed; | ||
1731 | priv->bus_setup = plat_dat->bus_setup; | ||
1732 | priv->bsp_priv = plat_dat->bsp_priv; | ||
1733 | |||
1734 | pr_info("\t%s - (dev. name: %s - id: %d, IRQ #%d\n" | 1735 | pr_info("\t%s - (dev. name: %s - id: %d, IRQ #%d\n" |
1735 | "\tIO base addr: 0x%p)\n", ndev->name, pdev->name, | 1736 | "\tIO base addr: 0x%p)\n", ndev->name, pdev->name, |
1736 | pdev->id, ndev->irq, addr); | 1737 | pdev->id, ndev->irq, addr); |
1737 | 1738 | ||
1738 | /* MDIO bus Registration */ | 1739 | /* MDIO bus Registration */ |
1739 | pr_debug("\tMDIO bus (id: %d)...", priv->bus_id); | 1740 | pr_debug("\tMDIO bus (id: %d)...", priv->plat->bus_id); |
1740 | ret = stmmac_mdio_register(ndev); | 1741 | ret = stmmac_mdio_register(ndev); |
1741 | if (ret < 0) | 1742 | if (ret < 0) |
1742 | goto out; | 1743 | goto out; |
diff --git a/drivers/net/stmmac/stmmac_mdio.c b/drivers/net/stmmac/stmmac_mdio.c index d7441616357d..234b4068a1fc 100644 --- a/drivers/net/stmmac/stmmac_mdio.c +++ b/drivers/net/stmmac/stmmac_mdio.c | |||
@@ -53,7 +53,7 @@ static int stmmac_mdio_read(struct mii_bus *bus, int phyaddr, int phyreg) | |||
53 | int data; | 53 | int data; |
54 | u16 regValue = (((phyaddr << 11) & (0x0000F800)) | | 54 | u16 regValue = (((phyaddr << 11) & (0x0000F800)) | |
55 | ((phyreg << 6) & (0x000007C0))); | 55 | ((phyreg << 6) & (0x000007C0))); |
56 | regValue |= MII_BUSY | ((priv->mii_clk_csr & 7) << 2); | 56 | regValue |= MII_BUSY | ((priv->plat->clk_csr & 7) << 2); |
57 | 57 | ||
58 | do {} while (((readl(priv->ioaddr + mii_address)) & MII_BUSY) == 1); | 58 | do {} while (((readl(priv->ioaddr + mii_address)) & MII_BUSY) == 1); |
59 | writel(regValue, priv->ioaddr + mii_address); | 59 | writel(regValue, priv->ioaddr + mii_address); |
@@ -85,7 +85,7 @@ static int stmmac_mdio_write(struct mii_bus *bus, int phyaddr, int phyreg, | |||
85 | (((phyaddr << 11) & (0x0000F800)) | ((phyreg << 6) & (0x000007C0))) | 85 | (((phyaddr << 11) & (0x0000F800)) | ((phyreg << 6) & (0x000007C0))) |
86 | | MII_WRITE; | 86 | | MII_WRITE; |
87 | 87 | ||
88 | value |= MII_BUSY | ((priv->mii_clk_csr & 7) << 2); | 88 | value |= MII_BUSY | ((priv->plat->clk_csr & 7) << 2); |
89 | 89 | ||
90 | 90 | ||
91 | /* Wait until any existing MII operation is complete */ | 91 | /* Wait until any existing MII operation is complete */ |
@@ -114,7 +114,7 @@ static int stmmac_mdio_reset(struct mii_bus *bus) | |||
114 | 114 | ||
115 | if (priv->phy_reset) { | 115 | if (priv->phy_reset) { |
116 | pr_debug("stmmac_mdio_reset: calling phy_reset\n"); | 116 | pr_debug("stmmac_mdio_reset: calling phy_reset\n"); |
117 | priv->phy_reset(priv->bsp_priv); | 117 | priv->phy_reset(priv->plat->bsp_priv); |
118 | } | 118 | } |
119 | 119 | ||
120 | /* This is a workaround for problems with the STE101P PHY. | 120 | /* This is a workaround for problems with the STE101P PHY. |
@@ -157,7 +157,7 @@ int stmmac_mdio_register(struct net_device *ndev) | |||
157 | new_bus->read = &stmmac_mdio_read; | 157 | new_bus->read = &stmmac_mdio_read; |
158 | new_bus->write = &stmmac_mdio_write; | 158 | new_bus->write = &stmmac_mdio_write; |
159 | new_bus->reset = &stmmac_mdio_reset; | 159 | new_bus->reset = &stmmac_mdio_reset; |
160 | 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); |
161 | new_bus->priv = ndev; | 161 | new_bus->priv = ndev; |
162 | new_bus->irq = irqlist; | 162 | new_bus->irq = irqlist; |
163 | new_bus->phy_mask = priv->phy_mask; | 163 | new_bus->phy_mask = priv->phy_mask; |