New upstream version 17.11.1
[deb_dpdk.git] / drivers / bus / pci / linux / 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_bus.h>
39 #include <rte_pci.h>
40 #include <rte_bus_pci.h>
41 #include <rte_eal_memconfig.h>
42 #include <rte_malloc.h>
43 #include <rte_devargs.h>
44 #include <rte_memcpy.h>
45 #include <rte_vfio.h>
46
47 #include "eal_private.h"
48 #include "eal_filesystem.h"
49
50 #include "private.h"
51 #include "pci_init.h"
52
53 /**
54  * @file
55  * PCI probing under linux
56  *
57  * This code is used to simulate a PCI probe by parsing information in sysfs.
58  * When a registered device matches a driver, it is then initialized with
59  * IGB_UIO driver (or doesn't initialize, if the device wasn't bound to it).
60  */
61
62 extern struct rte_pci_bus rte_pci_bus;
63
64 static int
65 pci_get_kernel_driver_by_path(const char *filename, char *dri_name)
66 {
67         int count;
68         char path[PATH_MAX];
69         char *name;
70
71         if (!filename || !dri_name)
72                 return -1;
73
74         count = readlink(filename, path, PATH_MAX);
75         if (count >= PATH_MAX)
76                 return -1;
77
78         /* For device does not have a driver */
79         if (count < 0)
80                 return 1;
81
82         path[count] = '\0';
83
84         name = strrchr(path, '/');
85         if (name) {
86                 strncpy(dri_name, name + 1, strlen(name + 1) + 1);
87                 return 0;
88         }
89
90         return -1;
91 }
92
93 /* Map pci device */
94 int
95 rte_pci_map_device(struct rte_pci_device *dev)
96 {
97         int ret = -1;
98
99         /* try mapping the NIC resources using VFIO if it exists */
100         switch (dev->kdrv) {
101         case RTE_KDRV_VFIO:
102 #ifdef VFIO_PRESENT
103                 if (pci_vfio_is_enabled())
104                         ret = pci_vfio_map_resource(dev);
105 #endif
106                 break;
107         case RTE_KDRV_IGB_UIO:
108         case RTE_KDRV_UIO_GENERIC:
109                 if (rte_eal_using_phys_addrs()) {
110                         /* map resources for devices that use uio */
111                         ret = pci_uio_map_resource(dev);
112                 }
113                 break;
114         default:
115                 RTE_LOG(DEBUG, EAL,
116                         "  Not managed by a supported kernel driver, skipped\n");
117                 ret = 1;
118                 break;
119         }
120
121         return ret;
122 }
123
124 /* Unmap pci device */
125 void
126 rte_pci_unmap_device(struct rte_pci_device *dev)
127 {
128         /* try unmapping the NIC resources using VFIO if it exists */
129         switch (dev->kdrv) {
130         case RTE_KDRV_VFIO:
131 #ifdef VFIO_PRESENT
132                 if (pci_vfio_is_enabled())
133                         pci_vfio_unmap_resource(dev);
134 #endif
135                 break;
136         case RTE_KDRV_IGB_UIO:
137         case RTE_KDRV_UIO_GENERIC:
138                 /* unmap resources for devices that use uio */
139                 pci_uio_unmap_resource(dev);
140                 break;
141         default:
142                 RTE_LOG(DEBUG, EAL,
143                         "  Not managed by a supported kernel driver, skipped\n");
144                 break;
145         }
146 }
147
148 void *
149 pci_find_max_end_va(void)
150 {
151         const struct rte_memseg *seg = rte_eal_get_physmem_layout();
152         const struct rte_memseg *last = seg;
153         unsigned i = 0;
154
155         for (i = 0; i < RTE_MAX_MEMSEG; i++, seg++) {
156                 if (seg->addr == NULL)
157                         break;
158
159                 if (seg->addr > last->addr)
160                         last = seg;
161
162         }
163         return RTE_PTR_ADD(last->addr, last->len);
164 }
165
166 /* parse one line of the "resource" sysfs file (note that the 'line'
167  * string is modified)
168  */
169 int
170 pci_parse_one_sysfs_resource(char *line, size_t len, uint64_t *phys_addr,
171         uint64_t *end_addr, uint64_t *flags)
172 {
173         union pci_resource_info {
174                 struct {
175                         char *phys_addr;
176                         char *end_addr;
177                         char *flags;
178                 };
179                 char *ptrs[PCI_RESOURCE_FMT_NVAL];
180         } res_info;
181
182         if (rte_strsplit(line, len, res_info.ptrs, 3, ' ') != 3) {
183                 RTE_LOG(ERR, EAL,
184                         "%s(): bad resource format\n", __func__);
185                 return -1;
186         }
187         errno = 0;
188         *phys_addr = strtoull(res_info.phys_addr, NULL, 16);
189         *end_addr = strtoull(res_info.end_addr, NULL, 16);
190         *flags = strtoull(res_info.flags, NULL, 16);
191         if (errno != 0) {
192                 RTE_LOG(ERR, EAL,
193                         "%s(): bad resource format\n", __func__);
194                 return -1;
195         }
196
197         return 0;
198 }
199
200 /* parse the "resource" sysfs file */
201 static int
202 pci_parse_sysfs_resource(const char *filename, struct rte_pci_device *dev)
203 {
204         FILE *f;
205         char buf[BUFSIZ];
206         int i;
207         uint64_t phys_addr, end_addr, flags;
208
209         f = fopen(filename, "r");
210         if (f == NULL) {
211                 RTE_LOG(ERR, EAL, "Cannot open sysfs resource\n");
212                 return -1;
213         }
214
215         for (i = 0; i<PCI_MAX_RESOURCE; i++) {
216
217                 if (fgets(buf, sizeof(buf), f) == NULL) {
218                         RTE_LOG(ERR, EAL,
219                                 "%s(): cannot read resource\n", __func__);
220                         goto error;
221                 }
222                 if (pci_parse_one_sysfs_resource(buf, sizeof(buf), &phys_addr,
223                                 &end_addr, &flags) < 0)
224                         goto error;
225
226                 if (flags & IORESOURCE_MEM) {
227                         dev->mem_resource[i].phys_addr = phys_addr;
228                         dev->mem_resource[i].len = end_addr - phys_addr + 1;
229                         /* not mapped for now */
230                         dev->mem_resource[i].addr = NULL;
231                 }
232         }
233         fclose(f);
234         return 0;
235
236 error:
237         fclose(f);
238         return -1;
239 }
240
241 /* Scan one pci sysfs entry, and fill the devices list from it. */
242 static int
243 pci_scan_one(const char *dirname, const struct rte_pci_addr *addr)
244 {
245         char filename[PATH_MAX];
246         unsigned long tmp;
247         struct rte_pci_device *dev;
248         char driver[PATH_MAX];
249         int ret;
250
251         dev = malloc(sizeof(*dev));
252         if (dev == NULL)
253                 return -1;
254
255         memset(dev, 0, sizeof(*dev));
256         dev->addr = *addr;
257
258         /* get vendor id */
259         snprintf(filename, sizeof(filename), "%s/vendor", dirname);
260         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
261                 free(dev);
262                 return -1;
263         }
264         dev->id.vendor_id = (uint16_t)tmp;
265
266         /* get device id */
267         snprintf(filename, sizeof(filename), "%s/device", dirname);
268         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
269                 free(dev);
270                 return -1;
271         }
272         dev->id.device_id = (uint16_t)tmp;
273
274         /* get subsystem_vendor id */
275         snprintf(filename, sizeof(filename), "%s/subsystem_vendor",
276                  dirname);
277         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
278                 free(dev);
279                 return -1;
280         }
281         dev->id.subsystem_vendor_id = (uint16_t)tmp;
282
283         /* get subsystem_device id */
284         snprintf(filename, sizeof(filename), "%s/subsystem_device",
285                  dirname);
286         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
287                 free(dev);
288                 return -1;
289         }
290         dev->id.subsystem_device_id = (uint16_t)tmp;
291
292         /* get class_id */
293         snprintf(filename, sizeof(filename), "%s/class",
294                  dirname);
295         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
296                 free(dev);
297                 return -1;
298         }
299         /* the least 24 bits are valid: class, subclass, program interface */
300         dev->id.class_id = (uint32_t)tmp & RTE_CLASS_ANY_ID;
301
302         /* get max_vfs */
303         dev->max_vfs = 0;
304         snprintf(filename, sizeof(filename), "%s/max_vfs", dirname);
305         if (!access(filename, F_OK) &&
306             eal_parse_sysfs_value(filename, &tmp) == 0)
307                 dev->max_vfs = (uint16_t)tmp;
308         else {
309                 /* for non igb_uio driver, need kernel version >= 3.8 */
310                 snprintf(filename, sizeof(filename),
311                          "%s/sriov_numvfs", dirname);
312                 if (!access(filename, F_OK) &&
313                     eal_parse_sysfs_value(filename, &tmp) == 0)
314                         dev->max_vfs = (uint16_t)tmp;
315         }
316
317         /* get numa node, default to 0 if not present */
318         snprintf(filename, sizeof(filename), "%s/numa_node",
319                  dirname);
320
321         if (access(filename, F_OK) != -1) {
322                 if (eal_parse_sysfs_value(filename, &tmp) == 0)
323                         dev->device.numa_node = tmp;
324                 else
325                         dev->device.numa_node = -1;
326         } else {
327                 dev->device.numa_node = 0;
328         }
329
330         pci_name_set(dev);
331
332         /* parse resources */
333         snprintf(filename, sizeof(filename), "%s/resource", dirname);
334         if (pci_parse_sysfs_resource(filename, dev) < 0) {
335                 RTE_LOG(ERR, EAL, "%s(): cannot parse resource\n", __func__);
336                 free(dev);
337                 return -1;
338         }
339
340         /* parse driver */
341         snprintf(filename, sizeof(filename), "%s/driver", dirname);
342         ret = pci_get_kernel_driver_by_path(filename, driver);
343         if (ret < 0) {
344                 RTE_LOG(ERR, EAL, "Fail to get kernel driver\n");
345                 free(dev);
346                 return -1;
347         }
348
349         if (!ret) {
350                 if (!strcmp(driver, "vfio-pci"))
351                         dev->kdrv = RTE_KDRV_VFIO;
352                 else if (!strcmp(driver, "igb_uio"))
353                         dev->kdrv = RTE_KDRV_IGB_UIO;
354                 else if (!strcmp(driver, "uio_pci_generic"))
355                         dev->kdrv = RTE_KDRV_UIO_GENERIC;
356                 else
357                         dev->kdrv = RTE_KDRV_UNKNOWN;
358         } else
359                 dev->kdrv = RTE_KDRV_NONE;
360
361         /* device is valid, add in list (sorted) */
362         if (TAILQ_EMPTY(&rte_pci_bus.device_list)) {
363                 rte_pci_add_device(dev);
364         } else {
365                 struct rte_pci_device *dev2;
366                 int ret;
367
368                 TAILQ_FOREACH(dev2, &rte_pci_bus.device_list, next) {
369                         ret = rte_pci_addr_cmp(&dev->addr, &dev2->addr);
370                         if (ret > 0)
371                                 continue;
372
373                         if (ret < 0) {
374                                 rte_pci_insert_device(dev2, dev);
375                         } else { /* already registered */
376                                 dev2->kdrv = dev->kdrv;
377                                 dev2->max_vfs = dev->max_vfs;
378                                 pci_name_set(dev2);
379                                 memmove(dev2->mem_resource, dev->mem_resource,
380                                         sizeof(dev->mem_resource));
381                                 free(dev);
382                         }
383                         return 0;
384                 }
385
386                 rte_pci_add_device(dev);
387         }
388
389         return 0;
390 }
391
392 int
393 pci_update_device(const struct rte_pci_addr *addr)
394 {
395         char filename[PATH_MAX];
396
397         snprintf(filename, sizeof(filename), "%s/" PCI_PRI_FMT,
398                  rte_pci_get_sysfs_path(), addr->domain, addr->bus, addr->devid,
399                  addr->function);
400
401         return pci_scan_one(filename, addr);
402 }
403
404 /*
405  * split up a pci address into its constituent parts.
406  */
407 static int
408 parse_pci_addr_format(const char *buf, int bufsize, struct rte_pci_addr *addr)
409 {
410         /* first split on ':' */
411         union splitaddr {
412                 struct {
413                         char *domain;
414                         char *bus;
415                         char *devid;
416                         char *function;
417                 };
418                 char *str[PCI_FMT_NVAL]; /* last element-separator is "." not ":" */
419         } splitaddr;
420
421         char *buf_copy = strndup(buf, bufsize);
422         if (buf_copy == NULL)
423                 return -1;
424
425         if (rte_strsplit(buf_copy, bufsize, splitaddr.str, PCI_FMT_NVAL, ':')
426                         != PCI_FMT_NVAL - 1)
427                 goto error;
428         /* final split is on '.' between devid and function */
429         splitaddr.function = strchr(splitaddr.devid,'.');
430         if (splitaddr.function == NULL)
431                 goto error;
432         *splitaddr.function++ = '\0';
433
434         /* now convert to int values */
435         errno = 0;
436         addr->domain = strtoul(splitaddr.domain, NULL, 16);
437         addr->bus = strtoul(splitaddr.bus, NULL, 16);
438         addr->devid = strtoul(splitaddr.devid, NULL, 16);
439         addr->function = strtoul(splitaddr.function, NULL, 10);
440         if (errno != 0)
441                 goto error;
442
443         free(buf_copy); /* free the copy made with strdup */
444         return 0;
445 error:
446         free(buf_copy);
447         return -1;
448 }
449
450 /*
451  * Scan the content of the PCI bus, and the devices in the devices
452  * list
453  */
454 int
455 rte_pci_scan(void)
456 {
457         struct dirent *e;
458         DIR *dir;
459         char dirname[PATH_MAX];
460         struct rte_pci_addr addr;
461
462         /* for debug purposes, PCI can be disabled */
463         if (!rte_eal_has_pci())
464                 return 0;
465
466 #ifdef VFIO_PRESENT
467         if (!pci_vfio_is_enabled())
468                 RTE_LOG(DEBUG, EAL, "VFIO PCI modules not loaded\n");
469 #endif
470
471         dir = opendir(rte_pci_get_sysfs_path());
472         if (dir == NULL) {
473                 RTE_LOG(ERR, EAL, "%s(): opendir failed: %s\n",
474                         __func__, strerror(errno));
475                 return -1;
476         }
477
478         while ((e = readdir(dir)) != NULL) {
479                 if (e->d_name[0] == '.')
480                         continue;
481
482                 if (parse_pci_addr_format(e->d_name, sizeof(e->d_name), &addr) != 0)
483                         continue;
484
485                 snprintf(dirname, sizeof(dirname), "%s/%s",
486                                 rte_pci_get_sysfs_path(), e->d_name);
487
488                 if (pci_scan_one(dirname, &addr) < 0)
489                         goto error;
490         }
491         closedir(dir);
492         return 0;
493
494 error:
495         closedir(dir);
496         return -1;
497 }
498
499 /*
500  * Is pci device bound to any kdrv
501  */
502 static inline int
503 pci_one_device_is_bound(void)
504 {
505         struct rte_pci_device *dev = NULL;
506         int ret = 0;
507
508         FOREACH_DEVICE_ON_PCIBUS(dev) {
509                 if (dev->kdrv == RTE_KDRV_UNKNOWN ||
510                     dev->kdrv == RTE_KDRV_NONE) {
511                         continue;
512                 } else {
513                         ret = 1;
514                         break;
515                 }
516         }
517         return ret;
518 }
519
520 /*
521  * Any one of the device bound to uio
522  */
523 static inline int
524 pci_one_device_bound_uio(void)
525 {
526         struct rte_pci_device *dev = NULL;
527         struct rte_devargs *devargs;
528         int need_check;
529
530         FOREACH_DEVICE_ON_PCIBUS(dev) {
531                 devargs = dev->device.devargs;
532
533                 need_check = 0;
534                 switch (rte_pci_bus.bus.conf.scan_mode) {
535                 case RTE_BUS_SCAN_WHITELIST:
536                         if (devargs && devargs->policy == RTE_DEV_WHITELISTED)
537                                 need_check = 1;
538                         break;
539                 case RTE_BUS_SCAN_UNDEFINED:
540                 case RTE_BUS_SCAN_BLACKLIST:
541                         if (devargs == NULL ||
542                             devargs->policy != RTE_DEV_BLACKLISTED)
543                                 need_check = 1;
544                         break;
545                 }
546
547                 if (!need_check)
548                         continue;
549
550                 if (dev->kdrv == RTE_KDRV_IGB_UIO ||
551                    dev->kdrv == RTE_KDRV_UIO_GENERIC) {
552                         return 1;
553                 }
554         }
555         return 0;
556 }
557
558 /*
559  * Any one of the device has iova as va
560  */
561 static inline int
562 pci_one_device_has_iova_va(void)
563 {
564         struct rte_pci_device *dev = NULL;
565         struct rte_pci_driver *drv = NULL;
566
567         FOREACH_DRIVER_ON_PCIBUS(drv) {
568                 if (drv && drv->drv_flags & RTE_PCI_DRV_IOVA_AS_VA) {
569                         FOREACH_DEVICE_ON_PCIBUS(dev) {
570                                 if (dev->kdrv == RTE_KDRV_VFIO &&
571                                     rte_pci_match(drv, dev))
572                                         return 1;
573                         }
574                 }
575         }
576         return 0;
577 }
578
579 #if defined(RTE_ARCH_X86)
580 static bool
581 pci_one_device_iommu_support_va(struct rte_pci_device *dev)
582 {
583 #define VTD_CAP_MGAW_SHIFT      16
584 #define VTD_CAP_MGAW_MASK       (0x3fULL << VTD_CAP_MGAW_SHIFT)
585 #define X86_VA_WIDTH 47 /* From Documentation/x86/x86_64/mm.txt */
586         struct rte_pci_addr *addr = &dev->addr;
587         char filename[PATH_MAX];
588         FILE *fp;
589         uint64_t mgaw, vtd_cap_reg = 0;
590
591         snprintf(filename, sizeof(filename),
592                  "%s/" PCI_PRI_FMT "/iommu/intel-iommu/cap",
593                  rte_pci_get_sysfs_path(), addr->domain, addr->bus, addr->devid,
594                  addr->function);
595         if (access(filename, F_OK) == -1) {
596                 /* We don't have an Intel IOMMU, assume VA supported*/
597                 return true;
598         }
599
600         /* We have an intel IOMMU */
601         fp = fopen(filename, "r");
602         if (fp == NULL) {
603                 RTE_LOG(ERR, EAL, "%s(): can't open %s\n", __func__, filename);
604                 return false;
605         }
606
607         if (fscanf(fp, "%" PRIx64, &vtd_cap_reg) != 1) {
608                 RTE_LOG(ERR, EAL, "%s(): can't read %s\n", __func__, filename);
609                 fclose(fp);
610                 return false;
611         }
612
613         fclose(fp);
614
615         mgaw = ((vtd_cap_reg & VTD_CAP_MGAW_MASK) >> VTD_CAP_MGAW_SHIFT) + 1;
616         if (mgaw < X86_VA_WIDTH)
617                 return false;
618
619         return true;
620 }
621 #elif defined(RTE_ARCH_PPC_64)
622 static bool
623 pci_one_device_iommu_support_va(__rte_unused struct rte_pci_device *dev)
624 {
625         return false;
626 }
627 #else
628 static bool
629 pci_one_device_iommu_support_va(__rte_unused struct rte_pci_device *dev)
630 {
631         return true;
632 }
633 #endif
634
635 /*
636  * All devices IOMMUs support VA as IOVA
637  */
638 static bool
639 pci_devices_iommu_support_va(void)
640 {
641         struct rte_pci_device *dev = NULL;
642         struct rte_pci_driver *drv = NULL;
643
644         FOREACH_DRIVER_ON_PCIBUS(drv) {
645                 FOREACH_DEVICE_ON_PCIBUS(dev) {
646                         if (!rte_pci_match(drv, dev))
647                                 continue;
648                         if (!pci_one_device_iommu_support_va(dev))
649                                 return false;
650                 }
651         }
652         return true;
653 }
654
655 /*
656  * Get iommu class of PCI devices on the bus.
657  */
658 enum rte_iova_mode
659 rte_pci_get_iommu_class(void)
660 {
661         bool is_bound;
662         bool is_vfio_noiommu_enabled = true;
663         bool has_iova_va;
664         bool is_bound_uio;
665         bool iommu_no_va;
666
667         is_bound = pci_one_device_is_bound();
668         if (!is_bound)
669                 return RTE_IOVA_DC;
670
671         has_iova_va = pci_one_device_has_iova_va();
672         is_bound_uio = pci_one_device_bound_uio();
673         iommu_no_va = !pci_devices_iommu_support_va();
674 #ifdef VFIO_PRESENT
675         is_vfio_noiommu_enabled = rte_vfio_noiommu_is_enabled() == true ?
676                                         true : false;
677 #endif
678
679         if (has_iova_va && !is_bound_uio && !is_vfio_noiommu_enabled &&
680                         !iommu_no_va)
681                 return RTE_IOVA_VA;
682
683         if (has_iova_va) {
684                 RTE_LOG(WARNING, EAL, "Some devices want iova as va but pa will be used because.. ");
685                 if (is_vfio_noiommu_enabled)
686                         RTE_LOG(WARNING, EAL, "vfio-noiommu mode configured\n");
687                 if (is_bound_uio)
688                         RTE_LOG(WARNING, EAL, "few device bound to UIO\n");
689                 if (iommu_no_va)
690                         RTE_LOG(WARNING, EAL, "IOMMU does not support IOVA as VA\n");
691         }
692
693         return RTE_IOVA_PA;
694 }
695
696 /* Read PCI config space. */
697 int rte_pci_read_config(const struct rte_pci_device *device,
698                 void *buf, size_t len, off_t offset)
699 {
700         const struct rte_intr_handle *intr_handle = &device->intr_handle;
701
702         switch (intr_handle->type) {
703         case RTE_INTR_HANDLE_UIO:
704         case RTE_INTR_HANDLE_UIO_INTX:
705                 return pci_uio_read_config(intr_handle, buf, len, offset);
706
707 #ifdef VFIO_PRESENT
708         case RTE_INTR_HANDLE_VFIO_MSIX:
709         case RTE_INTR_HANDLE_VFIO_MSI:
710         case RTE_INTR_HANDLE_VFIO_LEGACY:
711                 return pci_vfio_read_config(intr_handle, buf, len, offset);
712 #endif
713         default:
714                 RTE_LOG(ERR, EAL,
715                         "Unknown handle type of fd %d\n",
716                                         intr_handle->fd);
717                 return -1;
718         }
719 }
720
721 /* Write PCI config space. */
722 int rte_pci_write_config(const struct rte_pci_device *device,
723                 const void *buf, size_t len, off_t offset)
724 {
725         const struct rte_intr_handle *intr_handle = &device->intr_handle;
726
727         switch (intr_handle->type) {
728         case RTE_INTR_HANDLE_UIO:
729         case RTE_INTR_HANDLE_UIO_INTX:
730                 return pci_uio_write_config(intr_handle, buf, len, offset);
731
732 #ifdef VFIO_PRESENT
733         case RTE_INTR_HANDLE_VFIO_MSIX:
734         case RTE_INTR_HANDLE_VFIO_MSI:
735         case RTE_INTR_HANDLE_VFIO_LEGACY:
736                 return pci_vfio_write_config(intr_handle, buf, len, offset);
737 #endif
738         default:
739                 RTE_LOG(ERR, EAL,
740                         "Unknown handle type of fd %d\n",
741                                         intr_handle->fd);
742                 return -1;
743         }
744 }
745
746 #if defined(RTE_ARCH_X86)
747 static int
748 pci_ioport_map(struct rte_pci_device *dev, int bar __rte_unused,
749                 struct rte_pci_ioport *p)
750 {
751         uint16_t start, end;
752         FILE *fp;
753         char *line = NULL;
754         char pci_id[16];
755         int found = 0;
756         size_t linesz;
757
758         snprintf(pci_id, sizeof(pci_id), PCI_PRI_FMT,
759                  dev->addr.domain, dev->addr.bus,
760                  dev->addr.devid, dev->addr.function);
761
762         fp = fopen("/proc/ioports", "r");
763         if (fp == NULL) {
764                 RTE_LOG(ERR, EAL, "%s(): can't open ioports\n", __func__);
765                 return -1;
766         }
767
768         while (getdelim(&line, &linesz, '\n', fp) > 0) {
769                 char *ptr = line;
770                 char *left;
771                 int n;
772
773                 n = strcspn(ptr, ":");
774                 ptr[n] = 0;
775                 left = &ptr[n + 1];
776
777                 while (*left && isspace(*left))
778                         left++;
779
780                 if (!strncmp(left, pci_id, strlen(pci_id))) {
781                         found = 1;
782
783                         while (*ptr && isspace(*ptr))
784                                 ptr++;
785
786                         sscanf(ptr, "%04hx-%04hx", &start, &end);
787
788                         break;
789                 }
790         }
791
792         free(line);
793         fclose(fp);
794
795         if (!found)
796                 return -1;
797
798         p->base = start;
799         RTE_LOG(DEBUG, EAL, "PCI Port IO found start=0x%x\n", start);
800
801         return 0;
802 }
803 #endif
804
805 int
806 rte_pci_ioport_map(struct rte_pci_device *dev, int bar,
807                 struct rte_pci_ioport *p)
808 {
809         int ret = -1;
810
811         switch (dev->kdrv) {
812 #ifdef VFIO_PRESENT
813         case RTE_KDRV_VFIO:
814                 if (pci_vfio_is_enabled())
815                         ret = pci_vfio_ioport_map(dev, bar, p);
816                 break;
817 #endif
818         case RTE_KDRV_IGB_UIO:
819                 ret = pci_uio_ioport_map(dev, bar, p);
820                 break;
821         case RTE_KDRV_UIO_GENERIC:
822 #if defined(RTE_ARCH_X86)
823                 ret = pci_ioport_map(dev, bar, p);
824 #else
825                 ret = pci_uio_ioport_map(dev, bar, p);
826 #endif
827                 break;
828         case RTE_KDRV_NONE:
829 #if defined(RTE_ARCH_X86)
830                 ret = pci_ioport_map(dev, bar, p);
831 #endif
832                 break;
833         default:
834                 break;
835         }
836
837         if (!ret)
838                 p->dev = dev;
839
840         return ret;
841 }
842
843 void
844 rte_pci_ioport_read(struct rte_pci_ioport *p,
845                 void *data, size_t len, off_t offset)
846 {
847         switch (p->dev->kdrv) {
848 #ifdef VFIO_PRESENT
849         case RTE_KDRV_VFIO:
850                 pci_vfio_ioport_read(p, data, len, offset);
851                 break;
852 #endif
853         case RTE_KDRV_IGB_UIO:
854                 pci_uio_ioport_read(p, data, len, offset);
855                 break;
856         case RTE_KDRV_UIO_GENERIC:
857                 pci_uio_ioport_read(p, data, len, offset);
858                 break;
859         case RTE_KDRV_NONE:
860 #if defined(RTE_ARCH_X86)
861                 pci_uio_ioport_read(p, data, len, offset);
862 #endif
863                 break;
864         default:
865                 break;
866         }
867 }
868
869 void
870 rte_pci_ioport_write(struct rte_pci_ioport *p,
871                 const void *data, size_t len, off_t offset)
872 {
873         switch (p->dev->kdrv) {
874 #ifdef VFIO_PRESENT
875         case RTE_KDRV_VFIO:
876                 pci_vfio_ioport_write(p, data, len, offset);
877                 break;
878 #endif
879         case RTE_KDRV_IGB_UIO:
880                 pci_uio_ioport_write(p, data, len, offset);
881                 break;
882         case RTE_KDRV_UIO_GENERIC:
883                 pci_uio_ioport_write(p, data, len, offset);
884                 break;
885         case RTE_KDRV_NONE:
886 #if defined(RTE_ARCH_X86)
887                 pci_uio_ioport_write(p, data, len, offset);
888 #endif
889                 break;
890         default:
891                 break;
892         }
893 }
894
895 int
896 rte_pci_ioport_unmap(struct rte_pci_ioport *p)
897 {
898         int ret = -1;
899
900         switch (p->dev->kdrv) {
901 #ifdef VFIO_PRESENT
902         case RTE_KDRV_VFIO:
903                 if (pci_vfio_is_enabled())
904                         ret = pci_vfio_ioport_unmap(p);
905                 break;
906 #endif
907         case RTE_KDRV_IGB_UIO:
908                 ret = pci_uio_ioport_unmap(p);
909                 break;
910         case RTE_KDRV_UIO_GENERIC:
911 #if defined(RTE_ARCH_X86)
912                 ret = 0;
913 #else
914                 ret = pci_uio_ioport_unmap(p);
915 #endif
916                 break;
917         case RTE_KDRV_NONE:
918 #if defined(RTE_ARCH_X86)
919                 ret = 0;
920 #endif
921                 break;
922         default:
923                 break;
924         }
925
926         return ret;
927 }