1 #include <linux/export.h>
2 #include <linux/kref.h>
3 #include <linux/list.h>
4 #include <linux/mutex.h>
5 #include <linux/phylink.h>
6 #include <linux/rtnetlink.h>
7 #include <linux/slab.h>
12 * struct sfp_bus - internal representation of a sfp bus
17 struct list_head node
;
18 struct fwnode_handle
*fwnode
;
20 const struct sfp_socket_ops
*socket_ops
;
21 struct device
*sfp_dev
;
24 const struct sfp_upstream_ops
*upstream_ops
;
26 struct net_device
*netdev
;
27 struct phy_device
*phydev
;
34 * sfp_parse_port() - Parse the EEPROM base ID, setting the port type
35 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
36 * @id: a pointer to the module's &struct sfp_eeprom_id
37 * @support: optional pointer to an array of unsigned long for the
38 * ethtool support mask
40 * Parse the EEPROM identification given in @id, and return one of
41 * %PORT_TP, %PORT_FIBRE or %PORT_OTHER. If @support is non-%NULL,
42 * also set the ethtool %ETHTOOL_LINK_MODE_xxx_BIT corresponding with
45 * If the port type is not known, returns %PORT_OTHER.
47 int sfp_parse_port(struct sfp_bus
*bus
, const struct sfp_eeprom_id
*id
,
48 unsigned long *support
)
52 /* port is the physical connector, set this from the connector field. */
53 switch (id
->base
.connector
) {
54 case SFP_CONNECTOR_SC
:
55 case SFP_CONNECTOR_FIBERJACK
:
56 case SFP_CONNECTOR_LC
:
57 case SFP_CONNECTOR_MT_RJ
:
58 case SFP_CONNECTOR_MU
:
59 case SFP_CONNECTOR_OPTICAL_PIGTAIL
:
63 case SFP_CONNECTOR_RJ45
:
67 case SFP_CONNECTOR_COPPER_PIGTAIL
:
71 case SFP_CONNECTOR_UNSPEC
:
72 if (id
->base
.e1000_base_t
) {
77 case SFP_CONNECTOR_SG
: /* guess */
78 case SFP_CONNECTOR_MPO_1X12
:
79 case SFP_CONNECTOR_MPO_2X16
:
80 case SFP_CONNECTOR_HSSDC_II
:
81 case SFP_CONNECTOR_NOSEPARATE
:
82 case SFP_CONNECTOR_MXC_2X16
:
86 dev_warn(bus
->sfp_dev
, "SFP: unknown connector id 0x%02x\n",
95 phylink_set(support
, FIBRE
);
99 phylink_set(support
, TP
);
106 EXPORT_SYMBOL_GPL(sfp_parse_port
);
109 * sfp_parse_support() - Parse the eeprom id for supported link modes
110 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
111 * @id: a pointer to the module's &struct sfp_eeprom_id
112 * @support: pointer to an array of unsigned long for the ethtool support mask
114 * Parse the EEPROM identification information and derive the supported
115 * ethtool link modes for the module.
117 void sfp_parse_support(struct sfp_bus
*bus
, const struct sfp_eeprom_id
*id
,
118 unsigned long *support
)
120 unsigned int br_min
, br_nom
, br_max
;
121 __ETHTOOL_DECLARE_LINK_MODE_MASK(modes
) = { 0, };
123 /* Decode the bitrate information to MBd */
124 br_min
= br_nom
= br_max
= 0;
125 if (id
->base
.br_nominal
) {
126 if (id
->base
.br_nominal
!= 255) {
127 br_nom
= id
->base
.br_nominal
* 100;
128 br_min
= br_nom
- id
->base
.br_nominal
* id
->ext
.br_min
;
129 br_max
= br_nom
+ id
->base
.br_nominal
* id
->ext
.br_max
;
130 } else if (id
->ext
.br_max
) {
131 br_nom
= 250 * id
->ext
.br_max
;
132 br_max
= br_nom
+ br_nom
* id
->ext
.br_min
/ 100;
133 br_min
= br_nom
- br_nom
* id
->ext
.br_min
/ 100;
136 /* When using passive cables, in case neither BR,min nor BR,max
137 * are specified, set br_min to 0 as the nominal value is then
138 * used as the maximum.
140 if (br_min
== br_max
&& id
->base
.sfp_ct_passive
)
144 /* Set ethtool support from the compliance fields. */
145 if (id
->base
.e10g_base_sr
)
146 phylink_set(modes
, 10000baseSR_Full
);
147 if (id
->base
.e10g_base_lr
)
148 phylink_set(modes
, 10000baseLR_Full
);
149 if (id
->base
.e10g_base_lrm
)
150 phylink_set(modes
, 10000baseLRM_Full
);
151 if (id
->base
.e10g_base_er
)
152 phylink_set(modes
, 10000baseER_Full
);
153 if (id
->base
.e1000_base_sx
||
154 id
->base
.e1000_base_lx
||
155 id
->base
.e1000_base_cx
)
156 phylink_set(modes
, 1000baseX_Full
);
157 if (id
->base
.e1000_base_t
) {
158 phylink_set(modes
, 1000baseT_Half
);
159 phylink_set(modes
, 1000baseT_Full
);
162 /* 1000Base-PX or 1000Base-BX10 */
163 if ((id
->base
.e_base_px
|| id
->base
.e_base_bx10
) &&
164 br_min
<= 1300 && br_max
>= 1200)
165 phylink_set(modes
, 1000baseX_Full
);
167 /* For active or passive cables, select the link modes
168 * based on the bit rates and the cable compliance bytes.
170 if ((id
->base
.sfp_ct_passive
|| id
->base
.sfp_ct_active
) && br_nom
) {
171 /* This may look odd, but some manufacturers use 12000MBd */
172 if (br_min
<= 12000 && br_max
>= 10300)
173 phylink_set(modes
, 10000baseCR_Full
);
174 if (br_min
<= 3200 && br_max
>= 3100)
175 phylink_set(modes
, 2500baseX_Full
);
176 if (br_min
<= 1300 && br_max
>= 1200)
177 phylink_set(modes
, 1000baseX_Full
);
179 if (id
->base
.sfp_ct_passive
) {
180 if (id
->base
.passive
.sff8431_app_e
)
181 phylink_set(modes
, 10000baseCR_Full
);
183 if (id
->base
.sfp_ct_active
) {
184 if (id
->base
.active
.sff8431_app_e
||
185 id
->base
.active
.sff8431_lim
) {
186 phylink_set(modes
, 10000baseCR_Full
);
190 switch (id
->base
.extended_cc
) {
191 case 0x00: /* Unspecified */
193 case 0x02: /* 100Gbase-SR4 or 25Gbase-SR */
194 phylink_set(modes
, 100000baseSR4_Full
);
195 phylink_set(modes
, 25000baseSR_Full
);
197 case 0x03: /* 100Gbase-LR4 or 25Gbase-LR */
198 case 0x04: /* 100Gbase-ER4 or 25Gbase-ER */
199 phylink_set(modes
, 100000baseLR4_ER4_Full
);
201 case 0x0b: /* 100Gbase-CR4 or 25Gbase-CR CA-L */
202 case 0x0c: /* 25Gbase-CR CA-S */
203 case 0x0d: /* 25Gbase-CR CA-N */
204 phylink_set(modes
, 100000baseCR4_Full
);
205 phylink_set(modes
, 25000baseCR_Full
);
208 dev_warn(bus
->sfp_dev
,
209 "Unknown/unsupported extended compliance code: 0x%02x\n",
210 id
->base
.extended_cc
);
214 /* For fibre channel SFP, derive possible BaseX modes */
215 if (id
->base
.fc_speed_100
||
216 id
->base
.fc_speed_200
||
217 id
->base
.fc_speed_400
) {
218 if (id
->base
.br_nominal
>= 31)
219 phylink_set(modes
, 2500baseX_Full
);
220 if (id
->base
.br_nominal
>= 12)
221 phylink_set(modes
, 1000baseX_Full
);
224 /* If we haven't discovered any modes that this module supports, try
225 * the encoding and bitrate to determine supported modes. Some BiDi
226 * modules (eg, 1310nm/1550nm) are not 1000BASE-BX compliant due to
227 * the differing wavelengths, so do not set any transceiver bits.
229 if (bitmap_empty(modes
, __ETHTOOL_LINK_MODE_MASK_NBITS
)) {
230 /* If the encoding and bit rate allows 1000baseX */
231 if (id
->base
.encoding
== SFP_ENCODING_8B10B
&& br_nom
&&
232 br_min
<= 1300 && br_max
>= 1200)
233 phylink_set(modes
, 1000baseX_Full
);
236 bitmap_or(support
, support
, modes
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
238 phylink_set(support
, Autoneg
);
239 phylink_set(support
, Pause
);
240 phylink_set(support
, Asym_Pause
);
242 EXPORT_SYMBOL_GPL(sfp_parse_support
);
245 * sfp_select_interface() - Select appropriate phy_interface_t mode
246 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
247 * @id: a pointer to the module's &struct sfp_eeprom_id
248 * @link_modes: ethtool link modes mask
250 * Derive the phy_interface_t mode for the information found in the
251 * module's identifying EEPROM and the link modes mask. There is no
252 * standard or defined way to derive this information, so we decide
253 * based upon the link mode mask.
255 phy_interface_t
sfp_select_interface(struct sfp_bus
*bus
,
256 const struct sfp_eeprom_id
*id
,
257 unsigned long *link_modes
)
259 if (phylink_test(link_modes
, 10000baseCR_Full
) ||
260 phylink_test(link_modes
, 10000baseSR_Full
) ||
261 phylink_test(link_modes
, 10000baseLR_Full
) ||
262 phylink_test(link_modes
, 10000baseLRM_Full
) ||
263 phylink_test(link_modes
, 10000baseER_Full
))
264 return PHY_INTERFACE_MODE_10GKR
;
266 if (phylink_test(link_modes
, 2500baseX_Full
))
267 return PHY_INTERFACE_MODE_2500BASEX
;
269 if (id
->base
.e1000_base_t
||
270 id
->base
.e100_base_lx
||
271 id
->base
.e100_base_fx
)
272 return PHY_INTERFACE_MODE_SGMII
;
274 if (phylink_test(link_modes
, 1000baseX_Full
))
275 return PHY_INTERFACE_MODE_1000BASEX
;
277 dev_warn(bus
->sfp_dev
, "Unable to ascertain link mode\n");
279 return PHY_INTERFACE_MODE_NA
;
281 EXPORT_SYMBOL_GPL(sfp_select_interface
);
283 static LIST_HEAD(sfp_buses
);
284 static DEFINE_MUTEX(sfp_mutex
);
286 static const struct sfp_upstream_ops
*sfp_get_upstream_ops(struct sfp_bus
*bus
)
288 return bus
->registered
? bus
->upstream_ops
: NULL
;
291 static struct sfp_bus
*sfp_bus_get(struct fwnode_handle
*fwnode
)
293 struct sfp_bus
*sfp
, *new, *found
= NULL
;
295 new = kzalloc(sizeof(*new), GFP_KERNEL
);
297 mutex_lock(&sfp_mutex
);
299 list_for_each_entry(sfp
, &sfp_buses
, node
) {
300 if (sfp
->fwnode
== fwnode
) {
301 kref_get(&sfp
->kref
);
308 kref_init(&new->kref
);
309 new->fwnode
= fwnode
;
310 list_add(&new->node
, &sfp_buses
);
315 mutex_unlock(&sfp_mutex
);
322 static void sfp_bus_release(struct kref
*kref
)
324 struct sfp_bus
*bus
= container_of(kref
, struct sfp_bus
, kref
);
326 list_del(&bus
->node
);
327 mutex_unlock(&sfp_mutex
);
331 static void sfp_bus_put(struct sfp_bus
*bus
)
333 kref_put_mutex(&bus
->kref
, sfp_bus_release
, &sfp_mutex
);
336 static int sfp_register_bus(struct sfp_bus
*bus
)
338 const struct sfp_upstream_ops
*ops
= bus
->upstream_ops
;
343 ops
->link_down(bus
->upstream
);
344 if (ops
->connect_phy
&& bus
->phydev
) {
345 ret
= ops
->connect_phy(bus
->upstream
, bus
->phydev
);
350 bus
->socket_ops
->attach(bus
->sfp
);
352 bus
->socket_ops
->start(bus
->sfp
);
353 bus
->netdev
->sfp_bus
= bus
;
354 bus
->registered
= true;
358 static void sfp_unregister_bus(struct sfp_bus
*bus
)
360 const struct sfp_upstream_ops
*ops
= bus
->upstream_ops
;
362 bus
->netdev
->sfp_bus
= NULL
;
363 if (bus
->registered
) {
365 bus
->socket_ops
->stop(bus
->sfp
);
366 bus
->socket_ops
->detach(bus
->sfp
);
367 if (bus
->phydev
&& ops
&& ops
->disconnect_phy
)
368 ops
->disconnect_phy(bus
->upstream
);
370 bus
->registered
= false;
374 * sfp_get_module_info() - Get the ethtool_modinfo for a SFP module
375 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
376 * @modinfo: a &struct ethtool_modinfo
378 * Fill in the type and eeprom_len parameters in @modinfo for a module on
379 * the sfp bus specified by @bus.
381 * Returns 0 on success or a negative errno number.
383 int sfp_get_module_info(struct sfp_bus
*bus
, struct ethtool_modinfo
*modinfo
)
385 return bus
->socket_ops
->module_info(bus
->sfp
, modinfo
);
387 EXPORT_SYMBOL_GPL(sfp_get_module_info
);
390 * sfp_get_module_eeprom() - Read the SFP module EEPROM
391 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
392 * @ee: a &struct ethtool_eeprom
393 * @data: buffer to contain the EEPROM data (must be at least @ee->len bytes)
395 * Read the EEPROM as specified by the supplied @ee. See the documentation
396 * for &struct ethtool_eeprom for the region to be read.
398 * Returns 0 on success or a negative errno number.
400 int sfp_get_module_eeprom(struct sfp_bus
*bus
, struct ethtool_eeprom
*ee
,
403 return bus
->socket_ops
->module_eeprom(bus
->sfp
, ee
, data
);
405 EXPORT_SYMBOL_GPL(sfp_get_module_eeprom
);
408 * sfp_upstream_start() - Inform the SFP that the network device is up
409 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
411 * Inform the SFP socket that the network device is now up, so that the
412 * module can be enabled by allowing TX_DISABLE to be deasserted. This
413 * should be called from the network device driver's &struct net_device_ops
416 void sfp_upstream_start(struct sfp_bus
*bus
)
419 bus
->socket_ops
->start(bus
->sfp
);
422 EXPORT_SYMBOL_GPL(sfp_upstream_start
);
425 * sfp_upstream_stop() - Inform the SFP that the network device is down
426 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
428 * Inform the SFP socket that the network device is now up, so that the
429 * module can be disabled by asserting TX_DISABLE, disabling the laser
430 * in optical modules. This should be called from the network device
431 * driver's &struct net_device_ops ndo_stop() method.
433 void sfp_upstream_stop(struct sfp_bus
*bus
)
436 bus
->socket_ops
->stop(bus
->sfp
);
437 bus
->started
= false;
439 EXPORT_SYMBOL_GPL(sfp_upstream_stop
);
441 static void sfp_upstream_clear(struct sfp_bus
*bus
)
443 bus
->upstream_ops
= NULL
;
444 bus
->upstream
= NULL
;
449 * sfp_register_upstream() - Register the neighbouring device
450 * @fwnode: firmware node for the SFP bus
451 * @ndev: network device associated with the interface
452 * @upstream: the upstream private data
453 * @ops: the upstream's &struct sfp_upstream_ops
455 * Register the upstream device (eg, PHY) with the SFP bus. MAC drivers
456 * should use phylink, which will call this function for them. Returns
457 * a pointer to the allocated &struct sfp_bus.
459 * On error, returns %NULL.
461 struct sfp_bus
*sfp_register_upstream(struct fwnode_handle
*fwnode
,
462 struct net_device
*ndev
, void *upstream
,
463 const struct sfp_upstream_ops
*ops
)
465 struct sfp_bus
*bus
= sfp_bus_get(fwnode
);
470 bus
->upstream_ops
= ops
;
471 bus
->upstream
= upstream
;
475 ret
= sfp_register_bus(bus
);
477 sfp_upstream_clear(bus
);
489 EXPORT_SYMBOL_GPL(sfp_register_upstream
);
492 * sfp_unregister_upstream() - Unregister sfp bus
493 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
495 * Unregister a previously registered upstream connection for the SFP
496 * module. @bus is returned from sfp_register_upstream().
498 void sfp_unregister_upstream(struct sfp_bus
*bus
)
502 sfp_unregister_bus(bus
);
503 sfp_upstream_clear(bus
);
508 EXPORT_SYMBOL_GPL(sfp_unregister_upstream
);
510 /* Socket driver entry points */
511 int sfp_add_phy(struct sfp_bus
*bus
, struct phy_device
*phydev
)
513 const struct sfp_upstream_ops
*ops
= sfp_get_upstream_ops(bus
);
516 if (ops
&& ops
->connect_phy
)
517 ret
= ops
->connect_phy(bus
->upstream
, phydev
);
520 bus
->phydev
= phydev
;
524 EXPORT_SYMBOL_GPL(sfp_add_phy
);
526 void sfp_remove_phy(struct sfp_bus
*bus
)
528 const struct sfp_upstream_ops
*ops
= sfp_get_upstream_ops(bus
);
530 if (ops
&& ops
->disconnect_phy
)
531 ops
->disconnect_phy(bus
->upstream
);
534 EXPORT_SYMBOL_GPL(sfp_remove_phy
);
536 void sfp_link_up(struct sfp_bus
*bus
)
538 const struct sfp_upstream_ops
*ops
= sfp_get_upstream_ops(bus
);
540 if (ops
&& ops
->link_up
)
541 ops
->link_up(bus
->upstream
);
543 EXPORT_SYMBOL_GPL(sfp_link_up
);
545 void sfp_link_down(struct sfp_bus
*bus
)
547 const struct sfp_upstream_ops
*ops
= sfp_get_upstream_ops(bus
);
549 if (ops
&& ops
->link_down
)
550 ops
->link_down(bus
->upstream
);
552 EXPORT_SYMBOL_GPL(sfp_link_down
);
554 int sfp_module_insert(struct sfp_bus
*bus
, const struct sfp_eeprom_id
*id
)
556 const struct sfp_upstream_ops
*ops
= sfp_get_upstream_ops(bus
);
559 if (ops
&& ops
->module_insert
)
560 ret
= ops
->module_insert(bus
->upstream
, id
);
564 EXPORT_SYMBOL_GPL(sfp_module_insert
);
566 void sfp_module_remove(struct sfp_bus
*bus
)
568 const struct sfp_upstream_ops
*ops
= sfp_get_upstream_ops(bus
);
570 if (ops
&& ops
->module_remove
)
571 ops
->module_remove(bus
->upstream
);
573 EXPORT_SYMBOL_GPL(sfp_module_remove
);
575 static void sfp_socket_clear(struct sfp_bus
*bus
)
579 bus
->socket_ops
= NULL
;
582 struct sfp_bus
*sfp_register_socket(struct device
*dev
, struct sfp
*sfp
,
583 const struct sfp_socket_ops
*ops
)
585 struct sfp_bus
*bus
= sfp_bus_get(dev
->fwnode
);
592 bus
->socket_ops
= ops
;
595 ret
= sfp_register_bus(bus
);
597 sfp_socket_clear(bus
);
609 EXPORT_SYMBOL_GPL(sfp_register_socket
);
611 void sfp_unregister_socket(struct sfp_bus
*bus
)
615 sfp_unregister_bus(bus
);
616 sfp_socket_clear(bus
);
621 EXPORT_SYMBOL_GPL(sfp_unregister_socket
);