blob: a0b365e43ebf442f97c7d3726d65b9fc78525d44 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Grant Likely92744982009-04-25 12:53:39 +00002/*
3 * MDIO bus driver for the Xilinx TEMAC device
4 *
5 * Copyright (c) 2009 Secret Lab Technologies, Ltd.
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>
Michal Simek9f1a1fc2010-09-01 08:55:23 -060014#include <linux/of_address.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Grant Likely92744982009-04-25 12:53:39 +000016#include <linux/of_mdio.h>
17
18#include "ll_temac.h"
19
20/* ---------------------------------------------------------------------
21 * MDIO Bus functions
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 /* Write the PHY address to the MIIM Access Initiator register.
29 * When the transfer completes, the PHY register value will appear
30 * in the LSW0 register */
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 /* First write the desired value into the write data register
50 * and then write the address into the access initiator register
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
Esben Haabendala63625d2019-04-30 09:17:48 +020060int temac_mdio_setup(struct temac_local *lp, struct platform_device *pdev)
Grant Likely92744982009-04-25 12:53:39 +000061{
Esben Haabendala63625d2019-04-30 09:17:48 +020062 struct device_node *np = dev_of_node(&pdev->dev);
Grant Likely92744982009-04-25 12:53:39 +000063 struct mii_bus *bus;
Tobias Klausere734a422015-09-23 09:20:02 +020064 u32 bus_hz;
Grant Likely92744982009-04-25 12:53:39 +000065 int clk_div;
Tobias Klausere734a422015-09-23 09:20:02 +020066 int rc;
Grant Likely92744982009-04-25 12:53:39 +000067 struct resource res;
68
69 /* Calculate a reasonable divisor for the clock rate */
70 clk_div = 0x3f; /* worst-case default setting */
Tobias Klausere734a422015-09-23 09:20:02 +020071 if (of_property_read_u32(np, "clock-frequency", &bus_hz) == 0) {
72 clk_div = bus_hz / (2500 * 1000 * 2) - 1;
Grant Likely92744982009-04-25 12:53:39 +000073 if (clk_div < 1)
74 clk_div = 1;
75 if (clk_div > 0x3f)
76 clk_div = 0x3f;
77 }
78
79 /* Enable the MDIO bus by asserting the enable bit and writing
80 * in the clock config */
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
Esben Haabendala63625d2019-04-30 09:17:48 +020085 bus = devm_mdiobus_alloc(&pdev->dev);
Grant Likely92744982009-04-25 12:53:39 +000086 if (!bus)
87 return -ENOMEM;
88
89 of_address_to_resource(np, 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;
Grant Likely92744982009-04-25 12:53:39 +000097
98 lp->mii_bus = bus;
99
100 rc = of_mdiobus_register(bus, np);
101 if (rc)
Esben Haabendala63625d2019-04-30 09:17:48 +0200102 return rc;
Grant Likely92744982009-04-25 12:53:39 +0000103
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;
Grant Likely92744982009-04-25 12:53:39 +0000109}
110
111void temac_mdio_teardown(struct temac_local *lp)
112{
113 mdiobus_unregister(lp->mii_bus);
Grant Likely92744982009-04-25 12:53:39 +0000114}