lib: update tailq api
[dpdk.git] / lib / librte_eal / linuxapp / eal / eal_pci.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2012 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
35 #include <ctype.h>
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <stdarg.h>
40 #include <unistd.h>
41 #include <inttypes.h>
42 #include <sys/types.h>
43 #include <sys/stat.h>
44 #include <fcntl.h>
45 #include <stdarg.h>
46 #include <errno.h>
47 #include <dirent.h>
48 #include <limits.h>
49 #include <sys/queue.h>
50 #include <sys/mman.h>
51 #include <sys/ioctl.h>
52
53 #include <rte_interrupts.h>
54 #include <rte_log.h>
55 #include <rte_pci.h>
56 #include <rte_common.h>
57 #include <rte_launch.h>
58 #include <rte_memory.h>
59 #include <rte_memzone.h>
60 #include <rte_tailq.h>
61 #include <rte_eal.h>
62 #include <rte_eal_memconfig.h>
63 #include <rte_per_lcore.h>
64 #include <rte_lcore.h>
65 #include <rte_malloc.h>
66 #include <rte_string_fns.h>
67 #include <rte_debug.h>
68
69 #include "eal_internal_cfg.h"
70 #include "eal_filesystem.h"
71 #include "eal_private.h"
72
73 /**
74  * @file
75  * PCI probing under linux
76  *
77  * This code is used to simulate a PCI probe by parsing information in
78  * sysfs. Moreover, when a registered driver matches a device, the
79  * kernel driver currently using it is unloaded and replaced by
80  * igb_uio module, which is a very minimal userland driver for Intel
81  * network card, only providing access to PCI BAR to applications, and
82  * enabling bus master.
83  */
84
85
86 #define PROC_MODULES "/proc/modules"
87
88 #define IGB_UIO_NAME "igb_uio"
89
90 #define UIO_NEWID "/sys/bus/pci/drivers/%s/new_id"
91 #define UIO_BIND  "/sys/bus/pci/drivers/%s/bind"
92
93 /* maximum time to wait that /dev/uioX appears */
94 #define UIO_DEV_WAIT_TIMEOUT 3 /* seconds */
95
96 /*
97  * For multi-process we need to reproduce all PCI mappings in secondary
98  * processes, so save them in a tailq.
99  */
100 struct uio_resource {
101         TAILQ_ENTRY(uio_resource) next;
102
103         struct rte_pci_addr pci_addr;
104         void *addr;
105         char path[PATH_MAX];
106         unsigned long size;
107         unsigned long offset;
108 };
109
110 TAILQ_HEAD(uio_res_list, uio_resource);
111
112 static struct uio_res_list *uio_res_list = NULL;
113
114 /*
115  * Check that a kernel module is loaded. Returns 0 on success, or if the
116  * parameter is NULL, or -1 if the module is not loaded.
117  */
118 static int
119 pci_uio_check_module(const char *module_name)
120 {
121         FILE *f;
122         unsigned i;
123         char buf[BUFSIZ];
124
125         if (module_name == NULL)
126                 return 0;
127
128         f = fopen(PROC_MODULES, "r");
129         if (f == NULL) {
130                 RTE_LOG(ERR, EAL, "Cannot open "PROC_MODULES"\n");
131                 return -1;
132         }
133
134         while(fgets(buf, sizeof(buf), f) != NULL) {
135
136                 for (i = 0; i < sizeof(buf) && buf[i] != '\0'; i++) {
137                         if (isspace(buf[i]))
138                             buf[i] = '\0';
139                 }
140
141                 if (strncmp(buf, module_name, sizeof(buf)) == 0) {
142                         fclose(f);
143                         return 0;
144                 }
145         }
146         fclose(f);
147         RTE_LOG(ERR, EAL, "Cannot find %s in "PROC_MODULES"\n", module_name);
148         return -1;
149 }
150
151 /* bind a PCI to the kernel module driver */
152 static int
153 pci_uio_bind_device(struct rte_pci_device *dev, const char *module_name)
154 {
155         FILE *f;
156         int n;
157         char buf[BUFSIZ];
158         char uio_newid[PATH_MAX];
159         char uio_bind[PATH_MAX];
160         struct rte_pci_addr *loc = &dev->addr;
161
162         RTE_LOG(DEBUG, EAL, "bind PCI device "PCI_PRI_FMT" to %s driver\n",
163                 loc->domain, loc->bus, loc->devid, loc->function, module_name);
164
165         n = rte_snprintf(uio_newid, sizeof(uio_newid), UIO_NEWID, module_name);
166         if ((n < 0) || (n >= (int)sizeof(uio_newid))) {
167                 RTE_LOG(ERR, EAL, "Cannot rte_snprintf uio_newid name\n");
168                 return -1;
169         }
170         n = rte_snprintf(uio_bind, sizeof(uio_bind), UIO_BIND, module_name);
171         if ((n < 0) || (n >= (int)sizeof(uio_bind))) {
172                 RTE_LOG(ERR, EAL, "Cannot rte_snprintf uio_bind name\n");
173                 return -1;
174         }
175
176         n = rte_snprintf(buf, sizeof(buf), "%x %x\n",
177                         dev->id.vendor_id, dev->id.device_id);
178         if ((n < 0) || (n >= (int)sizeof(buf))) {
179                 RTE_LOG(ERR, EAL, "Cannot rte_snprintf vendor_id/device_id\n");
180                 return -1;
181         }
182
183         f = fopen(uio_newid, "w");
184         if (f == NULL) {
185                 RTE_LOG(ERR, EAL, "Cannot open %s\n", uio_newid);
186                 return -1;
187         }
188         if (fwrite(buf, n, 1, f) == 0) {
189                 fclose(f);
190                 return -1;
191         }
192         fclose(f);
193
194         f = fopen(uio_bind, "w");
195         if (f == NULL) {
196                 RTE_LOG(ERR, EAL, "Cannot open %s\n", uio_bind);
197                 return -1;
198         }
199         n = rte_snprintf(buf, sizeof(buf), PCI_PRI_FMT "\n",
200                          loc->domain, loc->bus, loc->devid, loc->function);
201         if ((n < 0) || (n >= (int)sizeof(buf))) {
202                 RTE_LOG(ERR, EAL, "Cannot rte_snprintf PCI infos\n");
203                 fclose(f);
204                 return -1;
205         }
206         if (fwrite(buf, n, 1, f) == 0) {
207                 fclose(f);
208                 return -1;
209         }
210
211         RTE_LOG(DEBUG, EAL, "Device bound\n");
212
213         fclose(f);
214         return 0;
215 }
216
217 /* map a particular resource from a file */
218 static void *
219 pci_map_resource(struct rte_pci_device *dev, void *requested_addr, const char *devname,
220                 unsigned long offset, unsigned long size)
221 {
222         unsigned n;
223         int fd;
224         void *mapaddr;
225
226         /*
227          * open devname, and mmap it: it can take some time to
228          * appear, so we wait some time before returning an error
229          */
230         for (n=0; n<UIO_DEV_WAIT_TIMEOUT*10; n++) {
231                 fd = open(devname, O_RDWR);
232                 if (fd >= 0)
233                         break;
234                 if (errno != ENOENT)
235                         break;
236                 usleep(100000);
237         }
238         if (fd < 0) {
239                 RTE_LOG(ERR, EAL, "Cannot open %s: %s\n", devname, strerror(errno));
240                 goto fail;
241         }
242
243         /* Map the PCI memory resource of device */
244         mapaddr = mmap(requested_addr, size, PROT_READ | PROT_WRITE,
245                         MAP_SHARED, fd, offset);
246         if (mapaddr == MAP_FAILED ||
247                         (requested_addr != NULL && mapaddr != requested_addr)) {
248                 RTE_LOG(ERR, EAL, "%s(): cannot mmap %s: %s\n", __func__,
249                         devname, strerror(errno));
250                 close(fd);
251                 goto fail;
252         }
253         if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
254                 /* save fd if in primary process */
255                 dev->intr_handle.fd = fd;
256                 dev->intr_handle.type = RTE_INTR_HANDLE_UIO;
257         } else {
258                 /* fd is not needed in slave process, close it */
259                 dev->intr_handle.fd = -1;
260                 dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
261                 close(fd);
262         }
263
264         RTE_LOG(DEBUG, EAL, "PCI memory mapped at %p\n", mapaddr);
265
266         return mapaddr;
267
268 fail:
269         dev->intr_handle.fd = -1;
270         dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
271
272         return NULL;
273 }
274 /* map the PCI resource of a PCI device in virtual memory */
275 static int
276 pci_uio_map_resource(struct rte_pci_device *dev)
277 {
278         struct dirent *e;
279         DIR *dir;
280         char dirname[PATH_MAX];
281         char dirname2[PATH_MAX];
282         char filename[PATH_MAX];
283         char devname[PATH_MAX]; /* contains the /dev/uioX */
284         void *mapaddr;
285         unsigned uio_num;
286         unsigned long size, offset;
287         struct rte_pci_addr *loc = &dev->addr;
288         struct uio_resource *uio_res;
289
290         RTE_LOG(DEBUG, EAL, "map PCI resource for device "PCI_PRI_FMT"\n",
291                 loc->domain, loc->bus, loc->devid, loc->function);
292
293         /* secondary processes - use already recorded details */
294         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
295
296                         TAILQ_FOREACH(uio_res, uio_res_list, next) {
297                                 /* skip this element if it doesn't match our PCI address */
298                                 if (memcmp(&uio_res->pci_addr, &dev->addr, sizeof(dev->addr)))
299                                         continue;
300
301                                 if (pci_map_resource(dev, uio_res->addr, uio_res->path, \
302                                                 uio_res->offset, uio_res->size) == uio_res->addr)
303                                         return 0;
304                                 else {
305                                         RTE_LOG(ERR, EAL, "Cannot mmap device resource\n");
306                                         return -1;
307                                 }
308                         }
309                         RTE_LOG(ERR, EAL, "Cannot find resource for device\n");
310                         return -1;
311         }
312
313         /* depending on kernel version, uio can be located in uio/uioX
314          * or uio:uioX */
315
316         rte_snprintf(dirname, sizeof(dirname),
317                  "/sys/bus/pci/devices/" PCI_PRI_FMT "/uio",
318                  loc->domain, loc->bus, loc->devid, loc->function);
319
320         dir = opendir(dirname);
321         if (dir == NULL) {
322                 /* retry with the parent directory */
323                 rte_snprintf(dirname, sizeof(dirname),
324                          "/sys/bus/pci/devices/" PCI_PRI_FMT,
325                          loc->domain, loc->bus, loc->devid, loc->function);
326                 dir = opendir(dirname);
327
328                 if (dir == NULL) {
329                         RTE_LOG(ERR, EAL, "Cannot opendir %s\n", dirname);
330                         return -1;
331                 }
332         }
333
334         /* take the first file starting with "uio" */
335         while ((e = readdir(dir)) != NULL) {
336                 int shortprefix_len = sizeof("uio") - 1; /* format could be uio%d ...*/
337                 int longprefix_len = sizeof("uio:uio") - 1; /* ... or uio:uio%d */
338                 char *endptr;
339
340                 if (strncmp(e->d_name, "uio", 3) != 0)
341                         continue;
342
343                 /* first try uio%d */
344                 errno = 0;
345                 uio_num = strtoull(e->d_name + shortprefix_len, &endptr, 10);
346                 if (errno == 0 && endptr != e->d_name) {
347                         rte_snprintf(dirname2, sizeof(dirname2),
348                                  "%s/uio%u", dirname, uio_num);
349                         break;
350                 }
351
352                 /* then try uio:uio%d */
353                 errno = 0;
354                 uio_num = strtoull(e->d_name + longprefix_len, &endptr, 10);
355                 if (errno == 0 && endptr != e->d_name) {
356                         rte_snprintf(dirname2, sizeof(dirname2),
357                                  "%s/uio:uio%u", dirname, uio_num);
358                         break;
359                 }
360         }
361         closedir(dir);
362
363         /* No uio resource found */
364         if (e == NULL)
365                 return 0;
366
367         /* get mapping offset */
368         rte_snprintf(filename, sizeof(filename),
369                  "%s/maps/map0/offset", dirname2);
370         if (eal_parse_sysfs_value(filename, &offset) < 0) {
371                 RTE_LOG(ERR, EAL, "%s(): cannot parse offset\n",
372                         __func__);
373                 return -1;
374         }
375
376         /* get mapping size */
377         rte_snprintf(filename, sizeof(filename),
378                  "%s/maps/map0/size", dirname2);
379         if (eal_parse_sysfs_value(filename, &size) < 0) {
380                 RTE_LOG(ERR, EAL, "%s(): cannot parse size\n",
381                         __func__);
382                 return -1;
383         }
384
385         /* open and mmap /dev/uioX */
386         rte_snprintf(devname, sizeof(devname), "/dev/uio%u", uio_num);
387         mapaddr = pci_map_resource(dev, NULL, devname, offset, size);
388         if (mapaddr == NULL)
389                 return -1;
390         dev->mem_resource.addr = mapaddr;
391
392         /* save the mapping details for secondary processes*/
393         uio_res = rte_malloc("UIO_RES", sizeof(*uio_res), 0);
394         if (uio_res == NULL){
395                 RTE_LOG(ERR, EAL, "%s(): cannot store uio mmap details\n", __func__);
396                 return -1;
397         }
398         uio_res->addr = mapaddr;
399         uio_res->offset = offset;
400         uio_res->size = size;
401         rte_snprintf(uio_res->path, sizeof(uio_res->path), "%s", devname);
402         memcpy(&uio_res->pci_addr, &dev->addr, sizeof(uio_res->pci_addr));
403
404         TAILQ_INSERT_TAIL(uio_res_list, uio_res, next);
405
406         return 0;
407 }
408
409 /* parse the "resource" sysfs file */
410 #define IORESOURCE_MEM  0x00000200
411
412 static int
413 pci_parse_sysfs_resource(const char *filename, struct rte_pci_device *dev)
414 {
415         FILE *f;
416         char buf[BUFSIZ];
417         union pci_resource_info {
418                 struct {
419                         char *phys_addr;
420                         char *end_addr;
421                         char *flags;
422                 };
423                 char *ptrs[PCI_RESOURCE_FMT_NVAL];
424         } res_info;
425         int i;
426         uint64_t phys_addr, end_addr, flags;
427
428         f = fopen(filename, "r");
429         if (f == NULL) {
430                 RTE_LOG(ERR, EAL, "Cannot open sysfs resource\n");
431                 return -1;
432         }
433
434         for (i = 0; i<PCI_MAX_RESOURCE; i++) {
435
436                 if (fgets(buf, sizeof(buf), f) == NULL) {
437                         RTE_LOG(ERR, EAL, "%s(): cannot read resource\n", __func__);
438                         goto error;
439                 }
440
441                 if (rte_strsplit(buf, sizeof(buf), res_info.ptrs, 3, ' ') != 3) {
442                         RTE_LOG(ERR, EAL, "%s(): bad resource format\n", __func__);
443                         goto error;
444                 }
445                 errno = 0;
446                 phys_addr = strtoull(res_info.phys_addr, NULL, 16);
447                 end_addr = strtoull(res_info.end_addr, NULL, 16);
448                 flags = strtoull(res_info.flags, NULL, 16);
449                 if (errno != 0) {
450                         RTE_LOG(ERR, EAL, "%s(): bad resource format\n", __func__);
451                         goto error;
452                 }
453
454                 if (flags & IORESOURCE_MEM) {
455                         dev->mem_resource.phys_addr = phys_addr;
456                         dev->mem_resource.len = end_addr - phys_addr + 1;
457                         dev->mem_resource.addr = NULL; /* not mapped for now */
458                         break;
459                 }
460         }
461         fclose(f);
462         return 0;
463
464 error:
465         fclose(f);
466         return -1;
467 }
468
469
470 /* Scan one pci sysfs entry, and fill the devices list from it. */
471 static int
472 pci_scan_one(const char *dirname, uint16_t domain, uint8_t bus,
473              uint8_t devid, uint8_t function)
474 {
475         char filename[PATH_MAX];
476         unsigned long tmp;
477         struct rte_pci_device *dev;
478
479         dev = malloc(sizeof(*dev));
480         if (dev == NULL) {
481                 return -1;
482         }
483
484         memset(dev, 0, sizeof(*dev));
485         dev->addr.domain = domain;
486         dev->addr.bus = bus;
487         dev->addr.devid = devid;
488         dev->addr.function = function;
489
490         /* get vendor id */
491         rte_snprintf(filename, sizeof(filename), "%s/vendor", dirname);
492         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
493                 free(dev);
494                 return -1;
495         }
496         dev->id.vendor_id = (uint16_t)tmp;
497
498         /* get device id */
499         rte_snprintf(filename, sizeof(filename), "%s/device", dirname);
500         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
501                 free(dev);
502                 return -1;
503         }
504         dev->id.device_id = (uint16_t)tmp;
505
506         /* get subsystem_vendor id */
507         rte_snprintf(filename, sizeof(filename), "%s/subsystem_vendor",
508                  dirname);
509         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
510                 free(dev);
511                 return -1;
512         }
513         dev->id.subsystem_vendor_id = (uint16_t)tmp;
514
515         /* get subsystem_device id */
516         rte_snprintf(filename, sizeof(filename), "%s/subsystem_device",
517                  dirname);
518         if (eal_parse_sysfs_value(filename, &tmp) < 0) {
519                 free(dev);
520                 return -1;
521         }
522         dev->id.subsystem_device_id = (uint16_t)tmp;
523
524         /* parse resources */
525         rte_snprintf(filename, sizeof(filename), "%s/resource", dirname);
526         if (pci_parse_sysfs_resource(filename, dev) < 0) {
527                 RTE_LOG(ERR, EAL, "%s(): cannot parse resource\n", __func__);
528                 free(dev);
529                 return -1;
530         }
531
532         /* device is valid, add in list */
533         TAILQ_INSERT_TAIL(&device_list, dev, next);
534
535         return 0;
536 }
537
538 /*
539  * split up a pci address into its constituent parts.
540  */
541 static int
542 parse_pci_addr_format(const char *buf, int bufsize, uint16_t *domain,
543                 uint8_t *bus, uint8_t *devid, uint8_t *function)
544 {
545         /* first split on ':' */
546         union splitaddr {
547                 struct {
548                         char *domain;
549                         char *bus;
550                         char *devid;
551                         char *function;
552                 };
553                 char *str[PCI_FMT_NVAL]; /* last element-separator is "." not ":" */
554         } splitaddr;
555
556         char *buf_copy = strndup(buf, bufsize);
557         if (buf_copy == NULL)
558                 return -1;
559
560         if (rte_strsplit(buf_copy, bufsize, splitaddr.str, PCI_FMT_NVAL, ':')
561                         != PCI_FMT_NVAL - 1)
562                 goto error;
563         /* final split is on '.' between devid and function */
564         splitaddr.function = strchr(splitaddr.devid,'.');
565         if (splitaddr.function == NULL)
566                 goto error;
567         *splitaddr.function++ = '\0';
568
569         /* now convert to int values */
570         errno = 0;
571         *domain = (uint8_t)strtoul(splitaddr.domain, NULL, 16);
572         *bus = (uint8_t)strtoul(splitaddr.bus, NULL, 16);
573         *devid = (uint8_t)strtoul(splitaddr.devid, NULL, 16);
574         *function = (uint8_t)strtoul(splitaddr.function, NULL, 10);
575         if (errno != 0)
576                 goto error;
577
578         free(buf_copy); /* free the copy made with strdup */
579         return 0;
580 error:
581         free(buf_copy);
582         return -1;
583 }
584
585 /*
586  * Scan the content of the PCI bus, and the devices in the devices
587  * list
588  */
589 static int
590 pci_scan(void)
591 {
592         struct dirent *e;
593         DIR *dir;
594         char dirname[PATH_MAX];
595         uint16_t domain;
596         uint8_t bus, devid, function;
597
598         dir = opendir(SYSFS_PCI_DEVICES);
599         if (dir == NULL) {
600                 RTE_LOG(ERR, EAL, "%s(): opendir failed: %s\n",
601                         __func__, strerror(errno));
602                 return -1;
603         }
604
605         while ((e = readdir(dir)) != NULL) {
606                 if (e->d_name[0] == '.')
607                         continue;
608
609                 if (parse_pci_addr_format(e->d_name, sizeof(e->d_name), &domain,
610                                 &bus, &devid, &function) != 0)
611                         continue;
612
613                 rte_snprintf(dirname, sizeof(dirname), "%s/%s", SYSFS_PCI_DEVICES,
614                          e->d_name);
615                 if (pci_scan_one(dirname, domain, bus, devid, function) < 0)
616                         goto error;
617         }
618         closedir(dir);
619         return 0;
620
621 error:
622         closedir(dir);
623         return -1;
624 }
625
626 /* unbind kernel driver for this device */
627 static int
628 pci_unbind_kernel_driver(struct rte_pci_device *dev)
629 {
630         int n;
631         FILE *f;
632         char filename[PATH_MAX];
633         char buf[BUFSIZ];
634         struct rte_pci_addr *loc = &dev->addr;
635
636         /* open /sys/bus/pci/devices/AAAA:BB:CC.D/driver */
637         rte_snprintf(filename, sizeof(filename),
638                  SYSFS_PCI_DEVICES "/" PCI_PRI_FMT "/driver/unbind",
639                  loc->domain, loc->bus, loc->devid, loc->function);
640
641         RTE_LOG(DEBUG, EAL, "unbind kernel driver %s\n", filename);
642
643         f = fopen(filename, "w");
644         if (f == NULL) /* device was not bound */
645                 return 0;
646
647         n = rte_snprintf(buf, sizeof(buf), PCI_PRI_FMT "\n",
648                      loc->domain, loc->bus, loc->devid, loc->function);
649         if ((n < 0) || (n >= (int)sizeof(buf))) {
650                 RTE_LOG(ERR, EAL, "%s(): rte_snprintf failed\n", __func__);
651                 goto error;
652         }
653         if (fwrite(buf, n, 1, f) == 0)
654                 goto error;
655
656         fclose(f);
657         return 0;
658
659 error:
660         fclose(f);
661         return -1;
662 }
663
664 /*
665  * If vendor/device ID match, call the devinit() function of the
666  * driver.
667  */
668 int
669 rte_eal_pci_probe_one_driver(struct rte_pci_driver *dr, struct rte_pci_device *dev)
670 {
671         struct rte_pci_id *id_table;
672         const char *module_name = NULL;
673         int ret;
674
675         if (dr->drv_flags & RTE_PCI_DRV_NEED_IGB_UIO)
676                 module_name = IGB_UIO_NAME;
677
678         ret = pci_uio_check_module(module_name);
679         if (ret != 0)
680                 rte_exit(1, "The %s module is required by the %s driver\n",
681                                 module_name, dr->name);
682
683         for (id_table = dr->id_table ; id_table->vendor_id != 0; id_table++) {
684
685                 /* check if device's identifiers match the driver's ones */
686                 if (id_table->vendor_id != dev->id.vendor_id &&
687                     id_table->vendor_id != PCI_ANY_ID)
688                         continue;
689                 if (id_table->device_id != dev->id.device_id &&
690                     id_table->device_id != PCI_ANY_ID)
691                         continue;
692                 if (id_table->subsystem_vendor_id != dev->id.subsystem_vendor_id &&
693                     id_table->subsystem_vendor_id != PCI_ANY_ID)
694                         continue;
695                 if (id_table->subsystem_device_id != dev->id.subsystem_device_id &&
696                     id_table->subsystem_device_id != PCI_ANY_ID)
697                         continue;
698
699                 RTE_LOG(DEBUG, EAL, "probe driver: %x:%x %s\n",
700                 dev->id.vendor_id, dev->id.device_id, dr->name);
701
702                 /* Unbind PCI devices if needed */
703                 if (module_name != NULL) {
704                         if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
705                         /* unbind current driver, bind ours */
706                                 if (pci_unbind_kernel_driver(dev) < 0)
707                                         return -1;
708                                 if (pci_uio_bind_device(dev, module_name) < 0)
709                                         return -1;
710                         }
711                         /* map the NIC resources */
712                         if (pci_uio_map_resource(dev) < 0)
713                                 return -1;
714                 }
715                 /* call the driver devinit() function */
716                 return dr->devinit(dr, dev);
717
718         }
719         return -1;
720 }
721
722 /* Init the PCI EAL subsystem */
723 int
724 rte_eal_pci_init(void)
725 {
726         TAILQ_INIT(&driver_list);
727         TAILQ_INIT(&device_list);
728         uio_res_list = RTE_TAILQ_RESERVE_BY_IDX(RTE_TAILQ_PCI, uio_res_list);
729
730         /* for debug purposes, PCI can be disabled */
731         if (internal_config.no_pci)
732                 return 0;
733
734         if (pci_scan() < 0) {
735                 RTE_LOG(ERR, EAL, "%s(): Cannot scan PCI bus\n", __func__);
736                 return -1;
737         }
738         return 0;
739 }