blob: c4f65067cf7c30d94482b400ff86532da5546171 [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/init.h>
24#include <linux/delay.h>
Andy Fleming1577ece2009-02-04 16:42:12 -080025#include <linux/module.h>
Andy Fleming1577ece2009-02-04 16:42:12 -080026#include <linux/mii.h>
Grant Likely22ae7822010-07-29 11:49:01 -060027#include <linux/of_address.h>
Grant Likely324931b2009-04-25 12:53:07 +000028#include <linux/of_mdio.h>
Timur Tabiafae5ad2012-08-29 08:08:01 +000029#include <linux/of_device.h>
Andy Fleming1577ece2009-02-04 16:42:12 -080030
31#include <asm/io.h>
Timur Tabi1aa06d42012-08-29 08:07:58 +000032#include <asm/ucc.h> /* for ucc_set_qe_mux_mii_mng() */
Andy Fleming1577ece2009-02-04 16:42:12 -080033
34#include "gianfar.h"
Timur Tabi19bcd6c2012-08-29 08:07:57 +000035
36#define MIIMIND_BUSY 0x00000001
37#define MIIMIND_NOTVALID 0x00000004
38#define MIIMCFG_INIT_VALUE 0x00000007
39#define MIIMCFG_RESET 0x80000000
40
41#define MII_READ_COMMAND 0x00000001
42
Timur Tabiafae5ad2012-08-29 08:08:01 +000043struct fsl_pq_mii {
44 u32 miimcfg; /* MII management configuration reg */
45 u32 miimcom; /* MII management command reg */
46 u32 miimadd; /* MII management address reg */
47 u32 miimcon; /* MII management control reg */
48 u32 miimstat; /* MII management status reg */
49 u32 miimind; /* MII management indication reg */
50};
51
Timur Tabi19bcd6c2012-08-29 08:07:57 +000052struct fsl_pq_mdio {
53 u8 res1[16];
54 u32 ieventm; /* MDIO Interrupt event register (for etsec2)*/
55 u32 imaskm; /* MDIO Interrupt mask register (for etsec2)*/
56 u8 res2[4];
57 u32 emapm; /* MDIO Event mapping register (for etsec2)*/
58 u8 res3[1280];
Timur Tabiafae5ad2012-08-29 08:08:01 +000059 struct fsl_pq_mii mii;
Timur Tabi19bcd6c2012-08-29 08:07:57 +000060 u8 res4[28];
61 u32 utbipar; /* TBI phy address reg (only on UCC) */
62 u8 res5[2728];
63} __packed;
Andy Fleming1577ece2009-02-04 16:42:12 -080064
Timur Tabi59399c52012-07-09 16:57:36 -050065/* Number of microseconds to wait for an MII register to respond */
66#define MII_TIMEOUT 1000
67
Anton Vorontsovb3319b12009-12-30 08:23:34 +000068struct fsl_pq_mdio_priv {
69 void __iomem *map;
Timur Tabiafae5ad2012-08-29 08:08:01 +000070 struct fsl_pq_mii __iomem *regs;
Timur Tabidd3b8a32012-08-29 08:08:02 +000071 int irqs[PHY_MAX_ADDR];
Timur Tabiafae5ad2012-08-29 08:08:01 +000072};
73
74/*
75 * Per-device-type data. Each type of device tree node that we support gets
76 * one of these.
77 *
78 * @mii_offset: the offset of the MII registers within the memory map of the
79 * node. Some nodes define only the MII registers, and some define the whole
80 * MAC (which includes the MII registers).
81 *
82 * @get_tbipa: determines the address of the TBIPA register
83 *
84 * @ucc_configure: a special function for extra QE configuration
85 */
86struct fsl_pq_mdio_data {
87 unsigned int mii_offset; /* offset of the MII registers */
88 uint32_t __iomem * (*get_tbipa)(void __iomem *p);
89 void (*ucc_configure)(phys_addr_t start, phys_addr_t end);
Anton Vorontsovb3319b12009-12-30 08:23:34 +000090};
91
Andy Fleming1577ece2009-02-04 16:42:12 -080092/*
Timur Tabi69cfb412012-08-29 08:07:59 +000093 * Write value to the PHY at mii_id at register regnum, on the bus attached
94 * to the local interface, which may be different from the generic mdio bus
95 * (tied to a single interface), waiting until the write is done before
96 * returning. This is helpful in programming interfaces like the TBI which
97 * control interfaces like onchip SERDES and are always tied to the local
98 * mdio pins, which may not be the same as system mdio bus, used for
Andy Fleming1577ece2009-02-04 16:42:12 -080099 * controlling the external PHYs, for example.
100 */
Timur Tabi69cfb412012-08-29 08:07:59 +0000101static int fsl_pq_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
102 u16 value)
Andy Fleming1577ece2009-02-04 16:42:12 -0800103{
Timur Tabi69cfb412012-08-29 08:07:59 +0000104 struct fsl_pq_mdio_priv *priv = bus->priv;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000105 struct fsl_pq_mii __iomem *regs = priv->regs;
Timur Tabi59399c52012-07-09 16:57:36 -0500106 u32 status;
107
Andy Fleming1577ece2009-02-04 16:42:12 -0800108 /* Set the PHY address and the register address we want to write */
109 out_be32(&regs->miimadd, (mii_id << 8) | regnum);
110
111 /* Write out the value we want */
112 out_be32(&regs->miimcon, value);
113
114 /* Wait for the transaction to finish */
Timur Tabi59399c52012-07-09 16:57:36 -0500115 status = spin_event_timeout(!(in_be32(&regs->miimind) & MIIMIND_BUSY),
116 MII_TIMEOUT, 0);
Andy Fleming1577ece2009-02-04 16:42:12 -0800117
Timur Tabi59399c52012-07-09 16:57:36 -0500118 return status ? 0 : -ETIMEDOUT;
Andy Fleming1577ece2009-02-04 16:42:12 -0800119}
120
121/*
Timur Tabi69cfb412012-08-29 08:07:59 +0000122 * Read the bus for PHY at addr mii_id, register regnum, and return the value.
123 * Clears miimcom first.
124 *
125 * All PHY operation done on the bus attached to the local interface, which
126 * may be different from the generic mdio bus. This is helpful in programming
127 * interfaces like the TBI which, in turn, control interfaces like on-chip
128 * SERDES and are always tied to the local mdio pins, which may not be the
Andy Fleming1577ece2009-02-04 16:42:12 -0800129 * same as system mdio bus, used for controlling the external PHYs, for eg.
130 */
Timur Tabi69cfb412012-08-29 08:07:59 +0000131static int fsl_pq_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Andy Fleming1577ece2009-02-04 16:42:12 -0800132{
Timur Tabi69cfb412012-08-29 08:07:59 +0000133 struct fsl_pq_mdio_priv *priv = bus->priv;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000134 struct fsl_pq_mii __iomem *regs = priv->regs;
Timur Tabi59399c52012-07-09 16:57:36 -0500135 u32 status;
Timur Tabi69cfb412012-08-29 08:07:59 +0000136 u16 value;
Andy Fleming1577ece2009-02-04 16:42:12 -0800137
138 /* Set the PHY address and the register address we want to read */
139 out_be32(&regs->miimadd, (mii_id << 8) | regnum);
140
141 /* Clear miimcom, and then initiate a read */
142 out_be32(&regs->miimcom, 0);
143 out_be32(&regs->miimcom, MII_READ_COMMAND);
144
Timur Tabi59399c52012-07-09 16:57:36 -0500145 /* Wait for the transaction to finish, normally less than 100us */
146 status = spin_event_timeout(!(in_be32(&regs->miimind) &
147 (MIIMIND_NOTVALID | MIIMIND_BUSY)),
148 MII_TIMEOUT, 0);
149 if (!status)
150 return -ETIMEDOUT;
Andy Fleming1577ece2009-02-04 16:42:12 -0800151
152 /* Grab the value of the register from miimstat */
153 value = in_be32(&regs->miimstat);
154
Timur Tabiafae5ad2012-08-29 08:08:01 +0000155 dev_dbg(&bus->dev, "read %04x from address %x/%x\n", value, mii_id, regnum);
Andy Fleming1577ece2009-02-04 16:42:12 -0800156 return value;
157}
158
Andy Fleming1577ece2009-02-04 16:42:12 -0800159/* Reset the MIIM registers, and wait for the bus to free */
160static int fsl_pq_mdio_reset(struct mii_bus *bus)
161{
Timur Tabi69cfb412012-08-29 08:07:59 +0000162 struct fsl_pq_mdio_priv *priv = bus->priv;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000163 struct fsl_pq_mii __iomem *regs = priv->regs;
Timur Tabi59399c52012-07-09 16:57:36 -0500164 u32 status;
Andy Fleming1577ece2009-02-04 16:42:12 -0800165
166 mutex_lock(&bus->mdio_lock);
167
168 /* Reset the management interface */
169 out_be32(&regs->miimcfg, MIIMCFG_RESET);
170
171 /* Setup the MII Mgmt clock speed */
172 out_be32(&regs->miimcfg, MIIMCFG_INIT_VALUE);
173
174 /* Wait until the bus is free */
Timur Tabi59399c52012-07-09 16:57:36 -0500175 status = spin_event_timeout(!(in_be32(&regs->miimind) & MIIMIND_BUSY),
176 MII_TIMEOUT, 0);
Andy Fleming1577ece2009-02-04 16:42:12 -0800177
178 mutex_unlock(&bus->mdio_lock);
179
Timur Tabi59399c52012-07-09 16:57:36 -0500180 if (!status) {
Timur Tabi5078ac72012-08-29 08:08:00 +0000181 dev_err(&bus->dev, "timeout waiting for MII bus\n");
Andy Fleming1577ece2009-02-04 16:42:12 -0800182 return -EBUSY;
183 }
184
185 return 0;
186}
187
Andy Fleming952c5ca2011-11-11 05:10:39 +0000188#if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE)
Timur Tabiafae5ad2012-08-29 08:08:01 +0000189/*
190 * This is mildly evil, but so is our hardware for doing this.
191 * Also, we have to cast back to struct gfar because of
192 * definition weirdness done in gianfar.h.
193 */
194static uint32_t __iomem *get_gfar_tbipa(void __iomem *p)
195{
196 struct gfar __iomem *enet_regs = p;
Andy Fleming1577ece2009-02-04 16:42:12 -0800197
Timur Tabiafae5ad2012-08-29 08:08:01 +0000198 return &enet_regs->tbipa;
Andy Fleming952c5ca2011-11-11 05:10:39 +0000199}
Andy Fleming1577ece2009-02-04 16:42:12 -0800200
Timur Tabiafae5ad2012-08-29 08:08:01 +0000201/*
202 * Return the TBIPAR address for an eTSEC2 node
203 */
204static uint32_t __iomem *get_etsec_tbipa(void __iomem *p)
Andy Fleming1577ece2009-02-04 16:42:12 -0800205{
Timur Tabiafae5ad2012-08-29 08:08:01 +0000206 return p;
207}
208#endif
209
Andy Fleming952c5ca2011-11-11 05:10:39 +0000210#if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE)
Timur Tabiafae5ad2012-08-29 08:08:01 +0000211/*
212 * Return the TBIPAR address for a QE MDIO node
213 */
214static uint32_t __iomem *get_ucc_tbipa(void __iomem *p)
215{
216 struct fsl_pq_mdio __iomem *mdio = p;
217
218 return &mdio->utbipar;
219}
220
221/*
222 * Find the UCC node that controls the given MDIO node
223 *
224 * For some reason, the QE MDIO nodes are not children of the UCC devices
225 * that control them. Therefore, we need to scan all UCC nodes looking for
226 * the one that encompases the given MDIO node. We do this by comparing
227 * physical addresses. The 'start' and 'end' addresses of the MDIO node are
228 * passed, and the correct UCC node will cover the entire address range.
229 *
230 * This assumes that there is only one QE MDIO node in the entire device tree.
231 */
232static void ucc_configure(phys_addr_t start, phys_addr_t end)
233{
234 static bool found_mii_master;
Andy Fleming1577ece2009-02-04 16:42:12 -0800235 struct device_node *np = NULL;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000236
237 if (found_mii_master)
238 return;
Andy Fleming1577ece2009-02-04 16:42:12 -0800239
240 for_each_compatible_node(np, NULL, "ucc_geth") {
Timur Tabiafae5ad2012-08-29 08:08:01 +0000241 struct resource res;
242 const uint32_t *iprop;
243 uint32_t id;
244 int ret;
Andy Fleming1577ece2009-02-04 16:42:12 -0800245
Timur Tabiafae5ad2012-08-29 08:08:01 +0000246 ret = of_address_to_resource(np, 0, &res);
247 if (ret < 0) {
248 pr_debug("fsl-pq-mdio: no address range in node %s\n",
249 np->full_name);
Andy Fleming1577ece2009-02-04 16:42:12 -0800250 continue;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000251 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800252
253 /* if our mdio regs fall within this UCC regs range */
Timur Tabiafae5ad2012-08-29 08:08:01 +0000254 if ((start < res.start) || (end > res.end))
255 continue;
Andy Fleming1577ece2009-02-04 16:42:12 -0800256
Timur Tabiafae5ad2012-08-29 08:08:01 +0000257 iprop = of_get_property(np, "cell-index", NULL);
258 if (!iprop) {
259 iprop = of_get_property(np, "device-id", NULL);
260 if (!iprop) {
261 pr_debug("fsl-pq-mdio: no UCC ID in node %s\n",
262 np->full_name);
263 continue;
Andy Fleming1577ece2009-02-04 16:42:12 -0800264 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800265 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800266
Timur Tabiafae5ad2012-08-29 08:08:01 +0000267 id = be32_to_cpup(iprop);
268
269 /*
270 * cell-index and device-id for QE nodes are
271 * numbered from 1, not 0.
272 */
273 if (ucc_set_qe_mux_mii_mng(id - 1) < 0) {
274 pr_debug("fsl-pq-mdio: invalid UCC ID in node %s\n",
275 np->full_name);
276 continue;
277 }
278
279 pr_debug("fsl-pq-mdio: setting node UCC%u to MII master\n", id);
280 found_mii_master = true;
281 }
Andy Fleming952c5ca2011-11-11 05:10:39 +0000282}
Andy Fleming1577ece2009-02-04 16:42:12 -0800283
Timur Tabiafae5ad2012-08-29 08:08:01 +0000284#endif
285
286static struct of_device_id fsl_pq_mdio_match[] = {
287#if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE)
288 {
289 .compatible = "fsl,gianfar-tbi",
290 .data = &(struct fsl_pq_mdio_data) {
291 .mii_offset = 0,
292 .get_tbipa = get_gfar_tbipa,
293 },
294 },
295 {
296 .compatible = "fsl,gianfar-mdio",
297 .data = &(struct fsl_pq_mdio_data) {
298 .mii_offset = 0,
299 .get_tbipa = get_gfar_tbipa,
300 },
301 },
302 {
303 .type = "mdio",
304 .compatible = "gianfar",
305 .data = &(struct fsl_pq_mdio_data) {
306 .mii_offset = offsetof(struct fsl_pq_mdio, mii),
307 .get_tbipa = get_gfar_tbipa,
308 },
309 },
310 {
311 .compatible = "fsl,etsec2-tbi",
312 .data = &(struct fsl_pq_mdio_data) {
313 .mii_offset = offsetof(struct fsl_pq_mdio, mii),
314 .get_tbipa = get_etsec_tbipa,
315 },
316 },
317 {
318 .compatible = "fsl,etsec2-mdio",
319 .data = &(struct fsl_pq_mdio_data) {
320 .mii_offset = offsetof(struct fsl_pq_mdio, mii),
321 .get_tbipa = get_etsec_tbipa,
322 },
323 },
324#endif
325#if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE)
326 {
327 .compatible = "fsl,ucc-mdio",
328 .data = &(struct fsl_pq_mdio_data) {
329 .mii_offset = 0,
330 .get_tbipa = get_ucc_tbipa,
331 .ucc_configure = ucc_configure,
332 },
333 },
334 {
335 /* Legacy UCC MDIO node */
336 .type = "mdio",
337 .compatible = "ucc_geth_phy",
338 .data = &(struct fsl_pq_mdio_data) {
339 .mii_offset = 0,
340 .get_tbipa = get_ucc_tbipa,
341 .ucc_configure = ucc_configure,
342 },
343 },
344#endif
Timur Tabi761743e2012-08-29 08:08:03 +0000345 /* No Kconfig option for Fman support yet */
346 {
347 .compatible = "fsl,fman-mdio",
348 .data = &(struct fsl_pq_mdio_data) {
349 .mii_offset = 0,
350 /* Fman TBI operations are handled elsewhere */
351 },
352 },
353
Timur Tabiafae5ad2012-08-29 08:08:01 +0000354 {},
355};
356MODULE_DEVICE_TABLE(of, fsl_pq_mdio_match);
357
Timur Tabi5078ac72012-08-29 08:08:00 +0000358static int fsl_pq_mdio_probe(struct platform_device *pdev)
Andy Fleming1577ece2009-02-04 16:42:12 -0800359{
Timur Tabiafae5ad2012-08-29 08:08:01 +0000360 const struct of_device_id *id =
361 of_match_device(fsl_pq_mdio_match, &pdev->dev);
362 const struct fsl_pq_mdio_data *data = id->data;
Timur Tabi5078ac72012-08-29 08:08:00 +0000363 struct device_node *np = pdev->dev.of_node;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000364 struct resource res;
Andy Fleming1577ece2009-02-04 16:42:12 -0800365 struct device_node *tbi;
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000366 struct fsl_pq_mdio_priv *priv;
Andy Fleming1577ece2009-02-04 16:42:12 -0800367 struct mii_bus *new_bus;
Anton Vorontsov08d18f32010-05-14 04:27:30 +0000368 int err;
Andy Fleming1577ece2009-02-04 16:42:12 -0800369
Timur Tabiafae5ad2012-08-29 08:08:01 +0000370 dev_dbg(&pdev->dev, "found %s compatible node\n", id->compatible);
371
Timur Tabidd3b8a32012-08-29 08:08:02 +0000372 new_bus = mdiobus_alloc_size(sizeof(*priv));
373 if (!new_bus)
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000374 return -ENOMEM;
375
Timur Tabidd3b8a32012-08-29 08:08:02 +0000376 priv = new_bus->priv;
Andy Fleming1577ece2009-02-04 16:42:12 -0800377 new_bus->name = "Freescale PowerQUICC MII Bus",
Timur Tabi5078ac72012-08-29 08:08:00 +0000378 new_bus->read = &fsl_pq_mdio_read;
379 new_bus->write = &fsl_pq_mdio_write;
380 new_bus->reset = &fsl_pq_mdio_reset;
Timur Tabidd3b8a32012-08-29 08:08:02 +0000381 new_bus->irq = priv->irqs;
Andy Fleming1577ece2009-02-04 16:42:12 -0800382
Timur Tabiafae5ad2012-08-29 08:08:01 +0000383 err = of_address_to_resource(np, 0, &res);
384 if (err < 0) {
385 dev_err(&pdev->dev, "could not obtain address information\n");
Timur Tabidd3b8a32012-08-29 08:08:02 +0000386 goto error;
Anton Vorontsov3b1fd3e2010-04-23 07:12:35 +0000387 }
388
Timur Tabi69cfb412012-08-29 08:07:59 +0000389 snprintf(new_bus->id, MII_BUS_ID_SIZE, "%s@%llx", np->name,
Timur Tabiafae5ad2012-08-29 08:08:01 +0000390 (unsigned long long)res.start);
Timur Tabi69cfb412012-08-29 08:07:59 +0000391
Timur Tabiafae5ad2012-08-29 08:08:01 +0000392 priv->map = of_iomap(np, 0);
393 if (!priv->map) {
Andy Fleming1577ece2009-02-04 16:42:12 -0800394 err = -ENOMEM;
Timur Tabidd3b8a32012-08-29 08:08:02 +0000395 goto error;
Andy Fleming1577ece2009-02-04 16:42:12 -0800396 }
397
Timur Tabiafae5ad2012-08-29 08:08:01 +0000398 /*
399 * Some device tree nodes represent only the MII registers, and
400 * others represent the MAC and MII registers. The 'mii_offset' field
401 * contains the offset of the MII registers inside the mapped register
402 * space.
403 */
404 if (data->mii_offset > resource_size(&res)) {
405 dev_err(&pdev->dev, "invalid register map\n");
406 err = -EINVAL;
Timur Tabidd3b8a32012-08-29 08:08:02 +0000407 goto error;
Timur Tabiafae5ad2012-08-29 08:08:01 +0000408 }
409 priv->regs = priv->map + data->mii_offset;
Andy Fleming1577ece2009-02-04 16:42:12 -0800410
Timur Tabi5078ac72012-08-29 08:08:00 +0000411 new_bus->parent = &pdev->dev;
Libo Chena0e18602013-08-19 19:58:40 +0800412 platform_set_drvdata(pdev, new_bus);
Andy Fleming1577ece2009-02-04 16:42:12 -0800413
Timur Tabiafae5ad2012-08-29 08:08:01 +0000414 if (data->get_tbipa) {
415 for_each_child_of_node(np, tbi) {
416 if (strcmp(tbi->type, "tbi-phy") == 0) {
417 dev_dbg(&pdev->dev, "found TBI PHY node %s\n",
418 strrchr(tbi->full_name, '/') + 1);
419 break;
420 }
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +0000421 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800422
Timur Tabiafae5ad2012-08-29 08:08:01 +0000423 if (tbi) {
424 const u32 *prop = of_get_property(tbi, "reg", NULL);
425 uint32_t __iomem *tbipa;
Andy Fleming1577ece2009-02-04 16:42:12 -0800426
Timur Tabiafae5ad2012-08-29 08:08:01 +0000427 if (!prop) {
428 dev_err(&pdev->dev,
429 "missing 'reg' property in node %s\n",
430 tbi->full_name);
431 err = -EBUSY;
432 goto error;
433 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800434
Timur Tabiafae5ad2012-08-29 08:08:01 +0000435 tbipa = data->get_tbipa(priv->map);
Andy Fleming1577ece2009-02-04 16:42:12 -0800436
Timur Tabiafae5ad2012-08-29 08:08:01 +0000437 out_be32(tbipa, be32_to_cpup(prop));
Kenth Eriksson464b57d2012-03-27 22:05:54 +0000438 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800439 }
440
Timur Tabiafae5ad2012-08-29 08:08:01 +0000441 if (data->ucc_configure)
442 data->ucc_configure(res.start, res.end);
443
Grant Likely324931b2009-04-25 12:53:07 +0000444 err = of_mdiobus_register(new_bus, np);
Andy Fleming1577ece2009-02-04 16:42:12 -0800445 if (err) {
Timur Tabi5078ac72012-08-29 08:08:00 +0000446 dev_err(&pdev->dev, "cannot register %s as MDIO bus\n",
447 new_bus->name);
Timur Tabidd3b8a32012-08-29 08:08:02 +0000448 goto error;
Andy Fleming1577ece2009-02-04 16:42:12 -0800449 }
450
451 return 0;
452
Timur Tabidd3b8a32012-08-29 08:08:02 +0000453error:
454 if (priv->map)
455 iounmap(priv->map);
456
Andy Fleming1577ece2009-02-04 16:42:12 -0800457 kfree(new_bus);
Timur Tabidd3b8a32012-08-29 08:08:02 +0000458
Andy Fleming1577ece2009-02-04 16:42:12 -0800459 return err;
460}
461
462
Timur Tabi5078ac72012-08-29 08:08:00 +0000463static int fsl_pq_mdio_remove(struct platform_device *pdev)
Andy Fleming1577ece2009-02-04 16:42:12 -0800464{
Timur Tabi5078ac72012-08-29 08:08:00 +0000465 struct device *device = &pdev->dev;
Andy Fleming1577ece2009-02-04 16:42:12 -0800466 struct mii_bus *bus = dev_get_drvdata(device);
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000467 struct fsl_pq_mdio_priv *priv = bus->priv;
Andy Fleming1577ece2009-02-04 16:42:12 -0800468
469 mdiobus_unregister(bus);
470
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000471 iounmap(priv->map);
Andy Fleming1577ece2009-02-04 16:42:12 -0800472 mdiobus_free(bus);
473
474 return 0;
475}
476
Grant Likely74888762011-02-22 21:05:51 -0700477static struct platform_driver fsl_pq_mdio_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700478 .driver = {
479 .name = "fsl-pq_mdio",
480 .owner = THIS_MODULE,
481 .of_match_table = fsl_pq_mdio_match,
482 },
Andy Fleming1577ece2009-02-04 16:42:12 -0800483 .probe = fsl_pq_mdio_probe,
484 .remove = fsl_pq_mdio_remove,
Andy Fleming1577ece2009-02-04 16:42:12 -0800485};
486
Axel Lindb62f682011-11-27 16:44:17 +0000487module_platform_driver(fsl_pq_mdio_driver);
Andy Fleming1577ece2009-02-04 16:42:12 -0800488
Sebastian Siewior26062892009-11-06 08:50:28 +0000489MODULE_LICENSE("GPL");