hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/net/ethernet/xilinx/ll_temac_mdio.c
....@@ -14,6 +14,7 @@
1414 #include <linux/of_address.h>
1515 #include <linux/slab.h>
1616 #include <linux/of_mdio.h>
17
+#include <linux/platform_data/xilinx-ll-temac.h>
1718
1819 #include "ll_temac.h"
1920
....@@ -24,14 +25,15 @@
2425 {
2526 struct temac_local *lp = bus->priv;
2627 u32 rc;
28
+ unsigned long flags;
2729
2830 /* Write the PHY address to the MIIM Access Initiator register.
2931 * When the transfer completes, the PHY register value will appear
3032 * in the LSW0 register */
31
- mutex_lock(&lp->indirect_mutex);
33
+ spin_lock_irqsave(lp->indirect_lock, flags);
3234 temac_iow(lp, XTE_LSW0_OFFSET, (phy_id << 5) | reg);
33
- rc = temac_indirect_in32(lp, XTE_MIIMAI_OFFSET);
34
- mutex_unlock(&lp->indirect_mutex);
35
+ rc = temac_indirect_in32_locked(lp, XTE_MIIMAI_OFFSET);
36
+ spin_unlock_irqrestore(lp->indirect_lock, flags);
3537
3638 dev_dbg(lp->dev, "temac_mdio_read(phy_id=%i, reg=%x) == %x\n",
3739 phy_id, reg, rc);
....@@ -42,6 +44,7 @@
4244 static int temac_mdio_write(struct mii_bus *bus, int phy_id, int reg, u16 val)
4345 {
4446 struct temac_local *lp = bus->priv;
47
+ unsigned long flags;
4548
4649 dev_dbg(lp->dev, "temac_mdio_write(phy_id=%i, reg=%x, val=%x)\n",
4750 phy_id, reg, val);
....@@ -49,25 +52,34 @@
4952 /* First write the desired value into the write data register
5053 * and then write the address into the access initiator register
5154 */
52
- mutex_lock(&lp->indirect_mutex);
53
- temac_indirect_out32(lp, XTE_MGTDR_OFFSET, val);
54
- temac_indirect_out32(lp, XTE_MIIMAI_OFFSET, (phy_id << 5) | reg);
55
- mutex_unlock(&lp->indirect_mutex);
55
+ spin_lock_irqsave(lp->indirect_lock, flags);
56
+ temac_indirect_out32_locked(lp, XTE_MGTDR_OFFSET, val);
57
+ temac_indirect_out32_locked(lp, XTE_MIIMAI_OFFSET, (phy_id << 5) | reg);
58
+ spin_unlock_irqrestore(lp->indirect_lock, flags);
5659
5760 return 0;
5861 }
5962
60
-int temac_mdio_setup(struct temac_local *lp, struct device_node *np)
63
+int temac_mdio_setup(struct temac_local *lp, struct platform_device *pdev)
6164 {
65
+ struct ll_temac_platform_data *pdata = dev_get_platdata(&pdev->dev);
66
+ struct device_node *np = dev_of_node(&pdev->dev);
6267 struct mii_bus *bus;
6368 u32 bus_hz;
6469 int clk_div;
6570 int rc;
6671 struct resource res;
6772
73
+ /* Get MDIO bus frequency (if specified) */
74
+ bus_hz = 0;
75
+ if (np)
76
+ of_property_read_u32(np, "clock-frequency", &bus_hz);
77
+ else if (pdata)
78
+ bus_hz = pdata->mdio_clk_freq;
79
+
6880 /* Calculate a reasonable divisor for the clock rate */
6981 clk_div = 0x3f; /* worst-case default setting */
70
- if (of_property_read_u32(np, "clock-frequency", &bus_hz) == 0) {
82
+ if (bus_hz != 0) {
7183 clk_div = bus_hz / (2500 * 1000 * 2) - 1;
7284 if (clk_div < 1)
7385 clk_div = 1;
....@@ -77,17 +89,21 @@
7789
7890 /* Enable the MDIO bus by asserting the enable bit and writing
7991 * in the clock config */
80
- mutex_lock(&lp->indirect_mutex);
8192 temac_indirect_out32(lp, XTE_MC_OFFSET, 1 << 6 | clk_div);
82
- mutex_unlock(&lp->indirect_mutex);
8393
84
- bus = mdiobus_alloc();
94
+ bus = devm_mdiobus_alloc(&pdev->dev);
8595 if (!bus)
8696 return -ENOMEM;
8797
88
- of_address_to_resource(np, 0, &res);
89
- snprintf(bus->id, MII_BUS_ID_SIZE, "%.8llx",
90
- (unsigned long long)res.start);
98
+ if (np) {
99
+ of_address_to_resource(np, 0, &res);
100
+ snprintf(bus->id, MII_BUS_ID_SIZE, "%.8llx",
101
+ (unsigned long long)res.start);
102
+ } else if (pdata) {
103
+ snprintf(bus->id, MII_BUS_ID_SIZE, "%.8llx",
104
+ pdata->mdio_bus_id);
105
+ }
106
+
91107 bus->priv = lp;
92108 bus->name = "Xilinx TEMAC MDIO";
93109 bus->read = temac_mdio_read;
....@@ -98,23 +114,14 @@
98114
99115 rc = of_mdiobus_register(bus, np);
100116 if (rc)
101
- goto err_register;
117
+ return rc;
102118
103
- mutex_lock(&lp->indirect_mutex);
104119 dev_dbg(lp->dev, "MDIO bus registered; MC:%x\n",
105120 temac_indirect_in32(lp, XTE_MC_OFFSET));
106
- mutex_unlock(&lp->indirect_mutex);
107121 return 0;
108
-
109
- err_register:
110
- mdiobus_free(bus);
111
- return rc;
112122 }
113123
114124 void temac_mdio_teardown(struct temac_local *lp)
115125 {
116126 mdiobus_unregister(lp->mii_bus);
117
- mdiobus_free(lp->mii_bus);
118
- lp->mii_bus = NULL;
119127 }
120
-