Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1 | /* |
| 2 | * drivers/net/phy/phy_device.c |
| 3 | * |
| 4 | * Framework for finding and configuring PHYs. |
| 5 | * Also contains generic PHY driver |
| 6 | * |
| 7 | * Author: Andy Fleming |
| 8 | * |
| 9 | * Copyright (c) 2004 Freescale Semiconductor, Inc. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify it |
| 12 | * under the terms of the GNU General Public License as published by the |
| 13 | * Free Software Foundation; either version 2 of the License, or (at your |
| 14 | * option) any later version. |
| 15 | * |
| 16 | */ |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 17 | |
| 18 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 19 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 20 | #include <linux/kernel.h> |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 21 | #include <linux/string.h> |
| 22 | #include <linux/errno.h> |
| 23 | #include <linux/unistd.h> |
| 24 | #include <linux/slab.h> |
| 25 | #include <linux/interrupt.h> |
| 26 | #include <linux/init.h> |
| 27 | #include <linux/delay.h> |
| 28 | #include <linux/netdevice.h> |
| 29 | #include <linux/etherdevice.h> |
| 30 | #include <linux/skbuff.h> |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 31 | #include <linux/mm.h> |
| 32 | #include <linux/module.h> |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 33 | #include <linux/mii.h> |
| 34 | #include <linux/ethtool.h> |
| 35 | #include <linux/phy.h> |
| 36 | |
| 37 | #include <asm/io.h> |
| 38 | #include <asm/irq.h> |
| 39 | #include <asm/uaccess.h> |
| 40 | |
Olaf Hering | afcceaa | 2005-12-14 00:33:49 +0100 | [diff] [blame] | 41 | MODULE_DESCRIPTION("PHY library"); |
| 42 | MODULE_AUTHOR("Andy Fleming"); |
| 43 | MODULE_LICENSE("GPL"); |
| 44 | |
Anton Vorontsov | 6f4a7f4 | 2007-12-04 16:17:33 +0300 | [diff] [blame] | 45 | void phy_device_free(struct phy_device *phydev) |
| 46 | { |
Petr Malat | b2a4319 | 2013-02-28 01:01:52 +0000 | [diff] [blame] | 47 | put_device(&phydev->dev); |
Anton Vorontsov | 6f4a7f4 | 2007-12-04 16:17:33 +0300 | [diff] [blame] | 48 | } |
Grant Likely | 4dea547 | 2009-04-25 12:52:46 +0000 | [diff] [blame] | 49 | EXPORT_SYMBOL(phy_device_free); |
Anton Vorontsov | 6f4a7f4 | 2007-12-04 16:17:33 +0300 | [diff] [blame] | 50 | |
| 51 | static void phy_device_release(struct device *dev) |
| 52 | { |
Petr Malat | b2a4319 | 2013-02-28 01:01:52 +0000 | [diff] [blame] | 53 | kfree(to_phy_device(dev)); |
Anton Vorontsov | 6f4a7f4 | 2007-12-04 16:17:33 +0300 | [diff] [blame] | 54 | } |
| 55 | |
Grant Likely | 4dea547 | 2009-04-25 12:52:46 +0000 | [diff] [blame] | 56 | static struct phy_driver genphy_driver; |
| 57 | extern int mdio_bus_init(void); |
| 58 | extern void mdio_bus_exit(void); |
| 59 | |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 60 | static LIST_HEAD(phy_fixup_list); |
| 61 | static DEFINE_MUTEX(phy_fixup_lock); |
| 62 | |
stephen hemminger | 89ff05e | 2010-10-21 08:37:41 +0000 | [diff] [blame] | 63 | static int phy_attach_direct(struct net_device *dev, struct phy_device *phydev, |
| 64 | u32 flags, phy_interface_t interface); |
| 65 | |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 66 | /* |
| 67 | * Creates a new phy_fixup and adds it to the list |
| 68 | * @bus_id: A string which matches phydev->dev.bus_id (or PHY_ANY_ID) |
| 69 | * @phy_uid: Used to match against phydev->phy_id (the UID of the PHY) |
| 70 | * It can also be PHY_ANY_UID |
| 71 | * @phy_uid_mask: Applied to phydev->phy_id and fixup->phy_uid before |
| 72 | * comparison |
| 73 | * @run: The actual code to be run when a matching PHY is found |
| 74 | */ |
| 75 | int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask, |
| 76 | int (*run)(struct phy_device *)) |
| 77 | { |
| 78 | struct phy_fixup *fixup; |
| 79 | |
| 80 | fixup = kzalloc(sizeof(struct phy_fixup), GFP_KERNEL); |
| 81 | if (!fixup) |
| 82 | return -ENOMEM; |
| 83 | |
Kay Sievers | fb28ad3 | 2008-11-10 13:55:14 -0800 | [diff] [blame] | 84 | strlcpy(fixup->bus_id, bus_id, sizeof(fixup->bus_id)); |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 85 | fixup->phy_uid = phy_uid; |
| 86 | fixup->phy_uid_mask = phy_uid_mask; |
| 87 | fixup->run = run; |
| 88 | |
| 89 | mutex_lock(&phy_fixup_lock); |
| 90 | list_add_tail(&fixup->list, &phy_fixup_list); |
| 91 | mutex_unlock(&phy_fixup_lock); |
| 92 | |
| 93 | return 0; |
| 94 | } |
| 95 | EXPORT_SYMBOL(phy_register_fixup); |
| 96 | |
| 97 | /* Registers a fixup to be run on any PHY with the UID in phy_uid */ |
| 98 | int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask, |
| 99 | int (*run)(struct phy_device *)) |
| 100 | { |
| 101 | return phy_register_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask, run); |
| 102 | } |
| 103 | EXPORT_SYMBOL(phy_register_fixup_for_uid); |
| 104 | |
| 105 | /* Registers a fixup to be run on the PHY with id string bus_id */ |
| 106 | int phy_register_fixup_for_id(const char *bus_id, |
| 107 | int (*run)(struct phy_device *)) |
| 108 | { |
| 109 | return phy_register_fixup(bus_id, PHY_ANY_UID, 0xffffffff, run); |
| 110 | } |
| 111 | EXPORT_SYMBOL(phy_register_fixup_for_id); |
| 112 | |
| 113 | /* |
| 114 | * Returns 1 if fixup matches phydev in bus_id and phy_uid. |
| 115 | * Fixups can be set to match any in one or more fields. |
| 116 | */ |
| 117 | static int phy_needs_fixup(struct phy_device *phydev, struct phy_fixup *fixup) |
| 118 | { |
Kay Sievers | fb28ad3 | 2008-11-10 13:55:14 -0800 | [diff] [blame] | 119 | if (strcmp(fixup->bus_id, dev_name(&phydev->dev)) != 0) |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 120 | if (strcmp(fixup->bus_id, PHY_ANY_ID) != 0) |
| 121 | return 0; |
| 122 | |
| 123 | if ((fixup->phy_uid & fixup->phy_uid_mask) != |
| 124 | (phydev->phy_id & fixup->phy_uid_mask)) |
| 125 | if (fixup->phy_uid != PHY_ANY_UID) |
| 126 | return 0; |
| 127 | |
| 128 | return 1; |
| 129 | } |
| 130 | |
| 131 | /* Runs any matching fixups for this phydev */ |
| 132 | int phy_scan_fixups(struct phy_device *phydev) |
| 133 | { |
| 134 | struct phy_fixup *fixup; |
| 135 | |
| 136 | mutex_lock(&phy_fixup_lock); |
| 137 | list_for_each_entry(fixup, &phy_fixup_list, list) { |
| 138 | if (phy_needs_fixup(phydev, fixup)) { |
| 139 | int err; |
| 140 | |
| 141 | err = fixup->run(phydev); |
| 142 | |
Jiri Slaby | bc23283 | 2009-07-13 11:23:39 +0000 | [diff] [blame] | 143 | if (err < 0) { |
| 144 | mutex_unlock(&phy_fixup_lock); |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 145 | return err; |
Jiri Slaby | bc23283 | 2009-07-13 11:23:39 +0000 | [diff] [blame] | 146 | } |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 147 | } |
| 148 | } |
| 149 | mutex_unlock(&phy_fixup_lock); |
| 150 | |
| 151 | return 0; |
| 152 | } |
| 153 | EXPORT_SYMBOL(phy_scan_fixups); |
| 154 | |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 155 | struct phy_device *phy_device_create(struct mii_bus *bus, int addr, int phy_id, |
| 156 | bool is_c45, struct phy_c45_device_ids *c45_ids) |
Vitaly Bordug | 11b0bac | 2006-08-14 23:00:29 -0700 | [diff] [blame] | 157 | { |
| 158 | struct phy_device *dev; |
David Woodhouse | 8626d3b | 2010-04-02 01:05:27 +0000 | [diff] [blame] | 159 | |
Vitaly Bordug | 11b0bac | 2006-08-14 23:00:29 -0700 | [diff] [blame] | 160 | /* We allocate the device, and initialize the |
| 161 | * default values */ |
Robert P. J. Day | cd86128 | 2006-12-13 00:34:52 -0800 | [diff] [blame] | 162 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Vitaly Bordug | 11b0bac | 2006-08-14 23:00:29 -0700 | [diff] [blame] | 163 | |
| 164 | if (NULL == dev) |
| 165 | return (struct phy_device*) PTR_ERR((void*)-ENOMEM); |
| 166 | |
Anton Vorontsov | 6f4a7f4 | 2007-12-04 16:17:33 +0300 | [diff] [blame] | 167 | dev->dev.release = phy_device_release; |
| 168 | |
Vitaly Bordug | 11b0bac | 2006-08-14 23:00:29 -0700 | [diff] [blame] | 169 | dev->speed = 0; |
| 170 | dev->duplex = -1; |
| 171 | dev->pause = dev->asym_pause = 0; |
| 172 | dev->link = 1; |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 173 | dev->interface = PHY_INTERFACE_MODE_GMII; |
Vitaly Bordug | 11b0bac | 2006-08-14 23:00:29 -0700 | [diff] [blame] | 174 | |
| 175 | dev->autoneg = AUTONEG_ENABLE; |
| 176 | |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 177 | dev->is_c45 = is_c45; |
Vitaly Bordug | 11b0bac | 2006-08-14 23:00:29 -0700 | [diff] [blame] | 178 | dev->addr = addr; |
| 179 | dev->phy_id = phy_id; |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 180 | if (c45_ids) |
| 181 | dev->c45_ids = *c45_ids; |
Vitaly Bordug | 11b0bac | 2006-08-14 23:00:29 -0700 | [diff] [blame] | 182 | dev->bus = bus; |
Grant Likely | 4dea547 | 2009-04-25 12:52:46 +0000 | [diff] [blame] | 183 | dev->dev.parent = bus->parent; |
| 184 | dev->dev.bus = &mdio_bus_type; |
| 185 | dev->irq = bus->irq != NULL ? bus->irq[addr] : PHY_POLL; |
| 186 | dev_set_name(&dev->dev, PHY_ID_FMT, bus->id, addr); |
Vitaly Bordug | 11b0bac | 2006-08-14 23:00:29 -0700 | [diff] [blame] | 187 | |
| 188 | dev->state = PHY_DOWN; |
| 189 | |
Nate Case | 35b5f6b | 2008-01-29 10:05:09 -0600 | [diff] [blame] | 190 | mutex_init(&dev->lock); |
Anton Vorontsov | 4f9c85a | 2010-01-18 05:37:16 +0000 | [diff] [blame] | 191 | INIT_DELAYED_WORK(&dev->state_queue, phy_state_machine); |
Vitaly Bordug | 11b0bac | 2006-08-14 23:00:29 -0700 | [diff] [blame] | 192 | |
David Woodhouse | 8626d3b | 2010-04-02 01:05:27 +0000 | [diff] [blame] | 193 | /* Request the appropriate module unconditionally; don't |
| 194 | bother trying to do so only if it isn't already loaded, |
| 195 | because that gets complicated. A hotplug event would have |
| 196 | done an unconditional modprobe anyway. |
| 197 | We don't do normal hotplug because it won't work for MDIO |
| 198 | -- because it relies on the device staying around for long |
| 199 | enough for the driver to get loaded. With MDIO, the NIC |
| 200 | driver will get bored and give up as soon as it finds that |
| 201 | there's no driver _already_ loaded. */ |
| 202 | request_module(MDIO_MODULE_PREFIX MDIO_ID_FMT, MDIO_ID_ARGS(phy_id)); |
| 203 | |
Petr Malat | b2a4319 | 2013-02-28 01:01:52 +0000 | [diff] [blame] | 204 | device_initialize(&dev->dev); |
| 205 | |
Vitaly Bordug | 11b0bac | 2006-08-14 23:00:29 -0700 | [diff] [blame] | 206 | return dev; |
| 207 | } |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 208 | EXPORT_SYMBOL(phy_device_create); |
| 209 | |
| 210 | /** |
| 211 | * get_phy_c45_ids - reads the specified addr for its 802.3-c45 IDs. |
| 212 | * @bus: the target MII bus |
| 213 | * @addr: PHY address on the MII bus |
| 214 | * @phy_id: where to store the ID retrieved. |
| 215 | * @c45_ids: where to store the c45 ID information. |
| 216 | * |
| 217 | * If the PHY devices-in-package appears to be valid, it and the |
| 218 | * corresponding identifiers are stored in @c45_ids, zero is stored |
| 219 | * in @phy_id. Otherwise 0xffffffff is stored in @phy_id. Returns |
| 220 | * zero on success. |
| 221 | * |
| 222 | */ |
| 223 | static int get_phy_c45_ids(struct mii_bus *bus, int addr, u32 *phy_id, |
| 224 | struct phy_c45_device_ids *c45_ids) { |
| 225 | int phy_reg; |
| 226 | int i, reg_addr; |
| 227 | const int num_ids = ARRAY_SIZE(c45_ids->device_ids); |
| 228 | |
| 229 | /* Find first non-zero Devices In package. Device |
| 230 | * zero is reserved, so don't probe it. |
| 231 | */ |
| 232 | for (i = 1; |
| 233 | i < num_ids && c45_ids->devices_in_package == 0; |
| 234 | i++) { |
| 235 | reg_addr = MII_ADDR_C45 | i << 16 | 6; |
| 236 | phy_reg = mdiobus_read(bus, addr, reg_addr); |
| 237 | if (phy_reg < 0) |
| 238 | return -EIO; |
| 239 | c45_ids->devices_in_package = (phy_reg & 0xffff) << 16; |
| 240 | |
| 241 | reg_addr = MII_ADDR_C45 | i << 16 | 5; |
| 242 | phy_reg = mdiobus_read(bus, addr, reg_addr); |
| 243 | if (phy_reg < 0) |
| 244 | return -EIO; |
| 245 | c45_ids->devices_in_package |= (phy_reg & 0xffff); |
| 246 | |
| 247 | /* If mostly Fs, there is no device there, |
| 248 | * let's get out of here. |
| 249 | */ |
| 250 | if ((c45_ids->devices_in_package & 0x1fffffff) == 0x1fffffff) { |
| 251 | *phy_id = 0xffffffff; |
| 252 | return 0; |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | /* Now probe Device Identifiers for each device present. */ |
| 257 | for (i = 1; i < num_ids; i++) { |
| 258 | if (!(c45_ids->devices_in_package & (1 << i))) |
| 259 | continue; |
| 260 | |
| 261 | reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID1; |
| 262 | phy_reg = mdiobus_read(bus, addr, reg_addr); |
| 263 | if (phy_reg < 0) |
| 264 | return -EIO; |
| 265 | c45_ids->device_ids[i] = (phy_reg & 0xffff) << 16; |
| 266 | |
| 267 | reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID2; |
| 268 | phy_reg = mdiobus_read(bus, addr, reg_addr); |
| 269 | if (phy_reg < 0) |
| 270 | return -EIO; |
| 271 | c45_ids->device_ids[i] |= (phy_reg & 0xffff); |
| 272 | } |
| 273 | *phy_id = 0; |
| 274 | return 0; |
| 275 | } |
Vitaly Bordug | 11b0bac | 2006-08-14 23:00:29 -0700 | [diff] [blame] | 276 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 277 | /** |
Paul Gortmaker | cac1f3c | 2008-04-15 12:49:21 -0400 | [diff] [blame] | 278 | * get_phy_id - reads the specified addr for its ID. |
| 279 | * @bus: the target MII bus |
| 280 | * @addr: PHY address on the MII bus |
| 281 | * @phy_id: where to store the ID retrieved. |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 282 | * @is_c45: If true the PHY uses the 802.3 clause 45 protocol |
| 283 | * @c45_ids: where to store the c45 ID information. |
Paul Gortmaker | cac1f3c | 2008-04-15 12:49:21 -0400 | [diff] [blame] | 284 | * |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 285 | * Description: In the case of a 802.3-c22 PHY, reads the ID registers |
| 286 | * of the PHY at @addr on the @bus, stores it in @phy_id and returns |
| 287 | * zero on success. |
| 288 | * |
| 289 | * In the case of a 802.3-c45 PHY, get_phy_c45_ids() is invoked, and |
| 290 | * its return value is in turn returned. |
| 291 | * |
Paul Gortmaker | cac1f3c | 2008-04-15 12:49:21 -0400 | [diff] [blame] | 292 | */ |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 293 | static int get_phy_id(struct mii_bus *bus, int addr, u32 *phy_id, |
| 294 | bool is_c45, struct phy_c45_device_ids *c45_ids) |
Paul Gortmaker | cac1f3c | 2008-04-15 12:49:21 -0400 | [diff] [blame] | 295 | { |
| 296 | int phy_reg; |
| 297 | |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 298 | if (is_c45) |
| 299 | return get_phy_c45_ids(bus, addr, phy_id, c45_ids); |
| 300 | |
Paul Gortmaker | cac1f3c | 2008-04-15 12:49:21 -0400 | [diff] [blame] | 301 | /* Grab the bits from PHYIR1, and put them |
| 302 | * in the upper half */ |
David Daney | 6fe3264 | 2011-09-30 11:51:22 +0000 | [diff] [blame] | 303 | phy_reg = mdiobus_read(bus, addr, MII_PHYSID1); |
Paul Gortmaker | cac1f3c | 2008-04-15 12:49:21 -0400 | [diff] [blame] | 304 | |
| 305 | if (phy_reg < 0) |
| 306 | return -EIO; |
| 307 | |
| 308 | *phy_id = (phy_reg & 0xffff) << 16; |
| 309 | |
| 310 | /* Grab the bits from PHYIR2, and put them in the lower half */ |
David Daney | 6fe3264 | 2011-09-30 11:51:22 +0000 | [diff] [blame] | 311 | phy_reg = mdiobus_read(bus, addr, MII_PHYSID2); |
Paul Gortmaker | cac1f3c | 2008-04-15 12:49:21 -0400 | [diff] [blame] | 312 | |
| 313 | if (phy_reg < 0) |
| 314 | return -EIO; |
| 315 | |
| 316 | *phy_id |= (phy_reg & 0xffff); |
| 317 | |
| 318 | return 0; |
| 319 | } |
| 320 | |
| 321 | /** |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 322 | * get_phy_device - reads the specified PHY device and returns its @phy_device struct |
| 323 | * @bus: the target MII bus |
| 324 | * @addr: PHY address on the MII bus |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 325 | * @is_c45: If true the PHY uses the 802.3 clause 45 protocol |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 326 | * |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 327 | * Description: Reads the ID registers of the PHY at @addr on the |
| 328 | * @bus, then allocates and returns the phy_device to represent it. |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 329 | */ |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 330 | struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45) |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 331 | { |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 332 | struct phy_c45_device_ids c45_ids = {0}; |
David S. Miller | 160c85f | 2012-06-27 21:28:14 -0700 | [diff] [blame] | 333 | struct phy_device *dev = NULL; |
| 334 | u32 phy_id = 0; |
Paul Gortmaker | cac1f3c | 2008-04-15 12:49:21 -0400 | [diff] [blame] | 335 | int r; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 336 | |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 337 | r = get_phy_id(bus, addr, &phy_id, is_c45, &c45_ids); |
Paul Gortmaker | cac1f3c | 2008-04-15 12:49:21 -0400 | [diff] [blame] | 338 | if (r) |
| 339 | return ERR_PTR(r); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 340 | |
Giuseppe Cavallaro | 6436cbc | 2008-11-20 20:43:18 -0800 | [diff] [blame] | 341 | /* If the phy_id is mostly Fs, there is no device there */ |
| 342 | if ((phy_id & 0x1fffffff) == 0x1fffffff) |
| 343 | return NULL; |
| 344 | |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 345 | dev = phy_device_create(bus, addr, phy_id, is_c45, &c45_ids); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 346 | |
| 347 | return dev; |
| 348 | } |
Grant Likely | 4dea547 | 2009-04-25 12:52:46 +0000 | [diff] [blame] | 349 | EXPORT_SYMBOL(get_phy_device); |
| 350 | |
| 351 | /** |
| 352 | * phy_device_register - Register the phy device on the MDIO bus |
Randy Dunlap | 1d4ac5d | 2009-06-16 16:56:33 +0000 | [diff] [blame] | 353 | * @phydev: phy_device structure to be added to the MDIO bus |
Grant Likely | 4dea547 | 2009-04-25 12:52:46 +0000 | [diff] [blame] | 354 | */ |
| 355 | int phy_device_register(struct phy_device *phydev) |
| 356 | { |
| 357 | int err; |
| 358 | |
| 359 | /* Don't register a phy if one is already registered at this |
| 360 | * address */ |
| 361 | if (phydev->bus->phy_map[phydev->addr]) |
| 362 | return -EINVAL; |
| 363 | phydev->bus->phy_map[phydev->addr] = phydev; |
| 364 | |
| 365 | /* Run all of the fixups for this PHY */ |
| 366 | phy_scan_fixups(phydev); |
| 367 | |
Petr Malat | b2a4319 | 2013-02-28 01:01:52 +0000 | [diff] [blame] | 368 | err = device_add(&phydev->dev); |
Grant Likely | 4dea547 | 2009-04-25 12:52:46 +0000 | [diff] [blame] | 369 | if (err) { |
Petr Malat | b2a4319 | 2013-02-28 01:01:52 +0000 | [diff] [blame] | 370 | pr_err("PHY %d failed to add\n", phydev->addr); |
Grant Likely | 4dea547 | 2009-04-25 12:52:46 +0000 | [diff] [blame] | 371 | goto out; |
| 372 | } |
| 373 | |
| 374 | return 0; |
| 375 | |
| 376 | out: |
| 377 | phydev->bus->phy_map[phydev->addr] = NULL; |
| 378 | return err; |
| 379 | } |
| 380 | EXPORT_SYMBOL(phy_device_register); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 381 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 382 | /** |
Jiri Pirko | f8f76db | 2010-02-04 10:23:02 -0800 | [diff] [blame] | 383 | * phy_find_first - finds the first PHY device on the bus |
| 384 | * @bus: the target MII bus |
| 385 | */ |
| 386 | struct phy_device *phy_find_first(struct mii_bus *bus) |
| 387 | { |
| 388 | int addr; |
| 389 | |
| 390 | for (addr = 0; addr < PHY_MAX_ADDR; addr++) { |
| 391 | if (bus->phy_map[addr]) |
| 392 | return bus->phy_map[addr]; |
| 393 | } |
| 394 | return NULL; |
| 395 | } |
| 396 | EXPORT_SYMBOL(phy_find_first); |
| 397 | |
| 398 | /** |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 399 | * phy_prepare_link - prepares the PHY layer to monitor link status |
| 400 | * @phydev: target phy_device struct |
| 401 | * @handler: callback function for link status change notifications |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 402 | * |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 403 | * Description: Tells the PHY infrastructure to handle the |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 404 | * gory details on monitoring link status (whether through |
| 405 | * polling or an interrupt), and to call back to the |
| 406 | * connected device driver when the link status changes. |
| 407 | * If you want to monitor your own link state, don't call |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 408 | * this function. |
| 409 | */ |
stephen hemminger | 89ff05e | 2010-10-21 08:37:41 +0000 | [diff] [blame] | 410 | static void phy_prepare_link(struct phy_device *phydev, |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 411 | void (*handler)(struct net_device *)) |
| 412 | { |
| 413 | phydev->adjust_link = handler; |
| 414 | } |
| 415 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 416 | /** |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 417 | * phy_connect_direct - connect an ethernet device to a specific phy_device |
| 418 | * @dev: the network device to connect |
| 419 | * @phydev: the pointer to the phy device |
| 420 | * @handler: callback function for state change notifications |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 421 | * @interface: PHY device's interface |
| 422 | */ |
| 423 | int phy_connect_direct(struct net_device *dev, struct phy_device *phydev, |
Florian Fainelli | f9a8f83 | 2013-01-14 00:52:52 +0000 | [diff] [blame] | 424 | void (*handler)(struct net_device *), |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 425 | phy_interface_t interface) |
| 426 | { |
| 427 | int rc; |
| 428 | |
Florian Fainelli | f9a8f83 | 2013-01-14 00:52:52 +0000 | [diff] [blame] | 429 | rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface); |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 430 | if (rc) |
| 431 | return rc; |
| 432 | |
| 433 | phy_prepare_link(phydev, handler); |
| 434 | phy_start_machine(phydev, NULL); |
| 435 | if (phydev->irq > 0) |
| 436 | phy_start_interrupts(phydev); |
| 437 | |
| 438 | return 0; |
| 439 | } |
| 440 | EXPORT_SYMBOL(phy_connect_direct); |
| 441 | |
| 442 | /** |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 443 | * phy_connect - connect an ethernet device to a PHY device |
| 444 | * @dev: the network device to connect |
Randy Dunlap | 5d12b13 | 2008-04-28 10:58:22 -0700 | [diff] [blame] | 445 | * @bus_id: the id string of the PHY device to connect |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 446 | * @handler: callback function for state change notifications |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 447 | * @interface: PHY device's interface |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 448 | * |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 449 | * Description: Convenience function for connecting ethernet |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 450 | * devices to PHY devices. The default behavior is for |
| 451 | * the PHY infrastructure to handle everything, and only notify |
| 452 | * the connected driver when the link status changes. If you |
| 453 | * don't want, or can't use the provided functionality, you may |
| 454 | * choose to call only the subset of functions which provide |
| 455 | * the desired functionality. |
| 456 | */ |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 457 | struct phy_device * phy_connect(struct net_device *dev, const char *bus_id, |
Florian Fainelli | f9a8f83 | 2013-01-14 00:52:52 +0000 | [diff] [blame] | 458 | void (*handler)(struct net_device *), |
Randy Dunlap | 1a16893 | 2007-02-05 10:44:20 -0800 | [diff] [blame] | 459 | phy_interface_t interface) |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 460 | { |
| 461 | struct phy_device *phydev; |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 462 | struct device *d; |
| 463 | int rc; |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 464 | |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 465 | /* Search the list of PHY devices on the mdio bus for the |
| 466 | * PHY with the requested name */ |
| 467 | d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id); |
| 468 | if (!d) { |
| 469 | pr_err("PHY %s not found\n", bus_id); |
| 470 | return ERR_PTR(-ENODEV); |
| 471 | } |
| 472 | phydev = to_phy_device(d); |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 473 | |
Florian Fainelli | f9a8f83 | 2013-01-14 00:52:52 +0000 | [diff] [blame] | 474 | rc = phy_connect_direct(dev, phydev, handler, interface); |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 475 | if (rc) |
| 476 | return ERR_PTR(rc); |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 477 | |
| 478 | return phydev; |
| 479 | } |
| 480 | EXPORT_SYMBOL(phy_connect); |
| 481 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 482 | /** |
| 483 | * phy_disconnect - disable interrupts, stop state machine, and detach a PHY device |
| 484 | * @phydev: target phy_device struct |
| 485 | */ |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 486 | void phy_disconnect(struct phy_device *phydev) |
| 487 | { |
| 488 | if (phydev->irq > 0) |
| 489 | phy_stop_interrupts(phydev); |
| 490 | |
| 491 | phy_stop_machine(phydev); |
| 492 | |
| 493 | phydev->adjust_link = NULL; |
| 494 | |
| 495 | phy_detach(phydev); |
| 496 | } |
| 497 | EXPORT_SYMBOL(phy_disconnect); |
| 498 | |
Anton Vorontsov | 2f5cb43 | 2009-12-30 08:23:30 +0000 | [diff] [blame] | 499 | int phy_init_hw(struct phy_device *phydev) |
| 500 | { |
| 501 | int ret; |
| 502 | |
| 503 | if (!phydev->drv || !phydev->drv->config_init) |
| 504 | return 0; |
| 505 | |
| 506 | ret = phy_scan_fixups(phydev); |
| 507 | if (ret < 0) |
| 508 | return ret; |
| 509 | |
| 510 | return phydev->drv->config_init(phydev); |
| 511 | } |
| 512 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 513 | /** |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 514 | * phy_attach_direct - attach a network device to a given PHY device pointer |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 515 | * @dev: network device to attach |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 516 | * @phydev: Pointer to phy_device to attach |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 517 | * @flags: PHY device's dev_flags |
| 518 | * @interface: PHY device's interface |
| 519 | * |
| 520 | * Description: Called by drivers to attach to a particular PHY |
| 521 | * device. The phy_device is found, and properly hooked up |
| 522 | * to the phy_driver. If no driver is attached, then the |
| 523 | * genphy_driver is used. The phy_device is given a ptr to |
| 524 | * the attaching device, and given a callback for link status |
| 525 | * change. The phy_device is returned to the attaching driver. |
| 526 | */ |
stephen hemminger | 89ff05e | 2010-10-21 08:37:41 +0000 | [diff] [blame] | 527 | static int phy_attach_direct(struct net_device *dev, struct phy_device *phydev, |
| 528 | u32 flags, phy_interface_t interface) |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 529 | { |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 530 | struct device *d = &phydev->dev; |
Marc Kleine-Budde | d005a09 | 2011-03-28 14:54:08 +0000 | [diff] [blame] | 531 | int err; |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 532 | |
| 533 | /* Assume that if there is no driver, that it doesn't |
| 534 | * exist, and we should use the genphy driver. */ |
| 535 | if (NULL == d->driver) { |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 536 | if (phydev->is_c45) { |
| 537 | pr_err("No driver for phy %x\n", phydev->phy_id); |
| 538 | return -ENODEV; |
| 539 | } |
| 540 | |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 541 | d->driver = &genphy_driver.driver; |
| 542 | |
| 543 | err = d->driver->probe(d); |
Jeff Garzik | b7a00ec | 2006-10-01 07:27:46 -0400 | [diff] [blame] | 544 | if (err >= 0) |
| 545 | err = device_bind_driver(d); |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 546 | |
Jeff Garzik | b7a00ec | 2006-10-01 07:27:46 -0400 | [diff] [blame] | 547 | if (err) |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 548 | return err; |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | if (phydev->attached_dev) { |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 552 | dev_err(&dev->dev, "PHY already attached\n"); |
| 553 | return -EBUSY; |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 554 | } |
| 555 | |
| 556 | phydev->attached_dev = dev; |
Richard Cochran | c1f19b5 | 2010-07-17 08:49:36 +0000 | [diff] [blame] | 557 | dev->phydev = phydev; |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 558 | |
| 559 | phydev->dev_flags = flags; |
| 560 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 561 | phydev->interface = interface; |
| 562 | |
Anton Vorontsov | ef24b16 | 2010-08-24 14:46:12 -0700 | [diff] [blame] | 563 | phydev->state = PHY_READY; |
| 564 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 565 | /* Do initial configuration here, now that |
| 566 | * we have certain key parameters |
| 567 | * (dev_flags and interface) */ |
Marc Kleine-Budde | d005a09 | 2011-03-28 14:54:08 +0000 | [diff] [blame] | 568 | err = phy_init_hw(phydev); |
| 569 | if (err) |
| 570 | phy_detach(phydev); |
| 571 | |
| 572 | return err; |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 573 | } |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 574 | |
| 575 | /** |
| 576 | * phy_attach - attach a network device to a particular PHY device |
| 577 | * @dev: network device to attach |
| 578 | * @bus_id: Bus ID of PHY device to attach |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 579 | * @interface: PHY device's interface |
| 580 | * |
| 581 | * Description: Same as phy_attach_direct() except that a PHY bus_id |
| 582 | * string is passed instead of a pointer to a struct phy_device. |
| 583 | */ |
| 584 | struct phy_device *phy_attach(struct net_device *dev, |
Florian Fainelli | f9a8f83 | 2013-01-14 00:52:52 +0000 | [diff] [blame] | 585 | const char *bus_id, phy_interface_t interface) |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 586 | { |
| 587 | struct bus_type *bus = &mdio_bus_type; |
| 588 | struct phy_device *phydev; |
| 589 | struct device *d; |
| 590 | int rc; |
| 591 | |
| 592 | /* Search the list of PHY devices on the mdio bus for the |
| 593 | * PHY with the requested name */ |
| 594 | d = bus_find_device_by_name(bus, NULL, bus_id); |
| 595 | if (!d) { |
| 596 | pr_err("PHY %s not found\n", bus_id); |
| 597 | return ERR_PTR(-ENODEV); |
| 598 | } |
| 599 | phydev = to_phy_device(d); |
| 600 | |
Florian Fainelli | f9a8f83 | 2013-01-14 00:52:52 +0000 | [diff] [blame] | 601 | rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface); |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 602 | if (rc) |
| 603 | return ERR_PTR(rc); |
| 604 | |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 605 | return phydev; |
| 606 | } |
| 607 | EXPORT_SYMBOL(phy_attach); |
| 608 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 609 | /** |
| 610 | * phy_detach - detach a PHY device from its network device |
| 611 | * @phydev: target phy_device struct |
| 612 | */ |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 613 | void phy_detach(struct phy_device *phydev) |
| 614 | { |
Richard Cochran | c1f19b5 | 2010-07-17 08:49:36 +0000 | [diff] [blame] | 615 | phydev->attached_dev->phydev = NULL; |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 616 | phydev->attached_dev = NULL; |
| 617 | |
| 618 | /* If the device had no specific driver before (i.e. - it |
| 619 | * was using the generic driver), we unbind the device |
| 620 | * from the generic driver so that there's a chance a |
| 621 | * real driver could be loaded */ |
Greg Kroah-Hartman | 87aebe0 | 2007-04-09 11:52:31 -0400 | [diff] [blame] | 622 | if (phydev->dev.driver == &genphy_driver.driver) |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 623 | device_release_driver(&phydev->dev); |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 624 | } |
| 625 | EXPORT_SYMBOL(phy_detach); |
| 626 | |
| 627 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 628 | /* Generic PHY support and helper functions */ |
| 629 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 630 | /** |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 631 | * genphy_config_advert - sanitize and advertise auto-negotiation parameters |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 632 | * @phydev: target phy_device struct |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 633 | * |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 634 | * Description: Writes MII_ADVERTISE with the appropriate values, |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 635 | * after sanitizing the values to make sure we only advertise |
Trent Piepho | 51e2a38 | 2008-09-24 10:55:46 +0000 | [diff] [blame] | 636 | * what is supported. Returns < 0 on error, 0 if the PHY's advertisement |
| 637 | * hasn't changed, and > 0 if it has changed. |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 638 | */ |
stephen hemminger | 89ff05e | 2010-10-21 08:37:41 +0000 | [diff] [blame] | 639 | static int genphy_config_advert(struct phy_device *phydev) |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 640 | { |
| 641 | u32 advertise; |
Trent Piepho | 51e2a38 | 2008-09-24 10:55:46 +0000 | [diff] [blame] | 642 | int oldadv, adv; |
| 643 | int err, changed = 0; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 644 | |
| 645 | /* Only allow advertising what |
| 646 | * this PHY supports */ |
| 647 | phydev->advertising &= phydev->supported; |
| 648 | advertise = phydev->advertising; |
| 649 | |
| 650 | /* Setup standard advertisement */ |
Trent Piepho | 51e2a38 | 2008-09-24 10:55:46 +0000 | [diff] [blame] | 651 | oldadv = adv = phy_read(phydev, MII_ADVERTISE); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 652 | |
| 653 | if (adv < 0) |
| 654 | return adv; |
| 655 | |
Matt Carlson | 28011cf | 2011-11-16 18:36:59 -0500 | [diff] [blame] | 656 | adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4 | ADVERTISE_PAUSE_CAP | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 657 | ADVERTISE_PAUSE_ASYM); |
Matt Carlson | 37f0702 | 2011-11-17 14:30:55 +0000 | [diff] [blame] | 658 | adv |= ethtool_adv_to_mii_adv_t(advertise); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 659 | |
Trent Piepho | 51e2a38 | 2008-09-24 10:55:46 +0000 | [diff] [blame] | 660 | if (adv != oldadv) { |
| 661 | err = phy_write(phydev, MII_ADVERTISE, adv); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 662 | |
Trent Piepho | 51e2a38 | 2008-09-24 10:55:46 +0000 | [diff] [blame] | 663 | if (err < 0) |
| 664 | return err; |
| 665 | changed = 1; |
| 666 | } |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 667 | |
| 668 | /* Configure gigabit if it's supported */ |
| 669 | if (phydev->supported & (SUPPORTED_1000baseT_Half | |
| 670 | SUPPORTED_1000baseT_Full)) { |
Trent Piepho | 51e2a38 | 2008-09-24 10:55:46 +0000 | [diff] [blame] | 671 | oldadv = adv = phy_read(phydev, MII_CTRL1000); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 672 | |
| 673 | if (adv < 0) |
| 674 | return adv; |
| 675 | |
| 676 | adv &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF); |
Matt Carlson | 37f0702 | 2011-11-17 14:30:55 +0000 | [diff] [blame] | 677 | adv |= ethtool_adv_to_mii_ctrl1000_t(advertise); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 678 | |
Trent Piepho | 51e2a38 | 2008-09-24 10:55:46 +0000 | [diff] [blame] | 679 | if (adv != oldadv) { |
| 680 | err = phy_write(phydev, MII_CTRL1000, adv); |
| 681 | |
| 682 | if (err < 0) |
| 683 | return err; |
| 684 | changed = 1; |
| 685 | } |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 686 | } |
| 687 | |
Trent Piepho | 51e2a38 | 2008-09-24 10:55:46 +0000 | [diff] [blame] | 688 | return changed; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 689 | } |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 690 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 691 | /** |
| 692 | * genphy_setup_forced - configures/forces speed/duplex from @phydev |
| 693 | * @phydev: target phy_device struct |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 694 | * |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 695 | * Description: Configures MII_BMCR to force speed/duplex |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 696 | * to the values in phydev. Assumes that the values are valid. |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 697 | * Please see phy_sanitize_settings(). |
| 698 | */ |
stephen hemminger | 89ff05e | 2010-10-21 08:37:41 +0000 | [diff] [blame] | 699 | static int genphy_setup_forced(struct phy_device *phydev) |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 700 | { |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 701 | int err; |
Domen Puncer | bc1e0a0 | 2007-08-17 08:54:45 +0200 | [diff] [blame] | 702 | int ctl = 0; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 703 | |
| 704 | phydev->pause = phydev->asym_pause = 0; |
| 705 | |
| 706 | if (SPEED_1000 == phydev->speed) |
| 707 | ctl |= BMCR_SPEED1000; |
| 708 | else if (SPEED_100 == phydev->speed) |
| 709 | ctl |= BMCR_SPEED100; |
| 710 | |
| 711 | if (DUPLEX_FULL == phydev->duplex) |
| 712 | ctl |= BMCR_FULLDPLX; |
| 713 | |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 714 | err = phy_write(phydev, MII_BMCR, ctl); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 715 | |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 716 | return err; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 717 | } |
| 718 | |
| 719 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 720 | /** |
| 721 | * genphy_restart_aneg - Enable and Restart Autonegotiation |
| 722 | * @phydev: target phy_device struct |
| 723 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 724 | int genphy_restart_aneg(struct phy_device *phydev) |
| 725 | { |
| 726 | int ctl; |
| 727 | |
| 728 | ctl = phy_read(phydev, MII_BMCR); |
| 729 | |
| 730 | if (ctl < 0) |
| 731 | return ctl; |
| 732 | |
| 733 | ctl |= (BMCR_ANENABLE | BMCR_ANRESTART); |
| 734 | |
| 735 | /* Don't isolate the PHY if we're negotiating */ |
| 736 | ctl &= ~(BMCR_ISOLATE); |
| 737 | |
| 738 | ctl = phy_write(phydev, MII_BMCR, ctl); |
| 739 | |
| 740 | return ctl; |
| 741 | } |
Adrian Bunk | 892871d | 2008-10-13 18:48:09 -0700 | [diff] [blame] | 742 | EXPORT_SYMBOL(genphy_restart_aneg); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 743 | |
| 744 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 745 | /** |
| 746 | * genphy_config_aneg - restart auto-negotiation or write BMCR |
| 747 | * @phydev: target phy_device struct |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 748 | * |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 749 | * Description: If auto-negotiation is enabled, we configure the |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 750 | * advertising, and then restart auto-negotiation. If it is not |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 751 | * enabled, then we write the BMCR. |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 752 | */ |
| 753 | int genphy_config_aneg(struct phy_device *phydev) |
| 754 | { |
Trent Piepho | de339c2 | 2008-11-19 15:52:41 -0800 | [diff] [blame] | 755 | int result; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 756 | |
Trent Piepho | de339c2 | 2008-11-19 15:52:41 -0800 | [diff] [blame] | 757 | if (AUTONEG_ENABLE != phydev->autoneg) |
| 758 | return genphy_setup_forced(phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 759 | |
Trent Piepho | de339c2 | 2008-11-19 15:52:41 -0800 | [diff] [blame] | 760 | result = genphy_config_advert(phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 761 | |
Trent Piepho | de339c2 | 2008-11-19 15:52:41 -0800 | [diff] [blame] | 762 | if (result < 0) /* error */ |
| 763 | return result; |
| 764 | |
| 765 | if (result == 0) { |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 766 | /* Advertisement hasn't changed, but maybe aneg was never on to |
Trent Piepho | de339c2 | 2008-11-19 15:52:41 -0800 | [diff] [blame] | 767 | * begin with? Or maybe phy was isolated? */ |
| 768 | int ctl = phy_read(phydev, MII_BMCR); |
| 769 | |
| 770 | if (ctl < 0) |
| 771 | return ctl; |
| 772 | |
| 773 | if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE)) |
| 774 | result = 1; /* do restart aneg */ |
| 775 | } |
| 776 | |
| 777 | /* Only restart aneg if we are advertising something different |
| 778 | * than we were before. */ |
| 779 | if (result > 0) |
| 780 | result = genphy_restart_aneg(phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 781 | |
Trent Piepho | 51e2a38 | 2008-09-24 10:55:46 +0000 | [diff] [blame] | 782 | return result; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 783 | } |
| 784 | EXPORT_SYMBOL(genphy_config_aneg); |
| 785 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 786 | /** |
| 787 | * genphy_update_link - update link status in @phydev |
| 788 | * @phydev: target phy_device struct |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 789 | * |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 790 | * Description: Update the value in phydev->link to reflect the |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 791 | * current link value. In order to do this, we need to read |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 792 | * the status register twice, keeping the second value. |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 793 | */ |
| 794 | int genphy_update_link(struct phy_device *phydev) |
| 795 | { |
| 796 | int status; |
| 797 | |
| 798 | /* Do a fake read */ |
| 799 | status = phy_read(phydev, MII_BMSR); |
| 800 | |
| 801 | if (status < 0) |
| 802 | return status; |
| 803 | |
| 804 | /* Read link and autonegotiation status */ |
| 805 | status = phy_read(phydev, MII_BMSR); |
| 806 | |
| 807 | if (status < 0) |
| 808 | return status; |
| 809 | |
| 810 | if ((status & BMSR_LSTATUS) == 0) |
| 811 | phydev->link = 0; |
| 812 | else |
| 813 | phydev->link = 1; |
| 814 | |
| 815 | return 0; |
| 816 | } |
Andy Fleming | 6b65552 | 2006-10-16 16:19:17 -0500 | [diff] [blame] | 817 | EXPORT_SYMBOL(genphy_update_link); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 818 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 819 | /** |
| 820 | * genphy_read_status - check the link status and update current link state |
| 821 | * @phydev: target phy_device struct |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 822 | * |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 823 | * Description: Check the link, then figure out the current state |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 824 | * by comparing what we advertise with what the link partner |
| 825 | * advertises. Start by checking the gigabit possibilities, |
| 826 | * then move on to 10/100. |
| 827 | */ |
| 828 | int genphy_read_status(struct phy_device *phydev) |
| 829 | { |
| 830 | int adv; |
| 831 | int err; |
| 832 | int lpa; |
| 833 | int lpagb = 0; |
| 834 | |
| 835 | /* Update the link, but return if there |
| 836 | * was an error */ |
| 837 | err = genphy_update_link(phydev); |
| 838 | if (err) |
| 839 | return err; |
| 840 | |
| 841 | if (AUTONEG_ENABLE == phydev->autoneg) { |
| 842 | if (phydev->supported & (SUPPORTED_1000baseT_Half |
| 843 | | SUPPORTED_1000baseT_Full)) { |
| 844 | lpagb = phy_read(phydev, MII_STAT1000); |
| 845 | |
| 846 | if (lpagb < 0) |
| 847 | return lpagb; |
| 848 | |
| 849 | adv = phy_read(phydev, MII_CTRL1000); |
| 850 | |
| 851 | if (adv < 0) |
| 852 | return adv; |
| 853 | |
| 854 | lpagb &= adv << 2; |
| 855 | } |
| 856 | |
| 857 | lpa = phy_read(phydev, MII_LPA); |
| 858 | |
| 859 | if (lpa < 0) |
| 860 | return lpa; |
| 861 | |
| 862 | adv = phy_read(phydev, MII_ADVERTISE); |
| 863 | |
| 864 | if (adv < 0) |
| 865 | return adv; |
| 866 | |
| 867 | lpa &= adv; |
| 868 | |
| 869 | phydev->speed = SPEED_10; |
| 870 | phydev->duplex = DUPLEX_HALF; |
| 871 | phydev->pause = phydev->asym_pause = 0; |
| 872 | |
| 873 | if (lpagb & (LPA_1000FULL | LPA_1000HALF)) { |
| 874 | phydev->speed = SPEED_1000; |
| 875 | |
| 876 | if (lpagb & LPA_1000FULL) |
| 877 | phydev->duplex = DUPLEX_FULL; |
| 878 | } else if (lpa & (LPA_100FULL | LPA_100HALF)) { |
| 879 | phydev->speed = SPEED_100; |
| 880 | |
| 881 | if (lpa & LPA_100FULL) |
| 882 | phydev->duplex = DUPLEX_FULL; |
| 883 | } else |
| 884 | if (lpa & LPA_10FULL) |
| 885 | phydev->duplex = DUPLEX_FULL; |
| 886 | |
| 887 | if (phydev->duplex == DUPLEX_FULL){ |
| 888 | phydev->pause = lpa & LPA_PAUSE_CAP ? 1 : 0; |
| 889 | phydev->asym_pause = lpa & LPA_PAUSE_ASYM ? 1 : 0; |
| 890 | } |
| 891 | } else { |
| 892 | int bmcr = phy_read(phydev, MII_BMCR); |
| 893 | if (bmcr < 0) |
| 894 | return bmcr; |
| 895 | |
| 896 | if (bmcr & BMCR_FULLDPLX) |
| 897 | phydev->duplex = DUPLEX_FULL; |
| 898 | else |
| 899 | phydev->duplex = DUPLEX_HALF; |
| 900 | |
| 901 | if (bmcr & BMCR_SPEED1000) |
| 902 | phydev->speed = SPEED_1000; |
| 903 | else if (bmcr & BMCR_SPEED100) |
| 904 | phydev->speed = SPEED_100; |
| 905 | else |
| 906 | phydev->speed = SPEED_10; |
| 907 | |
| 908 | phydev->pause = phydev->asym_pause = 0; |
| 909 | } |
| 910 | |
| 911 | return 0; |
| 912 | } |
| 913 | EXPORT_SYMBOL(genphy_read_status); |
| 914 | |
| 915 | static int genphy_config_init(struct phy_device *phydev) |
| 916 | { |
Eric Sesterhenn | 84c22d7 | 2006-09-25 16:39:22 -0700 | [diff] [blame] | 917 | int val; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 918 | u32 features; |
| 919 | |
| 920 | /* For now, I'll claim that the generic driver supports |
| 921 | * all possible port types */ |
| 922 | features = (SUPPORTED_TP | SUPPORTED_MII |
| 923 | | SUPPORTED_AUI | SUPPORTED_FIBRE | |
| 924 | SUPPORTED_BNC); |
| 925 | |
| 926 | /* Do we support autonegotiation? */ |
| 927 | val = phy_read(phydev, MII_BMSR); |
| 928 | |
| 929 | if (val < 0) |
| 930 | return val; |
| 931 | |
| 932 | if (val & BMSR_ANEGCAPABLE) |
| 933 | features |= SUPPORTED_Autoneg; |
| 934 | |
| 935 | if (val & BMSR_100FULL) |
| 936 | features |= SUPPORTED_100baseT_Full; |
| 937 | if (val & BMSR_100HALF) |
| 938 | features |= SUPPORTED_100baseT_Half; |
| 939 | if (val & BMSR_10FULL) |
| 940 | features |= SUPPORTED_10baseT_Full; |
| 941 | if (val & BMSR_10HALF) |
| 942 | features |= SUPPORTED_10baseT_Half; |
| 943 | |
| 944 | if (val & BMSR_ESTATEN) { |
| 945 | val = phy_read(phydev, MII_ESTATUS); |
| 946 | |
| 947 | if (val < 0) |
| 948 | return val; |
| 949 | |
| 950 | if (val & ESTATUS_1000_TFULL) |
| 951 | features |= SUPPORTED_1000baseT_Full; |
| 952 | if (val & ESTATUS_1000_THALF) |
| 953 | features |= SUPPORTED_1000baseT_Half; |
| 954 | } |
| 955 | |
| 956 | phydev->supported = features; |
| 957 | phydev->advertising = features; |
| 958 | |
| 959 | return 0; |
| 960 | } |
Giuseppe Cavallaro | 0f0ca34 | 2008-11-28 16:24:56 -0800 | [diff] [blame] | 961 | int genphy_suspend(struct phy_device *phydev) |
| 962 | { |
| 963 | int value; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 964 | |
Giuseppe Cavallaro | 0f0ca34 | 2008-11-28 16:24:56 -0800 | [diff] [blame] | 965 | mutex_lock(&phydev->lock); |
| 966 | |
| 967 | value = phy_read(phydev, MII_BMCR); |
| 968 | phy_write(phydev, MII_BMCR, (value | BMCR_PDOWN)); |
| 969 | |
| 970 | mutex_unlock(&phydev->lock); |
| 971 | |
| 972 | return 0; |
| 973 | } |
| 974 | EXPORT_SYMBOL(genphy_suspend); |
| 975 | |
| 976 | int genphy_resume(struct phy_device *phydev) |
| 977 | { |
| 978 | int value; |
| 979 | |
| 980 | mutex_lock(&phydev->lock); |
| 981 | |
| 982 | value = phy_read(phydev, MII_BMCR); |
| 983 | phy_write(phydev, MII_BMCR, (value & ~BMCR_PDOWN)); |
| 984 | |
| 985 | mutex_unlock(&phydev->lock); |
| 986 | |
| 987 | return 0; |
| 988 | } |
| 989 | EXPORT_SYMBOL(genphy_resume); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 990 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 991 | /** |
| 992 | * phy_probe - probe and init a PHY device |
| 993 | * @dev: device to probe and init |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 994 | * |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 995 | * Description: Take care of setting up the phy_device structure, |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 996 | * set the state to READY (the driver's init function should |
| 997 | * set it to STARTING if needed). |
| 998 | */ |
| 999 | static int phy_probe(struct device *dev) |
| 1000 | { |
| 1001 | struct phy_device *phydev; |
| 1002 | struct phy_driver *phydrv; |
| 1003 | struct device_driver *drv; |
| 1004 | int err = 0; |
| 1005 | |
| 1006 | phydev = to_phy_device(dev); |
| 1007 | |
Alan Stern | f3ff924 | 2012-01-24 13:35:24 -0500 | [diff] [blame] | 1008 | drv = phydev->dev.driver; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1009 | phydrv = to_phy_driver(drv); |
| 1010 | phydev->drv = phydrv; |
| 1011 | |
| 1012 | /* Disable the interrupt if the PHY doesn't support it */ |
| 1013 | if (!(phydrv->flags & PHY_HAS_INTERRUPT)) |
| 1014 | phydev->irq = PHY_POLL; |
| 1015 | |
Nate Case | 35b5f6b | 2008-01-29 10:05:09 -0600 | [diff] [blame] | 1016 | mutex_lock(&phydev->lock); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1017 | |
| 1018 | /* Start out supporting everything. Eventually, |
| 1019 | * a controller will attach, and may modify one |
| 1020 | * or both of these values */ |
| 1021 | phydev->supported = phydrv->features; |
| 1022 | phydev->advertising = phydrv->features; |
| 1023 | |
| 1024 | /* Set the state to READY by default */ |
| 1025 | phydev->state = PHY_READY; |
| 1026 | |
| 1027 | if (phydev->drv->probe) |
| 1028 | err = phydev->drv->probe(phydev); |
| 1029 | |
Nate Case | 35b5f6b | 2008-01-29 10:05:09 -0600 | [diff] [blame] | 1030 | mutex_unlock(&phydev->lock); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1031 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1032 | return err; |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 1033 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1034 | } |
| 1035 | |
| 1036 | static int phy_remove(struct device *dev) |
| 1037 | { |
| 1038 | struct phy_device *phydev; |
| 1039 | |
| 1040 | phydev = to_phy_device(dev); |
| 1041 | |
Nate Case | 35b5f6b | 2008-01-29 10:05:09 -0600 | [diff] [blame] | 1042 | mutex_lock(&phydev->lock); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1043 | phydev->state = PHY_DOWN; |
Nate Case | 35b5f6b | 2008-01-29 10:05:09 -0600 | [diff] [blame] | 1044 | mutex_unlock(&phydev->lock); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1045 | |
| 1046 | if (phydev->drv->remove) |
| 1047 | phydev->drv->remove(phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1048 | phydev->drv = NULL; |
| 1049 | |
| 1050 | return 0; |
| 1051 | } |
| 1052 | |
Randy Dunlap | b3df0da | 2007-03-06 02:41:48 -0800 | [diff] [blame] | 1053 | /** |
| 1054 | * phy_driver_register - register a phy_driver with the PHY layer |
| 1055 | * @new_driver: new phy_driver to register |
| 1056 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1057 | int phy_driver_register(struct phy_driver *new_driver) |
| 1058 | { |
| 1059 | int retval; |
| 1060 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1061 | new_driver->driver.name = new_driver->name; |
| 1062 | new_driver->driver.bus = &mdio_bus_type; |
| 1063 | new_driver->driver.probe = phy_probe; |
| 1064 | new_driver->driver.remove = phy_remove; |
| 1065 | |
| 1066 | retval = driver_register(&new_driver->driver); |
| 1067 | |
| 1068 | if (retval) { |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 1069 | pr_err("%s: Error %d in registering driver\n", |
| 1070 | new_driver->name, retval); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1071 | |
| 1072 | return retval; |
| 1073 | } |
| 1074 | |
Olof Johansson | f2511f1 | 2007-11-04 16:09:23 -0600 | [diff] [blame] | 1075 | pr_debug("%s: Registered new driver\n", new_driver->name); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1076 | |
| 1077 | return 0; |
| 1078 | } |
| 1079 | EXPORT_SYMBOL(phy_driver_register); |
| 1080 | |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 1081 | int phy_drivers_register(struct phy_driver *new_driver, int n) |
| 1082 | { |
| 1083 | int i, ret = 0; |
| 1084 | |
| 1085 | for (i = 0; i < n; i++) { |
| 1086 | ret = phy_driver_register(new_driver + i); |
| 1087 | if (ret) { |
| 1088 | while (i-- > 0) |
| 1089 | phy_driver_unregister(new_driver + i); |
| 1090 | break; |
| 1091 | } |
| 1092 | } |
| 1093 | return ret; |
| 1094 | } |
| 1095 | EXPORT_SYMBOL(phy_drivers_register); |
| 1096 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1097 | void phy_driver_unregister(struct phy_driver *drv) |
| 1098 | { |
| 1099 | driver_unregister(&drv->driver); |
| 1100 | } |
| 1101 | EXPORT_SYMBOL(phy_driver_unregister); |
| 1102 | |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 1103 | void phy_drivers_unregister(struct phy_driver *drv, int n) |
| 1104 | { |
| 1105 | int i; |
| 1106 | for (i = 0; i < n; i++) { |
| 1107 | phy_driver_unregister(drv + i); |
| 1108 | } |
| 1109 | } |
| 1110 | EXPORT_SYMBOL(phy_drivers_unregister); |
| 1111 | |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 1112 | static struct phy_driver genphy_driver = { |
| 1113 | .phy_id = 0xffffffff, |
| 1114 | .phy_id_mask = 0xffffffff, |
| 1115 | .name = "Generic PHY", |
| 1116 | .config_init = genphy_config_init, |
| 1117 | .features = 0, |
| 1118 | .config_aneg = genphy_config_aneg, |
| 1119 | .read_status = genphy_read_status, |
Giuseppe Cavallaro | 0f0ca34 | 2008-11-28 16:24:56 -0800 | [diff] [blame] | 1120 | .suspend = genphy_suspend, |
| 1121 | .resume = genphy_resume, |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 1122 | .driver = {.owner= THIS_MODULE, }, |
| 1123 | }; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1124 | |
Jeff Garzik | 67c4f3f | 2005-08-11 02:07:25 -0400 | [diff] [blame] | 1125 | static int __init phy_init(void) |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1126 | { |
Jeff Garzik | 67c4f3f | 2005-08-11 02:07:25 -0400 | [diff] [blame] | 1127 | int rc; |
Jeff Garzik | 67c4f3f | 2005-08-11 02:07:25 -0400 | [diff] [blame] | 1128 | |
| 1129 | rc = mdio_bus_init(); |
| 1130 | if (rc) |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 1131 | return rc; |
Jeff Garzik | 67c4f3f | 2005-08-11 02:07:25 -0400 | [diff] [blame] | 1132 | |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 1133 | rc = phy_driver_register(&genphy_driver); |
| 1134 | if (rc) |
| 1135 | mdio_bus_exit(); |
Jeff Garzik | 67c4f3f | 2005-08-11 02:07:25 -0400 | [diff] [blame] | 1136 | |
Jeff Garzik | 67c4f3f | 2005-08-11 02:07:25 -0400 | [diff] [blame] | 1137 | return rc; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1138 | } |
| 1139 | |
Jeff Garzik | 67c4f3f | 2005-08-11 02:07:25 -0400 | [diff] [blame] | 1140 | static void __exit phy_exit(void) |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1141 | { |
| 1142 | phy_driver_unregister(&genphy_driver); |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 1143 | mdio_bus_exit(); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1144 | } |
| 1145 | |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 1146 | subsys_initcall(phy_init); |
Jeff Garzik | 67c4f3f | 2005-08-11 02:07:25 -0400 | [diff] [blame] | 1147 | module_exit(phy_exit); |