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