867467b4ce3bad7c18fb1c8aa25abd5d86dfac0e
[dpdk.git] / lib / librte_eal / linuxapp / eal / eal_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
41 #include <rte_log.h>
42 #include <rte_pci.h>
43 #include <rte_tailq.h>
44 #include <rte_eal_memconfig.h>
45 #include <rte_malloc.h>
46
47 #include "eal_filesystem.h"
48 #include "eal_pci_init.h"
49 #include "eal_vfio.h"
50
51 /**
52  * @file
53  * PCI probing under linux (VFIO version)
54  *
55  * This code tries to determine if the PCI device is bound to VFIO driver,
56  * and initialize it (map BARs, set up interrupts) if that's the case.
57  *
58  * This file is only compiled if CONFIG_RTE_EAL_VFIO is set to "y".
59  */
60
61 #ifdef VFIO_PRESENT
62
63 #define VFIO_DIR "/dev/vfio"
64 #define VFIO_CONTAINER_PATH "/dev/vfio/vfio"
65 #define VFIO_GROUP_FMT "/dev/vfio/%u"
66 #define VFIO_GET_REGION_ADDR(x) ((uint64_t) x << 40ULL)
67
68 /* per-process VFIO config */
69 static struct vfio_config vfio_cfg;
70
71 /* get PCI BAR number where MSI-X interrupts are */
72 static int
73 pci_vfio_get_msix_bar(int fd, int *msix_bar)
74 {
75         int ret;
76         uint32_t reg;
77         uint8_t cap_id, cap_offset;
78
79         /* read PCI capability pointer from config space */
80         ret = pread64(fd, &reg, sizeof(reg),
81                         VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
82                         PCI_CAPABILITY_LIST);
83         if (ret != sizeof(reg)) {
84                 RTE_LOG(ERR, EAL, "Cannot read capability pointer from PCI "
85                                 "config space!\n");
86                 return -1;
87         }
88
89         /* we need first byte */
90         cap_offset = reg & 0xFF;
91
92         while (cap_offset) {
93
94                 /* read PCI capability ID */
95                 ret = pread64(fd, &reg, sizeof(reg),
96                                 VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
97                                 cap_offset);
98                 if (ret != sizeof(reg)) {
99                         RTE_LOG(ERR, EAL, "Cannot read capability ID from PCI "
100                                         "config space!\n");
101                         return -1;
102                 }
103
104                 /* we need first byte */
105                 cap_id = reg & 0xFF;
106
107                 /* if we haven't reached MSI-X, check next capability */
108                 if (cap_id != PCI_CAP_ID_MSIX) {
109                         ret = pread64(fd, &reg, sizeof(reg),
110                                         VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
111                                         cap_offset);
112                         if (ret != sizeof(reg)) {
113                                 RTE_LOG(ERR, EAL, "Cannot read capability pointer from PCI "
114                                                 "config space!\n");
115                                 return -1;
116                         }
117
118                         /* we need second byte */
119                         cap_offset = (reg & 0xFF00) >> 8;
120
121                         continue;
122                 }
123                 /* else, read table offset */
124                 else {
125                         /* table offset resides in the next 4 bytes */
126                         ret = pread64(fd, &reg, sizeof(reg),
127                                         VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
128                                         cap_offset + 4);
129                         if (ret != sizeof(reg)) {
130                                 RTE_LOG(ERR, EAL, "Cannot read table offset from PCI config "
131                                                 "space!\n");
132                                 return -1;
133                         }
134
135                         *msix_bar = reg & RTE_PCI_MSIX_TABLE_BIR;
136
137                         return 0;
138                 }
139         }
140         return 0;
141 }
142
143 /* set PCI bus mastering */
144 static int
145 pci_vfio_set_bus_master(int dev_fd)
146 {
147         uint16_t reg;
148         int ret;
149
150         ret = pread64(dev_fd, &reg, sizeof(reg),
151                         VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
152                         PCI_COMMAND);
153         if (ret != sizeof(reg)) {
154                 RTE_LOG(ERR, EAL, "Cannot read command from PCI config space!\n");
155                 return -1;
156         }
157
158         /* set the master bit */
159         reg |= PCI_COMMAND_MASTER;
160
161         ret = pwrite64(dev_fd, &reg, sizeof(reg),
162                         VFIO_GET_REGION_ADDR(VFIO_PCI_CONFIG_REGION_INDEX) +
163                         PCI_COMMAND);
164
165         if (ret != sizeof(reg)) {
166                 RTE_LOG(ERR, EAL, "Cannot write command to PCI config space!\n");
167                 return -1;
168         }
169
170         return 0;
171 }
172
173 /* set up DMA mappings */
174 static int
175 pci_vfio_setup_dma_maps(int vfio_container_fd)
176 {
177         const struct rte_memseg *ms = rte_eal_get_physmem_layout();
178         int i, ret;
179
180         ret = ioctl(vfio_container_fd, VFIO_SET_IOMMU,
181                         VFIO_TYPE1_IOMMU);
182         if (ret) {
183                 RTE_LOG(ERR, EAL, "  cannot set IOMMU type!\n");
184                 return -1;
185         }
186
187         /* map all DPDK segments for DMA. use 1:1 PA to IOVA mapping */
188         for (i = 0; i < RTE_MAX_MEMSEG; i++) {
189                 struct vfio_iommu_type1_dma_map dma_map;
190
191                 if (ms[i].addr == NULL)
192                         break;
193
194                 memset(&dma_map, 0, sizeof(dma_map));
195                 dma_map.argsz = sizeof(struct vfio_iommu_type1_dma_map);
196                 dma_map.vaddr = ms[i].addr_64;
197                 dma_map.size = ms[i].len;
198                 dma_map.iova = ms[i].phys_addr;
199                 dma_map.flags = VFIO_DMA_MAP_FLAG_READ | VFIO_DMA_MAP_FLAG_WRITE;
200
201                 ret = ioctl(vfio_container_fd, VFIO_IOMMU_MAP_DMA, &dma_map);
202
203                 if (ret) {
204                         RTE_LOG(ERR, EAL, "  cannot set up DMA remapping!\n");
205                         return -1;
206                 }
207         }
208
209         return 0;
210 }
211
212 /* set up interrupt support (but not enable interrupts) */
213 static int
214 pci_vfio_setup_interrupts(struct rte_pci_device *dev, int vfio_dev_fd)
215 {
216         int i, ret, intr_idx;
217
218         /* default to invalid index */
219         intr_idx = VFIO_PCI_NUM_IRQS;
220
221         /* get interrupt type from internal config (MSI-X by default, can be
222          * overriden from the command line
223          */
224         switch (internal_config.vfio_intr_mode) {
225         case RTE_INTR_MODE_MSIX:
226                 intr_idx = VFIO_PCI_MSIX_IRQ_INDEX;
227                 break;
228         case RTE_INTR_MODE_MSI:
229                 intr_idx = VFIO_PCI_MSI_IRQ_INDEX;
230                 break;
231         case RTE_INTR_MODE_LEGACY:
232                 intr_idx = VFIO_PCI_INTX_IRQ_INDEX;
233                 break;
234         /* don't do anything if we want to automatically determine interrupt type */
235         case RTE_INTR_MODE_NONE:
236                 break;
237         default:
238                 RTE_LOG(ERR, EAL, "  unknown default interrupt type!\n");
239                 return -1;
240         }
241
242         /* start from MSI-X interrupt type */
243         for (i = VFIO_PCI_MSIX_IRQ_INDEX; i >= 0; i--) {
244                 struct vfio_irq_info irq = { .argsz = sizeof(irq) };
245                 int fd = -1;
246
247                 /* skip interrupt modes we don't want */
248                 if (internal_config.vfio_intr_mode != RTE_INTR_MODE_NONE &&
249                                 i != intr_idx)
250                         continue;
251
252                 irq.index = i;
253
254                 ret = ioctl(vfio_dev_fd, VFIO_DEVICE_GET_IRQ_INFO, &irq);
255                 if (ret < 0) {
256                         RTE_LOG(ERR, EAL, "  cannot get IRQ info!\n");
257                         return -1;
258                 }
259
260                 /* if this vector cannot be used with eventfd, fail if we explicitly
261                  * specified interrupt type, otherwise continue */
262                 if ((irq.flags & VFIO_IRQ_INFO_EVENTFD) == 0) {
263                         if (internal_config.vfio_intr_mode != RTE_INTR_MODE_NONE) {
264                                 RTE_LOG(ERR, EAL,
265                                                 "  interrupt vector does not support eventfd!\n");
266                                 return -1;
267                         } else
268                                 continue;
269                 }
270
271                 /* set up an eventfd for interrupts */
272                 fd = eventfd(0, 0);
273                 if (fd < 0) {
274                         RTE_LOG(ERR, EAL, "  cannot set up eventfd!\n");
275                         return -1;
276                 }
277
278                 dev->intr_handle.fd = fd;
279                 dev->intr_handle.vfio_dev_fd = vfio_dev_fd;
280
281                 switch (i) {
282                 case VFIO_PCI_MSIX_IRQ_INDEX:
283                         internal_config.vfio_intr_mode = RTE_INTR_MODE_MSIX;
284                         dev->intr_handle.type = RTE_INTR_HANDLE_VFIO_MSIX;
285                         break;
286                 case VFIO_PCI_MSI_IRQ_INDEX:
287                         internal_config.vfio_intr_mode = RTE_INTR_MODE_MSI;
288                         dev->intr_handle.type = RTE_INTR_HANDLE_VFIO_MSI;
289                         break;
290                 case VFIO_PCI_INTX_IRQ_INDEX:
291                         internal_config.vfio_intr_mode = RTE_INTR_MODE_LEGACY;
292                         dev->intr_handle.type = RTE_INTR_HANDLE_VFIO_LEGACY;
293                         break;
294                 default:
295                         RTE_LOG(ERR, EAL, "  unknown interrupt type!\n");
296                         return -1;
297                 }
298
299                 return 0;
300         }
301
302         /* if we're here, we haven't found a suitable interrupt vector */
303         return -1;
304 }
305
306 /* open container fd or get an existing one */
307 static int
308 pci_vfio_get_container_fd(void)
309 {
310         int ret, vfio_container_fd;
311
312         /* if we're in a primary process, try to open the container */
313         if (internal_config.process_type == RTE_PROC_PRIMARY) {
314                 vfio_container_fd = open(VFIO_CONTAINER_PATH, O_RDWR);
315                 if (vfio_container_fd < 0) {
316                         RTE_LOG(ERR, EAL, "  cannot open VFIO container!\n");
317                         return -1;
318                 }
319
320                 /* check VFIO API version */
321                 ret = ioctl(vfio_container_fd, VFIO_GET_API_VERSION);
322                 if (ret != VFIO_API_VERSION) {
323                         RTE_LOG(ERR, EAL, "  unknown VFIO API version!\n");
324                         close(vfio_container_fd);
325                         return -1;
326                 }
327
328                 /* check if we support IOMMU type 1 */
329                 ret = ioctl(vfio_container_fd, VFIO_CHECK_EXTENSION, VFIO_TYPE1_IOMMU);
330                 if (!ret) {
331                         RTE_LOG(ERR, EAL, "  unknown IOMMU driver!\n");
332                         close(vfio_container_fd);
333                         return -1;
334                 }
335
336                 return vfio_container_fd;
337         }
338
339         return -1;
340 }
341
342 /* open group fd or get an existing one */
343 static int
344 pci_vfio_get_group_fd(int iommu_group_no)
345 {
346         int i;
347         int vfio_group_fd;
348         char filename[PATH_MAX];
349
350         /* check if we already have the group descriptor open */
351         for (i = 0; i < vfio_cfg.vfio_group_idx; i++)
352                 if (vfio_cfg.vfio_groups[i].group_no == iommu_group_no)
353                         return vfio_cfg.vfio_groups[i].fd;
354
355         /* if primary, try to open the group */
356         if (internal_config.process_type == RTE_PROC_PRIMARY) {
357                 rte_snprintf(filename, sizeof(filename),
358                                  VFIO_GROUP_FMT, iommu_group_no);
359                 vfio_group_fd = open(filename, O_RDWR);
360                 if (vfio_group_fd < 0) {
361                         /* if file not found, it's not an error */
362                         if (errno != ENOENT) {
363                                 RTE_LOG(ERR, EAL, "Cannot open %s: %s\n", filename,
364                                                 strerror(errno));
365                                 return -1;
366                         }
367                         return 0;
368                 }
369
370                 /* if the fd is valid, create a new group for it */
371                 if (vfio_cfg.vfio_group_idx == VFIO_MAX_GROUPS) {
372                         RTE_LOG(ERR, EAL, "Maximum number of VFIO groups reached!\n");
373                         return -1;
374                 }
375                 vfio_cfg.vfio_groups[vfio_cfg.vfio_group_idx].group_no = iommu_group_no;
376                 vfio_cfg.vfio_groups[vfio_cfg.vfio_group_idx].fd = vfio_group_fd;
377                 return vfio_group_fd;
378         }
379         return -1;
380 }
381
382 /* parse IOMMU group number for a PCI device
383  * returns -1 for errors, 0 for non-existent group */
384 static int
385 pci_vfio_get_group_no(const char *pci_addr)
386 {
387         char linkname[PATH_MAX];
388         char filename[PATH_MAX];
389         char *tok[16], *group_tok, *end;
390         int ret, iommu_group_no;
391
392         memset(linkname, 0, sizeof(linkname));
393         memset(filename, 0, sizeof(filename));
394
395         /* try to find out IOMMU group for this device */
396         rte_snprintf(linkname, sizeof(linkname),
397                          SYSFS_PCI_DEVICES "/%s/iommu_group", pci_addr);
398
399         ret = readlink(linkname, filename, sizeof(filename));
400
401         /* if the link doesn't exist, no VFIO for us */
402         if (ret < 0)
403                 return 0;
404
405         ret = rte_strsplit(filename, sizeof(filename),
406                         tok, RTE_DIM(tok), '/');
407
408         if (ret <= 0) {
409                 RTE_LOG(ERR, EAL, "  %s cannot get IOMMU group\n", pci_addr);
410                 return -1;
411         }
412
413         /* IOMMU group is always the last token */
414         errno = 0;
415         group_tok = tok[ret - 1];
416         end = group_tok;
417         iommu_group_no = strtol(group_tok, &end, 10);
418         if ((end != group_tok && *end != '\0') || errno != 0) {
419                 RTE_LOG(ERR, EAL, "  %s error parsing IOMMU number!\n", pci_addr);
420                 return -1;
421         }
422
423         return iommu_group_no;
424 }
425
426 static void
427 clear_current_group(void)
428 {
429         vfio_cfg.vfio_groups[vfio_cfg.vfio_group_idx].group_no = 0;
430         vfio_cfg.vfio_groups[vfio_cfg.vfio_group_idx].fd = -1;
431 }
432
433
434 /*
435  * map the PCI resources of a PCI device in virtual memory (VFIO version).
436  * primary and secondary processes follow almost exactly the same path
437  */
438 int
439 pci_vfio_map_resource(struct rte_pci_device *dev)
440 {
441         struct vfio_group_status group_status = {
442                         .argsz = sizeof(group_status)
443         };
444         struct vfio_device_info device_info = { .argsz = sizeof(device_info) };
445         int vfio_group_fd, vfio_dev_fd;
446         int iommu_group_no;
447         char pci_addr[PATH_MAX] = {0};
448         struct rte_pci_addr *loc = &dev->addr;
449         int i, ret, msix_bar;
450         struct mapped_pci_resource *vfio_res = NULL;
451         struct pci_map *maps;
452
453         dev->intr_handle.fd = -1;
454         dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
455
456         /* store PCI address string */
457         rte_snprintf(pci_addr, sizeof(pci_addr), PCI_PRI_FMT,
458                         loc->domain, loc->bus, loc->devid, loc->function);
459
460         /* get container fd (needs to be done only once per initialization) */
461         if (vfio_cfg.vfio_container_fd == -1) {
462                 int vfio_container_fd = pci_vfio_get_container_fd();
463                 if (vfio_container_fd < 0) {
464                         RTE_LOG(ERR, EAL, "  %s cannot open VFIO container!\n", pci_addr);
465                         return -1;
466                 }
467
468                 vfio_cfg.vfio_container_fd = vfio_container_fd;
469         }
470
471         /* get group number */
472         iommu_group_no = pci_vfio_get_group_no(pci_addr);
473
474         /* if 0, group doesn't exist */
475         if (iommu_group_no == 0) {
476                 RTE_LOG(WARNING, EAL, "  %s not managed by VFIO driver, skipping\n",
477                                 pci_addr);
478                 return 1;
479         }
480         /* if negative, something failed */
481         else if (iommu_group_no < 0)
482                 return -1;
483
484         /* get the actual group fd */
485         vfio_group_fd = pci_vfio_get_group_fd(iommu_group_no);
486         if (vfio_group_fd < 0)
487                 return -1;
488
489         /* store group fd */
490         vfio_cfg.vfio_groups[vfio_cfg.vfio_group_idx].group_no = iommu_group_no;
491         vfio_cfg.vfio_groups[vfio_cfg.vfio_group_idx].fd = vfio_group_fd;
492
493         /* if group_fd == 0, that means the device isn't managed by VFIO */
494         if (vfio_group_fd == 0) {
495                 RTE_LOG(WARNING, EAL, "  %s not managed by VFIO driver, skipping\n",
496                                 pci_addr);
497                 /* we store 0 as group fd to distinguish between existing but
498                  * unbound VFIO groups, and groups that don't exist at all.
499                  */
500                 vfio_cfg.vfio_group_idx++;
501                 return 1;
502         }
503
504         /*
505          * at this point, we know at least one port on this device is bound to VFIO,
506          * so we can proceed to try and set this particular port up
507          */
508
509         /* check if the group is viable */
510         ret = ioctl(vfio_group_fd, VFIO_GROUP_GET_STATUS, &group_status);
511         if (ret) {
512                 RTE_LOG(ERR, EAL, "  %s cannot get group status!\n", pci_addr);
513                 close(vfio_group_fd);
514                 clear_current_group();
515                 return -1;
516         } else if (!(group_status.flags & VFIO_GROUP_FLAGS_VIABLE)) {
517                 RTE_LOG(ERR, EAL, "  %s VFIO group is not viable!\n", pci_addr);
518                 close(vfio_group_fd);
519                 clear_current_group();
520                 return -1;
521         }
522
523         /*
524          * at this point, we know that this group is viable (meaning, all devices
525          * are either bound to VFIO or not bound to anything)
526          */
527
528         /* check if group does not have a container yet */
529         if (!(group_status.flags & VFIO_GROUP_FLAGS_CONTAINER_SET)) {
530
531                 /* add group to a container */
532                 ret = ioctl(vfio_group_fd, VFIO_GROUP_SET_CONTAINER,
533                                 &vfio_cfg.vfio_container_fd);
534                 if (ret) {
535                         RTE_LOG(ERR, EAL, "  %s cannot add VFIO group to container!\n",
536                                         pci_addr);
537                         close(vfio_group_fd);
538                         clear_current_group();
539                         return -1;
540                 }
541                 /*
542                  * at this point we know that this group has been successfully
543                  * initialized, so we increment vfio_group_idx to indicate that we can
544                  * add new groups.
545                  */
546                 vfio_cfg.vfio_group_idx++;
547         }
548
549         /*
550          * set up DMA mappings for container
551          *
552          * needs to be done only once, only when at least one group is assigned to
553          * a container and only in primary process
554          */
555         if (internal_config.process_type == RTE_PROC_PRIMARY &&
556                         vfio_cfg.vfio_container_has_dma == 0) {
557                 ret = pci_vfio_setup_dma_maps(vfio_cfg.vfio_container_fd);
558                 if (ret) {
559                         RTE_LOG(ERR, EAL, "  %s DMA remapping failed!\n", pci_addr);
560                         return -1;
561                 }
562                 vfio_cfg.vfio_container_has_dma = 1;
563         }
564
565         /* get a file descriptor for the device */
566         vfio_dev_fd = ioctl(vfio_group_fd, VFIO_GROUP_GET_DEVICE_FD, pci_addr);
567         if (vfio_dev_fd < 0) {
568                 /* if we cannot get a device fd, this simply means that this
569                  * particular port is not bound to VFIO
570                  */
571                 RTE_LOG(WARNING, EAL, "  %s not managed by VFIO driver, skipping\n",
572                                 pci_addr);
573                 return 1;
574         }
575
576         /* test and setup the device */
577         ret = ioctl(vfio_dev_fd, VFIO_DEVICE_GET_INFO, &device_info);
578         if (ret) {
579                 RTE_LOG(ERR, EAL, "  %s cannot get device info!\n", pci_addr);
580                 close(vfio_dev_fd);
581                 return -1;
582         }
583
584         /* get MSI-X BAR, if any (we have to know where it is because we can't
585          * mmap it when using VFIO) */
586         msix_bar = -1;
587         ret = pci_vfio_get_msix_bar(vfio_dev_fd, &msix_bar);
588         if (ret < 0) {
589                 RTE_LOG(ERR, EAL, "  %s cannot get MSI-X BAR number!\n", pci_addr);
590                 close(vfio_dev_fd);
591                 return -1;
592         }
593
594         /* if we're in a primary process, allocate vfio_res and get region info */
595         if (internal_config.process_type == RTE_PROC_PRIMARY) {
596                 vfio_res = rte_zmalloc("VFIO_RES", sizeof(*vfio_res), 0);
597                 if (vfio_res == NULL) {
598                         RTE_LOG(ERR, EAL,
599                                 "%s(): cannot store uio mmap details\n", __func__);
600                         close(vfio_dev_fd);
601                         return -1;
602                 }
603                 memcpy(&vfio_res->pci_addr, &dev->addr, sizeof(vfio_res->pci_addr));
604
605                 /* get number of registers (up to BAR5) */
606                 vfio_res->nb_maps = RTE_MIN((int) device_info.num_regions,
607                                 VFIO_PCI_BAR5_REGION_INDEX + 1);
608         }
609
610         /* map BARs */
611         maps = vfio_res->maps;
612
613         for (i = 0; i < (int) vfio_res->nb_maps; i++) {
614                 struct vfio_region_info reg = { .argsz = sizeof(reg) };
615                 void *bar_addr;
616
617                 reg.index = i;
618
619                 ret = ioctl(vfio_dev_fd, VFIO_DEVICE_GET_REGION_INFO, &reg);
620
621                 if (ret) {
622                         RTE_LOG(ERR, EAL, "  %s cannot get device region info!\n",
623                                         pci_addr);
624                         close(vfio_dev_fd);
625                         if (internal_config.process_type == RTE_PROC_PRIMARY)
626                                 rte_free(vfio_res);
627                         return -1;
628                 }
629
630                 /* skip non-mmapable BARs */
631                 if ((reg.flags & VFIO_REGION_INFO_FLAG_MMAP) == 0)
632                         continue;
633
634                 /* skip MSI-X BAR */
635                 if (i == msix_bar)
636                         continue;
637
638                 bar_addr = pci_map_resource(maps[i].addr, vfio_dev_fd, reg.offset,
639                                 reg.size);
640
641                 if (bar_addr == NULL) {
642                         RTE_LOG(ERR, EAL, "  %s mapping BAR%i failed: %s\n", pci_addr, i,
643                                         strerror(errno));
644                         close(vfio_dev_fd);
645                         if (internal_config.process_type == RTE_PROC_PRIMARY)
646                                 rte_free(vfio_res);
647                         return -1;
648                 }
649
650                 maps[i].addr = bar_addr;
651                 maps[i].offset = reg.offset;
652                 maps[i].size = reg.size;
653                 dev->mem_resource[i].addr = bar_addr;
654         }
655
656         /* if secondary process, do not set up interrupts */
657         if (internal_config.process_type == RTE_PROC_PRIMARY) {
658                 if (pci_vfio_setup_interrupts(dev, vfio_dev_fd) != 0) {
659                         RTE_LOG(ERR, EAL, "  %s error setting up interrupts!\n", pci_addr);
660                         close(vfio_dev_fd);
661                         rte_free(vfio_res);
662                         return -1;
663                 }
664
665                 /* set bus mastering for the device */
666                 if (pci_vfio_set_bus_master(vfio_dev_fd)) {
667                         RTE_LOG(ERR, EAL, "  %s cannot set up bus mastering!\n", pci_addr);
668                         close(vfio_dev_fd);
669                         rte_free(vfio_res);
670                         return -1;
671                 }
672
673                 /* Reset the device */
674                 ioctl(vfio_dev_fd, VFIO_DEVICE_RESET);
675         }
676
677         if (internal_config.process_type == RTE_PROC_PRIMARY)
678                 TAILQ_INSERT_TAIL(pci_res_list, vfio_res, next);
679
680         return 0;
681 }
682
683 int
684 pci_vfio_enable(void)
685 {
686         /* initialize group list */
687         int i;
688
689         for (i = 0; i < VFIO_MAX_GROUPS; i++) {
690                 vfio_cfg.vfio_groups[i].fd = -1;
691                 vfio_cfg.vfio_groups[i].group_no = -1;
692         }
693         vfio_cfg.vfio_container_fd = -1;
694
695         /* check if we have VFIO driver enabled */
696         if (access(VFIO_DIR, F_OK) == 0)
697                 vfio_cfg.vfio_enabled = 1;
698         else
699                 RTE_LOG(INFO, EAL, "VFIO driver not loaded or wrong permissions\n");
700
701         return 0;
702 }
703
704 int
705 pci_vfio_is_enabled(void)
706 {
707         return vfio_cfg.vfio_enabled;
708 }
709 #endif