blob: 48a4dc3cb8cf26b91af2bd2cb147bf6879956695 [file] [log] [blame]
Andy Fleming00db8182005-07-30 19:31:23 -04001/*
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>
Maciej W. Rozycki13df29f2006-10-03 16:18:28 +010022#include <linux/ethtool.h>
23#include <linux/mii.h>
24#include <linux/timer.h>
25#include <linux/workqueue.h>
David Woodhouse8626d3b2010-04-02 01:05:27 +000026#include <linux/mod_devicetable.h>
Andy Fleming00db8182005-07-30 19:31:23 -040027
Arun Sharma600634972011-07-26 16:09:06 -070028#include <linux/atomic.h>
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -070029
Andy Fleming00db8182005-07-30 19:31:23 -040030#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 Flemingc5e38a92008-04-09 19:38:27 -050042/*
43 * Set phydev->irq to PHY_POLL if interrupts are not supported,
Andy Fleming00db8182005-07-30 19:31:23 -040044 * 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
Florian Fainelli4284b6a2013-05-23 01:11:12 +000052#define PHY_IS_INTERNAL 0x00000004
Andy Fleming00db8182005-07-30 19:31:23 -040053
Andy Fleminge8a2b6a2006-12-01 12:01:06 -060054/* Interface Mode definitions */
55typedef enum {
Shawn Guo4157ef12011-07-05 16:42:09 +080056 PHY_INTERFACE_MODE_NA,
Andy Fleminge8a2b6a2006-12-01 12:01:06 -060057 PHY_INTERFACE_MODE_MII,
58 PHY_INTERFACE_MODE_GMII,
59 PHY_INTERFACE_MODE_SGMII,
60 PHY_INTERFACE_MODE_TBI,
Florian Fainelli2cc70ba2013-05-28 04:07:21 +000061 PHY_INTERFACE_MODE_REVMII,
Andy Fleminge8a2b6a2006-12-01 12:01:06 -060062 PHY_INTERFACE_MODE_RMII,
63 PHY_INTERFACE_MODE_RGMII,
Kim Phillipsa9995892007-04-13 01:25:57 -050064 PHY_INTERFACE_MODE_RGMII_ID,
Kim Phillips7d400a42007-11-26 16:17:48 -060065 PHY_INTERFACE_MODE_RGMII_RXID,
66 PHY_INTERFACE_MODE_RGMII_TXID,
Shawn Guo4157ef12011-07-05 16:42:09 +080067 PHY_INTERFACE_MODE_RTBI,
68 PHY_INTERFACE_MODE_SMII,
Andy Fleminge8a2b6a2006-12-01 12:01:06 -060069} phy_interface_t;
70
Andy Fleming00db8182005-07-30 19:31:23 -040071
Andy Fleminge8a2b6a2006-12-01 12:01:06 -060072#define PHY_INIT_TIMEOUT 100000
Andy Fleming00db8182005-07-30 19:31:23 -040073#define PHY_STATE_TIME 1
74#define PHY_FORCE_TIMEOUT 10
75#define PHY_AN_TIMEOUT 10
76
Andy Fleminge8a2b6a2006-12-01 12:01:06 -060077#define PHY_MAX_ADDR 32
Andy Fleming00db8182005-07-30 19:31:23 -040078
Kumar Galaa4d00f12006-01-11 11:27:33 -080079/* Used when trying to connect to a specific phy (mii bus id:phy device id) */
Andy Fleming9d9326d2008-04-09 19:38:13 -050080#define PHY_ID_FMT "%s:%02x"
81
82/*
83 * Need to be a little smaller than phydev->dev.bus_id to leave room
84 * for the ":%02x"
85 */
David S. Miller8e401ec2009-05-26 21:16:25 -070086#define MII_BUS_ID_SIZE (20 - 3)
Kumar Galaa4d00f12006-01-11 11:27:33 -080087
Jason Gunthorpeabf35df2010-03-09 09:17:42 +000088/* Or MII_ADDR_C45 into regnum for read/write on mii_bus to enable the 21 bit
89 IEEE 802.3ae clause 45 addressing mode used by 10GIGE phy chips. */
90#define MII_ADDR_C45 (1<<30)
91
Paul Gortmaker313162d2012-01-30 11:46:54 -050092struct device;
93struct sk_buff;
94
Andy Flemingc5e38a92008-04-09 19:38:27 -050095/*
96 * The Bus class for PHYs. Devices which provide access to
97 * PHYs should register using this structure
98 */
Andy Fleming00db8182005-07-30 19:31:23 -040099struct mii_bus {
100 const char *name;
Andy Fleming9d9326d2008-04-09 19:38:13 -0500101 char id[MII_BUS_ID_SIZE];
Andy Fleming00db8182005-07-30 19:31:23 -0400102 void *priv;
103 int (*read)(struct mii_bus *bus, int phy_id, int regnum);
104 int (*write)(struct mii_bus *bus, int phy_id, int regnum, u16 val);
105 int (*reset)(struct mii_bus *bus);
106
Andy Flemingc5e38a92008-04-09 19:38:27 -0500107 /*
108 * A lock to ensure that only one thing can read/write
109 * the MDIO bus at a time
110 */
Nate Case35b5f6b2008-01-29 10:05:09 -0600111 struct mutex mdio_lock;
Andy Fleming00db8182005-07-30 19:31:23 -0400112
Lennert Buytenhek18ee49d2008-10-01 15:41:33 +0000113 struct device *parent;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700114 enum {
115 MDIOBUS_ALLOCATED = 1,
116 MDIOBUS_REGISTERED,
117 MDIOBUS_UNREGISTERED,
118 MDIOBUS_RELEASED,
119 } state;
120 struct device dev;
Andy Fleming00db8182005-07-30 19:31:23 -0400121
122 /* list of all PHYs on bus */
123 struct phy_device *phy_map[PHY_MAX_ADDR];
124
Peter Meerwaldc6883992010-09-02 04:06:24 +0000125 /* PHY addresses to be ignored when probing */
Matt Porterf896424c2005-11-02 16:13:06 -0700126 u32 phy_mask;
127
Andy Flemingc5e38a92008-04-09 19:38:27 -0500128 /*
129 * Pointer to an array of interrupts, each PHY's
130 * interrupt at the index matching its address
131 */
Andy Fleming00db8182005-07-30 19:31:23 -0400132 int *irq;
133};
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700134#define to_mii_bus(d) container_of(d, struct mii_bus, dev)
Andy Fleming00db8182005-07-30 19:31:23 -0400135
Timur Tabieb8a54a72012-01-12 15:23:04 -0800136struct mii_bus *mdiobus_alloc_size(size_t);
137static inline struct mii_bus *mdiobus_alloc(void)
138{
139 return mdiobus_alloc_size(0);
140}
141
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000142int mdiobus_register(struct mii_bus *bus);
143void mdiobus_unregister(struct mii_bus *bus);
144void mdiobus_free(struct mii_bus *bus);
145struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr);
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000146int mdiobus_read(struct mii_bus *bus, int addr, u32 regnum);
147int mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val);
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000148
149
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600150#define PHY_INTERRUPT_DISABLED 0x0
151#define PHY_INTERRUPT_ENABLED 0x80000000
Andy Fleming00db8182005-07-30 19:31:23 -0400152
153/* PHY state machine states:
154 *
155 * DOWN: PHY device and driver are not ready for anything. probe
156 * should be called if and only if the PHY is in this state,
157 * given that the PHY device exists.
158 * - PHY driver probe function will, depending on the PHY, set
159 * the state to STARTING or READY
160 *
161 * STARTING: PHY device is coming up, and the ethernet driver is
162 * not ready. PHY drivers may set this in the probe function.
163 * If they do, they are responsible for making sure the state is
164 * eventually set to indicate whether the PHY is UP or READY,
165 * depending on the state when the PHY is done starting up.
166 * - PHY driver will set the state to READY
167 * - start will set the state to PENDING
168 *
169 * READY: PHY is ready to send and receive packets, but the
170 * controller is not. By default, PHYs which do not implement
171 * probe will be set to this state by phy_probe(). If the PHY
172 * driver knows the PHY is ready, and the PHY state is STARTING,
173 * then it sets this STATE.
174 * - start will set the state to UP
175 *
176 * PENDING: PHY device is coming up, but the ethernet driver is
177 * ready. phy_start will set this state if the PHY state is
178 * STARTING.
179 * - PHY driver will set the state to UP when the PHY is ready
180 *
181 * UP: The PHY and attached device are ready to do work.
182 * Interrupts should be started here.
183 * - timer moves to AN
184 *
185 * AN: The PHY is currently negotiating the link state. Link is
186 * therefore down for now. phy_timer will set this state when it
187 * detects the state is UP. config_aneg will set this state
188 * whenever called with phydev->autoneg set to AUTONEG_ENABLE.
189 * - If autonegotiation finishes, but there's no link, it sets
190 * the state to NOLINK.
191 * - If aneg finishes with link, it sets the state to RUNNING,
192 * and calls adjust_link
193 * - If autonegotiation did not finish after an arbitrary amount
194 * of time, autonegotiation should be tried again if the PHY
195 * supports "magic" autonegotiation (back to AN)
196 * - If it didn't finish, and no magic_aneg, move to FORCING.
197 *
198 * NOLINK: PHY is up, but not currently plugged in.
199 * - If the timer notes that the link comes back, we move to RUNNING
200 * - config_aneg moves to AN
201 * - phy_stop moves to HALTED
202 *
203 * FORCING: PHY is being configured with forced settings
204 * - if link is up, move to RUNNING
205 * - If link is down, we drop to the next highest setting, and
206 * retry (FORCING) after a timeout
207 * - phy_stop moves to HALTED
208 *
209 * RUNNING: PHY is currently up, running, and possibly sending
210 * and/or receiving packets
211 * - timer will set CHANGELINK if we're polling (this ensures the
212 * link state is polled every other cycle of this state machine,
213 * which makes it every other second)
214 * - irq will set CHANGELINK
215 * - config_aneg will set AN
216 * - phy_stop moves to HALTED
217 *
218 * CHANGELINK: PHY experienced a change in link state
219 * - timer moves to RUNNING if link
220 * - timer moves to NOLINK if the link is down
221 * - phy_stop moves to HALTED
222 *
223 * HALTED: PHY is up, but no polling or interrupts are done. Or
224 * PHY is in an error state.
225 *
226 * - phy_start moves to RESUMING
227 *
228 * RESUMING: PHY was halted, but now wants to run again.
229 * - If we are forcing, or aneg is done, timer moves to RUNNING
230 * - If aneg is not done, timer moves to AN
231 * - phy_stop moves to HALTED
232 */
233enum phy_state {
234 PHY_DOWN=0,
235 PHY_STARTING,
236 PHY_READY,
237 PHY_PENDING,
238 PHY_UP,
239 PHY_AN,
240 PHY_RUNNING,
241 PHY_NOLINK,
242 PHY_FORCING,
243 PHY_CHANGELINK,
244 PHY_HALTED,
245 PHY_RESUMING
246};
247
David Daneyac28b9f2012-06-27 07:33:35 +0000248/**
249 * struct phy_c45_device_ids - 802.3-c45 Device Identifiers
250 * @devices_in_package: Bit vector of devices present.
251 * @device_ids: The device identifer for each present device.
252 */
253struct phy_c45_device_ids {
254 u32 devices_in_package;
255 u32 device_ids[8];
256};
Richard Cochranc1f19b52010-07-17 08:49:36 +0000257
Andy Fleming00db8182005-07-30 19:31:23 -0400258/* phy_device: An instance of a PHY
259 *
260 * drv: Pointer to the driver for this PHY instance
261 * bus: Pointer to the bus this PHY is on
262 * dev: driver model device structure for this PHY
263 * phy_id: UID for this device found during discovery
David Daneyac28b9f2012-06-27 07:33:35 +0000264 * c45_ids: 802.3-c45 Device Identifers if is_c45.
265 * is_c45: Set to true if this phy uses clause 45 addressing.
Florian Fainelli4284b6a2013-05-23 01:11:12 +0000266 * is_internal: Set to true if this phy is internal to a MAC.
Andy Fleming00db8182005-07-30 19:31:23 -0400267 * state: state of the PHY for management purposes
268 * dev_flags: Device-specific flags used by the PHY driver.
269 * addr: Bus address of PHY
270 * link_timeout: The number of timer firings to wait before the
271 * giving up on the current attempt at acquiring a link
272 * irq: IRQ number of the PHY's interrupt (-1 if none)
273 * phy_timer: The timer for handling the state machine
274 * phy_queue: A work_queue for the interrupt
275 * attached_dev: The attached enet driver's device instance ptr
276 * adjust_link: Callback for the enet controller to respond to
277 * changes in the link state.
278 * adjust_state: Callback for the enet driver to respond to
279 * changes in the state machine.
280 *
281 * speed, duplex, pause, supported, advertising, and
282 * autoneg are used like in mii_if_info
283 *
284 * interrupts currently only supports enabled or disabled,
285 * but could be changed in the future to support enabling
286 * and disabling specific interrupts
287 *
288 * Contains some infrastructure for polling and interrupt
289 * handling, as well as handling shifts in PHY hardware state
290 */
291struct phy_device {
292 /* Information about the PHY type */
293 /* And management functions */
294 struct phy_driver *drv;
295
296 struct mii_bus *bus;
297
298 struct device dev;
299
300 u32 phy_id;
301
David Daneyac28b9f2012-06-27 07:33:35 +0000302 struct phy_c45_device_ids c45_ids;
303 bool is_c45;
Florian Fainelli4284b6a2013-05-23 01:11:12 +0000304 bool is_internal;
David Daneyac28b9f2012-06-27 07:33:35 +0000305
Andy Fleming00db8182005-07-30 19:31:23 -0400306 enum phy_state state;
307
308 u32 dev_flags;
309
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600310 phy_interface_t interface;
311
Peter Meerwaldc6883992010-09-02 04:06:24 +0000312 /* Bus address of the PHY (0-31) */
Andy Fleming00db8182005-07-30 19:31:23 -0400313 int addr;
314
Andy Flemingc5e38a92008-04-09 19:38:27 -0500315 /*
316 * forced speed & duplex (no autoneg)
Andy Fleming00db8182005-07-30 19:31:23 -0400317 * partner speed & duplex & pause (autoneg)
318 */
319 int speed;
320 int duplex;
321 int pause;
322 int asym_pause;
323
324 /* The most recently read link state */
325 int link;
326
327 /* Enabled Interrupts */
328 u32 interrupts;
329
330 /* Union of PHY and Attached devices' supported modes */
331 /* See mii.h for more info */
332 u32 supported;
333 u32 advertising;
334
335 int autoneg;
336
337 int link_timeout;
338
Andy Flemingc5e38a92008-04-09 19:38:27 -0500339 /*
340 * Interrupt number for this PHY
341 * -1 means no interrupt
342 */
Andy Fleming00db8182005-07-30 19:31:23 -0400343 int irq;
344
345 /* private data pointer */
346 /* For use by PHYs to maintain extra state */
347 void *priv;
348
349 /* Interrupt and Polling infrastructure */
350 struct work_struct phy_queue;
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700351 struct delayed_work state_queue;
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700352 atomic_t irq_disable;
Andy Fleming00db8182005-07-30 19:31:23 -0400353
Nate Case35b5f6b2008-01-29 10:05:09 -0600354 struct mutex lock;
Andy Fleming00db8182005-07-30 19:31:23 -0400355
356 struct net_device *attached_dev;
357
358 void (*adjust_link)(struct net_device *dev);
359
360 void (*adjust_state)(struct net_device *dev);
361};
362#define to_phy_device(d) container_of(d, struct phy_device, dev)
363
364/* struct phy_driver: Driver structure for a particular PHY type
365 *
366 * phy_id: The result of reading the UID registers of this PHY
367 * type, and ANDing them with the phy_id_mask. This driver
368 * only works for PHYs with IDs which match this field
369 * name: The friendly name of this PHY type
370 * phy_id_mask: Defines the important bits of the phy_id
371 * features: A list of features (speed, duplex, etc) supported
372 * by this PHY
373 * flags: A bitfield defining certain other features this PHY
374 * supports (like interrupts)
375 *
376 * The drivers must implement config_aneg and read_status. All
377 * other functions are optional. Note that none of these
378 * functions should be called from interrupt time. The goal is
379 * for the bus read/write functions to be able to block when the
380 * bus transaction is happening, and be freed up by an interrupt
381 * (The MPC85xx has this ability, though it is not currently
382 * supported in the driver).
383 */
384struct phy_driver {
385 u32 phy_id;
386 char *name;
387 unsigned int phy_id_mask;
388 u32 features;
389 u32 flags;
390
Andy Flemingc5e38a92008-04-09 19:38:27 -0500391 /*
392 * Called to initialize the PHY,
393 * including after a reset
394 */
Andy Fleming00db8182005-07-30 19:31:23 -0400395 int (*config_init)(struct phy_device *phydev);
396
Andy Flemingc5e38a92008-04-09 19:38:27 -0500397 /*
398 * Called during discovery. Used to set
399 * up device-specific structures, if any
400 */
Andy Fleming00db8182005-07-30 19:31:23 -0400401 int (*probe)(struct phy_device *phydev);
402
403 /* PHY Power Management */
404 int (*suspend)(struct phy_device *phydev);
405 int (*resume)(struct phy_device *phydev);
406
Andy Flemingc5e38a92008-04-09 19:38:27 -0500407 /*
408 * Configures the advertisement and resets
Andy Fleming00db8182005-07-30 19:31:23 -0400409 * autonegotiation if phydev->autoneg is on,
410 * forces the speed to the current settings in phydev
Andy Flemingc5e38a92008-04-09 19:38:27 -0500411 * if phydev->autoneg is off
412 */
Andy Fleming00db8182005-07-30 19:31:23 -0400413 int (*config_aneg)(struct phy_device *phydev);
414
415 /* Determines the negotiated speed and duplex */
416 int (*read_status)(struct phy_device *phydev);
417
418 /* Clears any pending interrupts */
419 int (*ack_interrupt)(struct phy_device *phydev);
420
421 /* Enables or disables interrupts */
422 int (*config_intr)(struct phy_device *phydev);
423
Anatolij Gustschina8729eb2009-04-07 02:01:42 +0000424 /*
425 * Checks if the PHY generated an interrupt.
426 * For multi-PHY devices with shared PHY interrupt pin
427 */
428 int (*did_interrupt)(struct phy_device *phydev);
429
Andy Fleming00db8182005-07-30 19:31:23 -0400430 /* Clears up any memory if needed */
431 void (*remove)(struct phy_device *phydev);
432
David Daneya30e2c12012-06-27 07:33:37 +0000433 /* Returns true if this is a suitable driver for the given
434 * phydev. If NULL, matching is based on phy_id and
435 * phy_id_mask.
436 */
437 int (*match_phy_device)(struct phy_device *phydev);
438
Richard Cochranc8f3a8c2012-04-03 22:59:17 +0000439 /* Handles ethtool queries for hardware time stamping. */
440 int (*ts_info)(struct phy_device *phydev, struct ethtool_ts_info *ti);
441
Richard Cochranc1f19b52010-07-17 08:49:36 +0000442 /* Handles SIOCSHWTSTAMP ioctl for hardware time stamping. */
443 int (*hwtstamp)(struct phy_device *phydev, struct ifreq *ifr);
444
445 /*
446 * Requests a Rx timestamp for 'skb'. If the skb is accepted,
447 * the phy driver promises to deliver it using netif_rx() as
448 * soon as a timestamp becomes available. One of the
449 * PTP_CLASS_ values is passed in 'type'. The function must
450 * return true if the skb is accepted for delivery.
451 */
452 bool (*rxtstamp)(struct phy_device *dev, struct sk_buff *skb, int type);
453
454 /*
455 * Requests a Tx timestamp for 'skb'. The phy driver promises
Richard Cochranda92b192011-10-21 00:49:15 +0000456 * to deliver it using skb_complete_tx_timestamp() as soon as a
Richard Cochranc1f19b52010-07-17 08:49:36 +0000457 * timestamp becomes available. One of the PTP_CLASS_ values
458 * is passed in 'type'.
459 */
460 void (*txtstamp)(struct phy_device *dev, struct sk_buff *skb, int type);
461
Michael Stapelberg42e836e2013-03-11 13:56:44 +0000462 /* Some devices (e.g. qnap TS-119P II) require PHY register changes to
463 * enable Wake on LAN, so set_wol is provided to be called in the
464 * ethernet driver's set_wol function. */
465 int (*set_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol);
466
467 /* See set_wol, but for checking whether Wake on LAN is enabled. */
468 void (*get_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol);
469
Andy Fleming00db8182005-07-30 19:31:23 -0400470 struct device_driver driver;
471};
472#define to_phy_driver(d) container_of(d, struct phy_driver, driver)
473
Andy Flemingf62220d2008-04-18 17:29:54 -0500474#define PHY_ANY_ID "MATCH ANY PHY"
475#define PHY_ANY_UID 0xffffffff
476
477/* A Structure for boards to register fixups with the PHY Lib */
478struct phy_fixup {
479 struct list_head list;
David S. Miller8e401ec2009-05-26 21:16:25 -0700480 char bus_id[20];
Andy Flemingf62220d2008-04-18 17:29:54 -0500481 u32 phy_uid;
482 u32 phy_uid_mask;
483 int (*run)(struct phy_device *phydev);
484};
485
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000486/**
487 * phy_read - Convenience function for reading a given PHY register
488 * @phydev: the phy_device struct
489 * @regnum: register number to read
490 *
491 * NOTE: MUST NOT be called from interrupt context,
492 * because the bus read/write functions may wait for an interrupt
493 * to conclude the operation.
494 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000495static inline int phy_read(struct phy_device *phydev, u32 regnum)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000496{
497 return mdiobus_read(phydev->bus, phydev->addr, regnum);
498}
499
500/**
501 * phy_write - Convenience function for writing a given PHY register
502 * @phydev: the phy_device struct
503 * @regnum: register number to write
504 * @val: value to write to @regnum
505 *
506 * NOTE: MUST NOT be called from interrupt context,
507 * because the bus read/write functions may wait for an interrupt
508 * to conclude the operation.
509 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000510static inline int phy_write(struct phy_device *phydev, u32 regnum, u16 val)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000511{
512 return mdiobus_write(phydev->bus, phydev->addr, regnum, val);
513}
514
Florian Fainelli2c7b4922013-05-19 22:53:42 +0000515/**
516 * phy_interrupt_is_valid - Convenience function for testing a given PHY irq
517 * @phydev: the phy_device struct
518 *
519 * NOTE: must be kept in sync with addition/removal of PHY_POLL and
520 * PHY_IGNORE_INTERRUPT
521 */
522static inline bool phy_interrupt_is_valid(struct phy_device *phydev)
523{
524 return phydev->irq != PHY_POLL && phydev->irq != PHY_IGNORE_INTERRUPT;
525}
526
Florian Fainelli4284b6a2013-05-23 01:11:12 +0000527/**
528 * phy_is_internal - Convenience function for testing if a PHY is internal
529 * @phydev: the phy_device struct
530 */
531static inline bool phy_is_internal(struct phy_device *phydev)
532{
533 return phydev->is_internal;
534}
535
David Daneyac28b9f2012-06-27 07:33:35 +0000536struct phy_device *phy_device_create(struct mii_bus *bus, int addr, int phy_id,
537 bool is_c45, struct phy_c45_device_ids *c45_ids);
538struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45);
Grant Likely4dea5472009-04-25 12:52:46 +0000539int phy_device_register(struct phy_device *phy);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000540int phy_init_hw(struct phy_device *phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500541struct phy_device * phy_attach(struct net_device *dev,
Florian Fainellif9a8f832013-01-14 00:52:52 +0000542 const char *bus_id, phy_interface_t interface);
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800543struct phy_device *phy_find_first(struct mii_bus *bus);
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000544int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
Florian Fainellif9a8f832013-01-14 00:52:52 +0000545 void (*handler)(struct net_device *),
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000546 phy_interface_t interface);
Andy Flemingf62220d2008-04-18 17:29:54 -0500547struct phy_device * phy_connect(struct net_device *dev, const char *bus_id,
Florian Fainellif9a8f832013-01-14 00:52:52 +0000548 void (*handler)(struct net_device *),
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600549 phy_interface_t interface);
Andy Fleminge1393452005-08-24 18:46:21 -0500550void phy_disconnect(struct phy_device *phydev);
551void phy_detach(struct phy_device *phydev);
552void phy_start(struct phy_device *phydev);
553void phy_stop(struct phy_device *phydev);
554int phy_start_aneg(struct phy_device *phydev);
555
Andy Fleminge1393452005-08-24 18:46:21 -0500556int phy_stop_interrupts(struct phy_device *phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400557
558static inline int phy_read_status(struct phy_device *phydev) {
559 return phydev->drv->read_status(phydev);
560}
561
Madalin Bucur3fb69bc2013-11-20 16:38:19 -0600562int genphy_setup_forced(struct phy_device *phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400563int genphy_restart_aneg(struct phy_device *phydev);
564int genphy_config_aneg(struct phy_device *phydev);
565int genphy_update_link(struct phy_device *phydev);
566int genphy_read_status(struct phy_device *phydev);
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -0800567int genphy_suspend(struct phy_device *phydev);
568int genphy_resume(struct phy_device *phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400569void phy_driver_unregister(struct phy_driver *drv);
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000570void phy_drivers_unregister(struct phy_driver *drv, int n);
Andy Fleming00db8182005-07-30 19:31:23 -0400571int phy_driver_register(struct phy_driver *new_driver);
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000572int phy_drivers_register(struct phy_driver *new_driver, int n);
Anton Vorontsov4f9c85a2010-01-18 05:37:16 +0000573void phy_state_machine(struct work_struct *work);
Florian Fainelli5ea94e72013-05-19 22:53:43 +0000574void phy_change(struct work_struct *work);
575void phy_mac_interrupt(struct phy_device *phydev, int new_link);
Andy Fleming00db8182005-07-30 19:31:23 -0400576void phy_start_machine(struct phy_device *phydev,
577 void (*handler)(struct net_device *));
578void phy_stop_machine(struct phy_device *phydev);
579int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd);
580int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd);
581int phy_mii_ioctl(struct phy_device *phydev,
Richard Cochran28b04112010-07-17 08:48:55 +0000582 struct ifreq *ifr, int cmd);
Andy Fleminge1393452005-08-24 18:46:21 -0500583int phy_start_interrupts(struct phy_device *phydev);
584void phy_print_status(struct phy_device *phydev);
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300585void phy_device_free(struct phy_device *phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400586
Andy Flemingf62220d2008-04-18 17:29:54 -0500587int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
588 int (*run)(struct phy_device *));
589int phy_register_fixup_for_id(const char *bus_id,
590 int (*run)(struct phy_device *));
591int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
592 int (*run)(struct phy_device *));
593int phy_scan_fixups(struct phy_device *phydev);
594
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000595int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable);
596int phy_get_eee_err(struct phy_device *phydev);
597int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data);
598int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data);
Michael Stapelberg42e836e2013-03-11 13:56:44 +0000599int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol);
600void phy_ethtool_get_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000601
Andy Fleming9b9a8bf2008-05-02 13:00:51 -0500602int __init mdio_bus_init(void);
603void mdio_bus_exit(void);
604
Andy Fleming00db8182005-07-30 19:31:23 -0400605extern struct bus_type mdio_bus_type;
Andy Fleming00db8182005-07-30 19:31:23 -0400606#endif /* __PHY_H */