1
2
3
4
5
6
7
8#include <linux/io.h>
9#include <linux/netdevice.h>
10#include <linux/mutex.h>
11#include <linux/phy.h>
12#include <linux/of.h>
13#include <linux/of_device.h>
14#include <linux/of_address.h>
15#include <linux/slab.h>
16#include <linux/of_mdio.h>
17
18#include "ll_temac.h"
19
20
21
22
23static int temac_mdio_read(struct mii_bus *bus, int phy_id, int reg)
24{
25 struct temac_local *lp = bus->priv;
26 u32 rc;
27
28
29
30
31 mutex_lock(&lp->indirect_mutex);
32 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
36 dev_dbg(lp->dev, "temac_mdio_read(phy_id=%i, reg=%x) == %x\n",
37 phy_id, reg, rc);
38
39 return rc;
40}
41
42static int temac_mdio_write(struct mii_bus *bus, int phy_id, int reg, u16 val)
43{
44 struct temac_local *lp = bus->priv;
45
46 dev_dbg(lp->dev, "temac_mdio_write(phy_id=%i, reg=%x, val=%x)\n",
47 phy_id, reg, val);
48
49
50
51
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);
56
57 return 0;
58}
59
60int temac_mdio_setup(struct temac_local *lp, struct device_node *np)
61{
62 struct mii_bus *bus;
63 u32 bus_hz;
64 int clk_div;
65 int rc;
66 struct resource res;
67 struct device_node *np1 = of_get_parent(lp->phy_node);
68
69
70 clk_div = 0x3f;
71 if (of_property_read_u32(np, "clock-frequency", &bus_hz) == 0) {
72 clk_div = bus_hz / (2500 * 1000 * 2) - 1;
73 if (clk_div < 1)
74 clk_div = 1;
75 if (clk_div > 0x3f)
76 clk_div = 0x3f;
77 }
78
79
80
81 mutex_lock(&lp->indirect_mutex);
82 temac_indirect_out32(lp, XTE_MC_OFFSET, 1 << 6 | clk_div);
83 mutex_unlock(&lp->indirect_mutex);
84
85 bus = mdiobus_alloc();
86 if (!bus)
87 return -ENOMEM;
88
89 of_address_to_resource(np1, 0, &res);
90 snprintf(bus->id, MII_BUS_ID_SIZE, "%.8llx",
91 (unsigned long long)res.start);
92 bus->priv = lp;
93 bus->name = "Xilinx TEMAC MDIO";
94 bus->read = temac_mdio_read;
95 bus->write = temac_mdio_write;
96 bus->parent = lp->dev;
97
98 lp->mii_bus = bus;
99
100 rc = of_mdiobus_register(bus, np1);
101 if (rc)
102 goto err_register;
103
104 mutex_lock(&lp->indirect_mutex);
105 dev_dbg(lp->dev, "MDIO bus registered; MC:%x\n",
106 temac_indirect_in32(lp, XTE_MC_OFFSET));
107 mutex_unlock(&lp->indirect_mutex);
108 return 0;
109
110 err_register:
111 mdiobus_free(bus);
112 return rc;
113}
114
115void temac_mdio_teardown(struct temac_local *lp)
116{
117 mdiobus_unregister(lp->mii_bus);
118 mdiobus_free(lp->mii_bus);
119 lp->mii_bus = NULL;
120}
121
122