]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - include/linux/phy.h
mdio_bus: coding style fixes
[mirror_ubuntu-eoan-kernel.git] / include / linux / phy.h
CommitLineData
00db8189
AF
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>
13df29f6
MR
22#include <linux/ethtool.h>
23#include <linux/mii.h>
24#include <linux/timer.h>
25#include <linux/workqueue.h>
8626d3b4 26#include <linux/mod_devicetable.h>
00db8189 27
60063497 28#include <linux/atomic.h>
0ac49527 29
e9fbdf17 30#define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \
00db8189
AF
31 SUPPORTED_TP | \
32 SUPPORTED_MII)
33
e9fbdf17
FF
34#define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \
35 SUPPORTED_10baseT_Full)
36
37#define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \
38 SUPPORTED_100baseT_Full)
39
40#define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \
00db8189
AF
41 SUPPORTED_1000baseT_Full)
42
e9fbdf17
FF
43#define PHY_BASIC_FEATURES (PHY_10BT_FEATURES | \
44 PHY_100BT_FEATURES | \
45 PHY_DEFAULT_FEATURES)
46
47#define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \
48 PHY_1000BT_FEATURES)
49
50
c5e38a94
AF
51/*
52 * Set phydev->irq to PHY_POLL if interrupts are not supported,
00db8189
AF
53 * or not desired for this PHY. Set to PHY_IGNORE_INTERRUPT if
54 * the attached driver handles the interrupt
55 */
56#define PHY_POLL -1
57#define PHY_IGNORE_INTERRUPT -2
58
59#define PHY_HAS_INTERRUPT 0x00000001
60#define PHY_HAS_MAGICANEG 0x00000002
4284b6a5 61#define PHY_IS_INTERNAL 0x00000004
00db8189 62
e8a2b6a4
AF
63/* Interface Mode definitions */
64typedef enum {
4157ef1b 65 PHY_INTERFACE_MODE_NA,
e8a2b6a4
AF
66 PHY_INTERFACE_MODE_MII,
67 PHY_INTERFACE_MODE_GMII,
68 PHY_INTERFACE_MODE_SGMII,
69 PHY_INTERFACE_MODE_TBI,
2cc70ba4 70 PHY_INTERFACE_MODE_REVMII,
e8a2b6a4
AF
71 PHY_INTERFACE_MODE_RMII,
72 PHY_INTERFACE_MODE_RGMII,
a999589c 73 PHY_INTERFACE_MODE_RGMII_ID,
7d400a4c
KP
74 PHY_INTERFACE_MODE_RGMII_RXID,
75 PHY_INTERFACE_MODE_RGMII_TXID,
4157ef1b
SG
76 PHY_INTERFACE_MODE_RTBI,
77 PHY_INTERFACE_MODE_SMII,
e8a2b6a4
AF
78} phy_interface_t;
79
00db8189 80
e8a2b6a4 81#define PHY_INIT_TIMEOUT 100000
00db8189
AF
82#define PHY_STATE_TIME 1
83#define PHY_FORCE_TIMEOUT 10
84#define PHY_AN_TIMEOUT 10
85
e8a2b6a4 86#define PHY_MAX_ADDR 32
00db8189 87
a4d00f17 88/* Used when trying to connect to a specific phy (mii bus id:phy device id) */
9d9326d3
AF
89#define PHY_ID_FMT "%s:%02x"
90
91/*
92 * Need to be a little smaller than phydev->dev.bus_id to leave room
93 * for the ":%02x"
94 */
8e401ecc 95#define MII_BUS_ID_SIZE (20 - 3)
a4d00f17 96
abf35df2
JG
97/* Or MII_ADDR_C45 into regnum for read/write on mii_bus to enable the 21 bit
98 IEEE 802.3ae clause 45 addressing mode used by 10GIGE phy chips. */
99#define MII_ADDR_C45 (1<<30)
100
313162d0
PG
101struct device;
102struct sk_buff;
103
c5e38a94
AF
104/*
105 * The Bus class for PHYs. Devices which provide access to
106 * PHYs should register using this structure
107 */
00db8189
AF
108struct mii_bus {
109 const char *name;
9d9326d3 110 char id[MII_BUS_ID_SIZE];
00db8189
AF
111 void *priv;
112 int (*read)(struct mii_bus *bus, int phy_id, int regnum);
113 int (*write)(struct mii_bus *bus, int phy_id, int regnum, u16 val);
114 int (*reset)(struct mii_bus *bus);
115
c5e38a94
AF
116 /*
117 * A lock to ensure that only one thing can read/write
118 * the MDIO bus at a time
119 */
35b5f6b1 120 struct mutex mdio_lock;
00db8189 121
18ee49dd 122 struct device *parent;
46abc021
LB
123 enum {
124 MDIOBUS_ALLOCATED = 1,
125 MDIOBUS_REGISTERED,
126 MDIOBUS_UNREGISTERED,
127 MDIOBUS_RELEASED,
128 } state;
129 struct device dev;
00db8189
AF
130
131 /* list of all PHYs on bus */
132 struct phy_device *phy_map[PHY_MAX_ADDR];
133
c6883996 134 /* PHY addresses to be ignored when probing */
f896424c
MP
135 u32 phy_mask;
136
c5e38a94
AF
137 /*
138 * Pointer to an array of interrupts, each PHY's
139 * interrupt at the index matching its address
140 */
00db8189
AF
141 int *irq;
142};
46abc021 143#define to_mii_bus(d) container_of(d, struct mii_bus, dev)
00db8189 144
eb8a54a7
TT
145struct mii_bus *mdiobus_alloc_size(size_t);
146static inline struct mii_bus *mdiobus_alloc(void)
147{
148 return mdiobus_alloc_size(0);
149}
150
2e888103
LB
151int mdiobus_register(struct mii_bus *bus);
152void mdiobus_unregister(struct mii_bus *bus);
153void mdiobus_free(struct mii_bus *bus);
154struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr);
abf35df2
JG
155int mdiobus_read(struct mii_bus *bus, int addr, u32 regnum);
156int mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val);
2e888103
LB
157
158
e8a2b6a4
AF
159#define PHY_INTERRUPT_DISABLED 0x0
160#define PHY_INTERRUPT_ENABLED 0x80000000
00db8189
AF
161
162/* PHY state machine states:
163 *
164 * DOWN: PHY device and driver are not ready for anything. probe
165 * should be called if and only if the PHY is in this state,
166 * given that the PHY device exists.
167 * - PHY driver probe function will, depending on the PHY, set
168 * the state to STARTING or READY
169 *
170 * STARTING: PHY device is coming up, and the ethernet driver is
171 * not ready. PHY drivers may set this in the probe function.
172 * If they do, they are responsible for making sure the state is
173 * eventually set to indicate whether the PHY is UP or READY,
174 * depending on the state when the PHY is done starting up.
175 * - PHY driver will set the state to READY
176 * - start will set the state to PENDING
177 *
178 * READY: PHY is ready to send and receive packets, but the
179 * controller is not. By default, PHYs which do not implement
180 * probe will be set to this state by phy_probe(). If the PHY
181 * driver knows the PHY is ready, and the PHY state is STARTING,
182 * then it sets this STATE.
183 * - start will set the state to UP
184 *
185 * PENDING: PHY device is coming up, but the ethernet driver is
186 * ready. phy_start will set this state if the PHY state is
187 * STARTING.
188 * - PHY driver will set the state to UP when the PHY is ready
189 *
190 * UP: The PHY and attached device are ready to do work.
191 * Interrupts should be started here.
192 * - timer moves to AN
193 *
194 * AN: The PHY is currently negotiating the link state. Link is
195 * therefore down for now. phy_timer will set this state when it
196 * detects the state is UP. config_aneg will set this state
197 * whenever called with phydev->autoneg set to AUTONEG_ENABLE.
198 * - If autonegotiation finishes, but there's no link, it sets
199 * the state to NOLINK.
200 * - If aneg finishes with link, it sets the state to RUNNING,
201 * and calls adjust_link
202 * - If autonegotiation did not finish after an arbitrary amount
203 * of time, autonegotiation should be tried again if the PHY
204 * supports "magic" autonegotiation (back to AN)
205 * - If it didn't finish, and no magic_aneg, move to FORCING.
206 *
207 * NOLINK: PHY is up, but not currently plugged in.
208 * - If the timer notes that the link comes back, we move to RUNNING
209 * - config_aneg moves to AN
210 * - phy_stop moves to HALTED
211 *
212 * FORCING: PHY is being configured with forced settings
213 * - if link is up, move to RUNNING
214 * - If link is down, we drop to the next highest setting, and
215 * retry (FORCING) after a timeout
216 * - phy_stop moves to HALTED
217 *
218 * RUNNING: PHY is currently up, running, and possibly sending
219 * and/or receiving packets
220 * - timer will set CHANGELINK if we're polling (this ensures the
221 * link state is polled every other cycle of this state machine,
222 * which makes it every other second)
223 * - irq will set CHANGELINK
224 * - config_aneg will set AN
225 * - phy_stop moves to HALTED
226 *
227 * CHANGELINK: PHY experienced a change in link state
228 * - timer moves to RUNNING if link
229 * - timer moves to NOLINK if the link is down
230 * - phy_stop moves to HALTED
231 *
232 * HALTED: PHY is up, but no polling or interrupts are done. Or
233 * PHY is in an error state.
234 *
235 * - phy_start moves to RESUMING
236 *
237 * RESUMING: PHY was halted, but now wants to run again.
238 * - If we are forcing, or aneg is done, timer moves to RUNNING
239 * - If aneg is not done, timer moves to AN
240 * - phy_stop moves to HALTED
241 */
242enum phy_state {
243 PHY_DOWN=0,
244 PHY_STARTING,
245 PHY_READY,
246 PHY_PENDING,
247 PHY_UP,
248 PHY_AN,
249 PHY_RUNNING,
250 PHY_NOLINK,
251 PHY_FORCING,
252 PHY_CHANGELINK,
253 PHY_HALTED,
254 PHY_RESUMING
255};
256
ac28b9f8
DD
257/**
258 * struct phy_c45_device_ids - 802.3-c45 Device Identifiers
259 * @devices_in_package: Bit vector of devices present.
260 * @device_ids: The device identifer for each present device.
261 */
262struct phy_c45_device_ids {
263 u32 devices_in_package;
264 u32 device_ids[8];
265};
c1f19b51 266
00db8189
AF
267/* phy_device: An instance of a PHY
268 *
269 * drv: Pointer to the driver for this PHY instance
270 * bus: Pointer to the bus this PHY is on
271 * dev: driver model device structure for this PHY
272 * phy_id: UID for this device found during discovery
ac28b9f8
DD
273 * c45_ids: 802.3-c45 Device Identifers if is_c45.
274 * is_c45: Set to true if this phy uses clause 45 addressing.
4284b6a5 275 * is_internal: Set to true if this phy is internal to a MAC.
00db8189
AF
276 * state: state of the PHY for management purposes
277 * dev_flags: Device-specific flags used by the PHY driver.
278 * addr: Bus address of PHY
279 * link_timeout: The number of timer firings to wait before the
280 * giving up on the current attempt at acquiring a link
281 * irq: IRQ number of the PHY's interrupt (-1 if none)
282 * phy_timer: The timer for handling the state machine
283 * phy_queue: A work_queue for the interrupt
284 * attached_dev: The attached enet driver's device instance ptr
285 * adjust_link: Callback for the enet controller to respond to
286 * changes in the link state.
287 * adjust_state: Callback for the enet driver to respond to
288 * changes in the state machine.
289 *
114002bc
FF
290 * speed, duplex, pause, supported, advertising, lp_advertising,
291 * and autoneg are used like in mii_if_info
00db8189
AF
292 *
293 * interrupts currently only supports enabled or disabled,
294 * but could be changed in the future to support enabling
295 * and disabling specific interrupts
296 *
297 * Contains some infrastructure for polling and interrupt
298 * handling, as well as handling shifts in PHY hardware state
299 */
300struct phy_device {
301 /* Information about the PHY type */
302 /* And management functions */
303 struct phy_driver *drv;
304
305 struct mii_bus *bus;
306
307 struct device dev;
308
309 u32 phy_id;
310
ac28b9f8
DD
311 struct phy_c45_device_ids c45_ids;
312 bool is_c45;
4284b6a5 313 bool is_internal;
ac28b9f8 314
00db8189
AF
315 enum phy_state state;
316
317 u32 dev_flags;
318
e8a2b6a4
AF
319 phy_interface_t interface;
320
c6883996 321 /* Bus address of the PHY (0-31) */
00db8189
AF
322 int addr;
323
c5e38a94
AF
324 /*
325 * forced speed & duplex (no autoneg)
00db8189
AF
326 * partner speed & duplex & pause (autoneg)
327 */
328 int speed;
329 int duplex;
330 int pause;
331 int asym_pause;
332
333 /* The most recently read link state */
334 int link;
335
336 /* Enabled Interrupts */
337 u32 interrupts;
338
339 /* Union of PHY and Attached devices' supported modes */
340 /* See mii.h for more info */
341 u32 supported;
342 u32 advertising;
114002bc 343 u32 lp_advertising;
00db8189
AF
344
345 int autoneg;
346
347 int link_timeout;
348
c5e38a94
AF
349 /*
350 * Interrupt number for this PHY
351 * -1 means no interrupt
352 */
00db8189
AF
353 int irq;
354
355 /* private data pointer */
356 /* For use by PHYs to maintain extra state */
357 void *priv;
358
359 /* Interrupt and Polling infrastructure */
360 struct work_struct phy_queue;
a390d1f3 361 struct delayed_work state_queue;
0ac49527 362 atomic_t irq_disable;
00db8189 363
35b5f6b1 364 struct mutex lock;
00db8189
AF
365
366 struct net_device *attached_dev;
367
368 void (*adjust_link)(struct net_device *dev);
369
370 void (*adjust_state)(struct net_device *dev);
371};
372#define to_phy_device(d) container_of(d, struct phy_device, dev)
373
374/* struct phy_driver: Driver structure for a particular PHY type
375 *
376 * phy_id: The result of reading the UID registers of this PHY
377 * type, and ANDing them with the phy_id_mask. This driver
378 * only works for PHYs with IDs which match this field
379 * name: The friendly name of this PHY type
380 * phy_id_mask: Defines the important bits of the phy_id
381 * features: A list of features (speed, duplex, etc) supported
382 * by this PHY
383 * flags: A bitfield defining certain other features this PHY
384 * supports (like interrupts)
385 *
386 * The drivers must implement config_aneg and read_status. All
387 * other functions are optional. Note that none of these
388 * functions should be called from interrupt time. The goal is
389 * for the bus read/write functions to be able to block when the
390 * bus transaction is happening, and be freed up by an interrupt
391 * (The MPC85xx has this ability, though it is not currently
392 * supported in the driver).
393 */
394struct phy_driver {
395 u32 phy_id;
396 char *name;
397 unsigned int phy_id_mask;
398 u32 features;
399 u32 flags;
400
c5e38a94
AF
401 /*
402 * Called to initialize the PHY,
403 * including after a reset
404 */
00db8189
AF
405 int (*config_init)(struct phy_device *phydev);
406
c5e38a94
AF
407 /*
408 * Called during discovery. Used to set
409 * up device-specific structures, if any
410 */
00db8189
AF
411 int (*probe)(struct phy_device *phydev);
412
413 /* PHY Power Management */
414 int (*suspend)(struct phy_device *phydev);
415 int (*resume)(struct phy_device *phydev);
416
c5e38a94
AF
417 /*
418 * Configures the advertisement and resets
00db8189
AF
419 * autonegotiation if phydev->autoneg is on,
420 * forces the speed to the current settings in phydev
c5e38a94
AF
421 * if phydev->autoneg is off
422 */
00db8189
AF
423 int (*config_aneg)(struct phy_device *phydev);
424
425 /* Determines the negotiated speed and duplex */
426 int (*read_status)(struct phy_device *phydev);
427
428 /* Clears any pending interrupts */
429 int (*ack_interrupt)(struct phy_device *phydev);
430
431 /* Enables or disables interrupts */
432 int (*config_intr)(struct phy_device *phydev);
433
a8729eb3
AG
434 /*
435 * Checks if the PHY generated an interrupt.
436 * For multi-PHY devices with shared PHY interrupt pin
437 */
438 int (*did_interrupt)(struct phy_device *phydev);
439
00db8189
AF
440 /* Clears up any memory if needed */
441 void (*remove)(struct phy_device *phydev);
442
a30e2c18
DD
443 /* Returns true if this is a suitable driver for the given
444 * phydev. If NULL, matching is based on phy_id and
445 * phy_id_mask.
446 */
447 int (*match_phy_device)(struct phy_device *phydev);
448
c8f3a8c3
RC
449 /* Handles ethtool queries for hardware time stamping. */
450 int (*ts_info)(struct phy_device *phydev, struct ethtool_ts_info *ti);
451
c1f19b51
RC
452 /* Handles SIOCSHWTSTAMP ioctl for hardware time stamping. */
453 int (*hwtstamp)(struct phy_device *phydev, struct ifreq *ifr);
454
455 /*
456 * Requests a Rx timestamp for 'skb'. If the skb is accepted,
457 * the phy driver promises to deliver it using netif_rx() as
458 * soon as a timestamp becomes available. One of the
459 * PTP_CLASS_ values is passed in 'type'. The function must
460 * return true if the skb is accepted for delivery.
461 */
462 bool (*rxtstamp)(struct phy_device *dev, struct sk_buff *skb, int type);
463
464 /*
465 * Requests a Tx timestamp for 'skb'. The phy driver promises
da92b194 466 * to deliver it using skb_complete_tx_timestamp() as soon as a
c1f19b51
RC
467 * timestamp becomes available. One of the PTP_CLASS_ values
468 * is passed in 'type'.
469 */
470 void (*txtstamp)(struct phy_device *dev, struct sk_buff *skb, int type);
471
42e836eb
MS
472 /* Some devices (e.g. qnap TS-119P II) require PHY register changes to
473 * enable Wake on LAN, so set_wol is provided to be called in the
474 * ethernet driver's set_wol function. */
475 int (*set_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol);
476
477 /* See set_wol, but for checking whether Wake on LAN is enabled. */
478 void (*get_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol);
479
00db8189
AF
480 struct device_driver driver;
481};
482#define to_phy_driver(d) container_of(d, struct phy_driver, driver)
483
f62220d3
AF
484#define PHY_ANY_ID "MATCH ANY PHY"
485#define PHY_ANY_UID 0xffffffff
486
487/* A Structure for boards to register fixups with the PHY Lib */
488struct phy_fixup {
489 struct list_head list;
8e401ecc 490 char bus_id[20];
f62220d3
AF
491 u32 phy_uid;
492 u32 phy_uid_mask;
493 int (*run)(struct phy_device *phydev);
494};
495
2e888103
LB
496/**
497 * phy_read - Convenience function for reading a given PHY register
498 * @phydev: the phy_device struct
499 * @regnum: register number to read
500 *
501 * NOTE: MUST NOT be called from interrupt context,
502 * because the bus read/write functions may wait for an interrupt
503 * to conclude the operation.
504 */
abf35df2 505static inline int phy_read(struct phy_device *phydev, u32 regnum)
2e888103
LB
506{
507 return mdiobus_read(phydev->bus, phydev->addr, regnum);
508}
509
510/**
511 * phy_write - Convenience function for writing a given PHY register
512 * @phydev: the phy_device struct
513 * @regnum: register number to write
514 * @val: value to write to @regnum
515 *
516 * NOTE: MUST NOT be called from interrupt context,
517 * because the bus read/write functions may wait for an interrupt
518 * to conclude the operation.
519 */
abf35df2 520static inline int phy_write(struct phy_device *phydev, u32 regnum, u16 val)
2e888103
LB
521{
522 return mdiobus_write(phydev->bus, phydev->addr, regnum, val);
523}
524
2c7b4921
FF
525/**
526 * phy_interrupt_is_valid - Convenience function for testing a given PHY irq
527 * @phydev: the phy_device struct
528 *
529 * NOTE: must be kept in sync with addition/removal of PHY_POLL and
530 * PHY_IGNORE_INTERRUPT
531 */
532static inline bool phy_interrupt_is_valid(struct phy_device *phydev)
533{
534 return phydev->irq != PHY_POLL && phydev->irq != PHY_IGNORE_INTERRUPT;
535}
536
4284b6a5
FF
537/**
538 * phy_is_internal - Convenience function for testing if a PHY is internal
539 * @phydev: the phy_device struct
540 */
541static inline bool phy_is_internal(struct phy_device *phydev)
542{
543 return phydev->is_internal;
544}
545
ac28b9f8
DD
546struct phy_device *phy_device_create(struct mii_bus *bus, int addr, int phy_id,
547 bool is_c45, struct phy_c45_device_ids *c45_ids);
548struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45);
4dea547f 549int phy_device_register(struct phy_device *phy);
2f5cb434 550int phy_init_hw(struct phy_device *phydev);
481b5d93
SH
551int phy_suspend(struct phy_device *phydev);
552int phy_resume(struct phy_device *phydev);
e1393456 553struct phy_device * phy_attach(struct net_device *dev,
f9a8f83b 554 const char *bus_id, phy_interface_t interface);
f8f76db1 555struct phy_device *phy_find_first(struct mii_bus *bus);
fa94f6d9 556int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
f9a8f83b 557 void (*handler)(struct net_device *),
fa94f6d9 558 phy_interface_t interface);
f62220d3 559struct phy_device * phy_connect(struct net_device *dev, const char *bus_id,
f9a8f83b 560 void (*handler)(struct net_device *),
e8a2b6a4 561 phy_interface_t interface);
e1393456
AF
562void phy_disconnect(struct phy_device *phydev);
563void phy_detach(struct phy_device *phydev);
564void phy_start(struct phy_device *phydev);
565void phy_stop(struct phy_device *phydev);
566int phy_start_aneg(struct phy_device *phydev);
567
e1393456 568int phy_stop_interrupts(struct phy_device *phydev);
00db8189
AF
569
570static inline int phy_read_status(struct phy_device *phydev) {
571 return phydev->drv->read_status(phydev);
572}
573
3fb69bca 574int genphy_setup_forced(struct phy_device *phydev);
00db8189
AF
575int genphy_restart_aneg(struct phy_device *phydev);
576int genphy_config_aneg(struct phy_device *phydev);
577int genphy_update_link(struct phy_device *phydev);
578int genphy_read_status(struct phy_device *phydev);
0f0ca340
GC
579int genphy_suspend(struct phy_device *phydev);
580int genphy_resume(struct phy_device *phydev);
00db8189 581void phy_driver_unregister(struct phy_driver *drv);
d5bf9071 582void phy_drivers_unregister(struct phy_driver *drv, int n);
00db8189 583int phy_driver_register(struct phy_driver *new_driver);
d5bf9071 584int phy_drivers_register(struct phy_driver *new_driver, int n);
4f9c85a1 585void phy_state_machine(struct work_struct *work);
5ea94e76
FF
586void phy_change(struct work_struct *work);
587void phy_mac_interrupt(struct phy_device *phydev, int new_link);
00db8189
AF
588void phy_start_machine(struct phy_device *phydev,
589 void (*handler)(struct net_device *));
590void phy_stop_machine(struct phy_device *phydev);
591int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd);
592int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd);
593int phy_mii_ioctl(struct phy_device *phydev,
28b04113 594 struct ifreq *ifr, int cmd);
e1393456
AF
595int phy_start_interrupts(struct phy_device *phydev);
596void phy_print_status(struct phy_device *phydev);
6f4a7f41 597void phy_device_free(struct phy_device *phydev);
00db8189 598
f62220d3
AF
599int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
600 int (*run)(struct phy_device *));
601int phy_register_fixup_for_id(const char *bus_id,
602 int (*run)(struct phy_device *));
603int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
604 int (*run)(struct phy_device *));
605int phy_scan_fixups(struct phy_device *phydev);
606
a59a4d19
GC
607int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable);
608int phy_get_eee_err(struct phy_device *phydev);
609int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data);
610int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data);
42e836eb
MS
611int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol);
612void phy_ethtool_get_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol);
a59a4d19 613
9b9a8bfc
AF
614int __init mdio_bus_init(void);
615void mdio_bus_exit(void);
616
00db8189 617extern struct bus_type mdio_bus_type;
00db8189 618#endif /* __PHY_H */