e321461d82e68fe3029c5f99a1c2e4818dd4dac1
[deb_dpdk.git] / lib / librte_eal / bsdapp / eal / eal_pci.c
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 <ctype.h>
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <stdarg.h>
39 #include <unistd.h>
40 #include <inttypes.h>
41 #include <sys/types.h>
42 #include <sys/stat.h>
43 #include <fcntl.h>
44 #include <stdarg.h>
45 #include <errno.h>
46 #include <dirent.h>
47 #include <limits.h>
48 #include <sys/queue.h>
49 #include <sys/mman.h>
50 #include <sys/ioctl.h>
51 #include <sys/pciio.h>
52 #include <dev/pci/pcireg.h>
53
54 #if defined(RTE_ARCH_X86)
55 #include <sys/types.h>
56 #include <machine/cpufunc.h>
57 #endif
58
59 #include <rte_interrupts.h>
60 #include <rte_log.h>
61 #include <rte_pci.h>
62 #include <rte_common.h>
63 #include <rte_launch.h>
64 #include <rte_memory.h>
65 #include <rte_memzone.h>
66 #include <rte_eal.h>
67 #include <rte_eal_memconfig.h>
68 #include <rte_per_lcore.h>
69 #include <rte_lcore.h>
70 #include <rte_malloc.h>
71 #include <rte_string_fns.h>
72 #include <rte_debug.h>
73 #include <rte_devargs.h>
74
75 #include "eal_filesystem.h"
76 #include "eal_private.h"
77
78 /**
79  * @file
80  * PCI probing under linux
81  *
82  * This code is used to simulate a PCI probe by parsing information in
83  * sysfs. Moreover, when a registered driver matches a device, the
84  * kernel driver currently using it is unloaded and replaced by
85  * igb_uio module, which is a very minimal userland driver for Intel
86  * network card, only providing access to PCI BAR to applications, and
87  * enabling bus master.
88  */
89
90 extern struct rte_pci_bus rte_pci_bus;
91
92 /* Map pci device */
93 int
94 rte_pci_map_device(struct rte_pci_device *dev)
95 {
96         int ret = -1;
97
98         /* try mapping the NIC resources */
99         switch (dev->kdrv) {
100         case RTE_KDRV_NIC_UIO:
101                 /* map resources for devices that use uio */
102                 ret = pci_uio_map_resource(dev);
103                 break;
104         default:
105                 RTE_LOG(DEBUG, EAL,
106                         "  Not managed by a supported kernel driver, skipped\n");
107                 ret = 1;
108                 break;
109         }
110
111         return ret;
112 }
113
114 /* Unmap pci device */
115 void
116 rte_pci_unmap_device(struct rte_pci_device *dev)
117 {
118         /* try unmapping the NIC resources */
119         switch (dev->kdrv) {
120         case RTE_KDRV_NIC_UIO:
121                 /* unmap resources for devices that use uio */
122                 pci_uio_unmap_resource(dev);
123                 break;
124         default:
125                 RTE_LOG(DEBUG, EAL,
126                         "  Not managed by a supported kernel driver, skipped\n");
127                 break;
128         }
129 }
130
131 void
132 pci_uio_free_resource(struct rte_pci_device *dev,
133                 struct mapped_pci_resource *uio_res)
134 {
135         rte_free(uio_res);
136
137         if (dev->intr_handle.fd) {
138                 close(dev->intr_handle.fd);
139                 dev->intr_handle.fd = -1;
140                 dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
141         }
142 }
143
144 int
145 pci_uio_alloc_resource(struct rte_pci_device *dev,
146                 struct mapped_pci_resource **uio_res)
147 {
148         char devname[PATH_MAX]; /* contains the /dev/uioX */
149         struct rte_pci_addr *loc;
150
151         loc = &dev->addr;
152
153         snprintf(devname, sizeof(devname), "/dev/uio@pci:%u:%u:%u",
154                         dev->addr.bus, dev->addr.devid, dev->addr.function);
155
156         if (access(devname, O_RDWR) < 0) {
157                 RTE_LOG(WARNING, EAL, "  "PCI_PRI_FMT" not managed by UIO driver, "
158                                 "skipping\n", loc->domain, loc->bus, loc->devid, loc->function);
159                 return 1;
160         }
161
162         /* save fd if in primary process */
163         dev->intr_handle.fd = open(devname, O_RDWR);
164         if (dev->intr_handle.fd < 0) {
165                 RTE_LOG(ERR, EAL, "Cannot open %s: %s\n",
166                         devname, strerror(errno));
167                 goto error;
168         }
169         dev->intr_handle.type = RTE_INTR_HANDLE_UIO;
170
171         /* allocate the mapping details for secondary processes*/
172         *uio_res = rte_zmalloc("UIO_RES", sizeof(**uio_res), 0);
173         if (*uio_res == NULL) {
174                 RTE_LOG(ERR, EAL,
175                         "%s(): cannot store uio mmap details\n", __func__);
176                 goto error;
177         }
178
179         snprintf((*uio_res)->path, sizeof((*uio_res)->path), "%s", devname);
180         memcpy(&(*uio_res)->pci_addr, &dev->addr, sizeof((*uio_res)->pci_addr));
181
182         return 0;
183
184 error:
185         pci_uio_free_resource(dev, *uio_res);
186         return -1;
187 }
188
189 int
190 pci_uio_map_resource_by_index(struct rte_pci_device *dev, int res_idx,
191                 struct mapped_pci_resource *uio_res, int map_idx)
192 {
193         int fd;
194         char *devname;
195         void *mapaddr;
196         uint64_t offset;
197         uint64_t pagesz;
198         struct pci_map *maps;
199
200         maps = uio_res->maps;
201         devname = uio_res->path;
202         pagesz = sysconf(_SC_PAGESIZE);
203
204         /* allocate memory to keep path */
205         maps[map_idx].path = rte_malloc(NULL, strlen(devname) + 1, 0);
206         if (maps[map_idx].path == NULL) {
207                 RTE_LOG(ERR, EAL, "Cannot allocate memory for path: %s\n",
208                                 strerror(errno));
209                 return -1;
210         }
211
212         /*
213          * open resource file, to mmap it
214          */
215         fd = open(devname, O_RDWR);
216         if (fd < 0) {
217                 RTE_LOG(ERR, EAL, "Cannot open %s: %s\n",
218                                 devname, strerror(errno));
219                 goto error;
220         }
221
222         /* if matching map is found, then use it */
223         offset = res_idx * pagesz;
224         mapaddr = pci_map_resource(NULL, fd, (off_t)offset,
225                         (size_t)dev->mem_resource[res_idx].len, 0);
226         close(fd);
227         if (mapaddr == MAP_FAILED)
228                 goto error;
229
230         maps[map_idx].phaddr = dev->mem_resource[res_idx].phys_addr;
231         maps[map_idx].size = dev->mem_resource[res_idx].len;
232         maps[map_idx].addr = mapaddr;
233         maps[map_idx].offset = offset;
234         strcpy(maps[map_idx].path, devname);
235         dev->mem_resource[res_idx].addr = mapaddr;
236
237         return 0;
238
239 error:
240         rte_free(maps[map_idx].path);
241         return -1;
242 }
243
244 static int
245 pci_scan_one(int dev_pci_fd, struct pci_conf *conf)
246 {
247         struct rte_pci_device *dev;
248         struct pci_bar_io bar;
249         unsigned i, max;
250
251         dev = malloc(sizeof(*dev));
252         if (dev == NULL) {
253                 return -1;
254         }
255
256         memset(dev, 0, sizeof(*dev));
257         dev->addr.domain = conf->pc_sel.pc_domain;
258         dev->addr.bus = conf->pc_sel.pc_bus;
259         dev->addr.devid = conf->pc_sel.pc_dev;
260         dev->addr.function = conf->pc_sel.pc_func;
261
262         /* get vendor id */
263         dev->id.vendor_id = conf->pc_vendor;
264
265         /* get device id */
266         dev->id.device_id = conf->pc_device;
267
268         /* get subsystem_vendor id */
269         dev->id.subsystem_vendor_id = conf->pc_subvendor;
270
271         /* get subsystem_device id */
272         dev->id.subsystem_device_id = conf->pc_subdevice;
273
274         /* get class id */
275         dev->id.class_id = (conf->pc_class << 16) |
276                            (conf->pc_subclass << 8) |
277                            (conf->pc_progif);
278
279         /* TODO: get max_vfs */
280         dev->max_vfs = 0;
281
282         /* FreeBSD has no NUMA support (yet) */
283         dev->device.numa_node = 0;
284
285         rte_pci_device_name(&dev->addr, dev->name, sizeof(dev->name));
286         dev->device.name = dev->name;
287
288         /* FreeBSD has only one pass through driver */
289         dev->kdrv = RTE_KDRV_NIC_UIO;
290
291         /* parse resources */
292         switch (conf->pc_hdr & PCIM_HDRTYPE) {
293         case PCIM_HDRTYPE_NORMAL:
294                 max = PCIR_MAX_BAR_0;
295                 break;
296         case PCIM_HDRTYPE_BRIDGE:
297                 max = PCIR_MAX_BAR_1;
298                 break;
299         case PCIM_HDRTYPE_CARDBUS:
300                 max = PCIR_MAX_BAR_2;
301                 break;
302         default:
303                 goto skipdev;
304         }
305
306         for (i = 0; i <= max; i++) {
307                 bar.pbi_sel = conf->pc_sel;
308                 bar.pbi_reg = PCIR_BAR(i);
309                 if (ioctl(dev_pci_fd, PCIOCGETBAR, &bar) < 0)
310                         continue;
311
312                 dev->mem_resource[i].len = bar.pbi_length;
313                 if (PCI_BAR_IO(bar.pbi_base)) {
314                         dev->mem_resource[i].addr = (void *)(bar.pbi_base & ~((uint64_t)0xf));
315                         continue;
316                 }
317                 dev->mem_resource[i].phys_addr = bar.pbi_base & ~((uint64_t)0xf);
318         }
319
320         /* device is valid, add in list (sorted) */
321         if (TAILQ_EMPTY(&rte_pci_bus.device_list)) {
322                 rte_pci_add_device(dev);
323         }
324         else {
325                 struct rte_pci_device *dev2 = NULL;
326                 int ret;
327
328                 TAILQ_FOREACH(dev2, &rte_pci_bus.device_list, next) {
329                         ret = rte_eal_compare_pci_addr(&dev->addr, &dev2->addr);
330                         if (ret > 0)
331                                 continue;
332                         else if (ret < 0) {
333                                 rte_pci_insert_device(dev2, dev);
334                         } else { /* already registered */
335                                 dev2->kdrv = dev->kdrv;
336                                 dev2->max_vfs = dev->max_vfs;
337                                 memmove(dev2->mem_resource,
338                                         dev->mem_resource,
339                                         sizeof(dev->mem_resource));
340                                 free(dev);
341                         }
342                         return 0;
343                 }
344                 rte_pci_add_device(dev);
345         }
346
347         return 0;
348
349 skipdev:
350         free(dev);
351         return 0;
352 }
353
354 /*
355  * Scan the content of the PCI bus, and add the devices in the devices
356  * list. Call pci_scan_one() for each pci entry found.
357  */
358 int
359 rte_pci_scan(void)
360 {
361         int fd;
362         unsigned dev_count = 0;
363         struct pci_conf matches[16];
364         struct pci_conf_io conf_io = {
365                         .pat_buf_len = 0,
366                         .num_patterns = 0,
367                         .patterns = NULL,
368                         .match_buf_len = sizeof(matches),
369                         .matches = &matches[0],
370         };
371
372         /* for debug purposes, PCI can be disabled */
373         if (internal_config.no_pci)
374                 return 0;
375
376         fd = open("/dev/pci", O_RDONLY);
377         if (fd < 0) {
378                 RTE_LOG(ERR, EAL, "%s(): error opening /dev/pci\n", __func__);
379                 goto error;
380         }
381
382         do {
383                 unsigned i;
384                 if (ioctl(fd, PCIOCGETCONF, &conf_io) < 0) {
385                         RTE_LOG(ERR, EAL, "%s(): error with ioctl on /dev/pci: %s\n",
386                                         __func__, strerror(errno));
387                         goto error;
388                 }
389
390                 for (i = 0; i < conf_io.num_matches; i++)
391                         if (pci_scan_one(fd, &matches[i]) < 0)
392                                 goto error;
393
394                 dev_count += conf_io.num_matches;
395         } while(conf_io.status == PCI_GETCONF_MORE_DEVS);
396
397         close(fd);
398
399         RTE_LOG(ERR, EAL, "PCI scan found %u devices\n", dev_count);
400         return 0;
401
402 error:
403         if (fd >= 0)
404                 close(fd);
405         return -1;
406 }
407
408 int
409 pci_update_device(const struct rte_pci_addr *addr)
410 {
411         int fd;
412         struct pci_conf matches[2];
413         struct pci_match_conf match = {
414                 .pc_sel = {
415                         .pc_domain = addr->domain,
416                         .pc_bus = addr->bus,
417                         .pc_dev = addr->devid,
418                         .pc_func = addr->function,
419                 },
420         };
421         struct pci_conf_io conf_io = {
422                 .pat_buf_len = 0,
423                 .num_patterns = 1,
424                 .patterns = &match,
425                 .match_buf_len = sizeof(matches),
426                 .matches = &matches[0],
427         };
428
429         fd = open("/dev/pci", O_RDONLY);
430         if (fd < 0) {
431                 RTE_LOG(ERR, EAL, "%s(): error opening /dev/pci\n", __func__);
432                 goto error;
433         }
434
435         if (ioctl(fd, PCIOCGETCONF, &conf_io) < 0) {
436                 RTE_LOG(ERR, EAL, "%s(): error with ioctl on /dev/pci: %s\n",
437                                 __func__, strerror(errno));
438                 goto error;
439         }
440
441         if (conf_io.num_matches != 1)
442                 goto error;
443
444         if (pci_scan_one(fd, &matches[0]) < 0)
445                 goto error;
446
447         close(fd);
448
449         return 0;
450
451 error:
452         if (fd >= 0)
453                 close(fd);
454         return -1;
455 }
456
457 /* Read PCI config space. */
458 int rte_pci_read_config(const struct rte_pci_device *dev,
459                 void *buf, size_t len, off_t offset)
460 {
461         int fd = -1;
462         int size;
463         struct pci_io pi = {
464                 .pi_sel = {
465                         .pc_domain = dev->addr.domain,
466                         .pc_bus = dev->addr.bus,
467                         .pc_dev = dev->addr.devid,
468                         .pc_func = dev->addr.function,
469                 },
470                 .pi_reg = offset,
471         };
472
473         fd = open("/dev/pci", O_RDWR);
474         if (fd < 0) {
475                 RTE_LOG(ERR, EAL, "%s(): error opening /dev/pci\n", __func__);
476                 goto error;
477         }
478
479         while (len > 0) {
480                 size = (len >= 4) ? 4 : ((len >= 2) ? 2 : 1);
481                 pi.pi_width = size;
482
483                 if (ioctl(fd, PCIOCREAD, &pi) < 0)
484                         goto error;
485                 memcpy(buf, &pi.pi_data, size);
486
487                 buf = (char *)buf + size;
488                 pi.pi_reg += size;
489                 len -= size;
490         }
491         close(fd);
492
493         return 0;
494
495  error:
496         if (fd >= 0)
497                 close(fd);
498         return -1;
499 }
500
501 /* Write PCI config space. */
502 int rte_pci_write_config(const struct rte_pci_device *dev,
503                 const void *buf, size_t len, off_t offset)
504 {
505         int fd = -1;
506
507         struct pci_io pi = {
508                 .pi_sel = {
509                         .pc_domain = dev->addr.domain,
510                         .pc_bus = dev->addr.bus,
511                         .pc_dev = dev->addr.devid,
512                         .pc_func = dev->addr.function,
513                 },
514                 .pi_reg = offset,
515                 .pi_data = *(const uint32_t *)buf,
516                 .pi_width = len,
517         };
518
519         if (len == 3 || len > sizeof(pi.pi_data)) {
520                 RTE_LOG(ERR, EAL, "%s(): invalid pci read length\n", __func__);
521                 goto error;
522         }
523
524         memcpy(&pi.pi_data, buf, len);
525
526         fd = open("/dev/pci", O_RDWR);
527         if (fd < 0) {
528                 RTE_LOG(ERR, EAL, "%s(): error opening /dev/pci\n", __func__);
529                 goto error;
530         }
531
532         if (ioctl(fd, PCIOCWRITE, &pi) < 0)
533                 goto error;
534
535         close(fd);
536         return 0;
537
538  error:
539         if (fd >= 0)
540                 close(fd);
541         return -1;
542 }
543
544 int
545 rte_pci_ioport_map(struct rte_pci_device *dev, int bar,
546                 struct rte_pci_ioport *p)
547 {
548         int ret;
549
550         switch (dev->kdrv) {
551 #if defined(RTE_ARCH_X86)
552         case RTE_KDRV_NIC_UIO:
553                 if ((uintptr_t) dev->mem_resource[bar].addr <= UINT16_MAX) {
554                         p->base = (uintptr_t)dev->mem_resource[bar].addr;
555                         ret = 0;
556                 } else
557                         ret = -1;
558                 break;
559 #endif
560         default:
561                 ret = -1;
562                 break;
563         }
564
565         if (!ret)
566                 p->dev = dev;
567
568         return ret;
569 }
570
571 static void
572 pci_uio_ioport_read(struct rte_pci_ioport *p,
573                 void *data, size_t len, off_t offset)
574 {
575 #if defined(RTE_ARCH_X86)
576         uint8_t *d;
577         int size;
578         unsigned short reg = p->base + offset;
579
580         for (d = data; len > 0; d += size, reg += size, len -= size) {
581                 if (len >= 4) {
582                         size = 4;
583                         *(uint32_t *)d = inl(reg);
584                 } else if (len >= 2) {
585                         size = 2;
586                         *(uint16_t *)d = inw(reg);
587                 } else {
588                         size = 1;
589                         *d = inb(reg);
590                 }
591         }
592 #else
593         RTE_SET_USED(p);
594         RTE_SET_USED(data);
595         RTE_SET_USED(len);
596         RTE_SET_USED(offset);
597 #endif
598 }
599
600 void
601 rte_pci_ioport_read(struct rte_pci_ioport *p,
602                 void *data, size_t len, off_t offset)
603 {
604         switch (p->dev->kdrv) {
605         case RTE_KDRV_NIC_UIO:
606                 pci_uio_ioport_read(p, data, len, offset);
607                 break;
608         default:
609                 break;
610         }
611 }
612
613 static void
614 pci_uio_ioport_write(struct rte_pci_ioport *p,
615                 const void *data, size_t len, off_t offset)
616 {
617 #if defined(RTE_ARCH_X86)
618         const uint8_t *s;
619         int size;
620         unsigned short reg = p->base + offset;
621
622         for (s = data; len > 0; s += size, reg += size, len -= size) {
623                 if (len >= 4) {
624                         size = 4;
625                         outl(reg, *(const uint32_t *)s);
626                 } else if (len >= 2) {
627                         size = 2;
628                         outw(reg, *(const uint16_t *)s);
629                 } else {
630                         size = 1;
631                         outb(reg, *s);
632                 }
633         }
634 #else
635         RTE_SET_USED(p);
636         RTE_SET_USED(data);
637         RTE_SET_USED(len);
638         RTE_SET_USED(offset);
639 #endif
640 }
641
642 void
643 rte_pci_ioport_write(struct rte_pci_ioport *p,
644                 const void *data, size_t len, off_t offset)
645 {
646         switch (p->dev->kdrv) {
647         case RTE_KDRV_NIC_UIO:
648                 pci_uio_ioport_write(p, data, len, offset);
649                 break;
650         default:
651                 break;
652         }
653 }
654
655 int
656 rte_pci_ioport_unmap(struct rte_pci_ioport *p)
657 {
658         int ret;
659
660         switch (p->dev->kdrv) {
661 #if defined(RTE_ARCH_X86)
662         case RTE_KDRV_NIC_UIO:
663                 ret = 0;
664                 break;
665 #endif
666         default:
667                 ret = -1;
668                 break;
669         }
670
671         return ret;
672 }