blob: 32136f08515e1d681910d122835a9deaed917eeb [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;
Timur Tabi59399c52012-07-09 16:57:36 -0500107 u32 status;
108
Andy Fleming1577ece2009-02-04 16:42:12 -0800109 /* Set the PHY address and the register address we want to write */
110 out_be32(&regs->miimadd, (mii_id << 8) | regnum);
111
112 /* Write out the value we want */
113 out_be32(&regs->miimcon, value);
114
115 /* Wait for the transaction to finish */
Timur Tabi59399c52012-07-09 16:57:36 -0500116 status = spin_event_timeout(!(in_be32(&regs->miimind) & MIIMIND_BUSY),
117 MII_TIMEOUT, 0);
Andy Fleming1577ece2009-02-04 16:42:12 -0800118
Timur Tabi59399c52012-07-09 16:57:36 -0500119 return status ? 0 : -ETIMEDOUT;
Andy Fleming1577ece2009-02-04 16:42:12 -0800120}
121
122/*
Timur Tabi69cfb412012-08-29 08:07:59 +0000123 * Read the bus for PHY at addr mii_id, register regnum, and return the value.
124 * Clears miimcom first.
125 *
126 * All PHY operation done on the bus attached to the local interface, which
127 * may be different from the generic mdio bus. This is helpful in programming
128 * interfaces like the TBI which, in turn, control interfaces like on-chip
129 * SERDES and are always tied to the local mdio pins, which may not be the
Andy Fleming1577ece2009-02-04 16:42:12 -0800130 * same as system mdio bus, used for controlling the external PHYs, for eg.
131 */
Timur Tabi69cfb412012-08-29 08:07:59 +0000132static int fsl_pq_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Andy Fleming1577ece2009-02-04 16:42:12 -0800133{
Timur Tabi69cfb412012-08-29 08:07:59 +0000134 struct fsl_pq_mdio_priv *priv = bus->priv;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000135 struct fsl_pq_mii __iomem *regs = priv->regs;
Timur Tabi59399c52012-07-09 16:57:36 -0500136 u32 status;
Timur Tabi69cfb412012-08-29 08:07:59 +0000137 u16 value;
Andy Fleming1577ece2009-02-04 16:42:12 -0800138
139 /* Set the PHY address and the register address we want to read */
140 out_be32(&regs->miimadd, (mii_id << 8) | regnum);
141
142 /* Clear miimcom, and then initiate a read */
143 out_be32(&regs->miimcom, 0);
144 out_be32(&regs->miimcom, MII_READ_COMMAND);
145
Timur Tabi59399c52012-07-09 16:57:36 -0500146 /* Wait for the transaction to finish, normally less than 100us */
147 status = spin_event_timeout(!(in_be32(&regs->miimind) &
148 (MIIMIND_NOTVALID | MIIMIND_BUSY)),
149 MII_TIMEOUT, 0);
150 if (!status)
151 return -ETIMEDOUT;
Andy Fleming1577ece2009-02-04 16:42:12 -0800152
153 /* Grab the value of the register from miimstat */
154 value = in_be32(&regs->miimstat);
155
Timur Tabiafae5ad2012-08-29 08:08:01 +0000156 dev_dbg(&bus->dev, "read %04x from address %x/%x\n", value, mii_id, regnum);
Andy Fleming1577ece2009-02-04 16:42:12 -0800157 return value;
158}
159
Andy Fleming1577ece2009-02-04 16:42:12 -0800160/* Reset the MIIM registers, and wait for the bus to free */
161static int fsl_pq_mdio_reset(struct mii_bus *bus)
162{
Timur Tabi69cfb412012-08-29 08:07:59 +0000163 struct fsl_pq_mdio_priv *priv = bus->priv;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000164 struct fsl_pq_mii __iomem *regs = priv->regs;
Timur Tabi59399c52012-07-09 16:57:36 -0500165 u32 status;
Andy Fleming1577ece2009-02-04 16:42:12 -0800166
167 mutex_lock(&bus->mdio_lock);
168
169 /* Reset the management interface */
170 out_be32(&regs->miimcfg, MIIMCFG_RESET);
171
172 /* Setup the MII Mgmt clock speed */
173 out_be32(&regs->miimcfg, MIIMCFG_INIT_VALUE);
174
175 /* Wait until the bus is free */
Timur Tabi59399c52012-07-09 16:57:36 -0500176 status = spin_event_timeout(!(in_be32(&regs->miimind) & MIIMIND_BUSY),
177 MII_TIMEOUT, 0);
Andy Fleming1577ece2009-02-04 16:42:12 -0800178
179 mutex_unlock(&bus->mdio_lock);
180
Timur Tabi59399c52012-07-09 16:57:36 -0500181 if (!status) {
Timur Tabi5078ac72012-08-29 08:08:00 +0000182 dev_err(&bus->dev, "timeout waiting for MII bus\n");
Andy Fleming1577ece2009-02-04 16:42:12 -0800183 return -EBUSY;
184 }
185
186 return 0;
187}
188
Andy Fleming952c5ca2011-11-11 05:10:39 +0000189#if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE)
Timur Tabiafae5ad2012-08-29 08:08:01 +0000190/*
191 * This is mildly evil, but so is our hardware for doing this.
192 * Also, we have to cast back to struct gfar because of
193 * definition weirdness done in gianfar.h.
194 */
195static uint32_t __iomem *get_gfar_tbipa(void __iomem *p)
196{
197 struct gfar __iomem *enet_regs = p;
Andy Fleming1577ece2009-02-04 16:42:12 -0800198
Timur Tabiafae5ad2012-08-29 08:08:01 +0000199 return &enet_regs->tbipa;
Andy Fleming952c5ca2011-11-11 05:10:39 +0000200}
Andy Fleming1577ece2009-02-04 16:42:12 -0800201
Timur Tabiafae5ad2012-08-29 08:08:01 +0000202/*
203 * Return the TBIPAR address for an eTSEC2 node
204 */
205static uint32_t __iomem *get_etsec_tbipa(void __iomem *p)
Andy Fleming1577ece2009-02-04 16:42:12 -0800206{
Timur Tabiafae5ad2012-08-29 08:08:01 +0000207 return p;
208}
209#endif
210
Andy Fleming952c5ca2011-11-11 05:10:39 +0000211#if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE)
Timur Tabiafae5ad2012-08-29 08:08:01 +0000212/*
213 * Return the TBIPAR address for a QE MDIO node
214 */
215static uint32_t __iomem *get_ucc_tbipa(void __iomem *p)
216{
217 struct fsl_pq_mdio __iomem *mdio = p;
218
219 return &mdio->utbipar;
220}
221
222/*
223 * Find the UCC node that controls the given MDIO node
224 *
225 * For some reason, the QE MDIO nodes are not children of the UCC devices
226 * that control them. Therefore, we need to scan all UCC nodes looking for
227 * the one that encompases the given MDIO node. We do this by comparing
228 * physical addresses. The 'start' and 'end' addresses of the MDIO node are
229 * passed, and the correct UCC node will cover the entire address range.
230 *
231 * This assumes that there is only one QE MDIO node in the entire device tree.
232 */
233static void ucc_configure(phys_addr_t start, phys_addr_t end)
234{
235 static bool found_mii_master;
Andy Fleming1577ece2009-02-04 16:42:12 -0800236 struct device_node *np = NULL;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000237
238 if (found_mii_master)
239 return;
Andy Fleming1577ece2009-02-04 16:42:12 -0800240
241 for_each_compatible_node(np, NULL, "ucc_geth") {
Timur Tabiafae5ad2012-08-29 08:08:01 +0000242 struct resource res;
243 const uint32_t *iprop;
244 uint32_t id;
245 int ret;
Andy Fleming1577ece2009-02-04 16:42:12 -0800246
Timur Tabiafae5ad2012-08-29 08:08:01 +0000247 ret = of_address_to_resource(np, 0, &res);
248 if (ret < 0) {
249 pr_debug("fsl-pq-mdio: no address range in node %s\n",
250 np->full_name);
Andy Fleming1577ece2009-02-04 16:42:12 -0800251 continue;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000252 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800253
254 /* if our mdio regs fall within this UCC regs range */
Timur Tabiafae5ad2012-08-29 08:08:01 +0000255 if ((start < res.start) || (end > res.end))
256 continue;
Andy Fleming1577ece2009-02-04 16:42:12 -0800257
Timur Tabiafae5ad2012-08-29 08:08:01 +0000258 iprop = of_get_property(np, "cell-index", NULL);
259 if (!iprop) {
260 iprop = of_get_property(np, "device-id", NULL);
261 if (!iprop) {
262 pr_debug("fsl-pq-mdio: no UCC ID in node %s\n",
263 np->full_name);
264 continue;
Andy Fleming1577ece2009-02-04 16:42:12 -0800265 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800266 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800267
Timur Tabiafae5ad2012-08-29 08:08:01 +0000268 id = be32_to_cpup(iprop);
269
270 /*
271 * cell-index and device-id for QE nodes are
272 * numbered from 1, not 0.
273 */
274 if (ucc_set_qe_mux_mii_mng(id - 1) < 0) {
275 pr_debug("fsl-pq-mdio: invalid UCC ID in node %s\n",
276 np->full_name);
277 continue;
278 }
279
280 pr_debug("fsl-pq-mdio: setting node UCC%u to MII master\n", id);
281 found_mii_master = true;
282 }
Andy Fleming952c5ca2011-11-11 05:10:39 +0000283}
Andy Fleming1577ece2009-02-04 16:42:12 -0800284
Timur Tabiafae5ad2012-08-29 08:08:01 +0000285#endif
286
287static struct of_device_id fsl_pq_mdio_match[] = {
288#if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE)
289 {
290 .compatible = "fsl,gianfar-tbi",
291 .data = &(struct fsl_pq_mdio_data) {
292 .mii_offset = 0,
293 .get_tbipa = get_gfar_tbipa,
294 },
295 },
296 {
297 .compatible = "fsl,gianfar-mdio",
298 .data = &(struct fsl_pq_mdio_data) {
299 .mii_offset = 0,
300 .get_tbipa = get_gfar_tbipa,
301 },
302 },
303 {
304 .type = "mdio",
305 .compatible = "gianfar",
306 .data = &(struct fsl_pq_mdio_data) {
307 .mii_offset = offsetof(struct fsl_pq_mdio, mii),
308 .get_tbipa = get_gfar_tbipa,
309 },
310 },
311 {
312 .compatible = "fsl,etsec2-tbi",
313 .data = &(struct fsl_pq_mdio_data) {
314 .mii_offset = offsetof(struct fsl_pq_mdio, mii),
315 .get_tbipa = get_etsec_tbipa,
316 },
317 },
318 {
319 .compatible = "fsl,etsec2-mdio",
320 .data = &(struct fsl_pq_mdio_data) {
321 .mii_offset = offsetof(struct fsl_pq_mdio, mii),
322 .get_tbipa = get_etsec_tbipa,
323 },
324 },
325#endif
326#if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE)
327 {
328 .compatible = "fsl,ucc-mdio",
329 .data = &(struct fsl_pq_mdio_data) {
330 .mii_offset = 0,
331 .get_tbipa = get_ucc_tbipa,
332 .ucc_configure = ucc_configure,
333 },
334 },
335 {
336 /* Legacy UCC MDIO node */
337 .type = "mdio",
338 .compatible = "ucc_geth_phy",
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#endif
Timur Tabi761743e2012-08-29 08:08:03 +0000346 /* No Kconfig option for Fman support yet */
347 {
348 .compatible = "fsl,fman-mdio",
349 .data = &(struct fsl_pq_mdio_data) {
350 .mii_offset = 0,
351 /* Fman TBI operations are handled elsewhere */
352 },
353 },
354
Timur Tabiafae5ad2012-08-29 08:08:01 +0000355 {},
356};
357MODULE_DEVICE_TABLE(of, fsl_pq_mdio_match);
358
Timur Tabi5078ac72012-08-29 08:08:00 +0000359static int fsl_pq_mdio_probe(struct platform_device *pdev)
Andy Fleming1577ece2009-02-04 16:42:12 -0800360{
Timur Tabiafae5ad2012-08-29 08:08:01 +0000361 const struct of_device_id *id =
362 of_match_device(fsl_pq_mdio_match, &pdev->dev);
363 const struct fsl_pq_mdio_data *data = id->data;
Timur Tabi5078ac72012-08-29 08:08:00 +0000364 struct device_node *np = pdev->dev.of_node;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000365 struct resource res;
Andy Fleming1577ece2009-02-04 16:42:12 -0800366 struct device_node *tbi;
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000367 struct fsl_pq_mdio_priv *priv;
Andy Fleming1577ece2009-02-04 16:42:12 -0800368 struct mii_bus *new_bus;
Anton Vorontsov08d18f32010-05-14 04:27:30 +0000369 int err;
Andy Fleming1577ece2009-02-04 16:42:12 -0800370
Timur Tabiafae5ad2012-08-29 08:08:01 +0000371 dev_dbg(&pdev->dev, "found %s compatible node\n", id->compatible);
372
Timur Tabidd3b8a32012-08-29 08:08:02 +0000373 new_bus = mdiobus_alloc_size(sizeof(*priv));
374 if (!new_bus)
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000375 return -ENOMEM;
376
Timur Tabidd3b8a32012-08-29 08:08:02 +0000377 priv = new_bus->priv;
Andy Fleming1577ece2009-02-04 16:42:12 -0800378 new_bus->name = "Freescale PowerQUICC MII Bus",
Timur Tabi5078ac72012-08-29 08:08:00 +0000379 new_bus->read = &fsl_pq_mdio_read;
380 new_bus->write = &fsl_pq_mdio_write;
381 new_bus->reset = &fsl_pq_mdio_reset;
Timur Tabidd3b8a32012-08-29 08:08:02 +0000382 new_bus->irq = priv->irqs;
Andy Fleming1577ece2009-02-04 16:42:12 -0800383
Timur Tabiafae5ad2012-08-29 08:08:01 +0000384 err = of_address_to_resource(np, 0, &res);
385 if (err < 0) {
386 dev_err(&pdev->dev, "could not obtain address information\n");
Timur Tabidd3b8a32012-08-29 08:08:02 +0000387 goto error;
Anton Vorontsov3b1fd3e2010-04-23 07:12:35 +0000388 }
389
Timur Tabi69cfb412012-08-29 08:07:59 +0000390 snprintf(new_bus->id, MII_BUS_ID_SIZE, "%s@%llx", np->name,
Timur Tabiafae5ad2012-08-29 08:08:01 +0000391 (unsigned long long)res.start);
Timur Tabi69cfb412012-08-29 08:07:59 +0000392
Timur Tabiafae5ad2012-08-29 08:08:01 +0000393 priv->map = of_iomap(np, 0);
394 if (!priv->map) {
Andy Fleming1577ece2009-02-04 16:42:12 -0800395 err = -ENOMEM;
Timur Tabidd3b8a32012-08-29 08:08:02 +0000396 goto error;
Andy Fleming1577ece2009-02-04 16:42:12 -0800397 }
398
Timur Tabiafae5ad2012-08-29 08:08:01 +0000399 /*
400 * Some device tree nodes represent only the MII registers, and
401 * others represent the MAC and MII registers. The 'mii_offset' field
402 * contains the offset of the MII registers inside the mapped register
403 * space.
404 */
405 if (data->mii_offset > resource_size(&res)) {
406 dev_err(&pdev->dev, "invalid register map\n");
407 err = -EINVAL;
Timur Tabidd3b8a32012-08-29 08:08:02 +0000408 goto error;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000409 }
410 priv->regs = priv->map + data->mii_offset;
Andy Fleming1577ece2009-02-04 16:42:12 -0800411
Timur Tabi5078ac72012-08-29 08:08:00 +0000412 new_bus->parent = &pdev->dev;
Libo Chena0e18602013-08-19 19:58:40 +0800413 platform_set_drvdata(pdev, new_bus);
Andy Fleming1577ece2009-02-04 16:42:12 -0800414
Timur Tabiafae5ad2012-08-29 08:08:01 +0000415 if (data->get_tbipa) {
416 for_each_child_of_node(np, tbi) {
417 if (strcmp(tbi->type, "tbi-phy") == 0) {
418 dev_dbg(&pdev->dev, "found TBI PHY node %s\n",
419 strrchr(tbi->full_name, '/') + 1);
420 break;
421 }
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +0000422 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800423
Timur Tabiafae5ad2012-08-29 08:08:01 +0000424 if (tbi) {
425 const u32 *prop = of_get_property(tbi, "reg", NULL);
426 uint32_t __iomem *tbipa;
Andy Fleming1577ece2009-02-04 16:42:12 -0800427
Timur Tabiafae5ad2012-08-29 08:08:01 +0000428 if (!prop) {
429 dev_err(&pdev->dev,
430 "missing 'reg' property in node %s\n",
431 tbi->full_name);
432 err = -EBUSY;
433 goto error;
434 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800435
Timur Tabiafae5ad2012-08-29 08:08:01 +0000436 tbipa = data->get_tbipa(priv->map);
Andy Fleming1577ece2009-02-04 16:42:12 -0800437
Timur Tabiafae5ad2012-08-29 08:08:01 +0000438 out_be32(tbipa, be32_to_cpup(prop));
Kenth Eriksson464b57d2012-03-27 22:05:54 +0000439 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800440 }
441
Timur Tabiafae5ad2012-08-29 08:08:01 +0000442 if (data->ucc_configure)
443 data->ucc_configure(res.start, res.end);
444
Grant Likely324931b2009-04-25 12:53:07 +0000445 err = of_mdiobus_register(new_bus, np);
Andy Fleming1577ece2009-02-04 16:42:12 -0800446 if (err) {
Timur Tabi5078ac72012-08-29 08:08:00 +0000447 dev_err(&pdev->dev, "cannot register %s as MDIO bus\n",
448 new_bus->name);
Timur Tabidd3b8a32012-08-29 08:08:02 +0000449 goto error;
Andy Fleming1577ece2009-02-04 16:42:12 -0800450 }
451
452 return 0;
453
Timur Tabidd3b8a32012-08-29 08:08:02 +0000454error:
455 if (priv->map)
456 iounmap(priv->map);
457
Andy Fleming1577ece2009-02-04 16:42:12 -0800458 kfree(new_bus);
Timur Tabidd3b8a32012-08-29 08:08:02 +0000459
Andy Fleming1577ece2009-02-04 16:42:12 -0800460 return err;
461}
462
463
Timur Tabi5078ac72012-08-29 08:08:00 +0000464static int fsl_pq_mdio_remove(struct platform_device *pdev)
Andy Fleming1577ece2009-02-04 16:42:12 -0800465{
Timur Tabi5078ac72012-08-29 08:08:00 +0000466 struct device *device = &pdev->dev;
Andy Fleming1577ece2009-02-04 16:42:12 -0800467 struct mii_bus *bus = dev_get_drvdata(device);
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000468 struct fsl_pq_mdio_priv *priv = bus->priv;
Andy Fleming1577ece2009-02-04 16:42:12 -0800469
470 mdiobus_unregister(bus);
471
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000472 iounmap(priv->map);
Andy Fleming1577ece2009-02-04 16:42:12 -0800473 mdiobus_free(bus);
474
475 return 0;
476}
477
Grant Likely74888762011-02-22 21:05:51 -0700478static struct platform_driver fsl_pq_mdio_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700479 .driver = {
480 .name = "fsl-pq_mdio",
481 .owner = THIS_MODULE,
482 .of_match_table = fsl_pq_mdio_match,
483 },
Andy Fleming1577ece2009-02-04 16:42:12 -0800484 .probe = fsl_pq_mdio_probe,
485 .remove = fsl_pq_mdio_remove,
Andy Fleming1577ece2009-02-04 16:42:12 -0800486};
487
Axel Lindb62f682011-11-27 16:44:17 +0000488module_platform_driver(fsl_pq_mdio_driver);
Andy Fleming1577ece2009-02-04 16:42:12 -0800489
Sebastian Siewior26062892009-11-06 08:50:28 +0000490MODULE_LICENSE("GPL");