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_interface() - Parse the phy_interface_t
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
113 * Derive the phy_interface_t mode for the information found in the
114 * module's identifying EEPROM. There is no standard or defined way
115 * to derive this information, so we use some heuristics.
117 * If the encoding is 64b66b, then the module must be >= 10G, so
118 * return %PHY_INTERFACE_MODE_10GKR.
120 * If it's 8b10b, then it's 1G or slower. If it's definitely a fibre
121 * module, return %PHY_INTERFACE_MODE_1000BASEX mode, otherwise return
122 * %PHY_INTERFACE_MODE_SGMII mode.
124 * If the encoding is not known, return %PHY_INTERFACE_MODE_NA.
126 phy_interface_t
sfp_parse_interface(struct sfp_bus
*bus
,
127 const struct sfp_eeprom_id
*id
)
129 phy_interface_t iface
;
131 /* Setting the serdes link mode is guesswork: there's no field in
132 * the EEPROM which indicates what mode should be used.
134 * If the module wants 64b66b, then it must be >= 10G.
136 * If it's a gigabit-only fiber module, it probably does not have
137 * a PHY, so switch to 802.3z negotiation mode. Otherwise, switch
138 * to SGMII mode (which is required to support non-gigabit speeds).
140 switch (id
->base
.encoding
) {
141 case SFP_ENCODING_8472_64B66B
:
142 iface
= PHY_INTERFACE_MODE_10GKR
;
145 case SFP_ENCODING_8B10B
:
146 if (!id
->base
.e1000_base_t
&&
147 !id
->base
.e100_base_lx
&&
148 !id
->base
.e100_base_fx
)
149 iface
= PHY_INTERFACE_MODE_1000BASEX
;
151 iface
= PHY_INTERFACE_MODE_SGMII
;
155 if (id
->base
.e1000_base_cx
) {
156 iface
= PHY_INTERFACE_MODE_1000BASEX
;
160 iface
= PHY_INTERFACE_MODE_NA
;
161 dev_err(bus
->sfp_dev
,
162 "SFP module encoding does not support 8b10b nor 64b66b\n");
168 EXPORT_SYMBOL_GPL(sfp_parse_interface
);
171 * sfp_parse_support() - Parse the eeprom id for supported link modes
172 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
173 * @id: a pointer to the module's &struct sfp_eeprom_id
174 * @support: pointer to an array of unsigned long for the ethtool support mask
176 * Parse the EEPROM identification information and derive the supported
177 * ethtool link modes for the module.
179 void sfp_parse_support(struct sfp_bus
*bus
, const struct sfp_eeprom_id
*id
,
180 unsigned long *support
)
182 unsigned int br_min
, br_nom
, br_max
;
184 phylink_set(support
, Autoneg
);
185 phylink_set(support
, Pause
);
186 phylink_set(support
, Asym_Pause
);
188 /* Decode the bitrate information to MBd */
189 br_min
= br_nom
= br_max
= 0;
190 if (id
->base
.br_nominal
) {
191 if (id
->base
.br_nominal
!= 255) {
192 br_nom
= id
->base
.br_nominal
* 100;
193 br_min
= br_nom
+ id
->base
.br_nominal
* id
->ext
.br_min
;
194 br_max
= br_nom
+ id
->base
.br_nominal
* id
->ext
.br_max
;
195 } else if (id
->ext
.br_max
) {
196 br_nom
= 250 * id
->ext
.br_max
;
197 br_max
= br_nom
+ br_nom
* id
->ext
.br_min
/ 100;
198 br_min
= br_nom
- br_nom
* id
->ext
.br_min
/ 100;
202 /* Set ethtool support from the compliance fields. */
203 if (id
->base
.e10g_base_sr
)
204 phylink_set(support
, 10000baseSR_Full
);
205 if (id
->base
.e10g_base_lr
)
206 phylink_set(support
, 10000baseLR_Full
);
207 if (id
->base
.e10g_base_lrm
)
208 phylink_set(support
, 10000baseLRM_Full
);
209 if (id
->base
.e10g_base_er
)
210 phylink_set(support
, 10000baseER_Full
);
211 if (id
->base
.e1000_base_sx
||
212 id
->base
.e1000_base_lx
||
213 id
->base
.e1000_base_cx
)
214 phylink_set(support
, 1000baseX_Full
);
215 if (id
->base
.e1000_base_t
) {
216 phylink_set(support
, 1000baseT_Half
);
217 phylink_set(support
, 1000baseT_Full
);
220 /* 1000Base-PX or 1000Base-BX10 */
221 if ((id
->base
.e_base_px
|| id
->base
.e_base_bx10
) &&
222 br_min
<= 1300 && br_max
>= 1200)
223 phylink_set(support
, 1000baseX_Full
);
225 /* For active or passive cables, select the link modes
226 * based on the bit rates and the cable compliance bytes.
228 if ((id
->base
.sfp_ct_passive
|| id
->base
.sfp_ct_active
) && br_nom
) {
229 /* This may look odd, but some manufacturers use 12000MBd */
230 if (br_min
<= 12000 && br_max
>= 10300)
231 phylink_set(support
, 10000baseCR_Full
);
232 if (br_min
<= 3200 && br_max
>= 3100)
233 phylink_set(support
, 2500baseX_Full
);
234 if (br_min
<= 1300 && br_max
>= 1200)
235 phylink_set(support
, 1000baseX_Full
);
237 if (id
->base
.sfp_ct_passive
) {
238 if (id
->base
.passive
.sff8431_app_e
)
239 phylink_set(support
, 10000baseCR_Full
);
241 if (id
->base
.sfp_ct_active
) {
242 if (id
->base
.active
.sff8431_app_e
||
243 id
->base
.active
.sff8431_lim
) {
244 phylink_set(support
, 10000baseCR_Full
);
248 switch (id
->base
.extended_cc
) {
249 case 0x00: /* Unspecified */
251 case 0x02: /* 100Gbase-SR4 or 25Gbase-SR */
252 phylink_set(support
, 100000baseSR4_Full
);
253 phylink_set(support
, 25000baseSR_Full
);
255 case 0x03: /* 100Gbase-LR4 or 25Gbase-LR */
256 case 0x04: /* 100Gbase-ER4 or 25Gbase-ER */
257 phylink_set(support
, 100000baseLR4_ER4_Full
);
259 case 0x0b: /* 100Gbase-CR4 or 25Gbase-CR CA-L */
260 case 0x0c: /* 25Gbase-CR CA-S */
261 case 0x0d: /* 25Gbase-CR CA-N */
262 phylink_set(support
, 100000baseCR4_Full
);
263 phylink_set(support
, 25000baseCR_Full
);
266 dev_warn(bus
->sfp_dev
,
267 "Unknown/unsupported extended compliance code: 0x%02x\n",
268 id
->base
.extended_cc
);
272 /* For fibre channel SFP, derive possible BaseX modes */
273 if (id
->base
.fc_speed_100
||
274 id
->base
.fc_speed_200
||
275 id
->base
.fc_speed_400
) {
276 if (id
->base
.br_nominal
>= 31)
277 phylink_set(support
, 2500baseX_Full
);
278 if (id
->base
.br_nominal
>= 12)
279 phylink_set(support
, 1000baseX_Full
);
282 EXPORT_SYMBOL_GPL(sfp_parse_support
);
284 static LIST_HEAD(sfp_buses
);
285 static DEFINE_MUTEX(sfp_mutex
);
287 static const struct sfp_upstream_ops
*sfp_get_upstream_ops(struct sfp_bus
*bus
)
289 return bus
->registered
? bus
->upstream_ops
: NULL
;
292 static struct sfp_bus
*sfp_bus_get(struct fwnode_handle
*fwnode
)
294 struct sfp_bus
*sfp
, *new, *found
= NULL
;
296 new = kzalloc(sizeof(*new), GFP_KERNEL
);
298 mutex_lock(&sfp_mutex
);
300 list_for_each_entry(sfp
, &sfp_buses
, node
) {
301 if (sfp
->fwnode
== fwnode
) {
302 kref_get(&sfp
->kref
);
309 kref_init(&new->kref
);
310 new->fwnode
= fwnode
;
311 list_add(&new->node
, &sfp_buses
);
316 mutex_unlock(&sfp_mutex
);
323 static void sfp_bus_release(struct kref
*kref
)
325 struct sfp_bus
*bus
= container_of(kref
, struct sfp_bus
, kref
);
327 list_del(&bus
->node
);
328 mutex_unlock(&sfp_mutex
);
332 static void sfp_bus_put(struct sfp_bus
*bus
)
334 kref_put_mutex(&bus
->kref
, sfp_bus_release
, &sfp_mutex
);
337 static int sfp_register_bus(struct sfp_bus
*bus
)
339 const struct sfp_upstream_ops
*ops
= bus
->upstream_ops
;
344 ops
->link_down(bus
->upstream
);
345 if (ops
->connect_phy
&& bus
->phydev
) {
346 ret
= ops
->connect_phy(bus
->upstream
, bus
->phydev
);
352 bus
->socket_ops
->start(bus
->sfp
);
353 bus
->registered
= true;
357 static void sfp_unregister_bus(struct sfp_bus
*bus
)
359 const struct sfp_upstream_ops
*ops
= bus
->upstream_ops
;
361 if (bus
->registered
) {
363 bus
->socket_ops
->stop(bus
->sfp
);
364 if (bus
->phydev
&& ops
&& ops
->disconnect_phy
)
365 ops
->disconnect_phy(bus
->upstream
);
367 bus
->registered
= false;
371 * sfp_get_module_info() - Get the ethtool_modinfo for a SFP module
372 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
373 * @modinfo: a &struct ethtool_modinfo
375 * Fill in the type and eeprom_len parameters in @modinfo for a module on
376 * the sfp bus specified by @bus.
378 * Returns 0 on success or a negative errno number.
380 int sfp_get_module_info(struct sfp_bus
*bus
, struct ethtool_modinfo
*modinfo
)
382 if (!bus
->registered
)
384 return bus
->socket_ops
->module_info(bus
->sfp
, modinfo
);
386 EXPORT_SYMBOL_GPL(sfp_get_module_info
);
389 * sfp_get_module_eeprom() - Read the SFP module EEPROM
390 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
391 * @ee: a &struct ethtool_eeprom
392 * @data: buffer to contain the EEPROM data (must be at least @ee->len bytes)
394 * Read the EEPROM as specified by the supplied @ee. See the documentation
395 * for &struct ethtool_eeprom for the region to be read.
397 * Returns 0 on success or a negative errno number.
399 int sfp_get_module_eeprom(struct sfp_bus
*bus
, struct ethtool_eeprom
*ee
,
402 if (!bus
->registered
)
404 return bus
->socket_ops
->module_eeprom(bus
->sfp
, ee
, data
);
406 EXPORT_SYMBOL_GPL(sfp_get_module_eeprom
);
409 * sfp_upstream_start() - Inform the SFP that the network device is up
410 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
412 * Inform the SFP socket that the network device is now up, so that the
413 * module can be enabled by allowing TX_DISABLE to be deasserted. This
414 * should be called from the network device driver's &struct net_device_ops
417 void sfp_upstream_start(struct sfp_bus
*bus
)
420 bus
->socket_ops
->start(bus
->sfp
);
423 EXPORT_SYMBOL_GPL(sfp_upstream_start
);
426 * sfp_upstream_stop() - Inform the SFP that the network device is down
427 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
429 * Inform the SFP socket that the network device is now up, so that the
430 * module can be disabled by asserting TX_DISABLE, disabling the laser
431 * in optical modules. This should be called from the network device
432 * driver's &struct net_device_ops ndo_stop() method.
434 void sfp_upstream_stop(struct sfp_bus
*bus
)
437 bus
->socket_ops
->stop(bus
->sfp
);
438 bus
->started
= false;
440 EXPORT_SYMBOL_GPL(sfp_upstream_stop
);
443 * sfp_register_upstream() - Register the neighbouring device
444 * @fwnode: firmware node for the SFP bus
445 * @ndev: network device associated with the interface
446 * @upstream: the upstream private data
447 * @ops: the upstream's &struct sfp_upstream_ops
449 * Register the upstream device (eg, PHY) with the SFP bus. MAC drivers
450 * should use phylink, which will call this function for them. Returns
451 * a pointer to the allocated &struct sfp_bus.
453 * On error, returns %NULL.
455 struct sfp_bus
*sfp_register_upstream(struct fwnode_handle
*fwnode
,
456 struct net_device
*ndev
, void *upstream
,
457 const struct sfp_upstream_ops
*ops
)
459 struct sfp_bus
*bus
= sfp_bus_get(fwnode
);
464 bus
->upstream_ops
= ops
;
465 bus
->upstream
= upstream
;
469 ret
= sfp_register_bus(bus
);
480 EXPORT_SYMBOL_GPL(sfp_register_upstream
);
483 * sfp_unregister_upstream() - Unregister sfp bus
484 * @bus: a pointer to the &struct sfp_bus structure for the sfp module
486 * Unregister a previously registered upstream connection for the SFP
487 * module. @bus is returned from sfp_register_upstream().
489 void sfp_unregister_upstream(struct sfp_bus
*bus
)
493 sfp_unregister_bus(bus
);
494 bus
->upstream
= NULL
;
500 EXPORT_SYMBOL_GPL(sfp_unregister_upstream
);
502 /* Socket driver entry points */
503 int sfp_add_phy(struct sfp_bus
*bus
, struct phy_device
*phydev
)
505 const struct sfp_upstream_ops
*ops
= sfp_get_upstream_ops(bus
);
508 if (ops
&& ops
->connect_phy
)
509 ret
= ops
->connect_phy(bus
->upstream
, phydev
);
512 bus
->phydev
= phydev
;
516 EXPORT_SYMBOL_GPL(sfp_add_phy
);
518 void sfp_remove_phy(struct sfp_bus
*bus
)
520 const struct sfp_upstream_ops
*ops
= sfp_get_upstream_ops(bus
);
522 if (ops
&& ops
->disconnect_phy
)
523 ops
->disconnect_phy(bus
->upstream
);
526 EXPORT_SYMBOL_GPL(sfp_remove_phy
);
528 void sfp_link_up(struct sfp_bus
*bus
)
530 const struct sfp_upstream_ops
*ops
= sfp_get_upstream_ops(bus
);
532 if (ops
&& ops
->link_up
)
533 ops
->link_up(bus
->upstream
);
535 EXPORT_SYMBOL_GPL(sfp_link_up
);
537 void sfp_link_down(struct sfp_bus
*bus
)
539 const struct sfp_upstream_ops
*ops
= sfp_get_upstream_ops(bus
);
541 if (ops
&& ops
->link_down
)
542 ops
->link_down(bus
->upstream
);
544 EXPORT_SYMBOL_GPL(sfp_link_down
);
546 int sfp_module_insert(struct sfp_bus
*bus
, const struct sfp_eeprom_id
*id
)
548 const struct sfp_upstream_ops
*ops
= sfp_get_upstream_ops(bus
);
551 if (ops
&& ops
->module_insert
)
552 ret
= ops
->module_insert(bus
->upstream
, id
);
556 EXPORT_SYMBOL_GPL(sfp_module_insert
);
558 void sfp_module_remove(struct sfp_bus
*bus
)
560 const struct sfp_upstream_ops
*ops
= sfp_get_upstream_ops(bus
);
562 if (ops
&& ops
->module_remove
)
563 ops
->module_remove(bus
->upstream
);
565 EXPORT_SYMBOL_GPL(sfp_module_remove
);
567 struct sfp_bus
*sfp_register_socket(struct device
*dev
, struct sfp
*sfp
,
568 const struct sfp_socket_ops
*ops
)
570 struct sfp_bus
*bus
= sfp_bus_get(dev
->fwnode
);
577 bus
->socket_ops
= ops
;
580 ret
= sfp_register_bus(bus
);
591 EXPORT_SYMBOL_GPL(sfp_register_socket
);
593 void sfp_unregister_socket(struct sfp_bus
*bus
)
597 sfp_unregister_bus(bus
);
600 bus
->socket_ops
= NULL
;
605 EXPORT_SYMBOL_GPL(sfp_unregister_socket
);