1 /* SPDX-License-Identifier: BSD-3-Clause
3 * Copyright(c) 2019-2020 Xilinx, Inc.
4 * Copyright(c) 2016-2019 Solarflare Communications Inc.
6 * This software was jointly developed between OKTET Labs (under contract
7 * for Solarflare) and Solarflare Communications, Inc.
13 #include <rte_ethdev_driver.h>
28 SFC_EVQ_UNINITIALIZED = 0,
37 SFC_EVQ_TYPE_MGMT = 0,
45 /* Used on datapath */
47 const efx_ev_callbacks_t *callbacks;
48 unsigned int read_ptr;
49 unsigned int read_ptr_primed;
52 struct sfc_dp_rxq *dp_rxq;
53 struct sfc_dp_txq *dp_txq;
55 /* Not used on datapath */
56 struct sfc_adapter *sa;
57 unsigned int evq_index;
58 enum sfc_evq_state init_state;
59 enum sfc_evq_type type;
64 * Functions below define event queue to transmit/receive queue and vice
66 * Own event queue is allocated for management, each Rx and each Tx queue.
67 * Zero event queue is used for management events.
68 * Rx event queues from 1 to RxQ number follow management event queue.
69 * Tx event queues follow Rx event queues.
72 static inline unsigned int
73 sfc_evq_index_by_rxq_sw_index(__rte_unused struct sfc_adapter *sa,
74 unsigned int rxq_sw_index)
76 return 1 + rxq_sw_index;
79 static inline unsigned int
80 sfc_evq_index_by_txq_sw_index(struct sfc_adapter *sa, unsigned int txq_sw_index)
82 return 1 + sa->eth_dev->data->nb_rx_queues + txq_sw_index;
85 int sfc_ev_attach(struct sfc_adapter *sa);
86 void sfc_ev_detach(struct sfc_adapter *sa);
87 int sfc_ev_start(struct sfc_adapter *sa);
88 void sfc_ev_stop(struct sfc_adapter *sa);
90 int sfc_ev_qinit(struct sfc_adapter *sa,
91 enum sfc_evq_type type, unsigned int type_index,
92 unsigned int entries, int socket_id, struct sfc_evq **evqp);
93 void sfc_ev_qfini(struct sfc_evq *evq);
94 int sfc_ev_qstart(struct sfc_evq *evq, unsigned int hw_index);
95 void sfc_ev_qstop(struct sfc_evq *evq);
97 int sfc_ev_qprime(struct sfc_evq *evq);
98 void sfc_ev_qpoll(struct sfc_evq *evq);
100 void sfc_ev_mgmt_qpoll(struct sfc_adapter *sa);
105 #endif /* _SFC_EV_H_ */