]> git.proxmox.com Git - ceph.git/blame - ceph/src/dpdk/lib/librte_eal/linuxapp/eal/eal_pci.c
bump version to 12.2.12-pve1
[ceph.git] / ceph / src / dpdk / lib / librte_eal / linuxapp / eal / eal_pci.c
CommitLineData
7c673cae
FG
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 */
58int
59pci_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
91error:
92 fclose(f);
93 return -1;
94}
95
96static int
97pci_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 */
126int
127rte_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 */
155void
156rte_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
175void *
176pci_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 */
196int
197pci_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 */
228static int
229pci_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
263error:
264 fclose(f);
265 return -1;
266}
267
268/* Scan one pci sysfs entry, and fill the devices list from it. */
269static int
270pci_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->device.numa_node = 0;
354 } else {
355 if (eal_parse_sysfs_value(filename, &tmp) < 0) {
356 free(dev);
357 return -1;
358 }
359 dev->device.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 rte_eal_device_insert(&dev->device);
394 TAILQ_INSERT_TAIL(&pci_device_list, dev, next);
395 } else {
396 struct rte_pci_device *dev2;
397 int ret;
398
399 TAILQ_FOREACH(dev2, &pci_device_list, next) {
400 ret = rte_eal_compare_pci_addr(&dev->addr, &dev2->addr);
401 if (ret > 0)
402 continue;
403
404 if (ret < 0) {
405 TAILQ_INSERT_BEFORE(dev2, dev, next);
406 rte_eal_device_insert(&dev->device);
407 } else { /* already registered */
408 dev2->kdrv = dev->kdrv;
409 dev2->max_vfs = dev->max_vfs;
410 memmove(dev2->mem_resource, dev->mem_resource,
411 sizeof(dev->mem_resource));
412 free(dev);
413 }
414 return 0;
415 }
416 rte_eal_device_insert(&dev->device);
417 TAILQ_INSERT_TAIL(&pci_device_list, dev, next);
418 }
419
420 return 0;
421}
422
423int
424pci_update_device(const struct rte_pci_addr *addr)
425{
426 char filename[PATH_MAX];
427
428 snprintf(filename, sizeof(filename), "%s/" PCI_PRI_FMT,
429 pci_get_sysfs_path(), addr->domain, addr->bus, addr->devid,
430 addr->function);
431
432 return pci_scan_one(filename, addr->domain, addr->bus, addr->devid,
433 addr->function);
434}
435
436/*
437 * split up a pci address into its constituent parts.
438 */
439static int
440parse_pci_addr_format(const char *buf, int bufsize, uint16_t *domain,
441 uint8_t *bus, uint8_t *devid, uint8_t *function)
442{
443 /* first split on ':' */
444 union splitaddr {
445 struct {
446 char *domain;
447 char *bus;
448 char *devid;
449 char *function;
450 };
451 char *str[PCI_FMT_NVAL]; /* last element-separator is "." not ":" */
452 } splitaddr;
453
454 char *buf_copy = strndup(buf, bufsize);
455 if (buf_copy == NULL)
456 return -1;
457
458 if (rte_strsplit(buf_copy, bufsize, splitaddr.str, PCI_FMT_NVAL, ':')
459 != PCI_FMT_NVAL - 1)
460 goto error;
461 /* final split is on '.' between devid and function */
462 splitaddr.function = strchr(splitaddr.devid,'.');
463 if (splitaddr.function == NULL)
464 goto error;
465 *splitaddr.function++ = '\0';
466
467 /* now convert to int values */
468 errno = 0;
469 *domain = (uint16_t)strtoul(splitaddr.domain, NULL, 16);
470 *bus = (uint8_t)strtoul(splitaddr.bus, NULL, 16);
471 *devid = (uint8_t)strtoul(splitaddr.devid, NULL, 16);
472 *function = (uint8_t)strtoul(splitaddr.function, NULL, 10);
473 if (errno != 0)
474 goto error;
475
476 free(buf_copy); /* free the copy made with strdup */
477 return 0;
478error:
479 free(buf_copy);
480 return -1;
481}
482
483/*
484 * Scan the content of the PCI bus, and the devices in the devices
485 * list
486 */
487int
488rte_eal_pci_scan(void)
489{
490 struct dirent *e;
491 DIR *dir;
492 char dirname[PATH_MAX];
493 uint16_t domain;
494 uint8_t bus, devid, function;
495
496 dir = opendir(pci_get_sysfs_path());
497 if (dir == NULL) {
498 RTE_LOG(ERR, EAL, "%s(): opendir failed: %s\n",
499 __func__, strerror(errno));
500 return -1;
501 }
502
503 while ((e = readdir(dir)) != NULL) {
504 if (e->d_name[0] == '.')
505 continue;
506
507 if (parse_pci_addr_format(e->d_name, sizeof(e->d_name), &domain,
508 &bus, &devid, &function) != 0)
509 continue;
510
511 snprintf(dirname, sizeof(dirname), "%s/%s",
512 pci_get_sysfs_path(), e->d_name);
513 if (pci_scan_one(dirname, domain, bus, devid, function) < 0)
514 goto error;
515 }
516 closedir(dir);
517 return 0;
518
519error:
520 closedir(dir);
521 return -1;
522}
523
524/* Read PCI config space. */
525int rte_eal_pci_read_config(const struct rte_pci_device *device,
526 void *buf, size_t len, off_t offset)
527{
528 const struct rte_intr_handle *intr_handle = &device->intr_handle;
529
530 switch (intr_handle->type) {
531 case RTE_INTR_HANDLE_UIO:
532 case RTE_INTR_HANDLE_UIO_INTX:
533 return pci_uio_read_config(intr_handle, buf, len, offset);
534
535#ifdef VFIO_PRESENT
536 case RTE_INTR_HANDLE_VFIO_MSIX:
537 case RTE_INTR_HANDLE_VFIO_MSI:
538 case RTE_INTR_HANDLE_VFIO_LEGACY:
539 return pci_vfio_read_config(intr_handle, buf, len, offset);
540#endif
541 default:
542 RTE_LOG(ERR, EAL,
543 "Unknown handle type of fd %d\n",
544 intr_handle->fd);
545 return -1;
546 }
547}
548
549/* Write PCI config space. */
550int rte_eal_pci_write_config(const struct rte_pci_device *device,
551 const void *buf, size_t len, off_t offset)
552{
553 const struct rte_intr_handle *intr_handle = &device->intr_handle;
554
555 switch (intr_handle->type) {
556 case RTE_INTR_HANDLE_UIO:
557 case RTE_INTR_HANDLE_UIO_INTX:
558 return pci_uio_write_config(intr_handle, buf, len, offset);
559
560#ifdef VFIO_PRESENT
561 case RTE_INTR_HANDLE_VFIO_MSIX:
562 case RTE_INTR_HANDLE_VFIO_MSI:
563 case RTE_INTR_HANDLE_VFIO_LEGACY:
564 return pci_vfio_write_config(intr_handle, buf, len, offset);
565#endif
566 default:
567 RTE_LOG(ERR, EAL,
568 "Unknown handle type of fd %d\n",
569 intr_handle->fd);
570 return -1;
571 }
572}
573
574#if defined(RTE_ARCH_X86)
575static int
576pci_ioport_map(struct rte_pci_device *dev, int bar __rte_unused,
577 struct rte_pci_ioport *p)
578{
579 uint16_t start, end;
580 FILE *fp;
581 char *line = NULL;
582 char pci_id[16];
583 int found = 0;
584 size_t linesz;
585
586 snprintf(pci_id, sizeof(pci_id), PCI_PRI_FMT,
587 dev->addr.domain, dev->addr.bus,
588 dev->addr.devid, dev->addr.function);
589
590 fp = fopen("/proc/ioports", "r");
591 if (fp == NULL) {
592 RTE_LOG(ERR, EAL, "%s(): can't open ioports\n", __func__);
593 return -1;
594 }
595
596 while (getdelim(&line, &linesz, '\n', fp) > 0) {
597 char *ptr = line;
598 char *left;
599 int n;
600
601 n = strcspn(ptr, ":");
602 ptr[n] = 0;
603 left = &ptr[n + 1];
604
605 while (*left && isspace(*left))
606 left++;
607
608 if (!strncmp(left, pci_id, strlen(pci_id))) {
609 found = 1;
610
611 while (*ptr && isspace(*ptr))
612 ptr++;
613
614 sscanf(ptr, "%04hx-%04hx", &start, &end);
615
616 break;
617 }
618 }
619
620 free(line);
621 fclose(fp);
622
623 if (!found)
624 return -1;
625
626 dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
627 p->base = start;
628 RTE_LOG(DEBUG, EAL, "PCI Port IO found start=0x%x\n", start);
629
630 return 0;
631}
632#endif
633
634int
635rte_eal_pci_ioport_map(struct rte_pci_device *dev, int bar,
636 struct rte_pci_ioport *p)
637{
638 int ret = -1;
639
640 switch (dev->kdrv) {
641#ifdef VFIO_PRESENT
642 case RTE_KDRV_VFIO:
643 if (pci_vfio_is_enabled())
644 ret = pci_vfio_ioport_map(dev, bar, p);
645 break;
646#endif
647 case RTE_KDRV_IGB_UIO:
648 ret = pci_uio_ioport_map(dev, bar, p);
649 break;
650 case RTE_KDRV_UIO_GENERIC:
651#if defined(RTE_ARCH_X86)
652 ret = pci_ioport_map(dev, bar, p);
653#else
654 ret = pci_uio_ioport_map(dev, bar, p);
655#endif
656 break;
657 case RTE_KDRV_NONE:
658#if defined(RTE_ARCH_X86)
659 ret = pci_ioport_map(dev, bar, p);
660#endif
661 break;
662 default:
663 break;
664 }
665
666 if (!ret)
667 p->dev = dev;
668
669 return ret;
670}
671
672void
673rte_eal_pci_ioport_read(struct rte_pci_ioport *p,
674 void *data, size_t len, off_t offset)
675{
676 switch (p->dev->kdrv) {
677#ifdef VFIO_PRESENT
678 case RTE_KDRV_VFIO:
679 pci_vfio_ioport_read(p, data, len, offset);
680 break;
681#endif
682 case RTE_KDRV_IGB_UIO:
683 pci_uio_ioport_read(p, data, len, offset);
684 break;
685 case RTE_KDRV_UIO_GENERIC:
686 pci_uio_ioport_read(p, data, len, offset);
687 break;
688 case RTE_KDRV_NONE:
689#if defined(RTE_ARCH_X86)
690 pci_uio_ioport_read(p, data, len, offset);
691#endif
692 break;
693 default:
694 break;
695 }
696}
697
698void
699rte_eal_pci_ioport_write(struct rte_pci_ioport *p,
700 const void *data, size_t len, off_t offset)
701{
702 switch (p->dev->kdrv) {
703#ifdef VFIO_PRESENT
704 case RTE_KDRV_VFIO:
705 pci_vfio_ioport_write(p, data, len, offset);
706 break;
707#endif
708 case RTE_KDRV_IGB_UIO:
709 pci_uio_ioport_write(p, data, len, offset);
710 break;
711 case RTE_KDRV_UIO_GENERIC:
712 pci_uio_ioport_write(p, data, len, offset);
713 break;
714 case RTE_KDRV_NONE:
715#if defined(RTE_ARCH_X86)
716 pci_uio_ioport_write(p, data, len, offset);
717#endif
718 break;
719 default:
720 break;
721 }
722}
723
724int
725rte_eal_pci_ioport_unmap(struct rte_pci_ioport *p)
726{
727 int ret = -1;
728
729 switch (p->dev->kdrv) {
730#ifdef VFIO_PRESENT
731 case RTE_KDRV_VFIO:
732 if (pci_vfio_is_enabled())
733 ret = pci_vfio_ioport_unmap(p);
734 break;
735#endif
736 case RTE_KDRV_IGB_UIO:
737 ret = pci_uio_ioport_unmap(p);
738 break;
739 case RTE_KDRV_UIO_GENERIC:
740#if defined(RTE_ARCH_X86)
741 ret = 0;
742#else
743 ret = pci_uio_ioport_unmap(p);
744#endif
745 break;
746 case RTE_KDRV_NONE:
747#if defined(RTE_ARCH_X86)
748 ret = 0;
749#endif
750 break;
751 default:
752 break;
753 }
754
755 return ret;
756}
757
758/* Init the PCI EAL subsystem */
759int
760rte_eal_pci_init(void)
761{
762 /* for debug purposes, PCI can be disabled */
763 if (internal_config.no_pci)
764 return 0;
765
766 if (rte_eal_pci_scan() < 0) {
767 RTE_LOG(ERR, EAL, "%s(): Cannot scan PCI bus\n", __func__);
768 return -1;
769 }
770
771 return 0;
772}