]> git.droids-corp.org - dpdk.git/commitdiff
pci: get IOMMU class
authorSantosh Shukla <santosh.shukla@caviumnetworks.com>
Fri, 6 Oct 2017 11:03:39 +0000 (16:33 +0530)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 6 Oct 2017 18:35:37 +0000 (20:35 +0200)
Introducing rte_pci_get_iommu_class API which helps to get iommu class
of PCI device on the bus and returns preferred iova mapping mode for
PCI bus.

Patch also adds rte_pci_get_iommu_class definition for:
- bsdapp: api returns default iova mode.
- linuxapp: Has stub implementation, Followup patch has complete
  implementation.

Signed-off-by: Santosh Shukla <santosh.shukla@caviumnetworks.com>
Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Tested-by: Hemant Agrawal <hemant.agrawal@nxp.com>
Reviewed-by: Anatoly Burakov <anatoly.burakov@intel.com>
lib/librte_eal/bsdapp/eal/eal_pci.c
lib/librte_eal/bsdapp/eal/rte_eal_version.map
lib/librte_eal/common/include/rte_bus.h
lib/librte_eal/common/include/rte_pci.h
lib/librte_eal/linuxapp/eal/eal_pci.c
lib/librte_eal/linuxapp/eal/rte_eal_version.map

index 04eacdcc75c0b4f51cb94da6c4a56ae7aaf017f3..1595988bdd282c22436a5938dac6ff3b8c8ff76f 100644 (file)
@@ -403,6 +403,16 @@ error:
        return -1;
 }
 
+/*
+ * Get iommu class of PCI devices on the bus.
+ */
+enum rte_iova_mode
+rte_pci_get_iommu_class(void)
+{
+       /* Supports only RTE_KDRV_NIC_UIO */
+       return RTE_IOVA_PA;
+}
+
 int
 pci_update_device(const struct rte_pci_addr *addr)
 {
index cfbf8fbd03ff8c37ebf778968031bdddd2b58d83..f8724bd5d7fb2c900e88ae6ac5e841d9d7e1e899 100644 (file)
@@ -242,6 +242,7 @@ EXPERIMENTAL {
 DPDK_17.11 {
        global:
 
+       rte_pci_get_iommu_class;
        rte_pci_match;
 
 } DPDK_17.08;
index 8f8b09954abc4145b7384311bff967ef4bfa3b2c..2501fa26da313fde25f89eac1b5198211ea3b1b7 100644 (file)
@@ -55,6 +55,21 @@ extern "C" {
 /** Double linked list of buses */
 TAILQ_HEAD(rte_bus_list, rte_bus);
 
+
+/**
+ * IOVA mapping mode.
+ *
+ * IOVA mapping mode is iommu programming mode of a device.
+ * That device (for example: IOMMU backed DMA device) based
+ * on rte_iova_mode will generate physical or virtual address.
+ *
+ */
+enum rte_iova_mode {
+       RTE_IOVA_DC = 0,        /* Don't care mode */
+       RTE_IOVA_PA = (1 << 0), /* DMA using physical address */
+       RTE_IOVA_VA = (1 << 1)  /* DMA using virtual address */
+};
+
 /**
  * Bus specific scan for devices attached on the bus.
  * For each bus object, the scan would be responsible for finding devices and
index eab84c7a470cdffe4c02a925f33a16f2757dce72..0e36de0938bf105d463051df5d26d03f120c6315 100644 (file)
@@ -381,6 +381,17 @@ int
 rte_pci_match(const struct rte_pci_driver *pci_drv,
              const struct rte_pci_device *pci_dev);
 
+
+/**
+ * Get iommu class of PCI devices on the bus.
+ * And return their preferred iova mapping mode.
+ *
+ * @return
+ *   - enum rte_iova_mode.
+ */
+enum rte_iova_mode
+rte_pci_get_iommu_class(void);
+
 /**
  * Map the PCI device resources in user space virtual memory address
  *
index 8951ce74207d62c91dbaffd2c9481c3c20f751d0..b1d6fbdce0cdd12fcb53125ac0dc9ab6a715d04d 100644 (file)
@@ -487,6 +487,15 @@ error:
        return -1;
 }
 
+/*
+ * Get iommu class of PCI devices on the bus.
+ */
+enum rte_iova_mode
+rte_pci_get_iommu_class(void)
+{
+       return RTE_IOVA_PA;
+}
+
 /* Read PCI config space. */
 int rte_pci_read_config(const struct rte_pci_device *device,
                void *buf, size_t len, off_t offset)
index 287cc75cd8807f859ef5bedbe8b22039a38e6d4a..95756e268a3c2428edf22d8f89ca810ebee26da1 100644 (file)
@@ -247,6 +247,7 @@ EXPERIMENTAL {
 DPDK_17.11 {
        global:
 
+       rte_pci_get_iommu_class;
        rte_pci_match;
 
 } DPDK_17.08;