Merge tag 'amd-drm-next-5.14-2021-05-21' of https://gitlab.freedesktop.org/agd5f...
[linux-2.6-microblaze.git] / drivers / net / ethernet / pensando / ionic / ionic_txrx.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright(c) 2017 - 2019 Pensando Systems, Inc */
3
4 #ifndef _IONIC_TXRX_H_
5 #define _IONIC_TXRX_H_
6
7 void ionic_tx_flush(struct ionic_cq *cq);
8
9 void ionic_rx_fill(struct ionic_queue *q);
10 void ionic_rx_empty(struct ionic_queue *q);
11 void ionic_tx_empty(struct ionic_queue *q);
12 int ionic_rx_napi(struct napi_struct *napi, int budget);
13 int ionic_tx_napi(struct napi_struct *napi, int budget);
14 int ionic_txrx_napi(struct napi_struct *napi, int budget);
15 netdev_tx_t ionic_start_xmit(struct sk_buff *skb, struct net_device *netdev);
16
17 bool ionic_rx_service(struct ionic_cq *cq, struct ionic_cq_info *cq_info);
18 bool ionic_tx_service(struct ionic_cq *cq, struct ionic_cq_info *cq_info);
19
20 #endif /* _IONIC_TXRX_H_ */