net/sfc/base: add Medford2 support to Tx module
Signed-off-by: Andy Moreton <amoreton@solarflare.com> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
This commit is contained in:
parent
c956220e6c
commit
519c156170
@ -8,7 +8,7 @@
|
||||
#include "efx_impl.h"
|
||||
|
||||
|
||||
#if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD
|
||||
#if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD || EFSYS_OPT_MEDFORD2
|
||||
|
||||
#if EFSYS_OPT_QSTATS
|
||||
#define EFX_TX_QSTAT_INCR(_etp, _stat) \
|
||||
@ -752,4 +752,4 @@ ef10_tx_qstats_update(
|
||||
|
||||
#endif /* EFSYS_OPT_QSTATS */
|
||||
|
||||
#endif /* EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD */
|
||||
#endif /* EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD || EFSYS_OPT_MEDFORD2 */
|
||||
|
@ -175,6 +175,33 @@ static const efx_tx_ops_t __efx_tx_medford_ops = {
|
||||
};
|
||||
#endif /* EFSYS_OPT_MEDFORD */
|
||||
|
||||
#if EFSYS_OPT_MEDFORD2
|
||||
static const efx_tx_ops_t __efx_tx_medford2_ops = {
|
||||
ef10_tx_init, /* etxo_init */
|
||||
ef10_tx_fini, /* etxo_fini */
|
||||
ef10_tx_qcreate, /* etxo_qcreate */
|
||||
ef10_tx_qdestroy, /* etxo_qdestroy */
|
||||
ef10_tx_qpost, /* etxo_qpost */
|
||||
ef10_tx_qpush, /* etxo_qpush */
|
||||
ef10_tx_qpace, /* etxo_qpace */
|
||||
ef10_tx_qflush, /* etxo_qflush */
|
||||
ef10_tx_qenable, /* etxo_qenable */
|
||||
ef10_tx_qpio_enable, /* etxo_qpio_enable */
|
||||
ef10_tx_qpio_disable, /* etxo_qpio_disable */
|
||||
ef10_tx_qpio_write, /* etxo_qpio_write */
|
||||
ef10_tx_qpio_post, /* etxo_qpio_post */
|
||||
ef10_tx_qdesc_post, /* etxo_qdesc_post */
|
||||
ef10_tx_qdesc_dma_create, /* etxo_qdesc_dma_create */
|
||||
NULL, /* etxo_qdesc_tso_create */
|
||||
ef10_tx_qdesc_tso2_create, /* etxo_qdesc_tso2_create */
|
||||
ef10_tx_qdesc_vlantci_create, /* etxo_qdesc_vlantci_create */
|
||||
#if EFSYS_OPT_QSTATS
|
||||
ef10_tx_qstats_update, /* etxo_qstats_update */
|
||||
#endif
|
||||
};
|
||||
#endif /* EFSYS_OPT_MEDFORD2 */
|
||||
|
||||
|
||||
__checkReturn efx_rc_t
|
||||
efx_tx_init(
|
||||
__in efx_nic_t *enp)
|
||||
@ -214,6 +241,12 @@ efx_tx_init(
|
||||
break;
|
||||
#endif /* EFSYS_OPT_MEDFORD */
|
||||
|
||||
#if EFSYS_OPT_MEDFORD2
|
||||
case EFX_FAMILY_MEDFORD2:
|
||||
etxop = &__efx_tx_medford2_ops;
|
||||
break;
|
||||
#endif /* EFSYS_OPT_MEDFORD2 */
|
||||
|
||||
default:
|
||||
EFSYS_ASSERT(0);
|
||||
rc = ENOTSUP;
|
||||
|
Loading…
Reference in New Issue
Block a user