New upstream version 18.11.2
[deb_dpdk.git] / drivers / net / netvsc / hn_rxtx.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2016-2018 Microsoft Corporation
3  * Copyright(c) 2013-2016 Brocade Communications Systems, Inc.
4  * All rights reserved.
5  */
6
7 #include <stdint.h>
8 #include <string.h>
9 #include <stdio.h>
10 #include <errno.h>
11 #include <unistd.h>
12 #include <strings.h>
13 #include <malloc.h>
14
15 #include <rte_ethdev.h>
16 #include <rte_memcpy.h>
17 #include <rte_string_fns.h>
18 #include <rte_memzone.h>
19 #include <rte_malloc.h>
20 #include <rte_atomic.h>
21 #include <rte_branch_prediction.h>
22 #include <rte_ether.h>
23 #include <rte_common.h>
24 #include <rte_errno.h>
25 #include <rte_memory.h>
26 #include <rte_eal.h>
27 #include <rte_dev.h>
28 #include <rte_net.h>
29 #include <rte_bus_vmbus.h>
30 #include <rte_spinlock.h>
31
32 #include "hn_logs.h"
33 #include "hn_var.h"
34 #include "hn_rndis.h"
35 #include "hn_nvs.h"
36 #include "ndis.h"
37
38 #define HN_NVS_SEND_MSG_SIZE \
39         (sizeof(struct vmbus_chanpkt_hdr) + sizeof(struct hn_nvs_rndis))
40
41 #define HN_TXD_CACHE_SIZE       32 /* per cpu tx_descriptor pool cache */
42 #define HN_TXCOPY_THRESHOLD     512
43
44 #define HN_RXCOPY_THRESHOLD     256
45 #define HN_RXQ_EVENT_DEFAULT    2048
46
47 struct hn_rxinfo {
48         uint32_t        vlan_info;
49         uint32_t        csum_info;
50         uint32_t        hash_info;
51         uint32_t        hash_value;
52 };
53
54 #define HN_RXINFO_VLAN                  0x0001
55 #define HN_RXINFO_CSUM                  0x0002
56 #define HN_RXINFO_HASHINF               0x0004
57 #define HN_RXINFO_HASHVAL               0x0008
58 #define HN_RXINFO_ALL                   \
59         (HN_RXINFO_VLAN |               \
60          HN_RXINFO_CSUM |               \
61          HN_RXINFO_HASHINF |            \
62          HN_RXINFO_HASHVAL)
63
64 #define HN_NDIS_VLAN_INFO_INVALID       0xffffffff
65 #define HN_NDIS_RXCSUM_INFO_INVALID     0
66 #define HN_NDIS_HASH_INFO_INVALID       0
67
68 /*
69  * Per-transmit book keeping.
70  * A slot in transmit ring (chim_index) is reserved for each transmit.
71  *
72  * There are two types of transmit:
73  *   - buffered transmit where chimney buffer is used and RNDIS header
74  *     is in the buffer. mbuf == NULL for this case.
75  *
76  *   - direct transmit where RNDIS header is in the in  rndis_pkt
77  *     mbuf is freed after transmit.
78  *
79  * Descriptors come from per-port pool which is used
80  * to limit number of outstanding requests per device.
81  */
82 struct hn_txdesc {
83         struct rte_mbuf *m;
84
85         uint16_t        queue_id;
86         uint16_t        chim_index;
87         uint32_t        chim_size;
88         uint32_t        data_size;
89         uint32_t        packets;
90
91         struct rndis_packet_msg *rndis_pkt;
92 };
93
94 #define HN_RNDIS_PKT_LEN                                \
95         (sizeof(struct rndis_packet_msg) +              \
96          RNDIS_PKTINFO_SIZE(NDIS_HASH_VALUE_SIZE) +     \
97          RNDIS_PKTINFO_SIZE(NDIS_VLAN_INFO_SIZE) +      \
98          RNDIS_PKTINFO_SIZE(NDIS_LSO2_INFO_SIZE) +      \
99          RNDIS_PKTINFO_SIZE(NDIS_TXCSUM_INFO_SIZE))
100
101 /* Minimum space required for a packet */
102 #define HN_PKTSIZE_MIN(align) \
103         RTE_ALIGN(ETHER_MIN_LEN + HN_RNDIS_PKT_LEN, align)
104
105 #define DEFAULT_TX_FREE_THRESH 32U
106
107 static void
108 hn_update_packet_stats(struct hn_stats *stats, const struct rte_mbuf *m)
109 {
110         uint32_t s = m->pkt_len;
111         const struct ether_addr *ea;
112
113         if (s == 64) {
114                 stats->size_bins[1]++;
115         } else if (s > 64 && s < 1024) {
116                 uint32_t bin;
117
118                 /* count zeros, and offset into correct bin */
119                 bin = (sizeof(s) * 8) - __builtin_clz(s) - 5;
120                 stats->size_bins[bin]++;
121         } else {
122                 if (s < 64)
123                         stats->size_bins[0]++;
124                 else if (s < 1519)
125                         stats->size_bins[6]++;
126                 else
127                         stats->size_bins[7]++;
128         }
129
130         ea = rte_pktmbuf_mtod(m, const struct ether_addr *);
131         if (is_multicast_ether_addr(ea)) {
132                 if (is_broadcast_ether_addr(ea))
133                         stats->broadcast++;
134                 else
135                         stats->multicast++;
136         }
137 }
138
139 static inline unsigned int hn_rndis_pktlen(const struct rndis_packet_msg *pkt)
140 {
141         return pkt->pktinfooffset + pkt->pktinfolen;
142 }
143
144 static inline uint32_t
145 hn_rndis_pktmsg_offset(uint32_t ofs)
146 {
147         return ofs - offsetof(struct rndis_packet_msg, dataoffset);
148 }
149
150 static void hn_txd_init(struct rte_mempool *mp __rte_unused,
151                         void *opaque, void *obj, unsigned int idx)
152 {
153         struct hn_txdesc *txd = obj;
154         struct rte_eth_dev *dev = opaque;
155         struct rndis_packet_msg *pkt;
156
157         memset(txd, 0, sizeof(*txd));
158         txd->chim_index = idx;
159
160         pkt = rte_malloc_socket("RNDIS_TX", HN_RNDIS_PKT_LEN,
161                                 rte_align32pow2(HN_RNDIS_PKT_LEN),
162                                 dev->device->numa_node);
163         if (!pkt)
164                 rte_exit(EXIT_FAILURE, "can not allocate RNDIS header");
165
166         txd->rndis_pkt = pkt;
167 }
168
169 /*
170  * Unlike Linux and FreeBSD, this driver uses a mempool
171  * to limit outstanding transmits and reserve buffers
172  */
173 int
174 hn_tx_pool_init(struct rte_eth_dev *dev)
175 {
176         struct hn_data *hv = dev->data->dev_private;
177         char name[RTE_MEMPOOL_NAMESIZE];
178         struct rte_mempool *mp;
179
180         snprintf(name, sizeof(name),
181                  "hn_txd_%u", dev->data->port_id);
182
183         PMD_INIT_LOG(DEBUG, "create a TX send pool %s n=%u size=%zu socket=%d",
184                      name, hv->chim_cnt, sizeof(struct hn_txdesc),
185                      dev->device->numa_node);
186
187         mp = rte_mempool_create(name, hv->chim_cnt, sizeof(struct hn_txdesc),
188                                 HN_TXD_CACHE_SIZE, 0,
189                                 NULL, NULL,
190                                 hn_txd_init, dev,
191                                 dev->device->numa_node, 0);
192         if (!mp) {
193                 PMD_DRV_LOG(ERR,
194                             "mempool %s create failed: %d", name, rte_errno);
195                 return -rte_errno;
196         }
197
198         hv->tx_pool = mp;
199         return 0;
200 }
201
202 void
203 hn_tx_pool_uninit(struct rte_eth_dev *dev)
204 {
205         struct hn_data *hv = dev->data->dev_private;
206
207         if (hv->tx_pool) {
208                 rte_mempool_free(hv->tx_pool);
209                 hv->tx_pool = NULL;
210         }
211 }
212
213 static void hn_reset_txagg(struct hn_tx_queue *txq)
214 {
215         txq->agg_szleft = txq->agg_szmax;
216         txq->agg_pktleft = txq->agg_pktmax;
217         txq->agg_txd = NULL;
218         txq->agg_prevpkt = NULL;
219 }
220
221 int
222 hn_dev_tx_queue_setup(struct rte_eth_dev *dev,
223                       uint16_t queue_idx, uint16_t nb_desc __rte_unused,
224                       unsigned int socket_id,
225                       const struct rte_eth_txconf *tx_conf)
226
227 {
228         struct hn_data *hv = dev->data->dev_private;
229         struct hn_tx_queue *txq;
230         uint32_t tx_free_thresh;
231         int err;
232
233         PMD_INIT_FUNC_TRACE();
234
235         txq = rte_zmalloc_socket("HN_TXQ", sizeof(*txq), RTE_CACHE_LINE_SIZE,
236                                  socket_id);
237         if (!txq)
238                 return -ENOMEM;
239
240         txq->hv = hv;
241         txq->chan = hv->channels[queue_idx];
242         txq->port_id = dev->data->port_id;
243         txq->queue_id = queue_idx;
244
245         tx_free_thresh = tx_conf->tx_free_thresh;
246         if (tx_free_thresh == 0)
247                 tx_free_thresh = RTE_MIN(hv->chim_cnt / 4,
248                                          DEFAULT_TX_FREE_THRESH);
249
250         if (tx_free_thresh >= hv->chim_cnt - 3)
251                 tx_free_thresh = hv->chim_cnt - 3;
252
253         txq->free_thresh = tx_free_thresh;
254
255         txq->agg_szmax  = RTE_MIN(hv->chim_szmax, hv->rndis_agg_size);
256         txq->agg_pktmax = hv->rndis_agg_pkts;
257         txq->agg_align  = hv->rndis_agg_align;
258
259         hn_reset_txagg(txq);
260
261         err = hn_vf_tx_queue_setup(dev, queue_idx, nb_desc,
262                                      socket_id, tx_conf);
263         if (err) {
264                 rte_free(txq);
265                 return err;
266         }
267
268         dev->data->tx_queues[queue_idx] = txq;
269         return 0;
270 }
271
272 void
273 hn_dev_tx_queue_release(void *arg)
274 {
275         struct hn_tx_queue *txq = arg;
276         struct hn_txdesc *txd;
277
278         PMD_INIT_FUNC_TRACE();
279
280         if (!txq)
281                 return;
282
283         /* If any pending data is still present just drop it */
284         txd = txq->agg_txd;
285         if (txd)
286                 rte_mempool_put(txq->hv->tx_pool, txd);
287
288         rte_free(txq);
289 }
290
291 static void
292 hn_nvs_send_completed(struct rte_eth_dev *dev, uint16_t queue_id,
293                       unsigned long xactid, const struct hn_nvs_rndis_ack *ack)
294 {
295         struct hn_txdesc *txd = (struct hn_txdesc *)xactid;
296         struct hn_tx_queue *txq;
297
298         /* Control packets are sent with xacid == 0 */
299         if (!txd)
300                 return;
301
302         txq = dev->data->tx_queues[queue_id];
303         if (likely(ack->status == NVS_STATUS_OK)) {
304                 PMD_TX_LOG(DEBUG, "port %u:%u complete tx %u packets %u bytes %u",
305                            txq->port_id, txq->queue_id, txd->chim_index,
306                            txd->packets, txd->data_size);
307                 txq->stats.bytes += txd->data_size;
308                 txq->stats.packets += txd->packets;
309         } else {
310                 PMD_TX_LOG(NOTICE, "port %u:%u complete tx %u failed status %u",
311                            txq->port_id, txq->queue_id, txd->chim_index, ack->status);
312                 ++txq->stats.errors;
313         }
314
315         rte_pktmbuf_free(txd->m);
316
317         rte_mempool_put(txq->hv->tx_pool, txd);
318 }
319
320 /* Handle transmit completion events */
321 static void
322 hn_nvs_handle_comp(struct rte_eth_dev *dev, uint16_t queue_id,
323                    const struct vmbus_chanpkt_hdr *pkt,
324                    const void *data)
325 {
326         const struct hn_nvs_hdr *hdr = data;
327
328         switch (hdr->type) {
329         case NVS_TYPE_RNDIS_ACK:
330                 hn_nvs_send_completed(dev, queue_id, pkt->xactid, data);
331                 break;
332
333         default:
334                 PMD_TX_LOG(NOTICE,
335                            "unexpected send completion type %u",
336                            hdr->type);
337         }
338 }
339
340 /* Parse per-packet info (meta data) */
341 static int
342 hn_rndis_rxinfo(const void *info_data, unsigned int info_dlen,
343                 struct hn_rxinfo *info)
344 {
345         const struct rndis_pktinfo *pi = info_data;
346         uint32_t mask = 0;
347
348         while (info_dlen != 0) {
349                 const void *data;
350                 uint32_t dlen;
351
352                 if (unlikely(info_dlen < sizeof(*pi)))
353                         return -EINVAL;
354
355                 if (unlikely(info_dlen < pi->size))
356                         return -EINVAL;
357                 info_dlen -= pi->size;
358
359                 if (unlikely(pi->size & RNDIS_PKTINFO_SIZE_ALIGNMASK))
360                         return -EINVAL;
361                 if (unlikely(pi->size < pi->offset))
362                         return -EINVAL;
363
364                 dlen = pi->size - pi->offset;
365                 data = pi->data;
366
367                 switch (pi->type) {
368                 case NDIS_PKTINFO_TYPE_VLAN:
369                         if (unlikely(dlen < NDIS_VLAN_INFO_SIZE))
370                                 return -EINVAL;
371                         info->vlan_info = *((const uint32_t *)data);
372                         mask |= HN_RXINFO_VLAN;
373                         break;
374
375                 case NDIS_PKTINFO_TYPE_CSUM:
376                         if (unlikely(dlen < NDIS_RXCSUM_INFO_SIZE))
377                                 return -EINVAL;
378                         info->csum_info = *((const uint32_t *)data);
379                         mask |= HN_RXINFO_CSUM;
380                         break;
381
382                 case NDIS_PKTINFO_TYPE_HASHVAL:
383                         if (unlikely(dlen < NDIS_HASH_VALUE_SIZE))
384                                 return -EINVAL;
385                         info->hash_value = *((const uint32_t *)data);
386                         mask |= HN_RXINFO_HASHVAL;
387                         break;
388
389                 case NDIS_PKTINFO_TYPE_HASHINF:
390                         if (unlikely(dlen < NDIS_HASH_INFO_SIZE))
391                                 return -EINVAL;
392                         info->hash_info = *((const uint32_t *)data);
393                         mask |= HN_RXINFO_HASHINF;
394                         break;
395
396                 default:
397                         goto next;
398                 }
399
400                 if (mask == HN_RXINFO_ALL)
401                         break; /* All found; done */
402 next:
403                 pi = (const struct rndis_pktinfo *)
404                     ((const uint8_t *)pi + pi->size);
405         }
406
407         /*
408          * Final fixup.
409          * - If there is no hash value, invalidate the hash info.
410          */
411         if (!(mask & HN_RXINFO_HASHVAL))
412                 info->hash_info = HN_NDIS_HASH_INFO_INVALID;
413         return 0;
414 }
415
416 /*
417  * Ack the consumed RXBUF associated w/ this channel packet,
418  * so that this RXBUF can be recycled by the hypervisor.
419  */
420 static void hn_rx_buf_release(struct hn_rx_bufinfo *rxb)
421 {
422         struct rte_mbuf_ext_shared_info *shinfo = &rxb->shinfo;
423         struct hn_data *hv = rxb->hv;
424
425         if (rte_mbuf_ext_refcnt_update(shinfo, -1) == 0) {
426                 hn_nvs_ack_rxbuf(rxb->chan, rxb->xactid);
427                 --hv->rxbuf_outstanding;
428         }
429 }
430
431 static void hn_rx_buf_free_cb(void *buf __rte_unused, void *opaque)
432 {
433         hn_rx_buf_release(opaque);
434 }
435
436 static struct hn_rx_bufinfo *hn_rx_buf_init(const struct hn_rx_queue *rxq,
437                                             const struct vmbus_chanpkt_rxbuf *pkt)
438 {
439         struct hn_rx_bufinfo *rxb;
440
441         rxb = rxq->hv->rxbuf_info + pkt->hdr.xactid;
442         rxb->chan = rxq->chan;
443         rxb->xactid = pkt->hdr.xactid;
444         rxb->hv = rxq->hv;
445
446         rxb->shinfo.free_cb = hn_rx_buf_free_cb;
447         rxb->shinfo.fcb_opaque = rxb;
448         rte_mbuf_ext_refcnt_set(&rxb->shinfo, 1);
449         return rxb;
450 }
451
452 static void hn_rxpkt(struct hn_rx_queue *rxq, struct hn_rx_bufinfo *rxb,
453                      uint8_t *data, unsigned int headroom, unsigned int dlen,
454                      const struct hn_rxinfo *info)
455 {
456         struct hn_data *hv = rxq->hv;
457         struct rte_mbuf *m;
458
459         m = rte_pktmbuf_alloc(rxq->mb_pool);
460         if (unlikely(!m)) {
461                 struct rte_eth_dev *dev =
462                         &rte_eth_devices[rxq->port_id];
463
464                 dev->data->rx_mbuf_alloc_failed++;
465                 return;
466         }
467
468         /*
469          * For large packets, avoid copy if possible but need to keep
470          * some space available in receive area for later packets.
471          */
472         if (dlen >= HN_RXCOPY_THRESHOLD &&
473             hv->rxbuf_outstanding < hv->rxbuf_section_cnt / 2) {
474                 struct rte_mbuf_ext_shared_info *shinfo;
475                 const void *rxbuf;
476                 rte_iova_t iova;
477
478                 /*
479                  * Build an external mbuf that points to recveive area.
480                  * Use refcount to handle multiple packets in same
481                  * receive buffer section.
482                  */
483                 rxbuf = hv->rxbuf_res->addr;
484                 iova = rte_mem_virt2iova(rxbuf) + RTE_PTR_DIFF(data, rxbuf);
485                 shinfo = &rxb->shinfo;
486
487                 if (rte_mbuf_ext_refcnt_update(shinfo, 1) == 1)
488                         ++hv->rxbuf_outstanding;
489
490                 rte_pktmbuf_attach_extbuf(m, data, iova,
491                                           dlen + headroom, shinfo);
492                 m->data_off = headroom;
493         } else {
494                 /* Mbuf's in pool must be large enough to hold small packets */
495                 if (unlikely(rte_pktmbuf_tailroom(m) < dlen)) {
496                         rte_pktmbuf_free_seg(m);
497                         ++rxq->stats.errors;
498                         return;
499                 }
500                 rte_memcpy(rte_pktmbuf_mtod(m, void *),
501                            data + headroom, dlen);
502         }
503
504         m->port = rxq->port_id;
505         m->pkt_len = dlen;
506         m->data_len = dlen;
507         m->packet_type = rte_net_get_ptype(m, NULL,
508                                            RTE_PTYPE_L2_MASK |
509                                            RTE_PTYPE_L3_MASK |
510                                            RTE_PTYPE_L4_MASK);
511
512         if (info->vlan_info != HN_NDIS_VLAN_INFO_INVALID) {
513                 m->vlan_tci = info->vlan_info;
514                 m->ol_flags |= PKT_RX_VLAN_STRIPPED | PKT_RX_VLAN;
515         }
516
517         if (info->csum_info != HN_NDIS_RXCSUM_INFO_INVALID) {
518                 if (info->csum_info & NDIS_RXCSUM_INFO_IPCS_OK)
519                         m->ol_flags |= PKT_RX_IP_CKSUM_GOOD;
520
521                 if (info->csum_info & (NDIS_RXCSUM_INFO_UDPCS_OK
522                                        | NDIS_RXCSUM_INFO_TCPCS_OK))
523                         m->ol_flags |= PKT_RX_L4_CKSUM_GOOD;
524                 else if (info->csum_info & (NDIS_RXCSUM_INFO_TCPCS_FAILED
525                                             | NDIS_RXCSUM_INFO_UDPCS_FAILED))
526                         m->ol_flags |= PKT_RX_L4_CKSUM_BAD;
527         }
528
529         if (info->hash_info != HN_NDIS_HASH_INFO_INVALID) {
530                 m->ol_flags |= PKT_RX_RSS_HASH;
531                 m->hash.rss = info->hash_value;
532         }
533
534         PMD_RX_LOG(DEBUG,
535                    "port %u:%u RX id %"PRIu64" size %u type %#x ol_flags %#"PRIx64,
536                    rxq->port_id, rxq->queue_id, rxb->xactid,
537                    m->pkt_len, m->packet_type, m->ol_flags);
538
539         ++rxq->stats.packets;
540         rxq->stats.bytes += m->pkt_len;
541         hn_update_packet_stats(&rxq->stats, m);
542
543         if (unlikely(rte_ring_sp_enqueue(rxq->rx_ring, m) != 0)) {
544                 ++rxq->stats.ring_full;
545                 rte_pktmbuf_free(m);
546         }
547 }
548
549 static void hn_rndis_rx_data(struct hn_rx_queue *rxq,
550                              struct hn_rx_bufinfo *rxb,
551                              void *data, uint32_t dlen)
552 {
553         unsigned int data_off, data_len, pktinfo_off, pktinfo_len;
554         const struct rndis_packet_msg *pkt = data;
555         struct hn_rxinfo info = {
556                 .vlan_info = HN_NDIS_VLAN_INFO_INVALID,
557                 .csum_info = HN_NDIS_RXCSUM_INFO_INVALID,
558                 .hash_info = HN_NDIS_HASH_INFO_INVALID,
559         };
560         int err;
561
562         hn_rndis_dump(pkt);
563
564         if (unlikely(dlen < sizeof(*pkt)))
565                 goto error;
566
567         if (unlikely(dlen < pkt->len))
568                 goto error; /* truncated RNDIS from host */
569
570         if (unlikely(pkt->len < pkt->datalen
571                      + pkt->oobdatalen + pkt->pktinfolen))
572                 goto error;
573
574         if (unlikely(pkt->datalen == 0))
575                 goto error;
576
577         /* Check offsets. */
578         if (unlikely(pkt->dataoffset < RNDIS_PACKET_MSG_OFFSET_MIN))
579                 goto error;
580
581         if (likely(pkt->pktinfooffset > 0) &&
582             unlikely(pkt->pktinfooffset < RNDIS_PACKET_MSG_OFFSET_MIN ||
583                      (pkt->pktinfooffset & RNDIS_PACKET_MSG_OFFSET_ALIGNMASK)))
584                 goto error;
585
586         data_off = RNDIS_PACKET_MSG_OFFSET_ABS(pkt->dataoffset);
587         data_len = pkt->datalen;
588         pktinfo_off = RNDIS_PACKET_MSG_OFFSET_ABS(pkt->pktinfooffset);
589         pktinfo_len = pkt->pktinfolen;
590
591         if (likely(pktinfo_len > 0)) {
592                 err = hn_rndis_rxinfo((const uint8_t *)pkt + pktinfo_off,
593                                       pktinfo_len, &info);
594                 if (err)
595                         goto error;
596         }
597
598         if (unlikely(data_off + data_len > pkt->len))
599                 goto error;
600
601         if (unlikely(data_len < ETHER_HDR_LEN))
602                 goto error;
603
604         hn_rxpkt(rxq, rxb, data, data_off, data_len, &info);
605         return;
606 error:
607         ++rxq->stats.errors;
608 }
609
610 static void
611 hn_rndis_receive(struct rte_eth_dev *dev, struct hn_rx_queue *rxq,
612                  struct hn_rx_bufinfo *rxb, void *buf, uint32_t len)
613 {
614         const struct rndis_msghdr *hdr = buf;
615
616         switch (hdr->type) {
617         case RNDIS_PACKET_MSG:
618                 if (dev->data->dev_started)
619                         hn_rndis_rx_data(rxq, rxb, buf, len);
620                 break;
621
622         case RNDIS_INDICATE_STATUS_MSG:
623                 hn_rndis_link_status(dev, buf);
624                 break;
625
626         case RNDIS_INITIALIZE_CMPLT:
627         case RNDIS_QUERY_CMPLT:
628         case RNDIS_SET_CMPLT:
629                 hn_rndis_receive_response(rxq->hv, buf, len);
630                 break;
631
632         default:
633                 PMD_DRV_LOG(NOTICE,
634                             "unexpected RNDIS message (type %#x len %u)",
635                             hdr->type, len);
636                 break;
637         }
638 }
639
640 static void
641 hn_nvs_handle_rxbuf(struct rte_eth_dev *dev,
642                     struct hn_data *hv,
643                     struct hn_rx_queue *rxq,
644                     const struct vmbus_chanpkt_hdr *hdr,
645                     const void *buf)
646 {
647         const struct vmbus_chanpkt_rxbuf *pkt;
648         const struct hn_nvs_hdr *nvs_hdr = buf;
649         uint32_t rxbuf_sz = hv->rxbuf_res->len;
650         char *rxbuf = hv->rxbuf_res->addr;
651         unsigned int i, hlen, count;
652         struct hn_rx_bufinfo *rxb;
653
654         /* At minimum we need type header */
655         if (unlikely(vmbus_chanpkt_datalen(hdr) < sizeof(*nvs_hdr))) {
656                 PMD_RX_LOG(ERR, "invalid receive nvs RNDIS");
657                 return;
658         }
659
660         /* Make sure that this is a RNDIS message. */
661         if (unlikely(nvs_hdr->type != NVS_TYPE_RNDIS)) {
662                 PMD_RX_LOG(ERR, "nvs type %u, not RNDIS",
663                            nvs_hdr->type);
664                 return;
665         }
666
667         hlen = vmbus_chanpkt_getlen(hdr->hlen);
668         if (unlikely(hlen < sizeof(*pkt))) {
669                 PMD_RX_LOG(ERR, "invalid rxbuf chanpkt");
670                 return;
671         }
672
673         pkt = container_of(hdr, const struct vmbus_chanpkt_rxbuf, hdr);
674         if (unlikely(pkt->rxbuf_id != NVS_RXBUF_SIG)) {
675                 PMD_RX_LOG(ERR, "invalid rxbuf_id 0x%08x",
676                            pkt->rxbuf_id);
677                 return;
678         }
679
680         count = pkt->rxbuf_cnt;
681         if (unlikely(hlen < offsetof(struct vmbus_chanpkt_rxbuf,
682                                      rxbuf[count]))) {
683                 PMD_RX_LOG(ERR, "invalid rxbuf_cnt %u", count);
684                 return;
685         }
686
687         if (pkt->hdr.xactid > hv->rxbuf_section_cnt) {
688                 PMD_RX_LOG(ERR, "invalid rxbuf section id %" PRIx64,
689                            pkt->hdr.xactid);
690                 return;
691         }
692
693         /* Setup receive buffer info to allow for callback */
694         rxb = hn_rx_buf_init(rxq, pkt);
695
696         /* Each range represents 1 RNDIS pkt that contains 1 Ethernet frame */
697         for (i = 0; i < count; ++i) {
698                 unsigned int ofs, len;
699
700                 ofs = pkt->rxbuf[i].ofs;
701                 len = pkt->rxbuf[i].len;
702
703                 if (unlikely(ofs + len > rxbuf_sz)) {
704                         PMD_RX_LOG(ERR,
705                                    "%uth RNDIS msg overflow ofs %u, len %u",
706                                    i, ofs, len);
707                         continue;
708                 }
709
710                 if (unlikely(len == 0)) {
711                         PMD_RX_LOG(ERR, "%uth RNDIS msg len %u", i, len);
712                         continue;
713                 }
714
715                 hn_rndis_receive(dev, rxq, rxb,
716                                  rxbuf + ofs, len);
717         }
718
719         /* Send ACK now if external mbuf not used */
720         hn_rx_buf_release(rxb);
721 }
722
723 /*
724  * Called when NVS inband events are received.
725  * Send up a two part message with port_id and the NVS message
726  * to the pipe to the netvsc-vf-event control thread.
727  */
728 static void hn_nvs_handle_notify(struct rte_eth_dev *dev,
729                                  const struct vmbus_chanpkt_hdr *pkt,
730                                  const void *data)
731 {
732         const struct hn_nvs_hdr *hdr = data;
733
734         switch (hdr->type) {
735         case NVS_TYPE_TXTBL_NOTE:
736                 /* Transmit indirection table has locking problems
737                  * in DPDK and therefore not implemented
738                  */
739                 PMD_DRV_LOG(DEBUG, "host notify of transmit indirection table");
740                 break;
741
742         case NVS_TYPE_VFASSOC_NOTE:
743                 hn_nvs_handle_vfassoc(dev, pkt, data);
744                 break;
745
746         default:
747                 PMD_DRV_LOG(INFO,
748                             "got notify, nvs type %u", hdr->type);
749         }
750 }
751
752 struct hn_rx_queue *hn_rx_queue_alloc(struct hn_data *hv,
753                                       uint16_t queue_id,
754                                       unsigned int socket_id)
755 {
756         struct hn_rx_queue *rxq;
757
758         rxq = rte_zmalloc_socket("HN_RXQ", sizeof(*rxq),
759                                  RTE_CACHE_LINE_SIZE, socket_id);
760         if (!rxq)
761                 return NULL;
762
763         rxq->hv = hv;
764         rxq->chan = hv->channels[queue_id];
765         rte_spinlock_init(&rxq->ring_lock);
766         rxq->port_id = hv->port_id;
767         rxq->queue_id = queue_id;
768         rxq->event_sz = HN_RXQ_EVENT_DEFAULT;
769         rxq->event_buf = rte_malloc_socket("HN_EVENTS", HN_RXQ_EVENT_DEFAULT,
770                                            RTE_CACHE_LINE_SIZE, socket_id);
771         if (!rxq->event_buf) {
772                 rte_free(rxq);
773                 return NULL;
774         }
775
776         return rxq;
777 }
778
779 int
780 hn_dev_rx_queue_setup(struct rte_eth_dev *dev,
781                       uint16_t queue_idx, uint16_t nb_desc,
782                       unsigned int socket_id,
783                       const struct rte_eth_rxconf *rx_conf,
784                       struct rte_mempool *mp)
785 {
786         struct hn_data *hv = dev->data->dev_private;
787         char ring_name[RTE_RING_NAMESIZE];
788         struct hn_rx_queue *rxq;
789         unsigned int count;
790         int error = -ENOMEM;
791
792         PMD_INIT_FUNC_TRACE();
793
794         if (queue_idx == 0) {
795                 rxq = hv->primary;
796         } else {
797                 rxq = hn_rx_queue_alloc(hv, queue_idx, socket_id);
798                 if (!rxq)
799                         return -ENOMEM;
800         }
801
802         rxq->mb_pool = mp;
803         count = rte_mempool_avail_count(mp) / dev->data->nb_rx_queues;
804         if (nb_desc == 0 || nb_desc > count)
805                 nb_desc = count;
806
807         /*
808          * Staging ring from receive event logic to rx_pkts.
809          * rx_pkts assumes caller is handling multi-thread issue.
810          * event logic has locking.
811          */
812         snprintf(ring_name, sizeof(ring_name),
813                  "hn_rx_%u_%u", dev->data->port_id, queue_idx);
814         rxq->rx_ring = rte_ring_create(ring_name,
815                                        rte_align32pow2(nb_desc),
816                                        socket_id, 0);
817         if (!rxq->rx_ring)
818                 goto fail;
819
820         error = hn_vf_rx_queue_setup(dev, queue_idx, nb_desc,
821                                      socket_id, rx_conf, mp);
822         if (error)
823                 goto fail;
824
825         dev->data->rx_queues[queue_idx] = rxq;
826         return 0;
827
828 fail:
829         rte_ring_free(rxq->rx_ring);
830         rte_free(rxq->event_buf);
831         rte_free(rxq);
832         return error;
833 }
834
835 void
836 hn_dev_rx_queue_release(void *arg)
837 {
838         struct hn_rx_queue *rxq = arg;
839
840         PMD_INIT_FUNC_TRACE();
841
842         if (!rxq)
843                 return;
844
845         rte_ring_free(rxq->rx_ring);
846         rxq->rx_ring = NULL;
847         rxq->mb_pool = NULL;
848
849         hn_vf_rx_queue_release(rxq->hv, rxq->queue_id);
850
851         /* Keep primary queue to allow for control operations */
852         if (rxq != rxq->hv->primary) {
853                 rte_free(rxq->event_buf);
854                 rte_free(rxq);
855         }
856 }
857
858 int
859 hn_dev_tx_done_cleanup(void *arg, uint32_t free_cnt)
860 {
861         struct hn_tx_queue *txq = arg;
862
863         return hn_process_events(txq->hv, txq->queue_id, free_cnt);
864 }
865
866 /*
867  * Process pending events on the channel.
868  * Called from both Rx queue poll and Tx cleanup
869  */
870 uint32_t hn_process_events(struct hn_data *hv, uint16_t queue_id,
871                            uint32_t tx_limit)
872 {
873         struct rte_eth_dev *dev = &rte_eth_devices[hv->port_id];
874         struct hn_rx_queue *rxq;
875         uint32_t bytes_read = 0;
876         uint32_t tx_done = 0;
877         int ret = 0;
878
879         rxq = queue_id == 0 ? hv->primary : dev->data->rx_queues[queue_id];
880
881         /* If no pending data then nothing to do */
882         if (rte_vmbus_chan_rx_empty(rxq->chan))
883                 return 0;
884
885         /*
886          * Since channel is shared between Rx and TX queue need to have a lock
887          * since DPDK does not force same CPU to be used for Rx/Tx.
888          */
889         if (unlikely(!rte_spinlock_trylock(&rxq->ring_lock)))
890                 return 0;
891
892         for (;;) {
893                 const struct vmbus_chanpkt_hdr *pkt;
894                 uint32_t len = rxq->event_sz;
895                 const void *data;
896
897 retry:
898                 ret = rte_vmbus_chan_recv_raw(rxq->chan, rxq->event_buf, &len);
899                 if (ret == -EAGAIN)
900                         break;  /* ring is empty */
901
902                 if (unlikely(ret == -ENOBUFS)) {
903                         /* event buffer not large enough to read ring */
904
905                         PMD_DRV_LOG(DEBUG,
906                                     "event buffer expansion (need %u)", len);
907                         rxq->event_sz = len + len / 4;
908                         rxq->event_buf = rte_realloc(rxq->event_buf, rxq->event_sz,
909                                                      RTE_CACHE_LINE_SIZE);
910                         if (rxq->event_buf)
911                                 goto retry;
912                         /* out of memory, no more events now */
913                         rxq->event_sz = 0;
914                         break;
915                 }
916
917                 if (unlikely(ret <= 0)) {
918                         /* This indicates a failure to communicate (or worse) */
919                         rte_exit(EXIT_FAILURE,
920                                  "vmbus ring buffer error: %d", ret);
921                 }
922
923                 bytes_read += ret;
924                 pkt = (const struct vmbus_chanpkt_hdr *)rxq->event_buf;
925                 data = (char *)rxq->event_buf + vmbus_chanpkt_getlen(pkt->hlen);
926
927                 switch (pkt->type) {
928                 case VMBUS_CHANPKT_TYPE_COMP:
929                         ++tx_done;
930                         hn_nvs_handle_comp(dev, queue_id, pkt, data);
931                         break;
932
933                 case VMBUS_CHANPKT_TYPE_RXBUF:
934                         hn_nvs_handle_rxbuf(dev, hv, rxq, pkt, data);
935                         break;
936
937                 case VMBUS_CHANPKT_TYPE_INBAND:
938                         hn_nvs_handle_notify(dev, pkt, data);
939                         break;
940
941                 default:
942                         PMD_DRV_LOG(ERR, "unknown chan pkt %u", pkt->type);
943                         break;
944                 }
945
946                 if (tx_limit && tx_done >= tx_limit)
947                         break;
948
949                 if (rxq->rx_ring && rte_ring_full(rxq->rx_ring))
950                         break;
951         }
952
953         if (bytes_read > 0)
954                 rte_vmbus_chan_signal_read(rxq->chan, bytes_read);
955
956         rte_spinlock_unlock(&rxq->ring_lock);
957
958         return tx_done;
959 }
960
961 static void hn_append_to_chim(struct hn_tx_queue *txq,
962                               struct rndis_packet_msg *pkt,
963                               const struct rte_mbuf *m)
964 {
965         struct hn_txdesc *txd = txq->agg_txd;
966         uint8_t *buf = (uint8_t *)pkt;
967         unsigned int data_offs;
968
969         hn_rndis_dump(pkt);
970
971         data_offs = RNDIS_PACKET_MSG_OFFSET_ABS(pkt->dataoffset);
972         txd->chim_size += pkt->len;
973         txd->data_size += m->pkt_len;
974         ++txd->packets;
975         hn_update_packet_stats(&txq->stats, m);
976
977         for (; m; m = m->next) {
978                 uint16_t len = rte_pktmbuf_data_len(m);
979
980                 rte_memcpy(buf + data_offs,
981                            rte_pktmbuf_mtod(m, const char *), len);
982                 data_offs += len;
983         }
984 }
985
986 /*
987  * Send pending aggregated data in chimney buffer (if any).
988  * Returns error if send was unsuccessful because channel ring buffer
989  * was full.
990  */
991 static int hn_flush_txagg(struct hn_tx_queue *txq, bool *need_sig)
992
993 {
994         struct hn_txdesc *txd = txq->agg_txd;
995         struct hn_nvs_rndis rndis;
996         int ret;
997
998         if (!txd)
999                 return 0;
1000
1001         rndis = (struct hn_nvs_rndis) {
1002                 .type = NVS_TYPE_RNDIS,
1003                 .rndis_mtype = NVS_RNDIS_MTYPE_DATA,
1004                 .chim_idx = txd->chim_index,
1005                 .chim_sz = txd->chim_size,
1006         };
1007
1008         PMD_TX_LOG(DEBUG, "port %u:%u tx %u size %u",
1009                    txq->port_id, txq->queue_id, txd->chim_index, txd->chim_size);
1010
1011         ret = hn_nvs_send(txq->chan, VMBUS_CHANPKT_FLAG_RC,
1012                           &rndis, sizeof(rndis), (uintptr_t)txd, need_sig);
1013
1014         if (likely(ret == 0))
1015                 hn_reset_txagg(txq);
1016         else
1017                 PMD_TX_LOG(NOTICE, "port %u:%u send failed: %d",
1018                            txq->port_id, txq->queue_id, ret);
1019
1020         return ret;
1021 }
1022
1023 static struct hn_txdesc *hn_new_txd(struct hn_data *hv,
1024                                     struct hn_tx_queue *txq)
1025 {
1026         struct hn_txdesc *txd;
1027
1028         if (rte_mempool_get(hv->tx_pool, (void **)&txd)) {
1029                 ++txq->stats.ring_full;
1030                 PMD_TX_LOG(DEBUG, "tx pool exhausted!");
1031                 return NULL;
1032         }
1033
1034         txd->m = NULL;
1035         txd->queue_id = txq->queue_id;
1036         txd->packets = 0;
1037         txd->data_size = 0;
1038         txd->chim_size = 0;
1039
1040         return txd;
1041 }
1042
1043 static void *
1044 hn_try_txagg(struct hn_data *hv, struct hn_tx_queue *txq, uint32_t pktsize)
1045 {
1046         struct hn_txdesc *agg_txd = txq->agg_txd;
1047         struct rndis_packet_msg *pkt;
1048         void *chim;
1049
1050         if (agg_txd) {
1051                 unsigned int padding, olen;
1052
1053                 /*
1054                  * Update the previous RNDIS packet's total length,
1055                  * it can be increased due to the mandatory alignment
1056                  * padding for this RNDIS packet.  And update the
1057                  * aggregating txdesc's chimney sending buffer size
1058                  * accordingly.
1059                  *
1060                  * Zero-out the padding, as required by the RNDIS spec.
1061                  */
1062                 pkt = txq->agg_prevpkt;
1063                 olen = pkt->len;
1064                 padding = RTE_ALIGN(olen, txq->agg_align) - olen;
1065                 if (padding > 0) {
1066                         agg_txd->chim_size += padding;
1067                         pkt->len += padding;
1068                         memset((uint8_t *)pkt + olen, 0, padding);
1069                 }
1070
1071                 chim = (uint8_t *)pkt + pkt->len;
1072
1073                 txq->agg_pktleft--;
1074                 txq->agg_szleft -= pktsize;
1075                 if (txq->agg_szleft < HN_PKTSIZE_MIN(txq->agg_align)) {
1076                         /*
1077                          * Probably can't aggregate more packets,
1078                          * flush this aggregating txdesc proactively.
1079                          */
1080                         txq->agg_pktleft = 0;
1081                 }
1082         } else {
1083                 agg_txd = hn_new_txd(hv, txq);
1084                 if (!agg_txd)
1085                         return NULL;
1086
1087                 chim = (uint8_t *)hv->chim_res->addr
1088                         + agg_txd->chim_index * hv->chim_szmax;
1089
1090                 txq->agg_txd = agg_txd;
1091                 txq->agg_pktleft = txq->agg_pktmax - 1;
1092                 txq->agg_szleft = txq->agg_szmax - pktsize;
1093         }
1094         txq->agg_prevpkt = chim;
1095
1096         return chim;
1097 }
1098
1099 static inline void *
1100 hn_rndis_pktinfo_append(struct rndis_packet_msg *pkt,
1101                         uint32_t pi_dlen, uint32_t pi_type)
1102 {
1103         const uint32_t pi_size = RNDIS_PKTINFO_SIZE(pi_dlen);
1104         struct rndis_pktinfo *pi;
1105
1106         /*
1107          * Per-packet-info does not move; it only grows.
1108          *
1109          * NOTE:
1110          * pktinfooffset in this phase counts from the beginning
1111          * of rndis_packet_msg.
1112          */
1113         pi = (struct rndis_pktinfo *)((uint8_t *)pkt + hn_rndis_pktlen(pkt));
1114
1115         pkt->pktinfolen += pi_size;
1116
1117         pi->size = pi_size;
1118         pi->type = pi_type;
1119         pi->offset = RNDIS_PKTINFO_OFFSET;
1120
1121         return pi->data;
1122 }
1123
1124 /* Put RNDIS header and packet info on packet */
1125 static void hn_encap(struct rndis_packet_msg *pkt,
1126                      uint16_t queue_id,
1127                      const struct rte_mbuf *m)
1128 {
1129         unsigned int hlen = m->l2_len + m->l3_len;
1130         uint32_t *pi_data;
1131         uint32_t pkt_hlen;
1132
1133         pkt->type = RNDIS_PACKET_MSG;
1134         pkt->len = m->pkt_len;
1135         pkt->dataoffset = 0;
1136         pkt->datalen = m->pkt_len;
1137         pkt->oobdataoffset = 0;
1138         pkt->oobdatalen = 0;
1139         pkt->oobdataelements = 0;
1140         pkt->pktinfooffset = sizeof(*pkt);
1141         pkt->pktinfolen = 0;
1142         pkt->vchandle = 0;
1143         pkt->reserved = 0;
1144
1145         /*
1146          * Set the hash value for this packet, to the queue_id to cause
1147          * TX done event for this packet on the right channel.
1148          */
1149         pi_data = hn_rndis_pktinfo_append(pkt, NDIS_HASH_VALUE_SIZE,
1150                                           NDIS_PKTINFO_TYPE_HASHVAL);
1151         *pi_data = queue_id;
1152
1153         if (m->ol_flags & PKT_TX_VLAN_PKT) {
1154                 pi_data = hn_rndis_pktinfo_append(pkt, NDIS_VLAN_INFO_SIZE,
1155                                                   NDIS_PKTINFO_TYPE_VLAN);
1156                 *pi_data = m->vlan_tci;
1157         }
1158
1159         if (m->ol_flags & PKT_TX_TCP_SEG) {
1160                 pi_data = hn_rndis_pktinfo_append(pkt, NDIS_LSO2_INFO_SIZE,
1161                                                   NDIS_PKTINFO_TYPE_LSO);
1162
1163                 if (m->ol_flags & PKT_TX_IPV6) {
1164                         *pi_data = NDIS_LSO2_INFO_MAKEIPV6(hlen,
1165                                                            m->tso_segsz);
1166                 } else {
1167                         *pi_data = NDIS_LSO2_INFO_MAKEIPV4(hlen,
1168                                                            m->tso_segsz);
1169                 }
1170         } else if (m->ol_flags &
1171                    (PKT_TX_TCP_CKSUM | PKT_TX_UDP_CKSUM | PKT_TX_IP_CKSUM)) {
1172                 pi_data = hn_rndis_pktinfo_append(pkt, NDIS_TXCSUM_INFO_SIZE,
1173                                                   NDIS_PKTINFO_TYPE_CSUM);
1174                 *pi_data = 0;
1175
1176                 if (m->ol_flags & PKT_TX_IPV6)
1177                         *pi_data |= NDIS_TXCSUM_INFO_IPV6;
1178                 if (m->ol_flags & PKT_TX_IPV4) {
1179                         *pi_data |= NDIS_TXCSUM_INFO_IPV4;
1180
1181                         if (m->ol_flags & PKT_TX_IP_CKSUM)
1182                                 *pi_data |= NDIS_TXCSUM_INFO_IPCS;
1183                 }
1184
1185                 if (m->ol_flags & PKT_TX_TCP_CKSUM)
1186                         *pi_data |= NDIS_TXCSUM_INFO_MKTCPCS(hlen);
1187                 else if (m->ol_flags & PKT_TX_UDP_CKSUM)
1188                         *pi_data |= NDIS_TXCSUM_INFO_MKUDPCS(hlen);
1189         }
1190
1191         pkt_hlen = pkt->pktinfooffset + pkt->pktinfolen;
1192         /* Fixup RNDIS packet message total length */
1193         pkt->len += pkt_hlen;
1194
1195         /* Convert RNDIS packet message offsets */
1196         pkt->dataoffset = hn_rndis_pktmsg_offset(pkt_hlen);
1197         pkt->pktinfooffset = hn_rndis_pktmsg_offset(pkt->pktinfooffset);
1198 }
1199
1200 /* How many scatter gather list elements ar needed */
1201 static unsigned int hn_get_slots(const struct rte_mbuf *m)
1202 {
1203         unsigned int slots = 1; /* for RNDIS header */
1204
1205         while (m) {
1206                 unsigned int size = rte_pktmbuf_data_len(m);
1207                 unsigned int offs = rte_mbuf_data_iova(m) & PAGE_MASK;
1208
1209                 slots += (offs + size + PAGE_SIZE - 1) / PAGE_SIZE;
1210                 m = m->next;
1211         }
1212
1213         return slots;
1214 }
1215
1216 /* Build scatter gather list from chained mbuf */
1217 static unsigned int hn_fill_sg(struct vmbus_gpa *sg,
1218                                const struct rte_mbuf *m)
1219 {
1220         unsigned int segs = 0;
1221
1222         while (m) {
1223                 rte_iova_t addr = rte_mbuf_data_iova(m);
1224                 unsigned int page = addr / PAGE_SIZE;
1225                 unsigned int offset = addr & PAGE_MASK;
1226                 unsigned int len = rte_pktmbuf_data_len(m);
1227
1228                 while (len > 0) {
1229                         unsigned int bytes = RTE_MIN(len, PAGE_SIZE - offset);
1230
1231                         sg[segs].page = page;
1232                         sg[segs].ofs = offset;
1233                         sg[segs].len = bytes;
1234                         segs++;
1235
1236                         ++page;
1237                         offset = 0;
1238                         len -= bytes;
1239                 }
1240                 m = m->next;
1241         }
1242
1243         return segs;
1244 }
1245
1246 /* Transmit directly from mbuf */
1247 static int hn_xmit_sg(struct hn_tx_queue *txq,
1248                       const struct hn_txdesc *txd, const struct rte_mbuf *m,
1249                       bool *need_sig)
1250 {
1251         struct vmbus_gpa sg[hn_get_slots(m)];
1252         struct hn_nvs_rndis nvs_rndis = {
1253                 .type = NVS_TYPE_RNDIS,
1254                 .rndis_mtype = NVS_RNDIS_MTYPE_DATA,
1255                 .chim_sz = txd->chim_size,
1256         };
1257         rte_iova_t addr;
1258         unsigned int segs;
1259
1260         /* attach aggregation data if present */
1261         if (txd->chim_size > 0)
1262                 nvs_rndis.chim_idx = txd->chim_index;
1263         else
1264                 nvs_rndis.chim_idx = NVS_CHIM_IDX_INVALID;
1265
1266         hn_rndis_dump(txd->rndis_pkt);
1267
1268         /* pass IOVA of rndis header in first segment */
1269         addr = rte_malloc_virt2iova(txd->rndis_pkt);
1270         if (unlikely(addr == RTE_BAD_IOVA)) {
1271                 PMD_DRV_LOG(ERR, "RNDIS transmit can not get iova");
1272                 return -EINVAL;
1273         }
1274
1275         sg[0].page = addr / PAGE_SIZE;
1276         sg[0].ofs = addr & PAGE_MASK;
1277         sg[0].len = RNDIS_PACKET_MSG_OFFSET_ABS(hn_rndis_pktlen(txd->rndis_pkt));
1278         segs = 1;
1279
1280         hn_update_packet_stats(&txq->stats, m);
1281
1282         segs += hn_fill_sg(sg + 1, m);
1283
1284         PMD_TX_LOG(DEBUG, "port %u:%u tx %u segs %u size %u",
1285                    txq->port_id, txq->queue_id, txd->chim_index,
1286                    segs, nvs_rndis.chim_sz);
1287
1288         return hn_nvs_send_sglist(txq->chan, sg, segs,
1289                                   &nvs_rndis, sizeof(nvs_rndis),
1290                                   (uintptr_t)txd, need_sig);
1291 }
1292
1293 uint16_t
1294 hn_xmit_pkts(void *ptxq, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
1295 {
1296         struct hn_tx_queue *txq = ptxq;
1297         uint16_t queue_id = txq->queue_id;
1298         struct hn_data *hv = txq->hv;
1299         struct rte_eth_dev *vf_dev;
1300         bool need_sig = false;
1301         uint16_t nb_tx;
1302         int ret;
1303
1304         if (unlikely(hv->closed))
1305                 return 0;
1306
1307         /* Transmit over VF if present and up */
1308         vf_dev = hn_get_vf_dev(hv);
1309
1310         if (vf_dev && vf_dev->data->dev_started) {
1311                 void *sub_q = vf_dev->data->tx_queues[queue_id];
1312
1313                 return (*vf_dev->tx_pkt_burst)(sub_q, tx_pkts, nb_pkts);
1314         }
1315
1316         if (rte_mempool_avail_count(hv->tx_pool) <= txq->free_thresh)
1317                 hn_process_events(hv, txq->queue_id, 0);
1318
1319         for (nb_tx = 0; nb_tx < nb_pkts; nb_tx++) {
1320                 struct rte_mbuf *m = tx_pkts[nb_tx];
1321                 uint32_t pkt_size = m->pkt_len + HN_RNDIS_PKT_LEN;
1322                 struct rndis_packet_msg *pkt;
1323
1324                 /* For small packets aggregate them in chimney buffer */
1325                 if (m->pkt_len < HN_TXCOPY_THRESHOLD && pkt_size <= txq->agg_szmax) {
1326                         /* If this packet will not fit, then flush  */
1327                         if (txq->agg_pktleft == 0 ||
1328                             RTE_ALIGN(pkt_size, txq->agg_align) > txq->agg_szleft) {
1329                                 if (hn_flush_txagg(txq, &need_sig))
1330                                         goto fail;
1331                         }
1332
1333                         pkt = hn_try_txagg(hv, txq, pkt_size);
1334                         if (unlikely(!pkt))
1335                                 break;
1336
1337                         hn_encap(pkt, queue_id, m);
1338                         hn_append_to_chim(txq, pkt, m);
1339
1340                         rte_pktmbuf_free(m);
1341
1342                         /* if buffer is full, flush */
1343                         if (txq->agg_pktleft == 0 &&
1344                             hn_flush_txagg(txq, &need_sig))
1345                                 goto fail;
1346                 } else {
1347                         struct hn_txdesc *txd;
1348
1349                         /* can send chimney data and large packet at once */
1350                         txd = txq->agg_txd;
1351                         if (txd) {
1352                                 hn_reset_txagg(txq);
1353                         } else {
1354                                 txd = hn_new_txd(hv, txq);
1355                                 if (unlikely(!txd))
1356                                         break;
1357                         }
1358
1359                         pkt = txd->rndis_pkt;
1360                         txd->m = m;
1361                         txd->data_size += m->pkt_len;
1362                         ++txd->packets;
1363
1364                         hn_encap(pkt, queue_id, m);
1365
1366                         ret = hn_xmit_sg(txq, txd, m, &need_sig);
1367                         if (unlikely(ret != 0)) {
1368                                 PMD_TX_LOG(NOTICE, "sg send failed: %d", ret);
1369                                 ++txq->stats.errors;
1370                                 rte_mempool_put(hv->tx_pool, txd);
1371                                 goto fail;
1372                         }
1373                 }
1374         }
1375
1376         /* If partial buffer left, then try and send it.
1377          * if that fails, then reuse it on next send.
1378          */
1379         hn_flush_txagg(txq, &need_sig);
1380
1381 fail:
1382         if (need_sig)
1383                 rte_vmbus_chan_signal_tx(txq->chan);
1384
1385         return nb_tx;
1386 }
1387
1388 static uint16_t
1389 hn_recv_vf(uint16_t vf_port, const struct hn_rx_queue *rxq,
1390            struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
1391 {
1392         uint16_t i, n;
1393
1394         if (unlikely(nb_pkts == 0))
1395                 return 0;
1396
1397         n = rte_eth_rx_burst(vf_port, rxq->queue_id, rx_pkts, nb_pkts);
1398
1399         /* relabel the received mbufs */
1400         for (i = 0; i < n; i++)
1401                 rx_pkts[i]->port = rxq->port_id;
1402
1403         return n;
1404 }
1405
1406 uint16_t
1407 hn_recv_pkts(void *prxq, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
1408 {
1409         struct hn_rx_queue *rxq = prxq;
1410         struct hn_data *hv = rxq->hv;
1411         struct rte_eth_dev *vf_dev;
1412         uint16_t nb_rcv;
1413
1414         if (unlikely(hv->closed))
1415                 return 0;
1416
1417         /* Receive from VF if present and up */
1418         vf_dev = hn_get_vf_dev(hv);
1419
1420         /* Check for new completions */
1421         if (likely(rte_ring_count(rxq->rx_ring) < nb_pkts))
1422                 hn_process_events(hv, rxq->queue_id, 0);
1423
1424         /* Always check the vmbus path for multicast and new flows */
1425         nb_rcv = rte_ring_sc_dequeue_burst(rxq->rx_ring,
1426                                            (void **)rx_pkts, nb_pkts, NULL);
1427
1428         /* If VF is available, check that as well */
1429         if (vf_dev && vf_dev->data->dev_started)
1430                 nb_rcv += hn_recv_vf(vf_dev->data->port_id, rxq,
1431                                      rx_pkts + nb_rcv, nb_pkts - nb_rcv);
1432
1433         return nb_rcv;
1434 }