pci: merge uio functions for linux and bsd
[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 #ifdef RTE_LIBRTE_EAL_HOTPLUG
152 static void
153 pci_uio_unmap(struct mapped_pci_resource *uio_res)
154 {
155         int i;
156
157         if (uio_res == NULL)
158                 return;
159
160         for (i = 0; i != uio_res->nb_maps; i++) {
161                 pci_unmap_resource(uio_res->maps[i].addr,
162                                 (size_t)uio_res->maps[i].size);
163                 rte_free(uio_res->maps[i].path);
164         }
165 }
166
167 static struct mapped_pci_resource *
168 pci_uio_find_resource(struct rte_pci_device *dev)
169 {
170         struct mapped_pci_resource *uio_res;
171         struct mapped_pci_res_list *uio_res_list =
172                         RTE_TAILQ_CAST(rte_uio_tailq.head, mapped_pci_res_list);
173
174         if (dev == NULL)
175                 return NULL;
176
177         TAILQ_FOREACH(uio_res, uio_res_list, next) {
178
179                 /* skip this element if it doesn't match our PCI address */
180                 if (!rte_eal_compare_pci_addr(&uio_res->pci_addr, &dev->addr))
181                         return uio_res;
182         }
183         return NULL;
184 }
185
186 /* unmap the PCI resource of a PCI device in virtual memory */
187 void
188 pci_uio_unmap_resource(struct rte_pci_device *dev)
189 {
190         struct mapped_pci_resource *uio_res;
191         struct mapped_pci_res_list *uio_res_list =
192                         RTE_TAILQ_CAST(rte_uio_tailq.head, mapped_pci_res_list);
193
194         if (dev == NULL)
195                 return;
196
197         /* find an entry for the device */
198         uio_res = pci_uio_find_resource(dev);
199         if (uio_res == NULL)
200                 return;
201
202         /* secondary processes - just free maps */
203         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
204                 return pci_uio_unmap(uio_res);
205
206         TAILQ_REMOVE(uio_res_list, uio_res, next);
207
208         /* unmap all resources */
209         pci_uio_unmap(uio_res);
210
211         /* free uio resource */
212         rte_free(uio_res);
213
214         /* close fd if in primary process */
215         close(dev->intr_handle.fd);
216         if (dev->intr_handle.uio_cfg_fd >= 0) {
217                 close(dev->intr_handle.uio_cfg_fd);
218                 dev->intr_handle.uio_cfg_fd = -1;
219         }
220
221         dev->intr_handle.fd = -1;
222         dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
223 }
224 #endif /* RTE_LIBRTE_EAL_HOTPLUG */