eal: deprecate rte_snprintf
[dpdk.git] / lib / librte_pmd_virtio / virtio_ethdev.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 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 <string.h>
36 #include <stdio.h>
37 #include <errno.h>
38 #include <unistd.h>
39 #ifdef RTE_EXEC_ENV_LINUXAPP
40 #include <dirent.h>
41 #endif
42
43 #include <rte_ethdev.h>
44 #include <rte_memcpy.h>
45 #include <rte_string_fns.h>
46 #include <rte_memzone.h>
47 #include <rte_malloc.h>
48 #include <rte_atomic.h>
49 #include <rte_branch_prediction.h>
50 #include <rte_pci.h>
51 #include <rte_ether.h>
52 #include <rte_common.h>
53
54 #include <rte_memory.h>
55 #include <rte_eal.h>
56 #include <rte_dev.h>
57
58 #include "virtio_ethdev.h"
59 #include "virtio_pci.h"
60 #include "virtio_logs.h"
61 #include "virtqueue.h"
62
63
64 static int eth_virtio_dev_init(struct eth_driver *eth_drv,
65                 struct rte_eth_dev *eth_dev);
66 static int  virtio_dev_configure(struct rte_eth_dev *dev);
67 static int  virtio_dev_start(struct rte_eth_dev *dev);
68 static void virtio_dev_stop(struct rte_eth_dev *dev);
69 static void virtio_dev_info_get(struct rte_eth_dev *dev,
70                                 struct rte_eth_dev_info *dev_info);
71 static int virtio_dev_link_update(struct rte_eth_dev *dev,
72         __rte_unused int wait_to_complete);
73
74 static void virtio_set_hwaddr(struct virtio_hw *hw);
75 static void virtio_get_hwaddr(struct virtio_hw *hw);
76
77 static void virtio_dev_rx_queue_release(__rte_unused void *rxq);
78 static void virtio_dev_tx_queue_release(__rte_unused void *txq);
79
80 static void virtio_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats);
81 static void virtio_dev_stats_reset(struct rte_eth_dev *dev);
82 static void virtio_dev_free_mbufs(struct rte_eth_dev *dev);
83
84 static int virtio_dev_queue_stats_mapping_set(
85         __rte_unused struct rte_eth_dev *eth_dev,
86         __rte_unused uint16_t queue_id,
87         __rte_unused uint8_t stat_idx,
88         __rte_unused uint8_t is_rx);
89
90 /*
91  * The set of PCI devices this driver supports
92  */
93 static struct rte_pci_id pci_id_virtio_map[] = {
94
95 #define RTE_PCI_DEV_ID_DECL_VIRTIO(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
96 #include "rte_pci_dev_ids.h"
97
98 { .vendor_id = 0, /* sentinel */ },
99 };
100
101 static int
102 virtio_send_command(struct virtqueue *vq, struct virtio_pmd_ctrl *ctrl,
103                 int *dlen, int pkt_num)
104 {
105         uint32_t head = vq->vq_desc_head_idx, i;
106         int k, sum = 0;
107         virtio_net_ctrl_ack status = ~0;
108         struct virtio_pmd_ctrl result;
109
110         ctrl->status = status;
111
112         if (!vq->hw->cvq) {
113                 PMD_INIT_LOG(ERR,
114                              "%s(): Control queue is not supported.\n",
115                              __func__);
116                 return -1;
117         }
118
119         PMD_INIT_LOG(DEBUG, "vq->vq_desc_head_idx = %d, status = %d, "
120                 "vq->hw->cvq = %p vq = %p\n",
121                 vq->vq_desc_head_idx, status, vq->hw->cvq, vq);
122
123         if ((vq->vq_free_cnt < ((uint32_t)pkt_num + 2)) || (pkt_num < 1))
124                 return -1;
125
126         memcpy(vq->virtio_net_hdr_mz->addr, ctrl,
127                 sizeof(struct virtio_pmd_ctrl));
128
129         /*
130          * Format is enforced in qemu code:
131          * One TX packet for header;
132          * At least one TX packet per argument;
133          * One RX packet for ACK.
134          */
135         vq->vq_ring.desc[head].flags = VRING_DESC_F_NEXT;
136         vq->vq_ring.desc[head].addr = vq->virtio_net_hdr_mz->phys_addr;
137         vq->vq_ring.desc[head].len = sizeof(struct virtio_net_ctrl_hdr);
138         vq->vq_free_cnt--;
139         i = vq->vq_ring.desc[head].next;
140
141         for (k = 0; k < pkt_num; k++) {
142                 vq->vq_ring.desc[i].flags = VRING_DESC_F_NEXT;
143                 vq->vq_ring.desc[i].addr = vq->virtio_net_hdr_mz->phys_addr
144                         + sizeof(struct virtio_net_ctrl_hdr)
145                         + sizeof(ctrl->status) + sizeof(uint8_t)*sum;
146                 vq->vq_ring.desc[i].len = dlen[k];
147                 sum += dlen[k];
148                 vq->vq_free_cnt--;
149                 i = vq->vq_ring.desc[i].next;
150         }
151
152         vq->vq_ring.desc[i].flags = VRING_DESC_F_WRITE;
153         vq->vq_ring.desc[i].addr = vq->virtio_net_hdr_mz->phys_addr
154                         + sizeof(struct virtio_net_ctrl_hdr);
155         vq->vq_ring.desc[i].len = sizeof(ctrl->status);
156         vq->vq_free_cnt--;
157
158         vq->vq_desc_head_idx = vq->vq_ring.desc[i].next;
159
160         vq_update_avail_ring(vq, head);
161         vq_update_avail_idx(vq);
162
163         PMD_INIT_LOG(DEBUG, "vq->vq_queue_index = %d\n", vq->vq_queue_index);
164
165         virtqueue_notify(vq);
166
167         while (vq->vq_used_cons_idx == vq->vq_ring.used->idx)
168                 usleep(100);
169
170         while (vq->vq_used_cons_idx != vq->vq_ring.used->idx) {
171                 uint32_t idx, desc_idx, used_idx;
172                 struct vring_used_elem *uep;
173
174                 rmb();
175
176                 used_idx = (uint32_t)(vq->vq_used_cons_idx
177                                 & (vq->vq_nentries - 1));
178                 uep = &vq->vq_ring.used->ring[used_idx];
179                 idx = (uint32_t) uep->id;
180                 desc_idx = idx;
181
182                 while (vq->vq_ring.desc[desc_idx].flags & VRING_DESC_F_NEXT) {
183                         desc_idx = vq->vq_ring.desc[desc_idx].next;
184                         vq->vq_free_cnt++;
185                 }
186
187                 vq->vq_ring.desc[desc_idx].next = vq->vq_desc_head_idx;
188                 vq->vq_desc_head_idx = idx;
189
190                 vq->vq_used_cons_idx++;
191                 vq->vq_free_cnt++;
192         }
193
194         PMD_INIT_LOG(DEBUG, "vq->vq_free_cnt=%d\nvq->vq_desc_head_idx=%d\n",
195                         vq->vq_free_cnt, vq->vq_desc_head_idx);
196
197         memcpy(&result, vq->virtio_net_hdr_mz->addr,
198                         sizeof(struct virtio_pmd_ctrl));
199
200         return result.status;
201 }
202
203 static int
204 virtio_set_multiple_queues(struct rte_eth_dev *dev, uint16_t nb_queues)
205 {
206         struct virtio_hw *hw
207                 = VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
208         struct virtio_pmd_ctrl ctrl;
209         int dlen[1];
210         int ret;
211
212         ctrl.hdr.class = VIRTIO_NET_CTRL_MQ;
213         ctrl.hdr.cmd = VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET;
214         memcpy(ctrl.data, &nb_queues, sizeof(uint16_t));
215
216         dlen[0] = sizeof(uint16_t);
217
218         ret = virtio_send_command(hw->cvq, &ctrl, dlen, 1);
219
220         if (ret) {
221                 PMD_INIT_LOG(ERR, "Multiqueue configured but send command "
222                           "failed, this is too late now...\n");
223                 return -EINVAL;
224         }
225
226         return 0;
227 }
228
229 int virtio_dev_queue_setup(struct rte_eth_dev *dev,
230                         int queue_type,
231                         uint16_t queue_idx,
232                         uint8_t  vtpci_queue_idx,
233                         uint16_t nb_desc,
234                         unsigned int socket_id,
235                         struct virtqueue **pvq)
236 {
237         char vq_name[VIRTQUEUE_MAX_NAME_SZ];
238         const struct rte_memzone *mz;
239         uint16_t vq_size;
240         int size;
241         struct virtio_hw *hw =
242                 VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
243         struct virtqueue  *vq = NULL;
244
245         /* Write the virtqueue index to the Queue Select Field */
246         VIRTIO_WRITE_REG_2(hw, VIRTIO_PCI_QUEUE_SEL, vtpci_queue_idx);
247         PMD_INIT_LOG(DEBUG, "selecting queue: %d\n", vtpci_queue_idx);
248
249         /*
250          * Read the virtqueue size from the Queue Size field
251          * Always power of 2 and if 0 virtqueue does not exist
252          */
253         vq_size = VIRTIO_READ_REG_2(hw, VIRTIO_PCI_QUEUE_NUM);
254         PMD_INIT_LOG(DEBUG, "vq_size: %d nb_desc:%d\n", vq_size, nb_desc);
255         if (nb_desc == 0)
256                 nb_desc = vq_size;
257         if (vq_size == 0) {
258                 PMD_INIT_LOG(ERR, "%s: virtqueue does not exist\n", __func__);
259                 return -EINVAL;
260         } else if (!rte_is_power_of_2(vq_size)) {
261                 PMD_INIT_LOG(ERR, "%s: virtqueue size is not powerof 2\n", __func__);
262                 return -EINVAL;
263         } else if (nb_desc != vq_size) {
264                 PMD_INIT_LOG(ERR, "Warning: nb_desc(%d) is not equal to vq size (%d), fall to vq size\n",
265                         nb_desc, vq_size);
266                 nb_desc = vq_size;
267         }
268
269         if (queue_type == VTNET_RQ) {
270                 snprintf(vq_name, sizeof(vq_name), "port%d_rvq%d",
271                         dev->data->port_id, queue_idx);
272                 vq = rte_zmalloc(vq_name, sizeof(struct virtqueue) +
273                         vq_size * sizeof(struct vq_desc_extra), CACHE_LINE_SIZE);
274                 memcpy(vq->vq_name, vq_name, sizeof(vq->vq_name));
275         } else if (queue_type == VTNET_TQ) {
276                 snprintf(vq_name, sizeof(vq_name), "port%d_tvq%d",
277                         dev->data->port_id, queue_idx);
278                 vq = rte_zmalloc(vq_name, sizeof(struct virtqueue) +
279                         vq_size * sizeof(struct vq_desc_extra), CACHE_LINE_SIZE);
280                 memcpy(vq->vq_name, vq_name, sizeof(vq->vq_name));
281         } else if (queue_type == VTNET_CQ) {
282                 snprintf(vq_name, sizeof(vq_name), "port%d_cvq",
283                         dev->data->port_id);
284                 vq = rte_zmalloc(vq_name, sizeof(struct virtqueue) +
285                         vq_size * sizeof(struct vq_desc_extra),
286                         CACHE_LINE_SIZE);
287                 memcpy(vq->vq_name, vq_name, sizeof(vq->vq_name));
288         }
289         if (vq == NULL) {
290                 PMD_INIT_LOG(ERR, "%s: Can not allocate virtqueue\n", __func__);
291                 return (-ENOMEM);
292         }
293
294         vq->hw = hw;
295         vq->port_id = dev->data->port_id;
296         vq->queue_id = queue_idx;
297         vq->vq_queue_index = vtpci_queue_idx;
298         vq->vq_alignment = VIRTIO_PCI_VRING_ALIGN;
299         vq->vq_nentries = vq_size;
300         vq->vq_free_cnt = vq_size;
301
302         /*
303          * Reserve a memzone for vring elements
304          */
305         size = vring_size(vq_size, VIRTIO_PCI_VRING_ALIGN);
306         vq->vq_ring_size = RTE_ALIGN_CEIL(size, VIRTIO_PCI_VRING_ALIGN);
307         PMD_INIT_LOG(DEBUG, "vring_size: %d, rounded_vring_size: %d\n", size, vq->vq_ring_size);
308
309         mz = rte_memzone_reserve_aligned(vq_name, vq->vq_ring_size,
310                 socket_id, 0, VIRTIO_PCI_VRING_ALIGN);
311         if (mz == NULL) {
312                 rte_free(vq);
313                 return -ENOMEM;
314         }
315
316         /*
317          * Virtio PCI device VIRTIO_PCI_QUEUE_PF register is 32bit,
318          * and only accepts 32 bit page frame number.
319          * Check if the allocated physical memory exceeds 16TB.
320          */
321         if ((mz->phys_addr + vq->vq_ring_size - 1) >> (VIRTIO_PCI_QUEUE_ADDR_SHIFT + 32)) {
322                 PMD_INIT_LOG(ERR, "vring address shouldn't be above 16TB!\n");
323                 rte_free(vq);
324                 return -ENOMEM;
325         }
326
327         memset(mz->addr, 0, sizeof(mz->len));
328         vq->mz = mz;
329         vq->vq_ring_mem = mz->phys_addr;
330         vq->vq_ring_virt_mem = mz->addr;
331         PMD_INIT_LOG(DEBUG, "vq->vq_ring_mem:      0x%"PRIx64"\n", (uint64_t)mz->phys_addr);
332         PMD_INIT_LOG(DEBUG, "vq->vq_ring_virt_mem: 0x%"PRIx64"\n", (uint64_t)mz->addr);
333         vq->virtio_net_hdr_mz  = NULL;
334         vq->virtio_net_hdr_mem = (void *)NULL;
335
336         if (queue_type == VTNET_TQ) {
337                 /*
338                  * For each xmit packet, allocate a virtio_net_hdr
339                  */
340                 snprintf(vq_name, sizeof(vq_name), "port%d_tvq%d_hdrzone",
341                         dev->data->port_id, queue_idx);
342                 vq->virtio_net_hdr_mz = rte_memzone_reserve_aligned(vq_name,
343                         vq_size * sizeof(struct virtio_net_hdr),
344                         socket_id, 0, CACHE_LINE_SIZE);
345                 if (vq->virtio_net_hdr_mz == NULL) {
346                         rte_free(vq);
347                         return -ENOMEM;
348                 }
349                 vq->virtio_net_hdr_mem =
350                         (void *)(uintptr_t)vq->virtio_net_hdr_mz->phys_addr;
351                 memset(vq->virtio_net_hdr_mz->addr, 0,
352                         vq_size * sizeof(struct virtio_net_hdr));
353         } else if (queue_type == VTNET_CQ) {
354                 /* Allocate a page for control vq command, data and status */
355                 snprintf(vq_name, sizeof(vq_name), "port%d_cvq_hdrzone",
356                         dev->data->port_id);
357                 vq->virtio_net_hdr_mz = rte_memzone_reserve_aligned(vq_name,
358                         PAGE_SIZE, socket_id, 0, CACHE_LINE_SIZE);
359                 if (vq->virtio_net_hdr_mz == NULL) {
360                         rte_free(vq);
361                         return -ENOMEM;
362                 }
363                 vq->virtio_net_hdr_mem =
364                         (void *)(uintptr_t)vq->virtio_net_hdr_mz->phys_addr;
365                 memset(vq->virtio_net_hdr_mz->addr, 0, PAGE_SIZE);
366         }
367
368         /*
369          * Set guest physical address of the virtqueue
370          * in VIRTIO_PCI_QUEUE_PFN config register of device
371          */
372         VIRTIO_WRITE_REG_4(hw, VIRTIO_PCI_QUEUE_PFN,
373                         mz->phys_addr >> VIRTIO_PCI_QUEUE_ADDR_SHIFT);
374         *pvq = vq;
375         return 0;
376 }
377
378 static int
379 virtio_dev_cq_queue_setup(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx,
380                 uint32_t socket_id)
381 {
382         struct virtqueue *vq;
383         uint16_t nb_desc = 0;
384         int ret;
385         struct virtio_hw *hw =
386                 VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
387
388         PMD_INIT_FUNC_TRACE();
389         ret = virtio_dev_queue_setup(dev, VTNET_CQ, VTNET_SQ_CQ_QUEUE_IDX,
390                         vtpci_queue_idx, nb_desc, socket_id, &vq);
391
392         if (ret < 0) {
393                 PMD_INIT_LOG(ERR, "control vq initialization failed\n");
394                 return ret;
395         }
396
397         hw->cvq = vq;
398         return 0;
399 }
400
401 static void
402 virtio_dev_close(struct rte_eth_dev *dev)
403 {
404         PMD_INIT_LOG(DEBUG, "virtio_dev_close");
405
406         virtio_dev_stop(dev);
407 }
408
409 /*
410  * dev_ops for virtio, bare necessities for basic operation
411  */
412 static struct eth_dev_ops virtio_eth_dev_ops = {
413         .dev_configure           = virtio_dev_configure,
414         .dev_start               = virtio_dev_start,
415         .dev_stop                = virtio_dev_stop,
416         .dev_close               = virtio_dev_close,
417
418         .dev_infos_get           = virtio_dev_info_get,
419         .stats_get               = virtio_dev_stats_get,
420         .stats_reset             = virtio_dev_stats_reset,
421         .link_update             = virtio_dev_link_update,
422         .mac_addr_add            = NULL,
423         .mac_addr_remove         = NULL,
424         .rx_queue_setup          = virtio_dev_rx_queue_setup,
425         /* meaningfull only to multiple queue */
426         .rx_queue_release        = virtio_dev_rx_queue_release,
427         .tx_queue_setup          = virtio_dev_tx_queue_setup,
428         /* meaningfull only to multiple queue */
429         .tx_queue_release        = virtio_dev_tx_queue_release,
430         /* collect stats per queue */
431         .queue_stats_mapping_set = virtio_dev_queue_stats_mapping_set,
432 };
433
434 static inline int
435 virtio_dev_atomic_read_link_status(struct rte_eth_dev *dev,
436                                 struct rte_eth_link *link)
437 {
438         struct rte_eth_link *dst = link;
439         struct rte_eth_link *src = &(dev->data->dev_link);
440
441         if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
442                         *(uint64_t *)src) == 0)
443                 return -1;
444
445         return 0;
446 }
447
448 /**
449  * Atomically writes the link status information into global
450  * structure rte_eth_dev.
451  *
452  * @param dev
453  *   - Pointer to the structure rte_eth_dev to read from.
454  *   - Pointer to the buffer to be saved with the link status.
455  *
456  * @return
457  *   - On success, zero.
458  *   - On failure, negative value.
459  */
460 static inline int
461 virtio_dev_atomic_write_link_status(struct rte_eth_dev *dev,
462                 struct rte_eth_link *link)
463 {
464         struct rte_eth_link *dst = &(dev->data->dev_link);
465         struct rte_eth_link *src = link;
466
467         if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
468                                         *(uint64_t *)src) == 0)
469                 return -1;
470
471         return 0;
472 }
473
474 static void
475 virtio_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
476 {
477         struct virtio_hw *hw =
478                 VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
479         if (stats)
480                 memcpy(stats, &hw->eth_stats, sizeof(*stats));
481 }
482
483 static void
484 virtio_dev_stats_reset(struct rte_eth_dev *dev)
485 {
486         struct virtio_hw *hw =
487                 VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
488         /* Reset software totals */
489         memset(&hw->eth_stats, 0, sizeof(hw->eth_stats));
490 }
491
492 static void
493 virtio_set_hwaddr(struct virtio_hw *hw)
494 {
495         vtpci_write_dev_config(hw,
496                         offsetof(struct virtio_net_config, mac),
497                         &hw->mac_addr, ETHER_ADDR_LEN);
498 }
499
500 static void
501 virtio_get_hwaddr(struct virtio_hw *hw)
502 {
503         if (vtpci_with_feature(hw, VIRTIO_NET_F_MAC)) {
504                 vtpci_read_dev_config(hw,
505                         offsetof(struct virtio_net_config, mac),
506                         &hw->mac_addr, ETHER_ADDR_LEN);
507         } else {
508                 eth_random_addr(&hw->mac_addr[0]);
509                 virtio_set_hwaddr(hw);
510         }
511 }
512
513
514 static void
515 virtio_negotiate_features(struct virtio_hw *hw)
516 {
517         uint32_t guest_features, mask;
518
519         mask = VIRTIO_NET_F_CTRL_RX | VIRTIO_NET_F_CTRL_VLAN;
520         mask |= VIRTIO_NET_F_CSUM | VIRTIO_NET_F_GUEST_CSUM;
521
522         /* TSO and LRO are only available when their corresponding
523          * checksum offload feature is also negotiated.
524          */
525         mask |= VIRTIO_NET_F_HOST_TSO4 | VIRTIO_NET_F_HOST_TSO6 | VIRTIO_NET_F_HOST_ECN;
526         mask |= VIRTIO_NET_F_GUEST_TSO4 | VIRTIO_NET_F_GUEST_TSO6 | VIRTIO_NET_F_GUEST_ECN;
527         mask |= VTNET_LRO_FEATURES;
528
529         /* rx_mbuf should not be in multiple merged segments */
530         mask |= VIRTIO_NET_F_MRG_RXBUF;
531
532         /* not negotiating INDIRECT descriptor table support */
533         mask |= VIRTIO_RING_F_INDIRECT_DESC;
534
535         /* Prepare guest_features: feature that driver wants to support */
536         guest_features = VTNET_FEATURES & ~mask;
537         PMD_INIT_LOG(DEBUG, "guest_features before negotiate = %x\n",
538                 guest_features);
539
540         /* Read device(host) feature bits */
541         hw->host_features = VIRTIO_READ_REG_4(hw, VIRTIO_PCI_HOST_FEATURES);
542         PMD_INIT_LOG(DEBUG, "host_features before negotiate = %x\n",
543                 hw->host_features);
544
545         /*
546          * Negotiate features: Subset of device feature bits are written back
547          * guest feature bits.
548          */
549         hw->guest_features = vtpci_negotiate_features(hw, guest_features);
550         PMD_INIT_LOG(DEBUG, "features after negotiate = %x\n",
551                 hw->guest_features);
552 }
553
554 #ifdef RTE_EXEC_ENV_LINUXAPP
555 static int
556 parse_sysfs_value(const char *filename, unsigned long *val)
557 {
558         FILE *f;
559         char buf[BUFSIZ];
560         char *end = NULL;
561
562         f = fopen(filename, "r");
563         if (f == NULL) {
564                 PMD_INIT_LOG(ERR, "%s(): cannot open sysfs value %s\n",
565                              __func__, filename);
566                 return -1;
567         }
568
569         if (fgets(buf, sizeof(buf), f) == NULL) {
570                 PMD_INIT_LOG(ERR, "%s(): cannot read sysfs value %s\n",
571                              __func__, filename);
572                 fclose(f);
573                 return -1;
574         }
575         *val = strtoul(buf, &end, 0);
576         if ((buf[0] == '\0') || (end == NULL) || (*end != '\n')) {
577                 PMD_INIT_LOG(ERR, "%s(): cannot parse sysfs value %s\n",
578                              __func__, filename);
579                 fclose(f);
580                 return -1;
581         }
582         fclose(f);
583         return 0;
584 }
585
586 static int get_uio_dev(struct rte_pci_addr *loc, char *buf, unsigned int buflen)
587 {
588         unsigned int uio_num;
589         struct dirent *e;
590         DIR *dir;
591         char dirname[PATH_MAX];
592
593         /* depending on kernel version, uio can be located in uio/uioX
594          * or uio:uioX */
595         snprintf(dirname, sizeof(dirname),
596                      SYSFS_PCI_DEVICES "/" PCI_PRI_FMT "/uio",
597                      loc->domain, loc->bus, loc->devid, loc->function);
598         dir = opendir(dirname);
599         if (dir == NULL) {
600                 /* retry with the parent directory */
601                 snprintf(dirname, sizeof(dirname),
602                              SYSFS_PCI_DEVICES "/" PCI_PRI_FMT,
603                              loc->domain, loc->bus, loc->devid, loc->function);
604                 dir = opendir(dirname);
605
606                 if (dir == NULL) {
607                         PMD_INIT_LOG(ERR, "Cannot opendir %s\n", dirname);
608                         return -1;
609                 }
610         }
611
612         /* take the first file starting with "uio" */
613         while ((e = readdir(dir)) != NULL) {
614                 /* format could be uio%d ...*/
615                 int shortprefix_len = sizeof("uio") - 1;
616                 /* ... or uio:uio%d */
617                 int longprefix_len = sizeof("uio:uio") - 1;
618                 char *endptr;
619
620                 if (strncmp(e->d_name, "uio", 3) != 0)
621                         continue;
622
623                 /* first try uio%d */
624                 errno = 0;
625                 uio_num = strtoull(e->d_name + shortprefix_len, &endptr, 10);
626                 if (errno == 0 && endptr != (e->d_name + shortprefix_len)) {
627                         snprintf(buf, buflen, "%s/uio%u", dirname, uio_num);
628                         break;
629                 }
630
631                 /* then try uio:uio%d */
632                 errno = 0;
633                 uio_num = strtoull(e->d_name + longprefix_len, &endptr, 10);
634                 if (errno == 0 && endptr != (e->d_name + longprefix_len)) {
635                         snprintf(buf, buflen, "%s/uio:uio%u", dirname,
636                                      uio_num);
637                         break;
638                 }
639         }
640         closedir(dir);
641
642         /* No uio resource found */
643         if (e == NULL) {
644                 PMD_INIT_LOG(ERR, "Could not find uio resource\n");
645                 return -1;
646         }
647
648         return 0;
649 }
650 #endif
651
652 /*
653  * This function is based on probe() function in virtio_pci.c
654  * It returns 0 on success.
655  */
656 static int
657 eth_virtio_dev_init(__rte_unused struct eth_driver *eth_drv,
658                 struct rte_eth_dev *eth_dev)
659 {
660         struct virtio_net_config *config;
661         struct virtio_net_config local_config;
662         uint32_t offset_conf = sizeof(config->mac);
663         struct rte_pci_device *pci_dev;
664         struct virtio_hw *hw =
665                 VIRTIO_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
666
667         if (RTE_PKTMBUF_HEADROOM < sizeof(struct virtio_net_hdr)) {
668                 PMD_INIT_LOG(ERR,
669                         "MBUF HEADROOM should be enough to hold virtio net hdr\n");
670                 return -1;
671         }
672
673         if (!(rte_eal_get_configuration()->flags & EAL_FLG_HIGH_IOPL)) {
674                 PMD_INIT_LOG(ERR,
675                         "IOPL call failed in EAL init - cannot use virtio PMD driver\n");
676                 return -1;
677         }
678
679         eth_dev->dev_ops = &virtio_eth_dev_ops;
680         eth_dev->rx_pkt_burst = &virtio_recv_pkts;
681         eth_dev->tx_pkt_burst = &virtio_xmit_pkts;
682
683         if (rte_eal_process_type() == RTE_PROC_SECONDARY)
684                 return 0;
685
686         pci_dev = eth_dev->pci_dev;
687
688         hw->device_id = pci_dev->id.device_id;
689         hw->vendor_id = pci_dev->id.vendor_id;
690 #ifdef RTE_EXEC_ENV_LINUXAPP
691         {
692                 char dirname[PATH_MAX];
693                 char filename[PATH_MAX];
694                 unsigned long start, size;
695
696                 if (get_uio_dev(&pci_dev->addr, dirname, sizeof(dirname)) < 0)
697                         return -1;
698
699                 /* get portio size */
700                 snprintf(filename, sizeof(filename),
701                              "%s/portio/port0/size", dirname);
702                 if (parse_sysfs_value(filename, &size) < 0) {
703                         PMD_INIT_LOG(ERR, "%s(): cannot parse size\n",
704                                      __func__);
705                         return -1;
706                 }
707
708                 /* get portio start */
709                 snprintf(filename, sizeof(filename),
710                              "%s/portio/port0/start", dirname);
711                 if (parse_sysfs_value(filename, &start) < 0) {
712                         PMD_INIT_LOG(ERR, "%s(): cannot parse portio start\n",
713                                      __func__);
714                         return -1;
715                 }
716                 pci_dev->mem_resource[0].addr = (void *)(uintptr_t)start;
717                 pci_dev->mem_resource[0].len =  (uint64_t)size;
718                 PMD_INIT_LOG(DEBUG,
719                              "PCI Port IO found start=0x%lx with size=0x%lx\n",
720                              start, size);
721         }
722 #endif
723         hw->io_base = (uint32_t)(uintptr_t)pci_dev->mem_resource[0].addr;
724
725         /* Reset the device although not necessary at startup */
726         vtpci_reset(hw);
727
728         /* Tell the host we've noticed this device. */
729         vtpci_set_status(hw, VIRTIO_CONFIG_STATUS_ACK);
730
731         /* Tell the host we've known how to drive the device. */
732         vtpci_set_status(hw, VIRTIO_CONFIG_STATUS_DRIVER);
733         virtio_negotiate_features(hw);
734
735         /* Setting up rx_header size for the device */
736         if (vtpci_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF))
737                 hw->vtnet_hdr_size = sizeof(struct virtio_net_hdr_mrg_rxbuf);
738         else
739                 hw->vtnet_hdr_size = sizeof(struct virtio_net_hdr);
740
741         /* Allocate memory for storing MAC addresses */
742         eth_dev->data->mac_addrs = rte_zmalloc("virtio", ETHER_ADDR_LEN, 0);
743         if (eth_dev->data->mac_addrs == NULL) {
744                 PMD_INIT_LOG(ERR,
745                         "Failed to allocate %d bytes needed to store MAC addresses",
746                         ETHER_ADDR_LEN);
747                 return -ENOMEM;
748         }
749
750         /* Copy the permanent MAC address to: virtio_hw */
751         virtio_get_hwaddr(hw);
752         ether_addr_copy((struct ether_addr *) hw->mac_addr,
753                         &eth_dev->data->mac_addrs[0]);
754         PMD_INIT_LOG(DEBUG,
755                      "PORT MAC: %02X:%02X:%02X:%02X:%02X:%02X\n",
756                      hw->mac_addr[0], hw->mac_addr[1], hw->mac_addr[2],
757                      hw->mac_addr[3], hw->mac_addr[4], hw->mac_addr[5]);
758
759         if (vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_VQ)) {
760                 config = &local_config;
761
762                 if (vtpci_with_feature(hw, VIRTIO_NET_F_STATUS)) {
763                         offset_conf += sizeof(config->status);
764                 } else {
765                         PMD_INIT_LOG(DEBUG,
766                                      "VIRTIO_NET_F_STATUS is not supported\n");
767                         config->status = 0;
768                 }
769
770                 if (vtpci_with_feature(hw, VIRTIO_NET_F_MQ)) {
771                         offset_conf += sizeof(config->max_virtqueue_pairs);
772                 } else {
773                         PMD_INIT_LOG(DEBUG,
774                                      "VIRTIO_NET_F_MQ is not supported\n");
775                         config->max_virtqueue_pairs = 1;
776                 }
777
778                 vtpci_read_dev_config(hw, 0, (uint8_t *)config, offset_conf);
779
780                 hw->max_rx_queues =
781                         (VIRTIO_MAX_RX_QUEUES < config->max_virtqueue_pairs) ?
782                         VIRTIO_MAX_RX_QUEUES : config->max_virtqueue_pairs;
783                 hw->max_tx_queues =
784                         (VIRTIO_MAX_TX_QUEUES < config->max_virtqueue_pairs) ?
785                         VIRTIO_MAX_TX_QUEUES : config->max_virtqueue_pairs;
786
787                 virtio_dev_cq_queue_setup(eth_dev,
788                                         config->max_virtqueue_pairs * 2,
789                                         SOCKET_ID_ANY);
790
791                 PMD_INIT_LOG(DEBUG, "config->max_virtqueue_pairs=%d\n",
792                                 config->max_virtqueue_pairs);
793                 PMD_INIT_LOG(DEBUG, "config->status=%d\n", config->status);
794                 PMD_INIT_LOG(DEBUG,
795                                 "PORT MAC: %02X:%02X:%02X:%02X:%02X:%02X\n",
796                                 config->mac[0], config->mac[1],
797                                 config->mac[2], config->mac[3],
798                                 config->mac[4], config->mac[5]);
799         } else {
800                 hw->max_rx_queues = 1;
801                 hw->max_tx_queues = 1;
802         }
803
804         eth_dev->data->nb_rx_queues = hw->max_rx_queues;
805         eth_dev->data->nb_tx_queues = hw->max_tx_queues;
806
807         PMD_INIT_LOG(DEBUG, "hw->max_rx_queues=%d   hw->max_tx_queues=%d\n",
808                         hw->max_rx_queues, hw->max_tx_queues);
809         PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x",
810                         eth_dev->data->port_id, pci_dev->id.vendor_id,
811                         pci_dev->id.device_id);
812         return 0;
813 }
814
815 static struct eth_driver rte_virtio_pmd = {
816         {
817                 .name = "rte_virtio_pmd",
818                 .id_table = pci_id_virtio_map,
819                 .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
820         },
821         .eth_dev_init = eth_virtio_dev_init,
822         .dev_private_size = sizeof(struct virtio_adapter),
823 };
824
825 /*
826  * Driver initialization routine.
827  * Invoked once at EAL init time.
828  * Register itself as the [Poll Mode] Driver of PCI virtio devices.
829  * Returns 0 on success.
830  */
831 static int
832 rte_virtio_pmd_init(const char *name __rte_unused, const char *param __rte_unused)
833 {
834         rte_eth_driver_register(&rte_virtio_pmd);
835         return 0;
836 }
837
838 /*
839  * Only 1 queue is supported, no queue release related operation
840  */
841 static void
842 virtio_dev_rx_queue_release(__rte_unused void *rxq)
843 {
844 }
845
846 static void
847 virtio_dev_tx_queue_release(__rte_unused void *txq)
848 {
849 }
850
851 /*
852  * Configure virtio device
853  * It returns 0 on success.
854  */
855 static int
856 virtio_dev_configure(__rte_unused struct rte_eth_dev *dev)
857 {
858         return 0;
859 }
860
861
862 static int
863 virtio_dev_start(struct rte_eth_dev *dev)
864 {
865         uint16_t nb_queues, i;
866         uint16_t status;
867         struct virtio_hw *hw =
868                 VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
869
870         /* Tell the host we've noticed this device. */
871         vtpci_set_status(hw, VIRTIO_CONFIG_STATUS_ACK);
872
873         /* Tell the host we've known how to drive the device. */
874         vtpci_set_status(hw, VIRTIO_CONFIG_STATUS_DRIVER);
875
876         hw->adapter_stopped = 0;
877
878         virtio_dev_cq_start(dev);
879
880         /* Do final configuration before rx/tx engine starts */
881         virtio_dev_rxtx_start(dev);
882
883         /* Check VIRTIO_NET_F_STATUS for link status*/
884         if (vtpci_with_feature(hw, VIRTIO_NET_F_STATUS)) {
885                 vtpci_read_dev_config(hw,
886                                 offsetof(struct virtio_net_config, status),
887                                 &status, sizeof(status));
888                 if ((status & VIRTIO_NET_S_LINK_UP) == 0) {
889                         PMD_INIT_LOG(ERR,     "Port: %d Link is DOWN\n", dev->data->port_id);
890                         return -EIO;
891                 } else {
892                         PMD_INIT_LOG(DEBUG, "Port: %d Link is UP\n",  dev->data->port_id);
893                 }
894         }
895         vtpci_reinit_complete(hw);
896
897         /*Notify the backend
898          *Otherwise the tap backend might already stop its queue due to fullness.
899          *vhost backend will have no chance to be waked up
900          */
901         nb_queues = dev->data->nb_rx_queues;
902         if (nb_queues > 1) {
903                 if (virtio_set_multiple_queues(dev, nb_queues) != 0)
904                         return -EINVAL;
905         }
906
907         PMD_INIT_LOG(DEBUG, "nb_queues=%d\n", nb_queues);
908
909         for (i = 0; i < nb_queues; i++)
910                 virtqueue_notify(dev->data->rx_queues[i]);
911
912         PMD_INIT_LOG(DEBUG, "Notified backend at initialization\n");
913
914         for (i = 0; i < dev->data->nb_rx_queues; i++)
915                 VIRTQUEUE_DUMP((struct virtqueue *)dev->data->rx_queues[i]);
916
917         for (i = 0; i < dev->data->nb_tx_queues; i++)
918                 VIRTQUEUE_DUMP((struct virtqueue *)dev->data->tx_queues[i]);
919
920         return 0;
921 }
922
923 static void virtio_dev_free_mbufs(struct rte_eth_dev *dev)
924 {
925         struct rte_mbuf *buf;
926         int i, mbuf_num = 0;
927
928         for (i = 0; i < dev->data->nb_rx_queues; i++) {
929                 PMD_INIT_LOG(DEBUG,
930                              "Before freeing rxq[%d] used and unused buf\n", i);
931                 VIRTQUEUE_DUMP((struct virtqueue *)dev->data->rx_queues[i]);
932
933                 while ((buf = (struct rte_mbuf *)virtqueue_detatch_unused(
934                                         dev->data->rx_queues[i])) != NULL) {
935                         rte_pktmbuf_free_seg(buf);
936                         mbuf_num++;
937                 }
938
939                 PMD_INIT_LOG(DEBUG, "free %d mbufs\n", mbuf_num);
940                 PMD_INIT_LOG(DEBUG,
941                              "After freeing rxq[%d] used and unused buf\n", i);
942                 VIRTQUEUE_DUMP((struct virtqueue *)dev->data->rx_queues[i]);
943         }
944
945         for (i = 0; i < dev->data->nb_tx_queues; i++) {
946                 PMD_INIT_LOG(DEBUG,
947                              "Before freeing txq[%d] used and unused bufs\n",
948                              i);
949                 VIRTQUEUE_DUMP((struct virtqueue *)dev->data->tx_queues[i]);
950
951                 mbuf_num = 0;
952                 while ((buf = (struct rte_mbuf *)virtqueue_detatch_unused(
953                                         dev->data->tx_queues[i])) != NULL) {
954                         rte_pktmbuf_free_seg(buf);
955                         mbuf_num++;
956                 }
957
958                 PMD_INIT_LOG(DEBUG, "free %d mbufs\n", mbuf_num);
959                 PMD_INIT_LOG(DEBUG, "After freeing txq[%d] used and "
960                         "unused buf\n", i);
961                 VIRTQUEUE_DUMP((struct virtqueue *)dev->data->tx_queues[i]);
962         }
963 }
964
965 /*
966  * Stop device: disable rx and tx functions to allow for reconfiguring.
967  */
968 static void
969 virtio_dev_stop(struct rte_eth_dev *dev)
970 {
971         struct virtio_hw *hw =
972                 VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
973
974         /* reset the NIC */
975         vtpci_reset(hw);
976         virtio_dev_free_mbufs(dev);
977 }
978
979 static int
980 virtio_dev_link_update(struct rte_eth_dev *dev, __rte_unused int wait_to_complete)
981 {
982         struct rte_eth_link link, old;
983         uint16_t status;
984         struct virtio_hw *hw =
985                 VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
986         memset(&link, 0, sizeof(link));
987         virtio_dev_atomic_read_link_status(dev, &link);
988         old = link;
989         link.link_duplex = FULL_DUPLEX;
990         link.link_speed  = SPEED_10G;
991         if (vtpci_with_feature(hw, VIRTIO_NET_F_STATUS)) {
992                 PMD_INIT_LOG(DEBUG, "Get link status from hw\n");
993                 vtpci_read_dev_config(hw,
994                                 offsetof(struct virtio_net_config, status),
995                                 &status, sizeof(status));
996                 if ((status & VIRTIO_NET_S_LINK_UP) == 0) {
997                         link.link_status = 0;
998                         PMD_INIT_LOG(DEBUG, "Port %d is down\n",
999                                      dev->data->port_id);
1000                 } else {
1001                         link.link_status = 1;
1002                         PMD_INIT_LOG(DEBUG, "Port %d is up\n",
1003                                      dev->data->port_id);
1004                 }
1005         } else {
1006                 link.link_status = 1;   /* Link up */
1007         }
1008         virtio_dev_atomic_write_link_status(dev, &link);
1009         if (old.link_status == link.link_status)
1010                 return -1;
1011         /*changed*/
1012         return 0;
1013 }
1014
1015 static void
1016 virtio_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
1017 {
1018         struct virtio_hw *hw = VIRTIO_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1019
1020         dev_info->driver_name = dev->driver->pci_drv.name;
1021         dev_info->max_rx_queues = (uint16_t)hw->max_rx_queues;
1022         dev_info->max_tx_queues = (uint16_t)hw->max_tx_queues;
1023         dev_info->min_rx_bufsize = VIRTIO_MIN_RX_BUFSIZE;
1024         dev_info->max_rx_pktlen = VIRTIO_MAX_RX_PKTLEN;
1025         dev_info->max_mac_addrs = VIRTIO_MAX_MAC_ADDRS;
1026 }
1027
1028 /*
1029  * It enables testpmd to collect per queue stats.
1030  */
1031 static int
1032 virtio_dev_queue_stats_mapping_set(__rte_unused struct rte_eth_dev *eth_dev,
1033 __rte_unused uint16_t queue_id, __rte_unused uint8_t stat_idx,
1034 __rte_unused uint8_t is_rx)
1035 {
1036         return 0;
1037 }
1038
1039 static struct rte_driver rte_virtio_driver = {
1040         .type = PMD_PDEV,
1041         .init = rte_virtio_pmd_init,
1042 };
1043
1044 PMD_REGISTER_DRIVER(rte_virtio_driver);