net: sfp: Add tx-fault workaround for Huawei MA5671A SFP ONT
[ Upstream commit 2069624dac19d62c558bb6468fe03678553ab01d ] As noted elsewhere, various GPON SFP modules exhibit non-standard TX-fault behaviour. In the tested case, the Huawei MA5671A, when used in combination with a Marvell mv88e6085 switch, was found to persistently assert TX-fault, resulting in the module being disabled. This patch adds a quirk to ignore the SFP_F_TX_FAULT state, allowing the module to function. Change from v1: removal of erroneous return statment (Andrew Lunn) Signed-off-by: Matthew Hagan <mnhagan88@gmail.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Link: https://lore.kernel.org/r/20220502223315.1973376-1-mnhagan88@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
48f1dd67a8
commit
3abbfac1ab
@@ -249,6 +249,7 @@ struct sfp {
|
|||||||
struct sfp_eeprom_id id;
|
struct sfp_eeprom_id id;
|
||||||
unsigned int module_power_mW;
|
unsigned int module_power_mW;
|
||||||
unsigned int module_t_start_up;
|
unsigned int module_t_start_up;
|
||||||
|
bool tx_fault_ignore;
|
||||||
|
|
||||||
#if IS_ENABLED(CONFIG_HWMON)
|
#if IS_ENABLED(CONFIG_HWMON)
|
||||||
struct sfp_diag diag;
|
struct sfp_diag diag;
|
||||||
@@ -1893,6 +1894,12 @@ static int sfp_sm_mod_probe(struct sfp *sfp, bool report)
|
|||||||
else
|
else
|
||||||
sfp->module_t_start_up = T_START_UP;
|
sfp->module_t_start_up = T_START_UP;
|
||||||
|
|
||||||
|
if (!memcmp(id.base.vendor_name, "HUAWEI ", 16) &&
|
||||||
|
!memcmp(id.base.vendor_pn, "MA5671A ", 16))
|
||||||
|
sfp->tx_fault_ignore = true;
|
||||||
|
else
|
||||||
|
sfp->tx_fault_ignore = false;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2320,6 +2327,9 @@ static void sfp_check_state(struct sfp *sfp)
|
|||||||
mutex_lock(&sfp->st_mutex);
|
mutex_lock(&sfp->st_mutex);
|
||||||
state = sfp_get_state(sfp);
|
state = sfp_get_state(sfp);
|
||||||
changed = state ^ sfp->state;
|
changed = state ^ sfp->state;
|
||||||
|
if (sfp->tx_fault_ignore)
|
||||||
|
changed &= SFP_F_PRESENT | SFP_F_LOS;
|
||||||
|
else
|
||||||
changed &= SFP_F_PRESENT | SFP_F_LOS | SFP_F_TX_FAULT;
|
changed &= SFP_F_PRESENT | SFP_F_LOS | SFP_F_TX_FAULT;
|
||||||
|
|
||||||
for (i = 0; i < GPIO_MAX; i++)
|
for (i = 0; i < GPIO_MAX; i++)
|
||||||
|
Reference in New Issue
Block a user