X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fsfc%2Fsfc_ev.h;h=065defe0a19c3df070b5b0d3d43aa3851b5830df;hb=47995190cfe42542998de7d04aca38b0e643bb82;hp=bc96213583ed54a66fa722fb30e0f8207f143437;hpb=df456342a72bc9c7d38b235928edac4624aaa203;p=dpdk.git diff --git a/drivers/net/sfc/sfc_ev.h b/drivers/net/sfc/sfc_ev.h index bc96213583..065defe0a1 100644 --- a/drivers/net/sfc/sfc_ev.h +++ b/drivers/net/sfc/sfc_ev.h @@ -84,28 +84,15 @@ struct sfc_evq { unsigned int entries; }; -struct sfc_evq_info { - /* NUMA-aware EVQ data structure used on datapath */ - struct sfc_evq *evq; -}; - /* * Functions below define event queue to transmit/receive queue and vice * versa mapping. + * Own event queue is allocated for management, each Rx and each Tx queue. + * Zero event queue is used for management events. + * Rx event queues from 1 to RxQ number follow management event queue. + * Tx event queues follow Rx event queues. */ -static inline unsigned int -sfc_ev_qcount(struct sfc_adapter *sa) -{ - const struct rte_eth_dev_data *dev_data = sa->eth_dev->data; - - /* - * One management EVQ for global events. - * Own EVQ for each Tx and Rx queue. - */ - return 1 + dev_data->nb_rx_queues + dev_data->nb_tx_queues; -} - static inline unsigned int sfc_evq_index_by_rxq_sw_index(__rte_unused struct sfc_adapter *sa, unsigned int rxq_sw_index) @@ -119,17 +106,17 @@ sfc_evq_index_by_txq_sw_index(struct sfc_adapter *sa, unsigned int txq_sw_index) return 1 + sa->eth_dev->data->nb_rx_queues + txq_sw_index; } -int sfc_ev_init(struct sfc_adapter *sa); -void sfc_ev_fini(struct sfc_adapter *sa); +int sfc_ev_attach(struct sfc_adapter *sa); +void sfc_ev_detach(struct sfc_adapter *sa); int sfc_ev_start(struct sfc_adapter *sa); void sfc_ev_stop(struct sfc_adapter *sa); -int sfc_ev_qinit(struct sfc_adapter *sa, unsigned int sw_index, +int sfc_ev_qinit(struct sfc_adapter *sa, enum sfc_evq_type type, unsigned int type_index, - unsigned int entries, int socket_id); -void sfc_ev_qfini(struct sfc_adapter *sa, unsigned int sw_index); -int sfc_ev_qstart(struct sfc_adapter *sa, unsigned int sw_index); -void sfc_ev_qstop(struct sfc_adapter *sa, unsigned int sw_index); + unsigned int entries, int socket_id, struct sfc_evq **evqp); +void sfc_ev_qfini(struct sfc_evq *evq); +int sfc_ev_qstart(struct sfc_evq *evq, unsigned int hw_index); +void sfc_ev_qstop(struct sfc_evq *evq); int sfc_ev_qprime(struct sfc_evq *evq); void sfc_ev_qpoll(struct sfc_evq *evq);