170-net-bgmac-fix-reversed-checks-for-clock-control-flag.patch 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
  2. Date: Mon, 7 Nov 2016 13:19:42 +0100
  3. Subject: [PATCH] net: bgmac: fix reversed checks for clock control flag
  4. This fixes regression introduced by patch adding feature flags. It was
  5. already reported and patch followed (it got accepted) but it appears it
  6. was incorrect. Instead of fixing reversed condition it broke a good one.
  7. This patch was verified to actually fix SoC hanges caused by bgmac on
  8. BCM47186B0.
  9. Fixes: db791eb2970b ("net: ethernet: bgmac: convert to feature flags")
  10. Fixes: 4af1474e6198 ("net: bgmac: Fix errant feature flag check")
  11. Cc: Jon Mason <jon.mason@broadcom.com>
  12. ---
  13. drivers/net/ethernet/broadcom/bgmac.c | 4 ++--
  14. 1 file changed, 2 insertions(+), 2 deletions(-)
  15. --- a/drivers/net/ethernet/broadcom/bgmac.c
  16. +++ b/drivers/net/ethernet/broadcom/bgmac.c
  17. @@ -1049,9 +1049,9 @@ static void bgmac_enable(struct bgmac *b
  18. mode = (bgmac_read(bgmac, BGMAC_DEV_STATUS) & BGMAC_DS_MM_MASK) >>
  19. BGMAC_DS_MM_SHIFT;
  20. - if (!(bgmac->feature_flags & BGMAC_FEAT_CLKCTLST) || mode != 0)
  21. + if (bgmac->feature_flags & BGMAC_FEAT_CLKCTLST || mode != 0)
  22. bgmac_set(bgmac, BCMA_CLKCTLST, BCMA_CLKCTLST_FORCEHT);
  23. - if (bgmac->feature_flags & BGMAC_FEAT_CLKCTLST && mode == 2)
  24. + if (!(bgmac->feature_flags & BGMAC_FEAT_CLKCTLST) && mode == 2)
  25. bgmac_cco_ctl_maskset(bgmac, 1, ~0,
  26. BGMAC_CHIPCTL_1_RXC_DLL_BYPASS);