Imported Upstream version 16.07-rc1
[deb_dpdk.git] / lib / librte_eal / linuxapp / eal / eal_pci.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 <dirent.h>
36
37 #include <rte_log.h>
38 #include <rte_pci.h>
39 #include <rte_eal_memconfig.h>
40 #include <rte_malloc.h>
41 #include <rte_devargs.h>
42 #include <rte_memcpy.h>
43
44 #include "eal_filesystem.h"
45 #include "eal_private.h"
46 #include "eal_pci_init.h"
47
48 /**
49  * @file
50  * PCI probing under linux
51  *
52  * This code is used to simulate a PCI probe by parsing information in sysfs.
53  * When a registered device matches a driver, it is then initialized with
54  * IGB_UIO driver (or doesn't initialize, if the device wasn't bound to it).
55  */
56
57 /* unbind kernel driver for this device */
58 int
59 pci_unbind_kernel_driver(struct rte_pci_device *dev)
60 {
61         int n;
62         FILE *f;
63         char filename[PATH_MAX];
64         char buf[BUFSIZ];
65         struct rte_pci_addr *loc = &dev->addr;
66
67         /* open /sys/bus/pci/devices/AAAA:BB:CC.D/driver */
68         snprintf(filename, sizeof(filename),
69                 "%s/" PCI_PRI_FMT "/driver/unbind", pci_get_sysfs_path(),
70                 loc->domain, loc->bus, loc->devid, loc->function);
71
72         f = fopen(filename, "w");
73         if (f == NULL) /* device was not bound */
74                 return 0;
75
76         n = snprintf(buf, sizeof(buf), PCI_PRI_FMT "\n",
77                      loc->domain, loc->bus, loc->devid, loc->function);
78         if ((n < 0) || (n >= (int)sizeof(buf))) {
79                 RTE_LOG(ERR, EAL, "%s(): snprintf failed\n", __func__);
80                 goto error;
81         }
82         if (fwrite(buf, n, 1, f) == 0) {
83                 RTE_LOG(ERR, EAL, "%s(): could not write to %s\n", __func__,
84                                 filename);
85                 goto error;
86         }
87
88         fclose(f);
89         return 0;
90
91 error:
92         fclose(f);
93         return -1;
94 }
95
96 static int
97 pci_get_kernel_driver_by_path(const char *filename, char *dri_name)
98 {
99         int count;
100         char path[PATH_MAX];
101         char *name;
102
103         if (!filename || !dri_name)
104                 return -1;
105
106         count = readlink(filename, path, PATH_MAX);
107         if (count >= PATH_MAX)
108                 return -1;
109
110         /* For device does not have a driver */
111         if (count < 0)
112                 return 1;
113
114         path[count] = '\0';
115
116         name = strrchr(path, '/');
117         if (name) {
118                 strncpy(dri_name, name + 1, strlen(name + 1) + 1);
119                 return 0;
120         }
121
122         return -1;
123 }
124
125 /* Map pci device */
126 int
127 rte_eal_pci_map_device(struct rte_pci_device *dev)
128 {
129         int ret = -1;
130
131         /* try mapping the NIC resources using VFIO if it exists */
132         switch (dev->kdrv) {
133         case RTE_KDRV_VFIO:
134 #ifdef VFIO_PRESENT
135                 if (pci_vfio_is_enabled())
136                         ret = pci_vfio_map_resource(dev);
137 #endif
138                 break;
139         case RTE_KDRV_IGB_UIO:
140         case RTE_KDRV_UIO_GENERIC:
141                 /* map resources for devices that use uio */
142                 ret = pci_uio_map_resource(dev);
143                 break;
144         default:
145                 RTE_LOG(DEBUG, EAL,
146                         "  Not managed by a supported kernel driver, skipped\n");
147                 ret = 1;
148                 break;
149         }
150
151         return ret;
152 }
153
154 /* Unmap pci device */
155 void
156 rte_eal_pci_unmap_device(struct rte_pci_device *dev)
157 {
158         /* try unmapping the NIC resources using VFIO if it exists */
159         switch (dev->kdrv) {
160         case RTE_KDRV_VFIO:
161                 RTE_LOG(ERR, EAL, "Hotplug doesn't support vfio yet\n");
162                 break;
163         case RTE_KDRV_IGB_UIO:
164         case RTE_KDRV_UIO_GENERIC:
165                 /* unmap resources for devices that use uio */
166                 pci_uio_unmap_resource(dev);
167                 break;
168         default:
169                 RTE_LOG(DEBUG, EAL,
170                         "  Not managed by a supported kernel driver, skipped\n");
171                 break;
172         }
173 }
174
175 void *
176 pci_find_max_end_va(void)
177 {
178         const struct rte_memseg *seg = rte_eal_get_physmem_layout();
179         const struct rte_memseg *last = seg;
180         unsigned i = 0;
181
182         for (i = 0; i < RTE_MAX_MEMSEG; i++, seg++) {
183                 if (seg->addr == NULL)
184                         break;
185
186                 if (seg->addr > last->addr)
187                         last = seg;
188
189         }
190         return RTE_PTR_ADD(last->addr, last->len);
191 }
192
193 /* parse one line of the "resource" sysfs file (note that the 'line'
194  * string is modified)
195  */
196 int
197 pci_parse_one_sysfs_resource(char *line, size_t len, uint64_t *phys_addr,
198         uint64_t *end_addr, uint64_t *flags)
199 {
200         union pci_resource_info {
201                 struct {
202                         char *phys_addr;
203                         char *end_addr;
204                         char *flags;
205                 };
206                 char *ptrs[PCI_RESOURCE_FMT_NVAL];
207         } res_info;
208
209         if (rte_strsplit(line, len, res_info.ptrs, 3, ' ') != 3) {
210                 RTE_LOG(ERR, EAL,
211                         "%s(): bad resource format\n", __func__);
212                 return -1;
213         }
214         errno = 0;
215         *phys_addr = strtoull(res_info.phys_addr, NULL, 16);
216         *end_addr = strtoull(res_info.end_addr, NULL, 16);
217         *flags = strtoull(res_info.flags, NULL, 16);
218         if (errno != 0) {
219                 RTE_LOG(ERR, EAL,
220                         "%s(): bad resource format\n", __func__);
221                 return -1;
222         }
223
224         return 0;
225 }
226
227 /* parse the "resource" sysfs file */
228 static int
229 pci_parse_sysfs_resource(const char *filename, struct rte_pci_device *dev)
230 {
231         FILE *f;
232         char buf[BUFSIZ];
233         int i;
234         uint64_t phys_addr, end_addr, flags;
235
236         f = fopen(filename, "r");
237         if (f == NULL) {
238                 RTE_LOG(ERR, EAL, "Cannot open sysfs resource\n");
239                 return -1;
240         }
241
242         for (i = 0; i<PCI_MAX_RESOURCE; i++) {
243
244                 if (fgets(buf, sizeof(buf), f) == NULL) {
245                         RTE_LOG(ERR, EAL,
246                                 "%s(): cannot read resource\n", __func__);
247                         goto error;
248                 }
249                 if (pci_parse_one_sysfs_resource(buf, sizeof(buf), &phys_addr,
250                                 &end_addr, &flags) < 0)
251                         goto error;
252
253                 if (flags & IORESOURCE_MEM) {
254                         dev->mem_resource[i].phys_addr = phys_addr;
255                         dev->mem_resource[i].len = end_addr - phys_addr + 1;
256                         /* not mapped for now */
257                         dev->mem_resource[i].addr = NULL;
258                 }
259         }
260         fclose(f);
261         return 0;
262
263 error:
264         fclose(f);
265         return -1;
266 }
267
268 /* Scan one pci sysfs entry, and fill the devices list from it. */
269 static int
270 pci_scan_one(const char *dirname, uint16_t domain, uint8_t bus,
271              uint8_t devid, uint8_t function)
272 {
273         char filename[PATH_MAX];
274         unsigned long tmp;
275         struct rte_pci_device *dev;
276         char driver[PATH_MAX];
277         int ret;
278
279         dev = malloc(sizeof(*dev));
280         if (dev == NULL)
281                 return -1;
282
283         memset(dev, 0, sizeof(*dev));
284         dev->addr.domain = domain;
285         dev->addr.bus = bus;
286         dev->addr.devid = devid;
287         dev->addr.function = function;
288
289         /* get vendor id */
290         snprintf(filename, sizeof(filename), "%s/vendor", dirname);
291         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
292                 free(dev);
293                 return -1;
294         }
295         dev->id.vendor_id = (uint16_t)tmp;
296
297         /* get device id */
298         snprintf(filename, sizeof(filename), "%s/device", dirname);
299         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
300                 free(dev);
301                 return -1;
302         }
303         dev->id.device_id = (uint16_t)tmp;
304
305         /* get subsystem_vendor id */
306         snprintf(filename, sizeof(filename), "%s/subsystem_vendor",
307                  dirname);
308         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
309                 free(dev);
310                 return -1;
311         }
312         dev->id.subsystem_vendor_id = (uint16_t)tmp;
313
314         /* get subsystem_device id */
315         snprintf(filename, sizeof(filename), "%s/subsystem_device",
316                  dirname);
317         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
318                 free(dev);
319                 return -1;
320         }
321         dev->id.subsystem_device_id = (uint16_t)tmp;
322
323         /* get class_id */
324         snprintf(filename, sizeof(filename), "%s/class",
325                  dirname);
326         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
327                 free(dev);
328                 return -1;
329         }
330         /* the least 24 bits are valid: class, subclass, program interface */
331         dev->id.class_id = (uint32_t)tmp & RTE_CLASS_ANY_ID;
332
333         /* get max_vfs */
334         dev->max_vfs = 0;
335         snprintf(filename, sizeof(filename), "%s/max_vfs", dirname);
336         if (!access(filename, F_OK) &&
337             eal_parse_sysfs_value(filename, &tmp) == 0)
338                 dev->max_vfs = (uint16_t)tmp;
339         else {
340                 /* for non igb_uio driver, need kernel version >= 3.8 */
341                 snprintf(filename, sizeof(filename),
342                          "%s/sriov_numvfs", dirname);
343                 if (!access(filename, F_OK) &&
344                     eal_parse_sysfs_value(filename, &tmp) == 0)
345                         dev->max_vfs = (uint16_t)tmp;
346         }
347
348         /* get numa node */
349         snprintf(filename, sizeof(filename), "%s/numa_node",
350                  dirname);
351         if (access(filename, R_OK) != 0) {
352                 /* if no NUMA support, set default to 0 */
353                 dev->numa_node = 0;
354         } else {
355                 if (eal_parse_sysfs_value(filename, &tmp) < 0) {
356                         free(dev);
357                         return -1;
358                 }
359                 dev->numa_node = tmp;
360         }
361
362         /* parse resources */
363         snprintf(filename, sizeof(filename), "%s/resource", dirname);
364         if (pci_parse_sysfs_resource(filename, dev) < 0) {
365                 RTE_LOG(ERR, EAL, "%s(): cannot parse resource\n", __func__);
366                 free(dev);
367                 return -1;
368         }
369
370         /* parse driver */
371         snprintf(filename, sizeof(filename), "%s/driver", dirname);
372         ret = pci_get_kernel_driver_by_path(filename, driver);
373         if (ret < 0) {
374                 RTE_LOG(ERR, EAL, "Fail to get kernel driver\n");
375                 free(dev);
376                 return -1;
377         }
378
379         if (!ret) {
380                 if (!strcmp(driver, "vfio-pci"))
381                         dev->kdrv = RTE_KDRV_VFIO;
382                 else if (!strcmp(driver, "igb_uio"))
383                         dev->kdrv = RTE_KDRV_IGB_UIO;
384                 else if (!strcmp(driver, "uio_pci_generic"))
385                         dev->kdrv = RTE_KDRV_UIO_GENERIC;
386                 else
387                         dev->kdrv = RTE_KDRV_UNKNOWN;
388         } else
389                 dev->kdrv = RTE_KDRV_NONE;
390
391         /* device is valid, add in list (sorted) */
392         if (TAILQ_EMPTY(&pci_device_list)) {
393                 TAILQ_INSERT_TAIL(&pci_device_list, dev, next);
394         } else {
395                 struct rte_pci_device *dev2;
396                 int ret;
397
398                 TAILQ_FOREACH(dev2, &pci_device_list, next) {
399                         ret = rte_eal_compare_pci_addr(&dev->addr, &dev2->addr);
400                         if (ret > 0)
401                                 continue;
402
403                         if (ret < 0) {
404                                 TAILQ_INSERT_BEFORE(dev2, dev, next);
405                         } else { /* already registered */
406                                 dev2->kdrv = dev->kdrv;
407                                 dev2->max_vfs = dev->max_vfs;
408                                 memmove(dev2->mem_resource, dev->mem_resource,
409                                         sizeof(dev->mem_resource));
410                                 free(dev);
411                         }
412                         return 0;
413                 }
414                 TAILQ_INSERT_TAIL(&pci_device_list, dev, next);
415         }
416
417         return 0;
418 }
419
420 /*
421  * split up a pci address into its constituent parts.
422  */
423 static int
424 parse_pci_addr_format(const char *buf, int bufsize, uint16_t *domain,
425                 uint8_t *bus, uint8_t *devid, uint8_t *function)
426 {
427         /* first split on ':' */
428         union splitaddr {
429                 struct {
430                         char *domain;
431                         char *bus;
432                         char *devid;
433                         char *function;
434                 };
435                 char *str[PCI_FMT_NVAL]; /* last element-separator is "." not ":" */
436         } splitaddr;
437
438         char *buf_copy = strndup(buf, bufsize);
439         if (buf_copy == NULL)
440                 return -1;
441
442         if (rte_strsplit(buf_copy, bufsize, splitaddr.str, PCI_FMT_NVAL, ':')
443                         != PCI_FMT_NVAL - 1)
444                 goto error;
445         /* final split is on '.' between devid and function */
446         splitaddr.function = strchr(splitaddr.devid,'.');
447         if (splitaddr.function == NULL)
448                 goto error;
449         *splitaddr.function++ = '\0';
450
451         /* now convert to int values */
452         errno = 0;
453         *domain = (uint16_t)strtoul(splitaddr.domain, NULL, 16);
454         *bus = (uint8_t)strtoul(splitaddr.bus, NULL, 16);
455         *devid = (uint8_t)strtoul(splitaddr.devid, NULL, 16);
456         *function = (uint8_t)strtoul(splitaddr.function, NULL, 10);
457         if (errno != 0)
458                 goto error;
459
460         free(buf_copy); /* free the copy made with strdup */
461         return 0;
462 error:
463         free(buf_copy);
464         return -1;
465 }
466
467 /*
468  * Scan the content of the PCI bus, and the devices in the devices
469  * list
470  */
471 int
472 rte_eal_pci_scan(void)
473 {
474         struct dirent *e;
475         DIR *dir;
476         char dirname[PATH_MAX];
477         uint16_t domain;
478         uint8_t bus, devid, function;
479
480         dir = opendir(pci_get_sysfs_path());
481         if (dir == NULL) {
482                 RTE_LOG(ERR, EAL, "%s(): opendir failed: %s\n",
483                         __func__, strerror(errno));
484                 return -1;
485         }
486
487         while ((e = readdir(dir)) != NULL) {
488                 if (e->d_name[0] == '.')
489                         continue;
490
491                 if (parse_pci_addr_format(e->d_name, sizeof(e->d_name), &domain,
492                                 &bus, &devid, &function) != 0)
493                         continue;
494
495                 snprintf(dirname, sizeof(dirname), "%s/%s",
496                                 pci_get_sysfs_path(), e->d_name);
497                 if (pci_scan_one(dirname, domain, bus, devid, function) < 0)
498                         goto error;
499         }
500         closedir(dir);
501         return 0;
502
503 error:
504         closedir(dir);
505         return -1;
506 }
507
508 /* Read PCI config space. */
509 int rte_eal_pci_read_config(const struct rte_pci_device *device,
510                             void *buf, size_t len, off_t offset)
511 {
512         const struct rte_intr_handle *intr_handle = &device->intr_handle;
513
514         switch (intr_handle->type) {
515         case RTE_INTR_HANDLE_UIO:
516         case RTE_INTR_HANDLE_UIO_INTX:
517                 return pci_uio_read_config(intr_handle, buf, len, offset);
518
519 #ifdef VFIO_PRESENT
520         case RTE_INTR_HANDLE_VFIO_MSIX:
521         case RTE_INTR_HANDLE_VFIO_MSI:
522         case RTE_INTR_HANDLE_VFIO_LEGACY:
523                 return pci_vfio_read_config(intr_handle, buf, len, offset);
524 #endif
525         default:
526                 RTE_LOG(ERR, EAL,
527                         "Unknown handle type of fd %d\n",
528                                         intr_handle->fd);
529                 return -1;
530         }
531 }
532
533 /* Write PCI config space. */
534 int rte_eal_pci_write_config(const struct rte_pci_device *device,
535                              const void *buf, size_t len, off_t offset)
536 {
537         const struct rte_intr_handle *intr_handle = &device->intr_handle;
538
539         switch (intr_handle->type) {
540         case RTE_INTR_HANDLE_UIO:
541         case RTE_INTR_HANDLE_UIO_INTX:
542                 return pci_uio_write_config(intr_handle, buf, len, offset);
543
544 #ifdef VFIO_PRESENT
545         case RTE_INTR_HANDLE_VFIO_MSIX:
546         case RTE_INTR_HANDLE_VFIO_MSI:
547         case RTE_INTR_HANDLE_VFIO_LEGACY:
548                 return pci_vfio_write_config(intr_handle, buf, len, offset);
549 #endif
550         default:
551                 RTE_LOG(ERR, EAL,
552                         "Unknown handle type of fd %d\n",
553                                         intr_handle->fd);
554                 return -1;
555         }
556 }
557
558 #if defined(RTE_ARCH_X86)
559 static int
560 pci_ioport_map(struct rte_pci_device *dev, int bar __rte_unused,
561                struct rte_pci_ioport *p)
562 {
563         uint16_t start, end;
564         FILE *fp;
565         char *line = NULL;
566         char pci_id[16];
567         int found = 0;
568         size_t linesz;
569
570         snprintf(pci_id, sizeof(pci_id), PCI_PRI_FMT,
571                  dev->addr.domain, dev->addr.bus,
572                  dev->addr.devid, dev->addr.function);
573
574         fp = fopen("/proc/ioports", "r");
575         if (fp == NULL) {
576                 RTE_LOG(ERR, EAL, "%s(): can't open ioports\n", __func__);
577                 return -1;
578         }
579
580         while (getdelim(&line, &linesz, '\n', fp) > 0) {
581                 char *ptr = line;
582                 char *left;
583                 int n;
584
585                 n = strcspn(ptr, ":");
586                 ptr[n] = 0;
587                 left = &ptr[n + 1];
588
589                 while (*left && isspace(*left))
590                         left++;
591
592                 if (!strncmp(left, pci_id, strlen(pci_id))) {
593                         found = 1;
594
595                         while (*ptr && isspace(*ptr))
596                                 ptr++;
597
598                         sscanf(ptr, "%04hx-%04hx", &start, &end);
599
600                         break;
601                 }
602         }
603
604         free(line);
605         fclose(fp);
606
607         if (!found)
608                 return -1;
609
610         dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
611         p->base = start;
612         RTE_LOG(DEBUG, EAL, "PCI Port IO found start=0x%x\n", start);
613
614         return 0;
615 }
616 #endif
617
618 int
619 rte_eal_pci_ioport_map(struct rte_pci_device *dev, int bar,
620                        struct rte_pci_ioport *p)
621 {
622         int ret = -1;
623
624         switch (dev->kdrv) {
625 #ifdef VFIO_PRESENT
626         case RTE_KDRV_VFIO:
627                 if (pci_vfio_is_enabled())
628                         ret = pci_vfio_ioport_map(dev, bar, p);
629                 break;
630 #endif
631         case RTE_KDRV_IGB_UIO:
632                 ret = pci_uio_ioport_map(dev, bar, p);
633                 break;
634         case RTE_KDRV_UIO_GENERIC:
635 #if defined(RTE_ARCH_X86)
636                 ret = pci_ioport_map(dev, bar, p);
637 #else
638                 ret = pci_uio_ioport_map(dev, bar, p);
639 #endif
640                 break;
641         case RTE_KDRV_NONE:
642 #if defined(RTE_ARCH_X86)
643                 ret = pci_ioport_map(dev, bar, p);
644 #endif
645                 break;
646         default:
647                 break;
648         }
649
650         if (!ret)
651                 p->dev = dev;
652
653         return ret;
654 }
655
656 void
657 rte_eal_pci_ioport_read(struct rte_pci_ioport *p,
658                         void *data, size_t len, off_t offset)
659 {
660         switch (p->dev->kdrv) {
661 #ifdef VFIO_PRESENT
662         case RTE_KDRV_VFIO:
663                 pci_vfio_ioport_read(p, data, len, offset);
664                 break;
665 #endif
666         case RTE_KDRV_IGB_UIO:
667                 pci_uio_ioport_read(p, data, len, offset);
668                 break;
669         case RTE_KDRV_UIO_GENERIC:
670                 pci_uio_ioport_read(p, data, len, offset);
671                 break;
672         case RTE_KDRV_NONE:
673 #if defined(RTE_ARCH_X86)
674                 pci_uio_ioport_read(p, data, len, offset);
675 #endif
676                 break;
677         default:
678                 break;
679         }
680 }
681
682 void
683 rte_eal_pci_ioport_write(struct rte_pci_ioport *p,
684                          const void *data, size_t len, off_t offset)
685 {
686         switch (p->dev->kdrv) {
687 #ifdef VFIO_PRESENT
688         case RTE_KDRV_VFIO:
689                 pci_vfio_ioport_write(p, data, len, offset);
690                 break;
691 #endif
692         case RTE_KDRV_IGB_UIO:
693                 pci_uio_ioport_write(p, data, len, offset);
694                 break;
695         case RTE_KDRV_UIO_GENERIC:
696                 pci_uio_ioport_write(p, data, len, offset);
697                 break;
698         case RTE_KDRV_NONE:
699 #if defined(RTE_ARCH_X86)
700                 pci_uio_ioport_write(p, data, len, offset);
701 #endif
702                 break;
703         default:
704                 break;
705         }
706 }
707
708 int
709 rte_eal_pci_ioport_unmap(struct rte_pci_ioport *p)
710 {
711         int ret = -1;
712
713         switch (p->dev->kdrv) {
714 #ifdef VFIO_PRESENT
715         case RTE_KDRV_VFIO:
716                 if (pci_vfio_is_enabled())
717                         ret = pci_vfio_ioport_unmap(p);
718                 break;
719 #endif
720         case RTE_KDRV_IGB_UIO:
721                 ret = pci_uio_ioport_unmap(p);
722                 break;
723         case RTE_KDRV_UIO_GENERIC:
724 #if defined(RTE_ARCH_X86)
725                 ret = 0;
726 #else
727                 ret = pci_uio_ioport_unmap(p);
728 #endif
729                 break;
730         case RTE_KDRV_NONE:
731 #if defined(RTE_ARCH_X86)
732                 ret = 0;
733 #endif
734                 break;
735         default:
736                 break;
737         }
738
739         return ret;
740 }
741
742 /* Init the PCI EAL subsystem */
743 int
744 rte_eal_pci_init(void)
745 {
746         TAILQ_INIT(&pci_driver_list);
747         TAILQ_INIT(&pci_device_list);
748
749         /* for debug purposes, PCI can be disabled */
750         if (internal_config.no_pci)
751                 return 0;
752
753         if (rte_eal_pci_scan() < 0) {
754                 RTE_LOG(ERR, EAL, "%s(): Cannot scan PCI bus\n", __func__);
755                 return -1;
756         }
757 #ifdef VFIO_PRESENT
758         pci_vfio_enable();
759
760         if (pci_vfio_is_enabled()) {
761
762                 /* if we are primary process, create a thread to communicate with
763                  * secondary processes. the thread will use a socket to wait for
764                  * requests from secondary process to send open file descriptors,
765                  * because VFIO does not allow multiple open descriptors on a group or
766                  * VFIO container.
767                  */
768                 if (internal_config.process_type == RTE_PROC_PRIMARY &&
769                                 pci_vfio_mp_sync_setup() < 0)
770                         return -1;
771         }
772 #endif
773         return 0;
774 }