eal: add synchronous interrupt unregister
[dpdk.git] / drivers / bus / pci / linux / pci.c
index 1ac2bff..0dc99e9 100644 (file)
@@ -68,14 +68,14 @@ rte_pci_map_device(struct rte_pci_device *dev)
 
        /* try mapping the NIC resources using VFIO if it exists */
        switch (dev->kdrv) {
-       case RTE_KDRV_VFIO:
+       case RTE_PCI_KDRV_VFIO:
 #ifdef VFIO_PRESENT
                if (pci_vfio_is_enabled())
                        ret = pci_vfio_map_resource(dev);
 #endif
                break;
-       case RTE_KDRV_IGB_UIO:
-       case RTE_KDRV_UIO_GENERIC:
+       case RTE_PCI_KDRV_IGB_UIO:
+       case RTE_PCI_KDRV_UIO_GENERIC:
                if (rte_eal_using_phys_addrs()) {
                        /* map resources for devices that use uio */
                        ret = pci_uio_map_resource(dev);
@@ -97,14 +97,14 @@ rte_pci_unmap_device(struct rte_pci_device *dev)
 {
        /* try unmapping the NIC resources using VFIO if it exists */
        switch (dev->kdrv) {
-       case RTE_KDRV_VFIO:
+       case RTE_PCI_KDRV_VFIO:
 #ifdef VFIO_PRESENT
                if (pci_vfio_is_enabled())
                        pci_vfio_unmap_resource(dev);
 #endif
                break;
-       case RTE_KDRV_IGB_UIO:
-       case RTE_KDRV_UIO_GENERIC:
+       case RTE_PCI_KDRV_IGB_UIO:
+       case RTE_PCI_KDRV_UIO_GENERIC:
                /* unmap resources for devices that use uio */
                pci_uio_unmap_resource(dev);
                break;
@@ -323,16 +323,17 @@ pci_scan_one(const char *dirname, const struct rte_pci_addr *addr)
 
        if (!ret) {
                if (!strcmp(driver, "vfio-pci"))
-                       dev->kdrv = RTE_KDRV_VFIO;
+                       dev->kdrv = RTE_PCI_KDRV_VFIO;
                else if (!strcmp(driver, "igb_uio"))
-                       dev->kdrv = RTE_KDRV_IGB_UIO;
+                       dev->kdrv = RTE_PCI_KDRV_IGB_UIO;
                else if (!strcmp(driver, "uio_pci_generic"))
-                       dev->kdrv = RTE_KDRV_UIO_GENERIC;
+                       dev->kdrv = RTE_PCI_KDRV_UIO_GENERIC;
                else
-                       dev->kdrv = RTE_KDRV_UNKNOWN;
-       } else
-               dev->kdrv = RTE_KDRV_NONE;
-
+                       dev->kdrv = RTE_PCI_KDRV_UNKNOWN;
+       } else {
+               dev->kdrv = RTE_PCI_KDRV_NONE;
+               return 0;
+       }
        /* device is valid, add in list (sorted) */
        if (TAILQ_EMPTY(&rte_pci_bus.device_list)) {
                rte_pci_add_device(dev);
@@ -351,6 +352,7 @@ pci_scan_one(const char *dirname, const struct rte_pci_addr *addr)
                                if (!rte_dev_is_probed(&dev2->device)) {
                                        dev2->kdrv = dev->kdrv;
                                        dev2->max_vfs = dev->max_vfs;
+                                       dev2->id = dev->id;
                                        pci_name_set(dev2);
                                        memmove(dev2->mem_resource,
                                                dev->mem_resource,
@@ -364,7 +366,8 @@ pci_scan_one(const char *dirname, const struct rte_pci_addr *addr)
                                         * need to do anything here unless...
                                         **/
                                        if (dev2->kdrv != dev->kdrv ||
-                                               dev2->max_vfs != dev->max_vfs)
+                                               dev2->max_vfs != dev->max_vfs ||
+                                               memcmp(&dev2->id, &dev->id, sizeof(dev2->id)))
                                                /*
                                                 * This should not happens.
                                                 * But it is still possible if
@@ -377,6 +380,11 @@ pci_scan_one(const char *dirname, const struct rte_pci_addr *addr)
                                                 */
                                                RTE_LOG(ERR, EAL, "Unexpected device scan at %s!\n",
                                                        filename);
+                                       else if (dev2->device.devargs !=
+                                                dev->device.devargs) {
+                                               rte_devargs_remove(dev2->device.devargs);
+                                               pci_name_set(dev2);
+                                       }
                                }
                                free(dev);
                        }
@@ -389,18 +397,6 @@ pci_scan_one(const char *dirname, const struct rte_pci_addr *addr)
        return 0;
 }
 
-int
-pci_update_device(const struct rte_pci_addr *addr)
-{
-       char filename[PATH_MAX];
-
-       snprintf(filename, sizeof(filename), "%s/" PCI_PRI_FMT,
-                rte_pci_get_sysfs_path(), addr->domain, addr->bus, addr->devid,
-                addr->function);
-
-       return pci_scan_one(filename, addr);
-}
-
 /*
  * split up a pci address into its constituent parts.
  */
@@ -482,6 +478,9 @@ rte_pci_scan(void)
                if (parse_pci_addr_format(e->d_name, sizeof(e->d_name), &addr) != 0)
                        continue;
 
+               if (rte_pci_ignore_device(&addr))
+                       continue;
+
                snprintf(dirname, sizeof(dirname), "%s/%s",
                                rte_pci_get_sysfs_path(), e->d_name);
 
@@ -511,18 +510,19 @@ pci_device_iommu_support_va(const struct rte_pci_device *dev)
                 "%s/" PCI_PRI_FMT "/iommu/intel-iommu/cap",
                 rte_pci_get_sysfs_path(), addr->domain, addr->bus, addr->devid,
                 addr->function);
-       if (access(filename, F_OK) == -1) {
-               /* We don't have an Intel IOMMU, assume VA supported*/
-               return true;
-       }
 
-       /* We have an intel IOMMU */
        fp = fopen(filename, "r");
        if (fp == NULL) {
-               RTE_LOG(ERR, EAL, "%s(): can't open %s\n", __func__, filename);
+               /* We don't have an Intel IOMMU, assume VA supported */
+               if (errno == ENOENT)
+                       return true;
+
+               RTE_LOG(ERR, EAL, "%s(): can't open %s: %s\n",
+                       __func__, filename, strerror(errno));
                return false;
        }
 
+       /* We have an Intel IOMMU */
        if (fscanf(fp, "%" PRIx64, &vtd_cap_reg) != 1) {
                RTE_LOG(ERR, EAL, "%s(): can't read %s\n", __func__, filename);
                fclose(fp);
@@ -548,7 +548,40 @@ pci_device_iommu_support_va(const struct rte_pci_device *dev)
 bool
 pci_device_iommu_support_va(__rte_unused const struct rte_pci_device *dev)
 {
-       return false;
+       /*
+        * IOMMU is always present on a PowerNV host (IOMMUv2).
+        * IOMMU is also present in a KVM/QEMU VM (IOMMUv1) but is not
+        * currently supported by DPDK. Test for our current environment
+        * and report VA support as appropriate.
+        */
+
+       char *line = NULL;
+       size_t len = 0;
+       char filename[PATH_MAX] = "/proc/cpuinfo";
+       FILE *fp = fopen(filename, "r");
+       bool ret = false;
+
+       if (fp == NULL) {
+               RTE_LOG(ERR, EAL, "%s(): can't open %s: %s\n",
+                       __func__, filename, strerror(errno));
+               return ret;
+       }
+
+       /* Check for a PowerNV platform */
+       while (getline(&line, &len, fp) != -1) {
+               if (strstr(line, "platform") != NULL)
+                       continue;
+
+               if (strstr(line, "PowerNV") != NULL) {
+                       RTE_LOG(DEBUG, EAL, "Running on a PowerNV system\n");
+                       ret = true;
+                       break;
+               }
+       }
+
+       free(line);
+       fclose(fp);
+       return ret;
 }
 #else
 bool
@@ -565,7 +598,7 @@ pci_device_iova_mode(const struct rte_pci_driver *pdrv,
        enum rte_iova_mode iova_mode = RTE_IOVA_DC;
 
        switch (pdev->kdrv) {
-       case RTE_KDRV_VFIO: {
+       case RTE_PCI_KDRV_VFIO: {
 #ifdef VFIO_PRESENT
                static int is_vfio_noiommu_enabled = -1;
 
@@ -583,8 +616,8 @@ pci_device_iova_mode(const struct rte_pci_driver *pdrv,
                break;
        }
 
-       case RTE_KDRV_IGB_UIO:
-       case RTE_KDRV_UIO_GENERIC:
+       case RTE_PCI_KDRV_IGB_UIO:
+       case RTE_PCI_KDRV_UIO_GENERIC:
                iova_mode = RTE_IOVA_PA;
                break;
 
@@ -604,11 +637,11 @@ int rte_pci_read_config(const struct rte_pci_device *device,
        const struct rte_intr_handle *intr_handle = &device->intr_handle;
 
        switch (device->kdrv) {
-       case RTE_KDRV_IGB_UIO:
-       case RTE_KDRV_UIO_GENERIC:
+       case RTE_PCI_KDRV_IGB_UIO:
+       case RTE_PCI_KDRV_UIO_GENERIC:
                return pci_uio_read_config(intr_handle, buf, len, offset);
 #ifdef VFIO_PRESENT
-       case RTE_KDRV_VFIO:
+       case RTE_PCI_KDRV_VFIO:
                return pci_vfio_read_config(intr_handle, buf, len, offset);
 #endif
        default:
@@ -628,11 +661,11 @@ int rte_pci_write_config(const struct rte_pci_device *device,
        const struct rte_intr_handle *intr_handle = &device->intr_handle;
 
        switch (device->kdrv) {
-       case RTE_KDRV_IGB_UIO:
-       case RTE_KDRV_UIO_GENERIC:
+       case RTE_PCI_KDRV_IGB_UIO:
+       case RTE_PCI_KDRV_UIO_GENERIC:
                return pci_uio_write_config(intr_handle, buf, len, offset);
 #ifdef VFIO_PRESENT
-       case RTE_KDRV_VFIO:
+       case RTE_PCI_KDRV_VFIO:
                return pci_vfio_write_config(intr_handle, buf, len, offset);
 #endif
        default:
@@ -644,65 +677,6 @@ int rte_pci_write_config(const struct rte_pci_device *device,
        }
 }
 
-#if defined(RTE_ARCH_X86)
-static int
-pci_ioport_map(struct rte_pci_device *dev, int bar __rte_unused,
-               struct rte_pci_ioport *p)
-{
-       uint16_t start, end;
-       FILE *fp;
-       char *line = NULL;
-       char pci_id[16];
-       int found = 0;
-       size_t linesz;
-
-       snprintf(pci_id, sizeof(pci_id), PCI_PRI_FMT,
-                dev->addr.domain, dev->addr.bus,
-                dev->addr.devid, dev->addr.function);
-
-       fp = fopen("/proc/ioports", "r");
-       if (fp == NULL) {
-               RTE_LOG(ERR, EAL, "%s(): can't open ioports\n", __func__);
-               return -1;
-       }
-
-       while (getdelim(&line, &linesz, '\n', fp) > 0) {
-               char *ptr = line;
-               char *left;
-               int n;
-
-               n = strcspn(ptr, ":");
-               ptr[n] = 0;
-               left = &ptr[n + 1];
-
-               while (*left && isspace(*left))
-                       left++;
-
-               if (!strncmp(left, pci_id, strlen(pci_id))) {
-                       found = 1;
-
-                       while (*ptr && isspace(*ptr))
-                               ptr++;
-
-                       sscanf(ptr, "%04hx-%04hx", &start, &end);
-
-                       break;
-               }
-       }
-
-       free(line);
-       fclose(fp);
-
-       if (!found)
-               return -1;
-
-       p->base = start;
-       RTE_LOG(DEBUG, EAL, "PCI Port IO found start=0x%x\n", start);
-
-       return 0;
-}
-#endif
-
 int
 rte_pci_ioport_map(struct rte_pci_device *dev, int bar,
                struct rte_pci_ioport *p)
@@ -711,25 +685,14 @@ rte_pci_ioport_map(struct rte_pci_device *dev, int bar,
 
        switch (dev->kdrv) {
 #ifdef VFIO_PRESENT
-       case RTE_KDRV_VFIO:
+       case RTE_PCI_KDRV_VFIO:
                if (pci_vfio_is_enabled())
                        ret = pci_vfio_ioport_map(dev, bar, p);
                break;
 #endif
-       case RTE_KDRV_IGB_UIO:
-               ret = pci_uio_ioport_map(dev, bar, p);
-               break;
-       case RTE_KDRV_UIO_GENERIC:
-#if defined(RTE_ARCH_X86)
-               ret = pci_ioport_map(dev, bar, p);
-#else
+       case RTE_PCI_KDRV_IGB_UIO:
+       case RTE_PCI_KDRV_UIO_GENERIC:
                ret = pci_uio_ioport_map(dev, bar, p);
-#endif
-               break;
-       case RTE_KDRV_NONE:
-#if defined(RTE_ARCH_X86)
-               ret = pci_ioport_map(dev, bar, p);
-#endif
                break;
        default:
                break;
@@ -747,20 +710,13 @@ rte_pci_ioport_read(struct rte_pci_ioport *p,
 {
        switch (p->dev->kdrv) {
 #ifdef VFIO_PRESENT
-       case RTE_KDRV_VFIO:
+       case RTE_PCI_KDRV_VFIO:
                pci_vfio_ioport_read(p, data, len, offset);
                break;
 #endif
-       case RTE_KDRV_IGB_UIO:
-               pci_uio_ioport_read(p, data, len, offset);
-               break;
-       case RTE_KDRV_UIO_GENERIC:
-               pci_uio_ioport_read(p, data, len, offset);
-               break;
-       case RTE_KDRV_NONE:
-#if defined(RTE_ARCH_X86)
+       case RTE_PCI_KDRV_IGB_UIO:
+       case RTE_PCI_KDRV_UIO_GENERIC:
                pci_uio_ioport_read(p, data, len, offset);
-#endif
                break;
        default:
                break;
@@ -773,21 +729,14 @@ rte_pci_ioport_write(struct rte_pci_ioport *p,
 {
        switch (p->dev->kdrv) {
 #ifdef VFIO_PRESENT
-       case RTE_KDRV_VFIO:
+       case RTE_PCI_KDRV_VFIO:
                pci_vfio_ioport_write(p, data, len, offset);
                break;
 #endif
-       case RTE_KDRV_IGB_UIO:
+       case RTE_PCI_KDRV_IGB_UIO:
+       case RTE_PCI_KDRV_UIO_GENERIC:
                pci_uio_ioport_write(p, data, len, offset);
                break;
-       case RTE_KDRV_UIO_GENERIC:
-               pci_uio_ioport_write(p, data, len, offset);
-               break;
-       case RTE_KDRV_NONE:
-#if defined(RTE_ARCH_X86)
-               pci_uio_ioport_write(p, data, len, offset);
-#endif
-               break;
        default:
                break;
        }
@@ -800,26 +749,15 @@ rte_pci_ioport_unmap(struct rte_pci_ioport *p)
 
        switch (p->dev->kdrv) {
 #ifdef VFIO_PRESENT
-       case RTE_KDRV_VFIO:
+       case RTE_PCI_KDRV_VFIO:
                if (pci_vfio_is_enabled())
                        ret = pci_vfio_ioport_unmap(p);
                break;
 #endif
-       case RTE_KDRV_IGB_UIO:
+       case RTE_PCI_KDRV_IGB_UIO:
+       case RTE_PCI_KDRV_UIO_GENERIC:
                ret = pci_uio_ioport_unmap(p);
                break;
-       case RTE_KDRV_UIO_GENERIC:
-#if defined(RTE_ARCH_X86)
-               ret = 0;
-#else
-               ret = pci_uio_ioport_unmap(p);
-#endif
-               break;
-       case RTE_KDRV_NONE:
-#if defined(RTE_ARCH_X86)
-               ret = 0;
-#endif
-               break;
        default:
                break;
        }