drivers: remove direct access to interrupt handle
[dpdk.git] / drivers / bus / pci / pci_common.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation.
3  * Copyright 2013-2014 6WIND S.A.
4  */
5
6 #include <string.h>
7 #include <inttypes.h>
8 #include <stdint.h>
9 #include <stdbool.h>
10 #include <stdlib.h>
11 #include <stdio.h>
12 #include <sys/queue.h>
13 #include <rte_errno.h>
14 #include <rte_interrupts.h>
15 #include <rte_log.h>
16 #include <rte_bus.h>
17 #include <rte_pci.h>
18 #include <rte_bus_pci.h>
19 #include <rte_lcore.h>
20 #include <rte_per_lcore.h>
21 #include <rte_memory.h>
22 #include <rte_eal.h>
23 #include <rte_eal_paging.h>
24 #include <rte_string_fns.h>
25 #include <rte_common.h>
26 #include <rte_devargs.h>
27 #include <rte_vfio.h>
28
29 #include "private.h"
30
31
32 #define SYSFS_PCI_DEVICES "/sys/bus/pci/devices"
33
34 const char *rte_pci_get_sysfs_path(void)
35 {
36         const char *path = NULL;
37
38 #ifdef RTE_EXEC_ENV_LINUX
39         path = getenv("SYSFS_PCI_DEVICES");
40         if (path == NULL)
41                 return SYSFS_PCI_DEVICES;
42 #endif
43
44         return path;
45 }
46
47 static struct rte_devargs *
48 pci_devargs_lookup(const struct rte_pci_addr *pci_addr)
49 {
50         struct rte_devargs *devargs;
51         struct rte_pci_addr addr;
52
53         RTE_EAL_DEVARGS_FOREACH("pci", devargs) {
54                 devargs->bus->parse(devargs->name, &addr);
55                 if (!rte_pci_addr_cmp(pci_addr, &addr))
56                         return devargs;
57         }
58         return NULL;
59 }
60
61 void
62 pci_name_set(struct rte_pci_device *dev)
63 {
64         struct rte_devargs *devargs;
65
66         /* Each device has its internal, canonical name set. */
67         rte_pci_device_name(&dev->addr,
68                         dev->name, sizeof(dev->name));
69         devargs = pci_devargs_lookup(&dev->addr);
70         dev->device.devargs = devargs;
71
72         /* When using a blocklist, only blocked devices will have
73          * an rte_devargs. Allowed devices won't have one.
74          */
75         if (devargs != NULL)
76                 /* If an rte_devargs exists, the generic rte_device uses the
77                  * given name as its name.
78                  */
79                 dev->device.name = dev->device.devargs->name;
80         else
81                 /* Otherwise, it uses the internal, canonical form. */
82                 dev->device.name = dev->name;
83 }
84
85 /* map a particular resource from a file */
86 void *
87 pci_map_resource(void *requested_addr, int fd, off_t offset, size_t size,
88                  int additional_flags)
89 {
90         void *mapaddr;
91
92         /* Map the PCI memory resource of device */
93         mapaddr = rte_mem_map(requested_addr, size,
94                 RTE_PROT_READ | RTE_PROT_WRITE,
95                 RTE_MAP_SHARED | additional_flags, fd, offset);
96         if (mapaddr == NULL) {
97                 RTE_LOG(ERR, EAL,
98                         "%s(): cannot map resource(%d, %p, 0x%zx, 0x%llx): %s (%p)\n",
99                         __func__, fd, requested_addr, size,
100                         (unsigned long long)offset,
101                         rte_strerror(rte_errno), mapaddr);
102         } else
103                 RTE_LOG(DEBUG, EAL, "  PCI memory mapped at %p\n", mapaddr);
104
105         return mapaddr;
106 }
107
108 /* unmap a particular resource */
109 void
110 pci_unmap_resource(void *requested_addr, size_t size)
111 {
112         if (requested_addr == NULL)
113                 return;
114
115         /* Unmap the PCI memory resource of device */
116         if (rte_mem_unmap(requested_addr, size)) {
117                 RTE_LOG(ERR, EAL, "%s(): cannot mem unmap(%p, %#zx): %s\n",
118                         __func__, requested_addr, size,
119                         rte_strerror(rte_errno));
120         } else
121                 RTE_LOG(DEBUG, EAL, "  PCI memory unmapped at %p\n",
122                                 requested_addr);
123 }
124 /*
125  * Match the PCI Driver and Device using the ID Table
126  */
127 int
128 rte_pci_match(const struct rte_pci_driver *pci_drv,
129               const struct rte_pci_device *pci_dev)
130 {
131         const struct rte_pci_id *id_table;
132
133         for (id_table = pci_drv->id_table; id_table->vendor_id != 0;
134              id_table++) {
135                 /* check if device's identifiers match the driver's ones */
136                 if (id_table->vendor_id != pci_dev->id.vendor_id &&
137                                 id_table->vendor_id != RTE_PCI_ANY_ID)
138                         continue;
139                 if (id_table->device_id != pci_dev->id.device_id &&
140                                 id_table->device_id != RTE_PCI_ANY_ID)
141                         continue;
142                 if (id_table->subsystem_vendor_id !=
143                     pci_dev->id.subsystem_vendor_id &&
144                     id_table->subsystem_vendor_id != RTE_PCI_ANY_ID)
145                         continue;
146                 if (id_table->subsystem_device_id !=
147                     pci_dev->id.subsystem_device_id &&
148                     id_table->subsystem_device_id != RTE_PCI_ANY_ID)
149                         continue;
150                 if (id_table->class_id != pci_dev->id.class_id &&
151                                 id_table->class_id != RTE_CLASS_ANY_ID)
152                         continue;
153
154                 return 1;
155         }
156
157         return 0;
158 }
159
160 /*
161  * If vendor/device ID match, call the probe() function of the
162  * driver.
163  */
164 static int
165 rte_pci_probe_one_driver(struct rte_pci_driver *dr,
166                          struct rte_pci_device *dev)
167 {
168         int ret;
169         bool already_probed;
170         struct rte_pci_addr *loc;
171
172         if ((dr == NULL) || (dev == NULL))
173                 return -EINVAL;
174
175         loc = &dev->addr;
176
177         /* The device is not blocked; Check if driver supports it */
178         if (!rte_pci_match(dr, dev))
179                 /* Match of device and driver failed */
180                 return 1;
181
182         RTE_LOG(DEBUG, EAL, "PCI device "PCI_PRI_FMT" on NUMA socket %i\n",
183                         loc->domain, loc->bus, loc->devid, loc->function,
184                         dev->device.numa_node);
185
186         /* no initialization when marked as blocked, return without error */
187         if (dev->device.devargs != NULL &&
188                 dev->device.devargs->policy == RTE_DEV_BLOCKED) {
189                 RTE_LOG(INFO, EAL, "  Device is blocked, not initializing\n");
190                 return 1;
191         }
192
193         if (dev->device.numa_node < 0) {
194                 if (rte_socket_count() > 1)
195                         RTE_LOG(INFO, EAL, "Device %s is not NUMA-aware, defaulting socket to 0\n",
196                                         dev->name);
197                 dev->device.numa_node = 0;
198         }
199
200         already_probed = rte_dev_is_probed(&dev->device);
201         if (already_probed && !(dr->drv_flags & RTE_PCI_DRV_PROBE_AGAIN)) {
202                 RTE_LOG(DEBUG, EAL, "Device %s is already probed\n",
203                                 dev->device.name);
204                 return -EEXIST;
205         }
206
207         RTE_LOG(DEBUG, EAL, "  probe driver: %x:%x %s\n", dev->id.vendor_id,
208                 dev->id.device_id, dr->driver.name);
209
210         /*
211          * reference driver structure
212          * This needs to be before rte_pci_map_device(), as it enables to use
213          * driver flags for adjusting configuration.
214          */
215         if (!already_probed) {
216                 enum rte_iova_mode dev_iova_mode;
217                 enum rte_iova_mode iova_mode;
218
219                 dev_iova_mode = pci_device_iova_mode(dr, dev);
220                 iova_mode = rte_eal_iova_mode();
221                 if (dev_iova_mode != RTE_IOVA_DC &&
222                     dev_iova_mode != iova_mode) {
223                         RTE_LOG(ERR, EAL, "  Expecting '%s' IOVA mode but current mode is '%s', not initializing\n",
224                                 dev_iova_mode == RTE_IOVA_PA ? "PA" : "VA",
225                                 iova_mode == RTE_IOVA_PA ? "PA" : "VA");
226                         return -EINVAL;
227                 }
228
229                 /* Allocate interrupt instance for pci device */
230                 dev->intr_handle =
231                         rte_intr_instance_alloc(RTE_INTR_INSTANCE_F_PRIVATE);
232                 if (dev->intr_handle == NULL) {
233                         RTE_LOG(ERR, EAL,
234                                 "Failed to create interrupt instance for %s\n",
235                                 dev->device.name);
236                         return -ENOMEM;
237                 }
238
239                 dev->vfio_req_intr_handle =
240                         rte_intr_instance_alloc(RTE_INTR_INSTANCE_F_PRIVATE);
241                 if (dev->vfio_req_intr_handle == NULL) {
242                         rte_intr_instance_free(dev->intr_handle);
243                         dev->intr_handle = NULL;
244                         RTE_LOG(ERR, EAL,
245                                 "Failed to create vfio req interrupt instance for %s\n",
246                                 dev->device.name);
247                         return -ENOMEM;
248                 }
249
250                 if (dr->drv_flags & RTE_PCI_DRV_NEED_MAPPING) {
251                         ret = rte_pci_map_device(dev);
252                         if (ret != 0) {
253                                 rte_intr_instance_free(dev->vfio_req_intr_handle);
254                                 dev->vfio_req_intr_handle = NULL;
255                                 rte_intr_instance_free(dev->intr_handle);
256                                 dev->intr_handle = NULL;
257                                 return ret;
258                         }
259                 }
260
261                 dev->driver = dr;
262         }
263
264         RTE_LOG(INFO, EAL, "Probe PCI driver: %s (%x:%x) device: "PCI_PRI_FMT" (socket %i)\n",
265                         dr->driver.name, dev->id.vendor_id, dev->id.device_id,
266                         loc->domain, loc->bus, loc->devid, loc->function,
267                         dev->device.numa_node);
268         /* call the driver probe() function */
269         ret = dr->probe(dr, dev);
270         if (already_probed)
271                 return ret; /* no rollback if already succeeded earlier */
272         if (ret) {
273                 dev->driver = NULL;
274                 rte_intr_instance_free(dev->vfio_req_intr_handle);
275                 dev->vfio_req_intr_handle = NULL;
276                 rte_intr_instance_free(dev->intr_handle);
277                 dev->intr_handle = NULL;
278                 if ((dr->drv_flags & RTE_PCI_DRV_NEED_MAPPING) &&
279                         /* Don't unmap if device is unsupported and
280                          * driver needs mapped resources.
281                          */
282                         !(ret > 0 &&
283                                 (dr->drv_flags & RTE_PCI_DRV_KEEP_MAPPED_RES)))
284                         rte_pci_unmap_device(dev);
285         } else {
286                 dev->device.driver = &dr->driver;
287         }
288
289         return ret;
290 }
291
292 /*
293  * If vendor/device ID match, call the remove() function of the
294  * driver.
295  */
296 static int
297 rte_pci_detach_dev(struct rte_pci_device *dev)
298 {
299         struct rte_pci_addr *loc;
300         struct rte_pci_driver *dr;
301         int ret = 0;
302
303         if (dev == NULL)
304                 return -EINVAL;
305
306         dr = dev->driver;
307         loc = &dev->addr;
308
309         RTE_LOG(DEBUG, EAL, "PCI device "PCI_PRI_FMT" on NUMA socket %i\n",
310                         loc->domain, loc->bus, loc->devid,
311                         loc->function, dev->device.numa_node);
312
313         RTE_LOG(DEBUG, EAL, "  remove driver: %x:%x %s\n", dev->id.vendor_id,
314                         dev->id.device_id, dr->driver.name);
315
316         if (dr->remove) {
317                 ret = dr->remove(dev);
318                 if (ret < 0)
319                         return ret;
320         }
321
322         /* clear driver structure */
323         dev->driver = NULL;
324         dev->device.driver = NULL;
325         rte_intr_instance_free(dev->intr_handle);
326         dev->intr_handle = NULL;
327         rte_intr_instance_free(dev->vfio_req_intr_handle);
328         dev->vfio_req_intr_handle = NULL;
329
330         if (dr->drv_flags & RTE_PCI_DRV_NEED_MAPPING)
331                 /* unmap resources for devices that use igb_uio */
332                 rte_pci_unmap_device(dev);
333
334         return 0;
335 }
336
337 /*
338  * If vendor/device ID match, call the probe() function of all
339  * registered driver for the given device. Return < 0 if initialization
340  * failed, return 1 if no driver is found for this device.
341  */
342 static int
343 pci_probe_all_drivers(struct rte_pci_device *dev)
344 {
345         struct rte_pci_driver *dr = NULL;
346         int rc = 0;
347
348         if (dev == NULL)
349                 return -EINVAL;
350
351         FOREACH_DRIVER_ON_PCIBUS(dr) {
352                 rc = rte_pci_probe_one_driver(dr, dev);
353                 if (rc < 0)
354                         /* negative value is an error */
355                         return rc;
356                 if (rc > 0)
357                         /* positive value means driver doesn't support it */
358                         continue;
359                 return 0;
360         }
361         return 1;
362 }
363
364 /*
365  * Scan the content of the PCI bus, and call the probe() function for
366  * all registered drivers that have a matching entry in its id_table
367  * for discovered devices.
368  */
369 static int
370 pci_probe(void)
371 {
372         struct rte_pci_device *dev = NULL;
373         size_t probed = 0, failed = 0;
374         int ret = 0;
375
376         FOREACH_DEVICE_ON_PCIBUS(dev) {
377                 probed++;
378
379                 ret = pci_probe_all_drivers(dev);
380                 if (ret < 0) {
381                         if (ret != -EEXIST) {
382                                 RTE_LOG(ERR, EAL, "Requested device "
383                                         PCI_PRI_FMT " cannot be used\n",
384                                         dev->addr.domain, dev->addr.bus,
385                                         dev->addr.devid, dev->addr.function);
386                                 rte_errno = errno;
387                                 failed++;
388                         }
389                         ret = 0;
390                 }
391         }
392
393         return (probed && probed == failed) ? -1 : 0;
394 }
395
396 /* dump one device */
397 static int
398 pci_dump_one_device(FILE *f, struct rte_pci_device *dev)
399 {
400         int i;
401
402         fprintf(f, PCI_PRI_FMT, dev->addr.domain, dev->addr.bus,
403                dev->addr.devid, dev->addr.function);
404         fprintf(f, " - vendor:%x device:%x\n", dev->id.vendor_id,
405                dev->id.device_id);
406
407         for (i = 0; i != sizeof(dev->mem_resource) /
408                 sizeof(dev->mem_resource[0]); i++) {
409                 fprintf(f, "   %16.16"PRIx64" %16.16"PRIx64"\n",
410                         dev->mem_resource[i].phys_addr,
411                         dev->mem_resource[i].len);
412         }
413         return 0;
414 }
415
416 /* dump devices on the bus */
417 void
418 rte_pci_dump(FILE *f)
419 {
420         struct rte_pci_device *dev = NULL;
421
422         FOREACH_DEVICE_ON_PCIBUS(dev) {
423                 pci_dump_one_device(f, dev);
424         }
425 }
426
427 static int
428 pci_parse(const char *name, void *addr)
429 {
430         struct rte_pci_addr *out = addr;
431         struct rte_pci_addr pci_addr;
432         bool parse;
433
434         parse = (rte_pci_addr_parse(name, &pci_addr) == 0);
435         if (parse && addr != NULL)
436                 *out = pci_addr;
437         return parse == false;
438 }
439
440 /* register a driver */
441 void
442 rte_pci_register(struct rte_pci_driver *driver)
443 {
444         TAILQ_INSERT_TAIL(&rte_pci_bus.driver_list, driver, next);
445         driver->bus = &rte_pci_bus;
446 }
447
448 /* unregister a driver */
449 void
450 rte_pci_unregister(struct rte_pci_driver *driver)
451 {
452         TAILQ_REMOVE(&rte_pci_bus.driver_list, driver, next);
453         driver->bus = NULL;
454 }
455
456 /* Add a device to PCI bus */
457 void
458 rte_pci_add_device(struct rte_pci_device *pci_dev)
459 {
460         TAILQ_INSERT_TAIL(&rte_pci_bus.device_list, pci_dev, next);
461 }
462
463 /* Insert a device into a predefined position in PCI bus */
464 void
465 rte_pci_insert_device(struct rte_pci_device *exist_pci_dev,
466                       struct rte_pci_device *new_pci_dev)
467 {
468         TAILQ_INSERT_BEFORE(exist_pci_dev, new_pci_dev, next);
469 }
470
471 /* Remove a device from PCI bus */
472 static void
473 rte_pci_remove_device(struct rte_pci_device *pci_dev)
474 {
475         TAILQ_REMOVE(&rte_pci_bus.device_list, pci_dev, next);
476 }
477
478 static struct rte_device *
479 pci_find_device(const struct rte_device *start, rte_dev_cmp_t cmp,
480                 const void *data)
481 {
482         const struct rte_pci_device *pstart;
483         struct rte_pci_device *pdev;
484
485         if (start != NULL) {
486                 pstart = RTE_DEV_TO_PCI_CONST(start);
487                 pdev = TAILQ_NEXT(pstart, next);
488         } else {
489                 pdev = TAILQ_FIRST(&rte_pci_bus.device_list);
490         }
491         while (pdev != NULL) {
492                 if (cmp(&pdev->device, data) == 0)
493                         return &pdev->device;
494                 pdev = TAILQ_NEXT(pdev, next);
495         }
496         return NULL;
497 }
498
499 /*
500  * find the device which encounter the failure, by iterate over all device on
501  * PCI bus to check if the memory failure address is located in the range
502  * of the BARs of the device.
503  */
504 static struct rte_pci_device *
505 pci_find_device_by_addr(const void *failure_addr)
506 {
507         struct rte_pci_device *pdev = NULL;
508         uint64_t check_point, start, end, len;
509         int i;
510
511         check_point = (uint64_t)(uintptr_t)failure_addr;
512
513         FOREACH_DEVICE_ON_PCIBUS(pdev) {
514                 for (i = 0; i != RTE_DIM(pdev->mem_resource); i++) {
515                         start = (uint64_t)(uintptr_t)pdev->mem_resource[i].addr;
516                         len = pdev->mem_resource[i].len;
517                         end = start + len;
518                         if (check_point >= start && check_point < end) {
519                                 RTE_LOG(DEBUG, EAL, "Failure address %16.16"
520                                         PRIx64" belongs to device %s!\n",
521                                         check_point, pdev->device.name);
522                                 return pdev;
523                         }
524                 }
525         }
526         return NULL;
527 }
528
529 static int
530 pci_hot_unplug_handler(struct rte_device *dev)
531 {
532         struct rte_pci_device *pdev = NULL;
533         int ret = 0;
534
535         pdev = RTE_DEV_TO_PCI(dev);
536         if (!pdev)
537                 return -1;
538
539         switch (pdev->kdrv) {
540 #ifdef HAVE_VFIO_DEV_REQ_INTERFACE
541         case RTE_PCI_KDRV_VFIO:
542                 /*
543                  * vfio kernel module guaranty the pci device would not be
544                  * deleted until the user space release the resource, so no
545                  * need to remap BARs resource here, just directly notify
546                  * the req event to the user space to handle it.
547                  */
548                 rte_dev_event_callback_process(dev->name,
549                                                RTE_DEV_EVENT_REMOVE);
550                 break;
551 #endif
552         case RTE_PCI_KDRV_IGB_UIO:
553         case RTE_PCI_KDRV_UIO_GENERIC:
554         case RTE_PCI_KDRV_NIC_UIO:
555                 /* BARs resource is invalid, remap it to be safe. */
556                 ret = pci_uio_remap_resource(pdev);
557                 break;
558         default:
559                 RTE_LOG(DEBUG, EAL,
560                         "Not managed by a supported kernel driver, skipped\n");
561                 ret = -1;
562                 break;
563         }
564
565         return ret;
566 }
567
568 static int
569 pci_sigbus_handler(const void *failure_addr)
570 {
571         struct rte_pci_device *pdev = NULL;
572         int ret = 0;
573
574         pdev = pci_find_device_by_addr(failure_addr);
575         if (!pdev) {
576                 /* It is a generic sigbus error, no bus would handle it. */
577                 ret = 1;
578         } else {
579                 /* The sigbus error is caused of hot-unplug. */
580                 ret = pci_hot_unplug_handler(&pdev->device);
581                 if (ret) {
582                         RTE_LOG(ERR, EAL,
583                                 "Failed to handle hot-unplug for device %s",
584                                 pdev->name);
585                         ret = -1;
586                 }
587         }
588         return ret;
589 }
590
591 static int
592 pci_plug(struct rte_device *dev)
593 {
594         return pci_probe_all_drivers(RTE_DEV_TO_PCI(dev));
595 }
596
597 static int
598 pci_unplug(struct rte_device *dev)
599 {
600         struct rte_pci_device *pdev;
601         int ret;
602
603         pdev = RTE_DEV_TO_PCI(dev);
604         ret = rte_pci_detach_dev(pdev);
605         if (ret == 0) {
606                 rte_pci_remove_device(pdev);
607                 rte_devargs_remove(dev->devargs);
608                 free(pdev);
609         }
610         return ret;
611 }
612
613 static int
614 pci_dma_map(struct rte_device *dev, void *addr, uint64_t iova, size_t len)
615 {
616         struct rte_pci_device *pdev = RTE_DEV_TO_PCI(dev);
617
618         if (!pdev || !pdev->driver) {
619                 rte_errno = EINVAL;
620                 return -1;
621         }
622         if (pdev->driver->dma_map)
623                 return pdev->driver->dma_map(pdev, addr, iova, len);
624         /**
625          *  In case driver don't provides any specific mapping
626          *  try fallback to VFIO.
627          */
628         if (pdev->kdrv == RTE_PCI_KDRV_VFIO)
629                 return rte_vfio_container_dma_map
630                                 (RTE_VFIO_DEFAULT_CONTAINER_FD, (uintptr_t)addr,
631                                  iova, len);
632         rte_errno = ENOTSUP;
633         return -1;
634 }
635
636 static int
637 pci_dma_unmap(struct rte_device *dev, void *addr, uint64_t iova, size_t len)
638 {
639         struct rte_pci_device *pdev = RTE_DEV_TO_PCI(dev);
640
641         if (!pdev || !pdev->driver) {
642                 rte_errno = EINVAL;
643                 return -1;
644         }
645         if (pdev->driver->dma_unmap)
646                 return pdev->driver->dma_unmap(pdev, addr, iova, len);
647         /**
648          *  In case driver don't provides any specific mapping
649          *  try fallback to VFIO.
650          */
651         if (pdev->kdrv == RTE_PCI_KDRV_VFIO)
652                 return rte_vfio_container_dma_unmap
653                                 (RTE_VFIO_DEFAULT_CONTAINER_FD, (uintptr_t)addr,
654                                  iova, len);
655         rte_errno = ENOTSUP;
656         return -1;
657 }
658
659 bool
660 rte_pci_ignore_device(const struct rte_pci_addr *pci_addr)
661 {
662         struct rte_devargs *devargs = pci_devargs_lookup(pci_addr);
663
664         switch (rte_pci_bus.bus.conf.scan_mode) {
665         case RTE_BUS_SCAN_ALLOWLIST:
666                 if (devargs && devargs->policy == RTE_DEV_ALLOWED)
667                         return false;
668                 break;
669         case RTE_BUS_SCAN_UNDEFINED:
670         case RTE_BUS_SCAN_BLOCKLIST:
671                 if (devargs == NULL || devargs->policy != RTE_DEV_BLOCKED)
672                         return false;
673                 break;
674         }
675         return true;
676 }
677
678 enum rte_iova_mode
679 rte_pci_get_iommu_class(void)
680 {
681         enum rte_iova_mode iova_mode = RTE_IOVA_DC;
682         const struct rte_pci_device *dev;
683         const struct rte_pci_driver *drv;
684         bool devices_want_va = false;
685         bool devices_want_pa = false;
686         int iommu_no_va = -1;
687
688         FOREACH_DEVICE_ON_PCIBUS(dev) {
689                 /*
690                  * We can check this only once, because the IOMMU hardware is
691                  * the same for all of them.
692                  */
693                 if (iommu_no_va == -1)
694                         iommu_no_va = pci_device_iommu_support_va(dev)
695                                         ? 0 : 1;
696
697                 if (dev->kdrv == RTE_PCI_KDRV_UNKNOWN ||
698                     dev->kdrv == RTE_PCI_KDRV_NONE)
699                         continue;
700                 FOREACH_DRIVER_ON_PCIBUS(drv) {
701                         enum rte_iova_mode dev_iova_mode;
702
703                         if (!rte_pci_match(drv, dev))
704                                 continue;
705
706                         dev_iova_mode = pci_device_iova_mode(drv, dev);
707                         RTE_LOG(DEBUG, EAL, "PCI driver %s for device "
708                                 PCI_PRI_FMT " wants IOVA as '%s'\n",
709                                 drv->driver.name,
710                                 dev->addr.domain, dev->addr.bus,
711                                 dev->addr.devid, dev->addr.function,
712                                 dev_iova_mode == RTE_IOVA_DC ? "DC" :
713                                 (dev_iova_mode == RTE_IOVA_PA ? "PA" : "VA"));
714                         if (dev_iova_mode == RTE_IOVA_PA)
715                                 devices_want_pa = true;
716                         else if (dev_iova_mode == RTE_IOVA_VA)
717                                 devices_want_va = true;
718                 }
719         }
720         if (iommu_no_va == 1) {
721                 iova_mode = RTE_IOVA_PA;
722                 if (devices_want_va) {
723                         RTE_LOG(WARNING, EAL, "Some devices want 'VA' but IOMMU does not support 'VA'.\n");
724                         RTE_LOG(WARNING, EAL, "The devices that want 'VA' won't initialize.\n");
725                 }
726         } else if (devices_want_va && !devices_want_pa) {
727                 iova_mode = RTE_IOVA_VA;
728         } else if (devices_want_pa && !devices_want_va) {
729                 iova_mode = RTE_IOVA_PA;
730         } else {
731                 iova_mode = RTE_IOVA_DC;
732                 if (devices_want_va) {
733                         RTE_LOG(WARNING, EAL, "Some devices want 'VA' but forcing 'DC' because other devices want 'PA'.\n");
734                         RTE_LOG(WARNING, EAL, "Depending on the final decision by the EAL, not all devices may be able to initialize.\n");
735                 }
736         }
737         return iova_mode;
738 }
739
740 off_t
741 rte_pci_find_ext_capability(struct rte_pci_device *dev, uint32_t cap)
742 {
743         off_t offset = RTE_PCI_CFG_SPACE_SIZE;
744         uint32_t header;
745         int ttl;
746
747         /* minimum 8 bytes per capability */
748         ttl = (RTE_PCI_CFG_SPACE_EXP_SIZE - RTE_PCI_CFG_SPACE_SIZE) / 8;
749
750         if (rte_pci_read_config(dev, &header, 4, offset) < 0) {
751                 RTE_LOG(ERR, EAL, "error in reading extended capabilities\n");
752                 return -1;
753         }
754
755         /*
756          * If we have no capabilities, this is indicated by cap ID,
757          * cap version and next pointer all being 0.
758          */
759         if (header == 0)
760                 return 0;
761
762         while (ttl != 0) {
763                 if (RTE_PCI_EXT_CAP_ID(header) == cap)
764                         return offset;
765
766                 offset = RTE_PCI_EXT_CAP_NEXT(header);
767
768                 if (offset < RTE_PCI_CFG_SPACE_SIZE)
769                         break;
770
771                 if (rte_pci_read_config(dev, &header, 4, offset) < 0) {
772                         RTE_LOG(ERR, EAL,
773                                 "error in reading extended capabilities\n");
774                         return -1;
775                 }
776
777                 ttl--;
778         }
779
780         return 0;
781 }
782
783 int
784 rte_pci_set_bus_master(struct rte_pci_device *dev, bool enable)
785 {
786         uint16_t old_cmd, cmd;
787
788         if (rte_pci_read_config(dev, &old_cmd, sizeof(old_cmd),
789                                 RTE_PCI_COMMAND) < 0) {
790                 RTE_LOG(ERR, EAL, "error in reading PCI command register\n");
791                 return -1;
792         }
793
794         if (enable)
795                 cmd = old_cmd | RTE_PCI_COMMAND_MASTER;
796         else
797                 cmd = old_cmd & ~RTE_PCI_COMMAND_MASTER;
798
799         if (cmd == old_cmd)
800                 return 0;
801
802         if (rte_pci_write_config(dev, &cmd, sizeof(cmd),
803                                  RTE_PCI_COMMAND) < 0) {
804                 RTE_LOG(ERR, EAL, "error in writing PCI command register\n");
805                 return -1;
806         }
807
808         return 0;
809 }
810
811 struct rte_pci_bus rte_pci_bus = {
812         .bus = {
813                 .scan = rte_pci_scan,
814                 .probe = pci_probe,
815                 .find_device = pci_find_device,
816                 .plug = pci_plug,
817                 .unplug = pci_unplug,
818                 .parse = pci_parse,
819                 .devargs_parse = rte_pci_devargs_parse,
820                 .dma_map = pci_dma_map,
821                 .dma_unmap = pci_dma_unmap,
822                 .get_iommu_class = rte_pci_get_iommu_class,
823                 .dev_iterate = rte_pci_dev_iterate,
824                 .hot_unplug_handler = pci_hot_unplug_handler,
825                 .sigbus_handler = pci_sigbus_handler,
826         },
827         .device_list = TAILQ_HEAD_INITIALIZER(rte_pci_bus.device_list),
828         .driver_list = TAILQ_HEAD_INITIALIZER(rte_pci_bus.driver_list),
829 };
830
831 RTE_REGISTER_BUS(pci, rte_pci_bus.bus);