Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1 | /* |
| 2 | * include/linux/phy.h |
| 3 | * |
| 4 | * Framework and drivers for configuring and reading different PHYs |
| 5 | * Based on code in sungem_phy.c and gianfar_phy.c |
| 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 | */ |
| 17 | |
| 18 | #ifndef __PHY_H |
| 19 | #define __PHY_H |
| 20 | |
| 21 | #include <linux/spinlock.h> |
| 22 | #include <linux/device.h> |
Maciej W. Rozycki | 13df29f | 2006-10-03 16:18:28 +0100 | [diff] [blame] | 23 | #include <linux/ethtool.h> |
| 24 | #include <linux/mii.h> |
| 25 | #include <linux/timer.h> |
| 26 | #include <linux/workqueue.h> |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 27 | |
Maciej W. Rozycki | 0ac4952 | 2007-09-28 22:42:14 -0700 | [diff] [blame] | 28 | #include <asm/atomic.h> |
| 29 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 30 | #define PHY_BASIC_FEATURES (SUPPORTED_10baseT_Half | \ |
| 31 | SUPPORTED_10baseT_Full | \ |
| 32 | SUPPORTED_100baseT_Half | \ |
| 33 | SUPPORTED_100baseT_Full | \ |
| 34 | SUPPORTED_Autoneg | \ |
| 35 | SUPPORTED_TP | \ |
| 36 | SUPPORTED_MII) |
| 37 | |
| 38 | #define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \ |
| 39 | SUPPORTED_1000baseT_Half | \ |
| 40 | SUPPORTED_1000baseT_Full) |
| 41 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 42 | /* |
| 43 | * Set phydev->irq to PHY_POLL if interrupts are not supported, |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 44 | * or not desired for this PHY. Set to PHY_IGNORE_INTERRUPT if |
| 45 | * the attached driver handles the interrupt |
| 46 | */ |
| 47 | #define PHY_POLL -1 |
| 48 | #define PHY_IGNORE_INTERRUPT -2 |
| 49 | |
| 50 | #define PHY_HAS_INTERRUPT 0x00000001 |
| 51 | #define PHY_HAS_MAGICANEG 0x00000002 |
| 52 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 53 | /* Interface Mode definitions */ |
| 54 | typedef enum { |
| 55 | PHY_INTERFACE_MODE_MII, |
| 56 | PHY_INTERFACE_MODE_GMII, |
| 57 | PHY_INTERFACE_MODE_SGMII, |
| 58 | PHY_INTERFACE_MODE_TBI, |
| 59 | PHY_INTERFACE_MODE_RMII, |
| 60 | PHY_INTERFACE_MODE_RGMII, |
Kim Phillips | a999589 | 2007-04-13 01:25:57 -0500 | [diff] [blame] | 61 | PHY_INTERFACE_MODE_RGMII_ID, |
Kim Phillips | 7d400a4 | 2007-11-26 16:17:48 -0600 | [diff] [blame] | 62 | PHY_INTERFACE_MODE_RGMII_RXID, |
| 63 | PHY_INTERFACE_MODE_RGMII_TXID, |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 64 | PHY_INTERFACE_MODE_RTBI |
| 65 | } phy_interface_t; |
| 66 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 67 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 68 | #define PHY_INIT_TIMEOUT 100000 |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 69 | #define PHY_STATE_TIME 1 |
| 70 | #define PHY_FORCE_TIMEOUT 10 |
| 71 | #define PHY_AN_TIMEOUT 10 |
| 72 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 73 | #define PHY_MAX_ADDR 32 |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 74 | |
Kumar Gala | a4d00f1 | 2006-01-11 11:27:33 -0800 | [diff] [blame] | 75 | /* Used when trying to connect to a specific phy (mii bus id:phy device id) */ |
Andy Fleming | 9d9326d | 2008-04-09 19:38:13 -0500 | [diff] [blame] | 76 | #define PHY_ID_FMT "%s:%02x" |
| 77 | |
| 78 | /* |
| 79 | * Need to be a little smaller than phydev->dev.bus_id to leave room |
| 80 | * for the ":%02x" |
| 81 | */ |
David S. Miller | 8e401ec | 2009-05-26 21:16:25 -0700 | [diff] [blame] | 82 | #define MII_BUS_ID_SIZE (20 - 3) |
Kumar Gala | a4d00f1 | 2006-01-11 11:27:33 -0800 | [diff] [blame] | 83 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 84 | /* |
| 85 | * The Bus class for PHYs. Devices which provide access to |
| 86 | * PHYs should register using this structure |
| 87 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 88 | struct mii_bus { |
| 89 | const char *name; |
Andy Fleming | 9d9326d | 2008-04-09 19:38:13 -0500 | [diff] [blame] | 90 | char id[MII_BUS_ID_SIZE]; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 91 | void *priv; |
| 92 | int (*read)(struct mii_bus *bus, int phy_id, int regnum); |
| 93 | int (*write)(struct mii_bus *bus, int phy_id, int regnum, u16 val); |
| 94 | int (*reset)(struct mii_bus *bus); |
| 95 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 96 | /* |
| 97 | * A lock to ensure that only one thing can read/write |
| 98 | * the MDIO bus at a time |
| 99 | */ |
Nate Case | 35b5f6b | 2008-01-29 10:05:09 -0600 | [diff] [blame] | 100 | struct mutex mdio_lock; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 101 | |
Lennert Buytenhek | 18ee49d | 2008-10-01 15:41:33 +0000 | [diff] [blame] | 102 | struct device *parent; |
Lennert Buytenhek | 46abc02 | 2008-10-08 16:33:40 -0700 | [diff] [blame] | 103 | enum { |
| 104 | MDIOBUS_ALLOCATED = 1, |
| 105 | MDIOBUS_REGISTERED, |
| 106 | MDIOBUS_UNREGISTERED, |
| 107 | MDIOBUS_RELEASED, |
| 108 | } state; |
| 109 | struct device dev; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 110 | |
| 111 | /* list of all PHYs on bus */ |
| 112 | struct phy_device *phy_map[PHY_MAX_ADDR]; |
| 113 | |
Matt Porter | f896424 | 2005-11-02 16:13:06 -0700 | [diff] [blame] | 114 | /* Phy addresses to be ignored when probing */ |
| 115 | u32 phy_mask; |
| 116 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 117 | /* |
| 118 | * Pointer to an array of interrupts, each PHY's |
| 119 | * interrupt at the index matching its address |
| 120 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 121 | int *irq; |
| 122 | }; |
Lennert Buytenhek | 46abc02 | 2008-10-08 16:33:40 -0700 | [diff] [blame] | 123 | #define to_mii_bus(d) container_of(d, struct mii_bus, dev) |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 124 | |
Lennert Buytenhek | 2e88810 | 2008-09-29 17:12:35 +0000 | [diff] [blame] | 125 | struct mii_bus *mdiobus_alloc(void); |
| 126 | int mdiobus_register(struct mii_bus *bus); |
| 127 | void mdiobus_unregister(struct mii_bus *bus); |
| 128 | void mdiobus_free(struct mii_bus *bus); |
| 129 | struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr); |
| 130 | int mdiobus_read(struct mii_bus *bus, int addr, u16 regnum); |
| 131 | int mdiobus_write(struct mii_bus *bus, int addr, u16 regnum, u16 val); |
| 132 | |
| 133 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 134 | #define PHY_INTERRUPT_DISABLED 0x0 |
| 135 | #define PHY_INTERRUPT_ENABLED 0x80000000 |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 136 | |
| 137 | /* PHY state machine states: |
| 138 | * |
| 139 | * DOWN: PHY device and driver are not ready for anything. probe |
| 140 | * should be called if and only if the PHY is in this state, |
| 141 | * given that the PHY device exists. |
| 142 | * - PHY driver probe function will, depending on the PHY, set |
| 143 | * the state to STARTING or READY |
| 144 | * |
| 145 | * STARTING: PHY device is coming up, and the ethernet driver is |
| 146 | * not ready. PHY drivers may set this in the probe function. |
| 147 | * If they do, they are responsible for making sure the state is |
| 148 | * eventually set to indicate whether the PHY is UP or READY, |
| 149 | * depending on the state when the PHY is done starting up. |
| 150 | * - PHY driver will set the state to READY |
| 151 | * - start will set the state to PENDING |
| 152 | * |
| 153 | * READY: PHY is ready to send and receive packets, but the |
| 154 | * controller is not. By default, PHYs which do not implement |
| 155 | * probe will be set to this state by phy_probe(). If the PHY |
| 156 | * driver knows the PHY is ready, and the PHY state is STARTING, |
| 157 | * then it sets this STATE. |
| 158 | * - start will set the state to UP |
| 159 | * |
| 160 | * PENDING: PHY device is coming up, but the ethernet driver is |
| 161 | * ready. phy_start will set this state if the PHY state is |
| 162 | * STARTING. |
| 163 | * - PHY driver will set the state to UP when the PHY is ready |
| 164 | * |
| 165 | * UP: The PHY and attached device are ready to do work. |
| 166 | * Interrupts should be started here. |
| 167 | * - timer moves to AN |
| 168 | * |
| 169 | * AN: The PHY is currently negotiating the link state. Link is |
| 170 | * therefore down for now. phy_timer will set this state when it |
| 171 | * detects the state is UP. config_aneg will set this state |
| 172 | * whenever called with phydev->autoneg set to AUTONEG_ENABLE. |
| 173 | * - If autonegotiation finishes, but there's no link, it sets |
| 174 | * the state to NOLINK. |
| 175 | * - If aneg finishes with link, it sets the state to RUNNING, |
| 176 | * and calls adjust_link |
| 177 | * - If autonegotiation did not finish after an arbitrary amount |
| 178 | * of time, autonegotiation should be tried again if the PHY |
| 179 | * supports "magic" autonegotiation (back to AN) |
| 180 | * - If it didn't finish, and no magic_aneg, move to FORCING. |
| 181 | * |
| 182 | * NOLINK: PHY is up, but not currently plugged in. |
| 183 | * - If the timer notes that the link comes back, we move to RUNNING |
| 184 | * - config_aneg moves to AN |
| 185 | * - phy_stop moves to HALTED |
| 186 | * |
| 187 | * FORCING: PHY is being configured with forced settings |
| 188 | * - if link is up, move to RUNNING |
| 189 | * - If link is down, we drop to the next highest setting, and |
| 190 | * retry (FORCING) after a timeout |
| 191 | * - phy_stop moves to HALTED |
| 192 | * |
| 193 | * RUNNING: PHY is currently up, running, and possibly sending |
| 194 | * and/or receiving packets |
| 195 | * - timer will set CHANGELINK if we're polling (this ensures the |
| 196 | * link state is polled every other cycle of this state machine, |
| 197 | * which makes it every other second) |
| 198 | * - irq will set CHANGELINK |
| 199 | * - config_aneg will set AN |
| 200 | * - phy_stop moves to HALTED |
| 201 | * |
| 202 | * CHANGELINK: PHY experienced a change in link state |
| 203 | * - timer moves to RUNNING if link |
| 204 | * - timer moves to NOLINK if the link is down |
| 205 | * - phy_stop moves to HALTED |
| 206 | * |
| 207 | * HALTED: PHY is up, but no polling or interrupts are done. Or |
| 208 | * PHY is in an error state. |
| 209 | * |
| 210 | * - phy_start moves to RESUMING |
| 211 | * |
| 212 | * RESUMING: PHY was halted, but now wants to run again. |
| 213 | * - If we are forcing, or aneg is done, timer moves to RUNNING |
| 214 | * - If aneg is not done, timer moves to AN |
| 215 | * - phy_stop moves to HALTED |
| 216 | */ |
| 217 | enum phy_state { |
| 218 | PHY_DOWN=0, |
| 219 | PHY_STARTING, |
| 220 | PHY_READY, |
| 221 | PHY_PENDING, |
| 222 | PHY_UP, |
| 223 | PHY_AN, |
| 224 | PHY_RUNNING, |
| 225 | PHY_NOLINK, |
| 226 | PHY_FORCING, |
| 227 | PHY_CHANGELINK, |
| 228 | PHY_HALTED, |
| 229 | PHY_RESUMING |
| 230 | }; |
| 231 | |
| 232 | /* phy_device: An instance of a PHY |
| 233 | * |
| 234 | * drv: Pointer to the driver for this PHY instance |
| 235 | * bus: Pointer to the bus this PHY is on |
| 236 | * dev: driver model device structure for this PHY |
| 237 | * phy_id: UID for this device found during discovery |
| 238 | * state: state of the PHY for management purposes |
| 239 | * dev_flags: Device-specific flags used by the PHY driver. |
| 240 | * addr: Bus address of PHY |
| 241 | * link_timeout: The number of timer firings to wait before the |
| 242 | * giving up on the current attempt at acquiring a link |
| 243 | * irq: IRQ number of the PHY's interrupt (-1 if none) |
| 244 | * phy_timer: The timer for handling the state machine |
| 245 | * phy_queue: A work_queue for the interrupt |
| 246 | * attached_dev: The attached enet driver's device instance ptr |
| 247 | * adjust_link: Callback for the enet controller to respond to |
| 248 | * changes in the link state. |
| 249 | * adjust_state: Callback for the enet driver to respond to |
| 250 | * changes in the state machine. |
| 251 | * |
| 252 | * speed, duplex, pause, supported, advertising, and |
| 253 | * autoneg are used like in mii_if_info |
| 254 | * |
| 255 | * interrupts currently only supports enabled or disabled, |
| 256 | * but could be changed in the future to support enabling |
| 257 | * and disabling specific interrupts |
| 258 | * |
| 259 | * Contains some infrastructure for polling and interrupt |
| 260 | * handling, as well as handling shifts in PHY hardware state |
| 261 | */ |
| 262 | struct phy_device { |
| 263 | /* Information about the PHY type */ |
| 264 | /* And management functions */ |
| 265 | struct phy_driver *drv; |
| 266 | |
| 267 | struct mii_bus *bus; |
| 268 | |
| 269 | struct device dev; |
| 270 | |
| 271 | u32 phy_id; |
| 272 | |
| 273 | enum phy_state state; |
| 274 | |
| 275 | u32 dev_flags; |
| 276 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 277 | phy_interface_t interface; |
| 278 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 279 | /* Bus address of the PHY (0-32) */ |
| 280 | int addr; |
| 281 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 282 | /* |
| 283 | * forced speed & duplex (no autoneg) |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 284 | * partner speed & duplex & pause (autoneg) |
| 285 | */ |
| 286 | int speed; |
| 287 | int duplex; |
| 288 | int pause; |
| 289 | int asym_pause; |
| 290 | |
| 291 | /* The most recently read link state */ |
| 292 | int link; |
| 293 | |
| 294 | /* Enabled Interrupts */ |
| 295 | u32 interrupts; |
| 296 | |
| 297 | /* Union of PHY and Attached devices' supported modes */ |
| 298 | /* See mii.h for more info */ |
| 299 | u32 supported; |
| 300 | u32 advertising; |
| 301 | |
| 302 | int autoneg; |
| 303 | |
| 304 | int link_timeout; |
| 305 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 306 | /* |
| 307 | * Interrupt number for this PHY |
| 308 | * -1 means no interrupt |
| 309 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 310 | int irq; |
| 311 | |
| 312 | /* private data pointer */ |
| 313 | /* For use by PHYs to maintain extra state */ |
| 314 | void *priv; |
| 315 | |
| 316 | /* Interrupt and Polling infrastructure */ |
| 317 | struct work_struct phy_queue; |
Marcin Slusarz | a390d1f | 2009-03-13 15:41:19 -0700 | [diff] [blame] | 318 | struct delayed_work state_queue; |
Maciej W. Rozycki | 0ac4952 | 2007-09-28 22:42:14 -0700 | [diff] [blame] | 319 | atomic_t irq_disable; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 320 | |
Nate Case | 35b5f6b | 2008-01-29 10:05:09 -0600 | [diff] [blame] | 321 | struct mutex lock; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 322 | |
| 323 | struct net_device *attached_dev; |
| 324 | |
| 325 | void (*adjust_link)(struct net_device *dev); |
| 326 | |
| 327 | void (*adjust_state)(struct net_device *dev); |
| 328 | }; |
| 329 | #define to_phy_device(d) container_of(d, struct phy_device, dev) |
| 330 | |
| 331 | /* struct phy_driver: Driver structure for a particular PHY type |
| 332 | * |
| 333 | * phy_id: The result of reading the UID registers of this PHY |
| 334 | * type, and ANDing them with the phy_id_mask. This driver |
| 335 | * only works for PHYs with IDs which match this field |
| 336 | * name: The friendly name of this PHY type |
| 337 | * phy_id_mask: Defines the important bits of the phy_id |
| 338 | * features: A list of features (speed, duplex, etc) supported |
| 339 | * by this PHY |
| 340 | * flags: A bitfield defining certain other features this PHY |
| 341 | * supports (like interrupts) |
| 342 | * |
| 343 | * The drivers must implement config_aneg and read_status. All |
| 344 | * other functions are optional. Note that none of these |
| 345 | * functions should be called from interrupt time. The goal is |
| 346 | * for the bus read/write functions to be able to block when the |
| 347 | * bus transaction is happening, and be freed up by an interrupt |
| 348 | * (The MPC85xx has this ability, though it is not currently |
| 349 | * supported in the driver). |
| 350 | */ |
| 351 | struct phy_driver { |
| 352 | u32 phy_id; |
| 353 | char *name; |
| 354 | unsigned int phy_id_mask; |
| 355 | u32 features; |
| 356 | u32 flags; |
| 357 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 358 | /* |
| 359 | * Called to initialize the PHY, |
| 360 | * including after a reset |
| 361 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 362 | int (*config_init)(struct phy_device *phydev); |
| 363 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 364 | /* |
| 365 | * Called during discovery. Used to set |
| 366 | * up device-specific structures, if any |
| 367 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 368 | int (*probe)(struct phy_device *phydev); |
| 369 | |
| 370 | /* PHY Power Management */ |
| 371 | int (*suspend)(struct phy_device *phydev); |
| 372 | int (*resume)(struct phy_device *phydev); |
| 373 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 374 | /* |
| 375 | * Configures the advertisement and resets |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 376 | * autonegotiation if phydev->autoneg is on, |
| 377 | * forces the speed to the current settings in phydev |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 378 | * if phydev->autoneg is off |
| 379 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 380 | int (*config_aneg)(struct phy_device *phydev); |
| 381 | |
| 382 | /* Determines the negotiated speed and duplex */ |
| 383 | int (*read_status)(struct phy_device *phydev); |
| 384 | |
| 385 | /* Clears any pending interrupts */ |
| 386 | int (*ack_interrupt)(struct phy_device *phydev); |
| 387 | |
| 388 | /* Enables or disables interrupts */ |
| 389 | int (*config_intr)(struct phy_device *phydev); |
| 390 | |
Anatolij Gustschin | a8729eb | 2009-04-07 02:01:42 +0000 | [diff] [blame] | 391 | /* |
| 392 | * Checks if the PHY generated an interrupt. |
| 393 | * For multi-PHY devices with shared PHY interrupt pin |
| 394 | */ |
| 395 | int (*did_interrupt)(struct phy_device *phydev); |
| 396 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 397 | /* Clears up any memory if needed */ |
| 398 | void (*remove)(struct phy_device *phydev); |
| 399 | |
| 400 | struct device_driver driver; |
| 401 | }; |
| 402 | #define to_phy_driver(d) container_of(d, struct phy_driver, driver) |
| 403 | |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 404 | #define PHY_ANY_ID "MATCH ANY PHY" |
| 405 | #define PHY_ANY_UID 0xffffffff |
| 406 | |
| 407 | /* A Structure for boards to register fixups with the PHY Lib */ |
| 408 | struct phy_fixup { |
| 409 | struct list_head list; |
David S. Miller | 8e401ec | 2009-05-26 21:16:25 -0700 | [diff] [blame] | 410 | char bus_id[20]; |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 411 | u32 phy_uid; |
| 412 | u32 phy_uid_mask; |
| 413 | int (*run)(struct phy_device *phydev); |
| 414 | }; |
| 415 | |
Lennert Buytenhek | 2e88810 | 2008-09-29 17:12:35 +0000 | [diff] [blame] | 416 | /** |
| 417 | * phy_read - Convenience function for reading a given PHY register |
| 418 | * @phydev: the phy_device struct |
| 419 | * @regnum: register number to read |
| 420 | * |
| 421 | * NOTE: MUST NOT be called from interrupt context, |
| 422 | * because the bus read/write functions may wait for an interrupt |
| 423 | * to conclude the operation. |
| 424 | */ |
| 425 | static inline int phy_read(struct phy_device *phydev, u16 regnum) |
| 426 | { |
| 427 | return mdiobus_read(phydev->bus, phydev->addr, regnum); |
| 428 | } |
| 429 | |
| 430 | /** |
| 431 | * phy_write - Convenience function for writing a given PHY register |
| 432 | * @phydev: the phy_device struct |
| 433 | * @regnum: register number to write |
| 434 | * @val: value to write to @regnum |
| 435 | * |
| 436 | * NOTE: MUST NOT be called from interrupt context, |
| 437 | * because the bus read/write functions may wait for an interrupt |
| 438 | * to conclude the operation. |
| 439 | */ |
| 440 | static inline int phy_write(struct phy_device *phydev, u16 regnum, u16 val) |
| 441 | { |
| 442 | return mdiobus_write(phydev->bus, phydev->addr, regnum, val); |
| 443 | } |
| 444 | |
Paul Gortmaker | cac1f3c | 2008-04-15 12:49:21 -0400 | [diff] [blame] | 445 | int get_phy_id(struct mii_bus *bus, int addr, u32 *phy_id); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 446 | struct phy_device* get_phy_device(struct mii_bus *bus, int addr); |
Grant Likely | 4dea547 | 2009-04-25 12:52:46 +0000 | [diff] [blame] | 447 | int phy_device_register(struct phy_device *phy); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 448 | int phy_clear_interrupt(struct phy_device *phydev); |
| 449 | int phy_config_interrupt(struct phy_device *phydev, u32 interrupts); |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 450 | int phy_attach_direct(struct net_device *dev, struct phy_device *phydev, |
| 451 | u32 flags, phy_interface_t interface); |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 452 | struct phy_device * phy_attach(struct net_device *dev, |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 453 | const char *bus_id, u32 flags, phy_interface_t interface); |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 454 | int phy_connect_direct(struct net_device *dev, struct phy_device *phydev, |
| 455 | void (*handler)(struct net_device *), u32 flags, |
| 456 | phy_interface_t interface); |
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, |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 458 | void (*handler)(struct net_device *), u32 flags, |
| 459 | phy_interface_t interface); |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 460 | void phy_disconnect(struct phy_device *phydev); |
| 461 | void phy_detach(struct phy_device *phydev); |
| 462 | void phy_start(struct phy_device *phydev); |
| 463 | void phy_stop(struct phy_device *phydev); |
| 464 | int phy_start_aneg(struct phy_device *phydev); |
| 465 | |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 466 | void phy_sanitize_settings(struct phy_device *phydev); |
| 467 | int phy_stop_interrupts(struct phy_device *phydev); |
Andy Fleming | 9b9a8bf | 2008-05-02 13:00:51 -0500 | [diff] [blame] | 468 | int phy_enable_interrupts(struct phy_device *phydev); |
| 469 | int phy_disable_interrupts(struct phy_device *phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 470 | |
| 471 | static inline int phy_read_status(struct phy_device *phydev) { |
| 472 | return phydev->drv->read_status(phydev); |
| 473 | } |
| 474 | |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 475 | int genphy_config_advert(struct phy_device *phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 476 | int genphy_setup_forced(struct phy_device *phydev); |
| 477 | int genphy_restart_aneg(struct phy_device *phydev); |
| 478 | int genphy_config_aneg(struct phy_device *phydev); |
| 479 | int genphy_update_link(struct phy_device *phydev); |
| 480 | int genphy_read_status(struct phy_device *phydev); |
Giuseppe Cavallaro | 0f0ca34 | 2008-11-28 16:24:56 -0800 | [diff] [blame] | 481 | int genphy_suspend(struct phy_device *phydev); |
| 482 | int genphy_resume(struct phy_device *phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 483 | void phy_driver_unregister(struct phy_driver *drv); |
| 484 | int phy_driver_register(struct phy_driver *new_driver); |
| 485 | void phy_prepare_link(struct phy_device *phydev, |
| 486 | void (*adjust_link)(struct net_device *)); |
| 487 | void phy_start_machine(struct phy_device *phydev, |
| 488 | void (*handler)(struct net_device *)); |
| 489 | void phy_stop_machine(struct phy_device *phydev); |
| 490 | int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd); |
| 491 | int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd); |
| 492 | int phy_mii_ioctl(struct phy_device *phydev, |
| 493 | struct mii_ioctl_data *mii_data, int cmd); |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 494 | int phy_start_interrupts(struct phy_device *phydev); |
| 495 | void phy_print_status(struct phy_device *phydev); |
Vitaly Bordug | 11b0bac | 2006-08-14 23:00:29 -0700 | [diff] [blame] | 496 | struct phy_device* phy_device_create(struct mii_bus *bus, int addr, int phy_id); |
Anton Vorontsov | 6f4a7f4 | 2007-12-04 16:17:33 +0300 | [diff] [blame] | 497 | void phy_device_free(struct phy_device *phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 498 | |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 499 | int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask, |
| 500 | int (*run)(struct phy_device *)); |
| 501 | int phy_register_fixup_for_id(const char *bus_id, |
| 502 | int (*run)(struct phy_device *)); |
| 503 | int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask, |
| 504 | int (*run)(struct phy_device *)); |
| 505 | int phy_scan_fixups(struct phy_device *phydev); |
| 506 | |
Andy Fleming | 9b9a8bf | 2008-05-02 13:00:51 -0500 | [diff] [blame] | 507 | int __init mdio_bus_init(void); |
| 508 | void mdio_bus_exit(void); |
| 509 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 510 | extern struct bus_type mdio_bus_type; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 511 | #endif /* __PHY_H */ |