Lines Matching refs:fec
707 static int nfp_port_fec_ethtool_to_nsp(u32 fec) in nfp_port_fec_ethtool_to_nsp() argument
709 switch (fec) { in nfp_port_fec_ethtool_to_nsp()
724 static u32 nfp_port_fec_nsp_to_ethtool(u32 fec) in nfp_port_fec_nsp_to_ethtool() argument
728 if (fec & NFP_FEC_AUTO) in nfp_port_fec_nsp_to_ethtool()
730 if (fec & NFP_FEC_BASER) in nfp_port_fec_nsp_to_ethtool()
732 if (fec & NFP_FEC_REED_SOLOMON) in nfp_port_fec_nsp_to_ethtool()
734 if (fec & NFP_FEC_DISABLED) in nfp_port_fec_nsp_to_ethtool()
748 param->fec = ETHTOOL_FEC_NONE_BIT; in nfp_port_get_fecparam()
758 param->fec = nfp_port_fec_nsp_to_ethtool(eth_port->fec_modes_supported); in nfp_port_get_fecparam()
759 param->active_fec = nfp_port_fec_nsp_to_ethtool(eth_port->fec); in nfp_port_get_fecparam()
770 int err, fec; in nfp_port_set_fecparam() local
780 fec = nfp_port_fec_ethtool_to_nsp(param->fec); in nfp_port_set_fecparam()
781 if (fec < 0) in nfp_port_set_fecparam()
782 return fec; in nfp_port_set_fecparam()
784 err = nfp_eth_set_fec(port->app->cpp, eth_port->index, fec); in nfp_port_set_fecparam()