update Intel copyright years to 2014
[dpdk.git] / lib / librte_eal / linuxapp / eal / eal_pci.c
index 20a4342..d0a729b 100644 (file)
@@ -1,35 +1,34 @@
 /*-
  *   BSD LICENSE
  * 
- *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
+ *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
  *   All rights reserved.
  * 
- *   Redistribution and use in source and binary forms, with or without 
- *   modification, are permitted provided that the following conditions 
+ *   Redistribution and use in source and binary forms, with or without
+ *   modification, are permitted provided that the following conditions
  *   are met:
  * 
- *     * Redistributions of source code must retain the above copyright 
+ *     * Redistributions of source code must retain the above copyright
  *       notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above copyright 
- *       notice, this list of conditions and the following disclaimer in 
- *       the documentation and/or other materials provided with the 
+ *     * Redistributions in binary form must reproduce the above copyright
+ *       notice, this list of conditions and the following disclaimer in
+ *       the documentation and/or other materials provided with the
  *       distribution.
- *     * Neither the name of Intel Corporation nor the names of its 
- *       contributors may be used to endorse or promote products derived 
+ *     * Neither the name of Intel Corporation nor the names of its
+ *       contributors may be used to endorse or promote products derived
  *       from this software without specific prior written permission.
  * 
- *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
- *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
- *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
- *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
- *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
- *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
- *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
- *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
- *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
- *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+ *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- * 
  */
 
 #include <ctype.h>
@@ -66,6 +65,7 @@
 #include <rte_string_fns.h>
 #include <rte_debug.h>
 
+#include "rte_pci_dev_ids.h"
 #include "eal_filesystem.h"
 #include "eal_private.h"
 
@@ -88,15 +88,6 @@ struct uio_map {
        uint64_t phaddr;
 };
 
-#define PROC_MODULES "/proc/modules"
-
-#define IGB_UIO_NAME "igb_uio"
-
-#define UIO_DRV_PATH  "/sys/bus/pci/drivers/%s"
-
-/* maximum time to wait that /dev/uioX appears */
-#define UIO_DEV_WAIT_TIMEOUT 3 /* seconds */
-
 /*
  * For multi-process we need to reproduce all PCI mappings in secondary
  * processes, so save them in a tailq.
@@ -115,6 +106,19 @@ TAILQ_HEAD(uio_res_list, uio_resource);
 static struct uio_res_list *uio_res_list = NULL;
 static int pci_parse_sysfs_value(const char *filename, uint64_t *val);
 
+/* forward prototype of function called in pci_switch_module below */
+static int pci_uio_map_resource(struct rte_pci_device *dev);
+
+#ifdef RTE_EAL_UNBIND_PORTS
+#define PROC_MODULES "/proc/modules"
+
+#define IGB_UIO_NAME "igb_uio"
+
+#define UIO_DRV_PATH  "/sys/bus/pci/drivers/%s"
+
+/* maximum time to wait that /dev/uioX appears */
+#define UIO_DEV_WAIT_TIMEOUT 3 /* seconds */
+
 /*
  * Check that a kernel module is loaded. Returns 0 on success, or if the
  * parameter is NULL, or -1 if the module is not loaded.
@@ -162,9 +166,6 @@ pci_bind_device(struct rte_pci_device *dev, char dr_path[])
        char dev_bind[PATH_MAX];
        struct rte_pci_addr *loc = &dev->addr;
 
-       RTE_LOG(DEBUG, EAL, "bind PCI device "PCI_PRI_FMT"\n",
-                       loc->domain, loc->bus, loc->devid, loc->function);
-
        n = rte_snprintf(dev_bind, sizeof(dev_bind), "%s/bind", dr_path);
        if ((n < 0) || (n >= (int)sizeof(buf))) {
                RTE_LOG(ERR, EAL, "Cannot rte_snprintf device bind path\n");
@@ -173,7 +174,7 @@ pci_bind_device(struct rte_pci_device *dev, char dr_path[])
 
        f = fopen(dev_bind, "w");
        if (f == NULL) {
-               RTE_LOG(ERR, EAL, "Cannot open %s\n", dev->previous_dr);
+               RTE_LOG(ERR, EAL, "Cannot open %s\n", dev_bind);
                return -1;
        }
        n = rte_snprintf(buf, sizeof(buf), PCI_PRI_FMT "\n",
@@ -188,8 +189,6 @@ pci_bind_device(struct rte_pci_device *dev, char dr_path[])
                return -1;
        }
 
-       RTE_LOG(DEBUG, EAL, "Device bound\n");
-
        fclose(f);
        return 0;
 }
@@ -237,43 +236,130 @@ pci_uio_bind_device(struct rte_pci_device *dev, const char *module_name)
        return 0;
 }
 
-
-/*
- * open devname: it can take some time to
- * appear, so we wait some time before returning an error
- */
-static int uio_open(const char *devname)
+/* unbind kernel driver for this device */
+static int
+pci_unbind_kernel_driver(struct rte_pci_device *dev)
 {
-       int n, fd;
+       int n;
+       FILE *f;
+       char filename[PATH_MAX];
+       char buf[BUFSIZ];
+       struct rte_pci_addr *loc = &dev->addr;
+
+       /* open /sys/bus/pci/devices/AAAA:BB:CC.D/driver */
+       rte_snprintf(filename, sizeof(filename),
+                SYSFS_PCI_DEVICES "/" PCI_PRI_FMT "/driver/unbind",
+                loc->domain, loc->bus, loc->devid, loc->function);
 
-       for (n=0; n < UIO_DEV_WAIT_TIMEOUT*10; n++) {
-               fd = open(devname, O_RDWR);
-               if (fd >= 0)
-                       return fd;
+       f = fopen(filename, "w");
+       if (f == NULL) /* device was not bound */
+               return 0;
 
-               if (errno != ENOENT)
-                       break;
-               usleep(100000);
+       n = rte_snprintf(buf, sizeof(buf), PCI_PRI_FMT "\n",
+                    loc->domain, loc->bus, loc->devid, loc->function);
+       if ((n < 0) || (n >= (int)sizeof(buf))) {
+               RTE_LOG(ERR, EAL, "%s(): rte_snprintf failed\n", __func__);
+               goto error;
        }
+       if (fwrite(buf, n, 1, f) == 0) {
+               RTE_LOG(ERR, EAL, "%s(): could not write to %s\n", __func__,
+                               filename);
+               goto error;
+       }
+
+       fclose(f);
+       return 0;
+
+error:
+       fclose(f);
        return -1;
 }
 
+
+static int
+pci_switch_module(struct rte_pci_driver *dr, struct rte_pci_device *dev,
+               int uio_status, const char *module_name)
+{
+       if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
+               /* check that our driver is loaded */
+               if (uio_status != 0 &&
+                               (uio_status = pci_uio_check_module(module_name)) != 0)
+                       rte_exit(EXIT_FAILURE, "The %s module is required by the "
+                                       "%s driver\n", module_name, dr->name);
+
+               /* unbind current driver, bind ours */
+               if (pci_unbind_kernel_driver(dev) < 0)
+                       return -1;
+               if (pci_uio_bind_device(dev, module_name) < 0)
+                       return -1;
+       }
+       /* map the NIC resources */
+       if (pci_uio_map_resource(dev) < 0)
+               return -1;
+
+       return 0;
+}
+
+#endif /* ifdef EAL_UNBIND_PORTS */
+
 /* map a particular resource from a file */
 static void *
-pci_mmap(int fd, void *addr, off_t offset, size_t size)
+pci_map_resource(struct rte_pci_device *dev, void *requested_addr, 
+               const char *devname, off_t offset, size_t size)
 {
+       int fd;
        void *mapaddr;
 
+#ifdef RTE_EAL_UNBIND_PORTS
+       /*
+        * open devname, and mmap it: it can take some time to
+        * appear, so we wait some time before returning an error
+        */
+       unsigned n;
+       fd = dev->intr_handle.fd;
+       for (n = 0; n < UIO_DEV_WAIT_TIMEOUT*10 && fd < 0; n++) {
+               errno = 0;
+               if ((fd = open(devname, O_RDWR)) < 0 && errno != ENOENT)
+                       break;
+               usleep(100000);
+       }
+#else
+       /*
+        * open devname, to mmap it
+        */
+       fd = open(devname, O_RDWR);
+#endif
+       if (fd < 0) {
+               RTE_LOG(ERR, EAL, "Cannot open %s: %s\n", 
+                       devname, strerror(errno));
+               goto fail;
+       }
+
        /* Map the PCI memory resource of device */
-       mapaddr = mmap(addr, size, PROT_READ | PROT_WRITE, MAP_SHARED,
-                      fd, offset);
-       if (mapaddr == MAP_FAILED || (addr != NULL && mapaddr != addr)) {
-               RTE_LOG(ERR, EAL, "%s(): cannot mmap %zd@0x%lx: %s\n",
-                       __func__, size, offset, strerror(errno));
-               return NULL;
+       mapaddr = mmap(requested_addr, size, PROT_READ | PROT_WRITE,
+                       MAP_SHARED, fd, offset);
+       if (mapaddr == MAP_FAILED ||
+                       (requested_addr != NULL && mapaddr != requested_addr)) {
+               RTE_LOG(ERR, EAL, "%s(): cannot mmap(%s(%d), %p, 0x%lx, 0x%lx):"
+                       " %s (%p)\n", __func__, devname, fd, requested_addr, 
+                       (unsigned long)size, (unsigned long)offset,
+                       strerror(errno), mapaddr);
+               close(fd);
+               goto fail;
+       }
+       if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
+               /* save fd if in primary process */
+               dev->intr_handle.fd = fd;
+               dev->intr_handle.type = RTE_INTR_HANDLE_UIO;
+       } else {
+               /* fd is not needed in slave process, close it */
+               dev->intr_handle.fd = -1;
+               dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
+               close(fd);
        }
 
-       RTE_LOG(DEBUG, EAL, "PCI memory mapped at %p\n", mapaddr);
+       RTE_LOG(DEBUG, EAL, "  PCI memory mapped at %p\n", mapaddr);
+
        return mapaddr;
 
 fail:
@@ -382,10 +468,12 @@ pci_uio_map_resource(struct rte_pci_device *dev)
        struct dirent *e;
        DIR *dir;
        char dirname[PATH_MAX];
+       char filename[PATH_MAX];
        char dirname2[PATH_MAX];
        char devname[PATH_MAX]; /* contains the /dev/uioX */
        void *mapaddr;
        unsigned uio_num;
+       unsigned long start,size;
        uint64_t phaddr;
        uint64_t offset;
        uint64_t pagesz;
@@ -394,12 +482,12 @@ pci_uio_map_resource(struct rte_pci_device *dev)
        struct uio_resource *uio_res;
        struct uio_map *maps;
 
-       RTE_LOG(DEBUG, EAL, "map PCI resource for device "PCI_PRI_FMT"\n",
-               loc->domain, loc->bus, loc->devid, loc->function);
+       dev->intr_handle.fd = -1;
 
        /* secondary processes - use already recorded details */
-       if (rte_eal_process_type() != RTE_PROC_PRIMARY)
-               return pci_uio_map_restore(dev);
+       if ((rte_eal_process_type() != RTE_PROC_PRIMARY) &&
+               (dev->id.vendor_id != PCI_VENDOR_ID_QUMRANET))
+               return (pci_uio_map_secondary(dev));
 
        /* depending on kernel version, uio can be located in uio/uioX
         * or uio:uioX */
@@ -424,8 +512,10 @@ pci_uio_map_resource(struct rte_pci_device *dev)
 
        /* take the first file starting with "uio" */
        while ((e = readdir(dir)) != NULL) {
-               int shortprefix_len = sizeof("uio") - 1; /* format could be uio%d ...*/
-               int longprefix_len = sizeof("uio:uio") - 1; /* ... or uio:uio%d */
+               /* format could be uio%d ...*/
+               int shortprefix_len = sizeof("uio") - 1;
+               /* ... or uio:uio%d */
+               int longprefix_len = sizeof("uio:uio") - 1; 
                char *endptr;
 
                if (strncmp(e->d_name, "uio", 3) != 0)
@@ -434,7 +524,7 @@ pci_uio_map_resource(struct rte_pci_device *dev)
                /* first try uio%d */
                errno = 0;
                uio_num = strtoull(e->d_name + shortprefix_len, &endptr, 10);
-               if (errno == 0 && endptr != e->d_name) {
+               if (errno == 0 && endptr != (e->d_name + shortprefix_len)) {
                        rte_snprintf(dirname2, sizeof(dirname2),
                                 "%s/uio%u", dirname, uio_num);
                        break;
@@ -443,7 +533,7 @@ pci_uio_map_resource(struct rte_pci_device *dev)
                /* then try uio:uio%d */
                errno = 0;
                uio_num = strtoull(e->d_name + longprefix_len, &endptr, 10);
-               if (errno == 0 && endptr != e->d_name) {
+               if (errno == 0 && endptr != (e->d_name + longprefix_len)) {
                        rte_snprintf(dirname2, sizeof(dirname2),
                                 "%s/uio:uio%u", dirname, uio_num);
                        break;
@@ -458,17 +548,42 @@ pci_uio_map_resource(struct rte_pci_device *dev)
                return -1;
        }
 
+       if(dev->id.vendor_id == PCI_VENDOR_ID_QUMRANET) {
+               /* get portio size */
+               rte_snprintf(filename, sizeof(filename),
+                        "%s/portio/port0/size", dirname2);
+               if (eal_parse_sysfs_value(filename, &size) < 0) {
+                       RTE_LOG(ERR, EAL, "%s(): cannot parse size\n",
+                               __func__);
+                       return -1;
+               }
+
+               /* get portio start */
+               rte_snprintf(filename, sizeof(filename),
+                        "%s/portio/port0/start", dirname2);
+               if (eal_parse_sysfs_value(filename, &start) < 0) {
+                       RTE_LOG(ERR, EAL, "%s(): cannot parse portio start\n",
+                               __func__);
+                       return -1;
+               }
+               dev->mem_resource[0].addr = (void *)(uintptr_t)start;
+               dev->mem_resource[0].len =  (uint64_t)size;
+               RTE_LOG(DEBUG, EAL, "PCI Port IO found start=0x%lx with size=0x%lx\n", start, size);
+               /* rte_virtio_pmd does not need any other bar even if available */
+               return (0);
+       }
+       
        /* allocate the mapping details for secondary processes*/
        if ((uio_res = rte_zmalloc("UIO_RES", sizeof (*uio_res), 0)) == NULL) {
                RTE_LOG(ERR, EAL,
                        "%s(): cannot store uio mmap details\n", __func__);
                return (-1);
        }
+
        rte_snprintf(devname, sizeof(devname), "/dev/uio%u", uio_num);
        rte_snprintf(uio_res->path, sizeof(uio_res->path), "%s", devname);
        memcpy(&uio_res->pci_addr, &dev->addr, sizeof(uio_res->pci_addr));
+
        /* collect info about device mappings */
        if ((nb_maps = pci_uio_get_mappings(dirname2, uio_res->maps,
                        sizeof (uio_res->maps) / sizeof (uio_res->maps[0])))
@@ -541,12 +656,14 @@ pci_parse_sysfs_resource(const char *filename, struct rte_pci_device *dev)
        for (i = 0; i<PCI_MAX_RESOURCE; i++) {
 
                if (fgets(buf, sizeof(buf), f) == NULL) {
-                       RTE_LOG(ERR, EAL, "%s(): cannot read resource\n", __func__);
+                       RTE_LOG(ERR, EAL, 
+                               "%s(): cannot read resource\n", __func__);
                        goto error;
                }
 
                if (rte_strsplit(buf, sizeof(buf), res_info.ptrs, 3, ' ') != 3) {
-                       RTE_LOG(ERR, EAL, "%s(): bad resource format\n", __func__);
+                       RTE_LOG(ERR, EAL, 
+                               "%s(): bad resource format\n", __func__);
                        goto error;
                }
                errno = 0;
@@ -554,7 +671,8 @@ pci_parse_sysfs_resource(const char *filename, struct rte_pci_device *dev)
                end_addr = strtoull(res_info.end_addr, NULL, 16);
                flags = strtoull(res_info.flags, NULL, 16);
                if (errno != 0) {
-                       RTE_LOG(ERR, EAL, "%s(): bad resource format\n", __func__);
+                       RTE_LOG(ERR, EAL, 
+                               "%s(): bad resource format\n", __func__);
                        goto error;
                }
 
@@ -612,13 +730,13 @@ pci_parse_sysfs_value(const char *filename, uint64_t *val)
 static int
 pci_addr_comparison(struct rte_pci_addr *addr, struct rte_pci_addr *addr2)
 {
-        uint64_t dev_addr = (addr->domain << 24) + (addr->bus << 16) + (addr->devid << 8) + addr->function;
-        uint64_t dev_addr2 = (addr2->domain << 24) + (addr2->bus << 16) + (addr2->devid << 8) + addr2->function;
+       uint64_t dev_addr = (addr->domain << 24) + (addr->bus << 16) + (addr->devid << 8) + addr->function;
+       uint64_t dev_addr2 = (addr2->domain << 24) + (addr2->bus << 16) + (addr2->devid << 8) + addr2->function;
 
-        if (dev_addr > dev_addr2) 
-                return 1;      
-        else 
-                return 0;
+       if (dev_addr > dev_addr2)
+               return 1;
+       else
+               return 0;
 }
 
 
@@ -676,6 +794,28 @@ pci_scan_one(const char *dirname, uint16_t domain, uint8_t bus,
        }
        dev->id.subsystem_device_id = (uint16_t)tmp;
 
+       /* get max_vfs */
+       dev->max_vfs = 0;
+       rte_snprintf(filename, sizeof(filename), "%s/max_vfs", dirname);
+       if (!access(filename, F_OK) && 
+           eal_parse_sysfs_value(filename, &tmp) == 0) {
+               dev->max_vfs = (uint16_t)tmp;
+       }
+
+       /* get numa node */
+       rte_snprintf(filename, sizeof(filename), "%s/numa_node",
+                dirname);
+       if (access(filename, R_OK) != 0) {
+               /* if no NUMA support just set node to 0 */
+               dev->numa_node = -1;
+       } else {
+               if (eal_parse_sysfs_value(filename, &tmp) < 0) {
+                       free(dev);
+                       return -1;
+               }
+               dev->numa_node = tmp;
+       }
+
        /* parse resources */
        rte_snprintf(filename, sizeof(filename), "%s/resource", dirname);
        if (pci_parse_sysfs_resource(filename, dev) < 0) {
@@ -793,104 +933,6 @@ error:
        return -1;
 }
 
-/* unbind kernel driver for this device */
-static int
-pci_unbind_kernel_driver(struct rte_pci_device *dev)
-{
-       int n;
-       FILE *f;
-       char filename[PATH_MAX];
-       char buf[BUFSIZ];
-       struct rte_pci_addr *loc = &dev->addr;
-
-       /* open /sys/bus/pci/devices/AAAA:BB:CC.D/driver */
-       rte_snprintf(filename, sizeof(filename),
-                SYSFS_PCI_DEVICES "/" PCI_PRI_FMT "/driver/unbind",
-                loc->domain, loc->bus, loc->devid, loc->function);
-
-       RTE_LOG(DEBUG, EAL, "unbind kernel driver %s\n", filename);
-
-       f = fopen(filename, "w");
-       if (f == NULL) /* device was not bound */
-               return 0;
-
-       n = rte_snprintf(buf, sizeof(buf), PCI_PRI_FMT "\n",
-                    loc->domain, loc->bus, loc->devid, loc->function);
-       if ((n < 0) || (n >= (int)sizeof(buf))) {
-               RTE_LOG(ERR, EAL, "%s(): rte_snprintf failed\n", __func__);
-               goto error;
-       }
-       if (fwrite(buf, n, 1, f) == 0) {
-               RTE_LOG(ERR, EAL, "%s(): could not write to %s\n", __func__,
-                               filename);
-               goto error;
-       }
-
-       fclose(f);
-       return 0;
-
-error:
-       fclose(f);
-       return -1;
-}
-
-static int
-pci_exit_process(struct rte_pci_device *dev)
-{
-       if (munmap(dev->mem_resource.addr, dev->mem_resource.len) == -1){
-               RTE_LOG(ERR, EAL, "Error with munmap\n");
-               return -1;
-       }
-       if (close(dev->intr_handle.fd) == -1){
-               RTE_LOG(ERR, EAL, "Error closing interrupt handle\n");
-               return -1;
-       }
-       if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
-               if (pci_unbind_kernel_driver(dev) < 0){
-                       RTE_LOG(ERR, EAL, "Error unbinding\n");
-                       return -1;
-               }
-               if (pci_bind_device(dev, dev->previous_dr) < 0){
-                       RTE_LOG(ERR, EAL, "Error binding\n");
-                       return -1;
-               }
-       }
-
-       return 0;
-}
-
-static void
-pci_get_previous_driver_path(struct rte_pci_device *dev)
-{
-       int n;
-       char dev_path[PATH_MAX];
-       char dr_path[PATH_MAX];
-       struct rte_pci_addr *loc = &dev->addr;
-
-       n = rte_snprintf(dev_path, sizeof(dev_path), SYSFS_PCI_DEVICES "/"
-                       PCI_PRI_FMT "/driver", loc->domain, loc->bus, loc->devid, loc->function );
-       if ((n < 0) || (n >= (int)sizeof(dev_path)))
-               RTE_LOG(ERR, EAL, "Cannot rte_snprintf device filepath\n");
-
-       n = readlink(dev_path, dr_path, sizeof(dr_path));
-       if ((n < 0) || (n >= (int)sizeof(dr_path))){
-               RTE_LOG(ERR, EAL, "Cannot readlink driver filepath\n");
-               dev->previous_dr[0] = '\0';
-               return;
-       }
-       dr_path[n] = '\0';
-
-       if (dr_path[0] != '/')
-               n = rte_snprintf(dev->previous_dr, sizeof(dev->previous_dr),
-                               SYSFS_PCI_DEVICES "/" PCI_PRI_FMT "/%s",
-                               loc->domain, loc->bus, loc->devid, loc->function, dr_path);
-       else
-               n = rte_snprintf(dev->previous_dr, sizeof(dev->previous_dr),
-                               "%s", dr_path);
-       if ((n < 0) || (n >= (int)sizeof(dev_path)))
-               RTE_LOG(ERR, EAL, "Cannot rte_snprintf driver filepath\n");
-}
-
 /*
  * If vendor/device ID match, call the devinit() function of the
  * driver.
@@ -899,11 +941,13 @@ int
 rte_eal_pci_probe_one_driver(struct rte_pci_driver *dr, struct rte_pci_device *dev)
 {
        struct rte_pci_id *id_table;
+#ifdef RTE_EAL_UNBIND_PORTS
        const char *module_name = NULL;
        int uio_status = -1;
 
        if (dr->drv_flags & RTE_PCI_DRV_NEED_IGB_UIO)
                module_name = IGB_UIO_NAME;
+#endif
 
        for (id_table = dr->id_table ; id_table->vendor_id != 0; id_table++) {
 
@@ -921,35 +965,25 @@ rte_eal_pci_probe_one_driver(struct rte_pci_driver *dr, struct rte_pci_device *d
                                id_table->subsystem_device_id != PCI_ANY_ID)
                        continue;
 
-               RTE_LOG(DEBUG, EAL, "probe driver: %x:%x %s\n", dev->id.vendor_id,
-                               dev->id.device_id, dr->name);
+               struct rte_pci_addr *loc = &dev->addr;
 
-               /* reference driver structure */
-               dev->driver = dr;
+               RTE_LOG(DEBUG, EAL, "PCI device "PCI_PRI_FMT" on NUMA socket %i\n",
+                               loc->domain, loc->bus, loc->devid, loc->function,
+                               dev->numa_node);
+
+               RTE_LOG(DEBUG, EAL, "  probe driver: %x:%x %s\n", dev->id.vendor_id,
+                               dev->id.device_id, dr->name);
 
                /* no initialization when blacklisted, return without error */
-               if (dev->blacklisted)
+               if (dev->blacklisted) {
+                       RTE_LOG(DEBUG, EAL, "  Device is blacklisted, not initializing\n");
                        return 0;
+               }
 
+#ifdef RTE_EAL_UNBIND_PORTS
                /* Unbind PCI devices if needed */
-               if (module_name != NULL) {
-
-                       if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
-                               /* check that our driver is loaded */
-                               if (uio_status != 0 &&
-                                               (uio_status = pci_uio_check_module(module_name)) != 0)
-                                       rte_exit(EXIT_FAILURE, "The %s module is required by the "
-                                                       "%s driver\n", module_name, dr->name);
-
-                               /* unbind current driver, bind ours */
-                               pci_get_previous_driver_path(dev);
-                               if (pci_unbind_kernel_driver(dev) < 0)
-                                       return -1;
-                               if (pci_uio_bind_device(dev, module_name) < 0)
-                                       return -1;
-                       }
-                       /* map the NIC resources */
-                       if (pci_uio_map_resource(dev) < 0)
+               if (module_name != NULL)
+                       if (pci_switch_module(dr, dev, uio_status, module_name) < 0)
                                return -1;
 #else
                /* just map the NIC resources */
@@ -972,21 +1006,8 @@ rte_eal_pci_probe_one_driver(struct rte_pci_driver *dr, struct rte_pci_device *d
                /* call the driver devinit() function */
                return dr->devinit(dr, dev);
        }
-       return -1;
-}
-
-/*Start the exit process for each dev in use*/
-void
-rte_eal_pci_exit(void)
-{
-       struct rte_pci_device *dev = NULL;
-
-       TAILQ_FOREACH(dev, &device_list, next){
-               if (dev->previous_dr[0] == '\0')
-                       continue;
-               if(pci_exit_process(dev) == 1)
-                       RTE_LOG(ERR, EAL, "Exit process failure\n");
-       }
+       /* return positive value if driver is not found */
+       return 1;
 }
 
 /* Init the PCI EAL subsystem */