at v6.7 72 kB view raw
1/* SPDX-License-Identifier: GPL-2.0-or-later */ 2/* 3 * Framework and drivers for configuring and reading different PHYs 4 * Based on code in sungem_phy.c and (long-removed) gianfar_phy.c 5 * 6 * Author: Andy Fleming 7 * 8 * Copyright (c) 2004 Freescale Semiconductor, Inc. 9 */ 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> 17#include <linux/leds.h> 18#include <linux/linkmode.h> 19#include <linux/netlink.h> 20#include <linux/mdio.h> 21#include <linux/mii.h> 22#include <linux/mii_timestamper.h> 23#include <linux/module.h> 24#include <linux/timer.h> 25#include <linux/workqueue.h> 26#include <linux/mod_devicetable.h> 27#include <linux/u64_stats_sync.h> 28#include <linux/irqreturn.h> 29#include <linux/iopoll.h> 30#include <linux/refcount.h> 31 32#include <linux/atomic.h> 33 34#define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \ 35 SUPPORTED_TP | \ 36 SUPPORTED_MII) 37 38#define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \ 39 SUPPORTED_10baseT_Full) 40 41#define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \ 42 SUPPORTED_100baseT_Full) 43 44#define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \ 45 SUPPORTED_1000baseT_Full) 46 47extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_features) __ro_after_init; 48extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_t1_features) __ro_after_init; 49extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_t1s_p2mp_features) __ro_after_init; 50extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_features) __ro_after_init; 51extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_fibre_features) __ro_after_init; 52extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_all_ports_features) __ro_after_init; 53extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_features) __ro_after_init; 54extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_fec_features) __ro_after_init; 55extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_full_features) __ro_after_init; 56extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_eee_cap1_features) __ro_after_init; 57 58#define PHY_BASIC_FEATURES ((unsigned long *)&phy_basic_features) 59#define PHY_BASIC_T1_FEATURES ((unsigned long *)&phy_basic_t1_features) 60#define PHY_BASIC_T1S_P2MP_FEATURES ((unsigned long *)&phy_basic_t1s_p2mp_features) 61#define PHY_GBIT_FEATURES ((unsigned long *)&phy_gbit_features) 62#define PHY_GBIT_FIBRE_FEATURES ((unsigned long *)&phy_gbit_fibre_features) 63#define PHY_GBIT_ALL_PORTS_FEATURES ((unsigned long *)&phy_gbit_all_ports_features) 64#define PHY_10GBIT_FEATURES ((unsigned long *)&phy_10gbit_features) 65#define PHY_10GBIT_FEC_FEATURES ((unsigned long *)&phy_10gbit_fec_features) 66#define PHY_10GBIT_FULL_FEATURES ((unsigned long *)&phy_10gbit_full_features) 67#define PHY_EEE_CAP1_FEATURES ((unsigned long *)&phy_eee_cap1_features) 68 69extern const int phy_basic_ports_array[3]; 70extern const int phy_fibre_port_array[1]; 71extern const int phy_all_ports_features_array[7]; 72extern const int phy_10_100_features_array[4]; 73extern const int phy_basic_t1_features_array[3]; 74extern const int phy_basic_t1s_p2mp_features_array[2]; 75extern const int phy_gbit_features_array[2]; 76extern const int phy_10gbit_features_array[1]; 77 78/* 79 * Set phydev->irq to PHY_POLL if interrupts are not supported, 80 * or not desired for this PHY. Set to PHY_MAC_INTERRUPT if 81 * the attached MAC driver handles the interrupt 82 */ 83#define PHY_POLL -1 84#define PHY_MAC_INTERRUPT -2 85 86#define PHY_IS_INTERNAL 0x00000001 87#define PHY_RST_AFTER_CLK_EN 0x00000002 88#define PHY_POLL_CABLE_TEST 0x00000004 89#define PHY_ALWAYS_CALL_SUSPEND 0x00000008 90#define MDIO_DEVICE_IS_PHY 0x80000000 91 92/** 93 * enum phy_interface_t - Interface Mode definitions 94 * 95 * @PHY_INTERFACE_MODE_NA: Not Applicable - don't touch 96 * @PHY_INTERFACE_MODE_INTERNAL: No interface, MAC and PHY combined 97 * @PHY_INTERFACE_MODE_MII: Media-independent interface 98 * @PHY_INTERFACE_MODE_GMII: Gigabit media-independent interface 99 * @PHY_INTERFACE_MODE_SGMII: Serial gigabit media-independent interface 100 * @PHY_INTERFACE_MODE_TBI: Ten Bit Interface 101 * @PHY_INTERFACE_MODE_REVMII: Reverse Media Independent Interface 102 * @PHY_INTERFACE_MODE_RMII: Reduced Media Independent Interface 103 * @PHY_INTERFACE_MODE_REVRMII: Reduced Media Independent Interface in PHY role 104 * @PHY_INTERFACE_MODE_RGMII: Reduced gigabit media-independent interface 105 * @PHY_INTERFACE_MODE_RGMII_ID: RGMII with Internal RX+TX delay 106 * @PHY_INTERFACE_MODE_RGMII_RXID: RGMII with Internal RX delay 107 * @PHY_INTERFACE_MODE_RGMII_TXID: RGMII with Internal RX delay 108 * @PHY_INTERFACE_MODE_RTBI: Reduced TBI 109 * @PHY_INTERFACE_MODE_SMII: Serial MII 110 * @PHY_INTERFACE_MODE_XGMII: 10 gigabit media-independent interface 111 * @PHY_INTERFACE_MODE_XLGMII:40 gigabit media-independent interface 112 * @PHY_INTERFACE_MODE_MOCA: Multimedia over Coax 113 * @PHY_INTERFACE_MODE_PSGMII: Penta SGMII 114 * @PHY_INTERFACE_MODE_QSGMII: Quad SGMII 115 * @PHY_INTERFACE_MODE_TRGMII: Turbo RGMII 116 * @PHY_INTERFACE_MODE_100BASEX: 100 BaseX 117 * @PHY_INTERFACE_MODE_1000BASEX: 1000 BaseX 118 * @PHY_INTERFACE_MODE_2500BASEX: 2500 BaseX 119 * @PHY_INTERFACE_MODE_5GBASER: 5G BaseR 120 * @PHY_INTERFACE_MODE_RXAUI: Reduced XAUI 121 * @PHY_INTERFACE_MODE_XAUI: 10 Gigabit Attachment Unit Interface 122 * @PHY_INTERFACE_MODE_10GBASER: 10G BaseR 123 * @PHY_INTERFACE_MODE_25GBASER: 25G BaseR 124 * @PHY_INTERFACE_MODE_USXGMII: Universal Serial 10GE MII 125 * @PHY_INTERFACE_MODE_10GKR: 10GBASE-KR - with Clause 73 AN 126 * @PHY_INTERFACE_MODE_QUSGMII: Quad Universal SGMII 127 * @PHY_INTERFACE_MODE_1000BASEKX: 1000Base-KX - with Clause 73 AN 128 * @PHY_INTERFACE_MODE_MAX: Book keeping 129 * 130 * Describes the interface between the MAC and PHY. 131 */ 132typedef enum { 133 PHY_INTERFACE_MODE_NA, 134 PHY_INTERFACE_MODE_INTERNAL, 135 PHY_INTERFACE_MODE_MII, 136 PHY_INTERFACE_MODE_GMII, 137 PHY_INTERFACE_MODE_SGMII, 138 PHY_INTERFACE_MODE_TBI, 139 PHY_INTERFACE_MODE_REVMII, 140 PHY_INTERFACE_MODE_RMII, 141 PHY_INTERFACE_MODE_REVRMII, 142 PHY_INTERFACE_MODE_RGMII, 143 PHY_INTERFACE_MODE_RGMII_ID, 144 PHY_INTERFACE_MODE_RGMII_RXID, 145 PHY_INTERFACE_MODE_RGMII_TXID, 146 PHY_INTERFACE_MODE_RTBI, 147 PHY_INTERFACE_MODE_SMII, 148 PHY_INTERFACE_MODE_XGMII, 149 PHY_INTERFACE_MODE_XLGMII, 150 PHY_INTERFACE_MODE_MOCA, 151 PHY_INTERFACE_MODE_PSGMII, 152 PHY_INTERFACE_MODE_QSGMII, 153 PHY_INTERFACE_MODE_TRGMII, 154 PHY_INTERFACE_MODE_100BASEX, 155 PHY_INTERFACE_MODE_1000BASEX, 156 PHY_INTERFACE_MODE_2500BASEX, 157 PHY_INTERFACE_MODE_5GBASER, 158 PHY_INTERFACE_MODE_RXAUI, 159 PHY_INTERFACE_MODE_XAUI, 160 /* 10GBASE-R, XFI, SFI - single lane 10G Serdes */ 161 PHY_INTERFACE_MODE_10GBASER, 162 PHY_INTERFACE_MODE_25GBASER, 163 PHY_INTERFACE_MODE_USXGMII, 164 /* 10GBASE-KR - with Clause 73 AN */ 165 PHY_INTERFACE_MODE_10GKR, 166 PHY_INTERFACE_MODE_QUSGMII, 167 PHY_INTERFACE_MODE_1000BASEKX, 168 PHY_INTERFACE_MODE_MAX, 169} phy_interface_t; 170 171/* PHY interface mode bitmap handling */ 172#define DECLARE_PHY_INTERFACE_MASK(name) \ 173 DECLARE_BITMAP(name, PHY_INTERFACE_MODE_MAX) 174 175static inline void phy_interface_zero(unsigned long *intf) 176{ 177 bitmap_zero(intf, PHY_INTERFACE_MODE_MAX); 178} 179 180static inline bool phy_interface_empty(const unsigned long *intf) 181{ 182 return bitmap_empty(intf, PHY_INTERFACE_MODE_MAX); 183} 184 185static inline void phy_interface_and(unsigned long *dst, const unsigned long *a, 186 const unsigned long *b) 187{ 188 bitmap_and(dst, a, b, PHY_INTERFACE_MODE_MAX); 189} 190 191static inline void phy_interface_or(unsigned long *dst, const unsigned long *a, 192 const unsigned long *b) 193{ 194 bitmap_or(dst, a, b, PHY_INTERFACE_MODE_MAX); 195} 196 197static inline void phy_interface_set_rgmii(unsigned long *intf) 198{ 199 __set_bit(PHY_INTERFACE_MODE_RGMII, intf); 200 __set_bit(PHY_INTERFACE_MODE_RGMII_ID, intf); 201 __set_bit(PHY_INTERFACE_MODE_RGMII_RXID, intf); 202 __set_bit(PHY_INTERFACE_MODE_RGMII_TXID, intf); 203} 204 205/* 206 * phy_supported_speeds - return all speeds currently supported by a PHY device 207 */ 208unsigned int phy_supported_speeds(struct phy_device *phy, 209 unsigned int *speeds, 210 unsigned int size); 211 212/** 213 * phy_modes - map phy_interface_t enum to device tree binding of phy-mode 214 * @interface: enum phy_interface_t value 215 * 216 * Description: maps enum &phy_interface_t defined in this file 217 * into the device tree binding of 'phy-mode', so that Ethernet 218 * device driver can get PHY interface from device tree. 219 */ 220static inline const char *phy_modes(phy_interface_t interface) 221{ 222 switch (interface) { 223 case PHY_INTERFACE_MODE_NA: 224 return ""; 225 case PHY_INTERFACE_MODE_INTERNAL: 226 return "internal"; 227 case PHY_INTERFACE_MODE_MII: 228 return "mii"; 229 case PHY_INTERFACE_MODE_GMII: 230 return "gmii"; 231 case PHY_INTERFACE_MODE_SGMII: 232 return "sgmii"; 233 case PHY_INTERFACE_MODE_TBI: 234 return "tbi"; 235 case PHY_INTERFACE_MODE_REVMII: 236 return "rev-mii"; 237 case PHY_INTERFACE_MODE_RMII: 238 return "rmii"; 239 case PHY_INTERFACE_MODE_REVRMII: 240 return "rev-rmii"; 241 case PHY_INTERFACE_MODE_RGMII: 242 return "rgmii"; 243 case PHY_INTERFACE_MODE_RGMII_ID: 244 return "rgmii-id"; 245 case PHY_INTERFACE_MODE_RGMII_RXID: 246 return "rgmii-rxid"; 247 case PHY_INTERFACE_MODE_RGMII_TXID: 248 return "rgmii-txid"; 249 case PHY_INTERFACE_MODE_RTBI: 250 return "rtbi"; 251 case PHY_INTERFACE_MODE_SMII: 252 return "smii"; 253 case PHY_INTERFACE_MODE_XGMII: 254 return "xgmii"; 255 case PHY_INTERFACE_MODE_XLGMII: 256 return "xlgmii"; 257 case PHY_INTERFACE_MODE_MOCA: 258 return "moca"; 259 case PHY_INTERFACE_MODE_PSGMII: 260 return "psgmii"; 261 case PHY_INTERFACE_MODE_QSGMII: 262 return "qsgmii"; 263 case PHY_INTERFACE_MODE_TRGMII: 264 return "trgmii"; 265 case PHY_INTERFACE_MODE_1000BASEX: 266 return "1000base-x"; 267 case PHY_INTERFACE_MODE_1000BASEKX: 268 return "1000base-kx"; 269 case PHY_INTERFACE_MODE_2500BASEX: 270 return "2500base-x"; 271 case PHY_INTERFACE_MODE_5GBASER: 272 return "5gbase-r"; 273 case PHY_INTERFACE_MODE_RXAUI: 274 return "rxaui"; 275 case PHY_INTERFACE_MODE_XAUI: 276 return "xaui"; 277 case PHY_INTERFACE_MODE_10GBASER: 278 return "10gbase-r"; 279 case PHY_INTERFACE_MODE_25GBASER: 280 return "25gbase-r"; 281 case PHY_INTERFACE_MODE_USXGMII: 282 return "usxgmii"; 283 case PHY_INTERFACE_MODE_10GKR: 284 return "10gbase-kr"; 285 case PHY_INTERFACE_MODE_100BASEX: 286 return "100base-x"; 287 case PHY_INTERFACE_MODE_QUSGMII: 288 return "qusgmii"; 289 default: 290 return "unknown"; 291 } 292} 293 294#define PHY_INIT_TIMEOUT 100000 295#define PHY_FORCE_TIMEOUT 10 296 297#define PHY_MAX_ADDR 32 298 299/* Used when trying to connect to a specific phy (mii bus id:phy device id) */ 300#define PHY_ID_FMT "%s:%02x" 301 302#define MII_BUS_ID_SIZE 61 303 304struct device; 305struct kernel_hwtstamp_config; 306struct phylink; 307struct sfp_bus; 308struct sfp_upstream_ops; 309struct sk_buff; 310 311/** 312 * struct mdio_bus_stats - Statistics counters for MDIO busses 313 * @transfers: Total number of transfers, i.e. @writes + @reads 314 * @errors: Number of MDIO transfers that returned an error 315 * @writes: Number of write transfers 316 * @reads: Number of read transfers 317 * @syncp: Synchronisation for incrementing statistics 318 */ 319struct mdio_bus_stats { 320 u64_stats_t transfers; 321 u64_stats_t errors; 322 u64_stats_t writes; 323 u64_stats_t reads; 324 /* Must be last, add new statistics above */ 325 struct u64_stats_sync syncp; 326}; 327 328/** 329 * struct phy_package_shared - Shared information in PHY packages 330 * @addr: Common PHY address used to combine PHYs in one package 331 * @refcnt: Number of PHYs connected to this shared data 332 * @flags: Initialization of PHY package 333 * @priv_size: Size of the shared private data @priv 334 * @priv: Driver private data shared across a PHY package 335 * 336 * Represents a shared structure between different phydev's in the same 337 * package, for example a quad PHY. See phy_package_join() and 338 * phy_package_leave(). 339 */ 340struct phy_package_shared { 341 int addr; 342 refcount_t refcnt; 343 unsigned long flags; 344 size_t priv_size; 345 346 /* private data pointer */ 347 /* note that this pointer is shared between different phydevs and 348 * the user has to take care of appropriate locking. It is allocated 349 * and freed automatically by phy_package_join() and 350 * phy_package_leave(). 351 */ 352 void *priv; 353}; 354 355/* used as bit number in atomic bitops */ 356#define PHY_SHARED_F_INIT_DONE 0 357#define PHY_SHARED_F_PROBE_DONE 1 358 359/** 360 * struct mii_bus - Represents an MDIO bus 361 * 362 * @owner: Who owns this device 363 * @name: User friendly name for this MDIO device, or driver name 364 * @id: Unique identifier for this bus, typical from bus hierarchy 365 * @priv: Driver private data 366 * 367 * The Bus class for PHYs. Devices which provide access to 368 * PHYs should register using this structure 369 */ 370struct mii_bus { 371 struct module *owner; 372 const char *name; 373 char id[MII_BUS_ID_SIZE]; 374 void *priv; 375 /** @read: Perform a read transfer on the bus */ 376 int (*read)(struct mii_bus *bus, int addr, int regnum); 377 /** @write: Perform a write transfer on the bus */ 378 int (*write)(struct mii_bus *bus, int addr, int regnum, u16 val); 379 /** @read_c45: Perform a C45 read transfer on the bus */ 380 int (*read_c45)(struct mii_bus *bus, int addr, int devnum, int regnum); 381 /** @write_c45: Perform a C45 write transfer on the bus */ 382 int (*write_c45)(struct mii_bus *bus, int addr, int devnum, 383 int regnum, u16 val); 384 /** @reset: Perform a reset of the bus */ 385 int (*reset)(struct mii_bus *bus); 386 387 /** @stats: Statistic counters per device on the bus */ 388 struct mdio_bus_stats stats[PHY_MAX_ADDR]; 389 390 /** 391 * @mdio_lock: A lock to ensure that only one thing can read/write 392 * the MDIO bus at a time 393 */ 394 struct mutex mdio_lock; 395 396 /** @parent: Parent device of this bus */ 397 struct device *parent; 398 /** @state: State of bus structure */ 399 enum { 400 MDIOBUS_ALLOCATED = 1, 401 MDIOBUS_REGISTERED, 402 MDIOBUS_UNREGISTERED, 403 MDIOBUS_RELEASED, 404 } state; 405 406 /** @dev: Kernel device representation */ 407 struct device dev; 408 409 /** @mdio_map: list of all MDIO devices on bus */ 410 struct mdio_device *mdio_map[PHY_MAX_ADDR]; 411 412 /** @phy_mask: PHY addresses to be ignored when probing */ 413 u32 phy_mask; 414 415 /** @phy_ignore_ta_mask: PHY addresses to ignore the TA/read failure */ 416 u32 phy_ignore_ta_mask; 417 418 /** 419 * @irq: An array of interrupts, each PHY's interrupt at the index 420 * matching its address 421 */ 422 int irq[PHY_MAX_ADDR]; 423 424 /** @reset_delay_us: GPIO reset pulse width in microseconds */ 425 int reset_delay_us; 426 /** @reset_post_delay_us: GPIO reset deassert delay in microseconds */ 427 int reset_post_delay_us; 428 /** @reset_gpiod: Reset GPIO descriptor pointer */ 429 struct gpio_desc *reset_gpiod; 430 431 /** @shared_lock: protect access to the shared element */ 432 struct mutex shared_lock; 433 434 /** @shared: shared state across different PHYs */ 435 struct phy_package_shared *shared[PHY_MAX_ADDR]; 436}; 437#define to_mii_bus(d) container_of(d, struct mii_bus, dev) 438 439struct mii_bus *mdiobus_alloc_size(size_t size); 440 441/** 442 * mdiobus_alloc - Allocate an MDIO bus structure 443 * 444 * The internal state of the MDIO bus will be set of MDIOBUS_ALLOCATED ready 445 * for the driver to register the bus. 446 */ 447static inline struct mii_bus *mdiobus_alloc(void) 448{ 449 return mdiobus_alloc_size(0); 450} 451 452int __mdiobus_register(struct mii_bus *bus, struct module *owner); 453int __devm_mdiobus_register(struct device *dev, struct mii_bus *bus, 454 struct module *owner); 455#define mdiobus_register(bus) __mdiobus_register(bus, THIS_MODULE) 456#define devm_mdiobus_register(dev, bus) \ 457 __devm_mdiobus_register(dev, bus, THIS_MODULE) 458 459void mdiobus_unregister(struct mii_bus *bus); 460void mdiobus_free(struct mii_bus *bus); 461struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv); 462static inline struct mii_bus *devm_mdiobus_alloc(struct device *dev) 463{ 464 return devm_mdiobus_alloc_size(dev, 0); 465} 466 467struct mii_bus *mdio_find_bus(const char *mdio_name); 468struct phy_device *mdiobus_scan_c22(struct mii_bus *bus, int addr); 469 470#define PHY_INTERRUPT_DISABLED false 471#define PHY_INTERRUPT_ENABLED true 472 473/** 474 * enum phy_state - PHY state machine states: 475 * 476 * @PHY_DOWN: PHY device and driver are not ready for anything. probe 477 * should be called if and only if the PHY is in this state, 478 * given that the PHY device exists. 479 * - PHY driver probe function will set the state to @PHY_READY 480 * 481 * @PHY_READY: PHY is ready to send and receive packets, but the 482 * controller is not. By default, PHYs which do not implement 483 * probe will be set to this state by phy_probe(). 484 * - start will set the state to UP 485 * 486 * @PHY_UP: The PHY and attached device are ready to do work. 487 * Interrupts should be started here. 488 * - timer moves to @PHY_NOLINK or @PHY_RUNNING 489 * 490 * @PHY_NOLINK: PHY is up, but not currently plugged in. 491 * - irq or timer will set @PHY_RUNNING if link comes back 492 * - phy_stop moves to @PHY_HALTED 493 * 494 * @PHY_RUNNING: PHY is currently up, running, and possibly sending 495 * and/or receiving packets 496 * - irq or timer will set @PHY_NOLINK if link goes down 497 * - phy_stop moves to @PHY_HALTED 498 * 499 * @PHY_CABLETEST: PHY is performing a cable test. Packet reception/sending 500 * is not expected to work, carrier will be indicated as down. PHY will be 501 * poll once per second, or on interrupt for it current state. 502 * Once complete, move to UP to restart the PHY. 503 * - phy_stop aborts the running test and moves to @PHY_HALTED 504 * 505 * @PHY_HALTED: PHY is up, but no polling or interrupts are done. 506 * - phy_start moves to @PHY_UP 507 * 508 * @PHY_ERROR: PHY is up, but is in an error state. 509 * - phy_stop moves to @PHY_HALTED 510 */ 511enum phy_state { 512 PHY_DOWN = 0, 513 PHY_READY, 514 PHY_HALTED, 515 PHY_ERROR, 516 PHY_UP, 517 PHY_RUNNING, 518 PHY_NOLINK, 519 PHY_CABLETEST, 520}; 521 522#define MDIO_MMD_NUM 32 523 524/** 525 * struct phy_c45_device_ids - 802.3-c45 Device Identifiers 526 * @devices_in_package: IEEE 802.3 devices in package register value. 527 * @mmds_present: bit vector of MMDs present. 528 * @device_ids: The device identifer for each present device. 529 */ 530struct phy_c45_device_ids { 531 u32 devices_in_package; 532 u32 mmds_present; 533 u32 device_ids[MDIO_MMD_NUM]; 534}; 535 536struct macsec_context; 537struct macsec_ops; 538 539/** 540 * struct phy_device - An instance of a PHY 541 * 542 * @mdio: MDIO bus this PHY is on 543 * @drv: Pointer to the driver for this PHY instance 544 * @devlink: Create a link between phy dev and mac dev, if the external phy 545 * used by current mac interface is managed by another mac interface. 546 * @phy_id: UID for this device found during discovery 547 * @c45_ids: 802.3-c45 Device Identifiers if is_c45. 548 * @is_c45: Set to true if this PHY uses clause 45 addressing. 549 * @is_internal: Set to true if this PHY is internal to a MAC. 550 * @is_pseudo_fixed_link: Set to true if this PHY is an Ethernet switch, etc. 551 * @is_gigabit_capable: Set to true if PHY supports 1000Mbps 552 * @has_fixups: Set to true if this PHY has fixups/quirks. 553 * @suspended: Set to true if this PHY has been suspended successfully. 554 * @suspended_by_mdio_bus: Set to true if this PHY was suspended by MDIO bus. 555 * @sysfs_links: Internal boolean tracking sysfs symbolic links setup/removal. 556 * @loopback_enabled: Set true if this PHY has been loopbacked successfully. 557 * @downshifted_rate: Set true if link speed has been downshifted. 558 * @is_on_sfp_module: Set true if PHY is located on an SFP module. 559 * @mac_managed_pm: Set true if MAC driver takes of suspending/resuming PHY 560 * @wol_enabled: Set to true if the PHY or the attached MAC have Wake-on-LAN 561 * enabled. 562 * @state: State of the PHY for management purposes 563 * @dev_flags: Device-specific flags used by the PHY driver. 564 * 565 * - Bits [15:0] are free to use by the PHY driver to communicate 566 * driver specific behavior. 567 * - Bits [23:16] are currently reserved for future use. 568 * - Bits [31:24] are reserved for defining generic 569 * PHY driver behavior. 570 * @irq: IRQ number of the PHY's interrupt (-1 if none) 571 * @phylink: Pointer to phylink instance for this PHY 572 * @sfp_bus_attached: Flag indicating whether the SFP bus has been attached 573 * @sfp_bus: SFP bus attached to this PHY's fiber port 574 * @attached_dev: The attached enet driver's device instance ptr 575 * @adjust_link: Callback for the enet controller to respond to changes: in the 576 * link state. 577 * @phy_link_change: Callback for phylink for notification of link change 578 * @macsec_ops: MACsec offloading ops. 579 * 580 * @speed: Current link speed 581 * @duplex: Current duplex 582 * @port: Current port 583 * @pause: Current pause 584 * @asym_pause: Current asymmetric pause 585 * @supported: Combined MAC/PHY supported linkmodes 586 * @advertising: Currently advertised linkmodes 587 * @adv_old: Saved advertised while power saving for WoL 588 * @supported_eee: supported PHY EEE linkmodes 589 * @advertising_eee: Currently advertised EEE linkmodes 590 * @eee_enabled: Flag indicating whether the EEE feature is enabled 591 * @lp_advertising: Current link partner advertised linkmodes 592 * @host_interfaces: PHY interface modes supported by host 593 * @eee_broken_modes: Energy efficient ethernet modes which should be prohibited 594 * @autoneg: Flag autoneg being used 595 * @rate_matching: Current rate matching mode 596 * @link: Current link state 597 * @autoneg_complete: Flag auto negotiation of the link has completed 598 * @mdix: Current crossover 599 * @mdix_ctrl: User setting of crossover 600 * @pma_extable: Cached value of PMA/PMD Extended Abilities Register 601 * @interrupts: Flag interrupts have been enabled 602 * @irq_suspended: Flag indicating PHY is suspended and therefore interrupt 603 * handling shall be postponed until PHY has resumed 604 * @irq_rerun: Flag indicating interrupts occurred while PHY was suspended, 605 * requiring a rerun of the interrupt handler after resume 606 * @interface: enum phy_interface_t value 607 * @skb: Netlink message for cable diagnostics 608 * @nest: Netlink nest used for cable diagnostics 609 * @ehdr: nNtlink header for cable diagnostics 610 * @phy_led_triggers: Array of LED triggers 611 * @phy_num_led_triggers: Number of triggers in @phy_led_triggers 612 * @led_link_trigger: LED trigger for link up/down 613 * @last_triggered: last LED trigger for link speed 614 * @leds: list of PHY LED structures 615 * @master_slave_set: User requested master/slave configuration 616 * @master_slave_get: Current master/slave advertisement 617 * @master_slave_state: Current master/slave configuration 618 * @mii_ts: Pointer to time stamper callbacks 619 * @psec: Pointer to Power Sourcing Equipment control struct 620 * @lock: Mutex for serialization access to PHY 621 * @state_queue: Work queue for state machine 622 * @link_down_events: Number of times link was lost 623 * @shared: Pointer to private data shared by phys in one package 624 * @priv: Pointer to driver private data 625 * 626 * interrupts currently only supports enabled or disabled, 627 * but could be changed in the future to support enabling 628 * and disabling specific interrupts 629 * 630 * Contains some infrastructure for polling and interrupt 631 * handling, as well as handling shifts in PHY hardware state 632 */ 633struct phy_device { 634 struct mdio_device mdio; 635 636 /* Information about the PHY type */ 637 /* And management functions */ 638 struct phy_driver *drv; 639 640 struct device_link *devlink; 641 642 u32 phy_id; 643 644 struct phy_c45_device_ids c45_ids; 645 unsigned is_c45:1; 646 unsigned is_internal:1; 647 unsigned is_pseudo_fixed_link:1; 648 unsigned is_gigabit_capable:1; 649 unsigned has_fixups:1; 650 unsigned suspended:1; 651 unsigned suspended_by_mdio_bus:1; 652 unsigned sysfs_links:1; 653 unsigned loopback_enabled:1; 654 unsigned downshifted_rate:1; 655 unsigned is_on_sfp_module:1; 656 unsigned mac_managed_pm:1; 657 unsigned wol_enabled:1; 658 659 unsigned autoneg:1; 660 /* The most recently read link state */ 661 unsigned link:1; 662 unsigned autoneg_complete:1; 663 664 /* Interrupts are enabled */ 665 unsigned interrupts:1; 666 unsigned irq_suspended:1; 667 unsigned irq_rerun:1; 668 669 int rate_matching; 670 671 enum phy_state state; 672 673 u32 dev_flags; 674 675 phy_interface_t interface; 676 677 /* 678 * forced speed & duplex (no autoneg) 679 * partner speed & duplex & pause (autoneg) 680 */ 681 int speed; 682 int duplex; 683 int port; 684 int pause; 685 int asym_pause; 686 u8 master_slave_get; 687 u8 master_slave_set; 688 u8 master_slave_state; 689 690 /* Union of PHY and Attached devices' supported link modes */ 691 /* See ethtool.h for more info */ 692 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported); 693 __ETHTOOL_DECLARE_LINK_MODE_MASK(advertising); 694 __ETHTOOL_DECLARE_LINK_MODE_MASK(lp_advertising); 695 /* used with phy_speed_down */ 696 __ETHTOOL_DECLARE_LINK_MODE_MASK(adv_old); 697 /* used for eee validation */ 698 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported_eee); 699 __ETHTOOL_DECLARE_LINK_MODE_MASK(advertising_eee); 700 bool eee_enabled; 701 702 /* Host supported PHY interface types. Should be ignored if empty. */ 703 DECLARE_PHY_INTERFACE_MASK(host_interfaces); 704 705 /* Energy efficient ethernet modes which should be prohibited */ 706 u32 eee_broken_modes; 707 708#ifdef CONFIG_LED_TRIGGER_PHY 709 struct phy_led_trigger *phy_led_triggers; 710 unsigned int phy_num_led_triggers; 711 struct phy_led_trigger *last_triggered; 712 713 struct phy_led_trigger *led_link_trigger; 714#endif 715 struct list_head leds; 716 717 /* 718 * Interrupt number for this PHY 719 * -1 means no interrupt 720 */ 721 int irq; 722 723 /* private data pointer */ 724 /* For use by PHYs to maintain extra state */ 725 void *priv; 726 727 /* shared data pointer */ 728 /* For use by PHYs inside the same package that need a shared state. */ 729 struct phy_package_shared *shared; 730 731 /* Reporting cable test results */ 732 struct sk_buff *skb; 733 void *ehdr; 734 struct nlattr *nest; 735 736 /* Interrupt and Polling infrastructure */ 737 struct delayed_work state_queue; 738 739 struct mutex lock; 740 741 /* This may be modified under the rtnl lock */ 742 bool sfp_bus_attached; 743 struct sfp_bus *sfp_bus; 744 struct phylink *phylink; 745 struct net_device *attached_dev; 746 struct mii_timestamper *mii_ts; 747 struct pse_control *psec; 748 749 u8 mdix; 750 u8 mdix_ctrl; 751 752 int pma_extable; 753 754 unsigned int link_down_events; 755 756 void (*phy_link_change)(struct phy_device *phydev, bool up); 757 void (*adjust_link)(struct net_device *dev); 758 759#if IS_ENABLED(CONFIG_MACSEC) 760 /* MACsec management functions */ 761 const struct macsec_ops *macsec_ops; 762#endif 763}; 764 765/* Generic phy_device::dev_flags */ 766#define PHY_F_NO_IRQ 0x80000000 767 768static inline struct phy_device *to_phy_device(const struct device *dev) 769{ 770 return container_of(to_mdio_device(dev), struct phy_device, mdio); 771} 772 773/** 774 * struct phy_tdr_config - Configuration of a TDR raw test 775 * 776 * @first: Distance for first data collection point 777 * @last: Distance for last data collection point 778 * @step: Step between data collection points 779 * @pair: Bitmap of cable pairs to collect data for 780 * 781 * A structure containing possible configuration parameters 782 * for a TDR cable test. The driver does not need to implement 783 * all the parameters, but should report what is actually used. 784 * All distances are in centimeters. 785 */ 786struct phy_tdr_config { 787 u32 first; 788 u32 last; 789 u32 step; 790 s8 pair; 791}; 792#define PHY_PAIR_ALL -1 793 794/** 795 * struct phy_plca_cfg - Configuration of the PLCA (Physical Layer Collision 796 * Avoidance) Reconciliation Sublayer. 797 * 798 * @version: read-only PLCA register map version. -1 = not available. Ignored 799 * when setting the configuration. Format is the same as reported by the PLCA 800 * IDVER register (31.CA00). -1 = not available. 801 * @enabled: PLCA configured mode (enabled/disabled). -1 = not available / don't 802 * set. 0 = disabled, anything else = enabled. 803 * @node_id: the PLCA local node identifier. -1 = not available / don't set. 804 * Allowed values [0 .. 254]. 255 = node disabled. 805 * @node_cnt: the PLCA node count (maximum number of nodes having a TO). Only 806 * meaningful for the coordinator (node_id = 0). -1 = not available / don't 807 * set. Allowed values [1 .. 255]. 808 * @to_tmr: The value of the PLCA to_timer in bit-times, which determines the 809 * PLCA transmit opportunity window opening. See IEEE802.3 Clause 148 for 810 * more details. The to_timer shall be set equal over all nodes. 811 * -1 = not available / don't set. Allowed values [0 .. 255]. 812 * @burst_cnt: controls how many additional frames a node is allowed to send in 813 * single transmit opportunity (TO). The default value of 0 means that the 814 * node is allowed exactly one frame per TO. A value of 1 allows two frames 815 * per TO, and so on. -1 = not available / don't set. 816 * Allowed values [0 .. 255]. 817 * @burst_tmr: controls how many bit times to wait for the MAC to send a new 818 * frame before interrupting the burst. This value should be set to a value 819 * greater than the MAC inter-packet gap (which is typically 96 bits). 820 * -1 = not available / don't set. Allowed values [0 .. 255]. 821 * 822 * A structure containing configuration parameters for setting/getting the PLCA 823 * RS configuration. The driver does not need to implement all the parameters, 824 * but should report what is actually used. 825 */ 826struct phy_plca_cfg { 827 int version; 828 int enabled; 829 int node_id; 830 int node_cnt; 831 int to_tmr; 832 int burst_cnt; 833 int burst_tmr; 834}; 835 836/** 837 * struct phy_plca_status - Status of the PLCA (Physical Layer Collision 838 * Avoidance) Reconciliation Sublayer. 839 * 840 * @pst: The PLCA status as reported by the PST bit in the PLCA STATUS 841 * register(31.CA03), indicating BEACON activity. 842 * 843 * A structure containing status information of the PLCA RS configuration. 844 * The driver does not need to implement all the parameters, but should report 845 * what is actually used. 846 */ 847struct phy_plca_status { 848 bool pst; 849}; 850 851/** 852 * struct phy_led: An LED driven by the PHY 853 * 854 * @list: List of LEDs 855 * @phydev: PHY this LED is attached to 856 * @led_cdev: Standard LED class structure 857 * @index: Number of the LED 858 */ 859struct phy_led { 860 struct list_head list; 861 struct phy_device *phydev; 862 struct led_classdev led_cdev; 863 u8 index; 864}; 865 866#define to_phy_led(d) container_of(d, struct phy_led, led_cdev) 867 868/** 869 * struct phy_driver - Driver structure for a particular PHY type 870 * 871 * @mdiodrv: Data common to all MDIO devices 872 * @phy_id: The result of reading the UID registers of this PHY 873 * type, and ANDing them with the phy_id_mask. This driver 874 * only works for PHYs with IDs which match this field 875 * @name: The friendly name of this PHY type 876 * @phy_id_mask: Defines the important bits of the phy_id 877 * @features: A mandatory list of features (speed, duplex, etc) 878 * supported by this PHY 879 * @flags: A bitfield defining certain other features this PHY 880 * supports (like interrupts) 881 * @driver_data: Static driver data 882 * 883 * All functions are optional. If config_aneg or read_status 884 * are not implemented, the phy core uses the genphy versions. 885 * Note that none of these functions should be called from 886 * interrupt time. The goal is for the bus read/write functions 887 * to be able to block when the bus transaction is happening, 888 * and be freed up by an interrupt (The MPC85xx has this ability, 889 * though it is not currently supported in the driver). 890 */ 891struct phy_driver { 892 struct mdio_driver_common mdiodrv; 893 u32 phy_id; 894 char *name; 895 u32 phy_id_mask; 896 const unsigned long * const features; 897 u32 flags; 898 const void *driver_data; 899 900 /** 901 * @soft_reset: Called to issue a PHY software reset 902 */ 903 int (*soft_reset)(struct phy_device *phydev); 904 905 /** 906 * @config_init: Called to initialize the PHY, 907 * including after a reset 908 */ 909 int (*config_init)(struct phy_device *phydev); 910 911 /** 912 * @probe: Called during discovery. Used to set 913 * up device-specific structures, if any 914 */ 915 int (*probe)(struct phy_device *phydev); 916 917 /** 918 * @get_features: Probe the hardware to determine what 919 * abilities it has. Should only set phydev->supported. 920 */ 921 int (*get_features)(struct phy_device *phydev); 922 923 /** 924 * @get_rate_matching: Get the supported type of rate matching for a 925 * particular phy interface. This is used by phy consumers to determine 926 * whether to advertise lower-speed modes for that interface. It is 927 * assumed that if a rate matching mode is supported on an interface, 928 * then that interface's rate can be adapted to all slower link speeds 929 * supported by the phy. If the interface is not supported, this should 930 * return %RATE_MATCH_NONE. 931 */ 932 int (*get_rate_matching)(struct phy_device *phydev, 933 phy_interface_t iface); 934 935 /* PHY Power Management */ 936 /** @suspend: Suspend the hardware, saving state if needed */ 937 int (*suspend)(struct phy_device *phydev); 938 /** @resume: Resume the hardware, restoring state if needed */ 939 int (*resume)(struct phy_device *phydev); 940 941 /** 942 * @config_aneg: Configures the advertisement and resets 943 * autonegotiation if phydev->autoneg is on, 944 * forces the speed to the current settings in phydev 945 * if phydev->autoneg is off 946 */ 947 int (*config_aneg)(struct phy_device *phydev); 948 949 /** @aneg_done: Determines the auto negotiation result */ 950 int (*aneg_done)(struct phy_device *phydev); 951 952 /** @read_status: Determines the negotiated speed and duplex */ 953 int (*read_status)(struct phy_device *phydev); 954 955 /** 956 * @config_intr: Enables or disables interrupts. 957 * It should also clear any pending interrupts prior to enabling the 958 * IRQs and after disabling them. 959 */ 960 int (*config_intr)(struct phy_device *phydev); 961 962 /** @handle_interrupt: Override default interrupt handling */ 963 irqreturn_t (*handle_interrupt)(struct phy_device *phydev); 964 965 /** @remove: Clears up any memory if needed */ 966 void (*remove)(struct phy_device *phydev); 967 968 /** 969 * @match_phy_device: Returns true if this is a suitable 970 * driver for the given phydev. If NULL, matching is based on 971 * phy_id and phy_id_mask. 972 */ 973 int (*match_phy_device)(struct phy_device *phydev); 974 975 /** 976 * @set_wol: Some devices (e.g. qnap TS-119P II) require PHY 977 * register changes to enable Wake on LAN, so set_wol is 978 * provided to be called in the ethernet driver's set_wol 979 * function. 980 */ 981 int (*set_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol); 982 983 /** 984 * @get_wol: See set_wol, but for checking whether Wake on LAN 985 * is enabled. 986 */ 987 void (*get_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol); 988 989 /** 990 * @link_change_notify: Called to inform a PHY device driver 991 * when the core is about to change the link state. This 992 * callback is supposed to be used as fixup hook for drivers 993 * that need to take action when the link state 994 * changes. Drivers are by no means allowed to mess with the 995 * PHY device structure in their implementations. 996 */ 997 void (*link_change_notify)(struct phy_device *dev); 998 999 /** 1000 * @read_mmd: PHY specific driver override for reading a MMD 1001 * register. This function is optional for PHY specific 1002 * drivers. When not provided, the default MMD read function 1003 * will be used by phy_read_mmd(), which will use either a 1004 * direct read for Clause 45 PHYs or an indirect read for 1005 * Clause 22 PHYs. devnum is the MMD device number within the 1006 * PHY device, regnum is the register within the selected MMD 1007 * device. 1008 */ 1009 int (*read_mmd)(struct phy_device *dev, int devnum, u16 regnum); 1010 1011 /** 1012 * @write_mmd: PHY specific driver override for writing a MMD 1013 * register. This function is optional for PHY specific 1014 * drivers. When not provided, the default MMD write function 1015 * will be used by phy_write_mmd(), which will use either a 1016 * direct write for Clause 45 PHYs, or an indirect write for 1017 * Clause 22 PHYs. devnum is the MMD device number within the 1018 * PHY device, regnum is the register within the selected MMD 1019 * device. val is the value to be written. 1020 */ 1021 int (*write_mmd)(struct phy_device *dev, int devnum, u16 regnum, 1022 u16 val); 1023 1024 /** @read_page: Return the current PHY register page number */ 1025 int (*read_page)(struct phy_device *dev); 1026 /** @write_page: Set the current PHY register page number */ 1027 int (*write_page)(struct phy_device *dev, int page); 1028 1029 /** 1030 * @module_info: Get the size and type of the eeprom contained 1031 * within a plug-in module 1032 */ 1033 int (*module_info)(struct phy_device *dev, 1034 struct ethtool_modinfo *modinfo); 1035 1036 /** 1037 * @module_eeprom: Get the eeprom information from the plug-in 1038 * module 1039 */ 1040 int (*module_eeprom)(struct phy_device *dev, 1041 struct ethtool_eeprom *ee, u8 *data); 1042 1043 /** @cable_test_start: Start a cable test */ 1044 int (*cable_test_start)(struct phy_device *dev); 1045 1046 /** @cable_test_tdr_start: Start a raw TDR cable test */ 1047 int (*cable_test_tdr_start)(struct phy_device *dev, 1048 const struct phy_tdr_config *config); 1049 1050 /** 1051 * @cable_test_get_status: Once per second, or on interrupt, 1052 * request the status of the test. 1053 */ 1054 int (*cable_test_get_status)(struct phy_device *dev, bool *finished); 1055 1056 /* Get statistics from the PHY using ethtool */ 1057 /** @get_sset_count: Number of statistic counters */ 1058 int (*get_sset_count)(struct phy_device *dev); 1059 /** @get_strings: Names of the statistic counters */ 1060 void (*get_strings)(struct phy_device *dev, u8 *data); 1061 /** @get_stats: Return the statistic counter values */ 1062 void (*get_stats)(struct phy_device *dev, 1063 struct ethtool_stats *stats, u64 *data); 1064 1065 /* Get and Set PHY tunables */ 1066 /** @get_tunable: Return the value of a tunable */ 1067 int (*get_tunable)(struct phy_device *dev, 1068 struct ethtool_tunable *tuna, void *data); 1069 /** @set_tunable: Set the value of a tunable */ 1070 int (*set_tunable)(struct phy_device *dev, 1071 struct ethtool_tunable *tuna, 1072 const void *data); 1073 /** @set_loopback: Set the loopback mood of the PHY */ 1074 int (*set_loopback)(struct phy_device *dev, bool enable); 1075 /** @get_sqi: Get the signal quality indication */ 1076 int (*get_sqi)(struct phy_device *dev); 1077 /** @get_sqi_max: Get the maximum signal quality indication */ 1078 int (*get_sqi_max)(struct phy_device *dev); 1079 1080 /* PLCA RS interface */ 1081 /** @get_plca_cfg: Return the current PLCA configuration */ 1082 int (*get_plca_cfg)(struct phy_device *dev, 1083 struct phy_plca_cfg *plca_cfg); 1084 /** @set_plca_cfg: Set the PLCA configuration */ 1085 int (*set_plca_cfg)(struct phy_device *dev, 1086 const struct phy_plca_cfg *plca_cfg); 1087 /** @get_plca_status: Return the current PLCA status info */ 1088 int (*get_plca_status)(struct phy_device *dev, 1089 struct phy_plca_status *plca_st); 1090 1091 /** 1092 * @led_brightness_set: Set a PHY LED brightness. Index 1093 * indicates which of the PHYs led should be set. Value 1094 * follows the standard LED class meaning, e.g. LED_OFF, 1095 * LED_HALF, LED_FULL. 1096 */ 1097 int (*led_brightness_set)(struct phy_device *dev, 1098 u8 index, enum led_brightness value); 1099 1100 /** 1101 * @led_blink_set: Set a PHY LED brightness. Index indicates 1102 * which of the PHYs led should be configured to blink. Delays 1103 * are in milliseconds and if both are zero then a sensible 1104 * default should be chosen. The call should adjust the 1105 * timings in that case and if it can't match the values 1106 * specified exactly. 1107 */ 1108 int (*led_blink_set)(struct phy_device *dev, u8 index, 1109 unsigned long *delay_on, 1110 unsigned long *delay_off); 1111 /** 1112 * @led_hw_is_supported: Can the HW support the given rules. 1113 * @dev: PHY device which has the LED 1114 * @index: Which LED of the PHY device 1115 * @rules The core is interested in these rules 1116 * 1117 * Return 0 if yes, -EOPNOTSUPP if not, or an error code. 1118 */ 1119 int (*led_hw_is_supported)(struct phy_device *dev, u8 index, 1120 unsigned long rules); 1121 /** 1122 * @led_hw_control_set: Set the HW to control the LED 1123 * @dev: PHY device which has the LED 1124 * @index: Which LED of the PHY device 1125 * @rules The rules used to control the LED 1126 * 1127 * Returns 0, or a an error code. 1128 */ 1129 int (*led_hw_control_set)(struct phy_device *dev, u8 index, 1130 unsigned long rules); 1131 /** 1132 * @led_hw_control_get: Get how the HW is controlling the LED 1133 * @dev: PHY device which has the LED 1134 * @index: Which LED of the PHY device 1135 * @rules Pointer to the rules used to control the LED 1136 * 1137 * Set *@rules to how the HW is currently blinking. Returns 0 1138 * on success, or a error code if the current blinking cannot 1139 * be represented in rules, or some other error happens. 1140 */ 1141 int (*led_hw_control_get)(struct phy_device *dev, u8 index, 1142 unsigned long *rules); 1143 1144}; 1145#define to_phy_driver(d) container_of(to_mdio_common_driver(d), \ 1146 struct phy_driver, mdiodrv) 1147 1148#define PHY_ANY_ID "MATCH ANY PHY" 1149#define PHY_ANY_UID 0xffffffff 1150 1151#define PHY_ID_MATCH_EXACT(id) .phy_id = (id), .phy_id_mask = GENMASK(31, 0) 1152#define PHY_ID_MATCH_MODEL(id) .phy_id = (id), .phy_id_mask = GENMASK(31, 4) 1153#define PHY_ID_MATCH_VENDOR(id) .phy_id = (id), .phy_id_mask = GENMASK(31, 10) 1154 1155/** 1156 * phy_id_compare - compare @id1 with @id2 taking account of @mask 1157 * @id1: first PHY ID 1158 * @id2: second PHY ID 1159 * @mask: the PHY ID mask, set bits are significant in matching 1160 * 1161 * Return true if the bits from @id1 and @id2 specified by @mask match. 1162 * This uses an equivalent test to (@id & @mask) == (@phy_id & @mask). 1163 */ 1164static inline bool phy_id_compare(u32 id1, u32 id2, u32 mask) 1165{ 1166 return !((id1 ^ id2) & mask); 1167} 1168 1169/** 1170 * phydev_id_compare - compare @id with the PHY's Clause 22 ID 1171 * @phydev: the PHY device 1172 * @id: the PHY ID to be matched 1173 * 1174 * Compare the @phydev clause 22 ID with the provided @id and return true or 1175 * false depending whether it matches, using the bound driver mask. The 1176 * @phydev must be bound to a driver. 1177 */ 1178static inline bool phydev_id_compare(struct phy_device *phydev, u32 id) 1179{ 1180 return phy_id_compare(id, phydev->phy_id, phydev->drv->phy_id_mask); 1181} 1182 1183/* A Structure for boards to register fixups with the PHY Lib */ 1184struct phy_fixup { 1185 struct list_head list; 1186 char bus_id[MII_BUS_ID_SIZE + 3]; 1187 u32 phy_uid; 1188 u32 phy_uid_mask; 1189 int (*run)(struct phy_device *phydev); 1190}; 1191 1192const char *phy_speed_to_str(int speed); 1193const char *phy_duplex_to_str(unsigned int duplex); 1194const char *phy_rate_matching_to_str(int rate_matching); 1195 1196int phy_interface_num_ports(phy_interface_t interface); 1197 1198/* A structure for mapping a particular speed and duplex 1199 * combination to a particular SUPPORTED and ADVERTISED value 1200 */ 1201struct phy_setting { 1202 u32 speed; 1203 u8 duplex; 1204 u8 bit; 1205}; 1206 1207const struct phy_setting * 1208phy_lookup_setting(int speed, int duplex, const unsigned long *mask, 1209 bool exact); 1210size_t phy_speeds(unsigned int *speeds, size_t size, 1211 unsigned long *mask); 1212void of_set_phy_supported(struct phy_device *phydev); 1213void of_set_phy_eee_broken(struct phy_device *phydev); 1214int phy_speed_down_core(struct phy_device *phydev); 1215 1216/** 1217 * phy_is_started - Convenience function to check whether PHY is started 1218 * @phydev: The phy_device struct 1219 */ 1220static inline bool phy_is_started(struct phy_device *phydev) 1221{ 1222 return phydev->state >= PHY_UP; 1223} 1224 1225void phy_resolve_aneg_pause(struct phy_device *phydev); 1226void phy_resolve_aneg_linkmode(struct phy_device *phydev); 1227void phy_check_downshift(struct phy_device *phydev); 1228 1229/** 1230 * phy_read - Convenience function for reading a given PHY register 1231 * @phydev: the phy_device struct 1232 * @regnum: register number to read 1233 * 1234 * NOTE: MUST NOT be called from interrupt context, 1235 * because the bus read/write functions may wait for an interrupt 1236 * to conclude the operation. 1237 */ 1238static inline int phy_read(struct phy_device *phydev, u32 regnum) 1239{ 1240 return mdiobus_read(phydev->mdio.bus, phydev->mdio.addr, regnum); 1241} 1242 1243#define phy_read_poll_timeout(phydev, regnum, val, cond, sleep_us, \ 1244 timeout_us, sleep_before_read) \ 1245({ \ 1246 int __ret, __val; \ 1247 __ret = read_poll_timeout(__val = phy_read, val, \ 1248 __val < 0 || (cond), \ 1249 sleep_us, timeout_us, sleep_before_read, phydev, regnum); \ 1250 if (__val < 0) \ 1251 __ret = __val; \ 1252 if (__ret) \ 1253 phydev_err(phydev, "%s failed: %d\n", __func__, __ret); \ 1254 __ret; \ 1255}) 1256 1257/** 1258 * __phy_read - convenience function for reading a given PHY register 1259 * @phydev: the phy_device struct 1260 * @regnum: register number to read 1261 * 1262 * The caller must have taken the MDIO bus lock. 1263 */ 1264static inline int __phy_read(struct phy_device *phydev, u32 regnum) 1265{ 1266 return __mdiobus_read(phydev->mdio.bus, phydev->mdio.addr, regnum); 1267} 1268 1269/** 1270 * phy_write - Convenience function for writing a given PHY register 1271 * @phydev: the phy_device struct 1272 * @regnum: register number to write 1273 * @val: value to write to @regnum 1274 * 1275 * NOTE: MUST NOT be called from interrupt context, 1276 * because the bus read/write functions may wait for an interrupt 1277 * to conclude the operation. 1278 */ 1279static inline int phy_write(struct phy_device *phydev, u32 regnum, u16 val) 1280{ 1281 return mdiobus_write(phydev->mdio.bus, phydev->mdio.addr, regnum, val); 1282} 1283 1284/** 1285 * __phy_write - Convenience function for writing a given PHY register 1286 * @phydev: the phy_device struct 1287 * @regnum: register number to write 1288 * @val: value to write to @regnum 1289 * 1290 * The caller must have taken the MDIO bus lock. 1291 */ 1292static inline int __phy_write(struct phy_device *phydev, u32 regnum, u16 val) 1293{ 1294 return __mdiobus_write(phydev->mdio.bus, phydev->mdio.addr, regnum, 1295 val); 1296} 1297 1298/** 1299 * __phy_modify_changed() - Convenience function for modifying a PHY register 1300 * @phydev: a pointer to a &struct phy_device 1301 * @regnum: register number 1302 * @mask: bit mask of bits to clear 1303 * @set: bit mask of bits to set 1304 * 1305 * Unlocked helper function which allows a PHY register to be modified as 1306 * new register value = (old register value & ~mask) | set 1307 * 1308 * Returns negative errno, 0 if there was no change, and 1 in case of change 1309 */ 1310static inline int __phy_modify_changed(struct phy_device *phydev, u32 regnum, 1311 u16 mask, u16 set) 1312{ 1313 return __mdiobus_modify_changed(phydev->mdio.bus, phydev->mdio.addr, 1314 regnum, mask, set); 1315} 1316 1317/* 1318 * phy_read_mmd - Convenience function for reading a register 1319 * from an MMD on a given PHY. 1320 */ 1321int phy_read_mmd(struct phy_device *phydev, int devad, u32 regnum); 1322 1323/** 1324 * phy_read_mmd_poll_timeout - Periodically poll a PHY register until a 1325 * condition is met or a timeout occurs 1326 * 1327 * @phydev: The phy_device struct 1328 * @devaddr: The MMD to read from 1329 * @regnum: The register on the MMD to read 1330 * @val: Variable to read the register into 1331 * @cond: Break condition (usually involving @val) 1332 * @sleep_us: Maximum time to sleep between reads in us (0 1333 * tight-loops). Should be less than ~20ms since usleep_range 1334 * is used (see Documentation/timers/timers-howto.rst). 1335 * @timeout_us: Timeout in us, 0 means never timeout 1336 * @sleep_before_read: if it is true, sleep @sleep_us before read. 1337 * Returns 0 on success and -ETIMEDOUT upon a timeout. In either 1338 * case, the last read value at @args is stored in @val. Must not 1339 * be called from atomic context if sleep_us or timeout_us are used. 1340 */ 1341#define phy_read_mmd_poll_timeout(phydev, devaddr, regnum, val, cond, \ 1342 sleep_us, timeout_us, sleep_before_read) \ 1343({ \ 1344 int __ret, __val; \ 1345 __ret = read_poll_timeout(__val = phy_read_mmd, val, \ 1346 __val < 0 || (cond), \ 1347 sleep_us, timeout_us, sleep_before_read, \ 1348 phydev, devaddr, regnum); \ 1349 if (__val < 0) \ 1350 __ret = __val; \ 1351 if (__ret) \ 1352 phydev_err(phydev, "%s failed: %d\n", __func__, __ret); \ 1353 __ret; \ 1354}) 1355 1356/* 1357 * __phy_read_mmd - Convenience function for reading a register 1358 * from an MMD on a given PHY. 1359 */ 1360int __phy_read_mmd(struct phy_device *phydev, int devad, u32 regnum); 1361 1362/* 1363 * phy_write_mmd - Convenience function for writing a register 1364 * on an MMD on a given PHY. 1365 */ 1366int phy_write_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val); 1367 1368/* 1369 * __phy_write_mmd - Convenience function for writing a register 1370 * on an MMD on a given PHY. 1371 */ 1372int __phy_write_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val); 1373 1374int __phy_modify_changed(struct phy_device *phydev, u32 regnum, u16 mask, 1375 u16 set); 1376int phy_modify_changed(struct phy_device *phydev, u32 regnum, u16 mask, 1377 u16 set); 1378int __phy_modify(struct phy_device *phydev, u32 regnum, u16 mask, u16 set); 1379int phy_modify(struct phy_device *phydev, u32 regnum, u16 mask, u16 set); 1380 1381int __phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum, 1382 u16 mask, u16 set); 1383int phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum, 1384 u16 mask, u16 set); 1385int __phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum, 1386 u16 mask, u16 set); 1387int phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum, 1388 u16 mask, u16 set); 1389 1390/** 1391 * __phy_set_bits - Convenience function for setting bits in a PHY register 1392 * @phydev: the phy_device struct 1393 * @regnum: register number to write 1394 * @val: bits to set 1395 * 1396 * The caller must have taken the MDIO bus lock. 1397 */ 1398static inline int __phy_set_bits(struct phy_device *phydev, u32 regnum, u16 val) 1399{ 1400 return __phy_modify(phydev, regnum, 0, val); 1401} 1402 1403/** 1404 * __phy_clear_bits - Convenience function for clearing bits in a PHY register 1405 * @phydev: the phy_device struct 1406 * @regnum: register number to write 1407 * @val: bits to clear 1408 * 1409 * The caller must have taken the MDIO bus lock. 1410 */ 1411static inline int __phy_clear_bits(struct phy_device *phydev, u32 regnum, 1412 u16 val) 1413{ 1414 return __phy_modify(phydev, regnum, val, 0); 1415} 1416 1417/** 1418 * phy_set_bits - Convenience function for setting bits in a PHY register 1419 * @phydev: the phy_device struct 1420 * @regnum: register number to write 1421 * @val: bits to set 1422 */ 1423static inline int phy_set_bits(struct phy_device *phydev, u32 regnum, u16 val) 1424{ 1425 return phy_modify(phydev, regnum, 0, val); 1426} 1427 1428/** 1429 * phy_clear_bits - Convenience function for clearing bits in a PHY register 1430 * @phydev: the phy_device struct 1431 * @regnum: register number to write 1432 * @val: bits to clear 1433 */ 1434static inline int phy_clear_bits(struct phy_device *phydev, u32 regnum, u16 val) 1435{ 1436 return phy_modify(phydev, regnum, val, 0); 1437} 1438 1439/** 1440 * __phy_set_bits_mmd - Convenience function for setting bits in a register 1441 * on MMD 1442 * @phydev: the phy_device struct 1443 * @devad: the MMD containing register to modify 1444 * @regnum: register number to modify 1445 * @val: bits to set 1446 * 1447 * The caller must have taken the MDIO bus lock. 1448 */ 1449static inline int __phy_set_bits_mmd(struct phy_device *phydev, int devad, 1450 u32 regnum, u16 val) 1451{ 1452 return __phy_modify_mmd(phydev, devad, regnum, 0, val); 1453} 1454 1455/** 1456 * __phy_clear_bits_mmd - Convenience function for clearing bits in a register 1457 * on MMD 1458 * @phydev: the phy_device struct 1459 * @devad: the MMD containing register to modify 1460 * @regnum: register number to modify 1461 * @val: bits to clear 1462 * 1463 * The caller must have taken the MDIO bus lock. 1464 */ 1465static inline int __phy_clear_bits_mmd(struct phy_device *phydev, int devad, 1466 u32 regnum, u16 val) 1467{ 1468 return __phy_modify_mmd(phydev, devad, regnum, val, 0); 1469} 1470 1471/** 1472 * phy_set_bits_mmd - Convenience function for setting bits in a register 1473 * on MMD 1474 * @phydev: the phy_device struct 1475 * @devad: the MMD containing register to modify 1476 * @regnum: register number to modify 1477 * @val: bits to set 1478 */ 1479static inline int phy_set_bits_mmd(struct phy_device *phydev, int devad, 1480 u32 regnum, u16 val) 1481{ 1482 return phy_modify_mmd(phydev, devad, regnum, 0, val); 1483} 1484 1485/** 1486 * phy_clear_bits_mmd - Convenience function for clearing bits in a register 1487 * on MMD 1488 * @phydev: the phy_device struct 1489 * @devad: the MMD containing register to modify 1490 * @regnum: register number to modify 1491 * @val: bits to clear 1492 */ 1493static inline int phy_clear_bits_mmd(struct phy_device *phydev, int devad, 1494 u32 regnum, u16 val) 1495{ 1496 return phy_modify_mmd(phydev, devad, regnum, val, 0); 1497} 1498 1499/** 1500 * phy_interrupt_is_valid - Convenience function for testing a given PHY irq 1501 * @phydev: the phy_device struct 1502 * 1503 * NOTE: must be kept in sync with addition/removal of PHY_POLL and 1504 * PHY_MAC_INTERRUPT 1505 */ 1506static inline bool phy_interrupt_is_valid(struct phy_device *phydev) 1507{ 1508 return phydev->irq != PHY_POLL && phydev->irq != PHY_MAC_INTERRUPT; 1509} 1510 1511/** 1512 * phy_polling_mode - Convenience function for testing whether polling is 1513 * used to detect PHY status changes 1514 * @phydev: the phy_device struct 1515 */ 1516static inline bool phy_polling_mode(struct phy_device *phydev) 1517{ 1518 if (phydev->state == PHY_CABLETEST) 1519 if (phydev->drv->flags & PHY_POLL_CABLE_TEST) 1520 return true; 1521 1522 return phydev->irq == PHY_POLL; 1523} 1524 1525/** 1526 * phy_has_hwtstamp - Tests whether a PHY time stamp configuration. 1527 * @phydev: the phy_device struct 1528 */ 1529static inline bool phy_has_hwtstamp(struct phy_device *phydev) 1530{ 1531 return phydev && phydev->mii_ts && phydev->mii_ts->hwtstamp; 1532} 1533 1534/** 1535 * phy_has_rxtstamp - Tests whether a PHY supports receive time stamping. 1536 * @phydev: the phy_device struct 1537 */ 1538static inline bool phy_has_rxtstamp(struct phy_device *phydev) 1539{ 1540 return phydev && phydev->mii_ts && phydev->mii_ts->rxtstamp; 1541} 1542 1543/** 1544 * phy_has_tsinfo - Tests whether a PHY reports time stamping and/or 1545 * PTP hardware clock capabilities. 1546 * @phydev: the phy_device struct 1547 */ 1548static inline bool phy_has_tsinfo(struct phy_device *phydev) 1549{ 1550 return phydev && phydev->mii_ts && phydev->mii_ts->ts_info; 1551} 1552 1553/** 1554 * phy_has_txtstamp - Tests whether a PHY supports transmit time stamping. 1555 * @phydev: the phy_device struct 1556 */ 1557static inline bool phy_has_txtstamp(struct phy_device *phydev) 1558{ 1559 return phydev && phydev->mii_ts && phydev->mii_ts->txtstamp; 1560} 1561 1562static inline int phy_hwtstamp(struct phy_device *phydev, struct ifreq *ifr) 1563{ 1564 return phydev->mii_ts->hwtstamp(phydev->mii_ts, ifr); 1565} 1566 1567static inline bool phy_rxtstamp(struct phy_device *phydev, struct sk_buff *skb, 1568 int type) 1569{ 1570 return phydev->mii_ts->rxtstamp(phydev->mii_ts, skb, type); 1571} 1572 1573static inline int phy_ts_info(struct phy_device *phydev, 1574 struct ethtool_ts_info *tsinfo) 1575{ 1576 return phydev->mii_ts->ts_info(phydev->mii_ts, tsinfo); 1577} 1578 1579static inline void phy_txtstamp(struct phy_device *phydev, struct sk_buff *skb, 1580 int type) 1581{ 1582 phydev->mii_ts->txtstamp(phydev->mii_ts, skb, type); 1583} 1584 1585/** 1586 * phy_is_internal - Convenience function for testing if a PHY is internal 1587 * @phydev: the phy_device struct 1588 */ 1589static inline bool phy_is_internal(struct phy_device *phydev) 1590{ 1591 return phydev->is_internal; 1592} 1593 1594/** 1595 * phy_on_sfp - Convenience function for testing if a PHY is on an SFP module 1596 * @phydev: the phy_device struct 1597 */ 1598static inline bool phy_on_sfp(struct phy_device *phydev) 1599{ 1600 return phydev->is_on_sfp_module; 1601} 1602 1603/** 1604 * phy_interface_mode_is_rgmii - Convenience function for testing if a 1605 * PHY interface mode is RGMII (all variants) 1606 * @mode: the &phy_interface_t enum 1607 */ 1608static inline bool phy_interface_mode_is_rgmii(phy_interface_t mode) 1609{ 1610 return mode >= PHY_INTERFACE_MODE_RGMII && 1611 mode <= PHY_INTERFACE_MODE_RGMII_TXID; 1612}; 1613 1614/** 1615 * phy_interface_mode_is_8023z() - does the PHY interface mode use 802.3z 1616 * negotiation 1617 * @mode: one of &enum phy_interface_t 1618 * 1619 * Returns true if the PHY interface mode uses the 16-bit negotiation 1620 * word as defined in 802.3z. (See 802.3-2015 37.2.1 Config_Reg encoding) 1621 */ 1622static inline bool phy_interface_mode_is_8023z(phy_interface_t mode) 1623{ 1624 return mode == PHY_INTERFACE_MODE_1000BASEX || 1625 mode == PHY_INTERFACE_MODE_2500BASEX; 1626} 1627 1628/** 1629 * phy_interface_is_rgmii - Convenience function for testing if a PHY interface 1630 * is RGMII (all variants) 1631 * @phydev: the phy_device struct 1632 */ 1633static inline bool phy_interface_is_rgmii(struct phy_device *phydev) 1634{ 1635 return phy_interface_mode_is_rgmii(phydev->interface); 1636}; 1637 1638/** 1639 * phy_is_pseudo_fixed_link - Convenience function for testing if this 1640 * PHY is the CPU port facing side of an Ethernet switch, or similar. 1641 * @phydev: the phy_device struct 1642 */ 1643static inline bool phy_is_pseudo_fixed_link(struct phy_device *phydev) 1644{ 1645 return phydev->is_pseudo_fixed_link; 1646} 1647 1648int phy_save_page(struct phy_device *phydev); 1649int phy_select_page(struct phy_device *phydev, int page); 1650int phy_restore_page(struct phy_device *phydev, int oldpage, int ret); 1651int phy_read_paged(struct phy_device *phydev, int page, u32 regnum); 1652int phy_write_paged(struct phy_device *phydev, int page, u32 regnum, u16 val); 1653int phy_modify_paged_changed(struct phy_device *phydev, int page, u32 regnum, 1654 u16 mask, u16 set); 1655int phy_modify_paged(struct phy_device *phydev, int page, u32 regnum, 1656 u16 mask, u16 set); 1657 1658struct phy_device *phy_device_create(struct mii_bus *bus, int addr, u32 phy_id, 1659 bool is_c45, 1660 struct phy_c45_device_ids *c45_ids); 1661#if IS_ENABLED(CONFIG_PHYLIB) 1662int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id); 1663struct mdio_device *fwnode_mdio_find_device(struct fwnode_handle *fwnode); 1664struct phy_device *fwnode_phy_find_device(struct fwnode_handle *phy_fwnode); 1665struct phy_device *device_phy_find_device(struct device *dev); 1666struct fwnode_handle *fwnode_get_phy_node(const struct fwnode_handle *fwnode); 1667struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45); 1668int phy_device_register(struct phy_device *phy); 1669void phy_device_free(struct phy_device *phydev); 1670#else 1671static inline int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id) 1672{ 1673 return 0; 1674} 1675static inline 1676struct mdio_device *fwnode_mdio_find_device(struct fwnode_handle *fwnode) 1677{ 1678 return 0; 1679} 1680 1681static inline 1682struct phy_device *fwnode_phy_find_device(struct fwnode_handle *phy_fwnode) 1683{ 1684 return NULL; 1685} 1686 1687static inline struct phy_device *device_phy_find_device(struct device *dev) 1688{ 1689 return NULL; 1690} 1691 1692static inline 1693struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode) 1694{ 1695 return NULL; 1696} 1697 1698static inline 1699struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45) 1700{ 1701 return NULL; 1702} 1703 1704static inline int phy_device_register(struct phy_device *phy) 1705{ 1706 return 0; 1707} 1708 1709static inline void phy_device_free(struct phy_device *phydev) { } 1710#endif /* CONFIG_PHYLIB */ 1711void phy_device_remove(struct phy_device *phydev); 1712int phy_get_c45_ids(struct phy_device *phydev); 1713int phy_init_hw(struct phy_device *phydev); 1714int phy_suspend(struct phy_device *phydev); 1715int phy_resume(struct phy_device *phydev); 1716int __phy_resume(struct phy_device *phydev); 1717int phy_loopback(struct phy_device *phydev, bool enable); 1718void phy_sfp_attach(void *upstream, struct sfp_bus *bus); 1719void phy_sfp_detach(void *upstream, struct sfp_bus *bus); 1720int phy_sfp_probe(struct phy_device *phydev, 1721 const struct sfp_upstream_ops *ops); 1722struct phy_device *phy_attach(struct net_device *dev, const char *bus_id, 1723 phy_interface_t interface); 1724struct phy_device *phy_find_first(struct mii_bus *bus); 1725int phy_attach_direct(struct net_device *dev, struct phy_device *phydev, 1726 u32 flags, phy_interface_t interface); 1727int phy_connect_direct(struct net_device *dev, struct phy_device *phydev, 1728 void (*handler)(struct net_device *), 1729 phy_interface_t interface); 1730struct phy_device *phy_connect(struct net_device *dev, const char *bus_id, 1731 void (*handler)(struct net_device *), 1732 phy_interface_t interface); 1733void phy_disconnect(struct phy_device *phydev); 1734void phy_detach(struct phy_device *phydev); 1735void phy_start(struct phy_device *phydev); 1736void phy_stop(struct phy_device *phydev); 1737int phy_config_aneg(struct phy_device *phydev); 1738int _phy_start_aneg(struct phy_device *phydev); 1739int phy_start_aneg(struct phy_device *phydev); 1740int phy_aneg_done(struct phy_device *phydev); 1741int phy_speed_down(struct phy_device *phydev, bool sync); 1742int phy_speed_up(struct phy_device *phydev); 1743bool phy_check_valid(int speed, int duplex, unsigned long *features); 1744 1745int phy_restart_aneg(struct phy_device *phydev); 1746int phy_reset_after_clk_enable(struct phy_device *phydev); 1747 1748#if IS_ENABLED(CONFIG_PHYLIB) 1749int phy_start_cable_test(struct phy_device *phydev, 1750 struct netlink_ext_ack *extack); 1751int phy_start_cable_test_tdr(struct phy_device *phydev, 1752 struct netlink_ext_ack *extack, 1753 const struct phy_tdr_config *config); 1754#else 1755static inline 1756int phy_start_cable_test(struct phy_device *phydev, 1757 struct netlink_ext_ack *extack) 1758{ 1759 NL_SET_ERR_MSG(extack, "Kernel not compiled with PHYLIB support"); 1760 return -EOPNOTSUPP; 1761} 1762static inline 1763int phy_start_cable_test_tdr(struct phy_device *phydev, 1764 struct netlink_ext_ack *extack, 1765 const struct phy_tdr_config *config) 1766{ 1767 NL_SET_ERR_MSG(extack, "Kernel not compiled with PHYLIB support"); 1768 return -EOPNOTSUPP; 1769} 1770#endif 1771 1772static inline void phy_device_reset(struct phy_device *phydev, int value) 1773{ 1774 mdio_device_reset(&phydev->mdio, value); 1775} 1776 1777#define phydev_err(_phydev, format, args...) \ 1778 dev_err(&_phydev->mdio.dev, format, ##args) 1779 1780#define phydev_err_probe(_phydev, err, format, args...) \ 1781 dev_err_probe(&_phydev->mdio.dev, err, format, ##args) 1782 1783#define phydev_info(_phydev, format, args...) \ 1784 dev_info(&_phydev->mdio.dev, format, ##args) 1785 1786#define phydev_warn(_phydev, format, args...) \ 1787 dev_warn(&_phydev->mdio.dev, format, ##args) 1788 1789#define phydev_dbg(_phydev, format, args...) \ 1790 dev_dbg(&_phydev->mdio.dev, format, ##args) 1791 1792static inline const char *phydev_name(const struct phy_device *phydev) 1793{ 1794 return dev_name(&phydev->mdio.dev); 1795} 1796 1797static inline void phy_lock_mdio_bus(struct phy_device *phydev) 1798{ 1799 mutex_lock(&phydev->mdio.bus->mdio_lock); 1800} 1801 1802static inline void phy_unlock_mdio_bus(struct phy_device *phydev) 1803{ 1804 mutex_unlock(&phydev->mdio.bus->mdio_lock); 1805} 1806 1807void phy_attached_print(struct phy_device *phydev, const char *fmt, ...) 1808 __printf(2, 3); 1809char *phy_attached_info_irq(struct phy_device *phydev) 1810 __malloc; 1811void phy_attached_info(struct phy_device *phydev); 1812 1813/* Clause 22 PHY */ 1814int genphy_read_abilities(struct phy_device *phydev); 1815int genphy_setup_forced(struct phy_device *phydev); 1816int genphy_restart_aneg(struct phy_device *phydev); 1817int genphy_check_and_restart_aneg(struct phy_device *phydev, bool restart); 1818int genphy_config_eee_advert(struct phy_device *phydev); 1819int __genphy_config_aneg(struct phy_device *phydev, bool changed); 1820int genphy_aneg_done(struct phy_device *phydev); 1821int genphy_update_link(struct phy_device *phydev); 1822int genphy_read_lpa(struct phy_device *phydev); 1823int genphy_read_status_fixed(struct phy_device *phydev); 1824int genphy_read_status(struct phy_device *phydev); 1825int genphy_read_master_slave(struct phy_device *phydev); 1826int genphy_suspend(struct phy_device *phydev); 1827int genphy_resume(struct phy_device *phydev); 1828int genphy_loopback(struct phy_device *phydev, bool enable); 1829int genphy_soft_reset(struct phy_device *phydev); 1830irqreturn_t genphy_handle_interrupt_no_ack(struct phy_device *phydev); 1831 1832static inline int genphy_config_aneg(struct phy_device *phydev) 1833{ 1834 return __genphy_config_aneg(phydev, false); 1835} 1836 1837static inline int genphy_no_config_intr(struct phy_device *phydev) 1838{ 1839 return 0; 1840} 1841int genphy_read_mmd_unsupported(struct phy_device *phdev, int devad, 1842 u16 regnum); 1843int genphy_write_mmd_unsupported(struct phy_device *phdev, int devnum, 1844 u16 regnum, u16 val); 1845 1846/* Clause 37 */ 1847int genphy_c37_config_aneg(struct phy_device *phydev); 1848int genphy_c37_read_status(struct phy_device *phydev); 1849 1850/* Clause 45 PHY */ 1851int genphy_c45_restart_aneg(struct phy_device *phydev); 1852int genphy_c45_check_and_restart_aneg(struct phy_device *phydev, bool restart); 1853int genphy_c45_aneg_done(struct phy_device *phydev); 1854int genphy_c45_read_link(struct phy_device *phydev); 1855int genphy_c45_read_lpa(struct phy_device *phydev); 1856int genphy_c45_read_pma(struct phy_device *phydev); 1857int genphy_c45_pma_setup_forced(struct phy_device *phydev); 1858int genphy_c45_pma_baset1_setup_master_slave(struct phy_device *phydev); 1859int genphy_c45_an_config_aneg(struct phy_device *phydev); 1860int genphy_c45_an_disable_aneg(struct phy_device *phydev); 1861int genphy_c45_read_mdix(struct phy_device *phydev); 1862int genphy_c45_pma_read_abilities(struct phy_device *phydev); 1863int genphy_c45_pma_baset1_read_abilities(struct phy_device *phydev); 1864int genphy_c45_read_eee_abilities(struct phy_device *phydev); 1865int genphy_c45_pma_baset1_read_master_slave(struct phy_device *phydev); 1866int genphy_c45_read_status(struct phy_device *phydev); 1867int genphy_c45_baset1_read_status(struct phy_device *phydev); 1868int genphy_c45_config_aneg(struct phy_device *phydev); 1869int genphy_c45_loopback(struct phy_device *phydev, bool enable); 1870int genphy_c45_pma_resume(struct phy_device *phydev); 1871int genphy_c45_pma_suspend(struct phy_device *phydev); 1872int genphy_c45_fast_retrain(struct phy_device *phydev, bool enable); 1873int genphy_c45_plca_get_cfg(struct phy_device *phydev, 1874 struct phy_plca_cfg *plca_cfg); 1875int genphy_c45_plca_set_cfg(struct phy_device *phydev, 1876 const struct phy_plca_cfg *plca_cfg); 1877int genphy_c45_plca_get_status(struct phy_device *phydev, 1878 struct phy_plca_status *plca_st); 1879int genphy_c45_eee_is_active(struct phy_device *phydev, unsigned long *adv, 1880 unsigned long *lp, bool *is_enabled); 1881int genphy_c45_ethtool_get_eee(struct phy_device *phydev, 1882 struct ethtool_eee *data); 1883int genphy_c45_ethtool_set_eee(struct phy_device *phydev, 1884 struct ethtool_eee *data); 1885int genphy_c45_write_eee_adv(struct phy_device *phydev, unsigned long *adv); 1886int genphy_c45_an_config_eee_aneg(struct phy_device *phydev); 1887int genphy_c45_read_eee_adv(struct phy_device *phydev, unsigned long *adv); 1888 1889/* Generic C45 PHY driver */ 1890extern struct phy_driver genphy_c45_driver; 1891 1892/* The gen10g_* functions are the old Clause 45 stub */ 1893int gen10g_config_aneg(struct phy_device *phydev); 1894 1895static inline int phy_read_status(struct phy_device *phydev) 1896{ 1897 if (!phydev->drv) 1898 return -EIO; 1899 1900 if (phydev->drv->read_status) 1901 return phydev->drv->read_status(phydev); 1902 else 1903 return genphy_read_status(phydev); 1904} 1905 1906void phy_driver_unregister(struct phy_driver *drv); 1907void phy_drivers_unregister(struct phy_driver *drv, int n); 1908int phy_driver_register(struct phy_driver *new_driver, struct module *owner); 1909int phy_drivers_register(struct phy_driver *new_driver, int n, 1910 struct module *owner); 1911void phy_error(struct phy_device *phydev); 1912void phy_state_machine(struct work_struct *work); 1913void phy_queue_state_machine(struct phy_device *phydev, unsigned long jiffies); 1914void phy_trigger_machine(struct phy_device *phydev); 1915void phy_mac_interrupt(struct phy_device *phydev); 1916void phy_start_machine(struct phy_device *phydev); 1917void phy_stop_machine(struct phy_device *phydev); 1918void phy_ethtool_ksettings_get(struct phy_device *phydev, 1919 struct ethtool_link_ksettings *cmd); 1920int phy_ethtool_ksettings_set(struct phy_device *phydev, 1921 const struct ethtool_link_ksettings *cmd); 1922int phy_mii_ioctl(struct phy_device *phydev, struct ifreq *ifr, int cmd); 1923int phy_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd); 1924int phy_do_ioctl_running(struct net_device *dev, struct ifreq *ifr, int cmd); 1925int phy_disable_interrupts(struct phy_device *phydev); 1926void phy_request_interrupt(struct phy_device *phydev); 1927void phy_free_interrupt(struct phy_device *phydev); 1928void phy_print_status(struct phy_device *phydev); 1929int phy_get_rate_matching(struct phy_device *phydev, 1930 phy_interface_t iface); 1931void phy_set_max_speed(struct phy_device *phydev, u32 max_speed); 1932void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode); 1933void phy_advertise_supported(struct phy_device *phydev); 1934void phy_support_sym_pause(struct phy_device *phydev); 1935void phy_support_asym_pause(struct phy_device *phydev); 1936void phy_set_sym_pause(struct phy_device *phydev, bool rx, bool tx, 1937 bool autoneg); 1938void phy_set_asym_pause(struct phy_device *phydev, bool rx, bool tx); 1939bool phy_validate_pause(struct phy_device *phydev, 1940 struct ethtool_pauseparam *pp); 1941void phy_get_pause(struct phy_device *phydev, bool *tx_pause, bool *rx_pause); 1942 1943s32 phy_get_internal_delay(struct phy_device *phydev, struct device *dev, 1944 const int *delay_values, int size, bool is_rx); 1945 1946void phy_resolve_pause(unsigned long *local_adv, unsigned long *partner_adv, 1947 bool *tx_pause, bool *rx_pause); 1948 1949int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask, 1950 int (*run)(struct phy_device *)); 1951int phy_register_fixup_for_id(const char *bus_id, 1952 int (*run)(struct phy_device *)); 1953int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask, 1954 int (*run)(struct phy_device *)); 1955 1956int phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask); 1957int phy_unregister_fixup_for_id(const char *bus_id); 1958int phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask); 1959 1960int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable); 1961int phy_get_eee_err(struct phy_device *phydev); 1962int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data); 1963int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data); 1964int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol); 1965void phy_ethtool_get_wol(struct phy_device *phydev, 1966 struct ethtool_wolinfo *wol); 1967int phy_ethtool_get_link_ksettings(struct net_device *ndev, 1968 struct ethtool_link_ksettings *cmd); 1969int phy_ethtool_set_link_ksettings(struct net_device *ndev, 1970 const struct ethtool_link_ksettings *cmd); 1971int phy_ethtool_nway_reset(struct net_device *ndev); 1972int phy_package_join(struct phy_device *phydev, int addr, size_t priv_size); 1973void phy_package_leave(struct phy_device *phydev); 1974int devm_phy_package_join(struct device *dev, struct phy_device *phydev, 1975 int addr, size_t priv_size); 1976 1977int __init mdio_bus_init(void); 1978void mdio_bus_exit(void); 1979 1980int phy_ethtool_get_strings(struct phy_device *phydev, u8 *data); 1981int phy_ethtool_get_sset_count(struct phy_device *phydev); 1982int phy_ethtool_get_stats(struct phy_device *phydev, 1983 struct ethtool_stats *stats, u64 *data); 1984int phy_ethtool_get_plca_cfg(struct phy_device *phydev, 1985 struct phy_plca_cfg *plca_cfg); 1986int phy_ethtool_set_plca_cfg(struct phy_device *phydev, 1987 const struct phy_plca_cfg *plca_cfg, 1988 struct netlink_ext_ack *extack); 1989int phy_ethtool_get_plca_status(struct phy_device *phydev, 1990 struct phy_plca_status *plca_st); 1991 1992int __phy_hwtstamp_get(struct phy_device *phydev, 1993 struct kernel_hwtstamp_config *config); 1994int __phy_hwtstamp_set(struct phy_device *phydev, 1995 struct kernel_hwtstamp_config *config, 1996 struct netlink_ext_ack *extack); 1997 1998static inline int phy_package_read(struct phy_device *phydev, u32 regnum) 1999{ 2000 struct phy_package_shared *shared = phydev->shared; 2001 2002 if (!shared) 2003 return -EIO; 2004 2005 return mdiobus_read(phydev->mdio.bus, shared->addr, regnum); 2006} 2007 2008static inline int __phy_package_read(struct phy_device *phydev, u32 regnum) 2009{ 2010 struct phy_package_shared *shared = phydev->shared; 2011 2012 if (!shared) 2013 return -EIO; 2014 2015 return __mdiobus_read(phydev->mdio.bus, shared->addr, regnum); 2016} 2017 2018static inline int phy_package_write(struct phy_device *phydev, 2019 u32 regnum, u16 val) 2020{ 2021 struct phy_package_shared *shared = phydev->shared; 2022 2023 if (!shared) 2024 return -EIO; 2025 2026 return mdiobus_write(phydev->mdio.bus, shared->addr, regnum, val); 2027} 2028 2029static inline int __phy_package_write(struct phy_device *phydev, 2030 u32 regnum, u16 val) 2031{ 2032 struct phy_package_shared *shared = phydev->shared; 2033 2034 if (!shared) 2035 return -EIO; 2036 2037 return __mdiobus_write(phydev->mdio.bus, shared->addr, regnum, val); 2038} 2039 2040static inline bool __phy_package_set_once(struct phy_device *phydev, 2041 unsigned int b) 2042{ 2043 struct phy_package_shared *shared = phydev->shared; 2044 2045 if (!shared) 2046 return false; 2047 2048 return !test_and_set_bit(b, &shared->flags); 2049} 2050 2051static inline bool phy_package_init_once(struct phy_device *phydev) 2052{ 2053 return __phy_package_set_once(phydev, PHY_SHARED_F_INIT_DONE); 2054} 2055 2056static inline bool phy_package_probe_once(struct phy_device *phydev) 2057{ 2058 return __phy_package_set_once(phydev, PHY_SHARED_F_PROBE_DONE); 2059} 2060 2061extern struct bus_type mdio_bus_type; 2062 2063struct mdio_board_info { 2064 const char *bus_id; 2065 char modalias[MDIO_NAME_SIZE]; 2066 int mdio_addr; 2067 const void *platform_data; 2068}; 2069 2070#if IS_ENABLED(CONFIG_MDIO_DEVICE) 2071int mdiobus_register_board_info(const struct mdio_board_info *info, 2072 unsigned int n); 2073#else 2074static inline int mdiobus_register_board_info(const struct mdio_board_info *i, 2075 unsigned int n) 2076{ 2077 return 0; 2078} 2079#endif 2080 2081 2082/** 2083 * phy_module_driver() - Helper macro for registering PHY drivers 2084 * @__phy_drivers: array of PHY drivers to register 2085 * @__count: Numbers of members in array 2086 * 2087 * Helper macro for PHY drivers which do not do anything special in module 2088 * init/exit. Each module may only use this macro once, and calling it 2089 * replaces module_init() and module_exit(). 2090 */ 2091#define phy_module_driver(__phy_drivers, __count) \ 2092static int __init phy_module_init(void) \ 2093{ \ 2094 return phy_drivers_register(__phy_drivers, __count, THIS_MODULE); \ 2095} \ 2096module_init(phy_module_init); \ 2097static void __exit phy_module_exit(void) \ 2098{ \ 2099 phy_drivers_unregister(__phy_drivers, __count); \ 2100} \ 2101module_exit(phy_module_exit) 2102 2103#define module_phy_driver(__phy_drivers) \ 2104 phy_module_driver(__phy_drivers, ARRAY_SIZE(__phy_drivers)) 2105 2106bool phy_driver_is_genphy(struct phy_device *phydev); 2107bool phy_driver_is_genphy_10g(struct phy_device *phydev); 2108 2109#endif /* __PHY_H */