1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Freescale PowerQUICC Ethernet Driver -- MIIM bus implementation
4 * Provides Bus interface for MIIM regs
6 * Author: Andy Fleming <afleming@freescale.com>
7 * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com>
9 * Copyright 2002-2004, 2008-2009 Freescale Semiconductor, Inc.
11 * Based on gianfar_mii.c and ucc_geth_mii.c (Li Yang, Kim Phillips)
14 #include <linux/kernel.h>
15 #include <linux/string.h>
16 #include <linux/errno.h>
17 #include <linux/slab.h>
18 #include <linux/delay.h>
19 #include <linux/module.h>
20 #include <linux/mii.h>
21 #include <linux/of_address.h>
22 #include <linux/of_mdio.h>
23 #include <linux/of_device.h>
26 #if IS_ENABLED(CONFIG_UCC_GETH)
27 #include <soc/fsl/qe/ucc.h>
32 #define MIIMIND_BUSY 0x00000001
33 #define MIIMIND_NOTVALID 0x00000004
34 #define MIIMCFG_INIT_VALUE 0x00000007
35 #define MIIMCFG_RESET 0x80000000
37 #define MII_READ_COMMAND 0x00000001
40 u32 miimcfg
; /* MII management configuration reg */
41 u32 miimcom
; /* MII management command reg */
42 u32 miimadd
; /* MII management address reg */
43 u32 miimcon
; /* MII management control reg */
44 u32 miimstat
; /* MII management status reg */
45 u32 miimind
; /* MII management indication reg */
50 u32 ieventm
; /* MDIO Interrupt event register (for etsec2)*/
51 u32 imaskm
; /* MDIO Interrupt mask register (for etsec2)*/
53 u32 emapm
; /* MDIO Event mapping register (for etsec2)*/
55 struct fsl_pq_mii mii
;
57 u32 utbipar
; /* TBI phy address reg (only on UCC) */
61 /* Number of microseconds to wait for an MII register to respond */
62 #define MII_TIMEOUT 1000
64 struct fsl_pq_mdio_priv
{
66 struct fsl_pq_mii __iomem
*regs
;
70 * Per-device-type data. Each type of device tree node that we support gets
73 * @mii_offset: the offset of the MII registers within the memory map of the
74 * node. Some nodes define only the MII registers, and some define the whole
75 * MAC (which includes the MII registers).
77 * @get_tbipa: determines the address of the TBIPA register
79 * @ucc_configure: a special function for extra QE configuration
81 struct fsl_pq_mdio_data
{
82 unsigned int mii_offset
; /* offset of the MII registers */
83 uint32_t __iomem
* (*get_tbipa
)(void __iomem
*p
);
84 void (*ucc_configure
)(phys_addr_t start
, phys_addr_t end
);
88 * Write value to the PHY at mii_id at register regnum, on the bus attached
89 * to the local interface, which may be different from the generic mdio bus
90 * (tied to a single interface), waiting until the write is done before
91 * returning. This is helpful in programming interfaces like the TBI which
92 * control interfaces like onchip SERDES and are always tied to the local
93 * mdio pins, which may not be the same as system mdio bus, used for
94 * controlling the external PHYs, for example.
96 static int fsl_pq_mdio_write(struct mii_bus
*bus
, int mii_id
, int regnum
,
99 struct fsl_pq_mdio_priv
*priv
= bus
->priv
;
100 struct fsl_pq_mii __iomem
*regs
= priv
->regs
;
101 unsigned int timeout
;
103 /* Set the PHY address and the register address we want to write */
104 iowrite32be((mii_id
<< 8) | regnum
, ®s
->miimadd
);
106 /* Write out the value we want */
107 iowrite32be(value
, ®s
->miimcon
);
109 /* Wait for the transaction to finish */
110 timeout
= MII_TIMEOUT
;
111 while ((ioread32be(®s
->miimind
) & MIIMIND_BUSY
) && timeout
) {
116 return timeout
? 0 : -ETIMEDOUT
;
120 * Read the bus for PHY at addr mii_id, register regnum, and return the value.
121 * Clears miimcom first.
123 * All PHY operation done on the bus attached to the local interface, which
124 * may be different from the generic mdio bus. This is helpful in programming
125 * interfaces like the TBI which, in turn, control interfaces like on-chip
126 * SERDES and are always tied to the local mdio pins, which may not be the
127 * same as system mdio bus, used for controlling the external PHYs, for eg.
129 static int fsl_pq_mdio_read(struct mii_bus
*bus
, int mii_id
, int regnum
)
131 struct fsl_pq_mdio_priv
*priv
= bus
->priv
;
132 struct fsl_pq_mii __iomem
*regs
= priv
->regs
;
133 unsigned int timeout
;
136 /* Set the PHY address and the register address we want to read */
137 iowrite32be((mii_id
<< 8) | regnum
, ®s
->miimadd
);
139 /* Clear miimcom, and then initiate a read */
140 iowrite32be(0, ®s
->miimcom
);
141 iowrite32be(MII_READ_COMMAND
, ®s
->miimcom
);
143 /* Wait for the transaction to finish, normally less than 100us */
144 timeout
= MII_TIMEOUT
;
145 while ((ioread32be(®s
->miimind
) &
146 (MIIMIND_NOTVALID
| MIIMIND_BUSY
)) && timeout
) {
154 /* Grab the value of the register from miimstat */
155 value
= ioread32be(®s
->miimstat
);
157 dev_dbg(&bus
->dev
, "read %04x from address %x/%x\n", value
, mii_id
, regnum
);
161 /* Reset the MIIM registers, and wait for the bus to free */
162 static int fsl_pq_mdio_reset(struct mii_bus
*bus
)
164 struct fsl_pq_mdio_priv
*priv
= bus
->priv
;
165 struct fsl_pq_mii __iomem
*regs
= priv
->regs
;
166 unsigned int timeout
;
168 mutex_lock(&bus
->mdio_lock
);
170 /* Reset the management interface */
171 iowrite32be(MIIMCFG_RESET
, ®s
->miimcfg
);
173 /* Setup the MII Mgmt clock speed */
174 iowrite32be(MIIMCFG_INIT_VALUE
, ®s
->miimcfg
);
176 /* Wait until the bus is free */
177 timeout
= MII_TIMEOUT
;
178 while ((ioread32be(®s
->miimind
) & MIIMIND_BUSY
) && timeout
) {
183 mutex_unlock(&bus
->mdio_lock
);
186 dev_err(&bus
->dev
, "timeout waiting for MII bus\n");
193 #if IS_ENABLED(CONFIG_GIANFAR)
195 * Return the TBIPA address, starting from the address
196 * of the mapped GFAR MDIO registers (struct gfar)
197 * This is mildly evil, but so is our hardware for doing this.
198 * Also, we have to cast back to struct gfar because of
199 * definition weirdness done in gianfar.h.
201 static uint32_t __iomem
*get_gfar_tbipa_from_mdio(void __iomem
*p
)
203 struct gfar __iomem
*enet_regs
= p
;
205 return &enet_regs
->tbipa
;
209 * Return the TBIPA address, starting from the address
210 * of the mapped GFAR MII registers (gfar_mii_regs[] within struct gfar)
212 static uint32_t __iomem
*get_gfar_tbipa_from_mii(void __iomem
*p
)
214 return get_gfar_tbipa_from_mdio(container_of(p
, struct gfar
, gfar_mii_regs
));
218 * Return the TBIPAR address for an eTSEC2 node
220 static uint32_t __iomem
*get_etsec_tbipa(void __iomem
*p
)
226 #if IS_ENABLED(CONFIG_UCC_GETH)
228 * Return the TBIPAR address for a QE MDIO node, starting from the address
229 * of the mapped MII registers (struct fsl_pq_mii)
231 static uint32_t __iomem
*get_ucc_tbipa(void __iomem
*p
)
233 struct fsl_pq_mdio __iomem
*mdio
= container_of(p
, struct fsl_pq_mdio
, mii
);
235 return &mdio
->utbipar
;
239 * Find the UCC node that controls the given MDIO node
241 * For some reason, the QE MDIO nodes are not children of the UCC devices
242 * that control them. Therefore, we need to scan all UCC nodes looking for
243 * the one that encompases the given MDIO node. We do this by comparing
244 * physical addresses. The 'start' and 'end' addresses of the MDIO node are
245 * passed, and the correct UCC node will cover the entire address range.
247 * This assumes that there is only one QE MDIO node in the entire device tree.
249 static void ucc_configure(phys_addr_t start
, phys_addr_t end
)
251 static bool found_mii_master
;
252 struct device_node
*np
= NULL
;
254 if (found_mii_master
)
257 for_each_compatible_node(np
, NULL
, "ucc_geth") {
259 const uint32_t *iprop
;
263 ret
= of_address_to_resource(np
, 0, &res
);
265 pr_debug("fsl-pq-mdio: no address range in node %pOF\n",
270 /* if our mdio regs fall within this UCC regs range */
271 if ((start
< res
.start
) || (end
> res
.end
))
274 iprop
= of_get_property(np
, "cell-index", NULL
);
276 iprop
= of_get_property(np
, "device-id", NULL
);
278 pr_debug("fsl-pq-mdio: no UCC ID in node %pOF\n",
284 id
= be32_to_cpup(iprop
);
287 * cell-index and device-id for QE nodes are
288 * numbered from 1, not 0.
290 if (ucc_set_qe_mux_mii_mng(id
- 1) < 0) {
291 pr_debug("fsl-pq-mdio: invalid UCC ID in node %pOF\n",
296 pr_debug("fsl-pq-mdio: setting node UCC%u to MII master\n", id
);
297 found_mii_master
= true;
303 static const struct of_device_id fsl_pq_mdio_match
[] = {
304 #if IS_ENABLED(CONFIG_GIANFAR)
306 .compatible
= "fsl,gianfar-tbi",
307 .data
= &(struct fsl_pq_mdio_data
) {
309 .get_tbipa
= get_gfar_tbipa_from_mii
,
313 .compatible
= "fsl,gianfar-mdio",
314 .data
= &(struct fsl_pq_mdio_data
) {
316 .get_tbipa
= get_gfar_tbipa_from_mii
,
321 .compatible
= "gianfar",
322 .data
= &(struct fsl_pq_mdio_data
) {
323 .mii_offset
= offsetof(struct fsl_pq_mdio
, mii
),
324 .get_tbipa
= get_gfar_tbipa_from_mdio
,
328 .compatible
= "fsl,etsec2-tbi",
329 .data
= &(struct fsl_pq_mdio_data
) {
330 .mii_offset
= offsetof(struct fsl_pq_mdio
, mii
),
331 .get_tbipa
= get_etsec_tbipa
,
335 .compatible
= "fsl,etsec2-mdio",
336 .data
= &(struct fsl_pq_mdio_data
) {
337 .mii_offset
= offsetof(struct fsl_pq_mdio
, mii
),
338 .get_tbipa
= get_etsec_tbipa
,
342 #if IS_ENABLED(CONFIG_UCC_GETH)
344 .compatible
= "fsl,ucc-mdio",
345 .data
= &(struct fsl_pq_mdio_data
) {
347 .get_tbipa
= get_ucc_tbipa
,
348 .ucc_configure
= ucc_configure
,
352 /* Legacy UCC MDIO node */
354 .compatible
= "ucc_geth_phy",
355 .data
= &(struct fsl_pq_mdio_data
) {
357 .get_tbipa
= get_ucc_tbipa
,
358 .ucc_configure
= ucc_configure
,
362 /* No Kconfig option for Fman support yet */
364 .compatible
= "fsl,fman-mdio",
365 .data
= &(struct fsl_pq_mdio_data
) {
367 /* Fman TBI operations are handled elsewhere */
373 MODULE_DEVICE_TABLE(of
, fsl_pq_mdio_match
);
375 static void set_tbipa(const u32 tbipa_val
, struct platform_device
*pdev
,
376 uint32_t __iomem
* (*get_tbipa
)(void __iomem
*),
377 void __iomem
*reg_map
, struct resource
*reg_res
)
379 struct device_node
*np
= pdev
->dev
.of_node
;
380 uint32_t __iomem
*tbipa
;
383 tbipa
= of_iomap(np
, 1);
387 tbipa_mapped
= false;
388 tbipa
= (*get_tbipa
)(reg_map
);
391 * Add consistency check to make sure TBI is contained within
392 * the mapped range (not because we would get a segfault,
393 * rather to catch bugs in computing TBI address). Print error
394 * message but continue anyway.
396 if ((void *)tbipa
> reg_map
+ resource_size(reg_res
) - 4)
397 dev_err(&pdev
->dev
, "invalid register map (should be at least 0x%04zx to contain TBI address)\n",
398 ((void *)tbipa
- reg_map
) + 4);
401 iowrite32be(be32_to_cpu(tbipa_val
), tbipa
);
407 static int fsl_pq_mdio_probe(struct platform_device
*pdev
)
409 const struct of_device_id
*id
=
410 of_match_device(fsl_pq_mdio_match
, &pdev
->dev
);
411 const struct fsl_pq_mdio_data
*data
;
412 struct device_node
*np
= pdev
->dev
.of_node
;
414 struct device_node
*tbi
;
415 struct fsl_pq_mdio_priv
*priv
;
416 struct mii_bus
*new_bus
;
420 dev_err(&pdev
->dev
, "Failed to match device\n");
426 dev_dbg(&pdev
->dev
, "found %s compatible node\n", id
->compatible
);
428 new_bus
= mdiobus_alloc_size(sizeof(*priv
));
432 priv
= new_bus
->priv
;
433 new_bus
->name
= "Freescale PowerQUICC MII Bus";
434 new_bus
->read
= &fsl_pq_mdio_read
;
435 new_bus
->write
= &fsl_pq_mdio_write
;
436 new_bus
->reset
= &fsl_pq_mdio_reset
;
438 err
= of_address_to_resource(np
, 0, &res
);
440 dev_err(&pdev
->dev
, "could not obtain address information\n");
444 snprintf(new_bus
->id
, MII_BUS_ID_SIZE
, "%pOFn@%llx", np
,
445 (unsigned long long)res
.start
);
447 priv
->map
= of_iomap(np
, 0);
454 * Some device tree nodes represent only the MII registers, and
455 * others represent the MAC and MII registers. The 'mii_offset' field
456 * contains the offset of the MII registers inside the mapped register
459 if (data
->mii_offset
> resource_size(&res
)) {
460 dev_err(&pdev
->dev
, "invalid register map\n");
464 priv
->regs
= priv
->map
+ data
->mii_offset
;
466 new_bus
->parent
= &pdev
->dev
;
467 platform_set_drvdata(pdev
, new_bus
);
469 if (data
->get_tbipa
) {
470 for_each_child_of_node(np
, tbi
) {
471 if (of_node_is_type(tbi
, "tbi-phy")) {
472 dev_dbg(&pdev
->dev
, "found TBI PHY node %pOFP\n",
479 const u32
*prop
= of_get_property(tbi
, "reg", NULL
);
482 "missing 'reg' property in node %pOF\n",
487 set_tbipa(*prop
, pdev
,
488 data
->get_tbipa
, priv
->map
, &res
);
492 if (data
->ucc_configure
)
493 data
->ucc_configure(res
.start
, res
.end
);
495 err
= of_mdiobus_register(new_bus
, np
);
497 dev_err(&pdev
->dev
, "cannot register %s as MDIO bus\n",
514 static int fsl_pq_mdio_remove(struct platform_device
*pdev
)
516 struct device
*device
= &pdev
->dev
;
517 struct mii_bus
*bus
= dev_get_drvdata(device
);
518 struct fsl_pq_mdio_priv
*priv
= bus
->priv
;
520 mdiobus_unregister(bus
);
528 static struct platform_driver fsl_pq_mdio_driver
= {
530 .name
= "fsl-pq_mdio",
531 .of_match_table
= fsl_pq_mdio_match
,
533 .probe
= fsl_pq_mdio_probe
,
534 .remove
= fsl_pq_mdio_remove
,
537 module_platform_driver(fsl_pq_mdio_driver
);
539 MODULE_LICENSE("GPL");