blob: 462b90b73f939d475e800b7b8cec0cf96f6152d4 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Andy Fleming00db8182005-07-30 19:31:23 -04002/*
Andy Fleming00db8182005-07-30 19:31:23 -04003 * Framework and drivers for configuring and reading different PHYs
Robert P. J. Dayd8de01b2018-12-26 06:35:23 -06004 * Based on code in sungem_phy.c and (long-removed) gianfar_phy.c
Andy Fleming00db8182005-07-30 19:31:23 -04005 *
6 * Author: Andy Fleming
7 *
8 * Copyright (c) 2004 Freescale Semiconductor, Inc.
Andy Fleming00db8182005-07-30 19:31:23 -04009 */
10
11#ifndef __PHY_H
12#define __PHY_H
13
Andrew Lunn22209432016-01-06 20:11:13 +010014#include <linux/compiler.h>
Andy Fleming00db8182005-07-30 19:31:23 -040015#include <linux/spinlock.h>
Maciej W. Rozycki13df29f2006-10-03 16:18:28 +010016#include <linux/ethtool.h>
Andrew Lunnb31cdff2018-09-29 23:04:09 +020017#include <linux/linkmode.h>
Andrew Lunnbac83c62016-01-06 20:11:07 +010018#include <linux/mdio.h>
Maciej W. Rozycki13df29f2006-10-03 16:18:28 +010019#include <linux/mii.h>
Russell King3e3aaf62015-09-24 20:36:02 +010020#include <linux/module.h>
Maciej W. Rozycki13df29f2006-10-03 16:18:28 +010021#include <linux/timer.h>
22#include <linux/workqueue.h>
David Woodhouse8626d3b2010-04-02 01:05:27 +000023#include <linux/mod_devicetable.h>
Andy Fleming00db8182005-07-30 19:31:23 -040024
Arun Sharma600634972011-07-26 16:09:06 -070025#include <linux/atomic.h>
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -070026
Florian Fainellie9fbdf12013-12-05 14:52:13 -080027#define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \
Andy Fleming00db8182005-07-30 19:31:23 -040028 SUPPORTED_TP | \
29 SUPPORTED_MII)
30
Florian Fainellie9fbdf12013-12-05 14:52:13 -080031#define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \
32 SUPPORTED_10baseT_Full)
33
34#define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \
35 SUPPORTED_100baseT_Full)
36
37#define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \
Andy Fleming00db8182005-07-30 19:31:23 -040038 SUPPORTED_1000baseT_Full)
39
Andrew Lunn719655a2018-09-29 23:04:16 +020040extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_features) __ro_after_init;
41extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_t1_features) __ro_after_init;
42extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_features) __ro_after_init;
43extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_fibre_features) __ro_after_init;
44extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_all_ports_features) __ro_after_init;
45extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_features) __ro_after_init;
Andrew Lunn9e857a42019-01-15 16:55:30 +010046extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_fec_features) __ro_after_init;
Andrew Lunn719655a2018-09-29 23:04:16 +020047extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_full_features) __ro_after_init;
Florian Fainellie9fbdf12013-12-05 14:52:13 -080048
Andrew Lunn719655a2018-09-29 23:04:16 +020049#define PHY_BASIC_FEATURES ((unsigned long *)&phy_basic_features)
50#define PHY_BASIC_T1_FEATURES ((unsigned long *)&phy_basic_t1_features)
51#define PHY_GBIT_FEATURES ((unsigned long *)&phy_gbit_features)
52#define PHY_GBIT_FIBRE_FEATURES ((unsigned long *)&phy_gbit_fibre_features)
53#define PHY_GBIT_ALL_PORTS_FEATURES ((unsigned long *)&phy_gbit_all_ports_features)
54#define PHY_10GBIT_FEATURES ((unsigned long *)&phy_10gbit_features)
Andrew Lunn9e857a42019-01-15 16:55:30 +010055#define PHY_10GBIT_FEC_FEATURES ((unsigned long *)&phy_10gbit_fec_features)
Andrew Lunn719655a2018-09-29 23:04:16 +020056#define PHY_10GBIT_FULL_FEATURES ((unsigned long *)&phy_10gbit_full_features)
Florian Fainellie9fbdf12013-12-05 14:52:13 -080057
Denis Efremov54638c62019-07-10 21:03:24 +030058extern const int phy_basic_ports_array[3];
59extern const int phy_fibre_port_array[1];
60extern const int phy_all_ports_features_array[7];
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010061extern const int phy_10_100_features_array[4];
62extern const int phy_basic_t1_features_array[2];
63extern const int phy_gbit_features_array[2];
64extern const int phy_10gbit_features_array[1];
65
Andy Flemingc5e38a92008-04-09 19:38:27 -050066/*
67 * Set phydev->irq to PHY_POLL if interrupts are not supported,
Andy Fleming00db8182005-07-30 19:31:23 -040068 * or not desired for this PHY. Set to PHY_IGNORE_INTERRUPT if
69 * the attached driver handles the interrupt
70 */
71#define PHY_POLL -1
72#define PHY_IGNORE_INTERRUPT -2
73
Heiner Kallweita4307c02018-11-09 18:17:22 +010074#define PHY_IS_INTERNAL 0x00000001
75#define PHY_RST_AFTER_CLK_EN 0x00000002
Andrew Lunna9049e02016-01-06 20:11:26 +010076#define MDIO_DEVICE_IS_PHY 0x80000000
Andy Fleming00db8182005-07-30 19:31:23 -040077
Andy Fleminge8a2b6a2006-12-01 12:01:06 -060078/* Interface Mode definitions */
79typedef enum {
Shawn Guo4157ef12011-07-05 16:42:09 +080080 PHY_INTERFACE_MODE_NA,
Florian Fainelli735d8a12017-06-23 10:33:14 -070081 PHY_INTERFACE_MODE_INTERNAL,
Andy Fleminge8a2b6a2006-12-01 12:01:06 -060082 PHY_INTERFACE_MODE_MII,
83 PHY_INTERFACE_MODE_GMII,
84 PHY_INTERFACE_MODE_SGMII,
85 PHY_INTERFACE_MODE_TBI,
Florian Fainelli2cc70ba2013-05-28 04:07:21 +000086 PHY_INTERFACE_MODE_REVMII,
Andy Fleminge8a2b6a2006-12-01 12:01:06 -060087 PHY_INTERFACE_MODE_RMII,
88 PHY_INTERFACE_MODE_RGMII,
Kim Phillipsa9995892007-04-13 01:25:57 -050089 PHY_INTERFACE_MODE_RGMII_ID,
Kim Phillips7d400a42007-11-26 16:17:48 -060090 PHY_INTERFACE_MODE_RGMII_RXID,
91 PHY_INTERFACE_MODE_RGMII_TXID,
Shawn Guo4157ef12011-07-05 16:42:09 +080092 PHY_INTERFACE_MODE_RTBI,
93 PHY_INTERFACE_MODE_SMII,
Andy Fleming898dd0b2014-01-10 14:26:46 +080094 PHY_INTERFACE_MODE_XGMII,
Florian Fainellifd70f722014-02-13 16:08:42 -080095 PHY_INTERFACE_MODE_MOCA,
Thomas Petazzonib9d12082014-04-15 15:50:19 +020096 PHY_INTERFACE_MODE_QSGMII,
Sean Wang572de602016-09-22 10:33:54 +080097 PHY_INTERFACE_MODE_TRGMII,
Andrew Lunn55601a82017-02-04 20:02:49 +010098 PHY_INTERFACE_MODE_1000BASEX,
99 PHY_INTERFACE_MODE_2500BASEX,
100 PHY_INTERFACE_MODE_RXAUI,
Russell Kingc125ca02017-06-05 12:23:10 +0100101 PHY_INTERFACE_MODE_XAUI,
102 /* 10GBASE-KR, XFI, SFI - single lane 10G Serdes */
103 PHY_INTERFACE_MODE_10GKR,
Heiner Kallweit4618d672019-05-23 20:06:49 +0200104 PHY_INTERFACE_MODE_USXGMII,
Florian Fainelli8a2fe562014-02-11 17:27:39 -0800105 PHY_INTERFACE_MODE_MAX,
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600106} phy_interface_t;
107
Florian Fainelli8a2fe562014-02-11 17:27:39 -0800108/**
Zach Brown1f9127c2016-10-17 10:49:54 -0500109 * phy_supported_speeds - return all speeds currently supported by a phy device
110 * @phy: The phy device to return supported speeds of.
111 * @speeds: buffer to store supported speeds in.
112 * @size: size of speeds buffer.
113 *
Robert P. J. Dayd8de01b2018-12-26 06:35:23 -0600114 * Description: Returns the number of supported speeds, and fills
115 * the speeds buffer with the supported speeds. If speeds buffer is
116 * too small to contain all currently supported speeds, will return as
Zach Brown1f9127c2016-10-17 10:49:54 -0500117 * many speeds as can fit.
118 */
119unsigned int phy_supported_speeds(struct phy_device *phy,
120 unsigned int *speeds,
121 unsigned int size);
122
123/**
Robert P. J. Dayd8de01b2018-12-26 06:35:23 -0600124 * phy_modes - map phy_interface_t enum to device tree binding of phy-mode
125 * @interface: enum phy_interface_t value
126 *
127 * Description: maps 'enum phy_interface_t' defined in this file
Florian Fainelli8a2fe562014-02-11 17:27:39 -0800128 * into the device tree binding of 'phy-mode', so that Ethernet
129 * device driver can get phy interface from device tree.
130 */
131static inline const char *phy_modes(phy_interface_t interface)
132{
133 switch (interface) {
134 case PHY_INTERFACE_MODE_NA:
135 return "";
Florian Fainelli735d8a12017-06-23 10:33:14 -0700136 case PHY_INTERFACE_MODE_INTERNAL:
137 return "internal";
Florian Fainelli8a2fe562014-02-11 17:27:39 -0800138 case PHY_INTERFACE_MODE_MII:
139 return "mii";
140 case PHY_INTERFACE_MODE_GMII:
141 return "gmii";
142 case PHY_INTERFACE_MODE_SGMII:
143 return "sgmii";
144 case PHY_INTERFACE_MODE_TBI:
145 return "tbi";
146 case PHY_INTERFACE_MODE_REVMII:
147 return "rev-mii";
148 case PHY_INTERFACE_MODE_RMII:
149 return "rmii";
150 case PHY_INTERFACE_MODE_RGMII:
151 return "rgmii";
152 case PHY_INTERFACE_MODE_RGMII_ID:
153 return "rgmii-id";
154 case PHY_INTERFACE_MODE_RGMII_RXID:
155 return "rgmii-rxid";
156 case PHY_INTERFACE_MODE_RGMII_TXID:
157 return "rgmii-txid";
158 case PHY_INTERFACE_MODE_RTBI:
159 return "rtbi";
160 case PHY_INTERFACE_MODE_SMII:
161 return "smii";
162 case PHY_INTERFACE_MODE_XGMII:
163 return "xgmii";
Florian Fainellifd70f722014-02-13 16:08:42 -0800164 case PHY_INTERFACE_MODE_MOCA:
165 return "moca";
Thomas Petazzonib9d12082014-04-15 15:50:19 +0200166 case PHY_INTERFACE_MODE_QSGMII:
167 return "qsgmii";
Sean Wang572de602016-09-22 10:33:54 +0800168 case PHY_INTERFACE_MODE_TRGMII:
169 return "trgmii";
Andrew Lunn55601a82017-02-04 20:02:49 +0100170 case PHY_INTERFACE_MODE_1000BASEX:
171 return "1000base-x";
172 case PHY_INTERFACE_MODE_2500BASEX:
173 return "2500base-x";
174 case PHY_INTERFACE_MODE_RXAUI:
175 return "rxaui";
Russell Kingc125ca02017-06-05 12:23:10 +0100176 case PHY_INTERFACE_MODE_XAUI:
177 return "xaui";
178 case PHY_INTERFACE_MODE_10GKR:
179 return "10gbase-kr";
Heiner Kallweit4618d672019-05-23 20:06:49 +0200180 case PHY_INTERFACE_MODE_USXGMII:
181 return "usxgmii";
Florian Fainelli8a2fe562014-02-11 17:27:39 -0800182 default:
183 return "unknown";
184 }
185}
186
Andy Fleming00db8182005-07-30 19:31:23 -0400187
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600188#define PHY_INIT_TIMEOUT 100000
Andy Fleming00db8182005-07-30 19:31:23 -0400189#define PHY_FORCE_TIMEOUT 10
Andy Fleming00db8182005-07-30 19:31:23 -0400190
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600191#define PHY_MAX_ADDR 32
Andy Fleming00db8182005-07-30 19:31:23 -0400192
Kumar Galaa4d00f12006-01-11 11:27:33 -0800193/* Used when trying to connect to a specific phy (mii bus id:phy device id) */
Andy Fleming9d9326d32008-04-09 19:38:13 -0500194#define PHY_ID_FMT "%s:%02x"
195
Volodymyr Bendiuga4567d682017-01-19 17:05:04 +0100196#define MII_BUS_ID_SIZE 61
Kumar Galaa4d00f12006-01-11 11:27:33 -0800197
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000198/* Or MII_ADDR_C45 into regnum for read/write on mii_bus to enable the 21 bit
199 IEEE 802.3ae clause 45 addressing mode used by 10GIGE phy chips. */
200#define MII_ADDR_C45 (1<<30)
Kweh Hock Leongd4117d62019-07-06 01:33:27 +0800201#define MII_DEVADDR_C45_SHIFT 16
202#define MII_REGADDR_C45_MASK GENMASK(15, 0)
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000203
Paul Gortmaker313162d2012-01-30 11:46:54 -0500204struct device;
Russell King9525ae82017-07-25 15:03:13 +0100205struct phylink;
Paul Gortmaker313162d2012-01-30 11:46:54 -0500206struct sk_buff;
207
Andy Flemingc5e38a92008-04-09 19:38:27 -0500208/*
209 * The Bus class for PHYs. Devices which provide access to
210 * PHYs should register using this structure
211 */
Andy Fleming00db8182005-07-30 19:31:23 -0400212struct mii_bus {
Russell King3e3aaf62015-09-24 20:36:02 +0100213 struct module *owner;
Andy Fleming00db8182005-07-30 19:31:23 -0400214 const char *name;
Andy Fleming9d9326d32008-04-09 19:38:13 -0500215 char id[MII_BUS_ID_SIZE];
Andy Fleming00db8182005-07-30 19:31:23 -0400216 void *priv;
Andrew Lunnccaa9532016-01-06 20:11:06 +0100217 int (*read)(struct mii_bus *bus, int addr, int regnum);
218 int (*write)(struct mii_bus *bus, int addr, int regnum, u16 val);
Andy Fleming00db8182005-07-30 19:31:23 -0400219 int (*reset)(struct mii_bus *bus);
220
Andy Flemingc5e38a92008-04-09 19:38:27 -0500221 /*
222 * A lock to ensure that only one thing can read/write
223 * the MDIO bus at a time
224 */
Nate Case35b5f6b2008-01-29 10:05:09 -0600225 struct mutex mdio_lock;
Andy Fleming00db8182005-07-30 19:31:23 -0400226
Lennert Buytenhek18ee49d2008-10-01 15:41:33 +0000227 struct device *parent;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700228 enum {
229 MDIOBUS_ALLOCATED = 1,
230 MDIOBUS_REGISTERED,
231 MDIOBUS_UNREGISTERED,
232 MDIOBUS_RELEASED,
233 } state;
234 struct device dev;
Andy Fleming00db8182005-07-30 19:31:23 -0400235
236 /* list of all PHYs on bus */
Andrew Lunn7f854422016-01-06 20:11:18 +0100237 struct mdio_device *mdio_map[PHY_MAX_ADDR];
Andy Fleming00db8182005-07-30 19:31:23 -0400238
Peter Meerwaldc6883992010-09-02 04:06:24 +0000239 /* PHY addresses to be ignored when probing */
Matt Porterf8964242005-11-02 16:13:06 -0700240 u32 phy_mask;
241
Florian Fainelli922f2dd2015-05-12 10:33:24 -0700242 /* PHY addresses to ignore the TA/read failure */
243 u32 phy_ignore_ta_mask;
244
Andy Flemingc5e38a92008-04-09 19:38:27 -0500245 /*
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100246 * An array of interrupts, each PHY's interrupt at the index
247 * matching its address
Andy Flemingc5e38a92008-04-09 19:38:27 -0500248 */
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100249 int irq[PHY_MAX_ADDR];
Roger Quadros69226892017-04-21 16:15:38 +0300250
251 /* GPIO reset pulse width in microseconds */
252 int reset_delay_us;
Sergei Shtylyovd396e842017-06-12 23:55:38 +0300253 /* RESET GPIO descriptor pointer */
254 struct gpio_desc *reset_gpiod;
Andy Fleming00db8182005-07-30 19:31:23 -0400255};
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700256#define to_mii_bus(d) container_of(d, struct mii_bus, dev)
Andy Fleming00db8182005-07-30 19:31:23 -0400257
Timur Tabieb8a54a72012-01-12 15:23:04 -0800258struct mii_bus *mdiobus_alloc_size(size_t);
259static inline struct mii_bus *mdiobus_alloc(void)
260{
261 return mdiobus_alloc_size(0);
262}
263
Russell King3e3aaf62015-09-24 20:36:02 +0100264int __mdiobus_register(struct mii_bus *bus, struct module *owner);
265#define mdiobus_register(bus) __mdiobus_register(bus, THIS_MODULE)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000266void mdiobus_unregister(struct mii_bus *bus);
267void mdiobus_free(struct mii_bus *bus);
Grygorii Strashko6d48f442014-04-30 15:23:33 +0300268struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv);
269static inline struct mii_bus *devm_mdiobus_alloc(struct device *dev)
270{
271 return devm_mdiobus_alloc_size(dev, 0);
272}
273
274void devm_mdiobus_free(struct device *dev, struct mii_bus *bus);
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000275struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr);
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000276
Heiner Kallweit695bce82018-11-09 18:35:52 +0100277#define PHY_INTERRUPT_DISABLED false
278#define PHY_INTERRUPT_ENABLED true
Andy Fleming00db8182005-07-30 19:31:23 -0400279
280/* PHY state machine states:
281 *
282 * DOWN: PHY device and driver are not ready for anything. probe
283 * should be called if and only if the PHY is in this state,
284 * given that the PHY device exists.
Heiner Kallweit899a3cb2018-11-10 23:40:50 +0100285 * - PHY driver probe function will set the state to READY
Andy Fleming00db8182005-07-30 19:31:23 -0400286 *
287 * READY: PHY is ready to send and receive packets, but the
288 * controller is not. By default, PHYs which do not implement
Heiner Kallweit899a3cb2018-11-10 23:40:50 +0100289 * probe will be set to this state by phy_probe().
Andy Fleming00db8182005-07-30 19:31:23 -0400290 * - start will set the state to UP
291 *
Andy Fleming00db8182005-07-30 19:31:23 -0400292 * UP: The PHY and attached device are ready to do work.
293 * Interrupts should be started here.
Heiner Kallweit85a1f312018-11-07 20:46:51 +0100294 * - timer moves to NOLINK or RUNNING
Andy Fleming00db8182005-07-30 19:31:23 -0400295 *
296 * NOLINK: PHY is up, but not currently plugged in.
Heiner Kallweit8deeb632018-11-09 18:55:50 +0100297 * - irq or timer will set RUNNING if link comes back
Andy Fleming00db8182005-07-30 19:31:23 -0400298 * - phy_stop moves to HALTED
299 *
Andy Fleming00db8182005-07-30 19:31:23 -0400300 * RUNNING: PHY is currently up, running, and possibly sending
301 * and/or receiving packets
Heiner Kallweit8deeb632018-11-09 18:55:50 +0100302 * - irq or timer will set NOLINK if link goes down
Andy Fleming00db8182005-07-30 19:31:23 -0400303 * - phy_stop moves to HALTED
304 *
Andy Fleming00db8182005-07-30 19:31:23 -0400305 * HALTED: PHY is up, but no polling or interrupts are done. Or
306 * PHY is in an error state.
Heiner Kallweitf24098f2019-05-01 22:14:21 +0200307 * - phy_start moves to UP
Andy Fleming00db8182005-07-30 19:31:23 -0400308 */
309enum phy_state {
Sergei Shtylyov4017b4d2014-01-05 03:20:17 +0300310 PHY_DOWN = 0,
Andy Fleming00db8182005-07-30 19:31:23 -0400311 PHY_READY,
Heiner Kallweit2b3e88e2018-12-16 18:30:14 +0100312 PHY_HALTED,
Andy Fleming00db8182005-07-30 19:31:23 -0400313 PHY_UP,
Andy Fleming00db8182005-07-30 19:31:23 -0400314 PHY_RUNNING,
315 PHY_NOLINK,
Andy Fleming00db8182005-07-30 19:31:23 -0400316};
317
David Daneyac28b9f2012-06-27 07:33:35 +0000318/**
319 * struct phy_c45_device_ids - 802.3-c45 Device Identifiers
320 * @devices_in_package: Bit vector of devices present.
321 * @device_ids: The device identifer for each present device.
322 */
323struct phy_c45_device_ids {
324 u32 devices_in_package;
325 u32 device_ids[8];
326};
Richard Cochranc1f19b52010-07-17 08:49:36 +0000327
Andy Fleming00db8182005-07-30 19:31:23 -0400328/* phy_device: An instance of a PHY
329 *
330 * drv: Pointer to the driver for this PHY instance
Andy Fleming00db8182005-07-30 19:31:23 -0400331 * phy_id: UID for this device found during discovery
David Daneyac28b9f2012-06-27 07:33:35 +0000332 * c45_ids: 802.3-c45 Device Identifers if is_c45.
333 * is_c45: Set to true if this phy uses clause 45 addressing.
Florian Fainelli4284b6a2013-05-23 01:11:12 +0000334 * is_internal: Set to true if this phy is internal to a MAC.
Florian Fainelli5a11dd72015-08-31 15:56:46 +0200335 * is_pseudo_fixed_link: Set to true if this phy is an Ethernet switch, etc.
Heiner Kallweit3b8b11f2019-04-05 21:23:13 +0200336 * is_gigabit_capable: Set to true if PHY supports 1000Mbps
Florian Fainelliaae88262015-01-26 22:05:38 -0800337 * has_fixups: Set to true if this phy has fixups/quirks.
Florian Fainelli8a477a62015-01-26 22:05:39 -0800338 * suspended: Set to true if this phy has been suspended successfully.
Florian Fainellia3995462017-05-27 10:42:25 -0700339 * sysfs_links: Internal boolean tracking sysfs symbolic links setup/removal.
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +0800340 * loopback_enabled: Set true if this phy has been loopbacked successfully.
Andy Fleming00db8182005-07-30 19:31:23 -0400341 * state: state of the PHY for management purposes
342 * dev_flags: Device-specific flags used by the PHY driver.
Andy Fleming00db8182005-07-30 19:31:23 -0400343 * irq: IRQ number of the PHY's interrupt (-1 if none)
344 * phy_timer: The timer for handling the state machine
Andy Fleming00db8182005-07-30 19:31:23 -0400345 * attached_dev: The attached enet driver's device instance ptr
346 * adjust_link: Callback for the enet controller to respond to
347 * changes in the link state.
Andy Fleming00db8182005-07-30 19:31:23 -0400348 *
Florian Fainelli114002b2013-12-06 13:01:30 -0800349 * speed, duplex, pause, supported, advertising, lp_advertising,
350 * and autoneg are used like in mii_if_info
Andy Fleming00db8182005-07-30 19:31:23 -0400351 *
352 * interrupts currently only supports enabled or disabled,
353 * but could be changed in the future to support enabling
354 * and disabling specific interrupts
355 *
356 * Contains some infrastructure for polling and interrupt
357 * handling, as well as handling shifts in PHY hardware state
358 */
359struct phy_device {
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100360 struct mdio_device mdio;
361
Andy Fleming00db8182005-07-30 19:31:23 -0400362 /* Information about the PHY type */
363 /* And management functions */
364 struct phy_driver *drv;
365
Andy Fleming00db8182005-07-30 19:31:23 -0400366 u32 phy_id;
367
David Daneyac28b9f2012-06-27 07:33:35 +0000368 struct phy_c45_device_ids c45_ids;
Heiner Kallweit87e58082018-05-23 08:05:20 +0200369 unsigned is_c45:1;
370 unsigned is_internal:1;
371 unsigned is_pseudo_fixed_link:1;
Heiner Kallweit3b8b11f2019-04-05 21:23:13 +0200372 unsigned is_gigabit_capable:1;
Heiner Kallweit87e58082018-05-23 08:05:20 +0200373 unsigned has_fixups:1;
374 unsigned suspended:1;
375 unsigned sysfs_links:1;
376 unsigned loopback_enabled:1;
377
378 unsigned autoneg:1;
379 /* The most recently read link state */
380 unsigned link:1;
Heiner Kallweit4950c2b2019-04-02 20:43:30 +0200381 unsigned autoneg_complete:1;
David Daneyac28b9f2012-06-27 07:33:35 +0000382
Heiner Kallweit695bce82018-11-09 18:35:52 +0100383 /* Interrupts are enabled */
384 unsigned interrupts:1;
385
Andy Fleming00db8182005-07-30 19:31:23 -0400386 enum phy_state state;
387
388 u32 dev_flags;
389
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600390 phy_interface_t interface;
391
Andy Flemingc5e38a92008-04-09 19:38:27 -0500392 /*
393 * forced speed & duplex (no autoneg)
Andy Fleming00db8182005-07-30 19:31:23 -0400394 * partner speed & duplex & pause (autoneg)
395 */
396 int speed;
397 int duplex;
398 int pause;
399 int asym_pause;
400
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100401 /* Union of PHY and Attached devices' supported link modes */
402 /* See ethtool.h for more info */
403 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported);
404 __ETHTOOL_DECLARE_LINK_MODE_MASK(advertising);
Andrew Lunnc0ec3c22018-11-10 23:43:34 +0100405 __ETHTOOL_DECLARE_LINK_MODE_MASK(lp_advertising);
Andy Fleming00db8182005-07-30 19:31:23 -0400406
jbrunetd853d142016-11-28 10:46:46 +0100407 /* Energy efficient ethernet modes which should be prohibited */
408 u32 eee_broken_modes;
409
Zach Brown2e0bc452016-10-17 10:49:55 -0500410#ifdef CONFIG_LED_TRIGGER_PHY
411 struct phy_led_trigger *phy_led_triggers;
412 unsigned int phy_num_led_triggers;
413 struct phy_led_trigger *last_triggered;
Maciej S. Szmigiero3928ee62017-11-02 00:49:18 +0100414
415 struct phy_led_trigger *led_link_trigger;
Zach Brown2e0bc452016-10-17 10:49:55 -0500416#endif
417
Andy Flemingc5e38a92008-04-09 19:38:27 -0500418 /*
419 * Interrupt number for this PHY
420 * -1 means no interrupt
421 */
Andy Fleming00db8182005-07-30 19:31:23 -0400422 int irq;
423
424 /* private data pointer */
425 /* For use by PHYs to maintain extra state */
426 void *priv;
427
428 /* Interrupt and Polling infrastructure */
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700429 struct delayed_work state_queue;
Andy Fleming00db8182005-07-30 19:31:23 -0400430
Nate Case35b5f6b2008-01-29 10:05:09 -0600431 struct mutex lock;
Andy Fleming00db8182005-07-30 19:31:23 -0400432
Russell King9525ae82017-07-25 15:03:13 +0100433 struct phylink *phylink;
Andy Fleming00db8182005-07-30 19:31:23 -0400434 struct net_device *attached_dev;
435
David Thomson634ec362015-07-10 13:56:54 +1200436 u8 mdix;
Raju Lakkarajuf4ed2fe2016-11-29 15:16:46 +0530437 u8 mdix_ctrl;
David Thomson634ec362015-07-10 13:56:54 +1200438
Russell Kinga81497b2017-07-25 15:02:58 +0100439 void (*phy_link_change)(struct phy_device *, bool up, bool do_carrier);
Andy Fleming00db8182005-07-30 19:31:23 -0400440 void (*adjust_link)(struct net_device *dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400441};
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100442#define to_phy_device(d) container_of(to_mdio_device(d), \
443 struct phy_device, mdio)
Andy Fleming00db8182005-07-30 19:31:23 -0400444
445/* struct phy_driver: Driver structure for a particular PHY type
446 *
Andrew Lunna9049e02016-01-06 20:11:26 +0100447 * driver_data: static driver data
Andy Fleming00db8182005-07-30 19:31:23 -0400448 * phy_id: The result of reading the UID registers of this PHY
449 * type, and ANDing them with the phy_id_mask. This driver
450 * only works for PHYs with IDs which match this field
451 * name: The friendly name of this PHY type
452 * phy_id_mask: Defines the important bits of the phy_id
Camelia Groza3e64cf72019-01-17 14:22:36 +0200453 * features: A mandatory list of features (speed, duplex, etc)
454 * supported by this PHY
Andy Fleming00db8182005-07-30 19:31:23 -0400455 * flags: A bitfield defining certain other features this PHY
456 * supports (like interrupts)
457 *
Heiner Kallweit00fde792017-11-30 23:46:19 +0100458 * All functions are optional. If config_aneg or read_status
459 * are not implemented, the phy core uses the genphy versions.
460 * Note that none of these functions should be called from
461 * interrupt time. The goal is for the bus read/write functions
462 * to be able to block when the bus transaction is happening,
463 * and be freed up by an interrupt (The MPC85xx has this ability,
464 * though it is not currently supported in the driver).
Andy Fleming00db8182005-07-30 19:31:23 -0400465 */
466struct phy_driver {
Andrew Lunna9049e02016-01-06 20:11:26 +0100467 struct mdio_driver_common mdiodrv;
Andy Fleming00db8182005-07-30 19:31:23 -0400468 u32 phy_id;
469 char *name;
Richard Leitner511e30362017-11-27 08:16:45 +0100470 u32 phy_id_mask;
Andrew Lunn719655a2018-09-29 23:04:16 +0200471 const unsigned long * const features;
Andy Fleming00db8182005-07-30 19:31:23 -0400472 u32 flags;
Johan Hovold860f6e92014-11-19 12:59:14 +0100473 const void *driver_data;
Andy Fleming00db8182005-07-30 19:31:23 -0400474
Andy Flemingc5e38a92008-04-09 19:38:27 -0500475 /*
Florian Fainelli9df81dd2014-02-17 13:34:03 -0800476 * Called to issue a PHY software reset
477 */
478 int (*soft_reset)(struct phy_device *phydev);
479
480 /*
Andy Flemingc5e38a92008-04-09 19:38:27 -0500481 * Called to initialize the PHY,
482 * including after a reset
483 */
Andy Fleming00db8182005-07-30 19:31:23 -0400484 int (*config_init)(struct phy_device *phydev);
485
Andy Flemingc5e38a92008-04-09 19:38:27 -0500486 /*
487 * Called during discovery. Used to set
488 * up device-specific structures, if any
489 */
Andy Fleming00db8182005-07-30 19:31:23 -0400490 int (*probe)(struct phy_device *phydev);
491
Andrew Lunnefbdfdc2019-02-09 15:24:47 +0100492 /*
493 * Probe the hardware to determine what abilities it has.
494 * Should only set phydev->supported.
495 */
496 int (*get_features)(struct phy_device *phydev);
497
Andy Fleming00db8182005-07-30 19:31:23 -0400498 /* PHY Power Management */
499 int (*suspend)(struct phy_device *phydev);
500 int (*resume)(struct phy_device *phydev);
501
Andy Flemingc5e38a92008-04-09 19:38:27 -0500502 /*
503 * Configures the advertisement and resets
Andy Fleming00db8182005-07-30 19:31:23 -0400504 * autonegotiation if phydev->autoneg is on,
505 * forces the speed to the current settings in phydev
Andy Flemingc5e38a92008-04-09 19:38:27 -0500506 * if phydev->autoneg is off
507 */
Andy Fleming00db8182005-07-30 19:31:23 -0400508 int (*config_aneg)(struct phy_device *phydev);
509
Florian Fainelli76a423a2014-02-11 17:27:37 -0800510 /* Determines the auto negotiation result */
511 int (*aneg_done)(struct phy_device *phydev);
512
Andy Fleming00db8182005-07-30 19:31:23 -0400513 /* Determines the negotiated speed and duplex */
514 int (*read_status)(struct phy_device *phydev);
515
516 /* Clears any pending interrupts */
517 int (*ack_interrupt)(struct phy_device *phydev);
518
519 /* Enables or disables interrupts */
520 int (*config_intr)(struct phy_device *phydev);
521
Anatolij Gustschina8729eb32009-04-07 02:01:42 +0000522 /*
523 * Checks if the PHY generated an interrupt.
524 * For multi-PHY devices with shared PHY interrupt pin
525 */
526 int (*did_interrupt)(struct phy_device *phydev);
527
Heiner Kallweit49644e62019-05-30 15:10:06 +0200528 /* Override default interrupt handling */
529 int (*handle_interrupt)(struct phy_device *phydev);
530
Andy Fleming00db8182005-07-30 19:31:23 -0400531 /* Clears up any memory if needed */
532 void (*remove)(struct phy_device *phydev);
533
David Daneya30e2c12012-06-27 07:33:37 +0000534 /* Returns true if this is a suitable driver for the given
535 * phydev. If NULL, matching is based on phy_id and
536 * phy_id_mask.
537 */
538 int (*match_phy_device)(struct phy_device *phydev);
539
Richard Cochranc8f3a8c2012-04-03 22:59:17 +0000540 /* Handles ethtool queries for hardware time stamping. */
541 int (*ts_info)(struct phy_device *phydev, struct ethtool_ts_info *ti);
542
Richard Cochranc1f19b52010-07-17 08:49:36 +0000543 /* Handles SIOCSHWTSTAMP ioctl for hardware time stamping. */
544 int (*hwtstamp)(struct phy_device *phydev, struct ifreq *ifr);
545
546 /*
547 * Requests a Rx timestamp for 'skb'. If the skb is accepted,
548 * the phy driver promises to deliver it using netif_rx() as
549 * soon as a timestamp becomes available. One of the
550 * PTP_CLASS_ values is passed in 'type'. The function must
551 * return true if the skb is accepted for delivery.
552 */
553 bool (*rxtstamp)(struct phy_device *dev, struct sk_buff *skb, int type);
554
555 /*
556 * Requests a Tx timestamp for 'skb'. The phy driver promises
Richard Cochranda92b192011-10-21 00:49:15 +0000557 * to deliver it using skb_complete_tx_timestamp() as soon as a
Richard Cochranc1f19b52010-07-17 08:49:36 +0000558 * timestamp becomes available. One of the PTP_CLASS_ values
559 * is passed in 'type'.
560 */
561 void (*txtstamp)(struct phy_device *dev, struct sk_buff *skb, int type);
562
Michael Stapelberg42e836e2013-03-11 13:56:44 +0000563 /* Some devices (e.g. qnap TS-119P II) require PHY register changes to
564 * enable Wake on LAN, so set_wol is provided to be called in the
565 * ethernet driver's set_wol function. */
566 int (*set_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol);
567
568 /* See set_wol, but for checking whether Wake on LAN is enabled. */
569 void (*get_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol);
570
Daniel Mack2b8f2a22014-06-18 11:01:41 +0200571 /*
572 * Called to inform a PHY device driver when the core is about to
573 * change the link state. This callback is supposed to be used as
574 * fixup hook for drivers that need to take action when the link
575 * state changes. Drivers are by no means allowed to mess with the
576 * PHY device structure in their implementations.
577 */
578 void (*link_change_notify)(struct phy_device *dev);
579
Russell King1ee6b9b2017-03-21 16:36:43 +0000580 /*
581 * Phy specific driver override for reading a MMD register.
582 * This function is optional for PHY specific drivers. When
583 * not provided, the default MMD read function will be used
584 * by phy_read_mmd(), which will use either a direct read for
585 * Clause 45 PHYs or an indirect read for Clause 22 PHYs.
586 * devnum is the MMD device number within the PHY device,
587 * regnum is the register within the selected MMD device.
588 */
589 int (*read_mmd)(struct phy_device *dev, int devnum, u16 regnum);
590
591 /*
592 * Phy specific driver override for writing a MMD register.
593 * This function is optional for PHY specific drivers. When
594 * not provided, the default MMD write function will be used
595 * by phy_write_mmd(), which will use either a direct write for
596 * Clause 45 PHYs, or an indirect write for Clause 22 PHYs.
597 * devnum is the MMD device number within the PHY device,
598 * regnum is the register within the selected MMD device.
599 * val is the value to be written.
600 */
601 int (*write_mmd)(struct phy_device *dev, int devnum, u16 regnum,
602 u16 val);
603
Russell King78ffc4a2018-01-02 10:58:43 +0000604 int (*read_page)(struct phy_device *dev);
605 int (*write_page)(struct phy_device *dev, int page);
606
Ed Swierk2f438362015-01-02 17:27:56 -0800607 /* Get the size and type of the eeprom contained within a plug-in
608 * module */
609 int (*module_info)(struct phy_device *dev,
610 struct ethtool_modinfo *modinfo);
611
612 /* Get the eeprom information from the plug-in module */
613 int (*module_eeprom)(struct phy_device *dev,
614 struct ethtool_eeprom *ee, u8 *data);
615
Andrew Lunnf3a40942015-12-30 16:28:25 +0100616 /* Get statistics from the phy using ethtool */
617 int (*get_sset_count)(struct phy_device *dev);
618 void (*get_strings)(struct phy_device *dev, u8 *data);
619 void (*get_stats)(struct phy_device *dev,
620 struct ethtool_stats *stats, u64 *data);
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +0100621
622 /* Get and Set PHY tunables */
623 int (*get_tunable)(struct phy_device *dev,
624 struct ethtool_tunable *tuna, void *data);
625 int (*set_tunable)(struct phy_device *dev,
626 struct ethtool_tunable *tuna,
627 const void *data);
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +0800628 int (*set_loopback)(struct phy_device *dev, bool enable);
Andy Fleming00db8182005-07-30 19:31:23 -0400629};
Andrew Lunna9049e02016-01-06 20:11:26 +0100630#define to_phy_driver(d) container_of(to_mdio_common_driver(d), \
631 struct phy_driver, mdiodrv)
Andy Fleming00db8182005-07-30 19:31:23 -0400632
Andy Flemingf62220d2008-04-18 17:29:54 -0500633#define PHY_ANY_ID "MATCH ANY PHY"
634#define PHY_ANY_UID 0xffffffff
635
Heiner Kallweitaa2af2e2018-11-10 00:39:14 +0100636#define PHY_ID_MATCH_EXACT(id) .phy_id = (id), .phy_id_mask = GENMASK(31, 0)
637#define PHY_ID_MATCH_MODEL(id) .phy_id = (id), .phy_id_mask = GENMASK(31, 4)
638#define PHY_ID_MATCH_VENDOR(id) .phy_id = (id), .phy_id_mask = GENMASK(31, 10)
639
Andy Flemingf62220d2008-04-18 17:29:54 -0500640/* A Structure for boards to register fixups with the PHY Lib */
641struct phy_fixup {
642 struct list_head list;
Volodymyr Bendiuga4567d682017-01-19 17:05:04 +0100643 char bus_id[MII_BUS_ID_SIZE + 3];
Andy Flemingf62220d2008-04-18 17:29:54 -0500644 u32 phy_uid;
645 u32 phy_uid_mask;
646 int (*run)(struct phy_device *phydev);
647};
648
Russell Kingda4625a2017-07-25 15:02:42 +0100649const char *phy_speed_to_str(int speed);
650const char *phy_duplex_to_str(unsigned int duplex);
651
Russell King0ccb4fc2017-07-25 15:02:47 +0100652/* A structure for mapping a particular speed and duplex
653 * combination to a particular SUPPORTED and ADVERTISED value
654 */
655struct phy_setting {
656 u32 speed;
657 u8 duplex;
658 u8 bit;
659};
660
661const struct phy_setting *
662phy_lookup_setting(int speed, int duplex, const unsigned long *mask,
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100663 bool exact);
Russell King0ccb4fc2017-07-25 15:02:47 +0100664size_t phy_speeds(unsigned int *speeds, size_t size,
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100665 unsigned long *mask);
Maxime Chevalliera4eaed92019-02-11 15:25:26 +0100666void of_set_phy_supported(struct phy_device *phydev);
Maxime Chevallier3feb9b22019-02-11 15:25:27 +0100667void of_set_phy_eee_broken(struct phy_device *phydev);
Russell King0ccb4fc2017-07-25 15:02:47 +0100668
Heiner Kallweit2b3e88e2018-12-16 18:30:14 +0100669/**
670 * phy_is_started - Convenience function to check whether PHY is started
671 * @phydev: The phy_device struct
672 */
673static inline bool phy_is_started(struct phy_device *phydev)
674{
Heiner Kallweita2fc9d72019-02-13 20:11:40 +0100675 return phydev->state >= PHY_UP;
Heiner Kallweit2b3e88e2018-12-16 18:30:14 +0100676}
677
Russell King8c5e8502017-12-29 12:46:38 +0000678void phy_resolve_aneg_linkmode(struct phy_device *phydev);
679
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000680/**
681 * phy_read - Convenience function for reading a given PHY register
682 * @phydev: the phy_device struct
683 * @regnum: register number to read
684 *
685 * NOTE: MUST NOT be called from interrupt context,
686 * because the bus read/write functions may wait for an interrupt
687 * to conclude the operation.
688 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000689static inline int phy_read(struct phy_device *phydev, u32 regnum)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000690{
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100691 return mdiobus_read(phydev->mdio.bus, phydev->mdio.addr, regnum);
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000692}
693
694/**
Russell King788f9932018-01-02 10:58:37 +0000695 * __phy_read - convenience function for reading a given PHY register
696 * @phydev: the phy_device struct
697 * @regnum: register number to read
698 *
699 * The caller must have taken the MDIO bus lock.
700 */
701static inline int __phy_read(struct phy_device *phydev, u32 regnum)
702{
703 return __mdiobus_read(phydev->mdio.bus, phydev->mdio.addr, regnum);
704}
705
706/**
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000707 * phy_write - Convenience function for writing a given PHY register
708 * @phydev: the phy_device struct
709 * @regnum: register number to write
710 * @val: value to write to @regnum
711 *
712 * NOTE: MUST NOT be called from interrupt context,
713 * because the bus read/write functions may wait for an interrupt
714 * to conclude the operation.
715 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000716static inline int phy_write(struct phy_device *phydev, u32 regnum, u16 val)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000717{
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100718 return mdiobus_write(phydev->mdio.bus, phydev->mdio.addr, regnum, val);
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000719}
720
Florian Fainelli2c7b4922013-05-19 22:53:42 +0000721/**
Russell King788f9932018-01-02 10:58:37 +0000722 * __phy_write - Convenience function for writing a given PHY register
723 * @phydev: the phy_device struct
724 * @regnum: register number to write
725 * @val: value to write to @regnum
726 *
727 * The caller must have taken the MDIO bus lock.
728 */
729static inline int __phy_write(struct phy_device *phydev, u32 regnum, u16 val)
730{
731 return __mdiobus_write(phydev->mdio.bus, phydev->mdio.addr, regnum,
732 val);
733}
734
Nikita Yushchenko1878f0d2019-02-06 07:36:40 +0100735/**
736 * phy_read_mmd - Convenience function for reading a register
737 * from an MMD on a given PHY.
738 * @phydev: The phy_device struct
739 * @devad: The MMD to read from
740 * @regnum: The register on the MMD to read
741 *
742 * Same rules as for phy_read();
743 */
744int phy_read_mmd(struct phy_device *phydev, int devad, u32 regnum);
745
746/**
747 * __phy_read_mmd - Convenience function for reading a register
748 * from an MMD on a given PHY.
749 * @phydev: The phy_device struct
750 * @devad: The MMD to read from
751 * @regnum: The register on the MMD to read
752 *
753 * Same rules as for __phy_read();
754 */
755int __phy_read_mmd(struct phy_device *phydev, int devad, u32 regnum);
756
757/**
758 * phy_write_mmd - Convenience function for writing a register
759 * on an MMD on a given PHY.
760 * @phydev: The phy_device struct
761 * @devad: The MMD to write to
762 * @regnum: The register on the MMD to read
763 * @val: value to write to @regnum
764 *
765 * Same rules as for phy_write();
766 */
767int phy_write_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val);
768
769/**
770 * __phy_write_mmd - Convenience function for writing a register
771 * on an MMD on a given PHY.
772 * @phydev: The phy_device struct
773 * @devad: The MMD to write to
774 * @regnum: The register on the MMD to read
775 * @val: value to write to @regnum
776 *
777 * Same rules as for __phy_write();
778 */
779int __phy_write_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val);
780
Heiner Kallweitb8554d4f2019-02-10 19:57:56 +0100781int __phy_modify_changed(struct phy_device *phydev, u32 regnum, u16 mask,
782 u16 set);
783int phy_modify_changed(struct phy_device *phydev, u32 regnum, u16 mask,
784 u16 set);
Russell King788f9932018-01-02 10:58:37 +0000785int __phy_modify(struct phy_device *phydev, u32 regnum, u16 mask, u16 set);
Russell King2b74e5b2018-01-02 10:58:53 +0000786int phy_modify(struct phy_device *phydev, u32 regnum, u16 mask, u16 set);
Russell King788f9932018-01-02 10:58:37 +0000787
Heiner Kallweitb8554d4f2019-02-10 19:57:56 +0100788int __phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum,
789 u16 mask, u16 set);
790int phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum,
791 u16 mask, u16 set);
Nikita Yushchenko1878f0d2019-02-06 07:36:40 +0100792int __phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum,
Heiner Kallweitb8554d4f2019-02-10 19:57:56 +0100793 u16 mask, u16 set);
Nikita Yushchenko1878f0d2019-02-06 07:36:40 +0100794int phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum,
Heiner Kallweitb8554d4f2019-02-10 19:57:56 +0100795 u16 mask, u16 set);
Nikita Yushchenko1878f0d2019-02-06 07:36:40 +0100796
Russell King788f9932018-01-02 10:58:37 +0000797/**
Heiner Kallweitac8322d2018-01-12 21:20:33 +0100798 * __phy_set_bits - Convenience function for setting bits in a PHY register
799 * @phydev: the phy_device struct
800 * @regnum: register number to write
801 * @val: bits to set
802 *
803 * The caller must have taken the MDIO bus lock.
804 */
805static inline int __phy_set_bits(struct phy_device *phydev, u32 regnum, u16 val)
806{
807 return __phy_modify(phydev, regnum, 0, val);
808}
809
810/**
811 * __phy_clear_bits - Convenience function for clearing bits in a PHY register
812 * @phydev: the phy_device struct
813 * @regnum: register number to write
814 * @val: bits to clear
815 *
816 * The caller must have taken the MDIO bus lock.
817 */
818static inline int __phy_clear_bits(struct phy_device *phydev, u32 regnum,
819 u16 val)
820{
821 return __phy_modify(phydev, regnum, val, 0);
822}
823
824/**
825 * phy_set_bits - Convenience function for setting bits in a PHY register
826 * @phydev: the phy_device struct
827 * @regnum: register number to write
828 * @val: bits to set
829 */
830static inline int phy_set_bits(struct phy_device *phydev, u32 regnum, u16 val)
831{
832 return phy_modify(phydev, regnum, 0, val);
833}
834
835/**
836 * phy_clear_bits - Convenience function for clearing bits in a PHY register
837 * @phydev: the phy_device struct
838 * @regnum: register number to write
839 * @val: bits to clear
840 */
841static inline int phy_clear_bits(struct phy_device *phydev, u32 regnum, u16 val)
842{
843 return phy_modify(phydev, regnum, val, 0);
844}
845
846/**
Nikita Yushchenko1878f0d2019-02-06 07:36:40 +0100847 * __phy_set_bits_mmd - Convenience function for setting bits in a register
848 * on MMD
849 * @phydev: the phy_device struct
850 * @devad: the MMD containing register to modify
851 * @regnum: register number to modify
852 * @val: bits to set
853 *
854 * The caller must have taken the MDIO bus lock.
855 */
856static inline int __phy_set_bits_mmd(struct phy_device *phydev, int devad,
857 u32 regnum, u16 val)
858{
859 return __phy_modify_mmd(phydev, devad, regnum, 0, val);
860}
861
862/**
863 * __phy_clear_bits_mmd - Convenience function for clearing bits in a register
864 * on MMD
865 * @phydev: the phy_device struct
866 * @devad: the MMD containing register to modify
867 * @regnum: register number to modify
868 * @val: bits to clear
869 *
870 * The caller must have taken the MDIO bus lock.
871 */
872static inline int __phy_clear_bits_mmd(struct phy_device *phydev, int devad,
873 u32 regnum, u16 val)
874{
875 return __phy_modify_mmd(phydev, devad, regnum, val, 0);
876}
877
878/**
879 * phy_set_bits_mmd - Convenience function for setting bits in a register
880 * on MMD
881 * @phydev: the phy_device struct
882 * @devad: the MMD containing register to modify
883 * @regnum: register number to modify
884 * @val: bits to set
885 */
886static inline int phy_set_bits_mmd(struct phy_device *phydev, int devad,
887 u32 regnum, u16 val)
888{
889 return phy_modify_mmd(phydev, devad, regnum, 0, val);
890}
891
892/**
893 * phy_clear_bits_mmd - Convenience function for clearing bits in a register
894 * on MMD
895 * @phydev: the phy_device struct
896 * @devad: the MMD containing register to modify
897 * @regnum: register number to modify
898 * @val: bits to clear
899 */
900static inline int phy_clear_bits_mmd(struct phy_device *phydev, int devad,
901 u32 regnum, u16 val)
902{
903 return phy_modify_mmd(phydev, devad, regnum, val, 0);
904}
905
906/**
Florian Fainelli2c7b4922013-05-19 22:53:42 +0000907 * phy_interrupt_is_valid - Convenience function for testing a given PHY irq
908 * @phydev: the phy_device struct
909 *
910 * NOTE: must be kept in sync with addition/removal of PHY_POLL and
911 * PHY_IGNORE_INTERRUPT
912 */
913static inline bool phy_interrupt_is_valid(struct phy_device *phydev)
914{
915 return phydev->irq != PHY_POLL && phydev->irq != PHY_IGNORE_INTERRUPT;
916}
917
Florian Fainelli4284b6a2013-05-23 01:11:12 +0000918/**
Heiner Kallweit3c507b82018-07-23 21:40:07 +0200919 * phy_polling_mode - Convenience function for testing whether polling is
920 * used to detect PHY status changes
921 * @phydev: the phy_device struct
922 */
923static inline bool phy_polling_mode(struct phy_device *phydev)
924{
925 return phydev->irq == PHY_POLL;
926}
927
928/**
Florian Fainelli4284b6a2013-05-23 01:11:12 +0000929 * phy_is_internal - Convenience function for testing if a PHY is internal
930 * @phydev: the phy_device struct
931 */
932static inline bool phy_is_internal(struct phy_device *phydev)
933{
934 return phydev->is_internal;
935}
936
Andy Flemingefabdfb2014-01-10 14:25:09 +0800937/**
Iyappan Subramanian32d0f782017-05-18 15:13:43 -0700938 * phy_interface_mode_is_rgmii - Convenience function for testing if a
939 * PHY interface mode is RGMII (all variants)
940 * @mode: the phy_interface_t enum
941 */
942static inline bool phy_interface_mode_is_rgmii(phy_interface_t mode)
943{
944 return mode >= PHY_INTERFACE_MODE_RGMII &&
945 mode <= PHY_INTERFACE_MODE_RGMII_TXID;
946};
947
948/**
Russell King365c1e62017-12-01 10:24:16 +0000949 * phy_interface_mode_is_8023z() - does the phy interface mode use 802.3z
950 * negotiation
951 * @mode: one of &enum phy_interface_t
952 *
953 * Returns true if the phy interface mode uses the 16-bit negotiation
954 * word as defined in 802.3z. (See 802.3-2015 37.2.1 Config_Reg encoding)
955 */
956static inline bool phy_interface_mode_is_8023z(phy_interface_t mode)
957{
958 return mode == PHY_INTERFACE_MODE_1000BASEX ||
959 mode == PHY_INTERFACE_MODE_2500BASEX;
960}
961
962/**
Florian Fainellie463d882015-05-26 12:19:58 -0700963 * phy_interface_is_rgmii - Convenience function for testing if a PHY interface
964 * is RGMII (all variants)
965 * @phydev: the phy_device struct
966 */
967static inline bool phy_interface_is_rgmii(struct phy_device *phydev)
968{
Iyappan Subramanian32d0f782017-05-18 15:13:43 -0700969 return phy_interface_mode_is_rgmii(phydev->interface);
Florian Fainelli5a11dd72015-08-31 15:56:46 +0200970};
971
972/*
973 * phy_is_pseudo_fixed_link - Convenience function for testing if this
974 * PHY is the CPU port facing side of an Ethernet switch, or similar.
975 * @phydev: the phy_device struct
976 */
977static inline bool phy_is_pseudo_fixed_link(struct phy_device *phydev)
978{
979 return phydev->is_pseudo_fixed_link;
Florian Fainellie463d882015-05-26 12:19:58 -0700980}
981
Russell King78ffc4a2018-01-02 10:58:43 +0000982int phy_save_page(struct phy_device *phydev);
983int phy_select_page(struct phy_device *phydev, int page);
984int phy_restore_page(struct phy_device *phydev, int oldpage, int ret);
985int phy_read_paged(struct phy_device *phydev, int page, u32 regnum);
986int phy_write_paged(struct phy_device *phydev, int page, u32 regnum, u16 val);
987int phy_modify_paged(struct phy_device *phydev, int page, u32 regnum,
988 u16 mask, u16 set);
989
David Daneyac28b9f2012-06-27 07:33:35 +0000990struct phy_device *phy_device_create(struct mii_bus *bus, int addr, int phy_id,
Sergei Shtylyov4017b4d2014-01-05 03:20:17 +0300991 bool is_c45,
992 struct phy_c45_device_ids *c45_ids);
Florian Fainelli90eff902017-03-23 10:01:19 -0700993#if IS_ENABLED(CONFIG_PHYLIB)
David Daneyac28b9f2012-06-27 07:33:35 +0000994struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45);
Grant Likely4dea5472009-04-25 12:52:46 +0000995int phy_device_register(struct phy_device *phy);
Florian Fainelli90eff902017-03-23 10:01:19 -0700996void phy_device_free(struct phy_device *phydev);
997#else
998static inline
999struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45)
1000{
1001 return NULL;
1002}
1003
1004static inline int phy_device_register(struct phy_device *phy)
1005{
1006 return 0;
1007}
1008
1009static inline void phy_device_free(struct phy_device *phydev) { }
1010#endif /* CONFIG_PHYLIB */
Russell King38737e42015-09-24 20:36:28 +01001011void phy_device_remove(struct phy_device *phydev);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001012int phy_init_hw(struct phy_device *phydev);
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001013int phy_suspend(struct phy_device *phydev);
1014int phy_resume(struct phy_device *phydev);
Andrew Lunn9c2c2e62018-02-27 01:56:06 +01001015int __phy_resume(struct phy_device *phydev);
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08001016int phy_loopback(struct phy_device *phydev, bool enable);
Sergei Shtylyov4017b4d2014-01-05 03:20:17 +03001017struct phy_device *phy_attach(struct net_device *dev, const char *bus_id,
1018 phy_interface_t interface);
Jiri Pirkof8f76db2010-02-04 10:23:02 -08001019struct phy_device *phy_find_first(struct mii_bus *bus);
Andy Fleming257184d2014-01-10 14:27:54 +08001020int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
1021 u32 flags, phy_interface_t interface);
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001022int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
Sergei Shtylyov4017b4d2014-01-05 03:20:17 +03001023 void (*handler)(struct net_device *),
1024 phy_interface_t interface);
1025struct phy_device *phy_connect(struct net_device *dev, const char *bus_id,
1026 void (*handler)(struct net_device *),
1027 phy_interface_t interface);
Andy Fleminge1393452005-08-24 18:46:21 -05001028void phy_disconnect(struct phy_device *phydev);
1029void phy_detach(struct phy_device *phydev);
1030void phy_start(struct phy_device *phydev);
1031void phy_stop(struct phy_device *phydev);
1032int phy_start_aneg(struct phy_device *phydev);
Lendacky, Thomas372788f2016-11-10 17:10:46 -06001033int phy_aneg_done(struct phy_device *phydev);
Heiner Kallweit2b9672d2018-07-12 21:32:53 +02001034int phy_speed_down(struct phy_device *phydev, bool sync);
1035int phy_speed_up(struct phy_device *phydev);
Andy Fleminge1393452005-08-24 18:46:21 -05001036
Russell King002ba702017-06-05 12:23:00 +01001037int phy_restart_aneg(struct phy_device *phydev);
Richard Leitnera9668492017-12-11 13:16:58 +01001038int phy_reset_after_clk_enable(struct phy_device *phydev);
Andy Fleming00db8182005-07-30 19:31:23 -04001039
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01001040static inline void phy_device_reset(struct phy_device *phydev, int value)
1041{
1042 mdio_device_reset(&phydev->mdio, value);
1043}
1044
Andrew Lunn72ba48b2016-01-06 20:11:09 +01001045#define phydev_err(_phydev, format, args...) \
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001046 dev_err(&_phydev->mdio.dev, format, ##args)
Andrew Lunn72ba48b2016-01-06 20:11:09 +01001047
Andrew Lunnc4fabb82018-09-29 23:04:11 +02001048#define phydev_info(_phydev, format, args...) \
1049 dev_info(&_phydev->mdio.dev, format, ##args)
1050
Andrew Lunnab2a6052018-09-29 23:04:10 +02001051#define phydev_warn(_phydev, format, args...) \
1052 dev_warn(&_phydev->mdio.dev, format, ##args)
1053
Andrew Lunn72ba48b2016-01-06 20:11:09 +01001054#define phydev_dbg(_phydev, format, args...) \
Marc Gonzalez2eaa38d2017-07-25 11:08:15 +02001055 dev_dbg(&_phydev->mdio.dev, format, ##args)
Andrew Lunn72ba48b2016-01-06 20:11:09 +01001056
Andrew Lunn84eff6d2016-01-06 20:11:10 +01001057static inline const char *phydev_name(const struct phy_device *phydev)
1058{
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001059 return dev_name(&phydev->mdio.dev);
Andrew Lunn84eff6d2016-01-06 20:11:10 +01001060}
1061
Andrew Lunn22209432016-01-06 20:11:13 +01001062void phy_attached_print(struct phy_device *phydev, const char *fmt, ...)
1063 __printf(2, 3);
1064void phy_attached_info(struct phy_device *phydev);
Russell King5acde342017-06-05 12:22:50 +01001065
1066/* Clause 22 PHY */
Daniel Mackaf6b6962014-04-16 17:19:12 +02001067int genphy_config_init(struct phy_device *phydev);
Heiner Kallweit045925e2019-03-27 21:58:44 +01001068int genphy_read_abilities(struct phy_device *phydev);
Madalin Bucur3fb69bc2013-11-20 16:38:19 -06001069int genphy_setup_forced(struct phy_device *phydev);
Andy Fleming00db8182005-07-30 19:31:23 -04001070int genphy_restart_aneg(struct phy_device *phydev);
Heiner Kallweitcd344992019-02-18 21:26:58 +01001071int genphy_config_eee_advert(struct phy_device *phydev);
Andy Fleming00db8182005-07-30 19:31:23 -04001072int genphy_config_aneg(struct phy_device *phydev);
Florian Fainellia9fa6e62014-02-11 17:27:36 -08001073int genphy_aneg_done(struct phy_device *phydev);
Andy Fleming00db8182005-07-30 19:31:23 -04001074int genphy_update_link(struct phy_device *phydev);
1075int genphy_read_status(struct phy_device *phydev);
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08001076int genphy_suspend(struct phy_device *phydev);
1077int genphy_resume(struct phy_device *phydev);
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08001078int genphy_loopback(struct phy_device *phydev, bool enable);
Florian Fainelli797ac072014-02-17 13:34:02 -08001079int genphy_soft_reset(struct phy_device *phydev);
Florian Fainelli0878fff2017-03-05 12:34:49 -08001080static inline int genphy_no_soft_reset(struct phy_device *phydev)
1081{
1082 return 0;
1083}
Linus Walleij4c8e0452019-02-24 01:11:15 +01001084static inline int genphy_no_ack_interrupt(struct phy_device *phydev)
1085{
1086 return 0;
1087}
1088static inline int genphy_no_config_intr(struct phy_device *phydev)
1089{
1090 return 0;
1091}
Kevin Hao5df7af82018-03-20 09:44:52 +08001092int genphy_read_mmd_unsupported(struct phy_device *phdev, int devad,
1093 u16 regnum);
1094int genphy_write_mmd_unsupported(struct phy_device *phdev, int devnum,
1095 u16 regnum, u16 val);
Russell King5acde342017-06-05 12:22:50 +01001096
1097/* Clause 45 PHY */
1098int genphy_c45_restart_aneg(struct phy_device *phydev);
Heiner Kallweit1af9f162019-02-18 21:27:18 +01001099int genphy_c45_check_and_restart_aneg(struct phy_device *phydev, bool restart);
Russell King5acde342017-06-05 12:22:50 +01001100int genphy_c45_aneg_done(struct phy_device *phydev);
Heiner Kallweit998a8a82019-02-07 21:41:46 +01001101int genphy_c45_read_link(struct phy_device *phydev);
Russell King5acde342017-06-05 12:22:50 +01001102int genphy_c45_read_lpa(struct phy_device *phydev);
1103int genphy_c45_read_pma(struct phy_device *phydev);
1104int genphy_c45_pma_setup_forced(struct phy_device *phydev);
Andrew Lunn9a5dc8a2019-02-17 10:29:19 +01001105int genphy_c45_an_config_aneg(struct phy_device *phydev);
Russell King5acde342017-06-05 12:22:50 +01001106int genphy_c45_an_disable_aneg(struct phy_device *phydev);
Russell Kingea4efe22017-12-29 12:46:27 +00001107int genphy_c45_read_mdix(struct phy_device *phydev);
Maxime Chevallierac3f5532019-02-11 15:25:28 +01001108int genphy_c45_pma_read_abilities(struct phy_device *phydev);
Heiner Kallweit70fa3a92019-02-22 23:51:44 +01001109int genphy_c45_read_status(struct phy_device *phydev);
Russell King5acde342017-06-05 12:22:50 +01001110
Florian Fainellie8a714e2018-03-01 16:08:56 -08001111/* The gen10g_* functions are the old Clause 45 stub */
1112int gen10g_config_aneg(struct phy_device *phydev);
Florian Fainellie8a714e2018-03-01 16:08:56 -08001113
Heiner Kallweit00fde792017-11-30 23:46:19 +01001114static inline int phy_read_status(struct phy_device *phydev)
1115{
1116 if (!phydev->drv)
1117 return -EIO;
1118
1119 if (phydev->drv->read_status)
1120 return phydev->drv->read_status(phydev);
1121 else
1122 return genphy_read_status(phydev);
1123}
1124
Andy Fleming00db8182005-07-30 19:31:23 -04001125void phy_driver_unregister(struct phy_driver *drv);
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00001126void phy_drivers_unregister(struct phy_driver *drv, int n);
Andrew Lunnbe01da72016-01-06 20:11:22 +01001127int phy_driver_register(struct phy_driver *new_driver, struct module *owner);
1128int phy_drivers_register(struct phy_driver *new_driver, int n,
1129 struct module *owner);
Anton Vorontsov4f9c85a2010-01-18 05:37:16 +00001130void phy_state_machine(struct work_struct *work);
Heiner Kallweit97b33bd2019-05-30 15:11:06 +02001131void phy_queue_state_machine(struct phy_device *phydev, unsigned long jiffies);
Heiner Kallweit28b2e0d2018-01-10 21:21:31 +01001132void phy_mac_interrupt(struct phy_device *phydev);
Sergei Shtylyov29935ae2014-01-05 03:27:17 +03001133void phy_start_machine(struct phy_device *phydev);
Andy Fleming00db8182005-07-30 19:31:23 -04001134void phy_stop_machine(struct phy_device *phydev);
1135int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd);
yuval.shaia@oracle.com55141742017-06-13 10:09:46 +03001136void phy_ethtool_ksettings_get(struct phy_device *phydev,
1137 struct ethtool_link_ksettings *cmd);
Philippe Reynes2d551732016-04-15 00:35:00 +02001138int phy_ethtool_ksettings_set(struct phy_device *phydev,
1139 const struct ethtool_link_ksettings *cmd);
Sergei Shtylyov4017b4d2014-01-05 03:20:17 +03001140int phy_mii_ioctl(struct phy_device *phydev, struct ifreq *ifr, int cmd);
Heiner Kallweit434a4312019-01-23 07:31:58 +01001141void phy_request_interrupt(struct phy_device *phydev);
Heiner Kallweit07b09282019-05-30 15:09:15 +02001142void phy_free_interrupt(struct phy_device *phydev);
Andy Fleminge1393452005-08-24 18:46:21 -05001143void phy_print_status(struct phy_device *phydev);
Simon Hormanf3a6bd32015-09-30 15:15:52 +09001144int phy_set_max_speed(struct phy_device *phydev, u32 max_speed);
Andrew Lunn41124fa2018-09-12 01:53:14 +02001145void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode);
Heiner Kallweit22c0ef62019-05-01 21:34:43 +02001146void phy_advertise_supported(struct phy_device *phydev);
Andrew Lunnc306ad32018-09-12 01:53:16 +02001147void phy_support_sym_pause(struct phy_device *phydev);
Andrew Lunnaf8d9bb2018-09-12 01:53:15 +02001148void phy_support_asym_pause(struct phy_device *phydev);
Andrew Lunn0c122402018-09-12 01:53:18 +02001149void phy_set_sym_pause(struct phy_device *phydev, bool rx, bool tx,
1150 bool autoneg);
Andrew Lunn70814e82018-09-12 01:53:17 +02001151void phy_set_asym_pause(struct phy_device *phydev, bool rx, bool tx);
Andrew Lunn22b7d292018-09-12 01:53:19 +02001152bool phy_validate_pause(struct phy_device *phydev,
1153 struct ethtool_pauseparam *pp);
Andy Fleming00db8182005-07-30 19:31:23 -04001154
Andy Flemingf62220d2008-04-18 17:29:54 -05001155int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
Sergei Shtylyov4017b4d2014-01-05 03:20:17 +03001156 int (*run)(struct phy_device *));
Andy Flemingf62220d2008-04-18 17:29:54 -05001157int phy_register_fixup_for_id(const char *bus_id,
Sergei Shtylyov4017b4d2014-01-05 03:20:17 +03001158 int (*run)(struct phy_device *));
Andy Flemingf62220d2008-04-18 17:29:54 -05001159int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
Sergei Shtylyov4017b4d2014-01-05 03:20:17 +03001160 int (*run)(struct phy_device *));
Andy Flemingf62220d2008-04-18 17:29:54 -05001161
Woojung.Huh@microchip.comf38e7a32016-12-07 20:26:07 +00001162int phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask);
1163int phy_unregister_fixup_for_id(const char *bus_id);
1164int phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask);
1165
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001166int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable);
1167int phy_get_eee_err(struct phy_device *phydev);
1168int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data);
1169int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data);
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001170int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol);
Sergei Shtylyov4017b4d2014-01-05 03:20:17 +03001171void phy_ethtool_get_wol(struct phy_device *phydev,
1172 struct ethtool_wolinfo *wol);
Philippe Reynes9d9a77c2016-05-10 00:19:41 +02001173int phy_ethtool_get_link_ksettings(struct net_device *ndev,
1174 struct ethtool_link_ksettings *cmd);
1175int phy_ethtool_set_link_ksettings(struct net_device *ndev,
1176 const struct ethtool_link_ksettings *cmd);
Florian Fainellie86a8982016-11-15 10:06:30 -08001177int phy_ethtool_nway_reset(struct net_device *ndev);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001178
Florian Fainelli90eff902017-03-23 10:01:19 -07001179#if IS_ENABLED(CONFIG_PHYLIB)
Andy Fleming9b9a8bf2008-05-02 13:00:51 -05001180int __init mdio_bus_init(void);
1181void mdio_bus_exit(void);
Florian Fainelli90eff902017-03-23 10:01:19 -07001182#endif
Andy Fleming9b9a8bf2008-05-02 13:00:51 -05001183
Florian Fainelli9e8d4382018-04-27 12:41:49 -07001184/* Inline function for use within net/core/ethtool.c (built-in) */
1185static inline int phy_ethtool_get_strings(struct phy_device *phydev, u8 *data)
1186{
1187 if (!phydev->drv)
1188 return -EIO;
1189
1190 mutex_lock(&phydev->lock);
1191 phydev->drv->get_strings(phydev, data);
1192 mutex_unlock(&phydev->lock);
1193
1194 return 0;
1195}
1196
1197static inline int phy_ethtool_get_sset_count(struct phy_device *phydev)
1198{
1199 int ret;
1200
1201 if (!phydev->drv)
1202 return -EIO;
1203
1204 if (phydev->drv->get_sset_count &&
1205 phydev->drv->get_strings &&
1206 phydev->drv->get_stats) {
1207 mutex_lock(&phydev->lock);
1208 ret = phydev->drv->get_sset_count(phydev);
1209 mutex_unlock(&phydev->lock);
1210
1211 return ret;
1212 }
1213
1214 return -EOPNOTSUPP;
1215}
1216
1217static inline int phy_ethtool_get_stats(struct phy_device *phydev,
1218 struct ethtool_stats *stats, u64 *data)
1219{
1220 if (!phydev->drv)
1221 return -EIO;
1222
1223 mutex_lock(&phydev->lock);
1224 phydev->drv->get_stats(phydev, stats, data);
1225 mutex_unlock(&phydev->lock);
1226
1227 return 0;
1228}
1229
Andy Fleming00db8182005-07-30 19:31:23 -04001230extern struct bus_type mdio_bus_type;
Johan Hovoldc31accd2014-11-11 19:45:57 +01001231
Florian Fainelli648ea012017-02-04 13:02:44 -08001232struct mdio_board_info {
1233 const char *bus_id;
1234 char modalias[MDIO_NAME_SIZE];
1235 int mdio_addr;
1236 const void *platform_data;
1237};
1238
Florian Fainelli90eff902017-03-23 10:01:19 -07001239#if IS_ENABLED(CONFIG_MDIO_DEVICE)
Florian Fainelli648ea012017-02-04 13:02:44 -08001240int mdiobus_register_board_info(const struct mdio_board_info *info,
1241 unsigned int n);
1242#else
1243static inline int mdiobus_register_board_info(const struct mdio_board_info *i,
1244 unsigned int n)
1245{
1246 return 0;
1247}
1248#endif
1249
1250
Johan Hovoldc31accd2014-11-11 19:45:57 +01001251/**
1252 * module_phy_driver() - Helper macro for registering PHY drivers
1253 * @__phy_drivers: array of PHY drivers to register
1254 *
1255 * Helper macro for PHY drivers which do not do anything special in module
1256 * init/exit. Each module may only use this macro once, and calling it
1257 * replaces module_init() and module_exit().
1258 */
1259#define phy_module_driver(__phy_drivers, __count) \
1260static int __init phy_module_init(void) \
1261{ \
Andrew Lunnbe01da72016-01-06 20:11:22 +01001262 return phy_drivers_register(__phy_drivers, __count, THIS_MODULE); \
Johan Hovoldc31accd2014-11-11 19:45:57 +01001263} \
1264module_init(phy_module_init); \
1265static void __exit phy_module_exit(void) \
1266{ \
1267 phy_drivers_unregister(__phy_drivers, __count); \
1268} \
1269module_exit(phy_module_exit)
1270
1271#define module_phy_driver(__phy_drivers) \
1272 phy_module_driver(__phy_drivers, ARRAY_SIZE(__phy_drivers))
1273
Florian Fainelli5db5ea92019-01-15 15:09:35 -08001274bool phy_driver_is_genphy(struct phy_device *phydev);
1275bool phy_driver_is_genphy_10g(struct phy_device *phydev);
1276
Andy Fleming00db8182005-07-30 19:31:23 -04001277#endif /* __PHY_H */