workarounds.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /****************************************************************************
  2. * Driver for Solarflare Solarstorm network controllers and boards
  3. * Copyright 2006-2008 Solarflare Communications Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License version 2 as published
  7. * by the Free Software Foundation, incorporated herein by reference.
  8. */
  9. #ifndef EFX_WORKAROUNDS_H
  10. #define EFX_WORKAROUNDS_H
  11. /*
  12. * Hardware workarounds.
  13. * Bug numbers are from Solarflare's Bugzilla.
  14. */
  15. #define EFX_WORKAROUND_ALWAYS(efx) 1
  16. #define EFX_WORKAROUND_FALCON_A(efx) (falcon_rev(efx) <= FALCON_REV_A1)
  17. #define EFX_WORKAROUND_FALCON_AB(efx) (falcon_rev(efx) <= FALCON_REV_B0)
  18. #define EFX_WORKAROUND_10G(efx) EFX_IS10G(efx)
  19. #define EFX_WORKAROUND_SFT9001(efx) ((efx)->phy_type == PHY_TYPE_SFT9001A || \
  20. (efx)->phy_type == PHY_TYPE_SFT9001B)
  21. /* XAUI resets if link not detected */
  22. #define EFX_WORKAROUND_5147 EFX_WORKAROUND_ALWAYS
  23. /* RX PCIe double split performance issue */
  24. #define EFX_WORKAROUND_7575 EFX_WORKAROUND_ALWAYS
  25. /* Bit-bashed I2C reads cause performance drop */
  26. #define EFX_WORKAROUND_7884 EFX_WORKAROUND_10G
  27. /* TX pkt parser problem with <= 16 byte TXes */
  28. #define EFX_WORKAROUND_9141 EFX_WORKAROUND_ALWAYS
  29. /* TX_EV_PKT_ERR can be caused by a dangling TX descriptor
  30. * or a PCIe error (bug 11028) */
  31. #define EFX_WORKAROUND_10727 EFX_WORKAROUND_ALWAYS
  32. /* Transmit flow control may get disabled */
  33. #define EFX_WORKAROUND_11482 EFX_WORKAROUND_FALCON_AB
  34. /* Flush events can take a very long time to appear */
  35. #define EFX_WORKAROUND_11557 EFX_WORKAROUND_ALWAYS
  36. /* Truncated IPv4 packets can confuse the TX packet parser */
  37. #define EFX_WORKAROUND_15592 EFX_WORKAROUND_FALCON_AB
  38. /* Spurious parity errors in TSORT buffers */
  39. #define EFX_WORKAROUND_5129 EFX_WORKAROUND_FALCON_A
  40. /* Unaligned read request >512 bytes after aligning may break TSORT */
  41. #define EFX_WORKAROUND_5391 EFX_WORKAROUND_FALCON_A
  42. /* iSCSI parsing errors */
  43. #define EFX_WORKAROUND_5583 EFX_WORKAROUND_FALCON_A
  44. /* RX events go missing */
  45. #define EFX_WORKAROUND_5676 EFX_WORKAROUND_FALCON_A
  46. /* RX_RESET on A1 */
  47. #define EFX_WORKAROUND_6555 EFX_WORKAROUND_FALCON_A
  48. /* Increase filter depth to avoid RX_RESET */
  49. #define EFX_WORKAROUND_7244 EFX_WORKAROUND_FALCON_A
  50. /* Flushes may never complete */
  51. #define EFX_WORKAROUND_7803 EFX_WORKAROUND_FALCON_A
  52. /* Leak overlength packets rather than free */
  53. #define EFX_WORKAROUND_8071 EFX_WORKAROUND_FALCON_A
  54. /* Need to send XNP pages for 100BaseT */
  55. #define EFX_WORKAROUND_13204 EFX_WORKAROUND_SFT9001
  56. /* Don't restart AN in near-side loopback */
  57. #define EFX_WORKAROUND_15195 EFX_WORKAROUND_SFT9001
  58. #endif /* EFX_WORKAROUNDS_H */