Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Freescale PowerQUICC Ethernet Driver -- MIIM bus implementation |
| 3 | * Provides Bus interface for MIIM regs |
| 4 | * |
| 5 | * Author: Andy Fleming <afleming@freescale.com> |
Sandeep Gopalpet | 1d2397d | 2009-11-02 07:03:22 +0000 | [diff] [blame] | 6 | * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com> |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 7 | * |
Sandeep Gopalpet | 1d2397d | 2009-11-02 07:03:22 +0000 | [diff] [blame] | 8 | * Copyright 2002-2004, 2008-2009 Freescale Semiconductor, Inc. |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 9 | * |
| 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 Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 22 | #include <linux/slab.h> |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 23 | #include <linux/delay.h> |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 24 | #include <linux/module.h> |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 25 | #include <linux/mii.h> |
Grant Likely | 22ae782 | 2010-07-29 11:49:01 -0600 | [diff] [blame] | 26 | #include <linux/of_address.h> |
Grant Likely | 324931b | 2009-04-25 12:53:07 +0000 | [diff] [blame] | 27 | #include <linux/of_mdio.h> |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 28 | #include <linux/of_device.h> |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 29 | |
| 30 | #include <asm/io.h> |
Timur Tabi | 1aa06d4 | 2012-08-29 08:07:58 +0000 | [diff] [blame] | 31 | #include <asm/ucc.h> /* for ucc_set_qe_mux_mii_mng() */ |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 32 | |
| 33 | #include "gianfar.h" |
Timur Tabi | 19bcd6c | 2012-08-29 08:07:57 +0000 | [diff] [blame] | 34 | |
| 35 | #define MIIMIND_BUSY 0x00000001 |
| 36 | #define MIIMIND_NOTVALID 0x00000004 |
| 37 | #define MIIMCFG_INIT_VALUE 0x00000007 |
| 38 | #define MIIMCFG_RESET 0x80000000 |
| 39 | |
| 40 | #define MII_READ_COMMAND 0x00000001 |
| 41 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 42 | struct fsl_pq_mii { |
| 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 */ |
| 49 | }; |
| 50 | |
Timur Tabi | 19bcd6c | 2012-08-29 08:07:57 +0000 | [diff] [blame] | 51 | struct fsl_pq_mdio { |
| 52 | u8 res1[16]; |
| 53 | u32 ieventm; /* MDIO Interrupt event register (for etsec2)*/ |
| 54 | u32 imaskm; /* MDIO Interrupt mask register (for etsec2)*/ |
| 55 | u8 res2[4]; |
| 56 | u32 emapm; /* MDIO Event mapping register (for etsec2)*/ |
| 57 | u8 res3[1280]; |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 58 | struct fsl_pq_mii mii; |
Timur Tabi | 19bcd6c | 2012-08-29 08:07:57 +0000 | [diff] [blame] | 59 | u8 res4[28]; |
| 60 | u32 utbipar; /* TBI phy address reg (only on UCC) */ |
| 61 | u8 res5[2728]; |
| 62 | } __packed; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 63 | |
Timur Tabi | 59399c5 | 2012-07-09 16:57:36 -0500 | [diff] [blame] | 64 | /* Number of microseconds to wait for an MII register to respond */ |
| 65 | #define MII_TIMEOUT 1000 |
| 66 | |
Anton Vorontsov | b3319b1 | 2009-12-30 08:23:34 +0000 | [diff] [blame] | 67 | struct fsl_pq_mdio_priv { |
| 68 | void __iomem *map; |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 69 | struct fsl_pq_mii __iomem *regs; |
Timur Tabi | dd3b8a3 | 2012-08-29 08:08:02 +0000 | [diff] [blame] | 70 | int irqs[PHY_MAX_ADDR]; |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 71 | }; |
| 72 | |
| 73 | /* |
| 74 | * Per-device-type data. Each type of device tree node that we support gets |
| 75 | * one of these. |
| 76 | * |
| 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). |
| 80 | * |
| 81 | * @get_tbipa: determines the address of the TBIPA register |
| 82 | * |
| 83 | * @ucc_configure: a special function for extra QE configuration |
| 84 | */ |
| 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); |
Anton Vorontsov | b3319b1 | 2009-12-30 08:23:34 +0000 | [diff] [blame] | 89 | }; |
| 90 | |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 91 | /* |
Timur Tabi | 69cfb41 | 2012-08-29 08:07:59 +0000 | [diff] [blame] | 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 |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 98 | * controlling the external PHYs, for example. |
| 99 | */ |
Timur Tabi | 69cfb41 | 2012-08-29 08:07:59 +0000 | [diff] [blame] | 100 | static int fsl_pq_mdio_write(struct mii_bus *bus, int mii_id, int regnum, |
| 101 | u16 value) |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 102 | { |
Timur Tabi | 69cfb41 | 2012-08-29 08:07:59 +0000 | [diff] [blame] | 103 | struct fsl_pq_mdio_priv *priv = bus->priv; |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 104 | struct fsl_pq_mii __iomem *regs = priv->regs; |
Timur Tabi | 59399c5 | 2012-07-09 16:57:36 -0500 | [diff] [blame] | 105 | u32 status; |
| 106 | |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 107 | /* Set the PHY address and the register address we want to write */ |
| 108 | out_be32(®s->miimadd, (mii_id << 8) | regnum); |
| 109 | |
| 110 | /* Write out the value we want */ |
| 111 | out_be32(®s->miimcon, value); |
| 112 | |
| 113 | /* Wait for the transaction to finish */ |
Timur Tabi | 59399c5 | 2012-07-09 16:57:36 -0500 | [diff] [blame] | 114 | status = spin_event_timeout(!(in_be32(®s->miimind) & MIIMIND_BUSY), |
| 115 | MII_TIMEOUT, 0); |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 116 | |
Timur Tabi | 59399c5 | 2012-07-09 16:57:36 -0500 | [diff] [blame] | 117 | return status ? 0 : -ETIMEDOUT; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | /* |
Timur Tabi | 69cfb41 | 2012-08-29 08:07:59 +0000 | [diff] [blame] | 121 | * Read the bus for PHY at addr mii_id, register regnum, and return the value. |
| 122 | * Clears miimcom first. |
| 123 | * |
| 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 |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 128 | * same as system mdio bus, used for controlling the external PHYs, for eg. |
| 129 | */ |
Timur Tabi | 69cfb41 | 2012-08-29 08:07:59 +0000 | [diff] [blame] | 130 | static int fsl_pq_mdio_read(struct mii_bus *bus, int mii_id, int regnum) |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 131 | { |
Timur Tabi | 69cfb41 | 2012-08-29 08:07:59 +0000 | [diff] [blame] | 132 | struct fsl_pq_mdio_priv *priv = bus->priv; |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 133 | struct fsl_pq_mii __iomem *regs = priv->regs; |
Timur Tabi | 59399c5 | 2012-07-09 16:57:36 -0500 | [diff] [blame] | 134 | u32 status; |
Timur Tabi | 69cfb41 | 2012-08-29 08:07:59 +0000 | [diff] [blame] | 135 | u16 value; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 136 | |
| 137 | /* Set the PHY address and the register address we want to read */ |
| 138 | out_be32(®s->miimadd, (mii_id << 8) | regnum); |
| 139 | |
| 140 | /* Clear miimcom, and then initiate a read */ |
| 141 | out_be32(®s->miimcom, 0); |
| 142 | out_be32(®s->miimcom, MII_READ_COMMAND); |
| 143 | |
Timur Tabi | 59399c5 | 2012-07-09 16:57:36 -0500 | [diff] [blame] | 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)), |
| 147 | MII_TIMEOUT, 0); |
| 148 | if (!status) |
| 149 | return -ETIMEDOUT; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 150 | |
| 151 | /* Grab the value of the register from miimstat */ |
| 152 | value = in_be32(®s->miimstat); |
| 153 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 154 | dev_dbg(&bus->dev, "read %04x from address %x/%x\n", value, mii_id, regnum); |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 155 | return value; |
| 156 | } |
| 157 | |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 158 | /* Reset the MIIM registers, and wait for the bus to free */ |
| 159 | static int fsl_pq_mdio_reset(struct mii_bus *bus) |
| 160 | { |
Timur Tabi | 69cfb41 | 2012-08-29 08:07:59 +0000 | [diff] [blame] | 161 | struct fsl_pq_mdio_priv *priv = bus->priv; |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 162 | struct fsl_pq_mii __iomem *regs = priv->regs; |
Timur Tabi | 59399c5 | 2012-07-09 16:57:36 -0500 | [diff] [blame] | 163 | u32 status; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 164 | |
| 165 | mutex_lock(&bus->mdio_lock); |
| 166 | |
| 167 | /* Reset the management interface */ |
| 168 | out_be32(®s->miimcfg, MIIMCFG_RESET); |
| 169 | |
| 170 | /* Setup the MII Mgmt clock speed */ |
| 171 | out_be32(®s->miimcfg, MIIMCFG_INIT_VALUE); |
| 172 | |
| 173 | /* Wait until the bus is free */ |
Timur Tabi | 59399c5 | 2012-07-09 16:57:36 -0500 | [diff] [blame] | 174 | status = spin_event_timeout(!(in_be32(®s->miimind) & MIIMIND_BUSY), |
| 175 | MII_TIMEOUT, 0); |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 176 | |
| 177 | mutex_unlock(&bus->mdio_lock); |
| 178 | |
Timur Tabi | 59399c5 | 2012-07-09 16:57:36 -0500 | [diff] [blame] | 179 | if (!status) { |
Timur Tabi | 5078ac7 | 2012-08-29 08:08:00 +0000 | [diff] [blame] | 180 | dev_err(&bus->dev, "timeout waiting for MII bus\n"); |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 181 | return -EBUSY; |
| 182 | } |
| 183 | |
| 184 | return 0; |
| 185 | } |
| 186 | |
Andy Fleming | 952c5ca | 2011-11-11 05:10:39 +0000 | [diff] [blame] | 187 | #if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE) |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 188 | /* |
| 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. |
| 192 | */ |
| 193 | static uint32_t __iomem *get_gfar_tbipa(void __iomem *p) |
| 194 | { |
| 195 | struct gfar __iomem *enet_regs = p; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 196 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 197 | return &enet_regs->tbipa; |
Andy Fleming | 952c5ca | 2011-11-11 05:10:39 +0000 | [diff] [blame] | 198 | } |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 199 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 200 | /* |
| 201 | * Return the TBIPAR address for an eTSEC2 node |
| 202 | */ |
| 203 | static uint32_t __iomem *get_etsec_tbipa(void __iomem *p) |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 204 | { |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 205 | return p; |
| 206 | } |
| 207 | #endif |
| 208 | |
Andy Fleming | 952c5ca | 2011-11-11 05:10:39 +0000 | [diff] [blame] | 209 | #if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE) |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 210 | /* |
| 211 | * Return the TBIPAR address for a QE MDIO node |
| 212 | */ |
| 213 | static uint32_t __iomem *get_ucc_tbipa(void __iomem *p) |
| 214 | { |
| 215 | struct fsl_pq_mdio __iomem *mdio = p; |
| 216 | |
| 217 | return &mdio->utbipar; |
| 218 | } |
| 219 | |
| 220 | /* |
| 221 | * Find the UCC node that controls the given MDIO node |
| 222 | * |
| 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. |
| 228 | * |
| 229 | * This assumes that there is only one QE MDIO node in the entire device tree. |
| 230 | */ |
| 231 | static void ucc_configure(phys_addr_t start, phys_addr_t end) |
| 232 | { |
| 233 | static bool found_mii_master; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 234 | struct device_node *np = NULL; |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 235 | |
| 236 | if (found_mii_master) |
| 237 | return; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 238 | |
| 239 | for_each_compatible_node(np, NULL, "ucc_geth") { |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 240 | struct resource res; |
| 241 | const uint32_t *iprop; |
| 242 | uint32_t id; |
| 243 | int ret; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 244 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 245 | ret = of_address_to_resource(np, 0, &res); |
| 246 | if (ret < 0) { |
| 247 | pr_debug("fsl-pq-mdio: no address range in node %s\n", |
| 248 | np->full_name); |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 249 | continue; |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 250 | } |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 251 | |
| 252 | /* if our mdio regs fall within this UCC regs range */ |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 253 | if ((start < res.start) || (end > res.end)) |
| 254 | continue; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 255 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 256 | iprop = of_get_property(np, "cell-index", NULL); |
| 257 | if (!iprop) { |
| 258 | iprop = of_get_property(np, "device-id", NULL); |
| 259 | if (!iprop) { |
| 260 | pr_debug("fsl-pq-mdio: no UCC ID in node %s\n", |
| 261 | np->full_name); |
| 262 | continue; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 263 | } |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 264 | } |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 265 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 266 | id = be32_to_cpup(iprop); |
| 267 | |
| 268 | /* |
| 269 | * cell-index and device-id for QE nodes are |
| 270 | * numbered from 1, not 0. |
| 271 | */ |
| 272 | if (ucc_set_qe_mux_mii_mng(id - 1) < 0) { |
| 273 | pr_debug("fsl-pq-mdio: invalid UCC ID in node %s\n", |
| 274 | np->full_name); |
| 275 | continue; |
| 276 | } |
| 277 | |
| 278 | pr_debug("fsl-pq-mdio: setting node UCC%u to MII master\n", id); |
| 279 | found_mii_master = true; |
| 280 | } |
Andy Fleming | 952c5ca | 2011-11-11 05:10:39 +0000 | [diff] [blame] | 281 | } |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 282 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 283 | #endif |
| 284 | |
| 285 | static struct of_device_id fsl_pq_mdio_match[] = { |
| 286 | #if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE) |
| 287 | { |
| 288 | .compatible = "fsl,gianfar-tbi", |
| 289 | .data = &(struct fsl_pq_mdio_data) { |
| 290 | .mii_offset = 0, |
| 291 | .get_tbipa = get_gfar_tbipa, |
| 292 | }, |
| 293 | }, |
| 294 | { |
| 295 | .compatible = "fsl,gianfar-mdio", |
| 296 | .data = &(struct fsl_pq_mdio_data) { |
| 297 | .mii_offset = 0, |
| 298 | .get_tbipa = get_gfar_tbipa, |
| 299 | }, |
| 300 | }, |
| 301 | { |
| 302 | .type = "mdio", |
| 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, |
| 307 | }, |
| 308 | }, |
| 309 | { |
| 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, |
| 314 | }, |
| 315 | }, |
| 316 | { |
| 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, |
| 321 | }, |
| 322 | }, |
| 323 | #endif |
| 324 | #if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE) |
| 325 | { |
| 326 | .compatible = "fsl,ucc-mdio", |
| 327 | .data = &(struct fsl_pq_mdio_data) { |
| 328 | .mii_offset = 0, |
| 329 | .get_tbipa = get_ucc_tbipa, |
| 330 | .ucc_configure = ucc_configure, |
| 331 | }, |
| 332 | }, |
| 333 | { |
| 334 | /* Legacy UCC MDIO node */ |
| 335 | .type = "mdio", |
| 336 | .compatible = "ucc_geth_phy", |
| 337 | .data = &(struct fsl_pq_mdio_data) { |
| 338 | .mii_offset = 0, |
| 339 | .get_tbipa = get_ucc_tbipa, |
| 340 | .ucc_configure = ucc_configure, |
| 341 | }, |
| 342 | }, |
| 343 | #endif |
Timur Tabi | 761743e | 2012-08-29 08:08:03 +0000 | [diff] [blame] | 344 | /* No Kconfig option for Fman support yet */ |
| 345 | { |
| 346 | .compatible = "fsl,fman-mdio", |
| 347 | .data = &(struct fsl_pq_mdio_data) { |
| 348 | .mii_offset = 0, |
| 349 | /* Fman TBI operations are handled elsewhere */ |
| 350 | }, |
| 351 | }, |
| 352 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 353 | {}, |
| 354 | }; |
| 355 | MODULE_DEVICE_TABLE(of, fsl_pq_mdio_match); |
| 356 | |
Timur Tabi | 5078ac7 | 2012-08-29 08:08:00 +0000 | [diff] [blame] | 357 | static int fsl_pq_mdio_probe(struct platform_device *pdev) |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 358 | { |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 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; |
Timur Tabi | 5078ac7 | 2012-08-29 08:08:00 +0000 | [diff] [blame] | 362 | struct device_node *np = pdev->dev.of_node; |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 363 | struct resource res; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 364 | struct device_node *tbi; |
Anton Vorontsov | b3319b1 | 2009-12-30 08:23:34 +0000 | [diff] [blame] | 365 | struct fsl_pq_mdio_priv *priv; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 366 | struct mii_bus *new_bus; |
Anton Vorontsov | 08d18f3 | 2010-05-14 04:27:30 +0000 | [diff] [blame] | 367 | int err; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 368 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 369 | dev_dbg(&pdev->dev, "found %s compatible node\n", id->compatible); |
| 370 | |
Timur Tabi | dd3b8a3 | 2012-08-29 08:08:02 +0000 | [diff] [blame] | 371 | new_bus = mdiobus_alloc_size(sizeof(*priv)); |
| 372 | if (!new_bus) |
Anton Vorontsov | b3319b1 | 2009-12-30 08:23:34 +0000 | [diff] [blame] | 373 | return -ENOMEM; |
| 374 | |
Timur Tabi | dd3b8a3 | 2012-08-29 08:08:02 +0000 | [diff] [blame] | 375 | priv = new_bus->priv; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 376 | new_bus->name = "Freescale PowerQUICC MII Bus", |
Timur Tabi | 5078ac7 | 2012-08-29 08:08:00 +0000 | [diff] [blame] | 377 | new_bus->read = &fsl_pq_mdio_read; |
| 378 | new_bus->write = &fsl_pq_mdio_write; |
| 379 | new_bus->reset = &fsl_pq_mdio_reset; |
Timur Tabi | dd3b8a3 | 2012-08-29 08:08:02 +0000 | [diff] [blame] | 380 | new_bus->irq = priv->irqs; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 381 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 382 | err = of_address_to_resource(np, 0, &res); |
| 383 | if (err < 0) { |
| 384 | dev_err(&pdev->dev, "could not obtain address information\n"); |
Timur Tabi | dd3b8a3 | 2012-08-29 08:08:02 +0000 | [diff] [blame] | 385 | goto error; |
Anton Vorontsov | 3b1fd3e | 2010-04-23 07:12:35 +0000 | [diff] [blame] | 386 | } |
| 387 | |
Timur Tabi | 69cfb41 | 2012-08-29 08:07:59 +0000 | [diff] [blame] | 388 | snprintf(new_bus->id, MII_BUS_ID_SIZE, "%s@%llx", np->name, |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 389 | (unsigned long long)res.start); |
Timur Tabi | 69cfb41 | 2012-08-29 08:07:59 +0000 | [diff] [blame] | 390 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 391 | priv->map = of_iomap(np, 0); |
| 392 | if (!priv->map) { |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 393 | err = -ENOMEM; |
Timur Tabi | dd3b8a3 | 2012-08-29 08:08:02 +0000 | [diff] [blame] | 394 | goto error; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 395 | } |
| 396 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 397 | /* |
| 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 |
| 401 | * space. |
| 402 | */ |
| 403 | if (data->mii_offset > resource_size(&res)) { |
| 404 | dev_err(&pdev->dev, "invalid register map\n"); |
| 405 | err = -EINVAL; |
Timur Tabi | dd3b8a3 | 2012-08-29 08:08:02 +0000 | [diff] [blame] | 406 | goto error; |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 407 | } |
| 408 | priv->regs = priv->map + data->mii_offset; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 409 | |
Timur Tabi | 5078ac7 | 2012-08-29 08:08:00 +0000 | [diff] [blame] | 410 | new_bus->parent = &pdev->dev; |
Libo Chen | a0e1860 | 2013-08-19 19:58:40 +0800 | [diff] [blame] | 411 | platform_set_drvdata(pdev, new_bus); |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 412 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 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); |
| 418 | break; |
| 419 | } |
Sandeep Gopalpet | 1d2397d | 2009-11-02 07:03:22 +0000 | [diff] [blame] | 420 | } |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 421 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 422 | if (tbi) { |
| 423 | const u32 *prop = of_get_property(tbi, "reg", NULL); |
| 424 | uint32_t __iomem *tbipa; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 425 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 426 | if (!prop) { |
| 427 | dev_err(&pdev->dev, |
| 428 | "missing 'reg' property in node %s\n", |
| 429 | tbi->full_name); |
| 430 | err = -EBUSY; |
| 431 | goto error; |
| 432 | } |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 433 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 434 | tbipa = data->get_tbipa(priv->map); |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 435 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 436 | out_be32(tbipa, be32_to_cpup(prop)); |
Kenth Eriksson | 464b57d | 2012-03-27 22:05:54 +0000 | [diff] [blame] | 437 | } |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 438 | } |
| 439 | |
Timur Tabi | afae5ad | 2012-08-29 08:08:01 +0000 | [diff] [blame] | 440 | if (data->ucc_configure) |
| 441 | data->ucc_configure(res.start, res.end); |
| 442 | |
Grant Likely | 324931b | 2009-04-25 12:53:07 +0000 | [diff] [blame] | 443 | err = of_mdiobus_register(new_bus, np); |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 444 | if (err) { |
Timur Tabi | 5078ac7 | 2012-08-29 08:08:00 +0000 | [diff] [blame] | 445 | dev_err(&pdev->dev, "cannot register %s as MDIO bus\n", |
| 446 | new_bus->name); |
Timur Tabi | dd3b8a3 | 2012-08-29 08:08:02 +0000 | [diff] [blame] | 447 | goto error; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | return 0; |
| 451 | |
Timur Tabi | dd3b8a3 | 2012-08-29 08:08:02 +0000 | [diff] [blame] | 452 | error: |
| 453 | if (priv->map) |
| 454 | iounmap(priv->map); |
| 455 | |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 456 | kfree(new_bus); |
Timur Tabi | dd3b8a3 | 2012-08-29 08:08:02 +0000 | [diff] [blame] | 457 | |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 458 | return err; |
| 459 | } |
| 460 | |
| 461 | |
Timur Tabi | 5078ac7 | 2012-08-29 08:08:00 +0000 | [diff] [blame] | 462 | static int fsl_pq_mdio_remove(struct platform_device *pdev) |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 463 | { |
Timur Tabi | 5078ac7 | 2012-08-29 08:08:00 +0000 | [diff] [blame] | 464 | struct device *device = &pdev->dev; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 465 | struct mii_bus *bus = dev_get_drvdata(device); |
Anton Vorontsov | b3319b1 | 2009-12-30 08:23:34 +0000 | [diff] [blame] | 466 | struct fsl_pq_mdio_priv *priv = bus->priv; |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 467 | |
| 468 | mdiobus_unregister(bus); |
| 469 | |
Anton Vorontsov | b3319b1 | 2009-12-30 08:23:34 +0000 | [diff] [blame] | 470 | iounmap(priv->map); |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 471 | mdiobus_free(bus); |
| 472 | |
| 473 | return 0; |
| 474 | } |
| 475 | |
Grant Likely | 7488876 | 2011-02-22 21:05:51 -0700 | [diff] [blame] | 476 | static struct platform_driver fsl_pq_mdio_driver = { |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 477 | .driver = { |
| 478 | .name = "fsl-pq_mdio", |
| 479 | .owner = THIS_MODULE, |
| 480 | .of_match_table = fsl_pq_mdio_match, |
| 481 | }, |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 482 | .probe = fsl_pq_mdio_probe, |
| 483 | .remove = fsl_pq_mdio_remove, |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 484 | }; |
| 485 | |
Axel Lin | db62f68 | 2011-11-27 16:44:17 +0000 | [diff] [blame] | 486 | module_platform_driver(fsl_pq_mdio_driver); |
Andy Fleming | 1577ece | 2009-02-04 16:42:12 -0800 | [diff] [blame] | 487 | |
Sebastian Siewior | 2606289 | 2009-11-06 08:50:28 +0000 | [diff] [blame] | 488 | MODULE_LICENSE("GPL"); |