common/sfc_efx/base: add API to get mport selector by ID
[dpdk.git] / drivers / common / sfc_efx / base / efx_ev.c
index e6a8d4c..4808f8d 100644 (file)
@@ -1,6 +1,6 @@
 /* SPDX-License-Identifier: BSD-3-Clause
  *
- * Copyright(c) 2019-2020 Xilinx, Inc.
+ * Copyright(c) 2019-2021 Xilinx, Inc.
  * Copyright(c) 2007-2019 Solarflare Communications Inc.
  */
 
@@ -35,6 +35,7 @@ siena_ev_qcreate(
        __in            uint32_t id,
        __in            uint32_t us,
        __in            uint32_t flags,
+       __in            uint32_t irq,
        __in            efx_evq_t *eep);
 
 static                 void
@@ -66,6 +67,17 @@ siena_ev_qstats_update(
 
 #endif /* EFSYS_OPT_SIENA */
 
+#if EFX_OPTS_EF10() || EFSYS_OPT_SIENA
+
+static                 void
+siena_ef10_ev_qpoll(
+       __in            efx_evq_t *eep,
+       __inout         unsigned int *countp,
+       __in            const efx_ev_callbacks_t *eecp,
+       __in_opt        void *arg);
+
+#endif /* EFX_OPTS_EF10() || EFSYS_OPT_SIENA */
+
 #if EFSYS_OPT_SIENA
 static const efx_ev_ops_t      __efx_ev_siena_ops = {
        siena_ev_init,                          /* eevo_init */
@@ -74,6 +86,7 @@ static const efx_ev_ops_t     __efx_ev_siena_ops = {
        siena_ev_qdestroy,                      /* eevo_qdestroy */
        siena_ev_qprime,                        /* eevo_qprime */
        siena_ev_qpost,                         /* eevo_qpost */
+       siena_ef10_ev_qpoll,                    /* eevo_qpoll */
        siena_ev_qmoderate,                     /* eevo_qmoderate */
 #if EFSYS_OPT_QSTATS
        siena_ev_qstats_update,                 /* eevo_qstats_update */
@@ -89,6 +102,7 @@ static const efx_ev_ops_t    __efx_ev_ef10_ops = {
        ef10_ev_qdestroy,                       /* eevo_qdestroy */
        ef10_ev_qprime,                         /* eevo_qprime */
        ef10_ev_qpost,                          /* eevo_qpost */
+       siena_ef10_ev_qpoll,                    /* eevo_qpoll */
        ef10_ev_qmoderate,                      /* eevo_qmoderate */
 #if EFSYS_OPT_QSTATS
        ef10_ev_qstats_update,                  /* eevo_qstats_update */
@@ -96,6 +110,22 @@ static const efx_ev_ops_t   __efx_ev_ef10_ops = {
 };
 #endif /* EFX_OPTS_EF10() */
 
+#if EFSYS_OPT_RIVERHEAD
+static const efx_ev_ops_t      __efx_ev_rhead_ops = {
+       rhead_ev_init,                          /* eevo_init */
+       rhead_ev_fini,                          /* eevo_fini */
+       rhead_ev_qcreate,                       /* eevo_qcreate */
+       rhead_ev_qdestroy,                      /* eevo_qdestroy */
+       rhead_ev_qprime,                        /* eevo_qprime */
+       rhead_ev_qpost,                         /* eevo_qpost */
+       rhead_ev_qpoll,                         /* eevo_qpoll */
+       rhead_ev_qmoderate,                     /* eevo_qmoderate */
+#if EFSYS_OPT_QSTATS
+       rhead_ev_qstats_update,                 /* eevo_qstats_update */
+#endif
+};
+#endif /* EFSYS_OPT_RIVERHEAD */
+
 
        __checkReturn   efx_rc_t
 efx_ev_init(
@@ -137,6 +167,12 @@ efx_ev_init(
                break;
 #endif /* EFSYS_OPT_MEDFORD2 */
 
+#if EFSYS_OPT_RIVERHEAD
+       case EFX_FAMILY_RIVERHEAD:
+               eevop = &__efx_ev_rhead_ops;
+               break;
+#endif /* EFSYS_OPT_RIVERHEAD */
+
        default:
                EFSYS_ASSERT(0);
                rc = ENOTSUP;
@@ -166,19 +202,35 @@ fail1:
        __checkReturn   size_t
 efx_evq_size(
        __in    const efx_nic_t *enp,
-       __in    unsigned int ndescs)
+       __in    unsigned int ndescs,
+       __in    uint32_t flags)
 {
        const efx_nic_cfg_t *encp = efx_nic_cfg_get(enp);
+       size_t desc_size;
+
+       desc_size = encp->enc_ev_desc_size;
+
+#if EFSYS_OPT_EV_EXTENDED_WIDTH
+       if (flags & EFX_EVQ_FLAGS_EXTENDED_WIDTH)
+               desc_size = encp->enc_ev_ew_desc_size;
+#else
+       EFSYS_ASSERT((flags & EFX_EVQ_FLAGS_EXTENDED_WIDTH) == 0);
+#endif
 
-       return (ndescs * encp->enc_ev_desc_size);
+       return (ndescs * desc_size);
 }
 
        __checkReturn   unsigned int
 efx_evq_nbufs(
        __in    const efx_nic_t *enp,
-       __in    unsigned int ndescs)
+       __in    unsigned int ndescs,
+       __in    uint32_t flags)
 {
-       return (EFX_DIV_ROUND_UP(efx_evq_size(enp, ndescs), EFX_BUF_SIZE));
+       size_t size;
+
+       size = efx_evq_size(enp, ndescs, flags);
+
+       return (EFX_DIV_ROUND_UP(size, EFX_BUF_SIZE));
 }
 
                void
@@ -202,7 +254,7 @@ efx_ev_fini(
 
 
        __checkReturn   efx_rc_t
-efx_ev_qcreate(
+efx_ev_qcreate_irq(
        __in            efx_nic_t *enp,
        __in            unsigned int index,
        __in            efsys_mem_t *esmp,
@@ -210,6 +262,7 @@ efx_ev_qcreate(
        __in            uint32_t id,
        __in            uint32_t us,
        __in            uint32_t flags,
+       __in            uint32_t irq,
        __deref_out     efx_evq_t **eepp)
 {
        const efx_ev_ops_t *eevop = enp->en_eevop;
@@ -223,18 +276,35 @@ efx_ev_qcreate(
        EFSYS_ASSERT3U(enp->en_ev_qcount + 1, <,
            enp->en_nic_cfg.enc_evq_limit);
 
+       if (index >= encp->enc_evq_limit) {
+               rc = EINVAL;
+               goto fail1;
+       }
+
+       if (us > encp->enc_evq_timer_max_us) {
+               rc = EINVAL;
+               goto fail2;
+       }
+
        switch (flags & EFX_EVQ_FLAGS_NOTIFY_MASK) {
        case EFX_EVQ_FLAGS_NOTIFY_INTERRUPT:
                break;
        case EFX_EVQ_FLAGS_NOTIFY_DISABLED:
                if (us != 0) {
                        rc = EINVAL;
-                       goto fail1;
+                       goto fail3;
                }
                break;
        default:
                rc = EINVAL;
-               goto fail2;
+               goto fail4;
+       }
+
+       if ((flags & EFX_EVQ_FLAGS_EXTENDED_WIDTH) &&
+           (encp->enc_ev_ew_desc_size == 0)) {
+               /* Extended width event descriptors are not supported. */
+               rc = EINVAL;
+               goto fail5;
        }
 
        EFSYS_ASSERT(ISP2(encp->enc_evq_max_nevs));
@@ -244,14 +314,20 @@ efx_ev_qcreate(
            ndescs < encp->enc_evq_min_nevs ||
            ndescs > encp->enc_evq_max_nevs) {
                rc = EINVAL;
-               goto fail3;
+               goto fail6;
+       }
+
+       if (EFSYS_MEM_SIZE(esmp) < (ndescs * encp->enc_ev_desc_size)) {
+               /* Buffer too small for event queue descriptors. */
+               rc = EINVAL;
+               goto fail7;
        }
 
        /* Allocate an EVQ object */
        EFSYS_KMEM_ALLOC(enp->en_esip, sizeof (efx_evq_t), eep);
        if (eep == NULL) {
                rc = ENOMEM;
-               goto fail4;
+               goto fail8;
        }
 
        eep->ee_magic = EFX_EVQ_MAGIC;
@@ -273,17 +349,25 @@ efx_ev_qcreate(
        *eepp = eep;
 
        if ((rc = eevop->eevo_qcreate(enp, index, esmp, ndescs, id, us, flags,
-           eep)) != 0)
-               goto fail5;
+           irq, eep)) != 0)
+               goto fail9;
 
        return (0);
 
-fail5:
-       EFSYS_PROBE(fail5);
+fail9:
+       EFSYS_PROBE(fail9);
 
        *eepp = NULL;
        enp->en_ev_qcount--;
        EFSYS_KMEM_FREE(enp->en_esip, sizeof (efx_evq_t), eep);
+fail8:
+       EFSYS_PROBE(fail8);
+fail7:
+       EFSYS_PROBE(fail7);
+fail6:
+       EFSYS_PROBE(fail6);
+fail5:
+       EFSYS_PROBE(fail5);
 fail4:
        EFSYS_PROBE(fail4);
 fail3:
@@ -295,6 +379,23 @@ fail1:
        return (rc);
 }
 
+       __checkReturn   efx_rc_t
+efx_ev_qcreate(
+       __in            efx_nic_t *enp,
+       __in            unsigned int index,
+       __in            efsys_mem_t *esmp,
+       __in            size_t ndescs,
+       __in            uint32_t id,
+       __in            uint32_t us,
+       __in            uint32_t flags,
+       __deref_out     efx_evq_t **eepp)
+{
+       uint32_t irq = index;
+
+       return (efx_ev_qcreate_irq(enp, index, esmp, ndescs, id, us, flags,
+           irq, eepp));
+}
+
                void
 efx_ev_qdestroy(
        __in    efx_evq_t *eep)
@@ -374,162 +475,52 @@ efx_ev_qprefetch(
 
 #endif /* EFSYS_OPT_EV_PREFETCH */
 
-#define        EFX_EV_BATCH    8
-
+/*
+ * This method is needed to ensure that eec_initialized callback
+ * is invoked after queue creation. The callback will be invoked
+ * on Riverhead boards which have no support for INIT_DONE events
+ * and will do nothing on other boards.
+ *
+ * The client drivers must call this method after calling efx_ev_create().
+ * The call must be done with the same locks being held (if any) which are
+ * normally acquired around efx_ev_qpoll() calls to ensure that
+ * eec_initialized callback is invoked within the same locking context.
+ */
                        void
-efx_ev_qpoll(
+efx_ev_qcreate_check_init_done(
        __in            efx_evq_t *eep,
-       __inout         unsigned int *countp,
        __in            const efx_ev_callbacks_t *eecp,
        __in_opt        void *arg)
 {
-       efx_qword_t ev[EFX_EV_BATCH];
-       unsigned int batch;
-       unsigned int total;
-       unsigned int count;
-       unsigned int index;
-       size_t offset;
-
-       /* Ensure events codes match for EF10 (Huntington/Medford) and Siena */
-       EFX_STATIC_ASSERT(ESF_DZ_EV_CODE_LBN == FSF_AZ_EV_CODE_LBN);
-       EFX_STATIC_ASSERT(ESF_DZ_EV_CODE_WIDTH == FSF_AZ_EV_CODE_WIDTH);
-
-       EFX_STATIC_ASSERT(ESE_DZ_EV_CODE_RX_EV == FSE_AZ_EV_CODE_RX_EV);
-       EFX_STATIC_ASSERT(ESE_DZ_EV_CODE_TX_EV == FSE_AZ_EV_CODE_TX_EV);
-       EFX_STATIC_ASSERT(ESE_DZ_EV_CODE_DRIVER_EV == FSE_AZ_EV_CODE_DRIVER_EV);
-       EFX_STATIC_ASSERT(ESE_DZ_EV_CODE_DRV_GEN_EV ==
-           FSE_AZ_EV_CODE_DRV_GEN_EV);
-#if EFSYS_OPT_MCDI
-       EFX_STATIC_ASSERT(ESE_DZ_EV_CODE_MCDI_EV ==
-           FSE_AZ_EV_CODE_MCDI_EVRESPONSE);
-#endif
+       const efx_nic_cfg_t *encp;
 
+       EFSYS_ASSERT(eep != NULL);
        EFSYS_ASSERT3U(eep->ee_magic, ==, EFX_EVQ_MAGIC);
-       EFSYS_ASSERT(countp != NULL);
        EFSYS_ASSERT(eecp != NULL);
+       EFSYS_ASSERT(eecp->eec_initialized != NULL);
 
-       count = *countp;
-       do {
-               /* Read up until the end of the batch period */
-               batch = EFX_EV_BATCH - (count & (EFX_EV_BATCH - 1));
-               offset = (count & eep->ee_mask) * sizeof (efx_qword_t);
-               for (total = 0; total < batch; ++total) {
-                       EFSYS_MEM_READQ(eep->ee_esmp, offset, &(ev[total]));
+       encp = efx_nic_cfg_get(eep->ee_enp);
 
-                       if (!EFX_EV_PRESENT(ev[total]))
-                               break;
-
-                       EFSYS_PROBE3(event, unsigned int, eep->ee_index,
-                           uint32_t, EFX_QWORD_FIELD(ev[total], EFX_DWORD_1),
-                           uint32_t, EFX_QWORD_FIELD(ev[total], EFX_DWORD_0));
-
-                       offset += sizeof (efx_qword_t);
-               }
-
-#if EFSYS_OPT_EV_PREFETCH && (EFSYS_OPT_EV_PREFETCH_PERIOD > 1)
-               /*
-                * Prefetch the next batch when we get within PREFETCH_PERIOD
-                * of a completed batch. If the batch is smaller, then prefetch
-                * immediately.
-                */
-               if (total == batch && total < EFSYS_OPT_EV_PREFETCH_PERIOD)
-                       EFSYS_MEM_PREFETCH(eep->ee_esmp, offset);
-#endif /* EFSYS_OPT_EV_PREFETCH */
-
-               /* Process the batch of events */
-               for (index = 0; index < total; ++index) {
-                       boolean_t should_abort;
-                       uint32_t code;
-
-#if EFSYS_OPT_EV_PREFETCH
-                       /* Prefetch if we've now reached the batch period */
-                       if (total == batch &&
-                           index + EFSYS_OPT_EV_PREFETCH_PERIOD == total) {
-                               offset = (count + batch) & eep->ee_mask;
-                               offset *= sizeof (efx_qword_t);
-
-                               EFSYS_MEM_PREFETCH(eep->ee_esmp, offset);
-                       }
-#endif /* EFSYS_OPT_EV_PREFETCH */
-
-                       EFX_EV_QSTAT_INCR(eep, EV_ALL);
-
-                       code = EFX_QWORD_FIELD(ev[index], FSF_AZ_EV_CODE);
-                       switch (code) {
-                       case FSE_AZ_EV_CODE_RX_EV:
-                               should_abort = eep->ee_rx(eep,
-                                   &(ev[index]), eecp, arg);
-                               break;
-                       case FSE_AZ_EV_CODE_TX_EV:
-                               should_abort = eep->ee_tx(eep,
-                                   &(ev[index]), eecp, arg);
-                               break;
-                       case FSE_AZ_EV_CODE_DRIVER_EV:
-                               should_abort = eep->ee_driver(eep,
-                                   &(ev[index]), eecp, arg);
-                               break;
-                       case FSE_AZ_EV_CODE_DRV_GEN_EV:
-                               should_abort = eep->ee_drv_gen(eep,
-                                   &(ev[index]), eecp, arg);
-                               break;
-#if EFSYS_OPT_MCDI
-                       case FSE_AZ_EV_CODE_MCDI_EVRESPONSE:
-                               should_abort = eep->ee_mcdi(eep,
-                                   &(ev[index]), eecp, arg);
-                               break;
-#endif
-                       case FSE_AZ_EV_CODE_GLOBAL_EV:
-                               if (eep->ee_global) {
-                                       should_abort = eep->ee_global(eep,
-                                           &(ev[index]), eecp, arg);
-                                       break;
-                               }
-                               /* else fallthrough */
-                       default:
-                               EFSYS_PROBE3(bad_event,
-                                   unsigned int, eep->ee_index,
-                                   uint32_t,
-                                   EFX_QWORD_FIELD(ev[index], EFX_DWORD_1),
-                                   uint32_t,
-                                   EFX_QWORD_FIELD(ev[index], EFX_DWORD_0));
-
-                               EFSYS_ASSERT(eecp->eec_exception != NULL);
-                               (void) eecp->eec_exception(arg,
-                                       EFX_EXCEPTION_EV_ERROR, code);
-                               should_abort = B_TRUE;
-                       }
-                       if (should_abort) {
-                               /* Ignore subsequent events */
-                               total = index + 1;
-
-                               /*
-                                * Poison batch to ensure the outer
-                                * loop is broken out of.
-                                */
-                               EFSYS_ASSERT(batch <= EFX_EV_BATCH);
-                               batch += (EFX_EV_BATCH << 1);
-                               EFSYS_ASSERT(total != batch);
-                               break;
-                       }
-               }
+       if (encp->enc_evq_init_done_ev_supported == B_FALSE)
+               (void) eecp->eec_initialized(arg);
+}
 
-               /*
-                * Now that the hardware has most likely moved onto dma'ing
-                * into the next cache line, clear the processed events. Take
-                * care to only clear out events that we've processed
-                */
-               EFX_SET_QWORD(ev[0]);
-               offset = (count & eep->ee_mask) * sizeof (efx_qword_t);
-               for (index = 0; index < total; ++index) {
-                       EFSYS_MEM_WRITEQ(eep->ee_esmp, offset, &(ev[0]));
-                       offset += sizeof (efx_qword_t);
-               }
+                       void
+efx_ev_qpoll(
+       __in            efx_evq_t *eep,
+       __inout         unsigned int *countp,
+       __in            const efx_ev_callbacks_t *eecp,
+       __in_opt        void *arg)
+{
+       efx_nic_t *enp = eep->ee_enp;
+       const efx_ev_ops_t *eevop = enp->en_eevop;
 
-               count += total;
+       EFSYS_ASSERT3U(eep->ee_magic, ==, EFX_EVQ_MAGIC);
 
-       } while (total == batch);
+       EFSYS_ASSERT(eevop != NULL &&
+           eevop->eevo_qpoll != NULL);
 
-       *countp = count;
+       eevop->eevo_qpoll(eep, countp, eecp, arg);
 }
 
                        void
@@ -1306,6 +1297,7 @@ siena_ev_qcreate(
        __in            uint32_t id,
        __in            uint32_t us,
        __in            uint32_t flags,
+       __in            uint32_t irq,
        __in            efx_evq_t *eep)
 {
        efx_nic_cfg_t *encp = &(enp->en_nic_cfg);
@@ -1316,10 +1308,13 @@ siena_ev_qcreate(
 
        _NOTE(ARGUNUSED(esmp))
 
-       if (index >= encp->enc_evq_limit) {
+       EFSYS_ASSERT((flags & EFX_EVQ_FLAGS_EXTENDED_WIDTH) == 0);
+
+       if (irq != index) {
                rc = EINVAL;
                goto fail1;
        }
+
 #if EFSYS_OPT_RX_SCALE
        if (enp->en_intr.ei_type == EFX_INTR_LINE &&
            index >= EFX_MAXRSS_LEGACY) {
@@ -1484,3 +1479,165 @@ siena_ev_fini(
 }
 
 #endif /* EFSYS_OPT_SIENA */
+
+#if EFX_OPTS_EF10() || EFSYS_OPT_SIENA
+
+#define        EFX_EV_BATCH    8
+
+static                 void
+siena_ef10_ev_qpoll(
+       __in            efx_evq_t *eep,
+       __inout         unsigned int *countp,
+       __in            const efx_ev_callbacks_t *eecp,
+       __in_opt        void *arg)
+{
+       efx_qword_t ev[EFX_EV_BATCH];
+       unsigned int batch;
+       unsigned int total;
+       unsigned int count;
+       unsigned int index;
+       size_t offset;
+
+       /* Ensure events codes match for EF10 (Huntington/Medford) and Siena */
+       EFX_STATIC_ASSERT(ESF_DZ_EV_CODE_LBN == FSF_AZ_EV_CODE_LBN);
+       EFX_STATIC_ASSERT(ESF_DZ_EV_CODE_WIDTH == FSF_AZ_EV_CODE_WIDTH);
+
+       EFX_STATIC_ASSERT(ESE_DZ_EV_CODE_RX_EV == FSE_AZ_EV_CODE_RX_EV);
+       EFX_STATIC_ASSERT(ESE_DZ_EV_CODE_TX_EV == FSE_AZ_EV_CODE_TX_EV);
+       EFX_STATIC_ASSERT(ESE_DZ_EV_CODE_DRIVER_EV == FSE_AZ_EV_CODE_DRIVER_EV);
+       EFX_STATIC_ASSERT(ESE_DZ_EV_CODE_DRV_GEN_EV ==
+           FSE_AZ_EV_CODE_DRV_GEN_EV);
+#if EFSYS_OPT_MCDI
+       EFX_STATIC_ASSERT(ESE_DZ_EV_CODE_MCDI_EV ==
+           FSE_AZ_EV_CODE_MCDI_EVRESPONSE);
+#endif
+
+       EFSYS_ASSERT3U(eep->ee_magic, ==, EFX_EVQ_MAGIC);
+       EFSYS_ASSERT(countp != NULL);
+       EFSYS_ASSERT(eecp != NULL);
+
+       count = *countp;
+       do {
+               /* Read up until the end of the batch period */
+               batch = EFX_EV_BATCH - (count & (EFX_EV_BATCH - 1));
+               offset = (count & eep->ee_mask) * sizeof (efx_qword_t);
+               for (total = 0; total < batch; ++total) {
+                       EFSYS_MEM_READQ(eep->ee_esmp, offset, &(ev[total]));
+
+                       if (!EFX_EV_PRESENT(ev[total]))
+                               break;
+
+                       EFSYS_PROBE3(event, unsigned int, eep->ee_index,
+                           uint32_t, EFX_QWORD_FIELD(ev[total], EFX_DWORD_1),
+                           uint32_t, EFX_QWORD_FIELD(ev[total], EFX_DWORD_0));
+
+                       offset += sizeof (efx_qword_t);
+               }
+
+#if EFSYS_OPT_EV_PREFETCH && (EFSYS_OPT_EV_PREFETCH_PERIOD > 1)
+               /*
+                * Prefetch the next batch when we get within PREFETCH_PERIOD
+                * of a completed batch. If the batch is smaller, then prefetch
+                * immediately.
+                */
+               if (total == batch && total < EFSYS_OPT_EV_PREFETCH_PERIOD)
+                       EFSYS_MEM_PREFETCH(eep->ee_esmp, offset);
+#endif /* EFSYS_OPT_EV_PREFETCH */
+
+               /* Process the batch of events */
+               for (index = 0; index < total; ++index) {
+                       boolean_t should_abort;
+                       uint32_t code;
+
+#if EFSYS_OPT_EV_PREFETCH
+                       /* Prefetch if we've now reached the batch period */
+                       if (total == batch &&
+                           index + EFSYS_OPT_EV_PREFETCH_PERIOD == total) {
+                               offset = (count + batch) & eep->ee_mask;
+                               offset *= sizeof (efx_qword_t);
+
+                               EFSYS_MEM_PREFETCH(eep->ee_esmp, offset);
+                       }
+#endif /* EFSYS_OPT_EV_PREFETCH */
+
+                       EFX_EV_QSTAT_INCR(eep, EV_ALL);
+
+                       code = EFX_QWORD_FIELD(ev[index], FSF_AZ_EV_CODE);
+                       switch (code) {
+                       case FSE_AZ_EV_CODE_RX_EV:
+                               should_abort = eep->ee_rx(eep,
+                                   &(ev[index]), eecp, arg);
+                               break;
+                       case FSE_AZ_EV_CODE_TX_EV:
+                               should_abort = eep->ee_tx(eep,
+                                   &(ev[index]), eecp, arg);
+                               break;
+                       case FSE_AZ_EV_CODE_DRIVER_EV:
+                               should_abort = eep->ee_driver(eep,
+                                   &(ev[index]), eecp, arg);
+                               break;
+                       case FSE_AZ_EV_CODE_DRV_GEN_EV:
+                               should_abort = eep->ee_drv_gen(eep,
+                                   &(ev[index]), eecp, arg);
+                               break;
+#if EFSYS_OPT_MCDI
+                       case FSE_AZ_EV_CODE_MCDI_EVRESPONSE:
+                               should_abort = eep->ee_mcdi(eep,
+                                   &(ev[index]), eecp, arg);
+                               break;
+#endif
+                       case FSE_AZ_EV_CODE_GLOBAL_EV:
+                               if (eep->ee_global) {
+                                       should_abort = eep->ee_global(eep,
+                                           &(ev[index]), eecp, arg);
+                                       break;
+                               }
+                               /* else fallthrough */
+                       default:
+                               EFSYS_PROBE3(bad_event,
+                                   unsigned int, eep->ee_index,
+                                   uint32_t,
+                                   EFX_QWORD_FIELD(ev[index], EFX_DWORD_1),
+                                   uint32_t,
+                                   EFX_QWORD_FIELD(ev[index], EFX_DWORD_0));
+
+                               EFSYS_ASSERT(eecp->eec_exception != NULL);
+                               (void) eecp->eec_exception(arg,
+                                       EFX_EXCEPTION_EV_ERROR, code);
+                               should_abort = B_TRUE;
+                       }
+                       if (should_abort) {
+                               /* Ignore subsequent events */
+                               total = index + 1;
+
+                               /*
+                                * Poison batch to ensure the outer
+                                * loop is broken out of.
+                                */
+                               EFSYS_ASSERT(batch <= EFX_EV_BATCH);
+                               batch += (EFX_EV_BATCH << 1);
+                               EFSYS_ASSERT(total != batch);
+                               break;
+                       }
+               }
+
+               /*
+                * Now that the hardware has most likely moved onto dma'ing
+                * into the next cache line, clear the processed events. Take
+                * care to only clear out events that we've processed
+                */
+               EFX_SET_QWORD(ev[0]);
+               offset = (count & eep->ee_mask) * sizeof (efx_qword_t);
+               for (index = 0; index < total; ++index) {
+                       EFSYS_MEM_WRITEQ(eep->ee_esmp, offset, &(ev[0]));
+                       offset += sizeof (efx_qword_t);
+               }
+
+               count += total;
+
+       } while (total == batch);
+
+       *countp = count;
+}
+
+#endif /* EFX_OPTS_EF10() || EFSYS_OPT_SIENA */