2 * Freescale PowerQUICC Ethernet Driver -- MIIM bus implementation
3 * Provides Bus interface for MIIM regs
5 * Author: Andy Fleming <afleming@freescale.com>
6 * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com>
8 * Copyright 2002-2004, 2008-2009 Freescale Semiconductor, Inc.
10 * Based on gianfar_mii.c and ucc_geth_mii.c (Li Yang, Kim Phillips)
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.
19 #include <linux/kernel.h>
20 #include <linux/string.h>
21 #include <linux/errno.h>
22 #include <linux/slab.h>
23 #include <linux/delay.h>
24 #include <linux/module.h>
25 #include <linux/mii.h>
26 #include <linux/of_address.h>
27 #include <linux/of_mdio.h>
28 #include <linux/of_device.h>
31 #include <asm/ucc.h> /* for ucc_set_qe_mux_mii_mng() */
35 #define MIIMIND_BUSY 0x00000001
36 #define MIIMIND_NOTVALID 0x00000004
37 #define MIIMCFG_INIT_VALUE 0x00000007
38 #define MIIMCFG_RESET 0x80000000
40 #define MII_READ_COMMAND 0x00000001
43 u32 miimcfg
; /* MII management configuration reg */
44 u32 miimcom
; /* MII management command reg */
45 u32 miimadd
; /* MII management address reg */
46 u32 miimcon
; /* MII management control reg */
47 u32 miimstat
; /* MII management status reg */
48 u32 miimind
; /* MII management indication reg */
53 u32 ieventm
; /* MDIO Interrupt event register (for etsec2)*/
54 u32 imaskm
; /* MDIO Interrupt mask register (for etsec2)*/
56 u32 emapm
; /* MDIO Event mapping register (for etsec2)*/
58 struct fsl_pq_mii mii
;
60 u32 utbipar
; /* TBI phy address reg (only on UCC) */
64 /* Number of microseconds to wait for an MII register to respond */
65 #define MII_TIMEOUT 1000
67 struct fsl_pq_mdio_priv
{
69 struct fsl_pq_mii __iomem
*regs
;
70 int irqs
[PHY_MAX_ADDR
];
74 * Per-device-type data. Each type of device tree node that we support gets
77 * @mii_offset: the offset of the MII registers within the memory map of the
78 * node. Some nodes define only the MII registers, and some define the whole
79 * MAC (which includes the MII registers).
81 * @get_tbipa: determines the address of the TBIPA register
83 * @ucc_configure: a special function for extra QE configuration
85 struct fsl_pq_mdio_data
{
86 unsigned int mii_offset
; /* offset of the MII registers */
87 uint32_t __iomem
* (*get_tbipa
)(void __iomem
*p
);
88 void (*ucc_configure
)(phys_addr_t start
, phys_addr_t end
);
92 * Write value to the PHY at mii_id at register regnum, on the bus attached
93 * to the local interface, which may be different from the generic mdio bus
94 * (tied to a single interface), waiting until the write is done before
95 * returning. This is helpful in programming interfaces like the TBI which
96 * control interfaces like onchip SERDES and are always tied to the local
97 * mdio pins, which may not be the same as system mdio bus, used for
98 * controlling the external PHYs, for example.
100 static int fsl_pq_mdio_write(struct mii_bus
*bus
, int mii_id
, int regnum
,
103 struct fsl_pq_mdio_priv
*priv
= bus
->priv
;
104 struct fsl_pq_mii __iomem
*regs
= priv
->regs
;
107 /* Set the PHY address and the register address we want to write */
108 out_be32(®s
->miimadd
, (mii_id
<< 8) | regnum
);
110 /* Write out the value we want */
111 out_be32(®s
->miimcon
, value
);
113 /* Wait for the transaction to finish */
114 status
= spin_event_timeout(!(in_be32(®s
->miimind
) & MIIMIND_BUSY
),
117 return status
? 0 : -ETIMEDOUT
;
121 * Read the bus for PHY at addr mii_id, register regnum, and return the value.
122 * Clears miimcom first.
124 * All PHY operation done on the bus attached to the local interface, which
125 * may be different from the generic mdio bus. This is helpful in programming
126 * interfaces like the TBI which, in turn, control interfaces like on-chip
127 * SERDES and are always tied to the local mdio pins, which may not be the
128 * same as system mdio bus, used for controlling the external PHYs, for eg.
130 static int fsl_pq_mdio_read(struct mii_bus
*bus
, int mii_id
, int regnum
)
132 struct fsl_pq_mdio_priv
*priv
= bus
->priv
;
133 struct fsl_pq_mii __iomem
*regs
= priv
->regs
;
137 /* Set the PHY address and the register address we want to read */
138 out_be32(®s
->miimadd
, (mii_id
<< 8) | regnum
);
140 /* Clear miimcom, and then initiate a read */
141 out_be32(®s
->miimcom
, 0);
142 out_be32(®s
->miimcom
, MII_READ_COMMAND
);
144 /* Wait for the transaction to finish, normally less than 100us */
145 status
= spin_event_timeout(!(in_be32(®s
->miimind
) &
146 (MIIMIND_NOTVALID
| MIIMIND_BUSY
)),
151 /* Grab the value of the register from miimstat */
152 value
= in_be32(®s
->miimstat
);
154 dev_dbg(&bus
->dev
, "read %04x from address %x/%x\n", value
, mii_id
, regnum
);
158 /* Reset the MIIM registers, and wait for the bus to free */
159 static int fsl_pq_mdio_reset(struct mii_bus
*bus
)
161 struct fsl_pq_mdio_priv
*priv
= bus
->priv
;
162 struct fsl_pq_mii __iomem
*regs
= priv
->regs
;
165 mutex_lock(&bus
->mdio_lock
);
167 /* Reset the management interface */
168 out_be32(®s
->miimcfg
, MIIMCFG_RESET
);
170 /* Setup the MII Mgmt clock speed */
171 out_be32(®s
->miimcfg
, MIIMCFG_INIT_VALUE
);
173 /* Wait until the bus is free */
174 status
= spin_event_timeout(!(in_be32(®s
->miimind
) & MIIMIND_BUSY
),
177 mutex_unlock(&bus
->mdio_lock
);
180 dev_err(&bus
->dev
, "timeout waiting for MII bus\n");
187 #if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE)
189 * This is mildly evil, but so is our hardware for doing this.
190 * Also, we have to cast back to struct gfar because of
191 * definition weirdness done in gianfar.h.
193 static uint32_t __iomem
*get_gfar_tbipa(void __iomem
*p
)
195 struct gfar __iomem
*enet_regs
= p
;
197 return &enet_regs
->tbipa
;
201 * Return the TBIPAR address for an eTSEC2 node
203 static uint32_t __iomem
*get_etsec_tbipa(void __iomem
*p
)
209 #if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE)
211 * Return the TBIPAR address for a QE MDIO node
213 static uint32_t __iomem
*get_ucc_tbipa(void __iomem
*p
)
215 struct fsl_pq_mdio __iomem
*mdio
= p
;
217 return &mdio
->utbipar
;
221 * Find the UCC node that controls the given MDIO node
223 * For some reason, the QE MDIO nodes are not children of the UCC devices
224 * that control them. Therefore, we need to scan all UCC nodes looking for
225 * the one that encompases the given MDIO node. We do this by comparing
226 * physical addresses. The 'start' and 'end' addresses of the MDIO node are
227 * passed, and the correct UCC node will cover the entire address range.
229 * This assumes that there is only one QE MDIO node in the entire device tree.
231 static void ucc_configure(phys_addr_t start
, phys_addr_t end
)
233 static bool found_mii_master
;
234 struct device_node
*np
= NULL
;
236 if (found_mii_master
)
239 for_each_compatible_node(np
, NULL
, "ucc_geth") {
241 const uint32_t *iprop
;
245 ret
= of_address_to_resource(np
, 0, &res
);
247 pr_debug("fsl-pq-mdio: no address range in node %s\n",
252 /* if our mdio regs fall within this UCC regs range */
253 if ((start
< res
.start
) || (end
> res
.end
))
256 iprop
= of_get_property(np
, "cell-index", NULL
);
258 iprop
= of_get_property(np
, "device-id", NULL
);
260 pr_debug("fsl-pq-mdio: no UCC ID in node %s\n",
266 id
= be32_to_cpup(iprop
);
269 * cell-index and device-id for QE nodes are
270 * numbered from 1, not 0.
272 if (ucc_set_qe_mux_mii_mng(id
- 1) < 0) {
273 pr_debug("fsl-pq-mdio: invalid UCC ID in node %s\n",
278 pr_debug("fsl-pq-mdio: setting node UCC%u to MII master\n", id
);
279 found_mii_master
= true;
285 static struct of_device_id fsl_pq_mdio_match
[] = {
286 #if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE)
288 .compatible
= "fsl,gianfar-tbi",
289 .data
= &(struct fsl_pq_mdio_data
) {
291 .get_tbipa
= get_gfar_tbipa
,
295 .compatible
= "fsl,gianfar-mdio",
296 .data
= &(struct fsl_pq_mdio_data
) {
298 .get_tbipa
= get_gfar_tbipa
,
303 .compatible
= "gianfar",
304 .data
= &(struct fsl_pq_mdio_data
) {
305 .mii_offset
= offsetof(struct fsl_pq_mdio
, mii
),
306 .get_tbipa
= get_gfar_tbipa
,
310 .compatible
= "fsl,etsec2-tbi",
311 .data
= &(struct fsl_pq_mdio_data
) {
312 .mii_offset
= offsetof(struct fsl_pq_mdio
, mii
),
313 .get_tbipa
= get_etsec_tbipa
,
317 .compatible
= "fsl,etsec2-mdio",
318 .data
= &(struct fsl_pq_mdio_data
) {
319 .mii_offset
= offsetof(struct fsl_pq_mdio
, mii
),
320 .get_tbipa
= get_etsec_tbipa
,
324 #if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE)
326 .compatible
= "fsl,ucc-mdio",
327 .data
= &(struct fsl_pq_mdio_data
) {
329 .get_tbipa
= get_ucc_tbipa
,
330 .ucc_configure
= ucc_configure
,
334 /* Legacy UCC MDIO node */
336 .compatible
= "ucc_geth_phy",
337 .data
= &(struct fsl_pq_mdio_data
) {
339 .get_tbipa
= get_ucc_tbipa
,
340 .ucc_configure
= ucc_configure
,
344 /* No Kconfig option for Fman support yet */
346 .compatible
= "fsl,fman-mdio",
347 .data
= &(struct fsl_pq_mdio_data
) {
349 /* Fman TBI operations are handled elsewhere */
355 MODULE_DEVICE_TABLE(of
, fsl_pq_mdio_match
);
357 static int fsl_pq_mdio_probe(struct platform_device
*pdev
)
359 const struct of_device_id
*id
=
360 of_match_device(fsl_pq_mdio_match
, &pdev
->dev
);
361 const struct fsl_pq_mdio_data
*data
= id
->data
;
362 struct device_node
*np
= pdev
->dev
.of_node
;
364 struct device_node
*tbi
;
365 struct fsl_pq_mdio_priv
*priv
;
366 struct mii_bus
*new_bus
;
369 dev_dbg(&pdev
->dev
, "found %s compatible node\n", id
->compatible
);
371 new_bus
= mdiobus_alloc_size(sizeof(*priv
));
375 priv
= new_bus
->priv
;
376 new_bus
->name
= "Freescale PowerQUICC MII Bus",
377 new_bus
->read
= &fsl_pq_mdio_read
;
378 new_bus
->write
= &fsl_pq_mdio_write
;
379 new_bus
->reset
= &fsl_pq_mdio_reset
;
380 new_bus
->irq
= priv
->irqs
;
382 err
= of_address_to_resource(np
, 0, &res
);
384 dev_err(&pdev
->dev
, "could not obtain address information\n");
388 snprintf(new_bus
->id
, MII_BUS_ID_SIZE
, "%s@%llx", np
->name
,
389 (unsigned long long)res
.start
);
391 priv
->map
= of_iomap(np
, 0);
398 * Some device tree nodes represent only the MII registers, and
399 * others represent the MAC and MII registers. The 'mii_offset' field
400 * contains the offset of the MII registers inside the mapped register
403 if (data
->mii_offset
> resource_size(&res
)) {
404 dev_err(&pdev
->dev
, "invalid register map\n");
408 priv
->regs
= priv
->map
+ data
->mii_offset
;
410 new_bus
->parent
= &pdev
->dev
;
411 platform_set_drvdata(pdev
, new_bus
);
413 if (data
->get_tbipa
) {
414 for_each_child_of_node(np
, tbi
) {
415 if (strcmp(tbi
->type
, "tbi-phy") == 0) {
416 dev_dbg(&pdev
->dev
, "found TBI PHY node %s\n",
417 strrchr(tbi
->full_name
, '/') + 1);
423 const u32
*prop
= of_get_property(tbi
, "reg", NULL
);
424 uint32_t __iomem
*tbipa
;
428 "missing 'reg' property in node %s\n",
434 tbipa
= data
->get_tbipa(priv
->map
);
436 out_be32(tbipa
, be32_to_cpup(prop
));
440 if (data
->ucc_configure
)
441 data
->ucc_configure(res
.start
, res
.end
);
443 err
= of_mdiobus_register(new_bus
, np
);
445 dev_err(&pdev
->dev
, "cannot register %s as MDIO bus\n",
462 static int fsl_pq_mdio_remove(struct platform_device
*pdev
)
464 struct device
*device
= &pdev
->dev
;
465 struct mii_bus
*bus
= dev_get_drvdata(device
);
466 struct fsl_pq_mdio_priv
*priv
= bus
->priv
;
468 mdiobus_unregister(bus
);
476 static struct platform_driver fsl_pq_mdio_driver
= {
478 .name
= "fsl-pq_mdio",
479 .owner
= THIS_MODULE
,
480 .of_match_table
= fsl_pq_mdio_match
,
482 .probe
= fsl_pq_mdio_probe
,
483 .remove
= fsl_pq_mdio_remove
,
486 module_platform_driver(fsl_pq_mdio_driver
);
488 MODULE_LICENSE("GPL");