/* SPDX-License-Identifier: GPL-2.0-only */ /**************************************************************************** * Driver for Solarflare network controllers and boards * Copyright 2006-2013 Solarflare Communications Inc. */ #ifndef EF4_WORKAROUNDS_H #define EF4_WORKAROUNDS_H /* * Hardware workarounds. * Bug numbers are from Solarflare's Bugzilla. */ #define EF4_WORKAROUND_FALCON_A(efx) … #define EF4_WORKAROUND_FALCON_AB(efx) … #define EF4_WORKAROUND_10G(efx) … /* Bit-bashed I2C reads cause performance drop */ #define EF4_WORKAROUND_7884 … /* Truncated IPv4 packets can confuse the TX packet parser */ #define EF4_WORKAROUND_15592 … /* Spurious parity errors in TSORT buffers */ #define EF4_WORKAROUND_5129 … /* Unaligned read request >512 bytes after aligning may break TSORT */ #define EF4_WORKAROUND_5391 … /* iSCSI parsing errors */ #define EF4_WORKAROUND_5583 … /* RX events go missing */ #define EF4_WORKAROUND_5676 … /* RX_RESET on A1 */ #define EF4_WORKAROUND_6555 … /* Increase filter depth to avoid RX_RESET */ #define EF4_WORKAROUND_7244 … /* Flushes may never complete */ #define EF4_WORKAROUND_7803 … /* Leak overlength packets rather than free */ #define EF4_WORKAROUND_8071 … #endif /* EF4_WORKAROUNDS_H */