4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
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.
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.
39 #include <linux/pci_regs.h>
43 #include <rte_common.h>
44 #include <rte_malloc.h>
45 #include <rte_tailq.h>
47 #include "rte_pci_dev_ids.h"
48 #include "eal_filesystem.h"
49 #include "eal_pci_init.h"
51 void *pci_map_addr = NULL;
54 #define OFF_MAX ((uint64_t)(off_t)-1)
57 pci_uio_set_bus_master(int dev_fd)
62 ret = pread(dev_fd, ®, sizeof(reg), PCI_COMMAND);
63 if (ret != sizeof(reg)) {
65 "Cannot read command from PCI config space!\n");
69 /* return if bus mastering is already on */
70 if (reg & PCI_COMMAND_MASTER)
73 reg |= PCI_COMMAND_MASTER;
75 ret = pwrite(dev_fd, ®, sizeof(reg), PCI_COMMAND);
76 if (ret != sizeof(reg)) {
78 "Cannot write command to PCI config space!\n");
86 pci_uio_map_secondary(struct rte_pci_device *dev)
89 struct mapped_pci_resource *uio_res;
91 TAILQ_FOREACH(uio_res, pci_res_list, next) {
93 /* skip this element if it doesn't match our PCI address */
94 if (memcmp(&uio_res->pci_addr, &dev->addr, sizeof(dev->addr)))
97 for (i = 0; i != uio_res->nb_maps; i++) {
99 * open devname, to mmap it
101 fd = open(uio_res->maps[i].path, O_RDWR);
103 RTE_LOG(ERR, EAL, "Cannot open %s: %s\n",
104 uio_res->maps[i].path, strerror(errno));
108 void *mapaddr = pci_map_resource(uio_res->maps[i].addr,
109 fd, (off_t)uio_res->maps[i].offset,
110 (size_t)uio_res->maps[i].size, 0);
111 if (mapaddr != uio_res->maps[i].addr) {
112 if (mapaddr == MAP_FAILED)
114 "Cannot mmap device resource file %s: %s\n",
115 uio_res->maps[i].path,
119 "Cannot mmap device resource file %s to address: %p\n",
120 uio_res->maps[i].path,
121 uio_res->maps[i].addr);
126 /* fd is not needed in slave process, close it */
132 RTE_LOG(ERR, EAL, "Cannot find resource for device\n");
137 pci_mknod_uio_dev(const char *sysfs_uio_path, unsigned uio_num)
140 char filename[PATH_MAX];
142 unsigned major, minor;
145 /* get the name of the sysfs file that contains the major and minor
146 * of the uio device and read its content */
147 snprintf(filename, sizeof(filename), "%s/dev", sysfs_uio_path);
149 f = fopen(filename, "r");
151 RTE_LOG(ERR, EAL, "%s(): cannot open sysfs to get major:minor\n",
156 ret = fscanf(f, "%u:%u", &major, &minor);
158 RTE_LOG(ERR, EAL, "%s(): cannot parse sysfs to get major:minor\n",
165 /* create the char device "mknod /dev/uioX c major minor" */
166 snprintf(filename, sizeof(filename), "/dev/uio%u", uio_num);
167 dev = makedev(major, minor);
168 ret = mknod(filename, S_IFCHR | S_IRUSR | S_IWUSR, dev);
170 RTE_LOG(ERR, EAL, "%s(): mknod() failed %s\n",
171 __func__, strerror(errno));
179 * Return the uioX char device used for a pci device. On success, return
180 * the UIO number and fill dstbuf string with the path of the device in
181 * sysfs. On error, return a negative value. In this case dstbuf is
185 pci_get_uio_dev(struct rte_pci_device *dev, char *dstbuf,
188 struct rte_pci_addr *loc = &dev->addr;
189 unsigned int uio_num;
192 char dirname[PATH_MAX];
194 /* depending on kernel version, uio can be located in uio/uioX
197 snprintf(dirname, sizeof(dirname),
198 SYSFS_PCI_DEVICES "/" PCI_PRI_FMT "/uio",
199 loc->domain, loc->bus, loc->devid, loc->function);
201 dir = opendir(dirname);
203 /* retry with the parent directory */
204 snprintf(dirname, sizeof(dirname),
205 SYSFS_PCI_DEVICES "/" PCI_PRI_FMT,
206 loc->domain, loc->bus, loc->devid, loc->function);
207 dir = opendir(dirname);
210 RTE_LOG(ERR, EAL, "Cannot opendir %s\n", dirname);
215 /* take the first file starting with "uio" */
216 while ((e = readdir(dir)) != NULL) {
217 /* format could be uio%d ...*/
218 int shortprefix_len = sizeof("uio") - 1;
219 /* ... or uio:uio%d */
220 int longprefix_len = sizeof("uio:uio") - 1;
223 if (strncmp(e->d_name, "uio", 3) != 0)
226 /* first try uio%d */
228 uio_num = strtoull(e->d_name + shortprefix_len, &endptr, 10);
229 if (errno == 0 && endptr != (e->d_name + shortprefix_len)) {
230 snprintf(dstbuf, buflen, "%s/uio%u", dirname, uio_num);
234 /* then try uio:uio%d */
236 uio_num = strtoull(e->d_name + longprefix_len, &endptr, 10);
237 if (errno == 0 && endptr != (e->d_name + longprefix_len)) {
238 snprintf(dstbuf, buflen, "%s/uio:uio%u", dirname, uio_num);
244 /* No uio resource found */
248 /* create uio device if we've been asked to */
249 if (internal_config.create_uio_dev &&
250 pci_mknod_uio_dev(dstbuf, uio_num) < 0)
251 RTE_LOG(WARNING, EAL, "Cannot create /dev/uio%u\n", uio_num);
256 /* map the PCI resource of a PCI device in virtual memory */
258 pci_uio_map_resource(struct rte_pci_device *dev)
261 char dirname[PATH_MAX];
262 char cfgname[PATH_MAX];
263 char devname[PATH_MAX]; /* contains the /dev/uioX */
267 struct rte_pci_addr *loc = &dev->addr;
268 struct mapped_pci_resource *uio_res;
269 struct pci_map *maps;
271 dev->intr_handle.fd = -1;
272 dev->intr_handle.uio_cfg_fd = -1;
273 dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
275 /* secondary processes - use already recorded details */
276 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
277 return pci_uio_map_secondary(dev);
279 /* find uio resource */
280 uio_num = pci_get_uio_dev(dev, dirname, sizeof(dirname));
282 RTE_LOG(WARNING, EAL, " "PCI_PRI_FMT" not managed by UIO driver, "
283 "skipping\n", loc->domain, loc->bus, loc->devid, loc->function);
286 snprintf(devname, sizeof(devname), "/dev/uio%u", uio_num);
288 /* save fd if in primary process */
289 dev->intr_handle.fd = open(devname, O_RDWR);
290 if (dev->intr_handle.fd < 0) {
291 RTE_LOG(ERR, EAL, "Cannot open %s: %s\n",
292 devname, strerror(errno));
295 dev->intr_handle.type = RTE_INTR_HANDLE_UIO;
297 snprintf(cfgname, sizeof(cfgname),
298 "/sys/class/uio/uio%u/device/config", uio_num);
299 dev->intr_handle.uio_cfg_fd = open(cfgname, O_RDWR);
300 if (dev->intr_handle.uio_cfg_fd < 0) {
301 RTE_LOG(ERR, EAL, "Cannot open %s: %s\n",
302 cfgname, strerror(errno));
306 /* set bus master that is not done by uio_pci_generic */
307 if (pci_uio_set_bus_master(dev->intr_handle.uio_cfg_fd)) {
308 RTE_LOG(ERR, EAL, "Cannot set up bus mastering!\n");
312 /* allocate the mapping details for secondary processes*/
313 uio_res = rte_zmalloc("UIO_RES", sizeof(*uio_res), 0);
314 if (uio_res == NULL) {
316 "%s(): cannot store uio mmap details\n", __func__);
320 snprintf(uio_res->path, sizeof(uio_res->path), "%s", devname);
321 memcpy(&uio_res->pci_addr, &dev->addr, sizeof(uio_res->pci_addr));
324 maps = uio_res->maps;
325 for (i = 0, map_idx = 0; i != PCI_MAX_RESOURCE; i++) {
330 phaddr = dev->mem_resource[i].phys_addr;
335 /* update devname for mmap */
336 snprintf(devname, sizeof(devname),
337 SYSFS_PCI_DEVICES "/" PCI_PRI_FMT "/resource%d",
338 loc->domain, loc->bus, loc->devid, loc->function,
342 * open resource file, to mmap it
344 fd = open(devname, O_RDWR);
346 RTE_LOG(ERR, EAL, "Cannot open %s: %s\n",
347 devname, strerror(errno));
351 /* try mapping somewhere close to the end of hugepages */
352 if (pci_map_addr == NULL)
353 pci_map_addr = pci_find_max_end_va();
355 mapaddr = pci_map_resource(pci_map_addr, fd, 0,
356 (size_t)dev->mem_resource[i].len, 0);
357 if (mapaddr == MAP_FAILED)
360 pci_map_addr = RTE_PTR_ADD(mapaddr,
361 (size_t)dev->mem_resource[i].len);
363 maps[map_idx].path = rte_malloc(NULL, strlen(devname) + 1, 0);
364 if (maps[map_idx].path == NULL)
374 maps[map_idx].phaddr = dev->mem_resource[i].phys_addr;
375 maps[map_idx].size = dev->mem_resource[i].len;
376 maps[map_idx].addr = mapaddr;
377 maps[map_idx].offset = 0;
378 strcpy(maps[map_idx].path, devname);
380 dev->mem_resource[i].addr = mapaddr;
383 uio_res->nb_maps = map_idx;
385 TAILQ_INSERT_TAIL(pci_res_list, uio_res, next);