New upstream version 16.11.4
[deb_dpdk.git] / drivers / net / virtio / virtio_rxtx_simple.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <stdint.h>
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <errno.h>
39
40 #include <rte_cycles.h>
41 #include <rte_memory.h>
42 #include <rte_memzone.h>
43 #include <rte_branch_prediction.h>
44 #include <rte_mempool.h>
45 #include <rte_malloc.h>
46 #include <rte_mbuf.h>
47 #include <rte_ether.h>
48 #include <rte_ethdev.h>
49 #include <rte_prefetch.h>
50 #include <rte_string_fns.h>
51 #include <rte_errno.h>
52 #include <rte_byteorder.h>
53
54 #include "virtio_rxtx_simple.h"
55
56 #ifndef __INTEL_COMPILER
57 #pragma GCC diagnostic ignored "-Wcast-qual"
58 #endif
59
60 int __attribute__((cold))
61 virtqueue_enqueue_recv_refill_simple(struct virtqueue *vq,
62         struct rte_mbuf *cookie)
63 {
64         struct vq_desc_extra *dxp;
65         struct vring_desc *start_dp;
66         uint16_t desc_idx;
67
68         cookie->port = vq->rxq.port_id;
69
70         desc_idx = vq->vq_avail_idx & (vq->vq_nentries - 1);
71         dxp = &vq->vq_descx[desc_idx];
72         dxp->cookie = (void *)cookie;
73         vq->sw_ring[desc_idx] = cookie;
74
75         start_dp = vq->vq_ring.desc;
76         start_dp[desc_idx].addr =
77                 VIRTIO_MBUF_ADDR(cookie, vq) +
78                 RTE_PKTMBUF_HEADROOM - vq->hw->vtnet_hdr_size;
79         start_dp[desc_idx].len = cookie->buf_len -
80                 RTE_PKTMBUF_HEADROOM + vq->hw->vtnet_hdr_size;
81
82         vq->vq_free_cnt--;
83         vq->vq_avail_idx++;
84
85         return 0;
86 }
87
88 uint16_t
89 virtio_xmit_pkts_simple(void *tx_queue, struct rte_mbuf **tx_pkts,
90         uint16_t nb_pkts)
91 {
92         struct virtnet_tx *txvq = tx_queue;
93         struct virtqueue *vq = txvq->vq;
94         uint16_t nb_used;
95         uint16_t desc_idx;
96         struct vring_desc *start_dp;
97         uint16_t nb_tail, nb_commit;
98         int i;
99         uint16_t desc_idx_max = (vq->vq_nentries >> 1) - 1;
100
101         nb_used = VIRTQUEUE_NUSED(vq);
102         rte_compiler_barrier();
103
104         if (nb_used >= VIRTIO_TX_FREE_THRESH)
105                 virtio_xmit_cleanup(vq);
106
107         nb_commit = nb_pkts = RTE_MIN((vq->vq_free_cnt >> 1), nb_pkts);
108         desc_idx = (uint16_t)(vq->vq_avail_idx & desc_idx_max);
109         start_dp = vq->vq_ring.desc;
110         nb_tail = (uint16_t) (desc_idx_max + 1 - desc_idx);
111
112         if (nb_commit >= nb_tail) {
113                 for (i = 0; i < nb_tail; i++)
114                         vq->vq_descx[desc_idx + i].cookie = tx_pkts[i];
115                 for (i = 0; i < nb_tail; i++) {
116                         start_dp[desc_idx].addr =
117                                 VIRTIO_MBUF_DATA_DMA_ADDR(*tx_pkts, vq);
118                         start_dp[desc_idx].len = (*tx_pkts)->pkt_len;
119                         tx_pkts++;
120                         desc_idx++;
121                 }
122                 nb_commit -= nb_tail;
123                 desc_idx = 0;
124         }
125         for (i = 0; i < nb_commit; i++)
126                 vq->vq_descx[desc_idx + i].cookie = tx_pkts[i];
127         for (i = 0; i < nb_commit; i++) {
128                 start_dp[desc_idx].addr =
129                         VIRTIO_MBUF_DATA_DMA_ADDR(*tx_pkts, vq);
130                 start_dp[desc_idx].len = (*tx_pkts)->pkt_len;
131                 tx_pkts++;
132                 desc_idx++;
133         }
134
135         rte_compiler_barrier();
136
137         vq->vq_free_cnt -= (uint16_t)(nb_pkts << 1);
138         vq->vq_avail_idx += nb_pkts;
139         vq->vq_ring.avail->idx = vq->vq_avail_idx;
140         txvq->stats.packets += nb_pkts;
141
142         if (likely(nb_pkts)) {
143                 if (unlikely(virtqueue_kick_prepare(vq)))
144                         virtqueue_notify(vq);
145         }
146
147         return nb_pkts;
148 }
149
150 int __attribute__((cold))
151 virtio_rxq_vec_setup(struct virtnet_rx *rxq)
152 {
153         uintptr_t p;
154         struct rte_mbuf mb_def = { .buf_addr = 0 }; /* zeroed mbuf */
155
156         mb_def.nb_segs = 1;
157         mb_def.data_off = RTE_PKTMBUF_HEADROOM;
158         mb_def.port = rxq->port_id;
159         rte_mbuf_refcnt_set(&mb_def, 1);
160
161         /* prevent compiler reordering: rearm_data covers previous fields */
162         rte_compiler_barrier();
163         p = (uintptr_t)&mb_def.rearm_data;
164         rxq->mbuf_initializer = *(uint64_t *)p;
165
166         return 0;
167 }
168
169 /* Stub for linkage when arch specific implementation is not available */
170 uint16_t __attribute__((weak))
171 virtio_recv_pkts_vec(void *rx_queue __rte_unused,
172                      struct rte_mbuf **rx_pkts __rte_unused,
173                      uint16_t nb_pkts __rte_unused)
174 {
175         rte_panic("Wrong weak function linked by linker\n");
176         return 0;
177 }