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