blob: 3c40f6b9922436a32d255aa627e9d94db45f8477 [file] [log] [blame]
Andy Fleming1577ece2009-02-04 16:42:12 -08001/*
2 * Freescale PowerQUICC Ethernet Driver -- MIIM bus implementation
3 * Provides Bus interface for MIIM regs
4 *
5 * Author: Andy Fleming <afleming@freescale.com>
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +00006 * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com>
Andy Fleming1577ece2009-02-04 16:42:12 -08007 *
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +00008 * Copyright 2002-2004, 2008-2009 Freescale Semiconductor, Inc.
Andy Fleming1577ece2009-02-04 16:42:12 -08009 *
10 * Based on gianfar_mii.c and ucc_geth_mii.c (Li Yang, Kim Phillips)
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
16 *
17 */
18
19#include <linux/kernel.h>
20#include <linux/string.h>
21#include <linux/errno.h>
Andy Fleming1577ece2009-02-04 16:42:12 -080022#include <linux/slab.h>
Andy Fleming1577ece2009-02-04 16:42:12 -080023#include <linux/delay.h>
Andy Fleming1577ece2009-02-04 16:42:12 -080024#include <linux/module.h>
Andy Fleming1577ece2009-02-04 16:42:12 -080025#include <linux/mii.h>
Grant Likely22ae7822010-07-29 11:49:01 -060026#include <linux/of_address.h>
Grant Likely324931b2009-04-25 12:53:07 +000027#include <linux/of_mdio.h>
Timur Tabiafae5ad2012-08-29 08:08:01 +000028#include <linux/of_device.h>
Andy Fleming1577ece2009-02-04 16:42:12 -080029
30#include <asm/io.h>
Claudiu Manoil9a4cbd52014-10-07 10:44:28 +030031#if IS_ENABLED(CONFIG_UCC_GETH)
Timur Tabi1aa06d42012-08-29 08:07:58 +000032#include <asm/ucc.h> /* for ucc_set_qe_mux_mii_mng() */
Claudiu Manoil9a4cbd52014-10-07 10:44:28 +030033#endif
Andy Fleming1577ece2009-02-04 16:42:12 -080034
35#include "gianfar.h"
Timur Tabi19bcd6c2012-08-29 08:07:57 +000036
37#define MIIMIND_BUSY 0x00000001
38#define MIIMIND_NOTVALID 0x00000004
39#define MIIMCFG_INIT_VALUE 0x00000007
40#define MIIMCFG_RESET 0x80000000
41
42#define MII_READ_COMMAND 0x00000001
43
Timur Tabiafae5ad2012-08-29 08:08:01 +000044struct fsl_pq_mii {
45 u32 miimcfg; /* MII management configuration reg */
46 u32 miimcom; /* MII management command reg */
47 u32 miimadd; /* MII management address reg */
48 u32 miimcon; /* MII management control reg */
49 u32 miimstat; /* MII management status reg */
50 u32 miimind; /* MII management indication reg */
51};
52
Timur Tabi19bcd6c2012-08-29 08:07:57 +000053struct fsl_pq_mdio {
54 u8 res1[16];
55 u32 ieventm; /* MDIO Interrupt event register (for etsec2)*/
56 u32 imaskm; /* MDIO Interrupt mask register (for etsec2)*/
57 u8 res2[4];
58 u32 emapm; /* MDIO Event mapping register (for etsec2)*/
59 u8 res3[1280];
Timur Tabiafae5ad2012-08-29 08:08:01 +000060 struct fsl_pq_mii mii;
Timur Tabi19bcd6c2012-08-29 08:07:57 +000061 u8 res4[28];
62 u32 utbipar; /* TBI phy address reg (only on UCC) */
63 u8 res5[2728];
64} __packed;
Andy Fleming1577ece2009-02-04 16:42:12 -080065
Timur Tabi59399c52012-07-09 16:57:36 -050066/* Number of microseconds to wait for an MII register to respond */
67#define MII_TIMEOUT 1000
68
Anton Vorontsovb3319b12009-12-30 08:23:34 +000069struct fsl_pq_mdio_priv {
70 void __iomem *map;
Timur Tabiafae5ad2012-08-29 08:08:01 +000071 struct fsl_pq_mii __iomem *regs;
Timur Tabidd3b8a32012-08-29 08:08:02 +000072 int irqs[PHY_MAX_ADDR];
Timur Tabiafae5ad2012-08-29 08:08:01 +000073};
74
75/*
76 * Per-device-type data. Each type of device tree node that we support gets
77 * one of these.
78 *
79 * @mii_offset: the offset of the MII registers within the memory map of the
80 * node. Some nodes define only the MII registers, and some define the whole
81 * MAC (which includes the MII registers).
82 *
83 * @get_tbipa: determines the address of the TBIPA register
84 *
85 * @ucc_configure: a special function for extra QE configuration
86 */
87struct fsl_pq_mdio_data {
88 unsigned int mii_offset; /* offset of the MII registers */
89 uint32_t __iomem * (*get_tbipa)(void __iomem *p);
90 void (*ucc_configure)(phys_addr_t start, phys_addr_t end);
Anton Vorontsovb3319b12009-12-30 08:23:34 +000091};
92
Andy Fleming1577ece2009-02-04 16:42:12 -080093/*
Timur Tabi69cfb412012-08-29 08:07:59 +000094 * Write value to the PHY at mii_id at register regnum, on the bus attached
95 * to the local interface, which may be different from the generic mdio bus
96 * (tied to a single interface), waiting until the write is done before
97 * returning. This is helpful in programming interfaces like the TBI which
98 * control interfaces like onchip SERDES and are always tied to the local
99 * mdio pins, which may not be the same as system mdio bus, used for
Andy Fleming1577ece2009-02-04 16:42:12 -0800100 * controlling the external PHYs, for example.
101 */
Timur Tabi69cfb412012-08-29 08:07:59 +0000102static int fsl_pq_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
103 u16 value)
Andy Fleming1577ece2009-02-04 16:42:12 -0800104{
Timur Tabi69cfb412012-08-29 08:07:59 +0000105 struct fsl_pq_mdio_priv *priv = bus->priv;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000106 struct fsl_pq_mii __iomem *regs = priv->regs;
Claudiu Manoile4b081f2014-10-07 10:44:30 +0300107 unsigned int timeout;
Timur Tabi59399c52012-07-09 16:57:36 -0500108
Andy Fleming1577ece2009-02-04 16:42:12 -0800109 /* Set the PHY address and the register address we want to write */
Claudiu Manoilf5bbd262014-10-07 10:44:29 +0300110 iowrite32be((mii_id << 8) | regnum, &regs->miimadd);
Andy Fleming1577ece2009-02-04 16:42:12 -0800111
112 /* Write out the value we want */
Claudiu Manoilf5bbd262014-10-07 10:44:29 +0300113 iowrite32be(value, &regs->miimcon);
Andy Fleming1577ece2009-02-04 16:42:12 -0800114
115 /* Wait for the transaction to finish */
Claudiu Manoile4b081f2014-10-07 10:44:30 +0300116 timeout = MII_TIMEOUT;
117 while ((ioread32be(&regs->miimind) & MIIMIND_BUSY) && timeout) {
118 cpu_relax();
119 timeout--;
120 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800121
Claudiu Manoile4b081f2014-10-07 10:44:30 +0300122 return timeout ? 0 : -ETIMEDOUT;
Andy Fleming1577ece2009-02-04 16:42:12 -0800123}
124
125/*
Timur Tabi69cfb412012-08-29 08:07:59 +0000126 * Read the bus for PHY at addr mii_id, register regnum, and return the value.
127 * Clears miimcom first.
128 *
129 * All PHY operation done on the bus attached to the local interface, which
130 * may be different from the generic mdio bus. This is helpful in programming
131 * interfaces like the TBI which, in turn, control interfaces like on-chip
132 * SERDES and are always tied to the local mdio pins, which may not be the
Andy Fleming1577ece2009-02-04 16:42:12 -0800133 * same as system mdio bus, used for controlling the external PHYs, for eg.
134 */
Timur Tabi69cfb412012-08-29 08:07:59 +0000135static int fsl_pq_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Andy Fleming1577ece2009-02-04 16:42:12 -0800136{
Timur Tabi69cfb412012-08-29 08:07:59 +0000137 struct fsl_pq_mdio_priv *priv = bus->priv;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000138 struct fsl_pq_mii __iomem *regs = priv->regs;
Claudiu Manoile4b081f2014-10-07 10:44:30 +0300139 unsigned int timeout;
Timur Tabi69cfb412012-08-29 08:07:59 +0000140 u16 value;
Andy Fleming1577ece2009-02-04 16:42:12 -0800141
142 /* Set the PHY address and the register address we want to read */
Claudiu Manoilf5bbd262014-10-07 10:44:29 +0300143 iowrite32be((mii_id << 8) | regnum, &regs->miimadd);
Andy Fleming1577ece2009-02-04 16:42:12 -0800144
145 /* Clear miimcom, and then initiate a read */
Claudiu Manoilf5bbd262014-10-07 10:44:29 +0300146 iowrite32be(0, &regs->miimcom);
147 iowrite32be(MII_READ_COMMAND, &regs->miimcom);
Andy Fleming1577ece2009-02-04 16:42:12 -0800148
Timur Tabi59399c52012-07-09 16:57:36 -0500149 /* Wait for the transaction to finish, normally less than 100us */
Claudiu Manoile4b081f2014-10-07 10:44:30 +0300150 timeout = MII_TIMEOUT;
151 while ((ioread32be(&regs->miimind) &
152 (MIIMIND_NOTVALID | MIIMIND_BUSY)) && timeout) {
153 cpu_relax();
154 timeout--;
155 }
156
157 if (!timeout)
Timur Tabi59399c52012-07-09 16:57:36 -0500158 return -ETIMEDOUT;
Andy Fleming1577ece2009-02-04 16:42:12 -0800159
160 /* Grab the value of the register from miimstat */
Claudiu Manoilf5bbd262014-10-07 10:44:29 +0300161 value = ioread32be(&regs->miimstat);
Andy Fleming1577ece2009-02-04 16:42:12 -0800162
Timur Tabiafae5ad2012-08-29 08:08:01 +0000163 dev_dbg(&bus->dev, "read %04x from address %x/%x\n", value, mii_id, regnum);
Andy Fleming1577ece2009-02-04 16:42:12 -0800164 return value;
165}
166
Andy Fleming1577ece2009-02-04 16:42:12 -0800167/* Reset the MIIM registers, and wait for the bus to free */
168static int fsl_pq_mdio_reset(struct mii_bus *bus)
169{
Timur Tabi69cfb412012-08-29 08:07:59 +0000170 struct fsl_pq_mdio_priv *priv = bus->priv;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000171 struct fsl_pq_mii __iomem *regs = priv->regs;
Claudiu Manoile4b081f2014-10-07 10:44:30 +0300172 unsigned int timeout;
Andy Fleming1577ece2009-02-04 16:42:12 -0800173
174 mutex_lock(&bus->mdio_lock);
175
176 /* Reset the management interface */
Claudiu Manoilf5bbd262014-10-07 10:44:29 +0300177 iowrite32be(MIIMCFG_RESET, &regs->miimcfg);
Andy Fleming1577ece2009-02-04 16:42:12 -0800178
179 /* Setup the MII Mgmt clock speed */
Claudiu Manoilf5bbd262014-10-07 10:44:29 +0300180 iowrite32be(MIIMCFG_INIT_VALUE, &regs->miimcfg);
Andy Fleming1577ece2009-02-04 16:42:12 -0800181
182 /* Wait until the bus is free */
Claudiu Manoile4b081f2014-10-07 10:44:30 +0300183 timeout = MII_TIMEOUT;
184 while ((ioread32be(&regs->miimind) & MIIMIND_BUSY) && timeout) {
185 cpu_relax();
186 timeout--;
187 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800188
189 mutex_unlock(&bus->mdio_lock);
190
Claudiu Manoile4b081f2014-10-07 10:44:30 +0300191 if (!timeout) {
Timur Tabi5078ac72012-08-29 08:08:00 +0000192 dev_err(&bus->dev, "timeout waiting for MII bus\n");
Andy Fleming1577ece2009-02-04 16:42:12 -0800193 return -EBUSY;
194 }
195
196 return 0;
197}
198
Andy Fleming952c5ca2011-11-11 05:10:39 +0000199#if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE)
Timur Tabiafae5ad2012-08-29 08:08:01 +0000200/*
201 * This is mildly evil, but so is our hardware for doing this.
202 * Also, we have to cast back to struct gfar because of
203 * definition weirdness done in gianfar.h.
204 */
205static uint32_t __iomem *get_gfar_tbipa(void __iomem *p)
206{
207 struct gfar __iomem *enet_regs = p;
Andy Fleming1577ece2009-02-04 16:42:12 -0800208
Timur Tabiafae5ad2012-08-29 08:08:01 +0000209 return &enet_regs->tbipa;
Andy Fleming952c5ca2011-11-11 05:10:39 +0000210}
Andy Fleming1577ece2009-02-04 16:42:12 -0800211
Timur Tabiafae5ad2012-08-29 08:08:01 +0000212/*
213 * Return the TBIPAR address for an eTSEC2 node
214 */
215static uint32_t __iomem *get_etsec_tbipa(void __iomem *p)
Andy Fleming1577ece2009-02-04 16:42:12 -0800216{
Timur Tabiafae5ad2012-08-29 08:08:01 +0000217 return p;
218}
219#endif
220
Andy Fleming952c5ca2011-11-11 05:10:39 +0000221#if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE)
Timur Tabiafae5ad2012-08-29 08:08:01 +0000222/*
223 * Return the TBIPAR address for a QE MDIO node
224 */
225static uint32_t __iomem *get_ucc_tbipa(void __iomem *p)
226{
227 struct fsl_pq_mdio __iomem *mdio = p;
228
229 return &mdio->utbipar;
230}
231
232/*
233 * Find the UCC node that controls the given MDIO node
234 *
235 * For some reason, the QE MDIO nodes are not children of the UCC devices
236 * that control them. Therefore, we need to scan all UCC nodes looking for
237 * the one that encompases the given MDIO node. We do this by comparing
238 * physical addresses. The 'start' and 'end' addresses of the MDIO node are
239 * passed, and the correct UCC node will cover the entire address range.
240 *
241 * This assumes that there is only one QE MDIO node in the entire device tree.
242 */
243static void ucc_configure(phys_addr_t start, phys_addr_t end)
244{
245 static bool found_mii_master;
Andy Fleming1577ece2009-02-04 16:42:12 -0800246 struct device_node *np = NULL;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000247
248 if (found_mii_master)
249 return;
Andy Fleming1577ece2009-02-04 16:42:12 -0800250
251 for_each_compatible_node(np, NULL, "ucc_geth") {
Timur Tabiafae5ad2012-08-29 08:08:01 +0000252 struct resource res;
253 const uint32_t *iprop;
254 uint32_t id;
255 int ret;
Andy Fleming1577ece2009-02-04 16:42:12 -0800256
Timur Tabiafae5ad2012-08-29 08:08:01 +0000257 ret = of_address_to_resource(np, 0, &res);
258 if (ret < 0) {
259 pr_debug("fsl-pq-mdio: no address range in node %s\n",
260 np->full_name);
Andy Fleming1577ece2009-02-04 16:42:12 -0800261 continue;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000262 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800263
264 /* if our mdio regs fall within this UCC regs range */
Timur Tabiafae5ad2012-08-29 08:08:01 +0000265 if ((start < res.start) || (end > res.end))
266 continue;
Andy Fleming1577ece2009-02-04 16:42:12 -0800267
Timur Tabiafae5ad2012-08-29 08:08:01 +0000268 iprop = of_get_property(np, "cell-index", NULL);
269 if (!iprop) {
270 iprop = of_get_property(np, "device-id", NULL);
271 if (!iprop) {
272 pr_debug("fsl-pq-mdio: no UCC ID in node %s\n",
273 np->full_name);
274 continue;
Andy Fleming1577ece2009-02-04 16:42:12 -0800275 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800276 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800277
Timur Tabiafae5ad2012-08-29 08:08:01 +0000278 id = be32_to_cpup(iprop);
279
280 /*
281 * cell-index and device-id for QE nodes are
282 * numbered from 1, not 0.
283 */
284 if (ucc_set_qe_mux_mii_mng(id - 1) < 0) {
285 pr_debug("fsl-pq-mdio: invalid UCC ID in node %s\n",
286 np->full_name);
287 continue;
288 }
289
290 pr_debug("fsl-pq-mdio: setting node UCC%u to MII master\n", id);
291 found_mii_master = true;
292 }
Andy Fleming952c5ca2011-11-11 05:10:39 +0000293}
Andy Fleming1577ece2009-02-04 16:42:12 -0800294
Timur Tabiafae5ad2012-08-29 08:08:01 +0000295#endif
296
Fabian Frederick94e5a2a2015-03-17 19:37:34 +0100297static const struct of_device_id fsl_pq_mdio_match[] = {
Timur Tabiafae5ad2012-08-29 08:08:01 +0000298#if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE)
299 {
300 .compatible = "fsl,gianfar-tbi",
301 .data = &(struct fsl_pq_mdio_data) {
302 .mii_offset = 0,
303 .get_tbipa = get_gfar_tbipa,
304 },
305 },
306 {
307 .compatible = "fsl,gianfar-mdio",
308 .data = &(struct fsl_pq_mdio_data) {
309 .mii_offset = 0,
310 .get_tbipa = get_gfar_tbipa,
311 },
312 },
313 {
314 .type = "mdio",
315 .compatible = "gianfar",
316 .data = &(struct fsl_pq_mdio_data) {
317 .mii_offset = offsetof(struct fsl_pq_mdio, mii),
318 .get_tbipa = get_gfar_tbipa,
319 },
320 },
321 {
322 .compatible = "fsl,etsec2-tbi",
323 .data = &(struct fsl_pq_mdio_data) {
324 .mii_offset = offsetof(struct fsl_pq_mdio, mii),
325 .get_tbipa = get_etsec_tbipa,
326 },
327 },
328 {
329 .compatible = "fsl,etsec2-mdio",
330 .data = &(struct fsl_pq_mdio_data) {
331 .mii_offset = offsetof(struct fsl_pq_mdio, mii),
332 .get_tbipa = get_etsec_tbipa,
333 },
334 },
335#endif
336#if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE)
337 {
338 .compatible = "fsl,ucc-mdio",
339 .data = &(struct fsl_pq_mdio_data) {
340 .mii_offset = 0,
341 .get_tbipa = get_ucc_tbipa,
342 .ucc_configure = ucc_configure,
343 },
344 },
345 {
346 /* Legacy UCC MDIO node */
347 .type = "mdio",
348 .compatible = "ucc_geth_phy",
349 .data = &(struct fsl_pq_mdio_data) {
350 .mii_offset = 0,
351 .get_tbipa = get_ucc_tbipa,
352 .ucc_configure = ucc_configure,
353 },
354 },
355#endif
Timur Tabi761743e2012-08-29 08:08:03 +0000356 /* No Kconfig option for Fman support yet */
357 {
358 .compatible = "fsl,fman-mdio",
359 .data = &(struct fsl_pq_mdio_data) {
360 .mii_offset = 0,
361 /* Fman TBI operations are handled elsewhere */
362 },
363 },
364
Timur Tabiafae5ad2012-08-29 08:08:01 +0000365 {},
366};
367MODULE_DEVICE_TABLE(of, fsl_pq_mdio_match);
368
Timur Tabi5078ac72012-08-29 08:08:00 +0000369static int fsl_pq_mdio_probe(struct platform_device *pdev)
Andy Fleming1577ece2009-02-04 16:42:12 -0800370{
Timur Tabiafae5ad2012-08-29 08:08:01 +0000371 const struct of_device_id *id =
372 of_match_device(fsl_pq_mdio_match, &pdev->dev);
373 const struct fsl_pq_mdio_data *data = id->data;
Timur Tabi5078ac72012-08-29 08:08:00 +0000374 struct device_node *np = pdev->dev.of_node;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000375 struct resource res;
Andy Fleming1577ece2009-02-04 16:42:12 -0800376 struct device_node *tbi;
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000377 struct fsl_pq_mdio_priv *priv;
Andy Fleming1577ece2009-02-04 16:42:12 -0800378 struct mii_bus *new_bus;
Anton Vorontsov08d18f32010-05-14 04:27:30 +0000379 int err;
Andy Fleming1577ece2009-02-04 16:42:12 -0800380
Timur Tabiafae5ad2012-08-29 08:08:01 +0000381 dev_dbg(&pdev->dev, "found %s compatible node\n", id->compatible);
382
Timur Tabidd3b8a32012-08-29 08:08:02 +0000383 new_bus = mdiobus_alloc_size(sizeof(*priv));
384 if (!new_bus)
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000385 return -ENOMEM;
386
Timur Tabidd3b8a32012-08-29 08:08:02 +0000387 priv = new_bus->priv;
Andy Fleming1577ece2009-02-04 16:42:12 -0800388 new_bus->name = "Freescale PowerQUICC MII Bus",
Timur Tabi5078ac72012-08-29 08:08:00 +0000389 new_bus->read = &fsl_pq_mdio_read;
390 new_bus->write = &fsl_pq_mdio_write;
391 new_bus->reset = &fsl_pq_mdio_reset;
Timur Tabidd3b8a32012-08-29 08:08:02 +0000392 new_bus->irq = priv->irqs;
Andy Fleming1577ece2009-02-04 16:42:12 -0800393
Timur Tabiafae5ad2012-08-29 08:08:01 +0000394 err = of_address_to_resource(np, 0, &res);
395 if (err < 0) {
396 dev_err(&pdev->dev, "could not obtain address information\n");
Timur Tabidd3b8a32012-08-29 08:08:02 +0000397 goto error;
Anton Vorontsov3b1fd3e2010-04-23 07:12:35 +0000398 }
399
Timur Tabi69cfb412012-08-29 08:07:59 +0000400 snprintf(new_bus->id, MII_BUS_ID_SIZE, "%s@%llx", np->name,
Timur Tabiafae5ad2012-08-29 08:08:01 +0000401 (unsigned long long)res.start);
Timur Tabi69cfb412012-08-29 08:07:59 +0000402
Timur Tabiafae5ad2012-08-29 08:08:01 +0000403 priv->map = of_iomap(np, 0);
404 if (!priv->map) {
Andy Fleming1577ece2009-02-04 16:42:12 -0800405 err = -ENOMEM;
Timur Tabidd3b8a32012-08-29 08:08:02 +0000406 goto error;
Andy Fleming1577ece2009-02-04 16:42:12 -0800407 }
408
Timur Tabiafae5ad2012-08-29 08:08:01 +0000409 /*
410 * Some device tree nodes represent only the MII registers, and
411 * others represent the MAC and MII registers. The 'mii_offset' field
412 * contains the offset of the MII registers inside the mapped register
413 * space.
414 */
415 if (data->mii_offset > resource_size(&res)) {
416 dev_err(&pdev->dev, "invalid register map\n");
417 err = -EINVAL;
Timur Tabidd3b8a32012-08-29 08:08:02 +0000418 goto error;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000419 }
420 priv->regs = priv->map + data->mii_offset;
Andy Fleming1577ece2009-02-04 16:42:12 -0800421
Timur Tabi5078ac72012-08-29 08:08:00 +0000422 new_bus->parent = &pdev->dev;
Libo Chena0e18602013-08-19 19:58:40 +0800423 platform_set_drvdata(pdev, new_bus);
Andy Fleming1577ece2009-02-04 16:42:12 -0800424
Timur Tabiafae5ad2012-08-29 08:08:01 +0000425 if (data->get_tbipa) {
426 for_each_child_of_node(np, tbi) {
427 if (strcmp(tbi->type, "tbi-phy") == 0) {
428 dev_dbg(&pdev->dev, "found TBI PHY node %s\n",
429 strrchr(tbi->full_name, '/') + 1);
430 break;
431 }
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +0000432 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800433
Timur Tabiafae5ad2012-08-29 08:08:01 +0000434 if (tbi) {
435 const u32 *prop = of_get_property(tbi, "reg", NULL);
436 uint32_t __iomem *tbipa;
Andy Fleming1577ece2009-02-04 16:42:12 -0800437
Timur Tabiafae5ad2012-08-29 08:08:01 +0000438 if (!prop) {
439 dev_err(&pdev->dev,
440 "missing 'reg' property in node %s\n",
441 tbi->full_name);
442 err = -EBUSY;
443 goto error;
444 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800445
Timur Tabiafae5ad2012-08-29 08:08:01 +0000446 tbipa = data->get_tbipa(priv->map);
Andy Fleming1577ece2009-02-04 16:42:12 -0800447
Claudiu Manoilf5bbd262014-10-07 10:44:29 +0300448 iowrite32be(be32_to_cpup(prop), tbipa);
Kenth Eriksson464b57d2012-03-27 22:05:54 +0000449 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800450 }
451
Timur Tabiafae5ad2012-08-29 08:08:01 +0000452 if (data->ucc_configure)
453 data->ucc_configure(res.start, res.end);
454
Grant Likely324931b2009-04-25 12:53:07 +0000455 err = of_mdiobus_register(new_bus, np);
Andy Fleming1577ece2009-02-04 16:42:12 -0800456 if (err) {
Timur Tabi5078ac72012-08-29 08:08:00 +0000457 dev_err(&pdev->dev, "cannot register %s as MDIO bus\n",
458 new_bus->name);
Timur Tabidd3b8a32012-08-29 08:08:02 +0000459 goto error;
Andy Fleming1577ece2009-02-04 16:42:12 -0800460 }
461
462 return 0;
463
Timur Tabidd3b8a32012-08-29 08:08:02 +0000464error:
465 if (priv->map)
466 iounmap(priv->map);
467
Andy Fleming1577ece2009-02-04 16:42:12 -0800468 kfree(new_bus);
Timur Tabidd3b8a32012-08-29 08:08:02 +0000469
Andy Fleming1577ece2009-02-04 16:42:12 -0800470 return err;
471}
472
473
Timur Tabi5078ac72012-08-29 08:08:00 +0000474static int fsl_pq_mdio_remove(struct platform_device *pdev)
Andy Fleming1577ece2009-02-04 16:42:12 -0800475{
Timur Tabi5078ac72012-08-29 08:08:00 +0000476 struct device *device = &pdev->dev;
Andy Fleming1577ece2009-02-04 16:42:12 -0800477 struct mii_bus *bus = dev_get_drvdata(device);
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000478 struct fsl_pq_mdio_priv *priv = bus->priv;
Andy Fleming1577ece2009-02-04 16:42:12 -0800479
480 mdiobus_unregister(bus);
481
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000482 iounmap(priv->map);
Andy Fleming1577ece2009-02-04 16:42:12 -0800483 mdiobus_free(bus);
484
485 return 0;
486}
487
Grant Likely74888762011-02-22 21:05:51 -0700488static struct platform_driver fsl_pq_mdio_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700489 .driver = {
490 .name = "fsl-pq_mdio",
Grant Likely40182942010-04-13 16:13:02 -0700491 .of_match_table = fsl_pq_mdio_match,
492 },
Andy Fleming1577ece2009-02-04 16:42:12 -0800493 .probe = fsl_pq_mdio_probe,
494 .remove = fsl_pq_mdio_remove,
Andy Fleming1577ece2009-02-04 16:42:12 -0800495};
496
Axel Lindb62f682011-11-27 16:44:17 +0000497module_platform_driver(fsl_pq_mdio_driver);
Andy Fleming1577ece2009-02-04 16:42:12 -0800498
Sebastian Siewior26062892009-11-06 08:50:28 +0000499MODULE_LICENSE("GPL");