blob: 08725a262f320e813c734e2ae2aacab878d2c8d0 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-or-later */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Framework and drivers for configuring and reading different PHYs
David Brazdil0f672f62019-12-10 10:32:29 +00004 * Based on code in sungem_phy.c and (long-removed) gianfar_phy.c
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005 *
6 * Author: Andy Fleming
7 *
8 * Copyright (c) 2004 Freescale Semiconductor, Inc.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00009 */
10
11#ifndef __PHY_H
12#define __PHY_H
13
14#include <linux/compiler.h>
15#include <linux/spinlock.h>
16#include <linux/ethtool.h>
David Brazdil0f672f62019-12-10 10:32:29 +000017#include <linux/linkmode.h>
Olivier Deprez157378f2022-04-04 15:47:50 +020018#include <linux/netlink.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000019#include <linux/mdio.h>
20#include <linux/mii.h>
Olivier Deprez157378f2022-04-04 15:47:50 +020021#include <linux/mii_timestamper.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000022#include <linux/module.h>
23#include <linux/timer.h>
24#include <linux/workqueue.h>
25#include <linux/mod_devicetable.h>
Olivier Deprez157378f2022-04-04 15:47:50 +020026#include <linux/u64_stats_sync.h>
27#include <linux/irqreturn.h>
28#include <linux/iopoll.h>
29#include <linux/refcount.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000030
31#include <linux/atomic.h>
32
33#define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \
34 SUPPORTED_TP | \
35 SUPPORTED_MII)
36
37#define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \
38 SUPPORTED_10baseT_Full)
39
40#define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \
41 SUPPORTED_100baseT_Full)
42
43#define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \
44 SUPPORTED_1000baseT_Full)
45
David Brazdil0f672f62019-12-10 10:32:29 +000046extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_features) __ro_after_init;
47extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_t1_features) __ro_after_init;
48extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_features) __ro_after_init;
49extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_fibre_features) __ro_after_init;
50extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_all_ports_features) __ro_after_init;
51extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_features) __ro_after_init;
52extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_fec_features) __ro_after_init;
53extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_full_features) __ro_after_init;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000054
David Brazdil0f672f62019-12-10 10:32:29 +000055#define PHY_BASIC_FEATURES ((unsigned long *)&phy_basic_features)
56#define PHY_BASIC_T1_FEATURES ((unsigned long *)&phy_basic_t1_features)
57#define PHY_GBIT_FEATURES ((unsigned long *)&phy_gbit_features)
58#define PHY_GBIT_FIBRE_FEATURES ((unsigned long *)&phy_gbit_fibre_features)
59#define PHY_GBIT_ALL_PORTS_FEATURES ((unsigned long *)&phy_gbit_all_ports_features)
60#define PHY_10GBIT_FEATURES ((unsigned long *)&phy_10gbit_features)
61#define PHY_10GBIT_FEC_FEATURES ((unsigned long *)&phy_10gbit_fec_features)
62#define PHY_10GBIT_FULL_FEATURES ((unsigned long *)&phy_10gbit_full_features)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000063
David Brazdil0f672f62019-12-10 10:32:29 +000064extern const int phy_basic_ports_array[3];
65extern const int phy_fibre_port_array[1];
66extern const int phy_all_ports_features_array[7];
67extern const int phy_10_100_features_array[4];
68extern const int phy_basic_t1_features_array[2];
69extern const int phy_gbit_features_array[2];
70extern const int phy_10gbit_features_array[1];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000071
72/*
73 * Set phydev->irq to PHY_POLL if interrupts are not supported,
74 * or not desired for this PHY. Set to PHY_IGNORE_INTERRUPT if
75 * the attached driver handles the interrupt
76 */
77#define PHY_POLL -1
78#define PHY_IGNORE_INTERRUPT -2
79
David Brazdil0f672f62019-12-10 10:32:29 +000080#define PHY_IS_INTERNAL 0x00000001
81#define PHY_RST_AFTER_CLK_EN 0x00000002
Olivier Deprez157378f2022-04-04 15:47:50 +020082#define PHY_POLL_CABLE_TEST 0x00000004
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000083#define MDIO_DEVICE_IS_PHY 0x80000000
84
Olivier Deprez157378f2022-04-04 15:47:50 +020085/**
86 * enum phy_interface_t - Interface Mode definitions
87 *
88 * @PHY_INTERFACE_MODE_NA: Not Applicable - don't touch
89 * @PHY_INTERFACE_MODE_INTERNAL: No interface, MAC and PHY combined
90 * @PHY_INTERFACE_MODE_MII: Median-independent interface
91 * @PHY_INTERFACE_MODE_GMII: Gigabit median-independent interface
92 * @PHY_INTERFACE_MODE_SGMII: Serial gigabit media-independent interface
93 * @PHY_INTERFACE_MODE_TBI: Ten Bit Interface
94 * @PHY_INTERFACE_MODE_REVMII: Reverse Media Independent Interface
95 * @PHY_INTERFACE_MODE_RMII: Reduced Media Independent Interface
96 * @PHY_INTERFACE_MODE_RGMII: Reduced gigabit media-independent interface
97 * @PHY_INTERFACE_MODE_RGMII_ID: RGMII with Internal RX+TX delay
98 * @PHY_INTERFACE_MODE_RGMII_RXID: RGMII with Internal RX delay
99 * @PHY_INTERFACE_MODE_RGMII_TXID: RGMII with Internal RX delay
100 * @PHY_INTERFACE_MODE_RTBI: Reduced TBI
101 * @PHY_INTERFACE_MODE_SMII: ??? MII
102 * @PHY_INTERFACE_MODE_XGMII: 10 gigabit media-independent interface
103 * @PHY_INTERFACE_MODE_XLGMII:40 gigabit media-independent interface
104 * @PHY_INTERFACE_MODE_MOCA: Multimedia over Coax
105 * @PHY_INTERFACE_MODE_QSGMII: Quad SGMII
106 * @PHY_INTERFACE_MODE_TRGMII: Turbo RGMII
107 * @PHY_INTERFACE_MODE_1000BASEX: 1000 BaseX
108 * @PHY_INTERFACE_MODE_2500BASEX: 2500 BaseX
109 * @PHY_INTERFACE_MODE_RXAUI: Reduced XAUI
110 * @PHY_INTERFACE_MODE_XAUI: 10 Gigabit Attachment Unit Interface
111 * @PHY_INTERFACE_MODE_10GBASER: 10G BaseR
112 * @PHY_INTERFACE_MODE_USXGMII: Universal Serial 10GE MII
113 * @PHY_INTERFACE_MODE_10GKR: 10GBASE-KR - with Clause 73 AN
114 * @PHY_INTERFACE_MODE_MAX: Book keeping
115 *
116 * Describes the interface between the MAC and PHY.
117 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000118typedef enum {
119 PHY_INTERFACE_MODE_NA,
120 PHY_INTERFACE_MODE_INTERNAL,
121 PHY_INTERFACE_MODE_MII,
122 PHY_INTERFACE_MODE_GMII,
123 PHY_INTERFACE_MODE_SGMII,
124 PHY_INTERFACE_MODE_TBI,
125 PHY_INTERFACE_MODE_REVMII,
126 PHY_INTERFACE_MODE_RMII,
127 PHY_INTERFACE_MODE_RGMII,
128 PHY_INTERFACE_MODE_RGMII_ID,
129 PHY_INTERFACE_MODE_RGMII_RXID,
130 PHY_INTERFACE_MODE_RGMII_TXID,
131 PHY_INTERFACE_MODE_RTBI,
132 PHY_INTERFACE_MODE_SMII,
133 PHY_INTERFACE_MODE_XGMII,
Olivier Deprez157378f2022-04-04 15:47:50 +0200134 PHY_INTERFACE_MODE_XLGMII,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000135 PHY_INTERFACE_MODE_MOCA,
136 PHY_INTERFACE_MODE_QSGMII,
137 PHY_INTERFACE_MODE_TRGMII,
138 PHY_INTERFACE_MODE_1000BASEX,
139 PHY_INTERFACE_MODE_2500BASEX,
140 PHY_INTERFACE_MODE_RXAUI,
141 PHY_INTERFACE_MODE_XAUI,
Olivier Deprez157378f2022-04-04 15:47:50 +0200142 /* 10GBASE-R, XFI, SFI - single lane 10G Serdes */
143 PHY_INTERFACE_MODE_10GBASER,
David Brazdil0f672f62019-12-10 10:32:29 +0000144 PHY_INTERFACE_MODE_USXGMII,
Olivier Deprez157378f2022-04-04 15:47:50 +0200145 /* 10GBASE-KR - with Clause 73 AN */
146 PHY_INTERFACE_MODE_10GKR,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000147 PHY_INTERFACE_MODE_MAX,
148} phy_interface_t;
149
Olivier Deprez157378f2022-04-04 15:47:50 +0200150/*
151 * phy_supported_speeds - return all speeds currently supported by a PHY device
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000152 */
153unsigned int phy_supported_speeds(struct phy_device *phy,
154 unsigned int *speeds,
155 unsigned int size);
156
157/**
David Brazdil0f672f62019-12-10 10:32:29 +0000158 * phy_modes - map phy_interface_t enum to device tree binding of phy-mode
159 * @interface: enum phy_interface_t value
160 *
Olivier Deprez157378f2022-04-04 15:47:50 +0200161 * Description: maps enum &phy_interface_t defined in this file
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000162 * into the device tree binding of 'phy-mode', so that Ethernet
Olivier Deprez157378f2022-04-04 15:47:50 +0200163 * device driver can get PHY interface from device tree.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000164 */
165static inline const char *phy_modes(phy_interface_t interface)
166{
167 switch (interface) {
168 case PHY_INTERFACE_MODE_NA:
169 return "";
170 case PHY_INTERFACE_MODE_INTERNAL:
171 return "internal";
172 case PHY_INTERFACE_MODE_MII:
173 return "mii";
174 case PHY_INTERFACE_MODE_GMII:
175 return "gmii";
176 case PHY_INTERFACE_MODE_SGMII:
177 return "sgmii";
178 case PHY_INTERFACE_MODE_TBI:
179 return "tbi";
180 case PHY_INTERFACE_MODE_REVMII:
181 return "rev-mii";
182 case PHY_INTERFACE_MODE_RMII:
183 return "rmii";
184 case PHY_INTERFACE_MODE_RGMII:
185 return "rgmii";
186 case PHY_INTERFACE_MODE_RGMII_ID:
187 return "rgmii-id";
188 case PHY_INTERFACE_MODE_RGMII_RXID:
189 return "rgmii-rxid";
190 case PHY_INTERFACE_MODE_RGMII_TXID:
191 return "rgmii-txid";
192 case PHY_INTERFACE_MODE_RTBI:
193 return "rtbi";
194 case PHY_INTERFACE_MODE_SMII:
195 return "smii";
196 case PHY_INTERFACE_MODE_XGMII:
197 return "xgmii";
Olivier Deprez157378f2022-04-04 15:47:50 +0200198 case PHY_INTERFACE_MODE_XLGMII:
199 return "xlgmii";
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000200 case PHY_INTERFACE_MODE_MOCA:
201 return "moca";
202 case PHY_INTERFACE_MODE_QSGMII:
203 return "qsgmii";
204 case PHY_INTERFACE_MODE_TRGMII:
205 return "trgmii";
206 case PHY_INTERFACE_MODE_1000BASEX:
207 return "1000base-x";
208 case PHY_INTERFACE_MODE_2500BASEX:
209 return "2500base-x";
210 case PHY_INTERFACE_MODE_RXAUI:
211 return "rxaui";
212 case PHY_INTERFACE_MODE_XAUI:
213 return "xaui";
Olivier Deprez157378f2022-04-04 15:47:50 +0200214 case PHY_INTERFACE_MODE_10GBASER:
215 return "10gbase-r";
David Brazdil0f672f62019-12-10 10:32:29 +0000216 case PHY_INTERFACE_MODE_USXGMII:
217 return "usxgmii";
Olivier Deprez157378f2022-04-04 15:47:50 +0200218 case PHY_INTERFACE_MODE_10GKR:
219 return "10gbase-kr";
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000220 default:
221 return "unknown";
222 }
223}
224
225
226#define PHY_INIT_TIMEOUT 100000
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000227#define PHY_FORCE_TIMEOUT 10
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000228
229#define PHY_MAX_ADDR 32
230
231/* Used when trying to connect to a specific phy (mii bus id:phy device id) */
232#define PHY_ID_FMT "%s:%02x"
233
234#define MII_BUS_ID_SIZE 61
235
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000236struct device;
237struct phylink;
Olivier Deprez157378f2022-04-04 15:47:50 +0200238struct sfp_bus;
239struct sfp_upstream_ops;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000240struct sk_buff;
241
Olivier Deprez157378f2022-04-04 15:47:50 +0200242/**
243 * struct mdio_bus_stats - Statistics counters for MDIO busses
244 * @transfers: Total number of transfers, i.e. @writes + @reads
245 * @errors: Number of MDIO transfers that returned an error
246 * @writes: Number of write transfers
247 * @reads: Number of read transfers
248 * @syncp: Synchronisation for incrementing statistics
249 */
250struct mdio_bus_stats {
251 u64_stats_t transfers;
252 u64_stats_t errors;
253 u64_stats_t writes;
254 u64_stats_t reads;
255 /* Must be last, add new statistics above */
256 struct u64_stats_sync syncp;
257};
258
259/**
260 * struct phy_package_shared - Shared information in PHY packages
261 * @addr: Common PHY address used to combine PHYs in one package
262 * @refcnt: Number of PHYs connected to this shared data
263 * @flags: Initialization of PHY package
264 * @priv_size: Size of the shared private data @priv
265 * @priv: Driver private data shared across a PHY package
266 *
267 * Represents a shared structure between different phydev's in the same
268 * package, for example a quad PHY. See phy_package_join() and
269 * phy_package_leave().
270 */
271struct phy_package_shared {
272 int addr;
273 refcount_t refcnt;
274 unsigned long flags;
275 size_t priv_size;
276
277 /* private data pointer */
278 /* note that this pointer is shared between different phydevs and
279 * the user has to take care of appropriate locking. It is allocated
280 * and freed automatically by phy_package_join() and
281 * phy_package_leave().
282 */
283 void *priv;
284};
285
286/* used as bit number in atomic bitops */
287#define PHY_SHARED_F_INIT_DONE 0
288#define PHY_SHARED_F_PROBE_DONE 1
289
290/**
291 * struct mii_bus - Represents an MDIO bus
292 *
293 * @owner: Who owns this device
294 * @name: User friendly name for this MDIO device, or driver name
295 * @id: Unique identifier for this bus, typical from bus hierarchy
296 * @priv: Driver private data
297 *
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000298 * The Bus class for PHYs. Devices which provide access to
299 * PHYs should register using this structure
300 */
301struct mii_bus {
302 struct module *owner;
303 const char *name;
304 char id[MII_BUS_ID_SIZE];
305 void *priv;
Olivier Deprez157378f2022-04-04 15:47:50 +0200306 /** @read: Perform a read transfer on the bus */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000307 int (*read)(struct mii_bus *bus, int addr, int regnum);
Olivier Deprez157378f2022-04-04 15:47:50 +0200308 /** @write: Perform a write transfer on the bus */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000309 int (*write)(struct mii_bus *bus, int addr, int regnum, u16 val);
Olivier Deprez157378f2022-04-04 15:47:50 +0200310 /** @reset: Perform a reset of the bus */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000311 int (*reset)(struct mii_bus *bus);
312
Olivier Deprez157378f2022-04-04 15:47:50 +0200313 /** @stats: Statistic counters per device on the bus */
314 struct mdio_bus_stats stats[PHY_MAX_ADDR];
315
316 /**
317 * @mdio_lock: A lock to ensure that only one thing can read/write
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000318 * the MDIO bus at a time
319 */
320 struct mutex mdio_lock;
321
Olivier Deprez157378f2022-04-04 15:47:50 +0200322 /** @parent: Parent device of this bus */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000323 struct device *parent;
Olivier Deprez157378f2022-04-04 15:47:50 +0200324 /** @state: State of bus structure */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000325 enum {
326 MDIOBUS_ALLOCATED = 1,
327 MDIOBUS_REGISTERED,
328 MDIOBUS_UNREGISTERED,
329 MDIOBUS_RELEASED,
330 } state;
Olivier Deprez157378f2022-04-04 15:47:50 +0200331
332 /** @dev: Kernel device representation */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000333 struct device dev;
334
Olivier Deprez157378f2022-04-04 15:47:50 +0200335 /** @mdio_map: list of all MDIO devices on bus */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000336 struct mdio_device *mdio_map[PHY_MAX_ADDR];
337
Olivier Deprez157378f2022-04-04 15:47:50 +0200338 /** @phy_mask: PHY addresses to be ignored when probing */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000339 u32 phy_mask;
340
Olivier Deprez157378f2022-04-04 15:47:50 +0200341 /** @phy_ignore_ta_mask: PHY addresses to ignore the TA/read failure */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000342 u32 phy_ignore_ta_mask;
343
Olivier Deprez157378f2022-04-04 15:47:50 +0200344 /**
345 * @irq: An array of interrupts, each PHY's interrupt at the index
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000346 * matching its address
347 */
348 int irq[PHY_MAX_ADDR];
349
Olivier Deprez157378f2022-04-04 15:47:50 +0200350 /** @reset_delay_us: GPIO reset pulse width in microseconds */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000351 int reset_delay_us;
Olivier Deprez157378f2022-04-04 15:47:50 +0200352 /** @reset_post_delay_us: GPIO reset deassert delay in microseconds */
353 int reset_post_delay_us;
354 /** @reset_gpiod: Reset GPIO descriptor pointer */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000355 struct gpio_desc *reset_gpiod;
Olivier Deprez157378f2022-04-04 15:47:50 +0200356
357 /** @probe_capabilities: bus capabilities, used for probing */
358 enum {
359 MDIOBUS_NO_CAP = 0,
360 MDIOBUS_C22,
361 MDIOBUS_C45,
362 MDIOBUS_C22_C45,
363 } probe_capabilities;
364
365 /** @shared_lock: protect access to the shared element */
366 struct mutex shared_lock;
367
368 /** @shared: shared state across different PHYs */
369 struct phy_package_shared *shared[PHY_MAX_ADDR];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000370};
371#define to_mii_bus(d) container_of(d, struct mii_bus, dev)
372
Olivier Deprez157378f2022-04-04 15:47:50 +0200373struct mii_bus *mdiobus_alloc_size(size_t size);
374
375/**
376 * mdiobus_alloc - Allocate an MDIO bus structure
377 *
378 * The internal state of the MDIO bus will be set of MDIOBUS_ALLOCATED ready
379 * for the driver to register the bus.
380 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000381static inline struct mii_bus *mdiobus_alloc(void)
382{
383 return mdiobus_alloc_size(0);
384}
385
386int __mdiobus_register(struct mii_bus *bus, struct module *owner);
Olivier Deprez157378f2022-04-04 15:47:50 +0200387int __devm_mdiobus_register(struct device *dev, struct mii_bus *bus,
388 struct module *owner);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000389#define mdiobus_register(bus) __mdiobus_register(bus, THIS_MODULE)
Olivier Deprez157378f2022-04-04 15:47:50 +0200390#define devm_mdiobus_register(dev, bus) \
391 __devm_mdiobus_register(dev, bus, THIS_MODULE)
392
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000393void mdiobus_unregister(struct mii_bus *bus);
394void mdiobus_free(struct mii_bus *bus);
395struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv);
396static inline struct mii_bus *devm_mdiobus_alloc(struct device *dev)
397{
398 return devm_mdiobus_alloc_size(dev, 0);
399}
400
Olivier Deprez157378f2022-04-04 15:47:50 +0200401struct mii_bus *mdio_find_bus(const char *mdio_name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000402struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr);
403
David Brazdil0f672f62019-12-10 10:32:29 +0000404#define PHY_INTERRUPT_DISABLED false
405#define PHY_INTERRUPT_ENABLED true
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000406
Olivier Deprez157378f2022-04-04 15:47:50 +0200407/**
408 * enum phy_state - PHY state machine states:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000409 *
Olivier Deprez157378f2022-04-04 15:47:50 +0200410 * @PHY_DOWN: PHY device and driver are not ready for anything. probe
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000411 * should be called if and only if the PHY is in this state,
412 * given that the PHY device exists.
Olivier Deprez157378f2022-04-04 15:47:50 +0200413 * - PHY driver probe function will set the state to @PHY_READY
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000414 *
Olivier Deprez157378f2022-04-04 15:47:50 +0200415 * @PHY_READY: PHY is ready to send and receive packets, but the
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000416 * controller is not. By default, PHYs which do not implement
David Brazdil0f672f62019-12-10 10:32:29 +0000417 * probe will be set to this state by phy_probe().
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000418 * - start will set the state to UP
419 *
Olivier Deprez157378f2022-04-04 15:47:50 +0200420 * @PHY_UP: The PHY and attached device are ready to do work.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000421 * Interrupts should be started here.
Olivier Deprez157378f2022-04-04 15:47:50 +0200422 * - timer moves to @PHY_NOLINK or @PHY_RUNNING
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000423 *
Olivier Deprez157378f2022-04-04 15:47:50 +0200424 * @PHY_NOLINK: PHY is up, but not currently plugged in.
425 * - irq or timer will set @PHY_RUNNING if link comes back
426 * - phy_stop moves to @PHY_HALTED
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000427 *
Olivier Deprez157378f2022-04-04 15:47:50 +0200428 * @PHY_RUNNING: PHY is currently up, running, and possibly sending
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000429 * and/or receiving packets
Olivier Deprez157378f2022-04-04 15:47:50 +0200430 * - irq or timer will set @PHY_NOLINK if link goes down
431 * - phy_stop moves to @PHY_HALTED
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000432 *
Olivier Deprez157378f2022-04-04 15:47:50 +0200433 * @PHY_CABLETEST: PHY is performing a cable test. Packet reception/sending
434 * is not expected to work, carrier will be indicated as down. PHY will be
435 * poll once per second, or on interrupt for it current state.
436 * Once complete, move to UP to restart the PHY.
437 * - phy_stop aborts the running test and moves to @PHY_HALTED
438 *
439 * @PHY_HALTED: PHY is up, but no polling or interrupts are done. Or
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000440 * PHY is in an error state.
Olivier Deprez157378f2022-04-04 15:47:50 +0200441 * - phy_start moves to @PHY_UP
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000442 */
443enum phy_state {
444 PHY_DOWN = 0,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000445 PHY_READY,
David Brazdil0f672f62019-12-10 10:32:29 +0000446 PHY_HALTED,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000447 PHY_UP,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000448 PHY_RUNNING,
449 PHY_NOLINK,
Olivier Deprez157378f2022-04-04 15:47:50 +0200450 PHY_CABLETEST,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000451};
452
Olivier Deprez157378f2022-04-04 15:47:50 +0200453#define MDIO_MMD_NUM 32
454
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000455/**
456 * struct phy_c45_device_ids - 802.3-c45 Device Identifiers
Olivier Deprez157378f2022-04-04 15:47:50 +0200457 * @devices_in_package: IEEE 802.3 devices in package register value.
458 * @mmds_present: bit vector of MMDs present.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000459 * @device_ids: The device identifer for each present device.
460 */
461struct phy_c45_device_ids {
462 u32 devices_in_package;
Olivier Deprez157378f2022-04-04 15:47:50 +0200463 u32 mmds_present;
464 u32 device_ids[MDIO_MMD_NUM];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000465};
466
Olivier Deprez157378f2022-04-04 15:47:50 +0200467struct macsec_context;
468struct macsec_ops;
469
470/**
471 * struct phy_device - An instance of a PHY
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000472 *
Olivier Deprez157378f2022-04-04 15:47:50 +0200473 * @mdio: MDIO bus this PHY is on
474 * @drv: Pointer to the driver for this PHY instance
475 * @phy_id: UID for this device found during discovery
476 * @c45_ids: 802.3-c45 Device Identifiers if is_c45.
477 * @is_c45: Set to true if this PHY uses clause 45 addressing.
478 * @is_internal: Set to true if this PHY is internal to a MAC.
479 * @is_pseudo_fixed_link: Set to true if this PHY is an Ethernet switch, etc.
480 * @is_gigabit_capable: Set to true if PHY supports 1000Mbps
481 * @has_fixups: Set to true if this PHY has fixups/quirks.
482 * @suspended: Set to true if this PHY has been suspended successfully.
483 * @suspended_by_mdio_bus: Set to true if this PHY was suspended by MDIO bus.
484 * @sysfs_links: Internal boolean tracking sysfs symbolic links setup/removal.
485 * @loopback_enabled: Set true if this PHY has been loopbacked successfully.
486 * @downshifted_rate: Set true if link speed has been downshifted.
487 * @state: State of the PHY for management purposes
488 * @dev_flags: Device-specific flags used by the PHY driver.
489 * @irq: IRQ number of the PHY's interrupt (-1 if none)
490 * @phy_timer: The timer for handling the state machine
491 * @phylink: Pointer to phylink instance for this PHY
492 * @sfp_bus_attached: Flag indicating whether the SFP bus has been attached
493 * @sfp_bus: SFP bus attached to this PHY's fiber port
494 * @attached_dev: The attached enet driver's device instance ptr
495 * @adjust_link: Callback for the enet controller to respond to changes: in the
496 * link state.
497 * @phy_link_change: Callback for phylink for notification of link change
498 * @macsec_ops: MACsec offloading ops.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000499 *
Olivier Deprez157378f2022-04-04 15:47:50 +0200500 * @speed: Current link speed
501 * @duplex: Current duplex
502 * @port: Current port
503 * @pause: Current pause
504 * @asym_pause: Current asymmetric pause
505 * @supported: Combined MAC/PHY supported linkmodes
506 * @advertising: Currently advertised linkmodes
507 * @adv_old: Saved advertised while power saving for WoL
508 * @lp_advertising: Current link partner advertised linkmodes
509 * @eee_broken_modes: Energy efficient ethernet modes which should be prohibited
510 * @autoneg: Flag autoneg being used
511 * @link: Current link state
512 * @autoneg_complete: Flag auto negotiation of the link has completed
513 * @mdix: Current crossover
514 * @mdix_ctrl: User setting of crossover
515 * @interrupts: Flag interrupts have been enabled
516 * @interface: enum phy_interface_t value
517 * @skb: Netlink message for cable diagnostics
518 * @nest: Netlink nest used for cable diagnostics
519 * @ehdr: nNtlink header for cable diagnostics
520 * @phy_led_triggers: Array of LED triggers
521 * @phy_num_led_triggers: Number of triggers in @phy_led_triggers
522 * @led_link_trigger: LED trigger for link up/down
523 * @last_triggered: last LED trigger for link speed
524 * @master_slave_set: User requested master/slave configuration
525 * @master_slave_get: Current master/slave advertisement
526 * @master_slave_state: Current master/slave configuration
527 * @mii_ts: Pointer to time stamper callbacks
528 * @lock: Mutex for serialization access to PHY
529 * @state_queue: Work queue for state machine
530 * @shared: Pointer to private data shared by phys in one package
531 * @priv: Pointer to driver private data
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000532 *
533 * interrupts currently only supports enabled or disabled,
534 * but could be changed in the future to support enabling
535 * and disabling specific interrupts
536 *
537 * Contains some infrastructure for polling and interrupt
538 * handling, as well as handling shifts in PHY hardware state
539 */
540struct phy_device {
541 struct mdio_device mdio;
542
543 /* Information about the PHY type */
544 /* And management functions */
545 struct phy_driver *drv;
546
547 u32 phy_id;
548
549 struct phy_c45_device_ids c45_ids;
550 unsigned is_c45:1;
551 unsigned is_internal:1;
552 unsigned is_pseudo_fixed_link:1;
David Brazdil0f672f62019-12-10 10:32:29 +0000553 unsigned is_gigabit_capable:1;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000554 unsigned has_fixups:1;
555 unsigned suspended:1;
Olivier Deprez0e641232021-09-23 10:07:05 +0200556 unsigned suspended_by_mdio_bus:1;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000557 unsigned sysfs_links:1;
558 unsigned loopback_enabled:1;
Olivier Deprez157378f2022-04-04 15:47:50 +0200559 unsigned downshifted_rate:1;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000560
561 unsigned autoneg:1;
562 /* The most recently read link state */
563 unsigned link:1;
David Brazdil0f672f62019-12-10 10:32:29 +0000564 unsigned autoneg_complete:1;
565
566 /* Interrupts are enabled */
567 unsigned interrupts:1;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000568
569 enum phy_state state;
570
571 u32 dev_flags;
572
573 phy_interface_t interface;
574
575 /*
576 * forced speed & duplex (no autoneg)
577 * partner speed & duplex & pause (autoneg)
578 */
579 int speed;
580 int duplex;
Olivier Deprez157378f2022-04-04 15:47:50 +0200581 int port;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000582 int pause;
583 int asym_pause;
Olivier Deprez157378f2022-04-04 15:47:50 +0200584 u8 master_slave_get;
585 u8 master_slave_set;
586 u8 master_slave_state;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000587
David Brazdil0f672f62019-12-10 10:32:29 +0000588 /* Union of PHY and Attached devices' supported link modes */
589 /* See ethtool.h for more info */
590 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported);
591 __ETHTOOL_DECLARE_LINK_MODE_MASK(advertising);
592 __ETHTOOL_DECLARE_LINK_MODE_MASK(lp_advertising);
593 /* used with phy_speed_down */
594 __ETHTOOL_DECLARE_LINK_MODE_MASK(adv_old);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000595
596 /* Energy efficient ethernet modes which should be prohibited */
597 u32 eee_broken_modes;
598
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000599#ifdef CONFIG_LED_TRIGGER_PHY
600 struct phy_led_trigger *phy_led_triggers;
601 unsigned int phy_num_led_triggers;
602 struct phy_led_trigger *last_triggered;
603
604 struct phy_led_trigger *led_link_trigger;
605#endif
606
607 /*
608 * Interrupt number for this PHY
609 * -1 means no interrupt
610 */
611 int irq;
612
613 /* private data pointer */
614 /* For use by PHYs to maintain extra state */
615 void *priv;
616
Olivier Deprez157378f2022-04-04 15:47:50 +0200617 /* shared data pointer */
618 /* For use by PHYs inside the same package that need a shared state. */
619 struct phy_package_shared *shared;
620
621 /* Reporting cable test results */
622 struct sk_buff *skb;
623 void *ehdr;
624 struct nlattr *nest;
625
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000626 /* Interrupt and Polling infrastructure */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000627 struct delayed_work state_queue;
628
629 struct mutex lock;
630
Olivier Deprez157378f2022-04-04 15:47:50 +0200631 /* This may be modified under the rtnl lock */
632 bool sfp_bus_attached;
633 struct sfp_bus *sfp_bus;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000634 struct phylink *phylink;
635 struct net_device *attached_dev;
Olivier Deprez157378f2022-04-04 15:47:50 +0200636 struct mii_timestamper *mii_ts;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000637
638 u8 mdix;
639 u8 mdix_ctrl;
640
Olivier Deprez157378f2022-04-04 15:47:50 +0200641 void (*phy_link_change)(struct phy_device *phydev, bool up);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000642 void (*adjust_link)(struct net_device *dev);
Olivier Deprez157378f2022-04-04 15:47:50 +0200643
644#if IS_ENABLED(CONFIG_MACSEC)
645 /* MACsec management functions */
646 const struct macsec_ops *macsec_ops;
647#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000648};
649#define to_phy_device(d) container_of(to_mdio_device(d), \
650 struct phy_device, mdio)
651
Olivier Deprez157378f2022-04-04 15:47:50 +0200652/**
653 * struct phy_tdr_config - Configuration of a TDR raw test
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000654 *
Olivier Deprez157378f2022-04-04 15:47:50 +0200655 * @first: Distance for first data collection point
656 * @last: Distance for last data collection point
657 * @step: Step between data collection points
658 * @pair: Bitmap of cable pairs to collect data for
659 *
660 * A structure containing possible configuration parameters
661 * for a TDR cable test. The driver does not need to implement
662 * all the parameters, but should report what is actually used.
663 * All distances are in centimeters.
664 */
665struct phy_tdr_config {
666 u32 first;
667 u32 last;
668 u32 step;
669 s8 pair;
670};
671#define PHY_PAIR_ALL -1
672
673/**
674 * struct phy_driver - Driver structure for a particular PHY type
675 *
676 * @mdiodrv: Data common to all MDIO devices
677 * @phy_id: The result of reading the UID registers of this PHY
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000678 * type, and ANDing them with the phy_id_mask. This driver
679 * only works for PHYs with IDs which match this field
Olivier Deprez157378f2022-04-04 15:47:50 +0200680 * @name: The friendly name of this PHY type
681 * @phy_id_mask: Defines the important bits of the phy_id
682 * @features: A mandatory list of features (speed, duplex, etc)
David Brazdil0f672f62019-12-10 10:32:29 +0000683 * supported by this PHY
Olivier Deprez157378f2022-04-04 15:47:50 +0200684 * @flags: A bitfield defining certain other features this PHY
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000685 * supports (like interrupts)
Olivier Deprez157378f2022-04-04 15:47:50 +0200686 * @driver_data: Static driver data
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000687 *
688 * All functions are optional. If config_aneg or read_status
689 * are not implemented, the phy core uses the genphy versions.
690 * Note that none of these functions should be called from
691 * interrupt time. The goal is for the bus read/write functions
692 * to be able to block when the bus transaction is happening,
693 * and be freed up by an interrupt (The MPC85xx has this ability,
694 * though it is not currently supported in the driver).
695 */
696struct phy_driver {
697 struct mdio_driver_common mdiodrv;
698 u32 phy_id;
699 char *name;
700 u32 phy_id_mask;
David Brazdil0f672f62019-12-10 10:32:29 +0000701 const unsigned long * const features;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000702 u32 flags;
703 const void *driver_data;
704
Olivier Deprez157378f2022-04-04 15:47:50 +0200705 /**
706 * @soft_reset: Called to issue a PHY software reset
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000707 */
708 int (*soft_reset)(struct phy_device *phydev);
709
Olivier Deprez157378f2022-04-04 15:47:50 +0200710 /**
711 * @config_init: Called to initialize the PHY,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000712 * including after a reset
713 */
714 int (*config_init)(struct phy_device *phydev);
715
Olivier Deprez157378f2022-04-04 15:47:50 +0200716 /**
717 * @probe: Called during discovery. Used to set
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000718 * up device-specific structures, if any
719 */
720 int (*probe)(struct phy_device *phydev);
721
Olivier Deprez157378f2022-04-04 15:47:50 +0200722 /**
723 * @get_features: Probe the hardware to determine what
724 * abilities it has. Should only set phydev->supported.
David Brazdil0f672f62019-12-10 10:32:29 +0000725 */
726 int (*get_features)(struct phy_device *phydev);
727
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000728 /* PHY Power Management */
Olivier Deprez157378f2022-04-04 15:47:50 +0200729 /** @suspend: Suspend the hardware, saving state if needed */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000730 int (*suspend)(struct phy_device *phydev);
Olivier Deprez157378f2022-04-04 15:47:50 +0200731 /** @resume: Resume the hardware, restoring state if needed */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000732 int (*resume)(struct phy_device *phydev);
733
Olivier Deprez157378f2022-04-04 15:47:50 +0200734 /**
735 * @config_aneg: Configures the advertisement and resets
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000736 * autonegotiation if phydev->autoneg is on,
737 * forces the speed to the current settings in phydev
738 * if phydev->autoneg is off
739 */
740 int (*config_aneg)(struct phy_device *phydev);
741
Olivier Deprez157378f2022-04-04 15:47:50 +0200742 /** @aneg_done: Determines the auto negotiation result */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000743 int (*aneg_done)(struct phy_device *phydev);
744
Olivier Deprez157378f2022-04-04 15:47:50 +0200745 /** @read_status: Determines the negotiated speed and duplex */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000746 int (*read_status)(struct phy_device *phydev);
747
Olivier Deprez157378f2022-04-04 15:47:50 +0200748 /** @ack_interrupt: Clears any pending interrupts */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000749 int (*ack_interrupt)(struct phy_device *phydev);
750
Olivier Deprez157378f2022-04-04 15:47:50 +0200751 /** @config_intr: Enables or disables interrupts */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000752 int (*config_intr)(struct phy_device *phydev);
753
Olivier Deprez157378f2022-04-04 15:47:50 +0200754 /**
755 * @did_interrupt: Checks if the PHY generated an interrupt.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000756 * For multi-PHY devices with shared PHY interrupt pin
Olivier Deprez0e641232021-09-23 10:07:05 +0200757 * Set interrupt bits have to be cleared.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000758 */
759 int (*did_interrupt)(struct phy_device *phydev);
760
Olivier Deprez157378f2022-04-04 15:47:50 +0200761 /** @handle_interrupt: Override default interrupt handling */
762 irqreturn_t (*handle_interrupt)(struct phy_device *phydev);
David Brazdil0f672f62019-12-10 10:32:29 +0000763
Olivier Deprez157378f2022-04-04 15:47:50 +0200764 /** @remove: Clears up any memory if needed */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000765 void (*remove)(struct phy_device *phydev);
766
Olivier Deprez157378f2022-04-04 15:47:50 +0200767 /**
768 * @match_phy_device: Returns true if this is a suitable
769 * driver for the given phydev. If NULL, matching is based on
770 * phy_id and phy_id_mask.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000771 */
772 int (*match_phy_device)(struct phy_device *phydev);
773
Olivier Deprez157378f2022-04-04 15:47:50 +0200774 /**
775 * @set_wol: Some devices (e.g. qnap TS-119P II) require PHY
776 * register changes to enable Wake on LAN, so set_wol is
777 * provided to be called in the ethernet driver's set_wol
778 * function.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000779 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000780 int (*set_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol);
781
Olivier Deprez157378f2022-04-04 15:47:50 +0200782 /**
783 * @get_wol: See set_wol, but for checking whether Wake on LAN
784 * is enabled.
785 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000786 void (*get_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol);
787
Olivier Deprez157378f2022-04-04 15:47:50 +0200788 /**
789 * @link_change_notify: Called to inform a PHY device driver
790 * when the core is about to change the link state. This
791 * callback is supposed to be used as fixup hook for drivers
792 * that need to take action when the link state
793 * changes. Drivers are by no means allowed to mess with the
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000794 * PHY device structure in their implementations.
795 */
796 void (*link_change_notify)(struct phy_device *dev);
797
Olivier Deprez157378f2022-04-04 15:47:50 +0200798 /**
799 * @read_mmd: PHY specific driver override for reading a MMD
800 * register. This function is optional for PHY specific
801 * drivers. When not provided, the default MMD read function
802 * will be used by phy_read_mmd(), which will use either a
803 * direct read for Clause 45 PHYs or an indirect read for
804 * Clause 22 PHYs. devnum is the MMD device number within the
805 * PHY device, regnum is the register within the selected MMD
806 * device.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000807 */
808 int (*read_mmd)(struct phy_device *dev, int devnum, u16 regnum);
809
Olivier Deprez157378f2022-04-04 15:47:50 +0200810 /**
811 * @write_mmd: PHY specific driver override for writing a MMD
812 * register. This function is optional for PHY specific
813 * drivers. When not provided, the default MMD write function
814 * will be used by phy_write_mmd(), which will use either a
815 * direct write for Clause 45 PHYs, or an indirect write for
816 * Clause 22 PHYs. devnum is the MMD device number within the
817 * PHY device, regnum is the register within the selected MMD
818 * device. val is the value to be written.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000819 */
820 int (*write_mmd)(struct phy_device *dev, int devnum, u16 regnum,
821 u16 val);
822
Olivier Deprez157378f2022-04-04 15:47:50 +0200823 /** @read_page: Return the current PHY register page number */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000824 int (*read_page)(struct phy_device *dev);
Olivier Deprez157378f2022-04-04 15:47:50 +0200825 /** @write_page: Set the current PHY register page number */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000826 int (*write_page)(struct phy_device *dev, int page);
827
Olivier Deprez157378f2022-04-04 15:47:50 +0200828 /**
829 * @module_info: Get the size and type of the eeprom contained
830 * within a plug-in module
831 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000832 int (*module_info)(struct phy_device *dev,
833 struct ethtool_modinfo *modinfo);
834
Olivier Deprez157378f2022-04-04 15:47:50 +0200835 /**
836 * @module_eeprom: Get the eeprom information from the plug-in
837 * module
838 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000839 int (*module_eeprom)(struct phy_device *dev,
840 struct ethtool_eeprom *ee, u8 *data);
841
Olivier Deprez157378f2022-04-04 15:47:50 +0200842 /** @cable_test_start: Start a cable test */
843 int (*cable_test_start)(struct phy_device *dev);
844
845 /** @cable_test_tdr_start: Start a raw TDR cable test */
846 int (*cable_test_tdr_start)(struct phy_device *dev,
847 const struct phy_tdr_config *config);
848
849 /**
850 * @cable_test_get_status: Once per second, or on interrupt,
851 * request the status of the test.
852 */
853 int (*cable_test_get_status)(struct phy_device *dev, bool *finished);
854
855 /* Get statistics from the PHY using ethtool */
856 /** @get_sset_count: Number of statistic counters */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000857 int (*get_sset_count)(struct phy_device *dev);
Olivier Deprez157378f2022-04-04 15:47:50 +0200858 /** @get_strings: Names of the statistic counters */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000859 void (*get_strings)(struct phy_device *dev, u8 *data);
Olivier Deprez157378f2022-04-04 15:47:50 +0200860 /** @get_stats: Return the statistic counter values */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000861 void (*get_stats)(struct phy_device *dev,
862 struct ethtool_stats *stats, u64 *data);
863
864 /* Get and Set PHY tunables */
Olivier Deprez157378f2022-04-04 15:47:50 +0200865 /** @get_tunable: Return the value of a tunable */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000866 int (*get_tunable)(struct phy_device *dev,
867 struct ethtool_tunable *tuna, void *data);
Olivier Deprez157378f2022-04-04 15:47:50 +0200868 /** @set_tunable: Set the value of a tunable */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000869 int (*set_tunable)(struct phy_device *dev,
870 struct ethtool_tunable *tuna,
871 const void *data);
Olivier Deprez157378f2022-04-04 15:47:50 +0200872 /** @set_loopback: Set the loopback mood of the PHY */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000873 int (*set_loopback)(struct phy_device *dev, bool enable);
Olivier Deprez157378f2022-04-04 15:47:50 +0200874 /** @get_sqi: Get the signal quality indication */
875 int (*get_sqi)(struct phy_device *dev);
876 /** @get_sqi_max: Get the maximum signal quality indication */
877 int (*get_sqi_max)(struct phy_device *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000878};
879#define to_phy_driver(d) container_of(to_mdio_common_driver(d), \
880 struct phy_driver, mdiodrv)
881
882#define PHY_ANY_ID "MATCH ANY PHY"
883#define PHY_ANY_UID 0xffffffff
884
David Brazdil0f672f62019-12-10 10:32:29 +0000885#define PHY_ID_MATCH_EXACT(id) .phy_id = (id), .phy_id_mask = GENMASK(31, 0)
886#define PHY_ID_MATCH_MODEL(id) .phy_id = (id), .phy_id_mask = GENMASK(31, 4)
887#define PHY_ID_MATCH_VENDOR(id) .phy_id = (id), .phy_id_mask = GENMASK(31, 10)
888
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000889/* A Structure for boards to register fixups with the PHY Lib */
890struct phy_fixup {
891 struct list_head list;
892 char bus_id[MII_BUS_ID_SIZE + 3];
893 u32 phy_uid;
894 u32 phy_uid_mask;
895 int (*run)(struct phy_device *phydev);
896};
897
898const char *phy_speed_to_str(int speed);
899const char *phy_duplex_to_str(unsigned int duplex);
900
901/* A structure for mapping a particular speed and duplex
902 * combination to a particular SUPPORTED and ADVERTISED value
903 */
904struct phy_setting {
905 u32 speed;
906 u8 duplex;
907 u8 bit;
908};
909
910const struct phy_setting *
911phy_lookup_setting(int speed, int duplex, const unsigned long *mask,
David Brazdil0f672f62019-12-10 10:32:29 +0000912 bool exact);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000913size_t phy_speeds(unsigned int *speeds, size_t size,
David Brazdil0f672f62019-12-10 10:32:29 +0000914 unsigned long *mask);
915void of_set_phy_supported(struct phy_device *phydev);
916void of_set_phy_eee_broken(struct phy_device *phydev);
917int phy_speed_down_core(struct phy_device *phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000918
919/**
David Brazdil0f672f62019-12-10 10:32:29 +0000920 * phy_is_started - Convenience function to check whether PHY is started
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000921 * @phydev: The phy_device struct
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000922 */
David Brazdil0f672f62019-12-10 10:32:29 +0000923static inline bool phy_is_started(struct phy_device *phydev)
924{
925 return phydev->state >= PHY_UP;
926}
927
928void phy_resolve_aneg_pause(struct phy_device *phydev);
929void phy_resolve_aneg_linkmode(struct phy_device *phydev);
Olivier Deprez157378f2022-04-04 15:47:50 +0200930void phy_check_downshift(struct phy_device *phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000931
932/**
933 * phy_read - Convenience function for reading a given PHY register
934 * @phydev: the phy_device struct
935 * @regnum: register number to read
936 *
937 * NOTE: MUST NOT be called from interrupt context,
938 * because the bus read/write functions may wait for an interrupt
939 * to conclude the operation.
940 */
941static inline int phy_read(struct phy_device *phydev, u32 regnum)
942{
943 return mdiobus_read(phydev->mdio.bus, phydev->mdio.addr, regnum);
944}
945
Olivier Deprez157378f2022-04-04 15:47:50 +0200946#define phy_read_poll_timeout(phydev, regnum, val, cond, sleep_us, \
947 timeout_us, sleep_before_read) \
948({ \
949 int __ret = read_poll_timeout(phy_read, val, (cond) || val < 0, \
950 sleep_us, timeout_us, sleep_before_read, phydev, regnum); \
951 if (val < 0) \
952 __ret = val; \
953 if (__ret) \
954 phydev_err(phydev, "%s failed: %d\n", __func__, __ret); \
955 __ret; \
956})
957
958
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000959/**
960 * __phy_read - convenience function for reading a given PHY register
961 * @phydev: the phy_device struct
962 * @regnum: register number to read
963 *
964 * The caller must have taken the MDIO bus lock.
965 */
966static inline int __phy_read(struct phy_device *phydev, u32 regnum)
967{
968 return __mdiobus_read(phydev->mdio.bus, phydev->mdio.addr, regnum);
969}
970
971/**
972 * phy_write - Convenience function for writing a given PHY register
973 * @phydev: the phy_device struct
974 * @regnum: register number to write
975 * @val: value to write to @regnum
976 *
977 * NOTE: MUST NOT be called from interrupt context,
978 * because the bus read/write functions may wait for an interrupt
979 * to conclude the operation.
980 */
981static inline int phy_write(struct phy_device *phydev, u32 regnum, u16 val)
982{
983 return mdiobus_write(phydev->mdio.bus, phydev->mdio.addr, regnum, val);
984}
985
986/**
987 * __phy_write - Convenience function for writing a given PHY register
988 * @phydev: the phy_device struct
989 * @regnum: register number to write
990 * @val: value to write to @regnum
991 *
992 * The caller must have taken the MDIO bus lock.
993 */
994static inline int __phy_write(struct phy_device *phydev, u32 regnum, u16 val)
995{
996 return __mdiobus_write(phydev->mdio.bus, phydev->mdio.addr, regnum,
997 val);
998}
999
David Brazdil0f672f62019-12-10 10:32:29 +00001000/**
Olivier Deprez157378f2022-04-04 15:47:50 +02001001 * __phy_modify_changed() - Convenience function for modifying a PHY register
1002 * @phydev: a pointer to a &struct phy_device
1003 * @regnum: register number
1004 * @mask: bit mask of bits to clear
1005 * @set: bit mask of bits to set
1006 *
1007 * Unlocked helper function which allows a PHY register to be modified as
1008 * new register value = (old register value & ~mask) | set
1009 *
1010 * Returns negative errno, 0 if there was no change, and 1 in case of change
1011 */
1012static inline int __phy_modify_changed(struct phy_device *phydev, u32 regnum,
1013 u16 mask, u16 set)
1014{
1015 return __mdiobus_modify_changed(phydev->mdio.bus, phydev->mdio.addr,
1016 regnum, mask, set);
1017}
1018
1019/*
David Brazdil0f672f62019-12-10 10:32:29 +00001020 * phy_read_mmd - Convenience function for reading a register
1021 * from an MMD on a given PHY.
David Brazdil0f672f62019-12-10 10:32:29 +00001022 */
1023int phy_read_mmd(struct phy_device *phydev, int devad, u32 regnum);
1024
1025/**
Olivier Deprez157378f2022-04-04 15:47:50 +02001026 * phy_read_mmd_poll_timeout - Periodically poll a PHY register until a
1027 * condition is met or a timeout occurs
1028 *
1029 * @phydev: The phy_device struct
1030 * @devaddr: The MMD to read from
1031 * @regnum: The register on the MMD to read
1032 * @val: Variable to read the register into
1033 * @cond: Break condition (usually involving @val)
1034 * @sleep_us: Maximum time to sleep between reads in us (0
1035 * tight-loops). Should be less than ~20ms since usleep_range
1036 * is used (see Documentation/timers/timers-howto.rst).
1037 * @timeout_us: Timeout in us, 0 means never timeout
1038 * @sleep_before_read: if it is true, sleep @sleep_us before read.
1039 * Returns 0 on success and -ETIMEDOUT upon a timeout. In either
1040 * case, the last read value at @args is stored in @val. Must not
1041 * be called from atomic context if sleep_us or timeout_us are used.
1042 */
1043#define phy_read_mmd_poll_timeout(phydev, devaddr, regnum, val, cond, \
1044 sleep_us, timeout_us, sleep_before_read) \
1045({ \
1046 int __ret = read_poll_timeout(phy_read_mmd, val, (cond) || val < 0, \
1047 sleep_us, timeout_us, sleep_before_read, \
1048 phydev, devaddr, regnum); \
1049 if (val < 0) \
1050 __ret = val; \
1051 if (__ret) \
1052 phydev_err(phydev, "%s failed: %d\n", __func__, __ret); \
1053 __ret; \
1054})
1055
1056/*
David Brazdil0f672f62019-12-10 10:32:29 +00001057 * __phy_read_mmd - Convenience function for reading a register
1058 * from an MMD on a given PHY.
David Brazdil0f672f62019-12-10 10:32:29 +00001059 */
1060int __phy_read_mmd(struct phy_device *phydev, int devad, u32 regnum);
1061
Olivier Deprez157378f2022-04-04 15:47:50 +02001062/*
David Brazdil0f672f62019-12-10 10:32:29 +00001063 * phy_write_mmd - Convenience function for writing a register
1064 * on an MMD on a given PHY.
David Brazdil0f672f62019-12-10 10:32:29 +00001065 */
1066int phy_write_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val);
1067
Olivier Deprez157378f2022-04-04 15:47:50 +02001068/*
David Brazdil0f672f62019-12-10 10:32:29 +00001069 * __phy_write_mmd - Convenience function for writing a register
1070 * on an MMD on a given PHY.
David Brazdil0f672f62019-12-10 10:32:29 +00001071 */
1072int __phy_write_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val);
1073
1074int __phy_modify_changed(struct phy_device *phydev, u32 regnum, u16 mask,
1075 u16 set);
1076int phy_modify_changed(struct phy_device *phydev, u32 regnum, u16 mask,
1077 u16 set);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001078int __phy_modify(struct phy_device *phydev, u32 regnum, u16 mask, u16 set);
1079int phy_modify(struct phy_device *phydev, u32 regnum, u16 mask, u16 set);
1080
David Brazdil0f672f62019-12-10 10:32:29 +00001081int __phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum,
1082 u16 mask, u16 set);
1083int phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum,
1084 u16 mask, u16 set);
1085int __phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum,
1086 u16 mask, u16 set);
1087int phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum,
1088 u16 mask, u16 set);
1089
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001090/**
1091 * __phy_set_bits - Convenience function for setting bits in a PHY register
1092 * @phydev: the phy_device struct
1093 * @regnum: register number to write
1094 * @val: bits to set
1095 *
1096 * The caller must have taken the MDIO bus lock.
1097 */
1098static inline int __phy_set_bits(struct phy_device *phydev, u32 regnum, u16 val)
1099{
1100 return __phy_modify(phydev, regnum, 0, val);
1101}
1102
1103/**
1104 * __phy_clear_bits - Convenience function for clearing bits in a PHY register
1105 * @phydev: the phy_device struct
1106 * @regnum: register number to write
1107 * @val: bits to clear
1108 *
1109 * The caller must have taken the MDIO bus lock.
1110 */
1111static inline int __phy_clear_bits(struct phy_device *phydev, u32 regnum,
1112 u16 val)
1113{
1114 return __phy_modify(phydev, regnum, val, 0);
1115}
1116
1117/**
1118 * phy_set_bits - Convenience function for setting bits in a PHY register
1119 * @phydev: the phy_device struct
1120 * @regnum: register number to write
1121 * @val: bits to set
1122 */
1123static inline int phy_set_bits(struct phy_device *phydev, u32 regnum, u16 val)
1124{
1125 return phy_modify(phydev, regnum, 0, val);
1126}
1127
1128/**
1129 * phy_clear_bits - Convenience function for clearing bits in a PHY register
1130 * @phydev: the phy_device struct
1131 * @regnum: register number to write
1132 * @val: bits to clear
1133 */
1134static inline int phy_clear_bits(struct phy_device *phydev, u32 regnum, u16 val)
1135{
1136 return phy_modify(phydev, regnum, val, 0);
1137}
1138
1139/**
David Brazdil0f672f62019-12-10 10:32:29 +00001140 * __phy_set_bits_mmd - Convenience function for setting bits in a register
1141 * on MMD
1142 * @phydev: the phy_device struct
1143 * @devad: the MMD containing register to modify
1144 * @regnum: register number to modify
1145 * @val: bits to set
1146 *
1147 * The caller must have taken the MDIO bus lock.
1148 */
1149static inline int __phy_set_bits_mmd(struct phy_device *phydev, int devad,
1150 u32 regnum, u16 val)
1151{
1152 return __phy_modify_mmd(phydev, devad, regnum, 0, val);
1153}
1154
1155/**
1156 * __phy_clear_bits_mmd - Convenience function for clearing bits in a register
1157 * on MMD
1158 * @phydev: the phy_device struct
1159 * @devad: the MMD containing register to modify
1160 * @regnum: register number to modify
1161 * @val: bits to clear
1162 *
1163 * The caller must have taken the MDIO bus lock.
1164 */
1165static inline int __phy_clear_bits_mmd(struct phy_device *phydev, int devad,
1166 u32 regnum, u16 val)
1167{
1168 return __phy_modify_mmd(phydev, devad, regnum, val, 0);
1169}
1170
1171/**
1172 * phy_set_bits_mmd - Convenience function for setting bits in a register
1173 * on MMD
1174 * @phydev: the phy_device struct
1175 * @devad: the MMD containing register to modify
1176 * @regnum: register number to modify
1177 * @val: bits to set
1178 */
1179static inline int phy_set_bits_mmd(struct phy_device *phydev, int devad,
1180 u32 regnum, u16 val)
1181{
1182 return phy_modify_mmd(phydev, devad, regnum, 0, val);
1183}
1184
1185/**
1186 * phy_clear_bits_mmd - Convenience function for clearing bits in a register
1187 * on MMD
1188 * @phydev: the phy_device struct
1189 * @devad: the MMD containing register to modify
1190 * @regnum: register number to modify
1191 * @val: bits to clear
1192 */
1193static inline int phy_clear_bits_mmd(struct phy_device *phydev, int devad,
1194 u32 regnum, u16 val)
1195{
1196 return phy_modify_mmd(phydev, devad, regnum, val, 0);
1197}
1198
1199/**
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001200 * phy_interrupt_is_valid - Convenience function for testing a given PHY irq
1201 * @phydev: the phy_device struct
1202 *
1203 * NOTE: must be kept in sync with addition/removal of PHY_POLL and
1204 * PHY_IGNORE_INTERRUPT
1205 */
1206static inline bool phy_interrupt_is_valid(struct phy_device *phydev)
1207{
1208 return phydev->irq != PHY_POLL && phydev->irq != PHY_IGNORE_INTERRUPT;
1209}
1210
1211/**
1212 * phy_polling_mode - Convenience function for testing whether polling is
1213 * used to detect PHY status changes
1214 * @phydev: the phy_device struct
1215 */
1216static inline bool phy_polling_mode(struct phy_device *phydev)
1217{
Olivier Deprez157378f2022-04-04 15:47:50 +02001218 if (phydev->state == PHY_CABLETEST)
1219 if (phydev->drv->flags & PHY_POLL_CABLE_TEST)
1220 return true;
1221
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001222 return phydev->irq == PHY_POLL;
1223}
1224
1225/**
Olivier Deprez157378f2022-04-04 15:47:50 +02001226 * phy_has_hwtstamp - Tests whether a PHY time stamp configuration.
1227 * @phydev: the phy_device struct
1228 */
1229static inline bool phy_has_hwtstamp(struct phy_device *phydev)
1230{
1231 return phydev && phydev->mii_ts && phydev->mii_ts->hwtstamp;
1232}
1233
1234/**
1235 * phy_has_rxtstamp - Tests whether a PHY supports receive time stamping.
1236 * @phydev: the phy_device struct
1237 */
1238static inline bool phy_has_rxtstamp(struct phy_device *phydev)
1239{
1240 return phydev && phydev->mii_ts && phydev->mii_ts->rxtstamp;
1241}
1242
1243/**
1244 * phy_has_tsinfo - Tests whether a PHY reports time stamping and/or
1245 * PTP hardware clock capabilities.
1246 * @phydev: the phy_device struct
1247 */
1248static inline bool phy_has_tsinfo(struct phy_device *phydev)
1249{
1250 return phydev && phydev->mii_ts && phydev->mii_ts->ts_info;
1251}
1252
1253/**
1254 * phy_has_txtstamp - Tests whether a PHY supports transmit time stamping.
1255 * @phydev: the phy_device struct
1256 */
1257static inline bool phy_has_txtstamp(struct phy_device *phydev)
1258{
1259 return phydev && phydev->mii_ts && phydev->mii_ts->txtstamp;
1260}
1261
1262static inline int phy_hwtstamp(struct phy_device *phydev, struct ifreq *ifr)
1263{
1264 return phydev->mii_ts->hwtstamp(phydev->mii_ts, ifr);
1265}
1266
1267static inline bool phy_rxtstamp(struct phy_device *phydev, struct sk_buff *skb,
1268 int type)
1269{
1270 return phydev->mii_ts->rxtstamp(phydev->mii_ts, skb, type);
1271}
1272
1273static inline int phy_ts_info(struct phy_device *phydev,
1274 struct ethtool_ts_info *tsinfo)
1275{
1276 return phydev->mii_ts->ts_info(phydev->mii_ts, tsinfo);
1277}
1278
1279static inline void phy_txtstamp(struct phy_device *phydev, struct sk_buff *skb,
1280 int type)
1281{
1282 phydev->mii_ts->txtstamp(phydev->mii_ts, skb, type);
1283}
1284
1285/**
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001286 * phy_is_internal - Convenience function for testing if a PHY is internal
1287 * @phydev: the phy_device struct
1288 */
1289static inline bool phy_is_internal(struct phy_device *phydev)
1290{
1291 return phydev->is_internal;
1292}
1293
1294/**
1295 * phy_interface_mode_is_rgmii - Convenience function for testing if a
1296 * PHY interface mode is RGMII (all variants)
Olivier Deprez157378f2022-04-04 15:47:50 +02001297 * @mode: the &phy_interface_t enum
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001298 */
1299static inline bool phy_interface_mode_is_rgmii(phy_interface_t mode)
1300{
1301 return mode >= PHY_INTERFACE_MODE_RGMII &&
1302 mode <= PHY_INTERFACE_MODE_RGMII_TXID;
1303};
1304
1305/**
Olivier Deprez157378f2022-04-04 15:47:50 +02001306 * phy_interface_mode_is_8023z() - does the PHY interface mode use 802.3z
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001307 * negotiation
1308 * @mode: one of &enum phy_interface_t
1309 *
Olivier Deprez157378f2022-04-04 15:47:50 +02001310 * Returns true if the PHY interface mode uses the 16-bit negotiation
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001311 * word as defined in 802.3z. (See 802.3-2015 37.2.1 Config_Reg encoding)
1312 */
1313static inline bool phy_interface_mode_is_8023z(phy_interface_t mode)
1314{
1315 return mode == PHY_INTERFACE_MODE_1000BASEX ||
1316 mode == PHY_INTERFACE_MODE_2500BASEX;
1317}
1318
1319/**
1320 * phy_interface_is_rgmii - Convenience function for testing if a PHY interface
1321 * is RGMII (all variants)
1322 * @phydev: the phy_device struct
1323 */
1324static inline bool phy_interface_is_rgmii(struct phy_device *phydev)
1325{
1326 return phy_interface_mode_is_rgmii(phydev->interface);
1327};
1328
Olivier Deprez157378f2022-04-04 15:47:50 +02001329/**
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001330 * phy_is_pseudo_fixed_link - Convenience function for testing if this
1331 * PHY is the CPU port facing side of an Ethernet switch, or similar.
1332 * @phydev: the phy_device struct
1333 */
1334static inline bool phy_is_pseudo_fixed_link(struct phy_device *phydev)
1335{
1336 return phydev->is_pseudo_fixed_link;
1337}
1338
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001339int phy_save_page(struct phy_device *phydev);
1340int phy_select_page(struct phy_device *phydev, int page);
1341int phy_restore_page(struct phy_device *phydev, int oldpage, int ret);
1342int phy_read_paged(struct phy_device *phydev, int page, u32 regnum);
1343int phy_write_paged(struct phy_device *phydev, int page, u32 regnum, u16 val);
David Brazdil0f672f62019-12-10 10:32:29 +00001344int phy_modify_paged_changed(struct phy_device *phydev, int page, u32 regnum,
1345 u16 mask, u16 set);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001346int phy_modify_paged(struct phy_device *phydev, int page, u32 regnum,
1347 u16 mask, u16 set);
1348
Olivier Deprez0e641232021-09-23 10:07:05 +02001349struct phy_device *phy_device_create(struct mii_bus *bus, int addr, u32 phy_id,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001350 bool is_c45,
1351 struct phy_c45_device_ids *c45_ids);
1352#if IS_ENABLED(CONFIG_PHYLIB)
1353struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45);
1354int phy_device_register(struct phy_device *phy);
1355void phy_device_free(struct phy_device *phydev);
1356#else
1357static inline
1358struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45)
1359{
1360 return NULL;
1361}
1362
1363static inline int phy_device_register(struct phy_device *phy)
1364{
1365 return 0;
1366}
1367
1368static inline void phy_device_free(struct phy_device *phydev) { }
1369#endif /* CONFIG_PHYLIB */
1370void phy_device_remove(struct phy_device *phydev);
1371int phy_init_hw(struct phy_device *phydev);
1372int phy_suspend(struct phy_device *phydev);
1373int phy_resume(struct phy_device *phydev);
1374int __phy_resume(struct phy_device *phydev);
1375int phy_loopback(struct phy_device *phydev, bool enable);
Olivier Deprez157378f2022-04-04 15:47:50 +02001376void phy_sfp_attach(void *upstream, struct sfp_bus *bus);
1377void phy_sfp_detach(void *upstream, struct sfp_bus *bus);
1378int phy_sfp_probe(struct phy_device *phydev,
1379 const struct sfp_upstream_ops *ops);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001380struct phy_device *phy_attach(struct net_device *dev, const char *bus_id,
1381 phy_interface_t interface);
1382struct phy_device *phy_find_first(struct mii_bus *bus);
1383int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
1384 u32 flags, phy_interface_t interface);
1385int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
1386 void (*handler)(struct net_device *),
1387 phy_interface_t interface);
1388struct phy_device *phy_connect(struct net_device *dev, const char *bus_id,
1389 void (*handler)(struct net_device *),
1390 phy_interface_t interface);
1391void phy_disconnect(struct phy_device *phydev);
1392void phy_detach(struct phy_device *phydev);
1393void phy_start(struct phy_device *phydev);
1394void phy_stop(struct phy_device *phydev);
1395int phy_start_aneg(struct phy_device *phydev);
1396int phy_aneg_done(struct phy_device *phydev);
1397int phy_speed_down(struct phy_device *phydev, bool sync);
1398int phy_speed_up(struct phy_device *phydev);
1399
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001400int phy_restart_aneg(struct phy_device *phydev);
1401int phy_reset_after_clk_enable(struct phy_device *phydev);
1402
Olivier Deprez157378f2022-04-04 15:47:50 +02001403#if IS_ENABLED(CONFIG_PHYLIB)
1404int phy_start_cable_test(struct phy_device *phydev,
1405 struct netlink_ext_ack *extack);
1406int phy_start_cable_test_tdr(struct phy_device *phydev,
1407 struct netlink_ext_ack *extack,
1408 const struct phy_tdr_config *config);
1409#else
1410static inline
1411int phy_start_cable_test(struct phy_device *phydev,
1412 struct netlink_ext_ack *extack)
1413{
1414 NL_SET_ERR_MSG(extack, "Kernel not compiled with PHYLIB support");
1415 return -EOPNOTSUPP;
1416}
1417static inline
1418int phy_start_cable_test_tdr(struct phy_device *phydev,
1419 struct netlink_ext_ack *extack,
1420 const struct phy_tdr_config *config)
1421{
1422 NL_SET_ERR_MSG(extack, "Kernel not compiled with PHYLIB support");
1423 return -EOPNOTSUPP;
1424}
1425#endif
1426
1427int phy_cable_test_result(struct phy_device *phydev, u8 pair, u16 result);
1428int phy_cable_test_fault_length(struct phy_device *phydev, u8 pair,
1429 u16 cm);
1430
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001431static inline void phy_device_reset(struct phy_device *phydev, int value)
1432{
1433 mdio_device_reset(&phydev->mdio, value);
1434}
1435
1436#define phydev_err(_phydev, format, args...) \
1437 dev_err(&_phydev->mdio.dev, format, ##args)
1438
David Brazdil0f672f62019-12-10 10:32:29 +00001439#define phydev_info(_phydev, format, args...) \
1440 dev_info(&_phydev->mdio.dev, format, ##args)
1441
1442#define phydev_warn(_phydev, format, args...) \
1443 dev_warn(&_phydev->mdio.dev, format, ##args)
1444
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001445#define phydev_dbg(_phydev, format, args...) \
1446 dev_dbg(&_phydev->mdio.dev, format, ##args)
1447
1448static inline const char *phydev_name(const struct phy_device *phydev)
1449{
1450 return dev_name(&phydev->mdio.dev);
1451}
1452
Olivier Deprez157378f2022-04-04 15:47:50 +02001453static inline void phy_lock_mdio_bus(struct phy_device *phydev)
1454{
1455 mutex_lock(&phydev->mdio.bus->mdio_lock);
1456}
1457
1458static inline void phy_unlock_mdio_bus(struct phy_device *phydev)
1459{
1460 mutex_unlock(&phydev->mdio.bus->mdio_lock);
1461}
1462
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001463void phy_attached_print(struct phy_device *phydev, const char *fmt, ...)
1464 __printf(2, 3);
Olivier Deprez157378f2022-04-04 15:47:50 +02001465char *phy_attached_info_irq(struct phy_device *phydev)
1466 __malloc;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001467void phy_attached_info(struct phy_device *phydev);
1468
1469/* Clause 22 PHY */
David Brazdil0f672f62019-12-10 10:32:29 +00001470int genphy_read_abilities(struct phy_device *phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001471int genphy_setup_forced(struct phy_device *phydev);
1472int genphy_restart_aneg(struct phy_device *phydev);
Olivier Deprez157378f2022-04-04 15:47:50 +02001473int genphy_check_and_restart_aneg(struct phy_device *phydev, bool restart);
David Brazdil0f672f62019-12-10 10:32:29 +00001474int genphy_config_eee_advert(struct phy_device *phydev);
1475int __genphy_config_aneg(struct phy_device *phydev, bool changed);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001476int genphy_aneg_done(struct phy_device *phydev);
1477int genphy_update_link(struct phy_device *phydev);
David Brazdil0f672f62019-12-10 10:32:29 +00001478int genphy_read_lpa(struct phy_device *phydev);
Olivier Deprez157378f2022-04-04 15:47:50 +02001479int genphy_read_status_fixed(struct phy_device *phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001480int genphy_read_status(struct phy_device *phydev);
1481int genphy_suspend(struct phy_device *phydev);
1482int genphy_resume(struct phy_device *phydev);
1483int genphy_loopback(struct phy_device *phydev, bool enable);
1484int genphy_soft_reset(struct phy_device *phydev);
David Brazdil0f672f62019-12-10 10:32:29 +00001485
1486static inline int genphy_config_aneg(struct phy_device *phydev)
1487{
1488 return __genphy_config_aneg(phydev, false);
1489}
1490
David Brazdil0f672f62019-12-10 10:32:29 +00001491static inline int genphy_no_ack_interrupt(struct phy_device *phydev)
1492{
1493 return 0;
1494}
1495static inline int genphy_no_config_intr(struct phy_device *phydev)
1496{
1497 return 0;
1498}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001499int genphy_read_mmd_unsupported(struct phy_device *phdev, int devad,
1500 u16 regnum);
1501int genphy_write_mmd_unsupported(struct phy_device *phdev, int devnum,
1502 u16 regnum, u16 val);
1503
Olivier Deprez157378f2022-04-04 15:47:50 +02001504/* Clause 37 */
1505int genphy_c37_config_aneg(struct phy_device *phydev);
1506int genphy_c37_read_status(struct phy_device *phydev);
1507
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001508/* Clause 45 PHY */
1509int genphy_c45_restart_aneg(struct phy_device *phydev);
David Brazdil0f672f62019-12-10 10:32:29 +00001510int genphy_c45_check_and_restart_aneg(struct phy_device *phydev, bool restart);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001511int genphy_c45_aneg_done(struct phy_device *phydev);
David Brazdil0f672f62019-12-10 10:32:29 +00001512int genphy_c45_read_link(struct phy_device *phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001513int genphy_c45_read_lpa(struct phy_device *phydev);
1514int genphy_c45_read_pma(struct phy_device *phydev);
1515int genphy_c45_pma_setup_forced(struct phy_device *phydev);
David Brazdil0f672f62019-12-10 10:32:29 +00001516int genphy_c45_an_config_aneg(struct phy_device *phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001517int genphy_c45_an_disable_aneg(struct phy_device *phydev);
1518int genphy_c45_read_mdix(struct phy_device *phydev);
David Brazdil0f672f62019-12-10 10:32:29 +00001519int genphy_c45_pma_read_abilities(struct phy_device *phydev);
1520int genphy_c45_read_status(struct phy_device *phydev);
1521int genphy_c45_config_aneg(struct phy_device *phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001522
Olivier Deprez157378f2022-04-04 15:47:50 +02001523/* Generic C45 PHY driver */
1524extern struct phy_driver genphy_c45_driver;
1525
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001526/* The gen10g_* functions are the old Clause 45 stub */
1527int gen10g_config_aneg(struct phy_device *phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001528
1529static inline int phy_read_status(struct phy_device *phydev)
1530{
1531 if (!phydev->drv)
1532 return -EIO;
1533
1534 if (phydev->drv->read_status)
1535 return phydev->drv->read_status(phydev);
1536 else
1537 return genphy_read_status(phydev);
1538}
1539
1540void phy_driver_unregister(struct phy_driver *drv);
1541void phy_drivers_unregister(struct phy_driver *drv, int n);
1542int phy_driver_register(struct phy_driver *new_driver, struct module *owner);
1543int phy_drivers_register(struct phy_driver *new_driver, int n,
1544 struct module *owner);
1545void phy_state_machine(struct work_struct *work);
David Brazdil0f672f62019-12-10 10:32:29 +00001546void phy_queue_state_machine(struct phy_device *phydev, unsigned long jiffies);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001547void phy_mac_interrupt(struct phy_device *phydev);
1548void phy_start_machine(struct phy_device *phydev);
1549void phy_stop_machine(struct phy_device *phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001550void phy_ethtool_ksettings_get(struct phy_device *phydev,
1551 struct ethtool_link_ksettings *cmd);
1552int phy_ethtool_ksettings_set(struct phy_device *phydev,
1553 const struct ethtool_link_ksettings *cmd);
1554int phy_mii_ioctl(struct phy_device *phydev, struct ifreq *ifr, int cmd);
Olivier Deprez157378f2022-04-04 15:47:50 +02001555int phy_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
1556int phy_do_ioctl_running(struct net_device *dev, struct ifreq *ifr, int cmd);
1557int phy_disable_interrupts(struct phy_device *phydev);
David Brazdil0f672f62019-12-10 10:32:29 +00001558void phy_request_interrupt(struct phy_device *phydev);
1559void phy_free_interrupt(struct phy_device *phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001560void phy_print_status(struct phy_device *phydev);
1561int phy_set_max_speed(struct phy_device *phydev, u32 max_speed);
David Brazdil0f672f62019-12-10 10:32:29 +00001562void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode);
1563void phy_advertise_supported(struct phy_device *phydev);
1564void phy_support_sym_pause(struct phy_device *phydev);
1565void phy_support_asym_pause(struct phy_device *phydev);
1566void phy_set_sym_pause(struct phy_device *phydev, bool rx, bool tx,
1567 bool autoneg);
1568void phy_set_asym_pause(struct phy_device *phydev, bool rx, bool tx);
1569bool phy_validate_pause(struct phy_device *phydev,
1570 struct ethtool_pauseparam *pp);
Olivier Deprez157378f2022-04-04 15:47:50 +02001571void phy_get_pause(struct phy_device *phydev, bool *tx_pause, bool *rx_pause);
1572
1573s32 phy_get_internal_delay(struct phy_device *phydev, struct device *dev,
1574 const int *delay_values, int size, bool is_rx);
1575
1576void phy_resolve_pause(unsigned long *local_adv, unsigned long *partner_adv,
1577 bool *tx_pause, bool *rx_pause);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001578
1579int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
1580 int (*run)(struct phy_device *));
1581int phy_register_fixup_for_id(const char *bus_id,
1582 int (*run)(struct phy_device *));
1583int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
1584 int (*run)(struct phy_device *));
1585
1586int phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask);
1587int phy_unregister_fixup_for_id(const char *bus_id);
1588int phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask);
1589
1590int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable);
1591int phy_get_eee_err(struct phy_device *phydev);
1592int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data);
1593int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data);
1594int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol);
1595void phy_ethtool_get_wol(struct phy_device *phydev,
1596 struct ethtool_wolinfo *wol);
1597int phy_ethtool_get_link_ksettings(struct net_device *ndev,
1598 struct ethtool_link_ksettings *cmd);
1599int phy_ethtool_set_link_ksettings(struct net_device *ndev,
1600 const struct ethtool_link_ksettings *cmd);
1601int phy_ethtool_nway_reset(struct net_device *ndev);
Olivier Deprez157378f2022-04-04 15:47:50 +02001602int phy_package_join(struct phy_device *phydev, int addr, size_t priv_size);
1603void phy_package_leave(struct phy_device *phydev);
1604int devm_phy_package_join(struct device *dev, struct phy_device *phydev,
1605 int addr, size_t priv_size);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001606
1607#if IS_ENABLED(CONFIG_PHYLIB)
1608int __init mdio_bus_init(void);
1609void mdio_bus_exit(void);
1610#endif
1611
Olivier Deprez157378f2022-04-04 15:47:50 +02001612int phy_ethtool_get_strings(struct phy_device *phydev, u8 *data);
1613int phy_ethtool_get_sset_count(struct phy_device *phydev);
1614int phy_ethtool_get_stats(struct phy_device *phydev,
1615 struct ethtool_stats *stats, u64 *data);
1616
1617static inline int phy_package_read(struct phy_device *phydev, u32 regnum)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001618{
Olivier Deprez157378f2022-04-04 15:47:50 +02001619 struct phy_package_shared *shared = phydev->shared;
1620
1621 if (!shared)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001622 return -EIO;
1623
Olivier Deprez157378f2022-04-04 15:47:50 +02001624 return mdiobus_read(phydev->mdio.bus, shared->addr, regnum);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001625}
1626
Olivier Deprez157378f2022-04-04 15:47:50 +02001627static inline int __phy_package_read(struct phy_device *phydev, u32 regnum)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001628{
Olivier Deprez157378f2022-04-04 15:47:50 +02001629 struct phy_package_shared *shared = phydev->shared;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001630
Olivier Deprez157378f2022-04-04 15:47:50 +02001631 if (!shared)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001632 return -EIO;
1633
Olivier Deprez157378f2022-04-04 15:47:50 +02001634 return __mdiobus_read(phydev->mdio.bus, shared->addr, regnum);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001635}
1636
Olivier Deprez157378f2022-04-04 15:47:50 +02001637static inline int phy_package_write(struct phy_device *phydev,
1638 u32 regnum, u16 val)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001639{
Olivier Deprez157378f2022-04-04 15:47:50 +02001640 struct phy_package_shared *shared = phydev->shared;
1641
1642 if (!shared)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001643 return -EIO;
1644
Olivier Deprez157378f2022-04-04 15:47:50 +02001645 return mdiobus_write(phydev->mdio.bus, shared->addr, regnum, val);
1646}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001647
Olivier Deprez157378f2022-04-04 15:47:50 +02001648static inline int __phy_package_write(struct phy_device *phydev,
1649 u32 regnum, u16 val)
1650{
1651 struct phy_package_shared *shared = phydev->shared;
1652
1653 if (!shared)
1654 return -EIO;
1655
1656 return __mdiobus_write(phydev->mdio.bus, shared->addr, regnum, val);
1657}
1658
1659static inline bool __phy_package_set_once(struct phy_device *phydev,
1660 unsigned int b)
1661{
1662 struct phy_package_shared *shared = phydev->shared;
1663
1664 if (!shared)
1665 return false;
1666
1667 return !test_and_set_bit(b, &shared->flags);
1668}
1669
1670static inline bool phy_package_init_once(struct phy_device *phydev)
1671{
1672 return __phy_package_set_once(phydev, PHY_SHARED_F_INIT_DONE);
1673}
1674
1675static inline bool phy_package_probe_once(struct phy_device *phydev)
1676{
1677 return __phy_package_set_once(phydev, PHY_SHARED_F_PROBE_DONE);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001678}
1679
1680extern struct bus_type mdio_bus_type;
1681
1682struct mdio_board_info {
1683 const char *bus_id;
1684 char modalias[MDIO_NAME_SIZE];
1685 int mdio_addr;
1686 const void *platform_data;
1687};
1688
1689#if IS_ENABLED(CONFIG_MDIO_DEVICE)
1690int mdiobus_register_board_info(const struct mdio_board_info *info,
1691 unsigned int n);
1692#else
1693static inline int mdiobus_register_board_info(const struct mdio_board_info *i,
1694 unsigned int n)
1695{
1696 return 0;
1697}
1698#endif
1699
1700
1701/**
Olivier Deprez157378f2022-04-04 15:47:50 +02001702 * phy_module_driver() - Helper macro for registering PHY drivers
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001703 * @__phy_drivers: array of PHY drivers to register
Olivier Deprez157378f2022-04-04 15:47:50 +02001704 * @__count: Numbers of members in array
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001705 *
1706 * Helper macro for PHY drivers which do not do anything special in module
1707 * init/exit. Each module may only use this macro once, and calling it
1708 * replaces module_init() and module_exit().
1709 */
1710#define phy_module_driver(__phy_drivers, __count) \
1711static int __init phy_module_init(void) \
1712{ \
1713 return phy_drivers_register(__phy_drivers, __count, THIS_MODULE); \
1714} \
1715module_init(phy_module_init); \
1716static void __exit phy_module_exit(void) \
1717{ \
1718 phy_drivers_unregister(__phy_drivers, __count); \
1719} \
1720module_exit(phy_module_exit)
1721
1722#define module_phy_driver(__phy_drivers) \
1723 phy_module_driver(__phy_drivers, ARRAY_SIZE(__phy_drivers))
1724
David Brazdil0f672f62019-12-10 10:32:29 +00001725bool phy_driver_is_genphy(struct phy_device *phydev);
1726bool phy_driver_is_genphy_10g(struct phy_device *phydev);
1727
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001728#endif /* __PHY_H */