Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1 | /* |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 2 | * Framework and drivers for configuring and reading different PHYs |
Robert P. J. Day | d8de01b | 2018-12-26 06:35:23 -0600 | [diff] [blame] | 3 | * Based on code in sungem_phy.c and (long-removed) gianfar_phy.c |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 4 | * |
| 5 | * Author: Andy Fleming |
| 6 | * |
| 7 | * Copyright (c) 2004 Freescale Semiconductor, Inc. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify it |
| 10 | * under the terms of the GNU General Public License as published by the |
| 11 | * Free Software Foundation; either version 2 of the License, or (at your |
| 12 | * option) any later version. |
| 13 | * |
| 14 | */ |
| 15 | |
| 16 | #ifndef __PHY_H |
| 17 | #define __PHY_H |
| 18 | |
Andrew Lunn | 2220943 | 2016-01-06 20:11:13 +0100 | [diff] [blame] | 19 | #include <linux/compiler.h> |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 20 | #include <linux/spinlock.h> |
Maciej W. Rozycki | 13df29f | 2006-10-03 16:18:28 +0100 | [diff] [blame] | 21 | #include <linux/ethtool.h> |
Andrew Lunn | b31cdff | 2018-09-29 23:04:09 +0200 | [diff] [blame] | 22 | #include <linux/linkmode.h> |
Andrew Lunn | bac83c6 | 2016-01-06 20:11:07 +0100 | [diff] [blame] | 23 | #include <linux/mdio.h> |
Maciej W. Rozycki | 13df29f | 2006-10-03 16:18:28 +0100 | [diff] [blame] | 24 | #include <linux/mii.h> |
Russell King | 3e3aaf6 | 2015-09-24 20:36:02 +0100 | [diff] [blame] | 25 | #include <linux/module.h> |
Maciej W. Rozycki | 13df29f | 2006-10-03 16:18:28 +0100 | [diff] [blame] | 26 | #include <linux/timer.h> |
| 27 | #include <linux/workqueue.h> |
David Woodhouse | 8626d3b | 2010-04-02 01:05:27 +0000 | [diff] [blame] | 28 | #include <linux/mod_devicetable.h> |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 29 | |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 30 | #include <linux/atomic.h> |
Maciej W. Rozycki | 0ac4952 | 2007-09-28 22:42:14 -0700 | [diff] [blame] | 31 | |
Florian Fainelli | e9fbdf1 | 2013-12-05 14:52:13 -0800 | [diff] [blame] | 32 | #define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 33 | SUPPORTED_TP | \ |
| 34 | SUPPORTED_MII) |
| 35 | |
Florian Fainelli | e9fbdf1 | 2013-12-05 14:52:13 -0800 | [diff] [blame] | 36 | #define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \ |
| 37 | SUPPORTED_10baseT_Full) |
| 38 | |
| 39 | #define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \ |
| 40 | SUPPORTED_100baseT_Full) |
| 41 | |
| 42 | #define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 43 | SUPPORTED_1000baseT_Full) |
| 44 | |
Andrew Lunn | 719655a | 2018-09-29 23:04:16 +0200 | [diff] [blame] | 45 | extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_features) __ro_after_init; |
| 46 | extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_t1_features) __ro_after_init; |
| 47 | extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_features) __ro_after_init; |
| 48 | extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_fibre_features) __ro_after_init; |
| 49 | extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_all_ports_features) __ro_after_init; |
| 50 | extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_features) __ro_after_init; |
Andrew Lunn | 9e857a4 | 2019-01-15 16:55:30 +0100 | [diff] [blame] | 51 | extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_fec_features) __ro_after_init; |
Andrew Lunn | 719655a | 2018-09-29 23:04:16 +0200 | [diff] [blame] | 52 | extern __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_full_features) __ro_after_init; |
Florian Fainelli | e9fbdf1 | 2013-12-05 14:52:13 -0800 | [diff] [blame] | 53 | |
Andrew Lunn | 719655a | 2018-09-29 23:04:16 +0200 | [diff] [blame] | 54 | #define PHY_BASIC_FEATURES ((unsigned long *)&phy_basic_features) |
| 55 | #define PHY_BASIC_T1_FEATURES ((unsigned long *)&phy_basic_t1_features) |
| 56 | #define PHY_GBIT_FEATURES ((unsigned long *)&phy_gbit_features) |
| 57 | #define PHY_GBIT_FIBRE_FEATURES ((unsigned long *)&phy_gbit_fibre_features) |
| 58 | #define PHY_GBIT_ALL_PORTS_FEATURES ((unsigned long *)&phy_gbit_all_ports_features) |
| 59 | #define PHY_10GBIT_FEATURES ((unsigned long *)&phy_10gbit_features) |
Andrew Lunn | 9e857a4 | 2019-01-15 16:55:30 +0100 | [diff] [blame] | 60 | #define PHY_10GBIT_FEC_FEATURES ((unsigned long *)&phy_10gbit_fec_features) |
Andrew Lunn | 719655a | 2018-09-29 23:04:16 +0200 | [diff] [blame] | 61 | #define PHY_10GBIT_FULL_FEATURES ((unsigned long *)&phy_10gbit_full_features) |
Florian Fainelli | e9fbdf1 | 2013-12-05 14:52:13 -0800 | [diff] [blame] | 62 | |
Andrew Lunn | 3c1bcc8 | 2018-11-10 23:43:33 +0100 | [diff] [blame] | 63 | extern const int phy_10_100_features_array[4]; |
| 64 | extern const int phy_basic_t1_features_array[2]; |
| 65 | extern const int phy_gbit_features_array[2]; |
| 66 | extern const int phy_10gbit_features_array[1]; |
| 67 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 68 | /* |
| 69 | * Set phydev->irq to PHY_POLL if interrupts are not supported, |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 70 | * or not desired for this PHY. Set to PHY_IGNORE_INTERRUPT if |
| 71 | * the attached driver handles the interrupt |
| 72 | */ |
| 73 | #define PHY_POLL -1 |
| 74 | #define PHY_IGNORE_INTERRUPT -2 |
| 75 | |
Heiner Kallweit | a4307c0 | 2018-11-09 18:17:22 +0100 | [diff] [blame] | 76 | #define PHY_IS_INTERNAL 0x00000001 |
| 77 | #define PHY_RST_AFTER_CLK_EN 0x00000002 |
Andrew Lunn | a9049e0 | 2016-01-06 20:11:26 +0100 | [diff] [blame] | 78 | #define MDIO_DEVICE_IS_PHY 0x80000000 |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 79 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 80 | /* Interface Mode definitions */ |
| 81 | typedef enum { |
Shawn Guo | 4157ef1 | 2011-07-05 16:42:09 +0800 | [diff] [blame] | 82 | PHY_INTERFACE_MODE_NA, |
Florian Fainelli | 735d8a1 | 2017-06-23 10:33:14 -0700 | [diff] [blame] | 83 | PHY_INTERFACE_MODE_INTERNAL, |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 84 | PHY_INTERFACE_MODE_MII, |
| 85 | PHY_INTERFACE_MODE_GMII, |
| 86 | PHY_INTERFACE_MODE_SGMII, |
| 87 | PHY_INTERFACE_MODE_TBI, |
Florian Fainelli | 2cc70ba | 2013-05-28 04:07:21 +0000 | [diff] [blame] | 88 | PHY_INTERFACE_MODE_REVMII, |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 89 | PHY_INTERFACE_MODE_RMII, |
| 90 | PHY_INTERFACE_MODE_RGMII, |
Kim Phillips | a999589 | 2007-04-13 01:25:57 -0500 | [diff] [blame] | 91 | PHY_INTERFACE_MODE_RGMII_ID, |
Kim Phillips | 7d400a4 | 2007-11-26 16:17:48 -0600 | [diff] [blame] | 92 | PHY_INTERFACE_MODE_RGMII_RXID, |
| 93 | PHY_INTERFACE_MODE_RGMII_TXID, |
Shawn Guo | 4157ef1 | 2011-07-05 16:42:09 +0800 | [diff] [blame] | 94 | PHY_INTERFACE_MODE_RTBI, |
| 95 | PHY_INTERFACE_MODE_SMII, |
Andy Fleming | 898dd0b | 2014-01-10 14:26:46 +0800 | [diff] [blame] | 96 | PHY_INTERFACE_MODE_XGMII, |
Florian Fainelli | fd70f72 | 2014-02-13 16:08:42 -0800 | [diff] [blame] | 97 | PHY_INTERFACE_MODE_MOCA, |
Thomas Petazzoni | b9d1208 | 2014-04-15 15:50:19 +0200 | [diff] [blame] | 98 | PHY_INTERFACE_MODE_QSGMII, |
Sean Wang | 572de60 | 2016-09-22 10:33:54 +0800 | [diff] [blame] | 99 | PHY_INTERFACE_MODE_TRGMII, |
Andrew Lunn | 55601a8 | 2017-02-04 20:02:49 +0100 | [diff] [blame] | 100 | PHY_INTERFACE_MODE_1000BASEX, |
| 101 | PHY_INTERFACE_MODE_2500BASEX, |
| 102 | PHY_INTERFACE_MODE_RXAUI, |
Russell King | c125ca0 | 2017-06-05 12:23:10 +0100 | [diff] [blame] | 103 | PHY_INTERFACE_MODE_XAUI, |
| 104 | /* 10GBASE-KR, XFI, SFI - single lane 10G Serdes */ |
| 105 | PHY_INTERFACE_MODE_10GKR, |
Heiner Kallweit | 4618d67 | 2019-05-23 20:06:49 +0200 | [diff] [blame] | 106 | PHY_INTERFACE_MODE_USXGMII, |
Florian Fainelli | 8a2fe56 | 2014-02-11 17:27:39 -0800 | [diff] [blame] | 107 | PHY_INTERFACE_MODE_MAX, |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 108 | } phy_interface_t; |
| 109 | |
Florian Fainelli | 8a2fe56 | 2014-02-11 17:27:39 -0800 | [diff] [blame] | 110 | /** |
Zach Brown | 1f9127c | 2016-10-17 10:49:54 -0500 | [diff] [blame] | 111 | * phy_supported_speeds - return all speeds currently supported by a phy device |
| 112 | * @phy: The phy device to return supported speeds of. |
| 113 | * @speeds: buffer to store supported speeds in. |
| 114 | * @size: size of speeds buffer. |
| 115 | * |
Robert P. J. Day | d8de01b | 2018-12-26 06:35:23 -0600 | [diff] [blame] | 116 | * Description: Returns the number of supported speeds, and fills |
| 117 | * the speeds buffer with the supported speeds. If speeds buffer is |
| 118 | * too small to contain all currently supported speeds, will return as |
Zach Brown | 1f9127c | 2016-10-17 10:49:54 -0500 | [diff] [blame] | 119 | * many speeds as can fit. |
| 120 | */ |
| 121 | unsigned int phy_supported_speeds(struct phy_device *phy, |
| 122 | unsigned int *speeds, |
| 123 | unsigned int size); |
| 124 | |
| 125 | /** |
Robert P. J. Day | d8de01b | 2018-12-26 06:35:23 -0600 | [diff] [blame] | 126 | * phy_modes - map phy_interface_t enum to device tree binding of phy-mode |
| 127 | * @interface: enum phy_interface_t value |
| 128 | * |
| 129 | * Description: maps 'enum phy_interface_t' defined in this file |
Florian Fainelli | 8a2fe56 | 2014-02-11 17:27:39 -0800 | [diff] [blame] | 130 | * into the device tree binding of 'phy-mode', so that Ethernet |
| 131 | * device driver can get phy interface from device tree. |
| 132 | */ |
| 133 | static inline const char *phy_modes(phy_interface_t interface) |
| 134 | { |
| 135 | switch (interface) { |
| 136 | case PHY_INTERFACE_MODE_NA: |
| 137 | return ""; |
Florian Fainelli | 735d8a1 | 2017-06-23 10:33:14 -0700 | [diff] [blame] | 138 | case PHY_INTERFACE_MODE_INTERNAL: |
| 139 | return "internal"; |
Florian Fainelli | 8a2fe56 | 2014-02-11 17:27:39 -0800 | [diff] [blame] | 140 | case PHY_INTERFACE_MODE_MII: |
| 141 | return "mii"; |
| 142 | case PHY_INTERFACE_MODE_GMII: |
| 143 | return "gmii"; |
| 144 | case PHY_INTERFACE_MODE_SGMII: |
| 145 | return "sgmii"; |
| 146 | case PHY_INTERFACE_MODE_TBI: |
| 147 | return "tbi"; |
| 148 | case PHY_INTERFACE_MODE_REVMII: |
| 149 | return "rev-mii"; |
| 150 | case PHY_INTERFACE_MODE_RMII: |
| 151 | return "rmii"; |
| 152 | case PHY_INTERFACE_MODE_RGMII: |
| 153 | return "rgmii"; |
| 154 | case PHY_INTERFACE_MODE_RGMII_ID: |
| 155 | return "rgmii-id"; |
| 156 | case PHY_INTERFACE_MODE_RGMII_RXID: |
| 157 | return "rgmii-rxid"; |
| 158 | case PHY_INTERFACE_MODE_RGMII_TXID: |
| 159 | return "rgmii-txid"; |
| 160 | case PHY_INTERFACE_MODE_RTBI: |
| 161 | return "rtbi"; |
| 162 | case PHY_INTERFACE_MODE_SMII: |
| 163 | return "smii"; |
| 164 | case PHY_INTERFACE_MODE_XGMII: |
| 165 | return "xgmii"; |
Florian Fainelli | fd70f72 | 2014-02-13 16:08:42 -0800 | [diff] [blame] | 166 | case PHY_INTERFACE_MODE_MOCA: |
| 167 | return "moca"; |
Thomas Petazzoni | b9d1208 | 2014-04-15 15:50:19 +0200 | [diff] [blame] | 168 | case PHY_INTERFACE_MODE_QSGMII: |
| 169 | return "qsgmii"; |
Sean Wang | 572de60 | 2016-09-22 10:33:54 +0800 | [diff] [blame] | 170 | case PHY_INTERFACE_MODE_TRGMII: |
| 171 | return "trgmii"; |
Andrew Lunn | 55601a8 | 2017-02-04 20:02:49 +0100 | [diff] [blame] | 172 | case PHY_INTERFACE_MODE_1000BASEX: |
| 173 | return "1000base-x"; |
| 174 | case PHY_INTERFACE_MODE_2500BASEX: |
| 175 | return "2500base-x"; |
| 176 | case PHY_INTERFACE_MODE_RXAUI: |
| 177 | return "rxaui"; |
Russell King | c125ca0 | 2017-06-05 12:23:10 +0100 | [diff] [blame] | 178 | case PHY_INTERFACE_MODE_XAUI: |
| 179 | return "xaui"; |
| 180 | case PHY_INTERFACE_MODE_10GKR: |
| 181 | return "10gbase-kr"; |
Heiner Kallweit | 4618d67 | 2019-05-23 20:06:49 +0200 | [diff] [blame] | 182 | case PHY_INTERFACE_MODE_USXGMII: |
| 183 | return "usxgmii"; |
Florian Fainelli | 8a2fe56 | 2014-02-11 17:27:39 -0800 | [diff] [blame] | 184 | default: |
| 185 | return "unknown"; |
| 186 | } |
| 187 | } |
| 188 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 189 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 190 | #define PHY_INIT_TIMEOUT 100000 |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 191 | #define PHY_STATE_TIME 1 |
| 192 | #define PHY_FORCE_TIMEOUT 10 |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 193 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 194 | #define PHY_MAX_ADDR 32 |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 195 | |
Kumar Gala | a4d00f1 | 2006-01-11 11:27:33 -0800 | [diff] [blame] | 196 | /* Used when trying to connect to a specific phy (mii bus id:phy device id) */ |
Andy Fleming | 9d9326d3 | 2008-04-09 19:38:13 -0500 | [diff] [blame] | 197 | #define PHY_ID_FMT "%s:%02x" |
| 198 | |
Volodymyr Bendiuga | 4567d68 | 2017-01-19 17:05:04 +0100 | [diff] [blame] | 199 | #define MII_BUS_ID_SIZE 61 |
Kumar Gala | a4d00f1 | 2006-01-11 11:27:33 -0800 | [diff] [blame] | 200 | |
Jason Gunthorpe | abf35df | 2010-03-09 09:17:42 +0000 | [diff] [blame] | 201 | /* Or MII_ADDR_C45 into regnum for read/write on mii_bus to enable the 21 bit |
| 202 | IEEE 802.3ae clause 45 addressing mode used by 10GIGE phy chips. */ |
| 203 | #define MII_ADDR_C45 (1<<30) |
| 204 | |
Paul Gortmaker | 313162d | 2012-01-30 11:46:54 -0500 | [diff] [blame] | 205 | struct device; |
Russell King | 9525ae8 | 2017-07-25 15:03:13 +0100 | [diff] [blame] | 206 | struct phylink; |
Paul Gortmaker | 313162d | 2012-01-30 11:46:54 -0500 | [diff] [blame] | 207 | struct sk_buff; |
| 208 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 209 | /* |
| 210 | * The Bus class for PHYs. Devices which provide access to |
| 211 | * PHYs should register using this structure |
| 212 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 213 | struct mii_bus { |
Russell King | 3e3aaf6 | 2015-09-24 20:36:02 +0100 | [diff] [blame] | 214 | struct module *owner; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 215 | const char *name; |
Andy Fleming | 9d9326d3 | 2008-04-09 19:38:13 -0500 | [diff] [blame] | 216 | char id[MII_BUS_ID_SIZE]; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 217 | void *priv; |
Andrew Lunn | ccaa953 | 2016-01-06 20:11:06 +0100 | [diff] [blame] | 218 | int (*read)(struct mii_bus *bus, int addr, int regnum); |
| 219 | int (*write)(struct mii_bus *bus, int addr, int regnum, u16 val); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 220 | int (*reset)(struct mii_bus *bus); |
| 221 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 222 | /* |
| 223 | * A lock to ensure that only one thing can read/write |
| 224 | * the MDIO bus at a time |
| 225 | */ |
Nate Case | 35b5f6b | 2008-01-29 10:05:09 -0600 | [diff] [blame] | 226 | struct mutex mdio_lock; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 227 | |
Lennert Buytenhek | 18ee49d | 2008-10-01 15:41:33 +0000 | [diff] [blame] | 228 | struct device *parent; |
Lennert Buytenhek | 46abc02 | 2008-10-08 16:33:40 -0700 | [diff] [blame] | 229 | enum { |
| 230 | MDIOBUS_ALLOCATED = 1, |
| 231 | MDIOBUS_REGISTERED, |
| 232 | MDIOBUS_UNREGISTERED, |
| 233 | MDIOBUS_RELEASED, |
| 234 | } state; |
| 235 | struct device dev; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 236 | |
| 237 | /* list of all PHYs on bus */ |
Andrew Lunn | 7f85442 | 2016-01-06 20:11:18 +0100 | [diff] [blame] | 238 | struct mdio_device *mdio_map[PHY_MAX_ADDR]; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 239 | |
Peter Meerwald | c688399 | 2010-09-02 04:06:24 +0000 | [diff] [blame] | 240 | /* PHY addresses to be ignored when probing */ |
Matt Porter | f896424 | 2005-11-02 16:13:06 -0700 | [diff] [blame] | 241 | u32 phy_mask; |
| 242 | |
Florian Fainelli | 922f2dd | 2015-05-12 10:33:24 -0700 | [diff] [blame] | 243 | /* PHY addresses to ignore the TA/read failure */ |
| 244 | u32 phy_ignore_ta_mask; |
| 245 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 246 | /* |
Andrew Lunn | e7f4dc3 | 2016-01-06 20:11:15 +0100 | [diff] [blame] | 247 | * An array of interrupts, each PHY's interrupt at the index |
| 248 | * matching its address |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 249 | */ |
Andrew Lunn | e7f4dc3 | 2016-01-06 20:11:15 +0100 | [diff] [blame] | 250 | int irq[PHY_MAX_ADDR]; |
Roger Quadros | 6922689 | 2017-04-21 16:15:38 +0300 | [diff] [blame] | 251 | |
| 252 | /* GPIO reset pulse width in microseconds */ |
| 253 | int reset_delay_us; |
Sergei Shtylyov | d396e84 | 2017-06-12 23:55:38 +0300 | [diff] [blame] | 254 | /* RESET GPIO descriptor pointer */ |
| 255 | struct gpio_desc *reset_gpiod; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 256 | }; |
Lennert Buytenhek | 46abc02 | 2008-10-08 16:33:40 -0700 | [diff] [blame] | 257 | #define to_mii_bus(d) container_of(d, struct mii_bus, dev) |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 258 | |
Timur Tabi | eb8a54a7 | 2012-01-12 15:23:04 -0800 | [diff] [blame] | 259 | struct mii_bus *mdiobus_alloc_size(size_t); |
| 260 | static inline struct mii_bus *mdiobus_alloc(void) |
| 261 | { |
| 262 | return mdiobus_alloc_size(0); |
| 263 | } |
| 264 | |
Russell King | 3e3aaf6 | 2015-09-24 20:36:02 +0100 | [diff] [blame] | 265 | int __mdiobus_register(struct mii_bus *bus, struct module *owner); |
| 266 | #define mdiobus_register(bus) __mdiobus_register(bus, THIS_MODULE) |
Lennert Buytenhek | 2e88810 | 2008-09-29 17:12:35 +0000 | [diff] [blame] | 267 | void mdiobus_unregister(struct mii_bus *bus); |
| 268 | void mdiobus_free(struct mii_bus *bus); |
Grygorii Strashko | 6d48f44 | 2014-04-30 15:23:33 +0300 | [diff] [blame] | 269 | struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv); |
| 270 | static inline struct mii_bus *devm_mdiobus_alloc(struct device *dev) |
| 271 | { |
| 272 | return devm_mdiobus_alloc_size(dev, 0); |
| 273 | } |
| 274 | |
| 275 | void devm_mdiobus_free(struct device *dev, struct mii_bus *bus); |
Lennert Buytenhek | 2e88810 | 2008-09-29 17:12:35 +0000 | [diff] [blame] | 276 | struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr); |
Lennert Buytenhek | 2e88810 | 2008-09-29 17:12:35 +0000 | [diff] [blame] | 277 | |
Heiner Kallweit | 695bce8 | 2018-11-09 18:35:52 +0100 | [diff] [blame] | 278 | #define PHY_INTERRUPT_DISABLED false |
| 279 | #define PHY_INTERRUPT_ENABLED true |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 280 | |
| 281 | /* PHY state machine states: |
| 282 | * |
| 283 | * DOWN: PHY device and driver are not ready for anything. probe |
| 284 | * should be called if and only if the PHY is in this state, |
| 285 | * given that the PHY device exists. |
Heiner Kallweit | 899a3cb | 2018-11-10 23:40:50 +0100 | [diff] [blame] | 286 | * - PHY driver probe function will set the state to READY |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 287 | * |
| 288 | * READY: PHY is ready to send and receive packets, but the |
| 289 | * controller is not. By default, PHYs which do not implement |
Heiner Kallweit | 899a3cb | 2018-11-10 23:40:50 +0100 | [diff] [blame] | 290 | * probe will be set to this state by phy_probe(). |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 291 | * - start will set the state to UP |
| 292 | * |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 293 | * UP: The PHY and attached device are ready to do work. |
| 294 | * Interrupts should be started here. |
Heiner Kallweit | 85a1f31 | 2018-11-07 20:46:51 +0100 | [diff] [blame] | 295 | * - timer moves to NOLINK or RUNNING |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 296 | * |
| 297 | * NOLINK: PHY is up, but not currently plugged in. |
Heiner Kallweit | 8deeb63 | 2018-11-09 18:55:50 +0100 | [diff] [blame] | 298 | * - irq or timer will set RUNNING if link comes back |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 299 | * - phy_stop moves to HALTED |
| 300 | * |
| 301 | * FORCING: PHY is being configured with forced settings |
| 302 | * - if link is up, move to RUNNING |
| 303 | * - If link is down, we drop to the next highest setting, and |
| 304 | * retry (FORCING) after a timeout |
| 305 | * - phy_stop moves to HALTED |
| 306 | * |
| 307 | * RUNNING: PHY is currently up, running, and possibly sending |
| 308 | * and/or receiving packets |
Heiner Kallweit | 8deeb63 | 2018-11-09 18:55:50 +0100 | [diff] [blame] | 309 | * - irq or timer will set NOLINK if link goes down |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 310 | * - phy_stop moves to HALTED |
| 311 | * |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 312 | * HALTED: PHY is up, but no polling or interrupts are done. Or |
| 313 | * PHY is in an error state. |
Heiner Kallweit | f24098f | 2019-05-01 22:14:21 +0200 | [diff] [blame] | 314 | * - phy_start moves to UP |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 315 | */ |
| 316 | enum phy_state { |
Sergei Shtylyov | 4017b4d | 2014-01-05 03:20:17 +0300 | [diff] [blame] | 317 | PHY_DOWN = 0, |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 318 | PHY_READY, |
Heiner Kallweit | 2b3e88e | 2018-12-16 18:30:14 +0100 | [diff] [blame] | 319 | PHY_HALTED, |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 320 | PHY_UP, |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 321 | PHY_RUNNING, |
| 322 | PHY_NOLINK, |
| 323 | PHY_FORCING, |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 324 | }; |
| 325 | |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 326 | /** |
| 327 | * struct phy_c45_device_ids - 802.3-c45 Device Identifiers |
| 328 | * @devices_in_package: Bit vector of devices present. |
| 329 | * @device_ids: The device identifer for each present device. |
| 330 | */ |
| 331 | struct phy_c45_device_ids { |
| 332 | u32 devices_in_package; |
| 333 | u32 device_ids[8]; |
| 334 | }; |
Richard Cochran | c1f19b5 | 2010-07-17 08:49:36 +0000 | [diff] [blame] | 335 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 336 | /* phy_device: An instance of a PHY |
| 337 | * |
| 338 | * drv: Pointer to the driver for this PHY instance |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 339 | * phy_id: UID for this device found during discovery |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 340 | * c45_ids: 802.3-c45 Device Identifers if is_c45. |
| 341 | * is_c45: Set to true if this phy uses clause 45 addressing. |
Florian Fainelli | 4284b6a | 2013-05-23 01:11:12 +0000 | [diff] [blame] | 342 | * is_internal: Set to true if this phy is internal to a MAC. |
Florian Fainelli | 5a11dd7 | 2015-08-31 15:56:46 +0200 | [diff] [blame] | 343 | * is_pseudo_fixed_link: Set to true if this phy is an Ethernet switch, etc. |
Heiner Kallweit | 3b8b11f | 2019-04-05 21:23:13 +0200 | [diff] [blame] | 344 | * is_gigabit_capable: Set to true if PHY supports 1000Mbps |
Florian Fainelli | aae8826 | 2015-01-26 22:05:38 -0800 | [diff] [blame] | 345 | * has_fixups: Set to true if this phy has fixups/quirks. |
Florian Fainelli | 8a477a6 | 2015-01-26 22:05:39 -0800 | [diff] [blame] | 346 | * suspended: Set to true if this phy has been suspended successfully. |
Florian Fainelli | a399546 | 2017-05-27 10:42:25 -0700 | [diff] [blame] | 347 | * sysfs_links: Internal boolean tracking sysfs symbolic links setup/removal. |
Lin Yun Sheng | f0f9b4e | 2017-06-30 17:44:15 +0800 | [diff] [blame] | 348 | * loopback_enabled: Set true if this phy has been loopbacked successfully. |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 349 | * state: state of the PHY for management purposes |
| 350 | * dev_flags: Device-specific flags used by the PHY driver. |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 351 | * link_timeout: The number of timer firings to wait before the |
| 352 | * giving up on the current attempt at acquiring a link |
| 353 | * irq: IRQ number of the PHY's interrupt (-1 if none) |
| 354 | * phy_timer: The timer for handling the state machine |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 355 | * attached_dev: The attached enet driver's device instance ptr |
| 356 | * adjust_link: Callback for the enet controller to respond to |
| 357 | * changes in the link state. |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 358 | * |
Florian Fainelli | 114002b | 2013-12-06 13:01:30 -0800 | [diff] [blame] | 359 | * speed, duplex, pause, supported, advertising, lp_advertising, |
| 360 | * and autoneg are used like in mii_if_info |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 361 | * |
| 362 | * interrupts currently only supports enabled or disabled, |
| 363 | * but could be changed in the future to support enabling |
| 364 | * and disabling specific interrupts |
| 365 | * |
| 366 | * Contains some infrastructure for polling and interrupt |
| 367 | * handling, as well as handling shifts in PHY hardware state |
| 368 | */ |
| 369 | struct phy_device { |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 370 | struct mdio_device mdio; |
| 371 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 372 | /* Information about the PHY type */ |
| 373 | /* And management functions */ |
| 374 | struct phy_driver *drv; |
| 375 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 376 | u32 phy_id; |
| 377 | |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 378 | struct phy_c45_device_ids c45_ids; |
Heiner Kallweit | 87e5808 | 2018-05-23 08:05:20 +0200 | [diff] [blame] | 379 | unsigned is_c45:1; |
| 380 | unsigned is_internal:1; |
| 381 | unsigned is_pseudo_fixed_link:1; |
Heiner Kallweit | 3b8b11f | 2019-04-05 21:23:13 +0200 | [diff] [blame] | 382 | unsigned is_gigabit_capable:1; |
Heiner Kallweit | 87e5808 | 2018-05-23 08:05:20 +0200 | [diff] [blame] | 383 | unsigned has_fixups:1; |
| 384 | unsigned suspended:1; |
| 385 | unsigned sysfs_links:1; |
| 386 | unsigned loopback_enabled:1; |
| 387 | |
| 388 | unsigned autoneg:1; |
| 389 | /* The most recently read link state */ |
| 390 | unsigned link:1; |
Heiner Kallweit | 4950c2b | 2019-04-02 20:43:30 +0200 | [diff] [blame] | 391 | unsigned autoneg_complete:1; |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 392 | |
Heiner Kallweit | 695bce8 | 2018-11-09 18:35:52 +0100 | [diff] [blame] | 393 | /* Interrupts are enabled */ |
| 394 | unsigned interrupts:1; |
| 395 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 396 | enum phy_state state; |
| 397 | |
| 398 | u32 dev_flags; |
| 399 | |
Andy Fleming | e8a2b6a | 2006-12-01 12:01:06 -0600 | [diff] [blame] | 400 | phy_interface_t interface; |
| 401 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 402 | /* |
| 403 | * forced speed & duplex (no autoneg) |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 404 | * partner speed & duplex & pause (autoneg) |
| 405 | */ |
| 406 | int speed; |
| 407 | int duplex; |
| 408 | int pause; |
| 409 | int asym_pause; |
| 410 | |
Andrew Lunn | 3c1bcc8 | 2018-11-10 23:43:33 +0100 | [diff] [blame] | 411 | /* Union of PHY and Attached devices' supported link modes */ |
| 412 | /* See ethtool.h for more info */ |
| 413 | __ETHTOOL_DECLARE_LINK_MODE_MASK(supported); |
| 414 | __ETHTOOL_DECLARE_LINK_MODE_MASK(advertising); |
Andrew Lunn | c0ec3c2 | 2018-11-10 23:43:34 +0100 | [diff] [blame] | 415 | __ETHTOOL_DECLARE_LINK_MODE_MASK(lp_advertising); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 416 | |
jbrunet | d853d14 | 2016-11-28 10:46:46 +0100 | [diff] [blame] | 417 | /* Energy efficient ethernet modes which should be prohibited */ |
| 418 | u32 eee_broken_modes; |
| 419 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 420 | int link_timeout; |
| 421 | |
Zach Brown | 2e0bc45 | 2016-10-17 10:49:55 -0500 | [diff] [blame] | 422 | #ifdef CONFIG_LED_TRIGGER_PHY |
| 423 | struct phy_led_trigger *phy_led_triggers; |
| 424 | unsigned int phy_num_led_triggers; |
| 425 | struct phy_led_trigger *last_triggered; |
Maciej S. Szmigiero | 3928ee6 | 2017-11-02 00:49:18 +0100 | [diff] [blame] | 426 | |
| 427 | struct phy_led_trigger *led_link_trigger; |
Zach Brown | 2e0bc45 | 2016-10-17 10:49:55 -0500 | [diff] [blame] | 428 | #endif |
| 429 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 430 | /* |
| 431 | * Interrupt number for this PHY |
| 432 | * -1 means no interrupt |
| 433 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 434 | int irq; |
| 435 | |
| 436 | /* private data pointer */ |
| 437 | /* For use by PHYs to maintain extra state */ |
| 438 | void *priv; |
| 439 | |
| 440 | /* Interrupt and Polling infrastructure */ |
Marcin Slusarz | a390d1f | 2009-03-13 15:41:19 -0700 | [diff] [blame] | 441 | struct delayed_work state_queue; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 442 | |
Nate Case | 35b5f6b | 2008-01-29 10:05:09 -0600 | [diff] [blame] | 443 | struct mutex lock; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 444 | |
Russell King | 9525ae8 | 2017-07-25 15:03:13 +0100 | [diff] [blame] | 445 | struct phylink *phylink; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 446 | struct net_device *attached_dev; |
| 447 | |
David Thomson | 634ec36 | 2015-07-10 13:56:54 +1200 | [diff] [blame] | 448 | u8 mdix; |
Raju Lakkaraju | f4ed2fe | 2016-11-29 15:16:46 +0530 | [diff] [blame] | 449 | u8 mdix_ctrl; |
David Thomson | 634ec36 | 2015-07-10 13:56:54 +1200 | [diff] [blame] | 450 | |
Russell King | a81497b | 2017-07-25 15:02:58 +0100 | [diff] [blame] | 451 | void (*phy_link_change)(struct phy_device *, bool up, bool do_carrier); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 452 | void (*adjust_link)(struct net_device *dev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 453 | }; |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 454 | #define to_phy_device(d) container_of(to_mdio_device(d), \ |
| 455 | struct phy_device, mdio) |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 456 | |
| 457 | /* struct phy_driver: Driver structure for a particular PHY type |
| 458 | * |
Andrew Lunn | a9049e0 | 2016-01-06 20:11:26 +0100 | [diff] [blame] | 459 | * driver_data: static driver data |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 460 | * phy_id: The result of reading the UID registers of this PHY |
| 461 | * type, and ANDing them with the phy_id_mask. This driver |
| 462 | * only works for PHYs with IDs which match this field |
| 463 | * name: The friendly name of this PHY type |
| 464 | * phy_id_mask: Defines the important bits of the phy_id |
Camelia Groza | 3e64cf7 | 2019-01-17 14:22:36 +0200 | [diff] [blame] | 465 | * features: A mandatory list of features (speed, duplex, etc) |
| 466 | * supported by this PHY |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 467 | * flags: A bitfield defining certain other features this PHY |
| 468 | * supports (like interrupts) |
| 469 | * |
Heiner Kallweit | 00fde79 | 2017-11-30 23:46:19 +0100 | [diff] [blame] | 470 | * All functions are optional. If config_aneg or read_status |
| 471 | * are not implemented, the phy core uses the genphy versions. |
| 472 | * Note that none of these functions should be called from |
| 473 | * interrupt time. The goal is for the bus read/write functions |
| 474 | * to be able to block when the bus transaction is happening, |
| 475 | * and be freed up by an interrupt (The MPC85xx has this ability, |
| 476 | * though it is not currently supported in the driver). |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 477 | */ |
| 478 | struct phy_driver { |
Andrew Lunn | a9049e0 | 2016-01-06 20:11:26 +0100 | [diff] [blame] | 479 | struct mdio_driver_common mdiodrv; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 480 | u32 phy_id; |
| 481 | char *name; |
Richard Leitner | 511e3036 | 2017-11-27 08:16:45 +0100 | [diff] [blame] | 482 | u32 phy_id_mask; |
Andrew Lunn | 719655a | 2018-09-29 23:04:16 +0200 | [diff] [blame] | 483 | const unsigned long * const features; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 484 | u32 flags; |
Johan Hovold | 860f6e9 | 2014-11-19 12:59:14 +0100 | [diff] [blame] | 485 | const void *driver_data; |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 486 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 487 | /* |
Florian Fainelli | 9df81dd | 2014-02-17 13:34:03 -0800 | [diff] [blame] | 488 | * Called to issue a PHY software reset |
| 489 | */ |
| 490 | int (*soft_reset)(struct phy_device *phydev); |
| 491 | |
| 492 | /* |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 493 | * Called to initialize the PHY, |
| 494 | * including after a reset |
| 495 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 496 | int (*config_init)(struct phy_device *phydev); |
| 497 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 498 | /* |
| 499 | * Called during discovery. Used to set |
| 500 | * up device-specific structures, if any |
| 501 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 502 | int (*probe)(struct phy_device *phydev); |
| 503 | |
Andrew Lunn | efbdfdc | 2019-02-09 15:24:47 +0100 | [diff] [blame] | 504 | /* |
| 505 | * Probe the hardware to determine what abilities it has. |
| 506 | * Should only set phydev->supported. |
| 507 | */ |
| 508 | int (*get_features)(struct phy_device *phydev); |
| 509 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 510 | /* PHY Power Management */ |
| 511 | int (*suspend)(struct phy_device *phydev); |
| 512 | int (*resume)(struct phy_device *phydev); |
| 513 | |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 514 | /* |
| 515 | * Configures the advertisement and resets |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 516 | * autonegotiation if phydev->autoneg is on, |
| 517 | * forces the speed to the current settings in phydev |
Andy Fleming | c5e38a9 | 2008-04-09 19:38:27 -0500 | [diff] [blame] | 518 | * if phydev->autoneg is off |
| 519 | */ |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 520 | int (*config_aneg)(struct phy_device *phydev); |
| 521 | |
Florian Fainelli | 76a423a | 2014-02-11 17:27:37 -0800 | [diff] [blame] | 522 | /* Determines the auto negotiation result */ |
| 523 | int (*aneg_done)(struct phy_device *phydev); |
| 524 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 525 | /* Determines the negotiated speed and duplex */ |
| 526 | int (*read_status)(struct phy_device *phydev); |
| 527 | |
| 528 | /* Clears any pending interrupts */ |
| 529 | int (*ack_interrupt)(struct phy_device *phydev); |
| 530 | |
| 531 | /* Enables or disables interrupts */ |
| 532 | int (*config_intr)(struct phy_device *phydev); |
| 533 | |
Anatolij Gustschin | a8729eb3 | 2009-04-07 02:01:42 +0000 | [diff] [blame] | 534 | /* |
| 535 | * Checks if the PHY generated an interrupt. |
| 536 | * For multi-PHY devices with shared PHY interrupt pin |
| 537 | */ |
| 538 | int (*did_interrupt)(struct phy_device *phydev); |
| 539 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 540 | /* Clears up any memory if needed */ |
| 541 | void (*remove)(struct phy_device *phydev); |
| 542 | |
David Daney | a30e2c1 | 2012-06-27 07:33:37 +0000 | [diff] [blame] | 543 | /* Returns true if this is a suitable driver for the given |
| 544 | * phydev. If NULL, matching is based on phy_id and |
| 545 | * phy_id_mask. |
| 546 | */ |
| 547 | int (*match_phy_device)(struct phy_device *phydev); |
| 548 | |
Richard Cochran | c8f3a8c | 2012-04-03 22:59:17 +0000 | [diff] [blame] | 549 | /* Handles ethtool queries for hardware time stamping. */ |
| 550 | int (*ts_info)(struct phy_device *phydev, struct ethtool_ts_info *ti); |
| 551 | |
Richard Cochran | c1f19b5 | 2010-07-17 08:49:36 +0000 | [diff] [blame] | 552 | /* Handles SIOCSHWTSTAMP ioctl for hardware time stamping. */ |
| 553 | int (*hwtstamp)(struct phy_device *phydev, struct ifreq *ifr); |
| 554 | |
| 555 | /* |
| 556 | * Requests a Rx timestamp for 'skb'. If the skb is accepted, |
| 557 | * the phy driver promises to deliver it using netif_rx() as |
| 558 | * soon as a timestamp becomes available. One of the |
| 559 | * PTP_CLASS_ values is passed in 'type'. The function must |
| 560 | * return true if the skb is accepted for delivery. |
| 561 | */ |
| 562 | bool (*rxtstamp)(struct phy_device *dev, struct sk_buff *skb, int type); |
| 563 | |
| 564 | /* |
| 565 | * Requests a Tx timestamp for 'skb'. The phy driver promises |
Richard Cochran | da92b19 | 2011-10-21 00:49:15 +0000 | [diff] [blame] | 566 | * to deliver it using skb_complete_tx_timestamp() as soon as a |
Richard Cochran | c1f19b5 | 2010-07-17 08:49:36 +0000 | [diff] [blame] | 567 | * timestamp becomes available. One of the PTP_CLASS_ values |
| 568 | * is passed in 'type'. |
| 569 | */ |
| 570 | void (*txtstamp)(struct phy_device *dev, struct sk_buff *skb, int type); |
| 571 | |
Michael Stapelberg | 42e836e | 2013-03-11 13:56:44 +0000 | [diff] [blame] | 572 | /* Some devices (e.g. qnap TS-119P II) require PHY register changes to |
| 573 | * enable Wake on LAN, so set_wol is provided to be called in the |
| 574 | * ethernet driver's set_wol function. */ |
| 575 | int (*set_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol); |
| 576 | |
| 577 | /* See set_wol, but for checking whether Wake on LAN is enabled. */ |
| 578 | void (*get_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol); |
| 579 | |
Daniel Mack | 2b8f2a2 | 2014-06-18 11:01:41 +0200 | [diff] [blame] | 580 | /* |
| 581 | * Called to inform a PHY device driver when the core is about to |
| 582 | * change the link state. This callback is supposed to be used as |
| 583 | * fixup hook for drivers that need to take action when the link |
| 584 | * state changes. Drivers are by no means allowed to mess with the |
| 585 | * PHY device structure in their implementations. |
| 586 | */ |
| 587 | void (*link_change_notify)(struct phy_device *dev); |
| 588 | |
Russell King | 1ee6b9b | 2017-03-21 16:36:43 +0000 | [diff] [blame] | 589 | /* |
| 590 | * Phy specific driver override for reading a MMD register. |
| 591 | * This function is optional for PHY specific drivers. When |
| 592 | * not provided, the default MMD read function will be used |
| 593 | * by phy_read_mmd(), which will use either a direct read for |
| 594 | * Clause 45 PHYs or an indirect read for Clause 22 PHYs. |
| 595 | * devnum is the MMD device number within the PHY device, |
| 596 | * regnum is the register within the selected MMD device. |
| 597 | */ |
| 598 | int (*read_mmd)(struct phy_device *dev, int devnum, u16 regnum); |
| 599 | |
| 600 | /* |
| 601 | * Phy specific driver override for writing a MMD register. |
| 602 | * This function is optional for PHY specific drivers. When |
| 603 | * not provided, the default MMD write function will be used |
| 604 | * by phy_write_mmd(), which will use either a direct write for |
| 605 | * Clause 45 PHYs, or an indirect write for Clause 22 PHYs. |
| 606 | * devnum is the MMD device number within the PHY device, |
| 607 | * regnum is the register within the selected MMD device. |
| 608 | * val is the value to be written. |
| 609 | */ |
| 610 | int (*write_mmd)(struct phy_device *dev, int devnum, u16 regnum, |
| 611 | u16 val); |
| 612 | |
Russell King | 78ffc4a | 2018-01-02 10:58:43 +0000 | [diff] [blame] | 613 | int (*read_page)(struct phy_device *dev); |
| 614 | int (*write_page)(struct phy_device *dev, int page); |
| 615 | |
Ed Swierk | 2f43836 | 2015-01-02 17:27:56 -0800 | [diff] [blame] | 616 | /* Get the size and type of the eeprom contained within a plug-in |
| 617 | * module */ |
| 618 | int (*module_info)(struct phy_device *dev, |
| 619 | struct ethtool_modinfo *modinfo); |
| 620 | |
| 621 | /* Get the eeprom information from the plug-in module */ |
| 622 | int (*module_eeprom)(struct phy_device *dev, |
| 623 | struct ethtool_eeprom *ee, u8 *data); |
| 624 | |
Andrew Lunn | f3a4094 | 2015-12-30 16:28:25 +0100 | [diff] [blame] | 625 | /* Get statistics from the phy using ethtool */ |
| 626 | int (*get_sset_count)(struct phy_device *dev); |
| 627 | void (*get_strings)(struct phy_device *dev, u8 *data); |
| 628 | void (*get_stats)(struct phy_device *dev, |
| 629 | struct ethtool_stats *stats, u64 *data); |
Raju Lakkaraju | 968ad9d | 2016-11-17 13:07:21 +0100 | [diff] [blame] | 630 | |
| 631 | /* Get and Set PHY tunables */ |
| 632 | int (*get_tunable)(struct phy_device *dev, |
| 633 | struct ethtool_tunable *tuna, void *data); |
| 634 | int (*set_tunable)(struct phy_device *dev, |
| 635 | struct ethtool_tunable *tuna, |
| 636 | const void *data); |
Lin Yun Sheng | f0f9b4e | 2017-06-30 17:44:15 +0800 | [diff] [blame] | 637 | int (*set_loopback)(struct phy_device *dev, bool enable); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 638 | }; |
Andrew Lunn | a9049e0 | 2016-01-06 20:11:26 +0100 | [diff] [blame] | 639 | #define to_phy_driver(d) container_of(to_mdio_common_driver(d), \ |
| 640 | struct phy_driver, mdiodrv) |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 641 | |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 642 | #define PHY_ANY_ID "MATCH ANY PHY" |
| 643 | #define PHY_ANY_UID 0xffffffff |
| 644 | |
Heiner Kallweit | aa2af2e | 2018-11-10 00:39:14 +0100 | [diff] [blame] | 645 | #define PHY_ID_MATCH_EXACT(id) .phy_id = (id), .phy_id_mask = GENMASK(31, 0) |
| 646 | #define PHY_ID_MATCH_MODEL(id) .phy_id = (id), .phy_id_mask = GENMASK(31, 4) |
| 647 | #define PHY_ID_MATCH_VENDOR(id) .phy_id = (id), .phy_id_mask = GENMASK(31, 10) |
| 648 | |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 649 | /* A Structure for boards to register fixups with the PHY Lib */ |
| 650 | struct phy_fixup { |
| 651 | struct list_head list; |
Volodymyr Bendiuga | 4567d68 | 2017-01-19 17:05:04 +0100 | [diff] [blame] | 652 | char bus_id[MII_BUS_ID_SIZE + 3]; |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 653 | u32 phy_uid; |
| 654 | u32 phy_uid_mask; |
| 655 | int (*run)(struct phy_device *phydev); |
| 656 | }; |
| 657 | |
Russell King | da4625a | 2017-07-25 15:02:42 +0100 | [diff] [blame] | 658 | const char *phy_speed_to_str(int speed); |
| 659 | const char *phy_duplex_to_str(unsigned int duplex); |
| 660 | |
Russell King | 0ccb4fc | 2017-07-25 15:02:47 +0100 | [diff] [blame] | 661 | /* A structure for mapping a particular speed and duplex |
| 662 | * combination to a particular SUPPORTED and ADVERTISED value |
| 663 | */ |
| 664 | struct phy_setting { |
| 665 | u32 speed; |
| 666 | u8 duplex; |
| 667 | u8 bit; |
| 668 | }; |
| 669 | |
| 670 | const struct phy_setting * |
| 671 | phy_lookup_setting(int speed, int duplex, const unsigned long *mask, |
Andrew Lunn | 3c1bcc8 | 2018-11-10 23:43:33 +0100 | [diff] [blame] | 672 | bool exact); |
Russell King | 0ccb4fc | 2017-07-25 15:02:47 +0100 | [diff] [blame] | 673 | size_t phy_speeds(unsigned int *speeds, size_t size, |
Andrew Lunn | 3c1bcc8 | 2018-11-10 23:43:33 +0100 | [diff] [blame] | 674 | unsigned long *mask); |
Maxime Chevallier | a4eaed9 | 2019-02-11 15:25:26 +0100 | [diff] [blame] | 675 | void of_set_phy_supported(struct phy_device *phydev); |
Maxime Chevallier | 3feb9b2 | 2019-02-11 15:25:27 +0100 | [diff] [blame] | 676 | void of_set_phy_eee_broken(struct phy_device *phydev); |
Russell King | 0ccb4fc | 2017-07-25 15:02:47 +0100 | [diff] [blame] | 677 | |
Heiner Kallweit | 2b3e88e | 2018-12-16 18:30:14 +0100 | [diff] [blame] | 678 | /** |
| 679 | * phy_is_started - Convenience function to check whether PHY is started |
| 680 | * @phydev: The phy_device struct |
| 681 | */ |
| 682 | static inline bool phy_is_started(struct phy_device *phydev) |
| 683 | { |
Heiner Kallweit | a2fc9d7 | 2019-02-13 20:11:40 +0100 | [diff] [blame] | 684 | return phydev->state >= PHY_UP; |
Heiner Kallweit | 2b3e88e | 2018-12-16 18:30:14 +0100 | [diff] [blame] | 685 | } |
| 686 | |
Russell King | 8c5e850 | 2017-12-29 12:46:38 +0000 | [diff] [blame] | 687 | void phy_resolve_aneg_linkmode(struct phy_device *phydev); |
| 688 | |
Lennert Buytenhek | 2e88810 | 2008-09-29 17:12:35 +0000 | [diff] [blame] | 689 | /** |
| 690 | * phy_read - Convenience function for reading a given PHY register |
| 691 | * @phydev: the phy_device struct |
| 692 | * @regnum: register number to read |
| 693 | * |
| 694 | * NOTE: MUST NOT be called from interrupt context, |
| 695 | * because the bus read/write functions may wait for an interrupt |
| 696 | * to conclude the operation. |
| 697 | */ |
Jason Gunthorpe | abf35df | 2010-03-09 09:17:42 +0000 | [diff] [blame] | 698 | static inline int phy_read(struct phy_device *phydev, u32 regnum) |
Lennert Buytenhek | 2e88810 | 2008-09-29 17:12:35 +0000 | [diff] [blame] | 699 | { |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 700 | return mdiobus_read(phydev->mdio.bus, phydev->mdio.addr, regnum); |
Lennert Buytenhek | 2e88810 | 2008-09-29 17:12:35 +0000 | [diff] [blame] | 701 | } |
| 702 | |
| 703 | /** |
Russell King | 788f993 | 2018-01-02 10:58:37 +0000 | [diff] [blame] | 704 | * __phy_read - convenience function for reading a given PHY register |
| 705 | * @phydev: the phy_device struct |
| 706 | * @regnum: register number to read |
| 707 | * |
| 708 | * The caller must have taken the MDIO bus lock. |
| 709 | */ |
| 710 | static inline int __phy_read(struct phy_device *phydev, u32 regnum) |
| 711 | { |
| 712 | return __mdiobus_read(phydev->mdio.bus, phydev->mdio.addr, regnum); |
| 713 | } |
| 714 | |
| 715 | /** |
Lennert Buytenhek | 2e88810 | 2008-09-29 17:12:35 +0000 | [diff] [blame] | 716 | * phy_write - Convenience function for writing a given PHY register |
| 717 | * @phydev: the phy_device struct |
| 718 | * @regnum: register number to write |
| 719 | * @val: value to write to @regnum |
| 720 | * |
| 721 | * NOTE: MUST NOT be called from interrupt context, |
| 722 | * because the bus read/write functions may wait for an interrupt |
| 723 | * to conclude the operation. |
| 724 | */ |
Jason Gunthorpe | abf35df | 2010-03-09 09:17:42 +0000 | [diff] [blame] | 725 | static inline int phy_write(struct phy_device *phydev, u32 regnum, u16 val) |
Lennert Buytenhek | 2e88810 | 2008-09-29 17:12:35 +0000 | [diff] [blame] | 726 | { |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 727 | return mdiobus_write(phydev->mdio.bus, phydev->mdio.addr, regnum, val); |
Lennert Buytenhek | 2e88810 | 2008-09-29 17:12:35 +0000 | [diff] [blame] | 728 | } |
| 729 | |
Florian Fainelli | 2c7b492 | 2013-05-19 22:53:42 +0000 | [diff] [blame] | 730 | /** |
Russell King | 788f993 | 2018-01-02 10:58:37 +0000 | [diff] [blame] | 731 | * __phy_write - Convenience function for writing a given PHY register |
| 732 | * @phydev: the phy_device struct |
| 733 | * @regnum: register number to write |
| 734 | * @val: value to write to @regnum |
| 735 | * |
| 736 | * The caller must have taken the MDIO bus lock. |
| 737 | */ |
| 738 | static inline int __phy_write(struct phy_device *phydev, u32 regnum, u16 val) |
| 739 | { |
| 740 | return __mdiobus_write(phydev->mdio.bus, phydev->mdio.addr, regnum, |
| 741 | val); |
| 742 | } |
| 743 | |
Nikita Yushchenko | 1878f0d | 2019-02-06 07:36:40 +0100 | [diff] [blame] | 744 | /** |
| 745 | * phy_read_mmd - Convenience function for reading a register |
| 746 | * from an MMD on a given PHY. |
| 747 | * @phydev: The phy_device struct |
| 748 | * @devad: The MMD to read from |
| 749 | * @regnum: The register on the MMD to read |
| 750 | * |
| 751 | * Same rules as for phy_read(); |
| 752 | */ |
| 753 | int phy_read_mmd(struct phy_device *phydev, int devad, u32 regnum); |
| 754 | |
| 755 | /** |
| 756 | * __phy_read_mmd - Convenience function for reading a register |
| 757 | * from an MMD on a given PHY. |
| 758 | * @phydev: The phy_device struct |
| 759 | * @devad: The MMD to read from |
| 760 | * @regnum: The register on the MMD to read |
| 761 | * |
| 762 | * Same rules as for __phy_read(); |
| 763 | */ |
| 764 | int __phy_read_mmd(struct phy_device *phydev, int devad, u32 regnum); |
| 765 | |
| 766 | /** |
| 767 | * phy_write_mmd - Convenience function for writing a register |
| 768 | * on an MMD on a given PHY. |
| 769 | * @phydev: The phy_device struct |
| 770 | * @devad: The MMD to write to |
| 771 | * @regnum: The register on the MMD to read |
| 772 | * @val: value to write to @regnum |
| 773 | * |
| 774 | * Same rules as for phy_write(); |
| 775 | */ |
| 776 | int phy_write_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val); |
| 777 | |
| 778 | /** |
| 779 | * __phy_write_mmd - Convenience function for writing a register |
| 780 | * on an MMD on a given PHY. |
| 781 | * @phydev: The phy_device struct |
| 782 | * @devad: The MMD to write to |
| 783 | * @regnum: The register on the MMD to read |
| 784 | * @val: value to write to @regnum |
| 785 | * |
| 786 | * Same rules as for __phy_write(); |
| 787 | */ |
| 788 | int __phy_write_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val); |
| 789 | |
Heiner Kallweit | b8554d4f | 2019-02-10 19:57:56 +0100 | [diff] [blame] | 790 | int __phy_modify_changed(struct phy_device *phydev, u32 regnum, u16 mask, |
| 791 | u16 set); |
| 792 | int phy_modify_changed(struct phy_device *phydev, u32 regnum, u16 mask, |
| 793 | u16 set); |
Russell King | 788f993 | 2018-01-02 10:58:37 +0000 | [diff] [blame] | 794 | int __phy_modify(struct phy_device *phydev, u32 regnum, u16 mask, u16 set); |
Russell King | 2b74e5b | 2018-01-02 10:58:53 +0000 | [diff] [blame] | 795 | int phy_modify(struct phy_device *phydev, u32 regnum, u16 mask, u16 set); |
Russell King | 788f993 | 2018-01-02 10:58:37 +0000 | [diff] [blame] | 796 | |
Heiner Kallweit | b8554d4f | 2019-02-10 19:57:56 +0100 | [diff] [blame] | 797 | int __phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum, |
| 798 | u16 mask, u16 set); |
| 799 | int phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum, |
| 800 | u16 mask, u16 set); |
Nikita Yushchenko | 1878f0d | 2019-02-06 07:36:40 +0100 | [diff] [blame] | 801 | int __phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum, |
Heiner Kallweit | b8554d4f | 2019-02-10 19:57:56 +0100 | [diff] [blame] | 802 | u16 mask, u16 set); |
Nikita Yushchenko | 1878f0d | 2019-02-06 07:36:40 +0100 | [diff] [blame] | 803 | int phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum, |
Heiner Kallweit | b8554d4f | 2019-02-10 19:57:56 +0100 | [diff] [blame] | 804 | u16 mask, u16 set); |
Nikita Yushchenko | 1878f0d | 2019-02-06 07:36:40 +0100 | [diff] [blame] | 805 | |
Russell King | 788f993 | 2018-01-02 10:58:37 +0000 | [diff] [blame] | 806 | /** |
Heiner Kallweit | ac8322d | 2018-01-12 21:20:33 +0100 | [diff] [blame] | 807 | * __phy_set_bits - Convenience function for setting bits in a PHY register |
| 808 | * @phydev: the phy_device struct |
| 809 | * @regnum: register number to write |
| 810 | * @val: bits to set |
| 811 | * |
| 812 | * The caller must have taken the MDIO bus lock. |
| 813 | */ |
| 814 | static inline int __phy_set_bits(struct phy_device *phydev, u32 regnum, u16 val) |
| 815 | { |
| 816 | return __phy_modify(phydev, regnum, 0, val); |
| 817 | } |
| 818 | |
| 819 | /** |
| 820 | * __phy_clear_bits - Convenience function for clearing bits in a PHY register |
| 821 | * @phydev: the phy_device struct |
| 822 | * @regnum: register number to write |
| 823 | * @val: bits to clear |
| 824 | * |
| 825 | * The caller must have taken the MDIO bus lock. |
| 826 | */ |
| 827 | static inline int __phy_clear_bits(struct phy_device *phydev, u32 regnum, |
| 828 | u16 val) |
| 829 | { |
| 830 | return __phy_modify(phydev, regnum, val, 0); |
| 831 | } |
| 832 | |
| 833 | /** |
| 834 | * phy_set_bits - Convenience function for setting bits in a PHY register |
| 835 | * @phydev: the phy_device struct |
| 836 | * @regnum: register number to write |
| 837 | * @val: bits to set |
| 838 | */ |
| 839 | static inline int phy_set_bits(struct phy_device *phydev, u32 regnum, u16 val) |
| 840 | { |
| 841 | return phy_modify(phydev, regnum, 0, val); |
| 842 | } |
| 843 | |
| 844 | /** |
| 845 | * phy_clear_bits - Convenience function for clearing bits in a PHY register |
| 846 | * @phydev: the phy_device struct |
| 847 | * @regnum: register number to write |
| 848 | * @val: bits to clear |
| 849 | */ |
| 850 | static inline int phy_clear_bits(struct phy_device *phydev, u32 regnum, u16 val) |
| 851 | { |
| 852 | return phy_modify(phydev, regnum, val, 0); |
| 853 | } |
| 854 | |
| 855 | /** |
Nikita Yushchenko | 1878f0d | 2019-02-06 07:36:40 +0100 | [diff] [blame] | 856 | * __phy_set_bits_mmd - Convenience function for setting bits in a register |
| 857 | * on MMD |
| 858 | * @phydev: the phy_device struct |
| 859 | * @devad: the MMD containing register to modify |
| 860 | * @regnum: register number to modify |
| 861 | * @val: bits to set |
| 862 | * |
| 863 | * The caller must have taken the MDIO bus lock. |
| 864 | */ |
| 865 | static inline int __phy_set_bits_mmd(struct phy_device *phydev, int devad, |
| 866 | u32 regnum, u16 val) |
| 867 | { |
| 868 | return __phy_modify_mmd(phydev, devad, regnum, 0, val); |
| 869 | } |
| 870 | |
| 871 | /** |
| 872 | * __phy_clear_bits_mmd - Convenience function for clearing bits in a register |
| 873 | * on MMD |
| 874 | * @phydev: the phy_device struct |
| 875 | * @devad: the MMD containing register to modify |
| 876 | * @regnum: register number to modify |
| 877 | * @val: bits to clear |
| 878 | * |
| 879 | * The caller must have taken the MDIO bus lock. |
| 880 | */ |
| 881 | static inline int __phy_clear_bits_mmd(struct phy_device *phydev, int devad, |
| 882 | u32 regnum, u16 val) |
| 883 | { |
| 884 | return __phy_modify_mmd(phydev, devad, regnum, val, 0); |
| 885 | } |
| 886 | |
| 887 | /** |
| 888 | * phy_set_bits_mmd - Convenience function for setting bits in a register |
| 889 | * on MMD |
| 890 | * @phydev: the phy_device struct |
| 891 | * @devad: the MMD containing register to modify |
| 892 | * @regnum: register number to modify |
| 893 | * @val: bits to set |
| 894 | */ |
| 895 | static inline int phy_set_bits_mmd(struct phy_device *phydev, int devad, |
| 896 | u32 regnum, u16 val) |
| 897 | { |
| 898 | return phy_modify_mmd(phydev, devad, regnum, 0, val); |
| 899 | } |
| 900 | |
| 901 | /** |
| 902 | * phy_clear_bits_mmd - Convenience function for clearing bits in a register |
| 903 | * on MMD |
| 904 | * @phydev: the phy_device struct |
| 905 | * @devad: the MMD containing register to modify |
| 906 | * @regnum: register number to modify |
| 907 | * @val: bits to clear |
| 908 | */ |
| 909 | static inline int phy_clear_bits_mmd(struct phy_device *phydev, int devad, |
| 910 | u32 regnum, u16 val) |
| 911 | { |
| 912 | return phy_modify_mmd(phydev, devad, regnum, val, 0); |
| 913 | } |
| 914 | |
| 915 | /** |
Florian Fainelli | 2c7b492 | 2013-05-19 22:53:42 +0000 | [diff] [blame] | 916 | * phy_interrupt_is_valid - Convenience function for testing a given PHY irq |
| 917 | * @phydev: the phy_device struct |
| 918 | * |
| 919 | * NOTE: must be kept in sync with addition/removal of PHY_POLL and |
| 920 | * PHY_IGNORE_INTERRUPT |
| 921 | */ |
| 922 | static inline bool phy_interrupt_is_valid(struct phy_device *phydev) |
| 923 | { |
| 924 | return phydev->irq != PHY_POLL && phydev->irq != PHY_IGNORE_INTERRUPT; |
| 925 | } |
| 926 | |
Florian Fainelli | 4284b6a | 2013-05-23 01:11:12 +0000 | [diff] [blame] | 927 | /** |
Heiner Kallweit | 3c507b8 | 2018-07-23 21:40:07 +0200 | [diff] [blame] | 928 | * phy_polling_mode - Convenience function for testing whether polling is |
| 929 | * used to detect PHY status changes |
| 930 | * @phydev: the phy_device struct |
| 931 | */ |
| 932 | static inline bool phy_polling_mode(struct phy_device *phydev) |
| 933 | { |
| 934 | return phydev->irq == PHY_POLL; |
| 935 | } |
| 936 | |
| 937 | /** |
Florian Fainelli | 4284b6a | 2013-05-23 01:11:12 +0000 | [diff] [blame] | 938 | * phy_is_internal - Convenience function for testing if a PHY is internal |
| 939 | * @phydev: the phy_device struct |
| 940 | */ |
| 941 | static inline bool phy_is_internal(struct phy_device *phydev) |
| 942 | { |
| 943 | return phydev->is_internal; |
| 944 | } |
| 945 | |
Andy Fleming | efabdfb | 2014-01-10 14:25:09 +0800 | [diff] [blame] | 946 | /** |
Iyappan Subramanian | 32d0f78 | 2017-05-18 15:13:43 -0700 | [diff] [blame] | 947 | * phy_interface_mode_is_rgmii - Convenience function for testing if a |
| 948 | * PHY interface mode is RGMII (all variants) |
| 949 | * @mode: the phy_interface_t enum |
| 950 | */ |
| 951 | static inline bool phy_interface_mode_is_rgmii(phy_interface_t mode) |
| 952 | { |
| 953 | return mode >= PHY_INTERFACE_MODE_RGMII && |
| 954 | mode <= PHY_INTERFACE_MODE_RGMII_TXID; |
| 955 | }; |
| 956 | |
| 957 | /** |
Russell King | 365c1e6 | 2017-12-01 10:24:16 +0000 | [diff] [blame] | 958 | * phy_interface_mode_is_8023z() - does the phy interface mode use 802.3z |
| 959 | * negotiation |
| 960 | * @mode: one of &enum phy_interface_t |
| 961 | * |
| 962 | * Returns true if the phy interface mode uses the 16-bit negotiation |
| 963 | * word as defined in 802.3z. (See 802.3-2015 37.2.1 Config_Reg encoding) |
| 964 | */ |
| 965 | static inline bool phy_interface_mode_is_8023z(phy_interface_t mode) |
| 966 | { |
| 967 | return mode == PHY_INTERFACE_MODE_1000BASEX || |
| 968 | mode == PHY_INTERFACE_MODE_2500BASEX; |
| 969 | } |
| 970 | |
| 971 | /** |
Florian Fainelli | e463d88 | 2015-05-26 12:19:58 -0700 | [diff] [blame] | 972 | * phy_interface_is_rgmii - Convenience function for testing if a PHY interface |
| 973 | * is RGMII (all variants) |
| 974 | * @phydev: the phy_device struct |
| 975 | */ |
| 976 | static inline bool phy_interface_is_rgmii(struct phy_device *phydev) |
| 977 | { |
Iyappan Subramanian | 32d0f78 | 2017-05-18 15:13:43 -0700 | [diff] [blame] | 978 | return phy_interface_mode_is_rgmii(phydev->interface); |
Florian Fainelli | 5a11dd7 | 2015-08-31 15:56:46 +0200 | [diff] [blame] | 979 | }; |
| 980 | |
| 981 | /* |
| 982 | * phy_is_pseudo_fixed_link - Convenience function for testing if this |
| 983 | * PHY is the CPU port facing side of an Ethernet switch, or similar. |
| 984 | * @phydev: the phy_device struct |
| 985 | */ |
| 986 | static inline bool phy_is_pseudo_fixed_link(struct phy_device *phydev) |
| 987 | { |
| 988 | return phydev->is_pseudo_fixed_link; |
Florian Fainelli | e463d88 | 2015-05-26 12:19:58 -0700 | [diff] [blame] | 989 | } |
| 990 | |
Russell King | 78ffc4a | 2018-01-02 10:58:43 +0000 | [diff] [blame] | 991 | int phy_save_page(struct phy_device *phydev); |
| 992 | int phy_select_page(struct phy_device *phydev, int page); |
| 993 | int phy_restore_page(struct phy_device *phydev, int oldpage, int ret); |
| 994 | int phy_read_paged(struct phy_device *phydev, int page, u32 regnum); |
| 995 | int phy_write_paged(struct phy_device *phydev, int page, u32 regnum, u16 val); |
| 996 | int phy_modify_paged(struct phy_device *phydev, int page, u32 regnum, |
| 997 | u16 mask, u16 set); |
| 998 | |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 999 | struct phy_device *phy_device_create(struct mii_bus *bus, int addr, int phy_id, |
Sergei Shtylyov | 4017b4d | 2014-01-05 03:20:17 +0300 | [diff] [blame] | 1000 | bool is_c45, |
| 1001 | struct phy_c45_device_ids *c45_ids); |
Florian Fainelli | 90eff90 | 2017-03-23 10:01:19 -0700 | [diff] [blame] | 1002 | #if IS_ENABLED(CONFIG_PHYLIB) |
David Daney | ac28b9f | 2012-06-27 07:33:35 +0000 | [diff] [blame] | 1003 | struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45); |
Grant Likely | 4dea547 | 2009-04-25 12:52:46 +0000 | [diff] [blame] | 1004 | int phy_device_register(struct phy_device *phy); |
Florian Fainelli | 90eff90 | 2017-03-23 10:01:19 -0700 | [diff] [blame] | 1005 | void phy_device_free(struct phy_device *phydev); |
| 1006 | #else |
| 1007 | static inline |
| 1008 | struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45) |
| 1009 | { |
| 1010 | return NULL; |
| 1011 | } |
| 1012 | |
| 1013 | static inline int phy_device_register(struct phy_device *phy) |
| 1014 | { |
| 1015 | return 0; |
| 1016 | } |
| 1017 | |
| 1018 | static inline void phy_device_free(struct phy_device *phydev) { } |
| 1019 | #endif /* CONFIG_PHYLIB */ |
Russell King | 38737e4 | 2015-09-24 20:36:28 +0100 | [diff] [blame] | 1020 | void phy_device_remove(struct phy_device *phydev); |
Anton Vorontsov | 2f5cb43 | 2009-12-30 08:23:30 +0000 | [diff] [blame] | 1021 | int phy_init_hw(struct phy_device *phydev); |
Sebastian Hesselbarth | 481b5d9 | 2013-12-13 10:20:27 +0100 | [diff] [blame] | 1022 | int phy_suspend(struct phy_device *phydev); |
| 1023 | int phy_resume(struct phy_device *phydev); |
Andrew Lunn | 9c2c2e6 | 2018-02-27 01:56:06 +0100 | [diff] [blame] | 1024 | int __phy_resume(struct phy_device *phydev); |
Lin Yun Sheng | f0f9b4e | 2017-06-30 17:44:15 +0800 | [diff] [blame] | 1025 | int phy_loopback(struct phy_device *phydev, bool enable); |
Sergei Shtylyov | 4017b4d | 2014-01-05 03:20:17 +0300 | [diff] [blame] | 1026 | struct phy_device *phy_attach(struct net_device *dev, const char *bus_id, |
| 1027 | phy_interface_t interface); |
Jiri Pirko | f8f76db | 2010-02-04 10:23:02 -0800 | [diff] [blame] | 1028 | struct phy_device *phy_find_first(struct mii_bus *bus); |
Andy Fleming | 257184d | 2014-01-10 14:27:54 +0800 | [diff] [blame] | 1029 | int phy_attach_direct(struct net_device *dev, struct phy_device *phydev, |
| 1030 | u32 flags, phy_interface_t interface); |
Grant Likely | fa94f6d | 2009-04-25 12:52:51 +0000 | [diff] [blame] | 1031 | int phy_connect_direct(struct net_device *dev, struct phy_device *phydev, |
Sergei Shtylyov | 4017b4d | 2014-01-05 03:20:17 +0300 | [diff] [blame] | 1032 | void (*handler)(struct net_device *), |
| 1033 | phy_interface_t interface); |
| 1034 | struct phy_device *phy_connect(struct net_device *dev, const char *bus_id, |
| 1035 | void (*handler)(struct net_device *), |
| 1036 | phy_interface_t interface); |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 1037 | void phy_disconnect(struct phy_device *phydev); |
| 1038 | void phy_detach(struct phy_device *phydev); |
| 1039 | void phy_start(struct phy_device *phydev); |
| 1040 | void phy_stop(struct phy_device *phydev); |
| 1041 | int phy_start_aneg(struct phy_device *phydev); |
Lendacky, Thomas | 372788f | 2016-11-10 17:10:46 -0600 | [diff] [blame] | 1042 | int phy_aneg_done(struct phy_device *phydev); |
Heiner Kallweit | 2b9672d | 2018-07-12 21:32:53 +0200 | [diff] [blame] | 1043 | int phy_speed_down(struct phy_device *phydev, bool sync); |
| 1044 | int phy_speed_up(struct phy_device *phydev); |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 1045 | |
Russell King | 002ba70 | 2017-06-05 12:23:00 +0100 | [diff] [blame] | 1046 | int phy_restart_aneg(struct phy_device *phydev); |
Richard Leitner | a966849 | 2017-12-11 13:16:58 +0100 | [diff] [blame] | 1047 | int phy_reset_after_clk_enable(struct phy_device *phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1048 | |
Sergei Shtylyov | bafbdd5 | 2017-12-04 13:35:05 +0100 | [diff] [blame] | 1049 | static inline void phy_device_reset(struct phy_device *phydev, int value) |
| 1050 | { |
| 1051 | mdio_device_reset(&phydev->mdio, value); |
| 1052 | } |
| 1053 | |
Andrew Lunn | 72ba48b | 2016-01-06 20:11:09 +0100 | [diff] [blame] | 1054 | #define phydev_err(_phydev, format, args...) \ |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 1055 | dev_err(&_phydev->mdio.dev, format, ##args) |
Andrew Lunn | 72ba48b | 2016-01-06 20:11:09 +0100 | [diff] [blame] | 1056 | |
Andrew Lunn | c4fabb8 | 2018-09-29 23:04:11 +0200 | [diff] [blame] | 1057 | #define phydev_info(_phydev, format, args...) \ |
| 1058 | dev_info(&_phydev->mdio.dev, format, ##args) |
| 1059 | |
Andrew Lunn | ab2a605 | 2018-09-29 23:04:10 +0200 | [diff] [blame] | 1060 | #define phydev_warn(_phydev, format, args...) \ |
| 1061 | dev_warn(&_phydev->mdio.dev, format, ##args) |
| 1062 | |
Andrew Lunn | 72ba48b | 2016-01-06 20:11:09 +0100 | [diff] [blame] | 1063 | #define phydev_dbg(_phydev, format, args...) \ |
Marc Gonzalez | 2eaa38d | 2017-07-25 11:08:15 +0200 | [diff] [blame] | 1064 | dev_dbg(&_phydev->mdio.dev, format, ##args) |
Andrew Lunn | 72ba48b | 2016-01-06 20:11:09 +0100 | [diff] [blame] | 1065 | |
Andrew Lunn | 84eff6d | 2016-01-06 20:11:10 +0100 | [diff] [blame] | 1066 | static inline const char *phydev_name(const struct phy_device *phydev) |
| 1067 | { |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 1068 | return dev_name(&phydev->mdio.dev); |
Andrew Lunn | 84eff6d | 2016-01-06 20:11:10 +0100 | [diff] [blame] | 1069 | } |
| 1070 | |
Andrew Lunn | 2220943 | 2016-01-06 20:11:13 +0100 | [diff] [blame] | 1071 | void phy_attached_print(struct phy_device *phydev, const char *fmt, ...) |
| 1072 | __printf(2, 3); |
| 1073 | void phy_attached_info(struct phy_device *phydev); |
Russell King | 5acde34 | 2017-06-05 12:22:50 +0100 | [diff] [blame] | 1074 | |
| 1075 | /* Clause 22 PHY */ |
Daniel Mack | af6b696 | 2014-04-16 17:19:12 +0200 | [diff] [blame] | 1076 | int genphy_config_init(struct phy_device *phydev); |
Heiner Kallweit | 045925e | 2019-03-27 21:58:44 +0100 | [diff] [blame] | 1077 | int genphy_read_abilities(struct phy_device *phydev); |
Madalin Bucur | 3fb69bc | 2013-11-20 16:38:19 -0600 | [diff] [blame] | 1078 | int genphy_setup_forced(struct phy_device *phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1079 | int genphy_restart_aneg(struct phy_device *phydev); |
Heiner Kallweit | cd34499 | 2019-02-18 21:26:58 +0100 | [diff] [blame] | 1080 | int genphy_config_eee_advert(struct phy_device *phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1081 | int genphy_config_aneg(struct phy_device *phydev); |
Florian Fainelli | a9fa6e6 | 2014-02-11 17:27:36 -0800 | [diff] [blame] | 1082 | int genphy_aneg_done(struct phy_device *phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1083 | int genphy_update_link(struct phy_device *phydev); |
| 1084 | int genphy_read_status(struct phy_device *phydev); |
Giuseppe Cavallaro | 0f0ca34 | 2008-11-28 16:24:56 -0800 | [diff] [blame] | 1085 | int genphy_suspend(struct phy_device *phydev); |
| 1086 | int genphy_resume(struct phy_device *phydev); |
Lin Yun Sheng | f0f9b4e | 2017-06-30 17:44:15 +0800 | [diff] [blame] | 1087 | int genphy_loopback(struct phy_device *phydev, bool enable); |
Florian Fainelli | 797ac07 | 2014-02-17 13:34:02 -0800 | [diff] [blame] | 1088 | int genphy_soft_reset(struct phy_device *phydev); |
Florian Fainelli | 0878fff | 2017-03-05 12:34:49 -0800 | [diff] [blame] | 1089 | static inline int genphy_no_soft_reset(struct phy_device *phydev) |
| 1090 | { |
| 1091 | return 0; |
| 1092 | } |
Linus Walleij | 4c8e045 | 2019-02-24 01:11:15 +0100 | [diff] [blame] | 1093 | static inline int genphy_no_ack_interrupt(struct phy_device *phydev) |
| 1094 | { |
| 1095 | return 0; |
| 1096 | } |
| 1097 | static inline int genphy_no_config_intr(struct phy_device *phydev) |
| 1098 | { |
| 1099 | return 0; |
| 1100 | } |
Kevin Hao | 5df7af8 | 2018-03-20 09:44:52 +0800 | [diff] [blame] | 1101 | int genphy_read_mmd_unsupported(struct phy_device *phdev, int devad, |
| 1102 | u16 regnum); |
| 1103 | int genphy_write_mmd_unsupported(struct phy_device *phdev, int devnum, |
| 1104 | u16 regnum, u16 val); |
Russell King | 5acde34 | 2017-06-05 12:22:50 +0100 | [diff] [blame] | 1105 | |
| 1106 | /* Clause 45 PHY */ |
| 1107 | int genphy_c45_restart_aneg(struct phy_device *phydev); |
Heiner Kallweit | 1af9f16 | 2019-02-18 21:27:18 +0100 | [diff] [blame] | 1108 | int genphy_c45_check_and_restart_aneg(struct phy_device *phydev, bool restart); |
Russell King | 5acde34 | 2017-06-05 12:22:50 +0100 | [diff] [blame] | 1109 | int genphy_c45_aneg_done(struct phy_device *phydev); |
Heiner Kallweit | 998a8a8 | 2019-02-07 21:41:46 +0100 | [diff] [blame] | 1110 | int genphy_c45_read_link(struct phy_device *phydev); |
Russell King | 5acde34 | 2017-06-05 12:22:50 +0100 | [diff] [blame] | 1111 | int genphy_c45_read_lpa(struct phy_device *phydev); |
| 1112 | int genphy_c45_read_pma(struct phy_device *phydev); |
| 1113 | int genphy_c45_pma_setup_forced(struct phy_device *phydev); |
Andrew Lunn | 9a5dc8a | 2019-02-17 10:29:19 +0100 | [diff] [blame] | 1114 | int genphy_c45_an_config_aneg(struct phy_device *phydev); |
Russell King | 5acde34 | 2017-06-05 12:22:50 +0100 | [diff] [blame] | 1115 | int genphy_c45_an_disable_aneg(struct phy_device *phydev); |
Russell King | ea4efe2 | 2017-12-29 12:46:27 +0000 | [diff] [blame] | 1116 | int genphy_c45_read_mdix(struct phy_device *phydev); |
Maxime Chevallier | ac3f553 | 2019-02-11 15:25:28 +0100 | [diff] [blame] | 1117 | int genphy_c45_pma_read_abilities(struct phy_device *phydev); |
Heiner Kallweit | 70fa3a9 | 2019-02-22 23:51:44 +0100 | [diff] [blame] | 1118 | int genphy_c45_read_status(struct phy_device *phydev); |
Russell King | 5acde34 | 2017-06-05 12:22:50 +0100 | [diff] [blame] | 1119 | |
Florian Fainelli | e8a714e | 2018-03-01 16:08:56 -0800 | [diff] [blame] | 1120 | /* The gen10g_* functions are the old Clause 45 stub */ |
| 1121 | int gen10g_config_aneg(struct phy_device *phydev); |
Florian Fainelli | e8a714e | 2018-03-01 16:08:56 -0800 | [diff] [blame] | 1122 | |
Heiner Kallweit | 00fde79 | 2017-11-30 23:46:19 +0100 | [diff] [blame] | 1123 | static inline int phy_read_status(struct phy_device *phydev) |
| 1124 | { |
| 1125 | if (!phydev->drv) |
| 1126 | return -EIO; |
| 1127 | |
| 1128 | if (phydev->drv->read_status) |
| 1129 | return phydev->drv->read_status(phydev); |
| 1130 | else |
| 1131 | return genphy_read_status(phydev); |
| 1132 | } |
| 1133 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1134 | void phy_driver_unregister(struct phy_driver *drv); |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 1135 | void phy_drivers_unregister(struct phy_driver *drv, int n); |
Andrew Lunn | be01da7 | 2016-01-06 20:11:22 +0100 | [diff] [blame] | 1136 | int phy_driver_register(struct phy_driver *new_driver, struct module *owner); |
| 1137 | int phy_drivers_register(struct phy_driver *new_driver, int n, |
| 1138 | struct module *owner); |
Anton Vorontsov | 4f9c85a | 2010-01-18 05:37:16 +0000 | [diff] [blame] | 1139 | void phy_state_machine(struct work_struct *work); |
Heiner Kallweit | 28b2e0d | 2018-01-10 21:21:31 +0100 | [diff] [blame] | 1140 | void phy_mac_interrupt(struct phy_device *phydev); |
Sergei Shtylyov | 29935ae | 2014-01-05 03:27:17 +0300 | [diff] [blame] | 1141 | void phy_start_machine(struct phy_device *phydev); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1142 | void phy_stop_machine(struct phy_device *phydev); |
| 1143 | int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd); |
yuval.shaia@oracle.com | 5514174 | 2017-06-13 10:09:46 +0300 | [diff] [blame] | 1144 | void phy_ethtool_ksettings_get(struct phy_device *phydev, |
| 1145 | struct ethtool_link_ksettings *cmd); |
Philippe Reynes | 2d55173 | 2016-04-15 00:35:00 +0200 | [diff] [blame] | 1146 | int phy_ethtool_ksettings_set(struct phy_device *phydev, |
| 1147 | const struct ethtool_link_ksettings *cmd); |
Sergei Shtylyov | 4017b4d | 2014-01-05 03:20:17 +0300 | [diff] [blame] | 1148 | int phy_mii_ioctl(struct phy_device *phydev, struct ifreq *ifr, int cmd); |
Heiner Kallweit | 434a431 | 2019-01-23 07:31:58 +0100 | [diff] [blame] | 1149 | void phy_request_interrupt(struct phy_device *phydev); |
Heiner Kallweit | 07b0928 | 2019-05-30 15:09:15 +0200 | [diff] [blame^] | 1150 | void phy_free_interrupt(struct phy_device *phydev); |
Andy Fleming | e139345 | 2005-08-24 18:46:21 -0500 | [diff] [blame] | 1151 | void phy_print_status(struct phy_device *phydev); |
Simon Horman | f3a6bd3 | 2015-09-30 15:15:52 +0900 | [diff] [blame] | 1152 | int phy_set_max_speed(struct phy_device *phydev, u32 max_speed); |
Andrew Lunn | 41124fa | 2018-09-12 01:53:14 +0200 | [diff] [blame] | 1153 | void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode); |
Heiner Kallweit | 22c0ef6 | 2019-05-01 21:34:43 +0200 | [diff] [blame] | 1154 | void phy_advertise_supported(struct phy_device *phydev); |
Andrew Lunn | c306ad3 | 2018-09-12 01:53:16 +0200 | [diff] [blame] | 1155 | void phy_support_sym_pause(struct phy_device *phydev); |
Andrew Lunn | af8d9bb | 2018-09-12 01:53:15 +0200 | [diff] [blame] | 1156 | void phy_support_asym_pause(struct phy_device *phydev); |
Andrew Lunn | 0c12240 | 2018-09-12 01:53:18 +0200 | [diff] [blame] | 1157 | void phy_set_sym_pause(struct phy_device *phydev, bool rx, bool tx, |
| 1158 | bool autoneg); |
Andrew Lunn | 70814e8 | 2018-09-12 01:53:17 +0200 | [diff] [blame] | 1159 | void phy_set_asym_pause(struct phy_device *phydev, bool rx, bool tx); |
Andrew Lunn | 22b7d29 | 2018-09-12 01:53:19 +0200 | [diff] [blame] | 1160 | bool phy_validate_pause(struct phy_device *phydev, |
| 1161 | struct ethtool_pauseparam *pp); |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1162 | |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 1163 | int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask, |
Sergei Shtylyov | 4017b4d | 2014-01-05 03:20:17 +0300 | [diff] [blame] | 1164 | int (*run)(struct phy_device *)); |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 1165 | int phy_register_fixup_for_id(const char *bus_id, |
Sergei Shtylyov | 4017b4d | 2014-01-05 03:20:17 +0300 | [diff] [blame] | 1166 | int (*run)(struct phy_device *)); |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 1167 | int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask, |
Sergei Shtylyov | 4017b4d | 2014-01-05 03:20:17 +0300 | [diff] [blame] | 1168 | int (*run)(struct phy_device *)); |
Andy Fleming | f62220d | 2008-04-18 17:29:54 -0500 | [diff] [blame] | 1169 | |
Woojung.Huh@microchip.com | f38e7a3 | 2016-12-07 20:26:07 +0000 | [diff] [blame] | 1170 | int phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask); |
| 1171 | int phy_unregister_fixup_for_id(const char *bus_id); |
| 1172 | int phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask); |
| 1173 | |
Giuseppe CAVALLARO | a59a4d1 | 2012-06-27 21:14:38 +0000 | [diff] [blame] | 1174 | int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable); |
| 1175 | int phy_get_eee_err(struct phy_device *phydev); |
| 1176 | int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data); |
| 1177 | int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data); |
Michael Stapelberg | 42e836e | 2013-03-11 13:56:44 +0000 | [diff] [blame] | 1178 | int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol); |
Sergei Shtylyov | 4017b4d | 2014-01-05 03:20:17 +0300 | [diff] [blame] | 1179 | void phy_ethtool_get_wol(struct phy_device *phydev, |
| 1180 | struct ethtool_wolinfo *wol); |
Philippe Reynes | 9d9a77c | 2016-05-10 00:19:41 +0200 | [diff] [blame] | 1181 | int phy_ethtool_get_link_ksettings(struct net_device *ndev, |
| 1182 | struct ethtool_link_ksettings *cmd); |
| 1183 | int phy_ethtool_set_link_ksettings(struct net_device *ndev, |
| 1184 | const struct ethtool_link_ksettings *cmd); |
Florian Fainelli | e86a898 | 2016-11-15 10:06:30 -0800 | [diff] [blame] | 1185 | int phy_ethtool_nway_reset(struct net_device *ndev); |
Giuseppe CAVALLARO | a59a4d1 | 2012-06-27 21:14:38 +0000 | [diff] [blame] | 1186 | |
Florian Fainelli | 90eff90 | 2017-03-23 10:01:19 -0700 | [diff] [blame] | 1187 | #if IS_ENABLED(CONFIG_PHYLIB) |
Andy Fleming | 9b9a8bf | 2008-05-02 13:00:51 -0500 | [diff] [blame] | 1188 | int __init mdio_bus_init(void); |
| 1189 | void mdio_bus_exit(void); |
Florian Fainelli | 90eff90 | 2017-03-23 10:01:19 -0700 | [diff] [blame] | 1190 | #endif |
Andy Fleming | 9b9a8bf | 2008-05-02 13:00:51 -0500 | [diff] [blame] | 1191 | |
Florian Fainelli | 9e8d438 | 2018-04-27 12:41:49 -0700 | [diff] [blame] | 1192 | /* Inline function for use within net/core/ethtool.c (built-in) */ |
| 1193 | static inline int phy_ethtool_get_strings(struct phy_device *phydev, u8 *data) |
| 1194 | { |
| 1195 | if (!phydev->drv) |
| 1196 | return -EIO; |
| 1197 | |
| 1198 | mutex_lock(&phydev->lock); |
| 1199 | phydev->drv->get_strings(phydev, data); |
| 1200 | mutex_unlock(&phydev->lock); |
| 1201 | |
| 1202 | return 0; |
| 1203 | } |
| 1204 | |
| 1205 | static inline int phy_ethtool_get_sset_count(struct phy_device *phydev) |
| 1206 | { |
| 1207 | int ret; |
| 1208 | |
| 1209 | if (!phydev->drv) |
| 1210 | return -EIO; |
| 1211 | |
| 1212 | if (phydev->drv->get_sset_count && |
| 1213 | phydev->drv->get_strings && |
| 1214 | phydev->drv->get_stats) { |
| 1215 | mutex_lock(&phydev->lock); |
| 1216 | ret = phydev->drv->get_sset_count(phydev); |
| 1217 | mutex_unlock(&phydev->lock); |
| 1218 | |
| 1219 | return ret; |
| 1220 | } |
| 1221 | |
| 1222 | return -EOPNOTSUPP; |
| 1223 | } |
| 1224 | |
| 1225 | static inline int phy_ethtool_get_stats(struct phy_device *phydev, |
| 1226 | struct ethtool_stats *stats, u64 *data) |
| 1227 | { |
| 1228 | if (!phydev->drv) |
| 1229 | return -EIO; |
| 1230 | |
| 1231 | mutex_lock(&phydev->lock); |
| 1232 | phydev->drv->get_stats(phydev, stats, data); |
| 1233 | mutex_unlock(&phydev->lock); |
| 1234 | |
| 1235 | return 0; |
| 1236 | } |
| 1237 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1238 | extern struct bus_type mdio_bus_type; |
Johan Hovold | c31accd | 2014-11-11 19:45:57 +0100 | [diff] [blame] | 1239 | |
Florian Fainelli | 648ea01 | 2017-02-04 13:02:44 -0800 | [diff] [blame] | 1240 | struct mdio_board_info { |
| 1241 | const char *bus_id; |
| 1242 | char modalias[MDIO_NAME_SIZE]; |
| 1243 | int mdio_addr; |
| 1244 | const void *platform_data; |
| 1245 | }; |
| 1246 | |
Florian Fainelli | 90eff90 | 2017-03-23 10:01:19 -0700 | [diff] [blame] | 1247 | #if IS_ENABLED(CONFIG_MDIO_DEVICE) |
Florian Fainelli | 648ea01 | 2017-02-04 13:02:44 -0800 | [diff] [blame] | 1248 | int mdiobus_register_board_info(const struct mdio_board_info *info, |
| 1249 | unsigned int n); |
| 1250 | #else |
| 1251 | static inline int mdiobus_register_board_info(const struct mdio_board_info *i, |
| 1252 | unsigned int n) |
| 1253 | { |
| 1254 | return 0; |
| 1255 | } |
| 1256 | #endif |
| 1257 | |
| 1258 | |
Johan Hovold | c31accd | 2014-11-11 19:45:57 +0100 | [diff] [blame] | 1259 | /** |
| 1260 | * module_phy_driver() - Helper macro for registering PHY drivers |
| 1261 | * @__phy_drivers: array of PHY drivers to register |
| 1262 | * |
| 1263 | * Helper macro for PHY drivers which do not do anything special in module |
| 1264 | * init/exit. Each module may only use this macro once, and calling it |
| 1265 | * replaces module_init() and module_exit(). |
| 1266 | */ |
| 1267 | #define phy_module_driver(__phy_drivers, __count) \ |
| 1268 | static int __init phy_module_init(void) \ |
| 1269 | { \ |
Andrew Lunn | be01da7 | 2016-01-06 20:11:22 +0100 | [diff] [blame] | 1270 | return phy_drivers_register(__phy_drivers, __count, THIS_MODULE); \ |
Johan Hovold | c31accd | 2014-11-11 19:45:57 +0100 | [diff] [blame] | 1271 | } \ |
| 1272 | module_init(phy_module_init); \ |
| 1273 | static void __exit phy_module_exit(void) \ |
| 1274 | { \ |
| 1275 | phy_drivers_unregister(__phy_drivers, __count); \ |
| 1276 | } \ |
| 1277 | module_exit(phy_module_exit) |
| 1278 | |
| 1279 | #define module_phy_driver(__phy_drivers) \ |
| 1280 | phy_module_driver(__phy_drivers, ARRAY_SIZE(__phy_drivers)) |
| 1281 | |
Florian Fainelli | 5db5ea9 | 2019-01-15 15:09:35 -0800 | [diff] [blame] | 1282 | bool phy_driver_is_genphy(struct phy_device *phydev); |
| 1283 | bool phy_driver_is_genphy_10g(struct phy_device *phydev); |
| 1284 | |
Andy Fleming | 00db818 | 2005-07-30 19:31:23 -0400 | [diff] [blame] | 1285 | #endif /* __PHY_H */ |