eal: remove duplicated license
[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_memzone.h>
51 #include <rte_eal.h>
52 #include <rte_string_fns.h>
53 #include <rte_common.h>
54 #include <rte_devargs.h>
55
56 #include "eal_private.h"
57
58 extern struct rte_pci_bus rte_pci_bus;
59
60 #define SYSFS_PCI_DEVICES "/sys/bus/pci/devices"
61
62 const char *pci_get_sysfs_path(void)
63 {
64         const char *path = NULL;
65
66         path = getenv("SYSFS_PCI_DEVICES");
67         if (path == NULL)
68                 return SYSFS_PCI_DEVICES;
69
70         return path;
71 }
72
73 static struct rte_devargs *pci_devargs_lookup(struct rte_pci_device *dev)
74 {
75         struct rte_devargs *devargs;
76
77         TAILQ_FOREACH(devargs, &devargs_list, next) {
78                 if (devargs->type != RTE_DEVTYPE_BLACKLISTED_PCI &&
79                         devargs->type != RTE_DEVTYPE_WHITELISTED_PCI)
80                         continue;
81                 if (!rte_eal_compare_pci_addr(&dev->addr, &devargs->pci.addr))
82                         return devargs;
83         }
84         return NULL;
85 }
86
87 /* map a particular resource from a file */
88 void *
89 pci_map_resource(void *requested_addr, int fd, off_t offset, size_t size,
90                  int additional_flags)
91 {
92         void *mapaddr;
93
94         /* Map the PCI memory resource of device */
95         mapaddr = mmap(requested_addr, size, PROT_READ | PROT_WRITE,
96                         MAP_SHARED | additional_flags, fd, offset);
97         if (mapaddr == MAP_FAILED) {
98                 RTE_LOG(ERR, EAL, "%s(): cannot mmap(%d, %p, 0x%lx, 0x%lx): %s (%p)\n",
99                         __func__, fd, requested_addr,
100                         (unsigned long)size, (unsigned long)offset,
101                         strerror(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 (munmap(requested_addr, size)) {
117                 RTE_LOG(ERR, EAL, "%s(): cannot munmap(%p, 0x%lx): %s\n",
118                         __func__, requested_addr, (unsigned long)size,
119                         strerror(errno));
120         } else
121                 RTE_LOG(DEBUG, EAL, "  PCI memory unmapped at %p\n",
122                                 requested_addr);
123 }
124
125 /*
126  * Match the PCI Driver and Device using the ID Table
127  *
128  * @param pci_drv
129  *      PCI driver from which ID table would be extracted
130  * @param pci_dev
131  *      PCI device to match against the driver
132  * @return
133  *      1 for successful match
134  *      0 for unsuccessful match
135  */
136 static int
137 rte_pci_match(const struct rte_pci_driver *pci_drv,
138               const struct rte_pci_device *pci_dev)
139 {
140         const struct rte_pci_id *id_table;
141
142         for (id_table = pci_drv->id_table; id_table->vendor_id != 0;
143              id_table++) {
144                 /* check if device's identifiers match the driver's ones */
145                 if (id_table->vendor_id != pci_dev->id.vendor_id &&
146                                 id_table->vendor_id != PCI_ANY_ID)
147                         continue;
148                 if (id_table->device_id != pci_dev->id.device_id &&
149                                 id_table->device_id != PCI_ANY_ID)
150                         continue;
151                 if (id_table->subsystem_vendor_id !=
152                     pci_dev->id.subsystem_vendor_id &&
153                     id_table->subsystem_vendor_id != PCI_ANY_ID)
154                         continue;
155                 if (id_table->subsystem_device_id !=
156                     pci_dev->id.subsystem_device_id &&
157                     id_table->subsystem_device_id != PCI_ANY_ID)
158                         continue;
159                 if (id_table->class_id != pci_dev->id.class_id &&
160                                 id_table->class_id != RTE_CLASS_ANY_ID)
161                         continue;
162
163                 return 1;
164         }
165
166         return 0;
167 }
168
169 /*
170  * If vendor/device ID match, call the probe() function of the
171  * driver.
172  */
173 static int
174 rte_pci_probe_one_driver(struct rte_pci_driver *dr,
175                          struct rte_pci_device *dev)
176 {
177         int ret;
178         struct rte_pci_addr *loc;
179
180         if ((dr == NULL) || (dev == NULL))
181                 return -EINVAL;
182
183         loc = &dev->addr;
184
185         /* The device is not blacklisted; Check if driver supports it */
186         if (!rte_pci_match(dr, dev)) {
187                 /* Match of device and driver failed */
188                 RTE_LOG(DEBUG, EAL, "Driver (%s) doesn't match the device\n",
189                         dr->driver.name);
190                 return 1;
191         }
192
193         RTE_LOG(INFO, EAL, "PCI device "PCI_PRI_FMT" on NUMA socket %i\n",
194                         loc->domain, loc->bus, loc->devid, loc->function,
195                         dev->device.numa_node);
196
197         /* no initialization when blacklisted, return without error */
198         if (dev->device.devargs != NULL &&
199                 dev->device.devargs->type ==
200                         RTE_DEVTYPE_BLACKLISTED_PCI) {
201                 RTE_LOG(INFO, EAL, "  Device is blacklisted, not"
202                         " initializing\n");
203                 return 1;
204         }
205
206         RTE_LOG(INFO, EAL, "  probe driver: %x:%x %s\n", dev->id.vendor_id,
207                 dev->id.device_id, dr->driver.name);
208
209         if (dr->drv_flags & RTE_PCI_DRV_NEED_MAPPING) {
210                 /* map resources for devices that use igb_uio */
211                 ret = rte_pci_map_device(dev);
212                 if (ret != 0)
213                         return ret;
214         }
215
216         /* reference driver structure */
217         dev->driver = dr;
218         dev->device.driver = &dr->driver;
219
220         /* call the driver probe() function */
221         ret = dr->probe(dr, dev);
222         if (ret) {
223                 dev->driver = NULL;
224                 if (dr->drv_flags & RTE_PCI_DRV_NEED_MAPPING)
225                         rte_pci_unmap_device(dev);
226         }
227
228         return ret;
229 }
230
231 /*
232  * If vendor/device ID match, call the remove() function of the
233  * driver.
234  */
235 static int
236 rte_pci_detach_dev(struct rte_pci_device *dev)
237 {
238         struct rte_pci_addr *loc;
239         struct rte_pci_driver *dr;
240
241         if (dev == NULL)
242                 return -EINVAL;
243
244         dr = dev->driver;
245         loc = &dev->addr;
246
247         RTE_LOG(DEBUG, EAL, "PCI device "PCI_PRI_FMT" on NUMA socket %i\n",
248                         loc->domain, loc->bus, loc->devid,
249                         loc->function, dev->device.numa_node);
250
251         RTE_LOG(DEBUG, EAL, "  remove driver: %x:%x %s\n", dev->id.vendor_id,
252                         dev->id.device_id, dr->driver.name);
253
254         if (dr->remove && (dr->remove(dev) < 0))
255                 return -1;      /* negative value is an error */
256
257         /* clear driver structure */
258         dev->driver = NULL;
259
260         if (dr->drv_flags & RTE_PCI_DRV_NEED_MAPPING)
261                 /* unmap resources for devices that use igb_uio */
262                 rte_pci_unmap_device(dev);
263
264         return 0;
265 }
266
267 /*
268  * If vendor/device ID match, call the probe() function of all
269  * registered driver for the given device. Return -1 if initialization
270  * failed, return 1 if no driver is found for this device.
271  */
272 static int
273 pci_probe_all_drivers(struct rte_pci_device *dev)
274 {
275         struct rte_pci_driver *dr = NULL;
276         int rc = 0;
277
278         if (dev == NULL)
279                 return -1;
280
281         /* Check if a driver is already loaded */
282         if (dev->driver != NULL)
283                 return 0;
284
285         FOREACH_DRIVER_ON_PCIBUS(dr) {
286                 rc = rte_pci_probe_one_driver(dr, dev);
287                 if (rc < 0)
288                         /* negative value is an error */
289                         return -1;
290                 if (rc > 0)
291                         /* positive value means driver doesn't support it */
292                         continue;
293                 return 0;
294         }
295         return 1;
296 }
297
298 /*
299  * Find the pci device specified by pci address, then invoke probe function of
300  * the driver of the devive.
301  */
302 int
303 rte_pci_probe_one(const struct rte_pci_addr *addr)
304 {
305         struct rte_pci_device *dev = NULL;
306
307         int ret = 0;
308
309         if (addr == NULL)
310                 return -1;
311
312         /* update current pci device in global list, kernel bindings might have
313          * changed since last time we looked at it.
314          */
315         if (pci_update_device(addr) < 0)
316                 goto err_return;
317
318         FOREACH_DEVICE_ON_PCIBUS(dev) {
319                 if (rte_eal_compare_pci_addr(&dev->addr, addr))
320                         continue;
321
322                 ret = pci_probe_all_drivers(dev);
323                 if (ret)
324                         goto err_return;
325                 return 0;
326         }
327         return -1;
328
329 err_return:
330         RTE_LOG(WARNING, EAL,
331                 "Requested device " PCI_PRI_FMT " cannot be used\n",
332                 addr->domain, addr->bus, addr->devid, addr->function);
333         return -1;
334 }
335
336 /*
337  * Detach device specified by its pci address.
338  */
339 int
340 rte_pci_detach(const struct rte_pci_addr *addr)
341 {
342         struct rte_pci_device *dev = NULL;
343         int ret = 0;
344
345         if (addr == NULL)
346                 return -1;
347
348         FOREACH_DEVICE_ON_PCIBUS(dev) {
349                 if (rte_eal_compare_pci_addr(&dev->addr, addr))
350                         continue;
351
352                 ret = rte_pci_detach_dev(dev);
353                 if (ret < 0)
354                         /* negative value is an error */
355                         goto err_return;
356                 if (ret > 0)
357                         /* positive value means driver doesn't support it */
358                         continue;
359
360                 rte_pci_remove_device(dev);
361                 free(dev);
362                 return 0;
363         }
364         return -1;
365
366 err_return:
367         RTE_LOG(WARNING, EAL, "Requested device " PCI_PRI_FMT
368                         " cannot be used\n", dev->addr.domain, dev->addr.bus,
369                         dev->addr.devid, dev->addr.function);
370         return -1;
371 }
372
373 /*
374  * Scan the content of the PCI bus, and call the probe() function for
375  * all registered drivers that have a matching entry in its id_table
376  * for discovered devices.
377  */
378 int
379 rte_pci_probe(void)
380 {
381         struct rte_pci_device *dev = NULL;
382         size_t probed = 0, failed = 0;
383         struct rte_devargs *devargs;
384         int probe_all = 0;
385         int ret = 0;
386
387         if (rte_eal_devargs_type_count(RTE_DEVTYPE_WHITELISTED_PCI) == 0)
388                 probe_all = 1;
389
390         FOREACH_DEVICE_ON_PCIBUS(dev) {
391                 probed++;
392
393                 /* set devargs in PCI structure */
394                 devargs = pci_devargs_lookup(dev);
395                 if (devargs != NULL)
396                         dev->device.devargs = devargs;
397
398                 /* probe all or only whitelisted devices */
399                 if (probe_all)
400                         ret = pci_probe_all_drivers(dev);
401                 else if (devargs != NULL &&
402                         devargs->type == RTE_DEVTYPE_WHITELISTED_PCI)
403                         ret = pci_probe_all_drivers(dev);
404                 if (ret < 0) {
405                         RTE_LOG(ERR, EAL, "Requested device " PCI_PRI_FMT
406                                  " cannot be used\n", dev->addr.domain, dev->addr.bus,
407                                  dev->addr.devid, dev->addr.function);
408                         rte_errno = errno;
409                         failed++;
410                         ret = 0;
411                 }
412         }
413
414         return (probed && probed == failed) ? -1 : 0;
415 }
416
417 /* dump one device */
418 static int
419 pci_dump_one_device(FILE *f, struct rte_pci_device *dev)
420 {
421         int i;
422
423         fprintf(f, PCI_PRI_FMT, dev->addr.domain, dev->addr.bus,
424                dev->addr.devid, dev->addr.function);
425         fprintf(f, " - vendor:%x device:%x\n", dev->id.vendor_id,
426                dev->id.device_id);
427
428         for (i = 0; i != sizeof(dev->mem_resource) /
429                 sizeof(dev->mem_resource[0]); i++) {
430                 fprintf(f, "   %16.16"PRIx64" %16.16"PRIx64"\n",
431                         dev->mem_resource[i].phys_addr,
432                         dev->mem_resource[i].len);
433         }
434         return 0;
435 }
436
437 /* dump devices on the bus */
438 void
439 rte_pci_dump(FILE *f)
440 {
441         struct rte_pci_device *dev = NULL;
442
443         FOREACH_DEVICE_ON_PCIBUS(dev) {
444                 pci_dump_one_device(f, dev);
445         }
446 }
447
448 /* register a driver */
449 void
450 rte_pci_register(struct rte_pci_driver *driver)
451 {
452         TAILQ_INSERT_TAIL(&rte_pci_bus.driver_list, driver, next);
453         driver->bus = &rte_pci_bus;
454 }
455
456 /* unregister a driver */
457 void
458 rte_pci_unregister(struct rte_pci_driver *driver)
459 {
460         TAILQ_REMOVE(&rte_pci_bus.driver_list, driver, next);
461         driver->bus = NULL;
462 }
463
464 /* Add a device to PCI bus */
465 void
466 rte_pci_add_device(struct rte_pci_device *pci_dev)
467 {
468         TAILQ_INSERT_TAIL(&rte_pci_bus.device_list, pci_dev, next);
469 }
470
471 /* Insert a device into a predefined position in PCI bus */
472 void
473 rte_pci_insert_device(struct rte_pci_device *exist_pci_dev,
474                       struct rte_pci_device *new_pci_dev)
475 {
476         TAILQ_INSERT_BEFORE(exist_pci_dev, new_pci_dev, next);
477 }
478
479 /* Remove a device from PCI bus */
480 void
481 rte_pci_remove_device(struct rte_pci_device *pci_dev)
482 {
483         TAILQ_REMOVE(&rte_pci_bus.device_list, pci_dev, next);
484 }
485
486 struct rte_pci_bus rte_pci_bus = {
487         .bus = {
488                 .scan = rte_pci_scan,
489                 .probe = rte_pci_probe,
490         },
491         .device_list = TAILQ_HEAD_INITIALIZER(rte_pci_bus.device_list),
492         .driver_list = TAILQ_HEAD_INITIALIZER(rte_pci_bus.driver_list),
493 };
494
495 RTE_REGISTER_BUS(PCI_BUS_NAME, rte_pci_bus.bus);