1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2009-2010, 2013 Freescale Semiconductor, Inc.
4 * Jun-jie Zhang <b18070@freescale.com>
5 * Mingkai Hu <Mingkai.hu@freescale.com>
13 #include <linux/errno.h>
17 struct tsec_mdio_priv {
18 struct tsec_mii_mng __iomem *regs;
22 void tsec_local_mdio_write(struct tsec_mii_mng __iomem *phyregs, int port_addr,
23 int dev_addr, int regnum, int value)
25 int timeout = 1000000;
27 out_be32(&phyregs->miimadd, (port_addr << 8) | (regnum & 0x1f));
28 out_be32(&phyregs->miimcon, value);
32 while ((in_be32(&phyregs->miimind) & MIIMIND_BUSY) && timeout--)
36 int tsec_local_mdio_read(struct tsec_mii_mng __iomem *phyregs, int port_addr,
37 int dev_addr, int regnum)
40 int timeout = 1000000;
42 /* Put the address of the phy, and the register number into MIIMADD */
43 out_be32(&phyregs->miimadd, (port_addr << 8) | (regnum & 0x1f));
45 /* Clear the command register, and wait */
46 out_be32(&phyregs->miimcom, 0);
50 /* Initiate a read command, and wait */
51 out_be32(&phyregs->miimcom, MIIMCOM_READ_CYCLE);
55 /* Wait for the the indication that the read is done */
56 while ((in_be32(&phyregs->miimind) & (MIIMIND_NOTVALID | MIIMIND_BUSY))
60 /* Grab the value read from the PHY */
61 value = in_be32(&phyregs->miimstat);
66 #if defined(CONFIG_PHYLIB)
67 static int fsl_pq_mdio_reset(struct mii_dev *bus)
69 struct tsec_mii_mng __iomem *regs;
70 #ifndef CONFIG_DM_MDIO
71 regs = (struct tsec_mii_mng __iomem *)bus->priv;
73 struct tsec_mdio_priv *priv;
78 priv = dev_get_priv(bus->priv);
82 /* Reset MII (due to new addresses) */
83 out_be32(®s->miimcfg, MIIMCFG_RESET_MGMT);
85 out_be32(®s->miimcfg, MIIMCFG_INIT_VALUE);
87 while (in_be32(®s->miimind) & MIIMIND_BUSY)
94 int tsec_phy_read(struct mii_dev *bus, int addr, int dev_addr, int regnum)
96 struct tsec_mii_mng __iomem *phyregs;
97 #ifndef CONFIG_DM_MDIO
98 phyregs = (struct tsec_mii_mng __iomem *)bus->priv;
100 struct tsec_mdio_priv *priv;
105 priv = dev_get_priv(bus->priv);
106 phyregs = priv->regs;
109 return tsec_local_mdio_read(phyregs, addr, dev_addr, regnum);
112 int tsec_phy_write(struct mii_dev *bus, int addr, int dev_addr, int regnum,
115 struct tsec_mii_mng __iomem *phyregs;
116 #ifndef CONFIG_DM_MDIO
117 phyregs = (struct tsec_mii_mng __iomem *)bus->priv;
119 struct tsec_mdio_priv *priv;
124 priv = dev_get_priv(bus->priv);
125 phyregs = priv->regs;
128 tsec_local_mdio_write(phyregs, addr, dev_addr, regnum, value);
133 #ifndef CONFIG_DM_MDIO
134 int fsl_pq_mdio_init(struct bd_info *bis, struct fsl_pq_mdio_info *info)
136 struct mii_dev *bus = mdio_alloc();
139 printf("Failed to allocate FSL MDIO bus\n");
143 bus->read = tsec_phy_read;
144 bus->write = tsec_phy_write;
145 bus->reset = fsl_pq_mdio_reset;
146 strcpy(bus->name, info->name);
148 bus->priv = (void *)info->regs;
150 return mdio_register(bus);
152 #else /* CONFIG_DM_MDIO */
153 #if defined(CONFIG_PHYLIB)
154 static int tsec_mdio_read(struct udevice *dev, int addr, int devad, int reg)
156 struct mdio_perdev_priv *pdata = (dev) ? dev_get_uclass_priv(dev) :
159 if (pdata && pdata->mii_bus)
160 return tsec_phy_read(pdata->mii_bus, addr, devad, reg);
165 static int tsec_mdio_write(struct udevice *dev, int addr, int devad, int reg,
168 struct mdio_perdev_priv *pdata = (dev) ? dev_get_uclass_priv(dev) :
171 if (pdata && pdata->mii_bus)
172 return tsec_phy_write(pdata->mii_bus, addr, devad, reg, val);
177 static int tsec_mdio_reset(struct udevice *dev)
179 struct mdio_perdev_priv *pdata = (dev) ? dev_get_uclass_priv(dev) :
182 if (pdata && pdata->mii_bus)
183 return fsl_pq_mdio_reset(pdata->mii_bus);
188 static const struct mdio_ops tsec_mdio_ops = {
189 .read = tsec_mdio_read,
190 .write = tsec_mdio_write,
191 .reset = tsec_mdio_reset,
194 static struct fsl_pq_mdio_data etsec2_data = {
195 .mdio_regs_off = TSEC_MDIO_REGS_OFFSET,
198 static struct fsl_pq_mdio_data gianfar_data = {
199 .mdio_regs_off = 0x0,
202 static struct fsl_pq_mdio_data fman_data = {
203 .mdio_regs_off = 0x0,
206 static const struct udevice_id tsec_mdio_ids[] = {
207 { .compatible = "fsl,gianfar-tbi", .data = (ulong)&gianfar_data },
208 { .compatible = "fsl,gianfar-mdio", .data = (ulong)&gianfar_data },
209 { .compatible = "fsl,etsec2-tbi", .data = (ulong)&etsec2_data },
210 { .compatible = "fsl,etsec2-mdio", .data = (ulong)&etsec2_data },
211 { .compatible = "fsl,fman-mdio", .data = (ulong)&fman_data },
215 static int tsec_mdio_probe(struct udevice *dev)
217 struct fsl_pq_mdio_data *data;
218 struct tsec_mdio_priv *priv = (dev) ? dev_get_priv(dev) : NULL;
219 struct mdio_perdev_priv *pdata = (dev) ? dev_get_uclass_priv(dev) :
223 printf("%s dev = NULL\n", __func__);
227 printf("dev_get_priv(dev %p) = NULL\n", dev);
231 data = (struct fsl_pq_mdio_data *)dev_get_driver_data(dev);
232 priv->regs = dev_remap_addr(dev) + data->mdio_regs_off;
233 debug("%s priv %p @ regs %p, pdata %p\n", __func__,
234 priv, priv->regs, pdata);
239 static int tsec_mdio_remove(struct udevice *dev)
244 U_BOOT_DRIVER(tsec_mdio) = {
247 .of_match = tsec_mdio_ids,
248 .probe = tsec_mdio_probe,
249 .remove = tsec_mdio_remove,
250 .ops = &tsec_mdio_ops,
251 .priv_auto = sizeof(struct tsec_mdio_priv),
252 .plat_auto = sizeof(struct mdio_perdev_priv),
254 #endif /* CONFIG_PHYLIB */
255 #endif /* CONFIG_DM_MDIO */