Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 2 | #include <linux/export.h> |
| 3 | #include <linux/kref.h> |
| 4 | #include <linux/list.h> |
| 5 | #include <linux/mutex.h> |
| 6 | #include <linux/phylink.h> |
Russell King | 2203cbf | 2019-10-15 11:38:39 +0100 | [diff] [blame] | 7 | #include <linux/property.h> |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 8 | #include <linux/rtnetlink.h> |
| 9 | #include <linux/slab.h> |
| 10 | |
| 11 | #include "sfp.h" |
| 12 | |
Russell King | b34bb2c | 2019-11-20 11:42:42 +0000 | [diff] [blame] | 13 | struct sfp_quirk { |
| 14 | const char *vendor; |
| 15 | const char *part; |
| 16 | void (*modes)(const struct sfp_eeprom_id *id, unsigned long *modes); |
| 17 | }; |
| 18 | |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 19 | /** |
| 20 | * struct sfp_bus - internal representation of a sfp bus |
| 21 | */ |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 22 | struct sfp_bus { |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 23 | /* private: */ |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 24 | struct kref kref; |
| 25 | struct list_head node; |
Russell King | c19bb00 | 2017-12-01 10:25:03 +0000 | [diff] [blame] | 26 | struct fwnode_handle *fwnode; |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 27 | |
| 28 | const struct sfp_socket_ops *socket_ops; |
| 29 | struct device *sfp_dev; |
| 30 | struct sfp *sfp; |
Russell King | b34bb2c | 2019-11-20 11:42:42 +0000 | [diff] [blame] | 31 | const struct sfp_quirk *sfp_quirk; |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 32 | |
| 33 | const struct sfp_upstream_ops *upstream_ops; |
| 34 | void *upstream; |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 35 | struct phy_device *phydev; |
| 36 | |
| 37 | bool registered; |
| 38 | bool started; |
| 39 | }; |
| 40 | |
Russell King | b0eae33 | 2019-11-20 11:42:47 +0000 | [diff] [blame] | 41 | static void sfp_quirk_2500basex(const struct sfp_eeprom_id *id, |
| 42 | unsigned long *modes) |
| 43 | { |
| 44 | phylink_set(modes, 2500baseX_Full); |
| 45 | } |
| 46 | |
Pali Rohár | f0b4f84 | 2021-01-25 16:02:28 +0100 | [diff] [blame] | 47 | static void sfp_quirk_ubnt_uf_instant(const struct sfp_eeprom_id *id, |
| 48 | unsigned long *modes) |
| 49 | { |
| 50 | /* Ubiquiti U-Fiber Instant module claims that support all transceiver |
| 51 | * types including 10G Ethernet which is not truth. So clear all claimed |
| 52 | * modes and set only one mode which module supports: 1000baseX_Full. |
| 53 | */ |
| 54 | phylink_zero(modes); |
| 55 | phylink_set(modes, 1000baseX_Full); |
| 56 | } |
| 57 | |
Russell King | b34bb2c | 2019-11-20 11:42:42 +0000 | [diff] [blame] | 58 | static const struct sfp_quirk sfp_quirks[] = { |
Russell King | b0eae33 | 2019-11-20 11:42:47 +0000 | [diff] [blame] | 59 | { |
| 60 | // Alcatel Lucent G-010S-P can operate at 2500base-X, but |
| 61 | // incorrectly report 2500MBd NRZ in their EEPROM |
| 62 | .vendor = "ALCATELLUCENT", |
| 63 | .part = "G010SP", |
| 64 | .modes = sfp_quirk_2500basex, |
| 65 | }, { |
| 66 | // Alcatel Lucent G-010S-A can operate at 2500base-X, but |
| 67 | // report 3.2GBd NRZ in their EEPROM |
| 68 | .vendor = "ALCATELLUCENT", |
| 69 | .part = "3FE46541AA", |
| 70 | .modes = sfp_quirk_2500basex, |
| 71 | }, { |
| 72 | // Huawei MA5671A can operate at 2500base-X, but report 1.2GBd |
| 73 | // NRZ in their EEPROM |
| 74 | .vendor = "HUAWEI", |
| 75 | .part = "MA5671A", |
| 76 | .modes = sfp_quirk_2500basex, |
Pali Rohár | f0b4f84 | 2021-01-25 16:02:28 +0100 | [diff] [blame] | 77 | }, { |
| 78 | .vendor = "UBNT", |
| 79 | .part = "UF-INSTANT", |
| 80 | .modes = sfp_quirk_ubnt_uf_instant, |
Russell King | b0eae33 | 2019-11-20 11:42:47 +0000 | [diff] [blame] | 81 | }, |
Russell King | b34bb2c | 2019-11-20 11:42:42 +0000 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | static size_t sfp_strlen(const char *str, size_t maxlen) |
| 85 | { |
| 86 | size_t size, i; |
| 87 | |
| 88 | /* Trailing characters should be filled with space chars */ |
| 89 | for (i = 0, size = 0; i < maxlen; i++) |
| 90 | if (str[i] != ' ') |
| 91 | size = i + 1; |
| 92 | |
| 93 | return size; |
| 94 | } |
| 95 | |
| 96 | static bool sfp_match(const char *qs, const char *str, size_t len) |
| 97 | { |
| 98 | if (!qs) |
| 99 | return true; |
| 100 | if (strlen(qs) != len) |
| 101 | return false; |
| 102 | return !strncmp(qs, str, len); |
| 103 | } |
| 104 | |
| 105 | static const struct sfp_quirk *sfp_lookup_quirk(const struct sfp_eeprom_id *id) |
| 106 | { |
| 107 | const struct sfp_quirk *q; |
| 108 | unsigned int i; |
| 109 | size_t vs, ps; |
| 110 | |
| 111 | vs = sfp_strlen(id->base.vendor_name, ARRAY_SIZE(id->base.vendor_name)); |
| 112 | ps = sfp_strlen(id->base.vendor_pn, ARRAY_SIZE(id->base.vendor_pn)); |
| 113 | |
| 114 | for (i = 0, q = sfp_quirks; i < ARRAY_SIZE(sfp_quirks); i++, q++) |
| 115 | if (sfp_match(q->vendor, id->base.vendor_name, vs) && |
| 116 | sfp_match(q->part, id->base.vendor_pn, ps)) |
| 117 | return q; |
| 118 | |
| 119 | return NULL; |
| 120 | } |
Russell King | 52c9560 | 2019-12-11 10:56:45 +0000 | [diff] [blame] | 121 | |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 122 | /** |
| 123 | * sfp_parse_port() - Parse the EEPROM base ID, setting the port type |
| 124 | * @bus: a pointer to the &struct sfp_bus structure for the sfp module |
| 125 | * @id: a pointer to the module's &struct sfp_eeprom_id |
| 126 | * @support: optional pointer to an array of unsigned long for the |
| 127 | * ethtool support mask |
| 128 | * |
| 129 | * Parse the EEPROM identification given in @id, and return one of |
| 130 | * %PORT_TP, %PORT_FIBRE or %PORT_OTHER. If @support is non-%NULL, |
| 131 | * also set the ethtool %ETHTOOL_LINK_MODE_xxx_BIT corresponding with |
| 132 | * the connector type. |
| 133 | * |
| 134 | * If the port type is not known, returns %PORT_OTHER. |
| 135 | */ |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 136 | int sfp_parse_port(struct sfp_bus *bus, const struct sfp_eeprom_id *id, |
| 137 | unsigned long *support) |
| 138 | { |
| 139 | int port; |
| 140 | |
| 141 | /* port is the physical connector, set this from the connector field. */ |
| 142 | switch (id->base.connector) { |
Russell King | 0fbd26a | 2019-12-11 10:56:04 +0000 | [diff] [blame] | 143 | case SFF8024_CONNECTOR_SC: |
| 144 | case SFF8024_CONNECTOR_FIBERJACK: |
| 145 | case SFF8024_CONNECTOR_LC: |
| 146 | case SFF8024_CONNECTOR_MT_RJ: |
| 147 | case SFF8024_CONNECTOR_MU: |
| 148 | case SFF8024_CONNECTOR_OPTICAL_PIGTAIL: |
| 149 | case SFF8024_CONNECTOR_MPO_1X12: |
| 150 | case SFF8024_CONNECTOR_MPO_2X16: |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 151 | port = PORT_FIBRE; |
| 152 | break; |
| 153 | |
Russell King | 0fbd26a | 2019-12-11 10:56:04 +0000 | [diff] [blame] | 154 | case SFF8024_CONNECTOR_RJ45: |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 155 | port = PORT_TP; |
| 156 | break; |
| 157 | |
Russell King | 0fbd26a | 2019-12-11 10:56:04 +0000 | [diff] [blame] | 158 | case SFF8024_CONNECTOR_COPPER_PIGTAIL: |
Russell King | f10fcbc | 2017-12-29 12:15:28 +0000 | [diff] [blame] | 159 | port = PORT_DA; |
| 160 | break; |
| 161 | |
Russell King | 0fbd26a | 2019-12-11 10:56:04 +0000 | [diff] [blame] | 162 | case SFF8024_CONNECTOR_UNSPEC: |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 163 | if (id->base.e1000_base_t) { |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 164 | port = PORT_TP; |
| 165 | break; |
| 166 | } |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 167 | fallthrough; |
Russell King | 0fbd26a | 2019-12-11 10:56:04 +0000 | [diff] [blame] | 168 | case SFF8024_CONNECTOR_SG: /* guess */ |
| 169 | case SFF8024_CONNECTOR_HSSDC_II: |
| 170 | case SFF8024_CONNECTOR_NOSEPARATE: |
| 171 | case SFF8024_CONNECTOR_MXC_2X16: |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 172 | port = PORT_OTHER; |
| 173 | break; |
| 174 | default: |
| 175 | dev_warn(bus->sfp_dev, "SFP: unknown connector id 0x%02x\n", |
| 176 | id->base.connector); |
| 177 | port = PORT_OTHER; |
| 178 | break; |
| 179 | } |
| 180 | |
Russell King | f10fcbc | 2017-12-29 12:15:28 +0000 | [diff] [blame] | 181 | if (support) { |
| 182 | switch (port) { |
| 183 | case PORT_FIBRE: |
| 184 | phylink_set(support, FIBRE); |
| 185 | break; |
| 186 | |
| 187 | case PORT_TP: |
| 188 | phylink_set(support, TP); |
| 189 | break; |
| 190 | } |
| 191 | } |
| 192 | |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 193 | return port; |
| 194 | } |
| 195 | EXPORT_SYMBOL_GPL(sfp_parse_port); |
| 196 | |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 197 | /** |
Russell King | 52c9560 | 2019-12-11 10:56:45 +0000 | [diff] [blame] | 198 | * sfp_may_have_phy() - indicate whether the module may have a PHY |
| 199 | * @bus: a pointer to the &struct sfp_bus structure for the sfp module |
| 200 | * @id: a pointer to the module's &struct sfp_eeprom_id |
| 201 | * |
| 202 | * Parse the EEPROM identification given in @id, and return whether |
| 203 | * this module may have a PHY. |
| 204 | */ |
| 205 | bool sfp_may_have_phy(struct sfp_bus *bus, const struct sfp_eeprom_id *id) |
| 206 | { |
| 207 | if (id->base.e1000_base_t) |
| 208 | return true; |
| 209 | |
| 210 | if (id->base.phys_id != SFF8024_ID_DWDM_SFP) { |
| 211 | switch (id->base.extended_cc) { |
| 212 | case SFF8024_ECC_10GBASE_T_SFI: |
| 213 | case SFF8024_ECC_10GBASE_T_SR: |
| 214 | case SFF8024_ECC_5GBASE_T: |
| 215 | case SFF8024_ECC_2_5GBASE_T: |
| 216 | return true; |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | return false; |
| 221 | } |
| 222 | EXPORT_SYMBOL_GPL(sfp_may_have_phy); |
| 223 | |
| 224 | /** |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 225 | * sfp_parse_support() - Parse the eeprom id for supported link modes |
| 226 | * @bus: a pointer to the &struct sfp_bus structure for the sfp module |
| 227 | * @id: a pointer to the module's &struct sfp_eeprom_id |
| 228 | * @support: pointer to an array of unsigned long for the ethtool support mask |
| 229 | * |
| 230 | * Parse the EEPROM identification information and derive the supported |
| 231 | * ethtool link modes for the module. |
| 232 | */ |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 233 | void sfp_parse_support(struct sfp_bus *bus, const struct sfp_eeprom_id *id, |
| 234 | unsigned long *support) |
| 235 | { |
Russell King | 9962acf | 2017-12-29 12:15:23 +0000 | [diff] [blame] | 236 | unsigned int br_min, br_nom, br_max; |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 237 | __ETHTOOL_DECLARE_LINK_MODE_MASK(modes) = { 0, }; |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 238 | |
Russell King | 9962acf | 2017-12-29 12:15:23 +0000 | [diff] [blame] | 239 | /* Decode the bitrate information to MBd */ |
| 240 | br_min = br_nom = br_max = 0; |
| 241 | if (id->base.br_nominal) { |
| 242 | if (id->base.br_nominal != 255) { |
| 243 | br_nom = id->base.br_nominal * 100; |
Antoine Tenart | 52c5cd1 | 2018-05-04 17:10:54 +0200 | [diff] [blame] | 244 | br_min = br_nom - id->base.br_nominal * id->ext.br_min; |
Russell King | 9962acf | 2017-12-29 12:15:23 +0000 | [diff] [blame] | 245 | br_max = br_nom + id->base.br_nominal * id->ext.br_max; |
| 246 | } else if (id->ext.br_max) { |
| 247 | br_nom = 250 * id->ext.br_max; |
| 248 | br_max = br_nom + br_nom * id->ext.br_min / 100; |
| 249 | br_min = br_nom - br_nom * id->ext.br_min / 100; |
| 250 | } |
Antoine Tenart | 2b999ba | 2018-05-04 17:21:03 +0200 | [diff] [blame] | 251 | |
| 252 | /* When using passive cables, in case neither BR,min nor BR,max |
| 253 | * are specified, set br_min to 0 as the nominal value is then |
| 254 | * used as the maximum. |
| 255 | */ |
| 256 | if (br_min == br_max && id->base.sfp_ct_passive) |
| 257 | br_min = 0; |
Russell King | 9962acf | 2017-12-29 12:15:23 +0000 | [diff] [blame] | 258 | } |
| 259 | |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 260 | /* Set ethtool support from the compliance fields. */ |
| 261 | if (id->base.e10g_base_sr) |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 262 | phylink_set(modes, 10000baseSR_Full); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 263 | if (id->base.e10g_base_lr) |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 264 | phylink_set(modes, 10000baseLR_Full); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 265 | if (id->base.e10g_base_lrm) |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 266 | phylink_set(modes, 10000baseLRM_Full); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 267 | if (id->base.e10g_base_er) |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 268 | phylink_set(modes, 10000baseER_Full); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 269 | if (id->base.e1000_base_sx || |
| 270 | id->base.e1000_base_lx || |
| 271 | id->base.e1000_base_cx) |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 272 | phylink_set(modes, 1000baseX_Full); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 273 | if (id->base.e1000_base_t) { |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 274 | phylink_set(modes, 1000baseT_Half); |
| 275 | phylink_set(modes, 1000baseT_Full); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 276 | } |
| 277 | |
Russell King | 9962acf | 2017-12-29 12:15:23 +0000 | [diff] [blame] | 278 | /* 1000Base-PX or 1000Base-BX10 */ |
| 279 | if ((id->base.e_base_px || id->base.e_base_bx10) && |
| 280 | br_min <= 1300 && br_max >= 1200) |
Baruch Siach | d7f7e00 | 2018-11-29 12:40:11 +0200 | [diff] [blame] | 281 | phylink_set(modes, 1000baseX_Full); |
Russell King | 9962acf | 2017-12-29 12:15:23 +0000 | [diff] [blame] | 282 | |
Bjarni Jonasson | 6e12f35 | 2021-01-13 12:56:26 +0100 | [diff] [blame] | 283 | /* 100Base-FX, 100Base-LX, 100Base-PX, 100Base-BX10 */ |
| 284 | if (id->base.e100_base_fx || id->base.e100_base_lx) |
| 285 | phylink_set(modes, 100baseFX_Full); |
| 286 | if ((id->base.e_base_px || id->base.e_base_bx10) && br_nom == 100) |
| 287 | phylink_set(modes, 100baseFX_Full); |
| 288 | |
Russell King | f10fcbc | 2017-12-29 12:15:28 +0000 | [diff] [blame] | 289 | /* For active or passive cables, select the link modes |
| 290 | * based on the bit rates and the cable compliance bytes. |
| 291 | */ |
| 292 | if ((id->base.sfp_ct_passive || id->base.sfp_ct_active) && br_nom) { |
| 293 | /* This may look odd, but some manufacturers use 12000MBd */ |
| 294 | if (br_min <= 12000 && br_max >= 10300) |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 295 | phylink_set(modes, 10000baseCR_Full); |
Russell King | f10fcbc | 2017-12-29 12:15:28 +0000 | [diff] [blame] | 296 | if (br_min <= 3200 && br_max >= 3100) |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 297 | phylink_set(modes, 2500baseX_Full); |
Russell King | f10fcbc | 2017-12-29 12:15:28 +0000 | [diff] [blame] | 298 | if (br_min <= 1300 && br_max >= 1200) |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 299 | phylink_set(modes, 1000baseX_Full); |
Russell King | f10fcbc | 2017-12-29 12:15:28 +0000 | [diff] [blame] | 300 | } |
| 301 | if (id->base.sfp_ct_passive) { |
| 302 | if (id->base.passive.sff8431_app_e) |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 303 | phylink_set(modes, 10000baseCR_Full); |
Russell King | f10fcbc | 2017-12-29 12:15:28 +0000 | [diff] [blame] | 304 | } |
| 305 | if (id->base.sfp_ct_active) { |
| 306 | if (id->base.active.sff8431_app_e || |
| 307 | id->base.active.sff8431_lim) { |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 308 | phylink_set(modes, 10000baseCR_Full); |
Russell King | f10fcbc | 2017-12-29 12:15:28 +0000 | [diff] [blame] | 309 | } |
| 310 | } |
| 311 | |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 312 | switch (id->base.extended_cc) { |
Russell King | 0fbd26a | 2019-12-11 10:56:04 +0000 | [diff] [blame] | 313 | case SFF8024_ECC_UNSPEC: |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 314 | break; |
Russell King | 0fbd26a | 2019-12-11 10:56:04 +0000 | [diff] [blame] | 315 | case SFF8024_ECC_100GBASE_SR4_25GBASE_SR: |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 316 | phylink_set(modes, 100000baseSR4_Full); |
| 317 | phylink_set(modes, 25000baseSR_Full); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 318 | break; |
Russell King | 0fbd26a | 2019-12-11 10:56:04 +0000 | [diff] [blame] | 319 | case SFF8024_ECC_100GBASE_LR4_25GBASE_LR: |
| 320 | case SFF8024_ECC_100GBASE_ER4_25GBASE_ER: |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 321 | phylink_set(modes, 100000baseLR4_ER4_Full); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 322 | break; |
Russell King | 0fbd26a | 2019-12-11 10:56:04 +0000 | [diff] [blame] | 323 | case SFF8024_ECC_100GBASE_CR4: |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 324 | phylink_set(modes, 100000baseCR4_Full); |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 325 | fallthrough; |
Russell King | 0fbd26a | 2019-12-11 10:56:04 +0000 | [diff] [blame] | 326 | case SFF8024_ECC_25GBASE_CR_S: |
| 327 | case SFF8024_ECC_25GBASE_CR_N: |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 328 | phylink_set(modes, 25000baseCR_Full); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 329 | break; |
Russell King | 0fbd26a | 2019-12-11 10:56:04 +0000 | [diff] [blame] | 330 | case SFF8024_ECC_10GBASE_T_SFI: |
| 331 | case SFF8024_ECC_10GBASE_T_SR: |
| 332 | phylink_set(modes, 10000baseT_Full); |
| 333 | break; |
| 334 | case SFF8024_ECC_5GBASE_T: |
| 335 | phylink_set(modes, 5000baseT_Full); |
| 336 | break; |
| 337 | case SFF8024_ECC_2_5GBASE_T: |
| 338 | phylink_set(modes, 2500baseT_Full); |
| 339 | break; |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 340 | default: |
| 341 | dev_warn(bus->sfp_dev, |
| 342 | "Unknown/unsupported extended compliance code: 0x%02x\n", |
| 343 | id->base.extended_cc); |
| 344 | break; |
| 345 | } |
| 346 | |
| 347 | /* For fibre channel SFP, derive possible BaseX modes */ |
| 348 | if (id->base.fc_speed_100 || |
| 349 | id->base.fc_speed_200 || |
| 350 | id->base.fc_speed_400) { |
| 351 | if (id->base.br_nominal >= 31) |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 352 | phylink_set(modes, 2500baseX_Full); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 353 | if (id->base.br_nominal >= 12) |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 354 | phylink_set(modes, 1000baseX_Full); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 355 | } |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 356 | |
| 357 | /* If we haven't discovered any modes that this module supports, try |
Russell King | 7a77233 | 2020-12-09 11:22:54 +0000 | [diff] [blame] | 358 | * the bitrate to determine supported modes. Some BiDi modules (eg, |
| 359 | * 1310nm/1550nm) are not 1000BASE-BX compliant due to the differing |
| 360 | * wavelengths, so do not set any transceiver bits. |
Russell King | a006dbf | 2021-01-10 10:58:37 +0000 | [diff] [blame] | 361 | * |
| 362 | * Do the same for modules supporting 2500BASE-X. Note that some |
| 363 | * modules use 2500Mbaud rather than 3100 or 3200Mbaud for |
| 364 | * 2500BASE-X, so we allow some slack here. |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 365 | */ |
Russell King | a006dbf | 2021-01-10 10:58:37 +0000 | [diff] [blame] | 366 | if (bitmap_empty(modes, __ETHTOOL_LINK_MODE_MASK_NBITS) && br_nom) { |
| 367 | if (br_min <= 1300 && br_max >= 1200) |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 368 | phylink_set(modes, 1000baseX_Full); |
Russell King | a006dbf | 2021-01-10 10:58:37 +0000 | [diff] [blame] | 369 | if (br_min <= 3200 && br_max >= 2500) |
| 370 | phylink_set(modes, 2500baseX_Full); |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 371 | } |
| 372 | |
Russell King | b34bb2c | 2019-11-20 11:42:42 +0000 | [diff] [blame] | 373 | if (bus->sfp_quirk) |
| 374 | bus->sfp_quirk->modes(id, modes); |
| 375 | |
Sean Anderson | 4973056 | 2021-10-22 18:41:04 -0400 | [diff] [blame] | 376 | linkmode_or(support, support, modes); |
Russell King | 0314586 | 2018-02-27 15:52:57 +0000 | [diff] [blame] | 377 | |
| 378 | phylink_set(support, Autoneg); |
| 379 | phylink_set(support, Pause); |
| 380 | phylink_set(support, Asym_Pause); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 381 | } |
| 382 | EXPORT_SYMBOL_GPL(sfp_parse_support); |
| 383 | |
Russell King | a9c7936 | 2018-02-27 15:53:02 +0000 | [diff] [blame] | 384 | /** |
| 385 | * sfp_select_interface() - Select appropriate phy_interface_t mode |
| 386 | * @bus: a pointer to the &struct sfp_bus structure for the sfp module |
Russell King | a9c7936 | 2018-02-27 15:53:02 +0000 | [diff] [blame] | 387 | * @link_modes: ethtool link modes mask |
| 388 | * |
Russell King | a4516c7 | 2019-12-11 10:55:59 +0000 | [diff] [blame] | 389 | * Derive the phy_interface_t mode for the SFP module from the link |
| 390 | * modes mask. |
Russell King | a9c7936 | 2018-02-27 15:53:02 +0000 | [diff] [blame] | 391 | */ |
| 392 | phy_interface_t sfp_select_interface(struct sfp_bus *bus, |
Russell King | a9c7936 | 2018-02-27 15:53:02 +0000 | [diff] [blame] | 393 | unsigned long *link_modes) |
| 394 | { |
Steen Hegelund | 452d2c6 | 2021-06-11 14:54:52 +0200 | [diff] [blame] | 395 | if (phylink_test(link_modes, 25000baseCR_Full) || |
| 396 | phylink_test(link_modes, 25000baseKR_Full) || |
| 397 | phylink_test(link_modes, 25000baseSR_Full)) |
| 398 | return PHY_INTERFACE_MODE_25GBASER; |
| 399 | |
Russell King | a9c7936 | 2018-02-27 15:53:02 +0000 | [diff] [blame] | 400 | if (phylink_test(link_modes, 10000baseCR_Full) || |
| 401 | phylink_test(link_modes, 10000baseSR_Full) || |
| 402 | phylink_test(link_modes, 10000baseLR_Full) || |
| 403 | phylink_test(link_modes, 10000baseLRM_Full) || |
Russell King | 0fbd26a | 2019-12-11 10:56:04 +0000 | [diff] [blame] | 404 | phylink_test(link_modes, 10000baseER_Full) || |
| 405 | phylink_test(link_modes, 10000baseT_Full)) |
Russell King | e0f909b | 2020-01-03 20:43:23 +0000 | [diff] [blame] | 406 | return PHY_INTERFACE_MODE_10GBASER; |
Russell King | a9c7936 | 2018-02-27 15:53:02 +0000 | [diff] [blame] | 407 | |
Marek Behún | cfb971d | 2021-02-16 20:20:55 +0100 | [diff] [blame] | 408 | if (phylink_test(link_modes, 5000baseT_Full)) |
| 409 | return PHY_INTERFACE_MODE_5GBASER; |
| 410 | |
Russell King | a9c7936 | 2018-02-27 15:53:02 +0000 | [diff] [blame] | 411 | if (phylink_test(link_modes, 2500baseX_Full)) |
| 412 | return PHY_INTERFACE_MODE_2500BASEX; |
| 413 | |
Russell King | a4516c7 | 2019-12-11 10:55:59 +0000 | [diff] [blame] | 414 | if (phylink_test(link_modes, 1000baseT_Half) || |
| 415 | phylink_test(link_modes, 1000baseT_Full)) |
Russell King | a9c7936 | 2018-02-27 15:53:02 +0000 | [diff] [blame] | 416 | return PHY_INTERFACE_MODE_SGMII; |
| 417 | |
| 418 | if (phylink_test(link_modes, 1000baseX_Full)) |
| 419 | return PHY_INTERFACE_MODE_1000BASEX; |
| 420 | |
Bjarni Jonasson | 6e12f35 | 2021-01-13 12:56:26 +0100 | [diff] [blame] | 421 | if (phylink_test(link_modes, 100baseFX_Full)) |
| 422 | return PHY_INTERFACE_MODE_100BASEX; |
| 423 | |
Russell King | a9c7936 | 2018-02-27 15:53:02 +0000 | [diff] [blame] | 424 | dev_warn(bus->sfp_dev, "Unable to ascertain link mode\n"); |
| 425 | |
| 426 | return PHY_INTERFACE_MODE_NA; |
| 427 | } |
| 428 | EXPORT_SYMBOL_GPL(sfp_select_interface); |
| 429 | |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 430 | static LIST_HEAD(sfp_buses); |
| 431 | static DEFINE_MUTEX(sfp_mutex); |
| 432 | |
| 433 | static const struct sfp_upstream_ops *sfp_get_upstream_ops(struct sfp_bus *bus) |
| 434 | { |
| 435 | return bus->registered ? bus->upstream_ops : NULL; |
| 436 | } |
| 437 | |
Russell King | c19bb00 | 2017-12-01 10:25:03 +0000 | [diff] [blame] | 438 | static struct sfp_bus *sfp_bus_get(struct fwnode_handle *fwnode) |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 439 | { |
| 440 | struct sfp_bus *sfp, *new, *found = NULL; |
| 441 | |
| 442 | new = kzalloc(sizeof(*new), GFP_KERNEL); |
| 443 | |
| 444 | mutex_lock(&sfp_mutex); |
| 445 | |
| 446 | list_for_each_entry(sfp, &sfp_buses, node) { |
Russell King | c19bb00 | 2017-12-01 10:25:03 +0000 | [diff] [blame] | 447 | if (sfp->fwnode == fwnode) { |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 448 | kref_get(&sfp->kref); |
| 449 | found = sfp; |
| 450 | break; |
| 451 | } |
| 452 | } |
| 453 | |
| 454 | if (!found && new) { |
| 455 | kref_init(&new->kref); |
Russell King | c19bb00 | 2017-12-01 10:25:03 +0000 | [diff] [blame] | 456 | new->fwnode = fwnode; |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 457 | list_add(&new->node, &sfp_buses); |
| 458 | found = new; |
| 459 | new = NULL; |
| 460 | } |
| 461 | |
| 462 | mutex_unlock(&sfp_mutex); |
| 463 | |
| 464 | kfree(new); |
| 465 | |
| 466 | return found; |
| 467 | } |
| 468 | |
Russell King | b6e67d6 | 2017-12-01 10:24:58 +0000 | [diff] [blame] | 469 | static void sfp_bus_release(struct kref *kref) |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 470 | { |
| 471 | struct sfp_bus *bus = container_of(kref, struct sfp_bus, kref); |
| 472 | |
| 473 | list_del(&bus->node); |
| 474 | mutex_unlock(&sfp_mutex); |
| 475 | kfree(bus); |
| 476 | } |
| 477 | |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 478 | /** |
| 479 | * sfp_bus_put() - put a reference on the &struct sfp_bus |
Russell King | 2fca4ac | 2019-11-10 14:04:11 +0000 | [diff] [blame] | 480 | * @bus: the &struct sfp_bus found via sfp_bus_find_fwnode() |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 481 | * |
| 482 | * Put a reference on the &struct sfp_bus and free the underlying structure |
| 483 | * if this was the last reference. |
| 484 | */ |
| 485 | void sfp_bus_put(struct sfp_bus *bus) |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 486 | { |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 487 | if (bus) |
| 488 | kref_put_mutex(&bus->kref, sfp_bus_release, &sfp_mutex); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 489 | } |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 490 | EXPORT_SYMBOL_GPL(sfp_bus_put); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 491 | |
| 492 | static int sfp_register_bus(struct sfp_bus *bus) |
| 493 | { |
| 494 | const struct sfp_upstream_ops *ops = bus->upstream_ops; |
| 495 | int ret; |
| 496 | |
| 497 | if (ops) { |
| 498 | if (ops->link_down) |
| 499 | ops->link_down(bus->upstream); |
| 500 | if (ops->connect_phy && bus->phydev) { |
| 501 | ret = ops->connect_phy(bus->upstream, bus->phydev); |
| 502 | if (ret) |
| 503 | return ret; |
| 504 | } |
| 505 | } |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 506 | bus->registered = true; |
Russell King | b5bfc21 | 2019-02-06 10:52:30 +0000 | [diff] [blame] | 507 | bus->socket_ops->attach(bus->sfp); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 508 | if (bus->started) |
| 509 | bus->socket_ops->start(bus->sfp); |
Russell King | 320587e6 | 2019-05-28 10:57:34 +0100 | [diff] [blame] | 510 | bus->upstream_ops->attach(bus->upstream, bus); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 511 | return 0; |
| 512 | } |
| 513 | |
| 514 | static void sfp_unregister_bus(struct sfp_bus *bus) |
| 515 | { |
| 516 | const struct sfp_upstream_ops *ops = bus->upstream_ops; |
| 517 | |
| 518 | if (bus->registered) { |
Russell King | 320587e6 | 2019-05-28 10:57:34 +0100 | [diff] [blame] | 519 | bus->upstream_ops->detach(bus->upstream, bus); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 520 | if (bus->started) |
| 521 | bus->socket_ops->stop(bus->sfp); |
Russell King | b5bfc21 | 2019-02-06 10:52:30 +0000 | [diff] [blame] | 522 | bus->socket_ops->detach(bus->sfp); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 523 | if (bus->phydev && ops && ops->disconnect_phy) |
| 524 | ops->disconnect_phy(bus->upstream); |
| 525 | } |
| 526 | bus->registered = false; |
| 527 | } |
| 528 | |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 529 | /** |
| 530 | * sfp_get_module_info() - Get the ethtool_modinfo for a SFP module |
| 531 | * @bus: a pointer to the &struct sfp_bus structure for the sfp module |
| 532 | * @modinfo: a &struct ethtool_modinfo |
| 533 | * |
| 534 | * Fill in the type and eeprom_len parameters in @modinfo for a module on |
| 535 | * the sfp bus specified by @bus. |
| 536 | * |
| 537 | * Returns 0 on success or a negative errno number. |
| 538 | */ |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 539 | int sfp_get_module_info(struct sfp_bus *bus, struct ethtool_modinfo *modinfo) |
| 540 | { |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 541 | return bus->socket_ops->module_info(bus->sfp, modinfo); |
| 542 | } |
| 543 | EXPORT_SYMBOL_GPL(sfp_get_module_info); |
| 544 | |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 545 | /** |
| 546 | * sfp_get_module_eeprom() - Read the SFP module EEPROM |
| 547 | * @bus: a pointer to the &struct sfp_bus structure for the sfp module |
| 548 | * @ee: a &struct ethtool_eeprom |
| 549 | * @data: buffer to contain the EEPROM data (must be at least @ee->len bytes) |
| 550 | * |
| 551 | * Read the EEPROM as specified by the supplied @ee. See the documentation |
| 552 | * for &struct ethtool_eeprom for the region to be read. |
| 553 | * |
| 554 | * Returns 0 on success or a negative errno number. |
| 555 | */ |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 556 | int sfp_get_module_eeprom(struct sfp_bus *bus, struct ethtool_eeprom *ee, |
Florian Fainelli | 516b29e | 2017-10-30 21:42:57 -0700 | [diff] [blame] | 557 | u8 *data) |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 558 | { |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 559 | return bus->socket_ops->module_eeprom(bus->sfp, ee, data); |
| 560 | } |
| 561 | EXPORT_SYMBOL_GPL(sfp_get_module_eeprom); |
| 562 | |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 563 | /** |
Andrew Lunn | d740513 | 2021-04-09 11:06:40 +0300 | [diff] [blame] | 564 | * sfp_get_module_eeprom_by_page() - Read a page from the SFP module EEPROM |
| 565 | * @bus: a pointer to the &struct sfp_bus structure for the sfp module |
| 566 | * @page: a &struct ethtool_module_eeprom |
| 567 | * @extack: extack for reporting problems |
| 568 | * |
| 569 | * Read an EEPROM page as specified by the supplied @page. See the |
| 570 | * documentation for &struct ethtool_module_eeprom for the page to be read. |
| 571 | * |
| 572 | * Returns 0 on success or a negative errno number. More error |
| 573 | * information might be provided via extack |
| 574 | */ |
| 575 | int sfp_get_module_eeprom_by_page(struct sfp_bus *bus, |
| 576 | const struct ethtool_module_eeprom *page, |
| 577 | struct netlink_ext_ack *extack) |
| 578 | { |
| 579 | return bus->socket_ops->module_eeprom_by_page(bus->sfp, page, extack); |
| 580 | } |
| 581 | EXPORT_SYMBOL_GPL(sfp_get_module_eeprom_by_page); |
| 582 | |
| 583 | /** |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 584 | * sfp_upstream_start() - Inform the SFP that the network device is up |
| 585 | * @bus: a pointer to the &struct sfp_bus structure for the sfp module |
| 586 | * |
| 587 | * Inform the SFP socket that the network device is now up, so that the |
| 588 | * module can be enabled by allowing TX_DISABLE to be deasserted. This |
| 589 | * should be called from the network device driver's &struct net_device_ops |
| 590 | * ndo_open() method. |
| 591 | */ |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 592 | void sfp_upstream_start(struct sfp_bus *bus) |
| 593 | { |
| 594 | if (bus->registered) |
| 595 | bus->socket_ops->start(bus->sfp); |
| 596 | bus->started = true; |
| 597 | } |
| 598 | EXPORT_SYMBOL_GPL(sfp_upstream_start); |
| 599 | |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 600 | /** |
| 601 | * sfp_upstream_stop() - Inform the SFP that the network device is down |
| 602 | * @bus: a pointer to the &struct sfp_bus structure for the sfp module |
| 603 | * |
| 604 | * Inform the SFP socket that the network device is now up, so that the |
| 605 | * module can be disabled by asserting TX_DISABLE, disabling the laser |
| 606 | * in optical modules. This should be called from the network device |
| 607 | * driver's &struct net_device_ops ndo_stop() method. |
| 608 | */ |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 609 | void sfp_upstream_stop(struct sfp_bus *bus) |
| 610 | { |
| 611 | if (bus->registered) |
| 612 | bus->socket_ops->stop(bus->sfp); |
| 613 | bus->started = false; |
| 614 | } |
| 615 | EXPORT_SYMBOL_GPL(sfp_upstream_stop); |
| 616 | |
Russell King | f20a4c4 | 2018-07-10 12:05:31 +0100 | [diff] [blame] | 617 | static void sfp_upstream_clear(struct sfp_bus *bus) |
| 618 | { |
| 619 | bus->upstream_ops = NULL; |
| 620 | bus->upstream = NULL; |
Russell King | f20a4c4 | 2018-07-10 12:05:31 +0100 | [diff] [blame] | 621 | } |
| 622 | |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 623 | /** |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 624 | * sfp_bus_find_fwnode() - parse and locate the SFP bus from fwnode |
Russell King | 2203cbf | 2019-10-15 11:38:39 +0100 | [diff] [blame] | 625 | * @fwnode: firmware node for the parent device (MAC or PHY) |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 626 | * |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 627 | * Parse the parent device's firmware node for a SFP bus, and locate |
| 628 | * the sfp_bus structure, incrementing its reference count. This must |
| 629 | * be put via sfp_bus_put() when done. |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 630 | * |
Mauro Carvalho Chehab | 6497ca0 | 2020-03-17 15:54:19 +0100 | [diff] [blame] | 631 | * Returns: |
Wenpeng Liang | 3bdee6a | 2021-06-16 18:01:22 +0800 | [diff] [blame] | 632 | * - on success, a pointer to the sfp_bus structure, |
| 633 | * - %NULL if no SFP is specified, |
| 634 | * - on failure, an error pointer value: |
Mauro Carvalho Chehab | 6497ca0 | 2020-03-17 15:54:19 +0100 | [diff] [blame] | 635 | * |
Wenpeng Liang | 3bdee6a | 2021-06-16 18:01:22 +0800 | [diff] [blame] | 636 | * - corresponding to the errors detailed for |
| 637 | * fwnode_property_get_reference_args(). |
| 638 | * - %-ENOMEM if we failed to allocate the bus. |
| 639 | * - an error from the upstream's connect_phy() method. |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 640 | */ |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 641 | struct sfp_bus *sfp_bus_find_fwnode(struct fwnode_handle *fwnode) |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 642 | { |
Russell King | 2203cbf | 2019-10-15 11:38:39 +0100 | [diff] [blame] | 643 | struct fwnode_reference_args ref; |
| 644 | struct sfp_bus *bus; |
| 645 | int ret; |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 646 | |
Russell King | 2203cbf | 2019-10-15 11:38:39 +0100 | [diff] [blame] | 647 | ret = fwnode_property_get_reference_args(fwnode, "sfp", NULL, |
| 648 | 0, 0, &ref); |
| 649 | if (ret == -ENOENT) |
| 650 | return NULL; |
| 651 | else if (ret < 0) |
| 652 | return ERR_PTR(ret); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 653 | |
Marek Behún | 2148927 | 2022-01-19 17:44:55 +0100 | [diff] [blame] | 654 | if (!fwnode_device_is_available(ref.fwnode)) { |
| 655 | fwnode_handle_put(ref.fwnode); |
| 656 | return NULL; |
| 657 | } |
| 658 | |
Russell King | 2203cbf | 2019-10-15 11:38:39 +0100 | [diff] [blame] | 659 | bus = sfp_bus_get(ref.fwnode); |
| 660 | fwnode_handle_put(ref.fwnode); |
| 661 | if (!bus) |
| 662 | return ERR_PTR(-ENOMEM); |
| 663 | |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 664 | return bus; |
| 665 | } |
| 666 | EXPORT_SYMBOL_GPL(sfp_bus_find_fwnode); |
| 667 | |
| 668 | /** |
| 669 | * sfp_bus_add_upstream() - parse and register the neighbouring device |
| 670 | * @bus: the &struct sfp_bus found via sfp_bus_find_fwnode() |
| 671 | * @upstream: the upstream private data |
| 672 | * @ops: the upstream's &struct sfp_upstream_ops |
| 673 | * |
| 674 | * Add upstream driver for the SFP bus, and if the bus is complete, register |
| 675 | * the SFP bus using sfp_register_upstream(). This takes a reference on the |
| 676 | * bus, so it is safe to put the bus after this call. |
| 677 | * |
Mauro Carvalho Chehab | 6497ca0 | 2020-03-17 15:54:19 +0100 | [diff] [blame] | 678 | * Returns: |
Wenpeng Liang | 3bdee6a | 2021-06-16 18:01:22 +0800 | [diff] [blame] | 679 | * - on success, a pointer to the sfp_bus structure, |
| 680 | * - %NULL if no SFP is specified, |
| 681 | * - on failure, an error pointer value: |
Mauro Carvalho Chehab | 6497ca0 | 2020-03-17 15:54:19 +0100 | [diff] [blame] | 682 | * |
Wenpeng Liang | 3bdee6a | 2021-06-16 18:01:22 +0800 | [diff] [blame] | 683 | * - corresponding to the errors detailed for |
| 684 | * fwnode_property_get_reference_args(). |
| 685 | * - %-ENOMEM if we failed to allocate the bus. |
| 686 | * - an error from the upstream's connect_phy() method. |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 687 | */ |
| 688 | int sfp_bus_add_upstream(struct sfp_bus *bus, void *upstream, |
| 689 | const struct sfp_upstream_ops *ops) |
| 690 | { |
| 691 | int ret; |
| 692 | |
| 693 | /* If no bus, return success */ |
| 694 | if (!bus) |
| 695 | return 0; |
| 696 | |
Russell King | 2203cbf | 2019-10-15 11:38:39 +0100 | [diff] [blame] | 697 | rtnl_lock(); |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 698 | kref_get(&bus->kref); |
Russell King | 2203cbf | 2019-10-15 11:38:39 +0100 | [diff] [blame] | 699 | bus->upstream_ops = ops; |
| 700 | bus->upstream = upstream; |
| 701 | |
| 702 | if (bus->sfp) { |
| 703 | ret = sfp_register_bus(bus); |
| 704 | if (ret) |
| 705 | sfp_upstream_clear(bus); |
| 706 | } else { |
| 707 | ret = 0; |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 708 | } |
Russell King | 2203cbf | 2019-10-15 11:38:39 +0100 | [diff] [blame] | 709 | rtnl_unlock(); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 710 | |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 711 | if (ret) |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 712 | sfp_bus_put(bus); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 713 | |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 714 | return ret; |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 715 | } |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 716 | EXPORT_SYMBOL_GPL(sfp_bus_add_upstream); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 717 | |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 718 | /** |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 719 | * sfp_bus_del_upstream() - Delete a sfp bus |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 720 | * @bus: a pointer to the &struct sfp_bus structure for the sfp module |
| 721 | * |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 722 | * Delete a previously registered upstream connection for the SFP |
| 723 | * module. @bus should have been added by sfp_bus_add_upstream(). |
Russell King | 0a6fcd3 | 2017-12-01 10:24:53 +0000 | [diff] [blame] | 724 | */ |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 725 | void sfp_bus_del_upstream(struct sfp_bus *bus) |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 726 | { |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 727 | if (bus) { |
| 728 | rtnl_lock(); |
| 729 | if (bus->sfp) |
| 730 | sfp_unregister_bus(bus); |
| 731 | sfp_upstream_clear(bus); |
| 732 | rtnl_unlock(); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 733 | |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 734 | sfp_bus_put(bus); |
| 735 | } |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 736 | } |
Russell King | 727b366 | 2019-11-08 17:39:29 +0000 | [diff] [blame] | 737 | EXPORT_SYMBOL_GPL(sfp_bus_del_upstream); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 738 | |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 739 | /* Socket driver entry points */ |
| 740 | int sfp_add_phy(struct sfp_bus *bus, struct phy_device *phydev) |
| 741 | { |
| 742 | const struct sfp_upstream_ops *ops = sfp_get_upstream_ops(bus); |
| 743 | int ret = 0; |
| 744 | |
| 745 | if (ops && ops->connect_phy) |
| 746 | ret = ops->connect_phy(bus->upstream, phydev); |
| 747 | |
| 748 | if (ret == 0) |
| 749 | bus->phydev = phydev; |
| 750 | |
| 751 | return ret; |
| 752 | } |
| 753 | EXPORT_SYMBOL_GPL(sfp_add_phy); |
| 754 | |
| 755 | void sfp_remove_phy(struct sfp_bus *bus) |
| 756 | { |
| 757 | const struct sfp_upstream_ops *ops = sfp_get_upstream_ops(bus); |
| 758 | |
| 759 | if (ops && ops->disconnect_phy) |
| 760 | ops->disconnect_phy(bus->upstream); |
| 761 | bus->phydev = NULL; |
| 762 | } |
| 763 | EXPORT_SYMBOL_GPL(sfp_remove_phy); |
| 764 | |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 765 | void sfp_link_up(struct sfp_bus *bus) |
| 766 | { |
| 767 | const struct sfp_upstream_ops *ops = sfp_get_upstream_ops(bus); |
| 768 | |
| 769 | if (ops && ops->link_up) |
| 770 | ops->link_up(bus->upstream); |
| 771 | } |
| 772 | EXPORT_SYMBOL_GPL(sfp_link_up); |
| 773 | |
| 774 | void sfp_link_down(struct sfp_bus *bus) |
| 775 | { |
| 776 | const struct sfp_upstream_ops *ops = sfp_get_upstream_ops(bus); |
| 777 | |
| 778 | if (ops && ops->link_down) |
| 779 | ops->link_down(bus->upstream); |
| 780 | } |
| 781 | EXPORT_SYMBOL_GPL(sfp_link_down); |
| 782 | |
| 783 | int sfp_module_insert(struct sfp_bus *bus, const struct sfp_eeprom_id *id) |
| 784 | { |
| 785 | const struct sfp_upstream_ops *ops = sfp_get_upstream_ops(bus); |
| 786 | int ret = 0; |
| 787 | |
Russell King | b34bb2c | 2019-11-20 11:42:42 +0000 | [diff] [blame] | 788 | bus->sfp_quirk = sfp_lookup_quirk(id); |
| 789 | |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 790 | if (ops && ops->module_insert) |
| 791 | ret = ops->module_insert(bus->upstream, id); |
| 792 | |
| 793 | return ret; |
| 794 | } |
| 795 | EXPORT_SYMBOL_GPL(sfp_module_insert); |
| 796 | |
| 797 | void sfp_module_remove(struct sfp_bus *bus) |
| 798 | { |
| 799 | const struct sfp_upstream_ops *ops = sfp_get_upstream_ops(bus); |
| 800 | |
| 801 | if (ops && ops->module_remove) |
| 802 | ops->module_remove(bus->upstream); |
Russell King | b34bb2c | 2019-11-20 11:42:42 +0000 | [diff] [blame] | 803 | |
| 804 | bus->sfp_quirk = NULL; |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 805 | } |
| 806 | EXPORT_SYMBOL_GPL(sfp_module_remove); |
| 807 | |
Russell King | 74c551c | 2019-12-11 10:56:09 +0000 | [diff] [blame] | 808 | int sfp_module_start(struct sfp_bus *bus) |
| 809 | { |
| 810 | const struct sfp_upstream_ops *ops = sfp_get_upstream_ops(bus); |
| 811 | int ret = 0; |
| 812 | |
| 813 | if (ops && ops->module_start) |
| 814 | ret = ops->module_start(bus->upstream); |
| 815 | |
| 816 | return ret; |
| 817 | } |
| 818 | EXPORT_SYMBOL_GPL(sfp_module_start); |
| 819 | |
| 820 | void sfp_module_stop(struct sfp_bus *bus) |
| 821 | { |
| 822 | const struct sfp_upstream_ops *ops = sfp_get_upstream_ops(bus); |
| 823 | |
| 824 | if (ops && ops->module_stop) |
| 825 | ops->module_stop(bus->upstream); |
| 826 | } |
| 827 | EXPORT_SYMBOL_GPL(sfp_module_stop); |
| 828 | |
Russell King | f20a4c4 | 2018-07-10 12:05:31 +0100 | [diff] [blame] | 829 | static void sfp_socket_clear(struct sfp_bus *bus) |
| 830 | { |
| 831 | bus->sfp_dev = NULL; |
| 832 | bus->sfp = NULL; |
| 833 | bus->socket_ops = NULL; |
| 834 | } |
| 835 | |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 836 | struct sfp_bus *sfp_register_socket(struct device *dev, struct sfp *sfp, |
| 837 | const struct sfp_socket_ops *ops) |
| 838 | { |
Russell King | c19bb00 | 2017-12-01 10:25:03 +0000 | [diff] [blame] | 839 | struct sfp_bus *bus = sfp_bus_get(dev->fwnode); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 840 | int ret = 0; |
| 841 | |
| 842 | if (bus) { |
| 843 | rtnl_lock(); |
| 844 | bus->sfp_dev = dev; |
| 845 | bus->sfp = sfp; |
| 846 | bus->socket_ops = ops; |
| 847 | |
Russell King | 54f70b3 | 2019-05-28 10:57:39 +0100 | [diff] [blame] | 848 | if (bus->upstream_ops) { |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 849 | ret = sfp_register_bus(bus); |
Russell King | f20a4c4 | 2018-07-10 12:05:31 +0100 | [diff] [blame] | 850 | if (ret) |
| 851 | sfp_socket_clear(bus); |
| 852 | } |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 853 | rtnl_unlock(); |
| 854 | } |
| 855 | |
| 856 | if (ret) { |
| 857 | sfp_bus_put(bus); |
| 858 | bus = NULL; |
| 859 | } |
| 860 | |
| 861 | return bus; |
| 862 | } |
| 863 | EXPORT_SYMBOL_GPL(sfp_register_socket); |
| 864 | |
| 865 | void sfp_unregister_socket(struct sfp_bus *bus) |
| 866 | { |
| 867 | rtnl_lock(); |
Russell King | 54f70b3 | 2019-05-28 10:57:39 +0100 | [diff] [blame] | 868 | if (bus->upstream_ops) |
Russell King | 0b2122e | 2017-12-26 23:15:17 +0000 | [diff] [blame] | 869 | sfp_unregister_bus(bus); |
Russell King | f20a4c4 | 2018-07-10 12:05:31 +0100 | [diff] [blame] | 870 | sfp_socket_clear(bus); |
Russell King | ce0aa27 | 2017-07-25 15:03:18 +0100 | [diff] [blame] | 871 | rtnl_unlock(); |
| 872 | |
| 873 | sfp_bus_put(bus); |
| 874 | } |
| 875 | EXPORT_SYMBOL_GPL(sfp_unregister_socket); |