diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2018-11-06 23:58:39 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-11-07 02:05:22 +0300 |
commit | 1c0130f0b5756b38b636e3cb7b3abc2b48bb9edc (patch) | |
tree | 475de58920d23b6ff3c1fbaeed4dc85aea134b4f /drivers/net/dsa/bcm_sf2.c | |
parent | ce24b08a2e6f7c70dd7a13bd8c2082950f3dd9f3 (diff) | |
download | linux-1c0130f0b5756b38b636e3cb7b3abc2b48bb9edc.tar.xz |
net: dsa: bcm_sf2: Restore CFP rules during system resume
The hardware can lose its context during system suspend, and depending
on the switch generation (7445 vs. 7278), while the rules are still
there, they will have their valid bit cleared (because that's the
fastest way for the HW to reset things). Just make sure we re-apply them
coming back from resume. The 7445 switch is an older version of the core
that has some quirky RAM technology requiring a delete then re-inser to
guarantee the RAM entries are properly latched.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/bcm_sf2.c')
-rw-r--r-- | drivers/net/dsa/bcm_sf2.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/dsa/bcm_sf2.c b/drivers/net/dsa/bcm_sf2.c index 89722dbfafb8..d8b93043b789 100644 --- a/drivers/net/dsa/bcm_sf2.c +++ b/drivers/net/dsa/bcm_sf2.c @@ -710,6 +710,10 @@ static int bcm_sf2_sw_resume(struct dsa_switch *ds) return ret; } + ret = bcm_sf2_cfp_resume(ds); + if (ret) + return ret; + if (priv->hw_params.num_gphy == 1) bcm_sf2_gphy_enable_set(ds, true); |