net/sfc: bind EvQ DMA space to EvQ type and type-local index
[dpdk.git] / drivers / net / sfc / sfc_ev.c
1 /*-
2  *   BSD LICENSE
3  *
4  * Copyright (c) 2016-2017 Solarflare Communications Inc.
5  * All rights reserved.
6  *
7  * This software was jointly developed between OKTET Labs (under contract
8  * for Solarflare) and Solarflare Communications, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright notice,
14  *    this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright notice,
16  *    this list of conditions and the following disclaimer in the documentation
17  *    and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
29  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #include <rte_debug.h>
33 #include <rte_cycles.h>
34 #include <rte_alarm.h>
35 #include <rte_branch_prediction.h>
36
37 #include "efx.h"
38
39 #include "sfc.h"
40 #include "sfc_debug.h"
41 #include "sfc_log.h"
42 #include "sfc_ev.h"
43 #include "sfc_rx.h"
44 #include "sfc_tx.h"
45 #include "sfc_kvargs.h"
46
47
48 /* Initial delay when waiting for event queue init complete event */
49 #define SFC_EVQ_INIT_BACKOFF_START_US   (1)
50 /* Maximum delay between event queue polling attempts */
51 #define SFC_EVQ_INIT_BACKOFF_MAX_US     (10 * 1000)
52 /* Event queue init approx timeout */
53 #define SFC_EVQ_INIT_TIMEOUT_US         (2 * US_PER_S)
54
55 /* Management event queue polling period in microseconds */
56 #define SFC_MGMT_EV_QPOLL_PERIOD_US     (US_PER_S)
57
58 static const char *
59 sfc_evq_type2str(enum sfc_evq_type type)
60 {
61         switch (type) {
62         case SFC_EVQ_TYPE_MGMT:
63                 return "mgmt-evq";
64         case SFC_EVQ_TYPE_RX:
65                 return "rx-evq";
66         case SFC_EVQ_TYPE_TX:
67                 return "tx-evq";
68         default:
69                 SFC_ASSERT(B_FALSE);
70                 return NULL;
71         }
72 }
73
74 static boolean_t
75 sfc_ev_initialized(void *arg)
76 {
77         struct sfc_evq *evq = arg;
78
79         /* Init done events may be duplicated on SFN7xxx (SFC bug 31631) */
80         SFC_ASSERT(evq->init_state == SFC_EVQ_STARTING ||
81                    evq->init_state == SFC_EVQ_STARTED);
82
83         evq->init_state = SFC_EVQ_STARTED;
84
85         return B_FALSE;
86 }
87
88 static boolean_t
89 sfc_ev_nop_rx(void *arg, uint32_t label, uint32_t id,
90               uint32_t size, uint16_t flags)
91 {
92         struct sfc_evq *evq = arg;
93
94         sfc_err(evq->sa,
95                 "EVQ %u unexpected Rx event label=%u id=%#x size=%u flags=%#x",
96                 evq->evq_index, label, id, size, flags);
97         return B_TRUE;
98 }
99
100 static boolean_t
101 sfc_ev_efx_rx(void *arg, __rte_unused uint32_t label, uint32_t id,
102               uint32_t size, uint16_t flags)
103 {
104         struct sfc_evq *evq = arg;
105         struct sfc_efx_rxq *rxq;
106         unsigned int stop;
107         unsigned int pending_id;
108         unsigned int delta;
109         unsigned int i;
110         struct sfc_efx_rx_sw_desc *rxd;
111
112         if (unlikely(evq->exception))
113                 goto done;
114
115         rxq = sfc_efx_rxq_by_dp_rxq(evq->dp_rxq);
116
117         SFC_ASSERT(rxq != NULL);
118         SFC_ASSERT(rxq->evq == evq);
119         SFC_ASSERT(rxq->flags & SFC_EFX_RXQ_FLAG_STARTED);
120
121         stop = (id + 1) & rxq->ptr_mask;
122         pending_id = rxq->pending & rxq->ptr_mask;
123         delta = (stop >= pending_id) ? (stop - pending_id) :
124                 (rxq->ptr_mask + 1 - pending_id + stop);
125
126         if (delta == 0) {
127                 /*
128                  * Rx event with no new descriptors done and zero length
129                  * is used to abort scattered packet when there is no room
130                  * for the tail.
131                  */
132                 if (unlikely(size != 0)) {
133                         evq->exception = B_TRUE;
134                         sfc_err(evq->sa,
135                                 "EVQ %u RxQ %u invalid RX abort "
136                                 "(id=%#x size=%u flags=%#x); needs restart",
137                                 evq->evq_index, rxq->dp.dpq.queue_id,
138                                 id, size, flags);
139                         goto done;
140                 }
141
142                 /* Add discard flag to the first fragment */
143                 rxq->sw_desc[pending_id].flags |= EFX_DISCARD;
144                 /* Remove continue flag from the last fragment */
145                 rxq->sw_desc[id].flags &= ~EFX_PKT_CONT;
146         } else if (unlikely(delta > rxq->batch_max)) {
147                 evq->exception = B_TRUE;
148
149                 sfc_err(evq->sa,
150                         "EVQ %u RxQ %u completion out of order "
151                         "(id=%#x delta=%u flags=%#x); needs restart",
152                         evq->evq_index, rxq->dp.dpq.queue_id,
153                         id, delta, flags);
154
155                 goto done;
156         }
157
158         for (i = pending_id; i != stop; i = (i + 1) & rxq->ptr_mask) {
159                 rxd = &rxq->sw_desc[i];
160
161                 rxd->flags = flags;
162
163                 SFC_ASSERT(size < (1 << 16));
164                 rxd->size = (uint16_t)size;
165         }
166
167         rxq->pending += delta;
168
169 done:
170         return B_FALSE;
171 }
172
173 static boolean_t
174 sfc_ev_dp_rx(void *arg, __rte_unused uint32_t label, uint32_t id,
175              __rte_unused uint32_t size, __rte_unused uint16_t flags)
176 {
177         struct sfc_evq *evq = arg;
178         struct sfc_dp_rxq *dp_rxq;
179
180         dp_rxq = evq->dp_rxq;
181         SFC_ASSERT(dp_rxq != NULL);
182
183         SFC_ASSERT(evq->sa->dp_rx->qrx_ev != NULL);
184         return evq->sa->dp_rx->qrx_ev(dp_rxq, id);
185 }
186
187 static boolean_t
188 sfc_ev_nop_tx(void *arg, uint32_t label, uint32_t id)
189 {
190         struct sfc_evq *evq = arg;
191
192         sfc_err(evq->sa, "EVQ %u unexpected Tx event label=%u id=%#x",
193                 evq->evq_index, label, id);
194         return B_TRUE;
195 }
196
197 static boolean_t
198 sfc_ev_tx(void *arg, __rte_unused uint32_t label, uint32_t id)
199 {
200         struct sfc_evq *evq = arg;
201         struct sfc_dp_txq *dp_txq;
202         struct sfc_efx_txq *txq;
203         unsigned int stop;
204         unsigned int delta;
205
206         dp_txq = evq->dp_txq;
207         SFC_ASSERT(dp_txq != NULL);
208
209         txq = sfc_efx_txq_by_dp_txq(dp_txq);
210         SFC_ASSERT(txq->evq == evq);
211
212         if (unlikely((txq->flags & SFC_EFX_TXQ_FLAG_STARTED) == 0))
213                 goto done;
214
215         stop = (id + 1) & txq->ptr_mask;
216         id = txq->pending & txq->ptr_mask;
217
218         delta = (stop >= id) ? (stop - id) : (txq->ptr_mask + 1 - id + stop);
219
220         txq->pending += delta;
221
222 done:
223         return B_FALSE;
224 }
225
226 static boolean_t
227 sfc_ev_dp_tx(void *arg, __rte_unused uint32_t label, uint32_t id)
228 {
229         struct sfc_evq *evq = arg;
230         struct sfc_dp_txq *dp_txq;
231
232         dp_txq = evq->dp_txq;
233         SFC_ASSERT(dp_txq != NULL);
234
235         SFC_ASSERT(evq->sa->dp_tx->qtx_ev != NULL);
236         return evq->sa->dp_tx->qtx_ev(dp_txq, id);
237 }
238
239 static boolean_t
240 sfc_ev_exception(void *arg, __rte_unused uint32_t code,
241                  __rte_unused uint32_t data)
242 {
243         struct sfc_evq *evq = arg;
244
245         if (code == EFX_EXCEPTION_UNKNOWN_SENSOREVT)
246                 return B_FALSE;
247
248         evq->exception = B_TRUE;
249         sfc_warn(evq->sa,
250                  "hardware exception %s (code=%u, data=%#x) on EVQ %u;"
251                  " needs recovery",
252                  (code == EFX_EXCEPTION_RX_RECOVERY) ? "RX_RECOVERY" :
253                  (code == EFX_EXCEPTION_RX_DSC_ERROR) ? "RX_DSC_ERROR" :
254                  (code == EFX_EXCEPTION_TX_DSC_ERROR) ? "TX_DSC_ERROR" :
255                  (code == EFX_EXCEPTION_FWALERT_SRAM) ? "FWALERT_SRAM" :
256                  (code == EFX_EXCEPTION_UNKNOWN_FWALERT) ? "UNKNOWN_FWALERT" :
257                  (code == EFX_EXCEPTION_RX_ERROR) ? "RX_ERROR" :
258                  (code == EFX_EXCEPTION_TX_ERROR) ? "TX_ERROR" :
259                  (code == EFX_EXCEPTION_EV_ERROR) ? "EV_ERROR" :
260                  "UNKNOWN",
261                  code, data, evq->evq_index);
262
263         return B_TRUE;
264 }
265
266 static boolean_t
267 sfc_ev_nop_rxq_flush_done(void *arg, uint32_t rxq_hw_index)
268 {
269         struct sfc_evq *evq = arg;
270
271         sfc_err(evq->sa, "EVQ %u unexpected RxQ %u flush done",
272                 evq->evq_index, rxq_hw_index);
273         return B_TRUE;
274 }
275
276 static boolean_t
277 sfc_ev_rxq_flush_done(void *arg, __rte_unused uint32_t rxq_hw_index)
278 {
279         struct sfc_evq *evq = arg;
280         struct sfc_dp_rxq *dp_rxq;
281         struct sfc_rxq *rxq;
282
283         dp_rxq = evq->dp_rxq;
284         SFC_ASSERT(dp_rxq != NULL);
285
286         rxq = sfc_rxq_by_dp_rxq(dp_rxq);
287         SFC_ASSERT(rxq != NULL);
288         SFC_ASSERT(rxq->hw_index == rxq_hw_index);
289         SFC_ASSERT(rxq->evq == evq);
290         sfc_rx_qflush_done(rxq);
291
292         return B_FALSE;
293 }
294
295 static boolean_t
296 sfc_ev_nop_rxq_flush_failed(void *arg, uint32_t rxq_hw_index)
297 {
298         struct sfc_evq *evq = arg;
299
300         sfc_err(evq->sa, "EVQ %u unexpected RxQ %u flush failed",
301                 evq->evq_index, rxq_hw_index);
302         return B_TRUE;
303 }
304
305 static boolean_t
306 sfc_ev_rxq_flush_failed(void *arg, __rte_unused uint32_t rxq_hw_index)
307 {
308         struct sfc_evq *evq = arg;
309         struct sfc_dp_rxq *dp_rxq;
310         struct sfc_rxq *rxq;
311
312         dp_rxq = evq->dp_rxq;
313         SFC_ASSERT(dp_rxq != NULL);
314
315         rxq = sfc_rxq_by_dp_rxq(dp_rxq);
316         SFC_ASSERT(rxq != NULL);
317         SFC_ASSERT(rxq->hw_index == rxq_hw_index);
318         SFC_ASSERT(rxq->evq == evq);
319         sfc_rx_qflush_failed(rxq);
320
321         return B_FALSE;
322 }
323
324 static boolean_t
325 sfc_ev_nop_txq_flush_done(void *arg, uint32_t txq_hw_index)
326 {
327         struct sfc_evq *evq = arg;
328
329         sfc_err(evq->sa, "EVQ %u unexpected TxQ %u flush done",
330                 evq->evq_index, txq_hw_index);
331         return B_TRUE;
332 }
333
334 static boolean_t
335 sfc_ev_txq_flush_done(void *arg, __rte_unused uint32_t txq_hw_index)
336 {
337         struct sfc_evq *evq = arg;
338         struct sfc_dp_txq *dp_txq;
339         struct sfc_txq *txq;
340
341         dp_txq = evq->dp_txq;
342         SFC_ASSERT(dp_txq != NULL);
343
344         txq = sfc_txq_by_dp_txq(dp_txq);
345         SFC_ASSERT(txq != NULL);
346         SFC_ASSERT(txq->hw_index == txq_hw_index);
347         SFC_ASSERT(txq->evq == evq);
348         sfc_tx_qflush_done(txq);
349
350         return B_FALSE;
351 }
352
353 static boolean_t
354 sfc_ev_software(void *arg, uint16_t magic)
355 {
356         struct sfc_evq *evq = arg;
357
358         sfc_err(evq->sa, "EVQ %u unexpected software event magic=%#.4x",
359                 evq->evq_index, magic);
360         return B_TRUE;
361 }
362
363 static boolean_t
364 sfc_ev_sram(void *arg, uint32_t code)
365 {
366         struct sfc_evq *evq = arg;
367
368         sfc_err(evq->sa, "EVQ %u unexpected SRAM event code=%u",
369                 evq->evq_index, code);
370         return B_TRUE;
371 }
372
373 static boolean_t
374 sfc_ev_wake_up(void *arg, uint32_t index)
375 {
376         struct sfc_evq *evq = arg;
377
378         sfc_err(evq->sa, "EVQ %u unexpected wake up event index=%u",
379                 evq->evq_index, index);
380         return B_TRUE;
381 }
382
383 static boolean_t
384 sfc_ev_timer(void *arg, uint32_t index)
385 {
386         struct sfc_evq *evq = arg;
387
388         sfc_err(evq->sa, "EVQ %u unexpected timer event index=%u",
389                 evq->evq_index, index);
390         return B_TRUE;
391 }
392
393 static boolean_t
394 sfc_ev_nop_link_change(void *arg, __rte_unused efx_link_mode_t link_mode)
395 {
396         struct sfc_evq *evq = arg;
397
398         sfc_err(evq->sa, "EVQ %u unexpected link change event",
399                 evq->evq_index);
400         return B_TRUE;
401 }
402
403 static boolean_t
404 sfc_ev_link_change(void *arg, efx_link_mode_t link_mode)
405 {
406         struct sfc_evq *evq = arg;
407         struct sfc_adapter *sa = evq->sa;
408         struct rte_eth_link *dev_link = &sa->eth_dev->data->dev_link;
409         struct rte_eth_link new_link;
410         uint64_t new_link_u64;
411         uint64_t old_link_u64;
412
413         EFX_STATIC_ASSERT(sizeof(*dev_link) == sizeof(rte_atomic64_t));
414
415         sfc_port_link_mode_to_info(link_mode, &new_link);
416
417         new_link_u64 = *(uint64_t *)&new_link;
418         do {
419                 old_link_u64 = rte_atomic64_read((rte_atomic64_t *)dev_link);
420                 if (old_link_u64 == new_link_u64)
421                         break;
422
423                 if (rte_atomic64_cmpset((volatile uint64_t *)dev_link,
424                                         old_link_u64, new_link_u64)) {
425                         evq->sa->port.lsc_seq++;
426                         break;
427                 }
428         } while (B_TRUE);
429
430         return B_FALSE;
431 }
432
433 static const efx_ev_callbacks_t sfc_ev_callbacks = {
434         .eec_initialized        = sfc_ev_initialized,
435         .eec_rx                 = sfc_ev_nop_rx,
436         .eec_tx                 = sfc_ev_nop_tx,
437         .eec_exception          = sfc_ev_exception,
438         .eec_rxq_flush_done     = sfc_ev_nop_rxq_flush_done,
439         .eec_rxq_flush_failed   = sfc_ev_nop_rxq_flush_failed,
440         .eec_txq_flush_done     = sfc_ev_nop_txq_flush_done,
441         .eec_software           = sfc_ev_software,
442         .eec_sram               = sfc_ev_sram,
443         .eec_wake_up            = sfc_ev_wake_up,
444         .eec_timer              = sfc_ev_timer,
445         .eec_link_change        = sfc_ev_link_change,
446 };
447
448 static const efx_ev_callbacks_t sfc_ev_callbacks_efx_rx = {
449         .eec_initialized        = sfc_ev_initialized,
450         .eec_rx                 = sfc_ev_efx_rx,
451         .eec_tx                 = sfc_ev_nop_tx,
452         .eec_exception          = sfc_ev_exception,
453         .eec_rxq_flush_done     = sfc_ev_rxq_flush_done,
454         .eec_rxq_flush_failed   = sfc_ev_rxq_flush_failed,
455         .eec_txq_flush_done     = sfc_ev_nop_txq_flush_done,
456         .eec_software           = sfc_ev_software,
457         .eec_sram               = sfc_ev_sram,
458         .eec_wake_up            = sfc_ev_wake_up,
459         .eec_timer              = sfc_ev_timer,
460         .eec_link_change        = sfc_ev_nop_link_change,
461 };
462
463 static const efx_ev_callbacks_t sfc_ev_callbacks_dp_rx = {
464         .eec_initialized        = sfc_ev_initialized,
465         .eec_rx                 = sfc_ev_dp_rx,
466         .eec_tx                 = sfc_ev_nop_tx,
467         .eec_exception          = sfc_ev_exception,
468         .eec_rxq_flush_done     = sfc_ev_rxq_flush_done,
469         .eec_rxq_flush_failed   = sfc_ev_rxq_flush_failed,
470         .eec_txq_flush_done     = sfc_ev_nop_txq_flush_done,
471         .eec_software           = sfc_ev_software,
472         .eec_sram               = sfc_ev_sram,
473         .eec_wake_up            = sfc_ev_wake_up,
474         .eec_timer              = sfc_ev_timer,
475         .eec_link_change        = sfc_ev_nop_link_change,
476 };
477
478 static const efx_ev_callbacks_t sfc_ev_callbacks_efx_tx = {
479         .eec_initialized        = sfc_ev_initialized,
480         .eec_rx                 = sfc_ev_nop_rx,
481         .eec_tx                 = sfc_ev_tx,
482         .eec_exception          = sfc_ev_exception,
483         .eec_rxq_flush_done     = sfc_ev_nop_rxq_flush_done,
484         .eec_rxq_flush_failed   = sfc_ev_nop_rxq_flush_failed,
485         .eec_txq_flush_done     = sfc_ev_txq_flush_done,
486         .eec_software           = sfc_ev_software,
487         .eec_sram               = sfc_ev_sram,
488         .eec_wake_up            = sfc_ev_wake_up,
489         .eec_timer              = sfc_ev_timer,
490         .eec_link_change        = sfc_ev_nop_link_change,
491 };
492
493 static const efx_ev_callbacks_t sfc_ev_callbacks_dp_tx = {
494         .eec_initialized        = sfc_ev_initialized,
495         .eec_rx                 = sfc_ev_nop_rx,
496         .eec_tx                 = sfc_ev_dp_tx,
497         .eec_exception          = sfc_ev_exception,
498         .eec_rxq_flush_done     = sfc_ev_nop_rxq_flush_done,
499         .eec_rxq_flush_failed   = sfc_ev_nop_rxq_flush_failed,
500         .eec_txq_flush_done     = sfc_ev_txq_flush_done,
501         .eec_software           = sfc_ev_software,
502         .eec_sram               = sfc_ev_sram,
503         .eec_wake_up            = sfc_ev_wake_up,
504         .eec_timer              = sfc_ev_timer,
505         .eec_link_change        = sfc_ev_nop_link_change,
506 };
507
508
509 void
510 sfc_ev_qpoll(struct sfc_evq *evq)
511 {
512         SFC_ASSERT(evq->init_state == SFC_EVQ_STARTED ||
513                    evq->init_state == SFC_EVQ_STARTING);
514
515         /* Synchronize the DMA memory for reading not required */
516
517         efx_ev_qpoll(evq->common, &evq->read_ptr, evq->callbacks, evq);
518
519         if (unlikely(evq->exception) && sfc_adapter_trylock(evq->sa)) {
520                 struct sfc_adapter *sa = evq->sa;
521                 int rc;
522
523                 if (evq->dp_rxq != NULL) {
524                         unsigned int rxq_sw_index;
525
526                         rxq_sw_index = evq->dp_rxq->dpq.queue_id;
527
528                         sfc_warn(sa,
529                                  "restart RxQ %u because of exception on its EvQ %u",
530                                  rxq_sw_index, evq->evq_index);
531
532                         sfc_rx_qstop(sa, rxq_sw_index);
533                         rc = sfc_rx_qstart(sa, rxq_sw_index);
534                         if (rc != 0)
535                                 sfc_err(sa, "cannot restart RxQ %u",
536                                         rxq_sw_index);
537                 }
538
539                 if (evq->dp_txq != NULL) {
540                         unsigned int txq_sw_index;
541
542                         txq_sw_index = evq->dp_txq->dpq.queue_id;
543
544                         sfc_warn(sa,
545                                  "restart TxQ %u because of exception on its EvQ %u",
546                                  txq_sw_index, evq->evq_index);
547
548                         sfc_tx_qstop(sa, txq_sw_index);
549                         rc = sfc_tx_qstart(sa, txq_sw_index);
550                         if (rc != 0)
551                                 sfc_err(sa, "cannot restart TxQ %u",
552                                         txq_sw_index);
553                 }
554
555                 if (evq->exception)
556                         sfc_panic(sa, "unrecoverable exception on EvQ %u",
557                                   evq->evq_index);
558
559                 sfc_adapter_unlock(sa);
560         }
561
562         /* Poll-mode driver does not re-prime the event queue for interrupts */
563 }
564
565 void
566 sfc_ev_mgmt_qpoll(struct sfc_adapter *sa)
567 {
568         if (rte_spinlock_trylock(&sa->mgmt_evq_lock)) {
569                 struct sfc_evq *mgmt_evq = sa->evq_info[sa->mgmt_evq_index].evq;
570
571                 if (mgmt_evq->init_state == SFC_EVQ_STARTED)
572                         sfc_ev_qpoll(mgmt_evq);
573
574                 rte_spinlock_unlock(&sa->mgmt_evq_lock);
575         }
576 }
577
578 int
579 sfc_ev_qprime(struct sfc_evq *evq)
580 {
581         SFC_ASSERT(evq->init_state == SFC_EVQ_STARTED);
582         return efx_ev_qprime(evq->common, evq->read_ptr);
583 }
584
585 int
586 sfc_ev_qstart(struct sfc_adapter *sa, unsigned int sw_index)
587 {
588         const struct sfc_evq_info *evq_info;
589         struct sfc_evq *evq;
590         efsys_mem_t *esmp;
591         unsigned int total_delay_us;
592         unsigned int delay_us;
593         int rc;
594
595         sfc_log_init(sa, "sw_index=%u", sw_index);
596
597         evq_info = &sa->evq_info[sw_index];
598         evq = evq_info->evq;
599         esmp = &evq->mem;
600
601         /* Clear all events */
602         (void)memset((void *)esmp->esm_base, 0xff,
603                      EFX_EVQ_SIZE(evq_info->entries));
604
605         /* Create the common code event queue */
606         rc = efx_ev_qcreate(sa->nic, sw_index, esmp, evq_info->entries,
607                             0 /* unused on EF10 */, 0, evq_info->flags,
608                             &evq->common);
609         if (rc != 0)
610                 goto fail_ev_qcreate;
611
612         SFC_ASSERT(evq->dp_rxq == NULL || evq->dp_txq == NULL);
613         if (evq->dp_rxq != 0) {
614                 if (strcmp(sa->dp_rx->dp.name, SFC_KVARG_DATAPATH_EFX) == 0)
615                         evq->callbacks = &sfc_ev_callbacks_efx_rx;
616                 else
617                         evq->callbacks = &sfc_ev_callbacks_dp_rx;
618         } else if (evq->dp_txq != 0) {
619                 if (strcmp(sa->dp_tx->dp.name, SFC_KVARG_DATAPATH_EFX) == 0)
620                         evq->callbacks = &sfc_ev_callbacks_efx_tx;
621                 else
622                         evq->callbacks = &sfc_ev_callbacks_dp_tx;
623         } else {
624                 evq->callbacks = &sfc_ev_callbacks;
625         }
626
627         evq->init_state = SFC_EVQ_STARTING;
628
629         /* Wait for the initialization event */
630         total_delay_us = 0;
631         delay_us = SFC_EVQ_INIT_BACKOFF_START_US;
632         do {
633                 (void)sfc_ev_qpoll(evq);
634
635                 /* Check to see if the initialization complete indication
636                  * posted by the hardware.
637                  */
638                 if (evq->init_state == SFC_EVQ_STARTED)
639                         goto done;
640
641                 /* Give event queue some time to init */
642                 rte_delay_us(delay_us);
643
644                 total_delay_us += delay_us;
645
646                 /* Exponential backoff */
647                 delay_us *= 2;
648                 if (delay_us > SFC_EVQ_INIT_BACKOFF_MAX_US)
649                         delay_us = SFC_EVQ_INIT_BACKOFF_MAX_US;
650
651         } while (total_delay_us < SFC_EVQ_INIT_TIMEOUT_US);
652
653         rc = ETIMEDOUT;
654         goto fail_timedout;
655
656 done:
657         return 0;
658
659 fail_timedout:
660         evq->init_state = SFC_EVQ_INITIALIZED;
661         efx_ev_qdestroy(evq->common);
662
663 fail_ev_qcreate:
664         sfc_log_init(sa, "failed %d", rc);
665         return rc;
666 }
667
668 void
669 sfc_ev_qstop(struct sfc_adapter *sa, unsigned int sw_index)
670 {
671         const struct sfc_evq_info *evq_info;
672         struct sfc_evq *evq;
673
674         sfc_log_init(sa, "sw_index=%u", sw_index);
675
676         SFC_ASSERT(sw_index < sa->evq_count);
677
678         evq_info = &sa->evq_info[sw_index];
679         evq = evq_info->evq;
680
681         if (evq == NULL || evq->init_state != SFC_EVQ_STARTED)
682                 return;
683
684         evq->init_state = SFC_EVQ_INITIALIZED;
685         evq->callbacks = NULL;
686         evq->read_ptr = 0;
687         evq->exception = B_FALSE;
688
689         efx_ev_qdestroy(evq->common);
690 }
691
692 static void
693 sfc_ev_mgmt_periodic_qpoll(void *arg)
694 {
695         struct sfc_adapter *sa = arg;
696         int rc;
697
698         sfc_ev_mgmt_qpoll(sa);
699
700         rc = rte_eal_alarm_set(SFC_MGMT_EV_QPOLL_PERIOD_US,
701                                sfc_ev_mgmt_periodic_qpoll, sa);
702         if (rc == -ENOTSUP) {
703                 sfc_warn(sa, "alarms are not supported");
704                 sfc_warn(sa, "management EVQ must be polled indirectly using no-wait link status update");
705         } else if (rc != 0) {
706                 sfc_err(sa,
707                         "cannot rearm management EVQ polling alarm (rc=%d)",
708                         rc);
709         }
710 }
711
712 static void
713 sfc_ev_mgmt_periodic_qpoll_start(struct sfc_adapter *sa)
714 {
715         sfc_ev_mgmt_periodic_qpoll(sa);
716 }
717
718 static void
719 sfc_ev_mgmt_periodic_qpoll_stop(struct sfc_adapter *sa)
720 {
721         rte_eal_alarm_cancel(sfc_ev_mgmt_periodic_qpoll, sa);
722 }
723
724 int
725 sfc_ev_start(struct sfc_adapter *sa)
726 {
727         int rc;
728
729         sfc_log_init(sa, "entry");
730
731         rc = efx_ev_init(sa->nic);
732         if (rc != 0)
733                 goto fail_ev_init;
734
735         /* Start management EVQ used for global events */
736         rte_spinlock_lock(&sa->mgmt_evq_lock);
737
738         rc = sfc_ev_qstart(sa, sa->mgmt_evq_index);
739         if (rc != 0)
740                 goto fail_mgmt_evq_start;
741
742         if (sa->intr.lsc_intr) {
743                 rc = sfc_ev_qprime(sa->evq_info[sa->mgmt_evq_index].evq);
744                 if (rc != 0)
745                         goto fail_evq0_prime;
746         }
747
748         rte_spinlock_unlock(&sa->mgmt_evq_lock);
749
750         /*
751          * Start management EVQ polling. If interrupts are disabled
752          * (not used), it is required to process link status change
753          * and other device level events to avoid unrecoverable
754          * error because the event queue overflow.
755          */
756         sfc_ev_mgmt_periodic_qpoll_start(sa);
757
758         /*
759          * Rx/Tx event queues are started/stopped when corresponding
760          * Rx/Tx queue is started/stopped.
761          */
762
763         return 0;
764
765 fail_evq0_prime:
766         sfc_ev_qstop(sa, 0);
767
768 fail_mgmt_evq_start:
769         rte_spinlock_unlock(&sa->mgmt_evq_lock);
770         efx_ev_fini(sa->nic);
771
772 fail_ev_init:
773         sfc_log_init(sa, "failed %d", rc);
774         return rc;
775 }
776
777 void
778 sfc_ev_stop(struct sfc_adapter *sa)
779 {
780         unsigned int sw_index;
781
782         sfc_log_init(sa, "entry");
783
784         sfc_ev_mgmt_periodic_qpoll_stop(sa);
785
786         /* Make sure that all event queues are stopped */
787         sw_index = sa->evq_count;
788         while (sw_index-- > 0) {
789                 if (sw_index == sa->mgmt_evq_index) {
790                         /* Locks are required for the management EVQ */
791                         rte_spinlock_lock(&sa->mgmt_evq_lock);
792                         sfc_ev_qstop(sa, sa->mgmt_evq_index);
793                         rte_spinlock_unlock(&sa->mgmt_evq_lock);
794                 } else {
795                         sfc_ev_qstop(sa, sw_index);
796                 }
797         }
798
799         efx_ev_fini(sa->nic);
800 }
801
802 int
803 sfc_ev_qinit(struct sfc_adapter *sa, unsigned int sw_index,
804              enum sfc_evq_type type, unsigned int type_index,
805              unsigned int entries, int socket_id)
806 {
807         struct sfc_evq_info *evq_info;
808         struct sfc_evq *evq;
809         int rc;
810
811         sfc_log_init(sa, "sw_index=%u type=%s type_index=%u",
812                      sw_index, sfc_evq_type2str(type), type_index);
813
814         evq_info = &sa->evq_info[sw_index];
815
816         SFC_ASSERT(rte_is_power_of_2(entries));
817         SFC_ASSERT(entries <= evq_info->max_entries);
818         evq_info->entries = entries;
819
820         rc = ENOMEM;
821         evq = rte_zmalloc_socket("sfc-evq", sizeof(*evq), RTE_CACHE_LINE_SIZE,
822                                  socket_id);
823         if (evq == NULL)
824                 goto fail_evq_alloc;
825
826         evq->sa = sa;
827         evq->evq_index = sw_index;
828         evq->type = type;
829
830         /* Allocate DMA space */
831         rc = sfc_dma_alloc(sa, sfc_evq_type2str(type), type_index,
832                            EFX_EVQ_SIZE(evq_info->entries),
833                            socket_id, &evq->mem);
834         if (rc != 0)
835                 goto fail_dma_alloc;
836
837         evq->init_state = SFC_EVQ_INITIALIZED;
838
839         evq_info->evq = evq;
840
841         return 0;
842
843 fail_dma_alloc:
844         rte_free(evq);
845
846 fail_evq_alloc:
847
848         sfc_log_init(sa, "failed %d", rc);
849         return rc;
850 }
851
852 void
853 sfc_ev_qfini(struct sfc_adapter *sa, unsigned int sw_index)
854 {
855         struct sfc_evq *evq;
856
857         sfc_log_init(sa, "sw_index=%u", sw_index);
858
859         evq = sa->evq_info[sw_index].evq;
860
861         SFC_ASSERT(evq->init_state == SFC_EVQ_INITIALIZED);
862
863         sa->evq_info[sw_index].evq = NULL;
864
865         sfc_dma_free(sa, &evq->mem);
866
867         rte_free(evq);
868 }
869
870 static int
871 sfc_ev_qinit_info(struct sfc_adapter *sa, unsigned int sw_index)
872 {
873         struct sfc_evq_info *evq_info = &sa->evq_info[sw_index];
874         unsigned int max_entries;
875
876         sfc_log_init(sa, "sw_index=%u", sw_index);
877
878         max_entries = sfc_evq_max_entries(sa, sw_index);
879         SFC_ASSERT(rte_is_power_of_2(max_entries));
880
881         evq_info->max_entries = max_entries;
882         evq_info->flags = sa->evq_flags |
883                 ((sa->intr.lsc_intr && sw_index == sa->mgmt_evq_index) ?
884                         EFX_EVQ_FLAGS_NOTIFY_INTERRUPT :
885                         EFX_EVQ_FLAGS_NOTIFY_DISABLED);
886
887         return 0;
888 }
889
890 static int
891 sfc_kvarg_perf_profile_handler(__rte_unused const char *key,
892                                const char *value_str, void *opaque)
893 {
894         uint64_t *value = opaque;
895
896         if (strcasecmp(value_str, SFC_KVARG_PERF_PROFILE_THROUGHPUT) == 0)
897                 *value = EFX_EVQ_FLAGS_TYPE_THROUGHPUT;
898         else if (strcasecmp(value_str, SFC_KVARG_PERF_PROFILE_LOW_LATENCY) == 0)
899                 *value = EFX_EVQ_FLAGS_TYPE_LOW_LATENCY;
900         else if (strcasecmp(value_str, SFC_KVARG_PERF_PROFILE_AUTO) == 0)
901                 *value = EFX_EVQ_FLAGS_TYPE_AUTO;
902         else
903                 return -EINVAL;
904
905         return 0;
906 }
907
908 static void
909 sfc_ev_qfini_info(struct sfc_adapter *sa, unsigned int sw_index)
910 {
911         sfc_log_init(sa, "sw_index=%u", sw_index);
912
913         /* Nothing to cleanup */
914 }
915
916 int
917 sfc_ev_init(struct sfc_adapter *sa)
918 {
919         int rc;
920         unsigned int sw_index;
921
922         sfc_log_init(sa, "entry");
923
924         sa->evq_flags = EFX_EVQ_FLAGS_TYPE_THROUGHPUT;
925         rc = sfc_kvargs_process(sa, SFC_KVARG_PERF_PROFILE,
926                                 sfc_kvarg_perf_profile_handler,
927                                 &sa->evq_flags);
928         if (rc != 0) {
929                 sfc_err(sa, "invalid %s parameter value",
930                         SFC_KVARG_PERF_PROFILE);
931                 goto fail_kvarg_perf_profile;
932         }
933
934         sa->evq_count = sfc_ev_qcount(sa);
935         sa->mgmt_evq_index = 0;
936         rte_spinlock_init(&sa->mgmt_evq_lock);
937
938         /* Allocate EVQ info array */
939         rc = ENOMEM;
940         sa->evq_info = rte_calloc_socket("sfc-evqs", sa->evq_count,
941                                          sizeof(struct sfc_evq_info), 0,
942                                          sa->socket_id);
943         if (sa->evq_info == NULL)
944                 goto fail_evqs_alloc;
945
946         for (sw_index = 0; sw_index < sa->evq_count; ++sw_index) {
947                 rc = sfc_ev_qinit_info(sa, sw_index);
948                 if (rc != 0)
949                         goto fail_ev_qinit_info;
950         }
951
952         rc = sfc_ev_qinit(sa, sa->mgmt_evq_index, SFC_EVQ_TYPE_MGMT, 0,
953                           SFC_MGMT_EVQ_ENTRIES, sa->socket_id);
954         if (rc != 0)
955                 goto fail_mgmt_evq_init;
956
957         /*
958          * Rx/Tx event queues are created/destroyed when corresponding
959          * Rx/Tx queue is created/destroyed.
960          */
961
962         return 0;
963
964 fail_mgmt_evq_init:
965 fail_ev_qinit_info:
966         while (sw_index-- > 0)
967                 sfc_ev_qfini_info(sa, sw_index);
968
969         rte_free(sa->evq_info);
970         sa->evq_info = NULL;
971
972 fail_evqs_alloc:
973         sa->evq_count = 0;
974
975 fail_kvarg_perf_profile:
976         sfc_log_init(sa, "failed %d", rc);
977         return rc;
978 }
979
980 void
981 sfc_ev_fini(struct sfc_adapter *sa)
982 {
983         int sw_index;
984
985         sfc_log_init(sa, "entry");
986
987         /* Cleanup all event queues */
988         sw_index = sa->evq_count;
989         while (--sw_index >= 0) {
990                 if (sa->evq_info[sw_index].evq != NULL)
991                         sfc_ev_qfini(sa, sw_index);
992                 sfc_ev_qfini_info(sa, sw_index);
993         }
994
995         rte_free(sa->evq_info);
996         sa->evq_info = NULL;
997         sa->evq_count = 0;
998 }