Imported Upstream version 16.04
[deb_dpdk.git] / lib / librte_eal / common / eal_common_pci_uio.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2015 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 <fcntl.h>
35 #include <string.h>
36 #include <unistd.h>
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #include <sys/mman.h>
40
41 #include <rte_eal.h>
42 #include <rte_tailq.h>
43 #include <rte_log.h>
44 #include <rte_malloc.h>
45
46 #include "eal_private.h"
47
48 static struct rte_tailq_elem rte_uio_tailq = {
49         .name = "UIO_RESOURCE_LIST",
50 };
51 EAL_REGISTER_TAILQ(rte_uio_tailq)
52
53 static int
54 pci_uio_map_secondary(struct rte_pci_device *dev)
55 {
56         int fd, i;
57         struct mapped_pci_resource *uio_res;
58         struct mapped_pci_res_list *uio_res_list =
59                         RTE_TAILQ_CAST(rte_uio_tailq.head, mapped_pci_res_list);
60
61         TAILQ_FOREACH(uio_res, uio_res_list, next) {
62
63                 /* skip this element if it doesn't match our PCI address */
64                 if (rte_eal_compare_pci_addr(&uio_res->pci_addr, &dev->addr))
65                         continue;
66
67                 for (i = 0; i != uio_res->nb_maps; i++) {
68                         /*
69                          * open devname, to mmap it
70                          */
71                         fd = open(uio_res->maps[i].path, O_RDWR);
72                         if (fd < 0) {
73                                 RTE_LOG(ERR, EAL, "Cannot open %s: %s\n",
74                                         uio_res->maps[i].path, strerror(errno));
75                                 return -1;
76                         }
77
78                         void *mapaddr = pci_map_resource(uio_res->maps[i].addr,
79                                         fd, (off_t)uio_res->maps[i].offset,
80                                         (size_t)uio_res->maps[i].size, 0);
81                         /* fd is not needed in slave process, close it */
82                         close(fd);
83                         if (mapaddr != uio_res->maps[i].addr) {
84                                 RTE_LOG(ERR, EAL,
85                                         "Cannot mmap device resource file %s to address: %p\n",
86                                         uio_res->maps[i].path,
87                                         uio_res->maps[i].addr);
88                                 return -1;
89                         }
90                 }
91                 return 0;
92         }
93
94         RTE_LOG(ERR, EAL, "Cannot find resource for device\n");
95         return 1;
96 }
97
98 /* map the PCI resource of a PCI device in virtual memory */
99 int
100 pci_uio_map_resource(struct rte_pci_device *dev)
101 {
102         int i, map_idx = 0, ret;
103         uint64_t phaddr;
104         struct mapped_pci_resource *uio_res = NULL;
105         struct mapped_pci_res_list *uio_res_list =
106                 RTE_TAILQ_CAST(rte_uio_tailq.head, mapped_pci_res_list);
107
108         dev->intr_handle.fd = -1;
109         dev->intr_handle.uio_cfg_fd = -1;
110         dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
111
112         /* secondary processes - use already recorded details */
113         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
114                 return pci_uio_map_secondary(dev);
115
116         /* allocate uio resource */
117         ret = pci_uio_alloc_resource(dev, &uio_res);
118         if (ret)
119                 return ret;
120
121         /* Map all BARs */
122         for (i = 0; i != PCI_MAX_RESOURCE; i++) {
123                 /* skip empty BAR */
124                 phaddr = dev->mem_resource[i].phys_addr;
125                 if (phaddr == 0)
126                         continue;
127
128                 ret = pci_uio_map_resource_by_index(dev, i,
129                                 uio_res, map_idx);
130                 if (ret)
131                         goto error;
132
133                 map_idx++;
134         }
135
136         uio_res->nb_maps = map_idx;
137
138         TAILQ_INSERT_TAIL(uio_res_list, uio_res, next);
139
140         return 0;
141 error:
142         for (i = 0; i < map_idx; i++) {
143                 pci_unmap_resource(uio_res->maps[i].addr,
144                                 (size_t)uio_res->maps[i].size);
145                 rte_free(uio_res->maps[i].path);
146         }
147         pci_uio_free_resource(dev, uio_res);
148         return -1;
149 }
150
151 static void
152 pci_uio_unmap(struct mapped_pci_resource *uio_res)
153 {
154         int i;
155
156         if (uio_res == NULL)
157                 return;
158
159         for (i = 0; i != uio_res->nb_maps; i++) {
160                 pci_unmap_resource(uio_res->maps[i].addr,
161                                 (size_t)uio_res->maps[i].size);
162                 rte_free(uio_res->maps[i].path);
163         }
164 }
165
166 static struct mapped_pci_resource *
167 pci_uio_find_resource(struct rte_pci_device *dev)
168 {
169         struct mapped_pci_resource *uio_res;
170         struct mapped_pci_res_list *uio_res_list =
171                         RTE_TAILQ_CAST(rte_uio_tailq.head, mapped_pci_res_list);
172
173         if (dev == NULL)
174                 return NULL;
175
176         TAILQ_FOREACH(uio_res, uio_res_list, next) {
177
178                 /* skip this element if it doesn't match our PCI address */
179                 if (!rte_eal_compare_pci_addr(&uio_res->pci_addr, &dev->addr))
180                         return uio_res;
181         }
182         return NULL;
183 }
184
185 /* unmap the PCI resource of a PCI device in virtual memory */
186 void
187 pci_uio_unmap_resource(struct rte_pci_device *dev)
188 {
189         struct mapped_pci_resource *uio_res;
190         struct mapped_pci_res_list *uio_res_list =
191                         RTE_TAILQ_CAST(rte_uio_tailq.head, mapped_pci_res_list);
192
193         if (dev == NULL)
194                 return;
195
196         /* find an entry for the device */
197         uio_res = pci_uio_find_resource(dev);
198         if (uio_res == NULL)
199                 return;
200
201         /* secondary processes - just free maps */
202         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
203                 return pci_uio_unmap(uio_res);
204
205         TAILQ_REMOVE(uio_res_list, uio_res, next);
206
207         /* unmap all resources */
208         pci_uio_unmap(uio_res);
209
210         /* free uio resource */
211         rte_free(uio_res);
212
213         /* close fd if in primary process */
214         close(dev->intr_handle.fd);
215         if (dev->intr_handle.uio_cfg_fd >= 0) {
216                 close(dev->intr_handle.uio_cfg_fd);
217                 dev->intr_handle.uio_cfg_fd = -1;
218         }
219
220         dev->intr_handle.fd = -1;
221         dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
222 }