bus/pci: fix VFIO mode
[dpdk.git] / drivers / bus / pci / linux / pci_vfio.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 <string.h>
35 #include <fcntl.h>
36 #include <linux/pci_regs.h>
37 #include <sys/eventfd.h>
38 #include <sys/socket.h>
39 #include <sys/ioctl.h>
40 #include <sys/mman.h>
41 #include <stdbool.h>
42
43 #include <rte_log.h>
44 #include <rte_pci.h>
45 #include <rte_bus_pci.h>
46 #include <rte_eal_memconfig.h>
47 #include <rte_malloc.h>
48 #include <rte_vfio.h>
49
50 #include "eal_filesystem.h"
51
52 #include "pci_init.h"
53 #include "private.h"
54
55 /**
56  * @file
57  * PCI probing under linux (VFIO version)
58  *
59  * This code tries to determine if the PCI device is bound to VFIO driver,
60  * and initialize it (map BARs, set up interrupts) if that's the case.
61  *
62  * This file is only compiled if CONFIG_RTE_EAL_VFIO is set to "y".
63  */
64
65 #ifdef VFIO_PRESENT
66
67 #define PAGE_SIZE   (sysconf(_SC_PAGESIZE))
68 #define PAGE_MASK   (~(PAGE_SIZE - 1))
69
70 static struct rte_tailq_elem rte_vfio_tailq = {
71         .name = "VFIO_RESOURCE_LIST",
72 };
73 EAL_REGISTER_TAILQ(rte_vfio_tailq)
74
75 int
76 pci_vfio_read_config(const struct rte_intr_handle *intr_handle,
77                     void *buf, size_t len, off_t offs)
78 {
79         return pread64(intr_handle->vfio_dev_fd, buf, len,
80                VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) + offs);
81 }
82
83 int
84 pci_vfio_write_config(const struct rte_intr_handle *intr_handle,
85                     const void *buf, size_t len, off_t offs)
86 {
87         return pwrite64(intr_handle->vfio_dev_fd, buf, len,
88                VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) + offs);
89 }
90
91 /* get PCI BAR number where MSI-X interrupts are */
92 static int
93 pci_vfio_get_msix_bar(int fd, struct pci_msix_table *msix_table)
94 {
95         int ret;
96         uint32_t reg;
97         uint16_t flags;
98         uint8_t cap_id, cap_offset;
99
100         /* read PCI capability pointer from config space */
101         ret = pread64(fd, &reg, sizeof(reg),
102                         VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
103                         PCI_CAPABILITY_LIST);
104         if (ret != sizeof(reg)) {
105                 RTE_LOG(ERR, EAL, "Cannot read capability pointer from PCI "
106                                 "config space!\n");
107                 return -1;
108         }
109
110         /* we need first byte */
111         cap_offset = reg & 0xFF;
112
113         while (cap_offset) {
114
115                 /* read PCI capability ID */
116                 ret = pread64(fd, &reg, sizeof(reg),
117                                 VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
118                                 cap_offset);
119                 if (ret != sizeof(reg)) {
120                         RTE_LOG(ERR, EAL, "Cannot read capability ID from PCI "
121                                         "config space!\n");
122                         return -1;
123                 }
124
125                 /* we need first byte */
126                 cap_id = reg & 0xFF;
127
128                 /* if we haven't reached MSI-X, check next capability */
129                 if (cap_id != PCI_CAP_ID_MSIX) {
130                         ret = pread64(fd, &reg, sizeof(reg),
131                                         VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
132                                         cap_offset);
133                         if (ret != sizeof(reg)) {
134                                 RTE_LOG(ERR, EAL, "Cannot read capability pointer from PCI "
135                                                 "config space!\n");
136                                 return -1;
137                         }
138
139                         /* we need second byte */
140                         cap_offset = (reg & 0xFF00) >> 8;
141
142                         continue;
143                 }
144                 /* else, read table offset */
145                 else {
146                         /* table offset resides in the next 4 bytes */
147                         ret = pread64(fd, &reg, sizeof(reg),
148                                         VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
149                                         cap_offset + 4);
150                         if (ret != sizeof(reg)) {
151                                 RTE_LOG(ERR, EAL, "Cannot read table offset from PCI config "
152                                                 "space!\n");
153                                 return -1;
154                         }
155
156                         ret = pread64(fd, &flags, sizeof(flags),
157                                         VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
158                                         cap_offset + 2);
159                         if (ret != sizeof(flags)) {
160                                 RTE_LOG(ERR, EAL, "Cannot read table flags from PCI config "
161                                                 "space!\n");
162                                 return -1;
163                         }
164
165                         msix_table->bar_index = reg & RTE_PCI_MSIX_TABLE_BIR;
166                         msix_table->offset = reg & RTE_PCI_MSIX_TABLE_OFFSET;
167                         msix_table->size =
168                                 16 * (1 + (flags & RTE_PCI_MSIX_FLAGS_QSIZE));
169
170                         return 0;
171                 }
172         }
173         return 0;
174 }
175
176 /* set PCI bus mastering */
177 static int
178 pci_vfio_set_bus_master(int dev_fd, bool op)
179 {
180         uint16_t reg;
181         int ret;
182
183         ret = pread64(dev_fd, &reg, sizeof(reg),
184                         VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
185                         PCI_COMMAND);
186         if (ret != sizeof(reg)) {
187                 RTE_LOG(ERR, EAL, "Cannot read command from PCI config space!\n");
188                 return -1;
189         }
190
191         if (op)
192                 /* set the master bit */
193                 reg |= PCI_COMMAND_MASTER;
194         else
195                 reg &= ~(PCI_COMMAND_MASTER);
196
197         ret = pwrite64(dev_fd, &reg, sizeof(reg),
198                         VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
199                         PCI_COMMAND);
200
201         if (ret != sizeof(reg)) {
202                 RTE_LOG(ERR, EAL, "Cannot write command to PCI config space!\n");
203                 return -1;
204         }
205
206         return 0;
207 }
208
209 /* set up interrupt support (but not enable interrupts) */
210 static int
211 pci_vfio_setup_interrupts(struct rte_pci_device *dev, int vfio_dev_fd)
212 {
213         int i, ret, intr_idx;
214         enum rte_intr_mode intr_mode;
215
216         /* default to invalid index */
217         intr_idx = VFIO_PCI_NUM_IRQS;
218
219         /* Get default / configured intr_mode */
220         intr_mode = rte_eal_vfio_intr_mode();
221
222         /* get interrupt type from internal config (MSI-X by default, can be
223          * overridden from the command line
224          */
225         switch (intr_mode) {
226         case RTE_INTR_MODE_MSIX:
227                 intr_idx = VFIO_PCI_MSIX_IRQ_INDEX;
228                 break;
229         case RTE_INTR_MODE_MSI:
230                 intr_idx = VFIO_PCI_MSI_IRQ_INDEX;
231                 break;
232         case RTE_INTR_MODE_LEGACY:
233                 intr_idx = VFIO_PCI_INTX_IRQ_INDEX;
234                 break;
235         /* don't do anything if we want to automatically determine interrupt type */
236         case RTE_INTR_MODE_NONE:
237                 break;
238         default:
239                 RTE_LOG(ERR, EAL, "  unknown default interrupt type!\n");
240                 return -1;
241         }
242
243         /* start from MSI-X interrupt type */
244         for (i = VFIO_PCI_MSIX_IRQ_INDEX; i >= 0; i--) {
245                 struct vfio_irq_info irq = { .argsz = sizeof(irq) };
246                 int fd = -1;
247
248                 /* skip interrupt modes we don't want */
249                 if (intr_mode != RTE_INTR_MODE_NONE &&
250                                 i != intr_idx)
251                         continue;
252
253                 irq.index = i;
254
255                 ret = ioctl(vfio_dev_fd, VFIO_DEVICE_GET_IRQ_INFO, &irq);
256                 if (ret < 0) {
257                         RTE_LOG(ERR, EAL, "  cannot get IRQ info, "
258                                         "error %i (%s)\n", errno, strerror(errno));
259                         return -1;
260                 }
261
262                 /* if this vector cannot be used with eventfd, fail if we explicitly
263                  * specified interrupt type, otherwise continue */
264                 if ((irq.flags & VFIO_IRQ_INFO_EVENTFD) == 0) {
265                         if (intr_mode != RTE_INTR_MODE_NONE) {
266                                 RTE_LOG(ERR, EAL,
267                                                 "  interrupt vector does not support eventfd!\n");
268                                 return -1;
269                         } else
270                                 continue;
271                 }
272
273                 /* set up an eventfd for interrupts */
274                 fd = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
275                 if (fd < 0) {
276                         RTE_LOG(ERR, EAL, "  cannot set up eventfd, "
277                                         "error %i (%s)\n", errno, strerror(errno));
278                         return -1;
279                 }
280
281                 dev->intr_handle.fd = fd;
282                 dev->intr_handle.vfio_dev_fd = vfio_dev_fd;
283
284                 switch (i) {
285                 case VFIO_PCI_MSIX_IRQ_INDEX:
286                         intr_mode = RTE_INTR_MODE_MSIX;
287                         dev->intr_handle.type = RTE_INTR_HANDLE_VFIO_MSIX;
288                         break;
289                 case VFIO_PCI_MSI_IRQ_INDEX:
290                         intr_mode = RTE_INTR_MODE_MSI;
291                         dev->intr_handle.type = RTE_INTR_HANDLE_VFIO_MSI;
292                         break;
293                 case VFIO_PCI_INTX_IRQ_INDEX:
294                         intr_mode = RTE_INTR_MODE_LEGACY;
295                         dev->intr_handle.type = RTE_INTR_HANDLE_VFIO_LEGACY;
296                         break;
297                 default:
298                         RTE_LOG(ERR, EAL, "  unknown interrupt type!\n");
299                         return -1;
300                 }
301
302                 return 0;
303         }
304
305         /* if we're here, we haven't found a suitable interrupt vector */
306         return -1;
307 }
308
309 static int
310 pci_vfio_is_ioport_bar(int vfio_dev_fd, int bar_index)
311 {
312         uint32_t ioport_bar;
313         int ret;
314
315         ret = pread64(vfio_dev_fd, &ioport_bar, sizeof(ioport_bar),
316                           VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX)
317                           + PCI_BASE_ADDRESS_0 + bar_index*4);
318         if (ret != sizeof(ioport_bar)) {
319                 RTE_LOG(ERR, EAL, "Cannot read command (%x) from config space!\n",
320                         PCI_BASE_ADDRESS_0 + bar_index*4);
321                 return -1;
322         }
323
324         return (ioport_bar & PCI_BASE_ADDRESS_SPACE_IO) != 0;
325 }
326
327 static int
328 pci_vfio_setup_device(struct rte_pci_device *dev, int vfio_dev_fd)
329 {
330         if (pci_vfio_setup_interrupts(dev, vfio_dev_fd) != 0) {
331                 RTE_LOG(ERR, EAL, "Error setting up interrupts!\n");
332                 return -1;
333         }
334
335         /* set bus mastering for the device */
336         if (pci_vfio_set_bus_master(vfio_dev_fd, true)) {
337                 RTE_LOG(ERR, EAL, "Cannot set up bus mastering!\n");
338                 return -1;
339         }
340
341         /* Reset the device */
342         if (ioctl(vfio_dev_fd, VFIO_DEVICE_RESET)) {
343                 RTE_LOG(ERR, EAL, "Unable to reset device! Error: %d (%s)\n",
344                                 errno, strerror(errno));
345                 return -1;
346         }
347
348         return 0;
349 }
350
351 static int
352 pci_vfio_mmap_bar(int vfio_dev_fd, struct mapped_pci_resource *vfio_res,
353                 int bar_index, int additional_flags)
354 {
355         struct memreg {
356                 unsigned long offset, size;
357         } memreg[2] = {};
358         void *bar_addr;
359         struct pci_msix_table *msix_table = &vfio_res->msix_table;
360         struct pci_map *bar = &vfio_res->maps[bar_index];
361
362         if (bar->size == 0)
363                 /* Skip this BAR */
364                 return 0;
365
366         if (msix_table->bar_index == bar_index) {
367                 /*
368                  * VFIO will not let us map the MSI-X table,
369                  * but we can map around it.
370                  */
371                 uint32_t table_start = msix_table->offset;
372                 uint32_t table_end = table_start + msix_table->size;
373                 table_end = (table_end + ~PAGE_MASK) & PAGE_MASK;
374                 table_start &= PAGE_MASK;
375
376                 if (table_start == 0 && table_end >= bar->size) {
377                         /* Cannot map this BAR */
378                         RTE_LOG(DEBUG, EAL, "Skipping BAR%d\n", bar_index);
379                         bar->size = 0;
380                         bar->addr = 0;
381                         return 0;
382                 }
383
384                 memreg[0].offset = bar->offset;
385                 memreg[0].size = table_start;
386                 memreg[1].offset = bar->offset + table_end;
387                 memreg[1].size = bar->size - table_end;
388
389                 RTE_LOG(DEBUG, EAL,
390                         "Trying to map BAR%d that contains the MSI-X "
391                         "table. Trying offsets: "
392                         "0x%04lx:0x%04lx, 0x%04lx:0x%04lx\n", bar_index,
393                         memreg[0].offset, memreg[0].size,
394                         memreg[1].offset, memreg[1].size);
395         } else {
396                 memreg[0].offset = bar->offset;
397                 memreg[0].size = bar->size;
398         }
399
400         /* reserve the address using an inaccessible mapping */
401         bar_addr = mmap(bar->addr, bar->size, 0, MAP_PRIVATE |
402                         MAP_ANONYMOUS | additional_flags, -1, 0);
403         if (bar_addr != MAP_FAILED) {
404                 void *map_addr = NULL;
405                 if (memreg[0].size) {
406                         /* actual map of first part */
407                         map_addr = pci_map_resource(bar_addr, vfio_dev_fd,
408                                                         memreg[0].offset,
409                                                         memreg[0].size,
410                                                         MAP_FIXED);
411                 }
412
413                 /* if there's a second part, try to map it */
414                 if (map_addr != MAP_FAILED
415                         && memreg[1].offset && memreg[1].size) {
416                         void *second_addr = RTE_PTR_ADD(bar_addr,
417                                                         memreg[1].offset -
418                                                         (uintptr_t)bar->offset);
419                         map_addr = pci_map_resource(second_addr,
420                                                         vfio_dev_fd,
421                                                         memreg[1].offset,
422                                                         memreg[1].size,
423                                                         MAP_FIXED);
424                 }
425
426                 if (map_addr == MAP_FAILED || !map_addr) {
427                         munmap(bar_addr, bar->size);
428                         bar_addr = MAP_FAILED;
429                         RTE_LOG(ERR, EAL, "Failed to map pci BAR%d\n",
430                                         bar_index);
431                         return -1;
432                 }
433         } else {
434                 RTE_LOG(ERR, EAL,
435                                 "Failed to create inaccessible mapping for BAR%d\n",
436                                 bar_index);
437                 return -1;
438         }
439
440         bar->addr = bar_addr;
441         return 0;
442 }
443
444 static int
445 pci_vfio_map_resource_primary(struct rte_pci_device *dev)
446 {
447         struct vfio_device_info device_info = { .argsz = sizeof(device_info) };
448         char pci_addr[PATH_MAX] = {0};
449         int vfio_dev_fd;
450         struct rte_pci_addr *loc = &dev->addr;
451         int i, ret;
452         struct mapped_pci_resource *vfio_res = NULL;
453         struct mapped_pci_res_list *vfio_res_list =
454                 RTE_TAILQ_CAST(rte_vfio_tailq.head, mapped_pci_res_list);
455
456         struct pci_map *maps;
457
458         dev->intr_handle.fd = -1;
459         dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
460
461         /* store PCI address string */
462         snprintf(pci_addr, sizeof(pci_addr), PCI_PRI_FMT,
463                         loc->domain, loc->bus, loc->devid, loc->function);
464
465         ret = vfio_setup_device(pci_get_sysfs_path(), pci_addr,
466                                         &vfio_dev_fd, &device_info);
467         if (ret)
468                 return ret;
469
470         /* allocate vfio_res and get region info */
471         vfio_res = rte_zmalloc("VFIO_RES", sizeof(*vfio_res), 0);
472         if (vfio_res == NULL) {
473                 RTE_LOG(ERR, EAL,
474                         "%s(): cannot store uio mmap details\n", __func__);
475                 goto err_vfio_dev_fd;
476         }
477         memcpy(&vfio_res->pci_addr, &dev->addr, sizeof(vfio_res->pci_addr));
478
479         /* get number of registers (up to BAR5) */
480         vfio_res->nb_maps = RTE_MIN((int) device_info.num_regions,
481                         VFIO_PCI_BAR5_REGION_INDEX + 1);
482
483         /* map BARs */
484         maps = vfio_res->maps;
485
486         vfio_res->msix_table.bar_index = -1;
487         /* get MSI-X BAR, if any (we have to know where it is because we can't
488          * easily mmap it when using VFIO)
489          */
490         ret = pci_vfio_get_msix_bar(vfio_dev_fd, &vfio_res->msix_table);
491         if (ret < 0) {
492                 RTE_LOG(ERR, EAL, "  %s cannot get MSI-X BAR number!\n",
493                                 pci_addr);
494                 goto err_vfio_dev_fd;
495         }
496
497         for (i = 0; i < (int) vfio_res->nb_maps; i++) {
498                 struct vfio_region_info reg = { .argsz = sizeof(reg) };
499                 void *bar_addr;
500
501                 reg.index = i;
502
503                 ret = ioctl(vfio_dev_fd, VFIO_DEVICE_GET_REGION_INFO, &reg);
504                 if (ret) {
505                         RTE_LOG(ERR, EAL, "  %s cannot get device region info "
506                                         "error %i (%s)\n", pci_addr, errno, strerror(errno));
507                         goto err_vfio_res;
508                 }
509
510                 /* chk for io port region */
511                 ret = pci_vfio_is_ioport_bar(vfio_dev_fd, i);
512                 if (ret < 0)
513                         goto err_vfio_res;
514                 else if (ret) {
515                         RTE_LOG(INFO, EAL, "Ignore mapping IO port bar(%d)\n",
516                                         i);
517                         continue;
518                 }
519
520                 /* skip non-mmapable BARs */
521                 if ((reg.flags & VFIO_REGION_INFO_FLAG_MMAP) == 0)
522                         continue;
523
524                 /* try mapping somewhere close to the end of hugepages */
525                 if (pci_map_addr == NULL)
526                         pci_map_addr = pci_find_max_end_va();
527
528                 bar_addr = pci_map_addr;
529                 pci_map_addr = RTE_PTR_ADD(bar_addr, (size_t) reg.size);
530
531                 maps[i].addr = bar_addr;
532                 maps[i].offset = reg.offset;
533                 maps[i].size = reg.size;
534                 maps[i].path = NULL; /* vfio doesn't have per-resource paths */
535
536                 ret = pci_vfio_mmap_bar(vfio_dev_fd, vfio_res, i, 0);
537                 if (ret < 0) {
538                         RTE_LOG(ERR, EAL, "  %s mapping BAR%i failed: %s\n",
539                                         pci_addr, i, strerror(errno));
540                         goto err_vfio_res;
541                 }
542
543                 dev->mem_resource[i].addr = maps[i].addr;
544         }
545
546         if (pci_vfio_setup_device(dev, vfio_dev_fd) < 0) {
547                 RTE_LOG(ERR, EAL, "  %s setup device failed\n", pci_addr);
548                 goto err_vfio_res;
549         }
550
551         TAILQ_INSERT_TAIL(vfio_res_list, vfio_res, next);
552
553         return 0;
554 err_vfio_res:
555         rte_free(vfio_res);
556 err_vfio_dev_fd:
557         close(vfio_dev_fd);
558         return -1;
559 }
560
561 static int
562 pci_vfio_map_resource_secondary(struct rte_pci_device *dev)
563 {
564         struct vfio_device_info device_info = { .argsz = sizeof(device_info) };
565         char pci_addr[PATH_MAX] = {0};
566         int vfio_dev_fd;
567         struct rte_pci_addr *loc = &dev->addr;
568         int i, ret;
569         struct mapped_pci_resource *vfio_res = NULL;
570         struct mapped_pci_res_list *vfio_res_list =
571                 RTE_TAILQ_CAST(rte_vfio_tailq.head, mapped_pci_res_list);
572
573         struct pci_map *maps;
574
575         dev->intr_handle.fd = -1;
576         dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
577
578         /* store PCI address string */
579         snprintf(pci_addr, sizeof(pci_addr), PCI_PRI_FMT,
580                         loc->domain, loc->bus, loc->devid, loc->function);
581
582         ret = vfio_setup_device(pci_get_sysfs_path(), pci_addr,
583                                         &vfio_dev_fd, &device_info);
584         if (ret)
585                 return ret;
586
587         /* if we're in a secondary process, just find our tailq entry */
588         TAILQ_FOREACH(vfio_res, vfio_res_list, next) {
589                 if (pci_addr_cmp(&vfio_res->pci_addr,
590                                                  &dev->addr))
591                         continue;
592                 break;
593         }
594         /* if we haven't found our tailq entry, something's wrong */
595         if (vfio_res == NULL) {
596                 RTE_LOG(ERR, EAL, "  %s cannot find TAILQ entry for PCI device!\n",
597                                 pci_addr);
598                 goto err_vfio_dev_fd;
599         }
600
601         /* map BARs */
602         maps = vfio_res->maps;
603
604         for (i = 0; i < (int) vfio_res->nb_maps; i++) {
605                 ret = pci_vfio_mmap_bar(vfio_dev_fd, vfio_res, i, MAP_FIXED);
606                 if (ret < 0) {
607                         RTE_LOG(ERR, EAL, "  %s mapping BAR%i failed: %s\n",
608                                         pci_addr, i, strerror(errno));
609                         goto err_vfio_dev_fd;
610                 }
611
612                 dev->mem_resource[i].addr = maps[i].addr;
613         }
614
615         return 0;
616 err_vfio_dev_fd:
617         close(vfio_dev_fd);
618         return -1;
619 }
620
621 /*
622  * map the PCI resources of a PCI device in virtual memory (VFIO version).
623  * primary and secondary processes follow almost exactly the same path
624  */
625 int
626 pci_vfio_map_resource(struct rte_pci_device *dev)
627 {
628         if (rte_eal_process_type() == RTE_PROC_PRIMARY)
629                 return pci_vfio_map_resource_primary(dev);
630         else
631                 return pci_vfio_map_resource_secondary(dev);
632 }
633
634 int
635 pci_vfio_unmap_resource(struct rte_pci_device *dev)
636 {
637         char pci_addr[PATH_MAX] = {0};
638         struct rte_pci_addr *loc = &dev->addr;
639         int i, ret;
640         struct mapped_pci_resource *vfio_res = NULL;
641         struct mapped_pci_res_list *vfio_res_list;
642
643         struct pci_map *maps;
644
645         /* store PCI address string */
646         snprintf(pci_addr, sizeof(pci_addr), PCI_PRI_FMT,
647                         loc->domain, loc->bus, loc->devid, loc->function);
648
649
650         if (close(dev->intr_handle.fd) < 0) {
651                 RTE_LOG(INFO, EAL, "Error when closing eventfd file descriptor for %s\n",
652                         pci_addr);
653                 return -1;
654         }
655
656         if (pci_vfio_set_bus_master(dev->intr_handle.vfio_dev_fd, false)) {
657                 RTE_LOG(ERR, EAL, "  %s cannot unset bus mastering for PCI device!\n",
658                                 pci_addr);
659                 return -1;
660         }
661
662         ret = vfio_release_device(pci_get_sysfs_path(), pci_addr,
663                                   dev->intr_handle.vfio_dev_fd);
664         if (ret < 0) {
665                 RTE_LOG(ERR, EAL,
666                         "%s(): cannot release device\n", __func__);
667                 return ret;
668         }
669
670         vfio_res_list = RTE_TAILQ_CAST(rte_vfio_tailq.head, mapped_pci_res_list);
671         /* Get vfio_res */
672         TAILQ_FOREACH(vfio_res, vfio_res_list, next) {
673                 if (memcmp(&vfio_res->pci_addr, &dev->addr, sizeof(dev->addr)))
674                         continue;
675                 break;
676         }
677         /* if we haven't found our tailq entry, something's wrong */
678         if (vfio_res == NULL) {
679                 RTE_LOG(ERR, EAL, "  %s cannot find TAILQ entry for PCI device!\n",
680                                 pci_addr);
681                 return -1;
682         }
683
684         /* unmap BARs */
685         maps = vfio_res->maps;
686
687         RTE_LOG(INFO, EAL, "Releasing pci mapped resource for %s\n",
688                 pci_addr);
689         for (i = 0; i < (int) vfio_res->nb_maps; i++) {
690
691                 /*
692                  * We do not need to be aware of MSI-X table BAR mappings as
693                  * when mapping. Just using current maps array is enough
694                  */
695                 if (maps[i].addr) {
696                         RTE_LOG(INFO, EAL, "Calling pci_unmap_resource for %s at %p\n",
697                                 pci_addr, maps[i].addr);
698                         pci_unmap_resource(maps[i].addr, maps[i].size);
699                 }
700         }
701
702         TAILQ_REMOVE(vfio_res_list, vfio_res, next);
703
704         return 0;
705 }
706
707 int
708 pci_vfio_ioport_map(struct rte_pci_device *dev, int bar,
709                     struct rte_pci_ioport *p)
710 {
711         if (bar < VFIO_PCI_BAR0_REGION_INDEX ||
712             bar > VFIO_PCI_BAR5_REGION_INDEX) {
713                 RTE_LOG(ERR, EAL, "invalid bar (%d)!\n", bar);
714                 return -1;
715         }
716
717         p->dev = dev;
718         p->base = VFIO_GET_REGION_ADDR(bar);
719         return 0;
720 }
721
722 void
723 pci_vfio_ioport_read(struct rte_pci_ioport *p,
724                      void *data, size_t len, off_t offset)
725 {
726         const struct rte_intr_handle *intr_handle = &p->dev->intr_handle;
727
728         if (pread64(intr_handle->vfio_dev_fd, data,
729                     len, p->base + offset) <= 0)
730                 RTE_LOG(ERR, EAL,
731                         "Can't read from PCI bar (%" PRIu64 ") : offset (%x)\n",
732                         VFIO_GET_REGION_IDX(p->base), (int)offset);
733 }
734
735 void
736 pci_vfio_ioport_write(struct rte_pci_ioport *p,
737                       const void *data, size_t len, off_t offset)
738 {
739         const struct rte_intr_handle *intr_handle = &p->dev->intr_handle;
740
741         if (pwrite64(intr_handle->vfio_dev_fd, data,
742                      len, p->base + offset) <= 0)
743                 RTE_LOG(ERR, EAL,
744                         "Can't write to PCI bar (%" PRIu64 ") : offset (%x)\n",
745                         VFIO_GET_REGION_IDX(p->base), (int)offset);
746 }
747
748 int
749 pci_vfio_ioport_unmap(struct rte_pci_ioport *p)
750 {
751         RTE_SET_USED(p);
752         return -1;
753 }
754
755 int
756 pci_vfio_is_enabled(void)
757 {
758         return vfio_is_enabled("vfio_pci");
759 }
760 #endif