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.h | |
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.h')
-rw-r--r-- | drivers/net/dsa/bcm_sf2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/dsa/bcm_sf2.h b/drivers/net/dsa/bcm_sf2.h index 03444982c25e..faaef320ec48 100644 --- a/drivers/net/dsa/bcm_sf2.h +++ b/drivers/net/dsa/bcm_sf2.h @@ -215,5 +215,6 @@ int bcm_sf2_set_rxnfc(struct dsa_switch *ds, int port, struct ethtool_rxnfc *nfc); int bcm_sf2_cfp_rst(struct bcm_sf2_priv *priv); void bcm_sf2_cfp_exit(struct dsa_switch *ds); +int bcm_sf2_cfp_resume(struct dsa_switch *ds); #endif /* __BCM_SF2_H */ |