bus/pci: use given name as generic name
[dpdk.git] / lib / librte_eal / common / eal_common_pci.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   Copyright 2013-2014 6WIND S.A.
6  *   All rights reserved.
7  *
8  *   Redistribution and use in source and binary forms, with or without
9  *   modification, are permitted provided that the following conditions
10  *   are met:
11  *
12  *     * Redistributions of source code must retain the above copyright
13  *       notice, this list of conditions and the following disclaimer.
14  *     * Redistributions in binary form must reproduce the above copyright
15  *       notice, this list of conditions and the following disclaimer in
16  *       the documentation and/or other materials provided with the
17  *       distribution.
18  *     * Neither the name of Intel Corporation nor the names of its
19  *       contributors may be used to endorse or promote products derived
20  *       from this software without specific prior written permission.
21  *
22  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #include <string.h>
36 #include <inttypes.h>
37 #include <stdint.h>
38 #include <stdlib.h>
39 #include <stdio.h>
40 #include <sys/queue.h>
41 #include <sys/mman.h>
42
43 #include <rte_errno.h>
44 #include <rte_interrupts.h>
45 #include <rte_log.h>
46 #include <rte_bus.h>
47 #include <rte_pci.h>
48 #include <rte_per_lcore.h>
49 #include <rte_memory.h>
50 #include <rte_memcpy.h>
51 #include <rte_memzone.h>
52 #include <rte_eal.h>
53 #include <rte_string_fns.h>
54 #include <rte_common.h>
55 #include <rte_devargs.h>
56
57 #include "eal_private.h"
58
59 extern struct rte_pci_bus rte_pci_bus;
60
61 #define SYSFS_PCI_DEVICES "/sys/bus/pci/devices"
62
63 const char *pci_get_sysfs_path(void)
64 {
65         const char *path = NULL;
66
67         path = getenv("SYSFS_PCI_DEVICES");
68         if (path == NULL)
69                 return SYSFS_PCI_DEVICES;
70
71         return path;
72 }
73
74 static struct rte_devargs *pci_devargs_lookup(struct rte_pci_device *dev)
75 {
76         struct rte_devargs *devargs;
77         struct rte_pci_addr addr;
78         struct rte_bus *pbus;
79
80         pbus = rte_bus_find_by_name("pci");
81         TAILQ_FOREACH(devargs, &devargs_list, next) {
82                 if (devargs->bus != pbus)
83                         continue;
84                 devargs->bus->parse(devargs->name, &addr);
85                 if (!rte_eal_compare_pci_addr(&dev->addr, &addr))
86                         return devargs;
87         }
88         return NULL;
89 }
90
91 void
92 pci_name_set(struct rte_pci_device *dev)
93 {
94         struct rte_devargs *devargs;
95
96         /* Each device has its internal, canonical name set. */
97         rte_pci_device_name(&dev->addr,
98                         dev->name, sizeof(dev->name));
99         devargs = pci_devargs_lookup(dev);
100         dev->device.devargs = devargs;
101         /* In blacklist mode, if the device is not blacklisted, no
102          * rte_devargs exists for it.
103          */
104         if (devargs != NULL)
105                 /* If an rte_devargs exists, the generic rte_device uses the
106                  * given name as its namea
107                  */
108                 dev->device.name = dev->device.devargs->name;
109         else
110                 /* Otherwise, it uses the internal, canonical form. */
111                 dev->device.name = dev->name;
112 }
113
114 /* map a particular resource from a file */
115 void *
116 pci_map_resource(void *requested_addr, int fd, off_t offset, size_t size,
117                  int additional_flags)
118 {
119         void *mapaddr;
120
121         /* Map the PCI memory resource of device */
122         mapaddr = mmap(requested_addr, size, PROT_READ | PROT_WRITE,
123                         MAP_SHARED | additional_flags, fd, offset);
124         if (mapaddr == MAP_FAILED) {
125                 RTE_LOG(ERR, EAL, "%s(): cannot mmap(%d, %p, 0x%lx, 0x%lx): %s (%p)\n",
126                         __func__, fd, requested_addr,
127                         (unsigned long)size, (unsigned long)offset,
128                         strerror(errno), mapaddr);
129         } else
130                 RTE_LOG(DEBUG, EAL, "  PCI memory mapped at %p\n", mapaddr);
131
132         return mapaddr;
133 }
134
135 /* unmap a particular resource */
136 void
137 pci_unmap_resource(void *requested_addr, size_t size)
138 {
139         if (requested_addr == NULL)
140                 return;
141
142         /* Unmap the PCI memory resource of device */
143         if (munmap(requested_addr, size)) {
144                 RTE_LOG(ERR, EAL, "%s(): cannot munmap(%p, 0x%lx): %s\n",
145                         __func__, requested_addr, (unsigned long)size,
146                         strerror(errno));
147         } else
148                 RTE_LOG(DEBUG, EAL, "  PCI memory unmapped at %p\n",
149                                 requested_addr);
150 }
151
152 /*
153  * Match the PCI Driver and Device using the ID Table
154  *
155  * @param pci_drv
156  *      PCI driver from which ID table would be extracted
157  * @param pci_dev
158  *      PCI device to match against the driver
159  * @return
160  *      1 for successful match
161  *      0 for unsuccessful match
162  */
163 static int
164 rte_pci_match(const struct rte_pci_driver *pci_drv,
165               const struct rte_pci_device *pci_dev)
166 {
167         const struct rte_pci_id *id_table;
168
169         for (id_table = pci_drv->id_table; id_table->vendor_id != 0;
170              id_table++) {
171                 /* check if device's identifiers match the driver's ones */
172                 if (id_table->vendor_id != pci_dev->id.vendor_id &&
173                                 id_table->vendor_id != PCI_ANY_ID)
174                         continue;
175                 if (id_table->device_id != pci_dev->id.device_id &&
176                                 id_table->device_id != PCI_ANY_ID)
177                         continue;
178                 if (id_table->subsystem_vendor_id !=
179                     pci_dev->id.subsystem_vendor_id &&
180                     id_table->subsystem_vendor_id != PCI_ANY_ID)
181                         continue;
182                 if (id_table->subsystem_device_id !=
183                     pci_dev->id.subsystem_device_id &&
184                     id_table->subsystem_device_id != PCI_ANY_ID)
185                         continue;
186                 if (id_table->class_id != pci_dev->id.class_id &&
187                                 id_table->class_id != RTE_CLASS_ANY_ID)
188                         continue;
189
190                 return 1;
191         }
192
193         return 0;
194 }
195
196 /*
197  * If vendor/device ID match, call the probe() function of the
198  * driver.
199  */
200 static int
201 rte_pci_probe_one_driver(struct rte_pci_driver *dr,
202                          struct rte_pci_device *dev)
203 {
204         int ret;
205         struct rte_pci_addr *loc;
206
207         if ((dr == NULL) || (dev == NULL))
208                 return -EINVAL;
209
210         loc = &dev->addr;
211
212         /* The device is not blacklisted; Check if driver supports it */
213         if (!rte_pci_match(dr, dev))
214                 /* Match of device and driver failed */
215                 return 1;
216
217         RTE_LOG(INFO, EAL, "PCI device "PCI_PRI_FMT" on NUMA socket %i\n",
218                         loc->domain, loc->bus, loc->devid, loc->function,
219                         dev->device.numa_node);
220
221         /* no initialization when blacklisted, return without error */
222         if (dev->device.devargs != NULL &&
223                 dev->device.devargs->type ==
224                         RTE_DEVTYPE_BLACKLISTED) {
225                 RTE_LOG(INFO, EAL, "  Device is blacklisted, not"
226                         " initializing\n");
227                 return 1;
228         }
229
230         RTE_LOG(INFO, EAL, "  probe driver: %x:%x %s\n", dev->id.vendor_id,
231                 dev->id.device_id, dr->driver.name);
232
233         if (dr->drv_flags & RTE_PCI_DRV_NEED_MAPPING) {
234                 /* map resources for devices that use igb_uio */
235                 ret = rte_pci_map_device(dev);
236                 if (ret != 0)
237                         return ret;
238         }
239
240         /* reference driver structure */
241         dev->driver = dr;
242         dev->device.driver = &dr->driver;
243
244         /* call the driver probe() function */
245         ret = dr->probe(dr, dev);
246         if (ret) {
247                 dev->driver = NULL;
248                 if ((dr->drv_flags & RTE_PCI_DRV_NEED_MAPPING) &&
249                         /* Don't unmap if device is unsupported and
250                          * driver needs mapped resources.
251                          */
252                         !(ret > 0 &&
253                                 (dr->drv_flags & RTE_PCI_DRV_KEEP_MAPPED_RES)))
254                         rte_pci_unmap_device(dev);
255         }
256
257         return ret;
258 }
259
260 /*
261  * If vendor/device ID match, call the remove() function of the
262  * driver.
263  */
264 static int
265 rte_pci_detach_dev(struct rte_pci_device *dev)
266 {
267         struct rte_pci_addr *loc;
268         struct rte_pci_driver *dr;
269
270         if (dev == NULL)
271                 return -EINVAL;
272
273         dr = dev->driver;
274         loc = &dev->addr;
275
276         RTE_LOG(DEBUG, EAL, "PCI device "PCI_PRI_FMT" on NUMA socket %i\n",
277                         loc->domain, loc->bus, loc->devid,
278                         loc->function, dev->device.numa_node);
279
280         RTE_LOG(DEBUG, EAL, "  remove driver: %x:%x %s\n", dev->id.vendor_id,
281                         dev->id.device_id, dr->driver.name);
282
283         if (dr->remove && (dr->remove(dev) < 0))
284                 return -1;      /* negative value is an error */
285
286         /* clear driver structure */
287         dev->driver = NULL;
288
289         if (dr->drv_flags & RTE_PCI_DRV_NEED_MAPPING)
290                 /* unmap resources for devices that use igb_uio */
291                 rte_pci_unmap_device(dev);
292
293         return 0;
294 }
295
296 /*
297  * If vendor/device ID match, call the probe() function of all
298  * registered driver for the given device. Return -1 if initialization
299  * failed, return 1 if no driver is found for this device.
300  */
301 static int
302 pci_probe_all_drivers(struct rte_pci_device *dev)
303 {
304         struct rte_pci_driver *dr = NULL;
305         int rc = 0;
306
307         if (dev == NULL)
308                 return -1;
309
310         /* Check if a driver is already loaded */
311         if (dev->driver != NULL)
312                 return 0;
313
314         FOREACH_DRIVER_ON_PCIBUS(dr) {
315                 rc = rte_pci_probe_one_driver(dr, dev);
316                 if (rc < 0)
317                         /* negative value is an error */
318                         return -1;
319                 if (rc > 0)
320                         /* positive value means driver doesn't support it */
321                         continue;
322                 return 0;
323         }
324         return 1;
325 }
326
327 /*
328  * Find the pci device specified by pci address, then invoke probe function of
329  * the driver of the device.
330  */
331 int
332 rte_pci_probe_one(const struct rte_pci_addr *addr)
333 {
334         struct rte_pci_device *dev = NULL;
335
336         int ret = 0;
337
338         if (addr == NULL)
339                 return -1;
340
341         /* update current pci device in global list, kernel bindings might have
342          * changed since last time we looked at it.
343          */
344         if (pci_update_device(addr) < 0)
345                 goto err_return;
346
347         FOREACH_DEVICE_ON_PCIBUS(dev) {
348                 if (rte_eal_compare_pci_addr(&dev->addr, addr))
349                         continue;
350
351                 ret = pci_probe_all_drivers(dev);
352                 if (ret)
353                         goto err_return;
354                 return 0;
355         }
356         return -1;
357
358 err_return:
359         RTE_LOG(WARNING, EAL,
360                 "Requested device " PCI_PRI_FMT " cannot be used\n",
361                 addr->domain, addr->bus, addr->devid, addr->function);
362         return -1;
363 }
364
365 /*
366  * Detach device specified by its pci address.
367  */
368 int
369 rte_pci_detach(const struct rte_pci_addr *addr)
370 {
371         struct rte_pci_device *dev = NULL;
372         int ret = 0;
373
374         if (addr == NULL)
375                 return -1;
376
377         FOREACH_DEVICE_ON_PCIBUS(dev) {
378                 if (rte_eal_compare_pci_addr(&dev->addr, addr))
379                         continue;
380
381                 ret = rte_pci_detach_dev(dev);
382                 if (ret < 0)
383                         /* negative value is an error */
384                         goto err_return;
385                 if (ret > 0)
386                         /* positive value means driver doesn't support it */
387                         continue;
388
389                 rte_pci_remove_device(dev);
390                 free(dev);
391                 return 0;
392         }
393         return -1;
394
395 err_return:
396         RTE_LOG(WARNING, EAL, "Requested device " PCI_PRI_FMT
397                         " cannot be used\n", dev->addr.domain, dev->addr.bus,
398                         dev->addr.devid, dev->addr.function);
399         return -1;
400 }
401
402 /*
403  * Scan the content of the PCI bus, and call the probe() function for
404  * all registered drivers that have a matching entry in its id_table
405  * for discovered devices.
406  */
407 int
408 rte_pci_probe(void)
409 {
410         struct rte_pci_device *dev = NULL;
411         size_t probed = 0, failed = 0;
412         struct rte_devargs *devargs;
413         int probe_all = 0;
414         int ret = 0;
415
416         if (rte_pci_bus.bus.conf.scan_mode != RTE_BUS_SCAN_WHITELIST)
417                 probe_all = 1;
418
419         FOREACH_DEVICE_ON_PCIBUS(dev) {
420                 probed++;
421
422                 devargs = dev->device.devargs;
423                 /* probe all or only whitelisted devices */
424                 if (probe_all)
425                         ret = pci_probe_all_drivers(dev);
426                 else if (devargs != NULL &&
427                         devargs->type == RTE_DEVTYPE_WHITELISTED)
428                         ret = pci_probe_all_drivers(dev);
429                 if (ret < 0) {
430                         RTE_LOG(ERR, EAL, "Requested device " PCI_PRI_FMT
431                                  " cannot be used\n", dev->addr.domain, dev->addr.bus,
432                                  dev->addr.devid, dev->addr.function);
433                         rte_errno = errno;
434                         failed++;
435                         ret = 0;
436                 }
437         }
438
439         return (probed && probed == failed) ? -1 : 0;
440 }
441
442 /* dump one device */
443 static int
444 pci_dump_one_device(FILE *f, struct rte_pci_device *dev)
445 {
446         int i;
447
448         fprintf(f, PCI_PRI_FMT, dev->addr.domain, dev->addr.bus,
449                dev->addr.devid, dev->addr.function);
450         fprintf(f, " - vendor:%x device:%x\n", dev->id.vendor_id,
451                dev->id.device_id);
452
453         for (i = 0; i != sizeof(dev->mem_resource) /
454                 sizeof(dev->mem_resource[0]); i++) {
455                 fprintf(f, "   %16.16"PRIx64" %16.16"PRIx64"\n",
456                         dev->mem_resource[i].phys_addr,
457                         dev->mem_resource[i].len);
458         }
459         return 0;
460 }
461
462 /* dump devices on the bus */
463 void
464 rte_pci_dump(FILE *f)
465 {
466         struct rte_pci_device *dev = NULL;
467
468         FOREACH_DEVICE_ON_PCIBUS(dev) {
469                 pci_dump_one_device(f, dev);
470         }
471 }
472
473 static int
474 pci_parse(const char *name, void *addr)
475 {
476         struct rte_pci_addr *out = addr;
477         struct rte_pci_addr pci_addr;
478         bool parse;
479
480         parse = (eal_parse_pci_BDF(name, &pci_addr) == 0 ||
481                  eal_parse_pci_DomBDF(name, &pci_addr) == 0);
482         if (parse && addr != NULL)
483                 *out = pci_addr;
484         return parse == false;
485 }
486
487 /* register a driver */
488 void
489 rte_pci_register(struct rte_pci_driver *driver)
490 {
491         TAILQ_INSERT_TAIL(&rte_pci_bus.driver_list, driver, next);
492         driver->bus = &rte_pci_bus;
493 }
494
495 /* unregister a driver */
496 void
497 rte_pci_unregister(struct rte_pci_driver *driver)
498 {
499         TAILQ_REMOVE(&rte_pci_bus.driver_list, driver, next);
500         driver->bus = NULL;
501 }
502
503 /* Add a device to PCI bus */
504 void
505 rte_pci_add_device(struct rte_pci_device *pci_dev)
506 {
507         TAILQ_INSERT_TAIL(&rte_pci_bus.device_list, pci_dev, next);
508 }
509
510 /* Insert a device into a predefined position in PCI bus */
511 void
512 rte_pci_insert_device(struct rte_pci_device *exist_pci_dev,
513                       struct rte_pci_device *new_pci_dev)
514 {
515         TAILQ_INSERT_BEFORE(exist_pci_dev, new_pci_dev, next);
516 }
517
518 /* Remove a device from PCI bus */
519 void
520 rte_pci_remove_device(struct rte_pci_device *pci_dev)
521 {
522         TAILQ_REMOVE(&rte_pci_bus.device_list, pci_dev, next);
523 }
524
525 static struct rte_device *
526 pci_find_device(const struct rte_device *start, rte_dev_cmp_t cmp,
527                 const void *data)
528 {
529         struct rte_pci_device *dev;
530
531         FOREACH_DEVICE_ON_PCIBUS(dev) {
532                 if (start && &dev->device == start) {
533                         start = NULL; /* starting point found */
534                         continue;
535                 }
536                 if (cmp(&dev->device, data) == 0)
537                         return &dev->device;
538         }
539
540         return NULL;
541 }
542
543 static int
544 pci_plug(struct rte_device *dev, const char *devargs __rte_unused)
545 {
546         struct rte_pci_device *pdev;
547         struct rte_pci_addr *addr;
548
549         addr = &RTE_DEV_TO_PCI(dev)->addr;
550
551         /* Find the current device holding this address in the bus. */
552         FOREACH_DEVICE_ON_PCIBUS(pdev) {
553                 if (rte_eal_compare_pci_addr(&pdev->addr, addr) == 0)
554                         return rte_pci_probe_one(addr);
555         }
556
557         rte_errno = ENODEV;
558         return -1;
559 }
560
561 static int
562 pci_unplug(struct rte_device *dev)
563 {
564         struct rte_pci_device *pdev;
565
566         pdev = RTE_DEV_TO_PCI(dev);
567         if (rte_pci_detach(&pdev->addr) != 0) {
568                 rte_errno = ENODEV;
569                 return -1;
570         }
571         return 0;
572 }
573
574 struct rte_pci_bus rte_pci_bus = {
575         .bus = {
576                 .scan = rte_pci_scan,
577                 .probe = rte_pci_probe,
578                 .find_device = pci_find_device,
579                 .plug = pci_plug,
580                 .unplug = pci_unplug,
581                 .parse = pci_parse,
582         },
583         .device_list = TAILQ_HEAD_INITIALIZER(rte_pci_bus.device_list),
584         .driver_list = TAILQ_HEAD_INITIALIZER(rte_pci_bus.driver_list),
585 };
586
587 RTE_REGISTER_BUS(pci, rte_pci_bus.bus);