ll_temac_mdio.c 3.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4 5 6 7 8 9 10 11 12 13
/*
 * MDIO bus driver for the Xilinx TEMAC device
 *
 * Copyright (c) 2009 Secret Lab Technologies, Ltd.
 */

#include <linux/io.h>
#include <linux/netdevice.h>
#include <linux/mutex.h>
#include <linux/phy.h>
#include <linux/of.h>
#include <linux/of_device.h>
14
#include <linux/of_address.h>
15
#include <linux/slab.h>
16
#include <linux/of_mdio.h>
17
#include <linux/platform_data/xilinx-ll-temac.h>
18 19 20 21 22 23 24 25 26 27 28 29 30 31

#include "ll_temac.h"

/* ---------------------------------------------------------------------
 * MDIO Bus functions
 */
static int temac_mdio_read(struct mii_bus *bus, int phy_id, int reg)
{
	struct temac_local *lp = bus->priv;
	u32 rc;

	/* Write the PHY address to the MIIM Access Initiator register.
	 * When the transfer completes, the PHY register value will appear
	 * in the LSW0 register */
32
	mutex_lock(lp->indirect_mutex);
33 34
	temac_iow(lp, XTE_LSW0_OFFSET, (phy_id << 5) | reg);
	rc = temac_indirect_in32(lp, XTE_MIIMAI_OFFSET);
35
	mutex_unlock(lp->indirect_mutex);
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52

	dev_dbg(lp->dev, "temac_mdio_read(phy_id=%i, reg=%x) == %x\n",
		phy_id, reg, rc);

	return rc;
}

static int temac_mdio_write(struct mii_bus *bus, int phy_id, int reg, u16 val)
{
	struct temac_local *lp = bus->priv;

	dev_dbg(lp->dev, "temac_mdio_write(phy_id=%i, reg=%x, val=%x)\n",
		phy_id, reg, val);

	/* First write the desired value into the write data register
	 * and then write the address into the access initiator register
	 */
53
	mutex_lock(lp->indirect_mutex);
54 55
	temac_indirect_out32(lp, XTE_MGTDR_OFFSET, val);
	temac_indirect_out32(lp, XTE_MIIMAI_OFFSET, (phy_id << 5) | reg);
56
	mutex_unlock(lp->indirect_mutex);
57 58 59 60

	return 0;
}

61
int temac_mdio_setup(struct temac_local *lp, struct platform_device *pdev)
62
{
63
	struct ll_temac_platform_data *pdata = dev_get_platdata(&pdev->dev);
64
	struct device_node *np = dev_of_node(&pdev->dev);
65
	struct mii_bus *bus;
66
	u32 bus_hz;
67
	int clk_div;
68
	int rc;
69 70
	struct resource res;

71 72 73 74 75 76 77
	/* Get MDIO bus frequency (if specified) */
	bus_hz = 0;
	if (np)
		of_property_read_u32(np, "clock-frequency", &bus_hz);
	else if (pdata)
		bus_hz = pdata->mdio_clk_freq;

78 79
	/* Calculate a reasonable divisor for the clock rate */
	clk_div = 0x3f; /* worst-case default setting */
80
	if (bus_hz != 0) {
81
		clk_div = bus_hz / (2500 * 1000 * 2) - 1;
82 83 84 85 86 87 88 89
		if (clk_div < 1)
			clk_div = 1;
		if (clk_div > 0x3f)
			clk_div = 0x3f;
	}

	/* Enable the MDIO bus by asserting the enable bit and writing
	 * in the clock config */
90
	mutex_lock(lp->indirect_mutex);
91
	temac_indirect_out32(lp, XTE_MC_OFFSET, 1 << 6 | clk_div);
92
	mutex_unlock(lp->indirect_mutex);
93

94
	bus = devm_mdiobus_alloc(&pdev->dev);
95 96 97
	if (!bus)
		return -ENOMEM;

98 99 100 101 102 103 104 105 106
	if (np) {
		of_address_to_resource(np, 0, &res);
		snprintf(bus->id, MII_BUS_ID_SIZE, "%.8llx",
			 (unsigned long long)res.start);
	} else if (pdata && pdata->mdio_bus_id >= 0) {
		snprintf(bus->id, MII_BUS_ID_SIZE, "%.8llx",
			 pdata->mdio_bus_id);
	}

107 108 109 110 111 112 113 114 115 116
	bus->priv = lp;
	bus->name = "Xilinx TEMAC MDIO";
	bus->read = temac_mdio_read;
	bus->write = temac_mdio_write;
	bus->parent = lp->dev;

	lp->mii_bus = bus;

	rc = of_mdiobus_register(bus, np);
	if (rc)
117
		return rc;
118

119
	mutex_lock(lp->indirect_mutex);
120 121
	dev_dbg(lp->dev, "MDIO bus registered;  MC:%x\n",
		temac_indirect_in32(lp, XTE_MC_OFFSET));
122
	mutex_unlock(lp->indirect_mutex);
123 124 125 126 127 128 129
	return 0;
}

void temac_mdio_teardown(struct temac_local *lp)
{
	mdiobus_unregister(lp->mii_bus);
}