Imported Upstream version 16.04
[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 /* unbind kernel driver for this device */
91 int
92 pci_unbind_kernel_driver(struct rte_pci_device *dev __rte_unused)
93 {
94         RTE_LOG(ERR, EAL, "RTE_PCI_DRV_FORCE_UNBIND flag is not implemented "
95                 "for BSD\n");
96         return -ENOTSUP;
97 }
98
99 /* Map pci device */
100 int
101 rte_eal_pci_map_device(struct rte_pci_device *dev)
102 {
103         int ret = -1;
104
105         /* try mapping the NIC resources */
106         switch (dev->kdrv) {
107         case RTE_KDRV_NIC_UIO:
108                 /* map resources for devices that use uio */
109                 ret = pci_uio_map_resource(dev);
110                 break;
111         default:
112                 RTE_LOG(DEBUG, EAL,
113                         "  Not managed by a supported kernel driver, skipped\n");
114                 ret = 1;
115                 break;
116         }
117
118         return ret;
119 }
120
121 /* Unmap pci device */
122 void
123 rte_eal_pci_unmap_device(struct rte_pci_device *dev)
124 {
125         /* try unmapping the NIC resources */
126         switch (dev->kdrv) {
127         case RTE_KDRV_NIC_UIO:
128                 /* unmap resources for devices that use uio */
129                 pci_uio_unmap_resource(dev);
130                 break;
131         default:
132                 RTE_LOG(DEBUG, EAL,
133                         "  Not managed by a supported kernel driver, skipped\n");
134                 break;
135         }
136 }
137
138 void
139 pci_uio_free_resource(struct rte_pci_device *dev,
140                 struct mapped_pci_resource *uio_res)
141 {
142         rte_free(uio_res);
143
144         if (dev->intr_handle.fd) {
145                 close(dev->intr_handle.fd);
146                 dev->intr_handle.fd = -1;
147                 dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
148         }
149 }
150
151 int
152 pci_uio_alloc_resource(struct rte_pci_device *dev,
153                 struct mapped_pci_resource **uio_res)
154 {
155         char devname[PATH_MAX]; /* contains the /dev/uioX */
156         struct rte_pci_addr *loc;
157
158         loc = &dev->addr;
159
160         snprintf(devname, sizeof(devname), "/dev/uio@pci:%u:%u:%u",
161                         dev->addr.bus, dev->addr.devid, dev->addr.function);
162
163         if (access(devname, O_RDWR) < 0) {
164                 RTE_LOG(WARNING, EAL, "  "PCI_PRI_FMT" not managed by UIO driver, "
165                                 "skipping\n", loc->domain, loc->bus, loc->devid, loc->function);
166                 return 1;
167         }
168
169         /* save fd if in primary process */
170         dev->intr_handle.fd = open(devname, O_RDWR);
171         if (dev->intr_handle.fd < 0) {
172                 RTE_LOG(ERR, EAL, "Cannot open %s: %s\n",
173                         devname, strerror(errno));
174                 goto error;
175         }
176         dev->intr_handle.type = RTE_INTR_HANDLE_UIO;
177
178         /* allocate the mapping details for secondary processes*/
179         *uio_res = rte_zmalloc("UIO_RES", sizeof(**uio_res), 0);
180         if (*uio_res == NULL) {
181                 RTE_LOG(ERR, EAL,
182                         "%s(): cannot store uio mmap details\n", __func__);
183                 goto error;
184         }
185
186         snprintf((*uio_res)->path, sizeof((*uio_res)->path), "%s", devname);
187         memcpy(&(*uio_res)->pci_addr, &dev->addr, sizeof((*uio_res)->pci_addr));
188
189         return 0;
190
191 error:
192         pci_uio_free_resource(dev, *uio_res);
193         return -1;
194 }
195
196 int
197 pci_uio_map_resource_by_index(struct rte_pci_device *dev, int res_idx,
198                 struct mapped_pci_resource *uio_res, int map_idx)
199 {
200         int fd;
201         char *devname;
202         void *mapaddr;
203         uint64_t offset;
204         uint64_t pagesz;
205         struct pci_map *maps;
206
207         maps = uio_res->maps;
208         devname = uio_res->path;
209         pagesz = sysconf(_SC_PAGESIZE);
210
211         /* allocate memory to keep path */
212         maps[map_idx].path = rte_malloc(NULL, strlen(devname) + 1, 0);
213         if (maps[map_idx].path == NULL) {
214                 RTE_LOG(ERR, EAL, "Cannot allocate memory for path: %s\n",
215                                 strerror(errno));
216                 return -1;
217         }
218
219         /*
220          * open resource file, to mmap it
221          */
222         fd = open(devname, O_RDWR);
223         if (fd < 0) {
224                 RTE_LOG(ERR, EAL, "Cannot open %s: %s\n",
225                                 devname, strerror(errno));
226                 goto error;
227         }
228
229         /* if matching map is found, then use it */
230         offset = res_idx * pagesz;
231         mapaddr = pci_map_resource(NULL, fd, (off_t)offset,
232                         (size_t)dev->mem_resource[res_idx].len, 0);
233         close(fd);
234         if (mapaddr == MAP_FAILED)
235                 goto error;
236
237         maps[map_idx].phaddr = dev->mem_resource[res_idx].phys_addr;
238         maps[map_idx].size = dev->mem_resource[res_idx].len;
239         maps[map_idx].addr = mapaddr;
240         maps[map_idx].offset = offset;
241         strcpy(maps[map_idx].path, devname);
242         dev->mem_resource[res_idx].addr = mapaddr;
243
244         return 0;
245
246 error:
247         rte_free(maps[map_idx].path);
248         return -1;
249 }
250
251 static int
252 pci_scan_one(int dev_pci_fd, struct pci_conf *conf)
253 {
254         struct rte_pci_device *dev;
255         struct pci_bar_io bar;
256         unsigned i, max;
257
258         dev = malloc(sizeof(*dev));
259         if (dev == NULL) {
260                 return -1;
261         }
262
263         memset(dev, 0, sizeof(*dev));
264         dev->addr.domain = conf->pc_sel.pc_domain;
265         dev->addr.bus = conf->pc_sel.pc_bus;
266         dev->addr.devid = conf->pc_sel.pc_dev;
267         dev->addr.function = conf->pc_sel.pc_func;
268
269         /* get vendor id */
270         dev->id.vendor_id = conf->pc_vendor;
271
272         /* get device id */
273         dev->id.device_id = conf->pc_device;
274
275         /* get subsystem_vendor id */
276         dev->id.subsystem_vendor_id = conf->pc_subvendor;
277
278         /* get subsystem_device id */
279         dev->id.subsystem_device_id = conf->pc_subdevice;
280
281         /* TODO: get max_vfs */
282         dev->max_vfs = 0;
283
284         /* FreeBSD has no NUMA support (yet) */
285         dev->numa_node = 0;
286
287         /* FreeBSD has only one pass through driver */
288         dev->kdrv = RTE_KDRV_NIC_UIO;
289
290         /* parse resources */
291         switch (conf->pc_hdr & PCIM_HDRTYPE) {
292         case PCIM_HDRTYPE_NORMAL:
293                 max = PCIR_MAX_BAR_0;
294                 break;
295         case PCIM_HDRTYPE_BRIDGE:
296                 max = PCIR_MAX_BAR_1;
297                 break;
298         case PCIM_HDRTYPE_CARDBUS:
299                 max = PCIR_MAX_BAR_2;
300                 break;
301         default:
302                 goto skipdev;
303         }
304
305         for (i = 0; i <= max; i++) {
306                 bar.pbi_sel = conf->pc_sel;
307                 bar.pbi_reg = PCIR_BAR(i);
308                 if (ioctl(dev_pci_fd, PCIOCGETBAR, &bar) < 0)
309                         continue;
310
311                 dev->mem_resource[i].len = bar.pbi_length;
312                 if (PCI_BAR_IO(bar.pbi_base)) {
313                         dev->mem_resource[i].addr = (void *)(bar.pbi_base & ~((uint64_t)0xf));
314                         continue;
315                 }
316                 dev->mem_resource[i].phys_addr = bar.pbi_base & ~((uint64_t)0xf);
317         }
318
319         /* device is valid, add in list (sorted) */
320         if (TAILQ_EMPTY(&pci_device_list)) {
321                 TAILQ_INSERT_TAIL(&pci_device_list, dev, next);
322         }
323         else {
324                 struct rte_pci_device *dev2 = NULL;
325                 int ret;
326
327                 TAILQ_FOREACH(dev2, &pci_device_list, next) {
328                         ret = rte_eal_compare_pci_addr(&dev->addr, &dev2->addr);
329                         if (ret > 0)
330                                 continue;
331                         else if (ret < 0) {
332                                 TAILQ_INSERT_BEFORE(dev2, dev, next);
333                                 return 0;
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                                 return 0;
342                         }
343                 }
344                 TAILQ_INSERT_TAIL(&pci_device_list, dev, next);
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_eal_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         fd = open("/dev/pci", O_RDONLY);
373         if (fd < 0) {
374                 RTE_LOG(ERR, EAL, "%s(): error opening /dev/pci\n", __func__);
375                 goto error;
376         }
377
378         do {
379                 unsigned i;
380                 if (ioctl(fd, PCIOCGETCONF, &conf_io) < 0) {
381                         RTE_LOG(ERR, EAL, "%s(): error with ioctl on /dev/pci: %s\n",
382                                         __func__, strerror(errno));
383                         goto error;
384                 }
385
386                 for (i = 0; i < conf_io.num_matches; i++)
387                         if (pci_scan_one(fd, &matches[i]) < 0)
388                                 goto error;
389
390                 dev_count += conf_io.num_matches;
391         } while(conf_io.status == PCI_GETCONF_MORE_DEVS);
392
393         close(fd);
394
395         RTE_LOG(ERR, EAL, "PCI scan found %u devices\n", dev_count);
396         return 0;
397
398 error:
399         if (fd >= 0)
400                 close(fd);
401         return -1;
402 }
403
404 /* Read PCI config space. */
405 int rte_eal_pci_read_config(const struct rte_pci_device *dev,
406                             void *buf, size_t len, off_t offset)
407 {
408         int fd = -1;
409         struct pci_io pi = {
410                 .pi_sel = {
411                         .pc_domain = dev->addr.domain,
412                         .pc_bus = dev->addr.bus,
413                         .pc_dev = dev->addr.devid,
414                         .pc_func = dev->addr.function,
415                 },
416                 .pi_reg = offset,
417                 .pi_width = len,
418         };
419
420         if (len == 3 || len > sizeof(pi.pi_data)) {
421                 RTE_LOG(ERR, EAL, "%s(): invalid pci read length\n", __func__);
422                 goto error;
423         }
424
425         fd = open("/dev/pci", O_RDONLY);
426         if (fd < 0) {
427                 RTE_LOG(ERR, EAL, "%s(): error opening /dev/pci\n", __func__);
428                 goto error;
429         }
430
431         if (ioctl(fd, PCIOCREAD, &pi) < 0)
432                 goto error;
433         close(fd);
434
435         memcpy(buf, &pi.pi_data, len);
436         return 0;
437
438  error:
439         if (fd >= 0)
440                 close(fd);
441         return -1;
442 }
443
444 /* Write PCI config space. */
445 int rte_eal_pci_write_config(const struct rte_pci_device *dev,
446                              const void *buf, size_t len, off_t offset)
447 {
448         int fd = -1;
449
450         struct pci_io pi = {
451                 .pi_sel = {
452                         .pc_domain = dev->addr.domain,
453                         .pc_bus = dev->addr.bus,
454                         .pc_dev = dev->addr.devid,
455                         .pc_func = dev->addr.function,
456                 },
457                 .pi_reg = offset,
458                 .pi_data = *(const uint32_t *)buf,
459                 .pi_width = len,
460         };
461
462         if (len == 3 || len > sizeof(pi.pi_data)) {
463                 RTE_LOG(ERR, EAL, "%s(): invalid pci read length\n", __func__);
464                 goto error;
465         }
466
467         memcpy(&pi.pi_data, buf, len);
468
469         fd = open("/dev/pci", O_RDONLY);
470         if (fd < 0) {
471                 RTE_LOG(ERR, EAL, "%s(): error opening /dev/pci\n", __func__);
472                 goto error;
473         }
474
475         if (ioctl(fd, PCIOCWRITE, &pi) < 0)
476                 goto error;
477
478         close(fd);
479         return 0;
480
481  error:
482         if (fd >= 0)
483                 close(fd);
484         return -1;
485 }
486
487 int
488 rte_eal_pci_ioport_map(struct rte_pci_device *dev, int bar,
489                        struct rte_pci_ioport *p)
490 {
491         int ret;
492
493         switch (dev->kdrv) {
494 #if defined(RTE_ARCH_X86)
495         case RTE_KDRV_NIC_UIO:
496                 if ((uintptr_t) dev->mem_resource[bar].addr <= UINT16_MAX) {
497                         p->base = (uintptr_t)dev->mem_resource[bar].addr;
498                         ret = 0;
499                 } else
500                         ret = -1;
501                 break;
502 #endif
503         default:
504                 ret = -1;
505                 break;
506         }
507
508         if (!ret)
509                 p->dev = dev;
510
511         return ret;
512 }
513
514 static void
515 pci_uio_ioport_read(struct rte_pci_ioport *p,
516                     void *data, size_t len, off_t offset)
517 {
518 #if defined(RTE_ARCH_X86)
519         uint8_t *d;
520         int size;
521         unsigned short reg = p->base + offset;
522
523         for (d = data; len > 0; d += size, reg += size, len -= size) {
524                 if (len >= 4) {
525                         size = 4;
526                         *(uint32_t *)d = inl(reg);
527                 } else if (len >= 2) {
528                         size = 2;
529                         *(uint16_t *)d = inw(reg);
530                 } else {
531                         size = 1;
532                         *d = inb(reg);
533                 }
534         }
535 #else
536         RTE_SET_USED(p);
537         RTE_SET_USED(data);
538         RTE_SET_USED(len);
539         RTE_SET_USED(offset);
540 #endif
541 }
542
543 void
544 rte_eal_pci_ioport_read(struct rte_pci_ioport *p,
545                         void *data, size_t len, off_t offset)
546 {
547         switch (p->dev->kdrv) {
548         case RTE_KDRV_NIC_UIO:
549                 pci_uio_ioport_read(p, data, len, offset);
550                 break;
551         default:
552                 break;
553         }
554 }
555
556 static void
557 pci_uio_ioport_write(struct rte_pci_ioport *p,
558                      const void *data, size_t len, off_t offset)
559 {
560 #if defined(RTE_ARCH_X86)
561         const uint8_t *s;
562         int size;
563         unsigned short reg = p->base + offset;
564
565         for (s = data; len > 0; s += size, reg += size, len -= size) {
566                 if (len >= 4) {
567                         size = 4;
568                         outl(*(const uint32_t *)s, reg);
569                 } else if (len >= 2) {
570                         size = 2;
571                         outw(*(const uint16_t *)s, reg);
572                 } else {
573                         size = 1;
574                         outb(*s, reg);
575                 }
576         }
577 #else
578         RTE_SET_USED(p);
579         RTE_SET_USED(data);
580         RTE_SET_USED(len);
581         RTE_SET_USED(offset);
582 #endif
583 }
584
585 void
586 rte_eal_pci_ioport_write(struct rte_pci_ioport *p,
587                          const void *data, size_t len, off_t offset)
588 {
589         switch (p->dev->kdrv) {
590         case RTE_KDRV_NIC_UIO:
591                 pci_uio_ioport_write(p, data, len, offset);
592                 break;
593         default:
594                 break;
595         }
596 }
597
598 int
599 rte_eal_pci_ioport_unmap(struct rte_pci_ioport *p)
600 {
601         int ret;
602
603         switch (p->dev->kdrv) {
604 #if defined(RTE_ARCH_X86)
605         case RTE_KDRV_NIC_UIO:
606                 ret = 0;
607                 break;
608 #endif
609         default:
610                 ret = -1;
611                 break;
612         }
613
614         return ret;
615 }
616
617 /* Init the PCI EAL subsystem */
618 int
619 rte_eal_pci_init(void)
620 {
621         TAILQ_INIT(&pci_driver_list);
622         TAILQ_INIT(&pci_device_list);
623
624         /* for debug purposes, PCI can be disabled */
625         if (internal_config.no_pci)
626                 return 0;
627
628         if (rte_eal_pci_scan() < 0) {
629                 RTE_LOG(ERR, EAL, "%s(): Cannot scan PCI bus\n", __func__);
630                 return -1;
631         }
632         return 0;
633 }