|
@@ -1425,8 +1425,7 @@ static void pnv_pci_ioda2_release_dma_pe(struct pci_dev *dev, struct pnv_ioda_pe
|
|
|
iommu_group_put(pe->table_group.group);
|
|
|
BUG_ON(pe->table_group.group);
|
|
|
}
|
|
|
- pnv_pci_ioda2_table_free_pages(tbl);
|
|
|
- iommu_free_table(tbl, of_node_full_name(dev->dev.of_node));
|
|
|
+ iommu_tce_table_put(tbl);
|
|
|
}
|
|
|
|
|
|
static void pnv_ioda_release_vf_PE(struct pci_dev *pdev)
|
|
@@ -1861,6 +1860,17 @@ static int pnv_ioda1_tce_xchg(struct iommu_table *tbl, long index,
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
|
+
|
|
|
+static int pnv_ioda1_tce_xchg_rm(struct iommu_table *tbl, long index,
|
|
|
+ unsigned long *hpa, enum dma_data_direction *direction)
|
|
|
+{
|
|
|
+ long ret = pnv_tce_xchg(tbl, index, hpa, direction);
|
|
|
+
|
|
|
+ if (!ret)
|
|
|
+ pnv_pci_p7ioc_tce_invalidate(tbl, index, 1, true);
|
|
|
+
|
|
|
+ return ret;
|
|
|
+}
|
|
|
#endif
|
|
|
|
|
|
static void pnv_ioda1_tce_free(struct iommu_table *tbl, long index,
|
|
@@ -1875,6 +1885,7 @@ static struct iommu_table_ops pnv_ioda1_iommu_ops = {
|
|
|
.set = pnv_ioda1_tce_build,
|
|
|
#ifdef CONFIG_IOMMU_API
|
|
|
.exchange = pnv_ioda1_tce_xchg,
|
|
|
+ .exchange_rm = pnv_ioda1_tce_xchg_rm,
|
|
|
#endif
|
|
|
.clear = pnv_ioda1_tce_free,
|
|
|
.get = pnv_tce_get,
|
|
@@ -1949,7 +1960,7 @@ static void pnv_pci_ioda2_tce_invalidate(struct iommu_table *tbl,
|
|
|
{
|
|
|
struct iommu_table_group_link *tgl;
|
|
|
|
|
|
- list_for_each_entry_rcu(tgl, &tbl->it_group_list, next) {
|
|
|
+ list_for_each_entry_lockless(tgl, &tbl->it_group_list, next) {
|
|
|
struct pnv_ioda_pe *pe = container_of(tgl->table_group,
|
|
|
struct pnv_ioda_pe, table_group);
|
|
|
struct pnv_phb *phb = pe->phb;
|
|
@@ -2005,6 +2016,17 @@ static int pnv_ioda2_tce_xchg(struct iommu_table *tbl, long index,
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
|
+
|
|
|
+static int pnv_ioda2_tce_xchg_rm(struct iommu_table *tbl, long index,
|
|
|
+ unsigned long *hpa, enum dma_data_direction *direction)
|
|
|
+{
|
|
|
+ long ret = pnv_tce_xchg(tbl, index, hpa, direction);
|
|
|
+
|
|
|
+ if (!ret)
|
|
|
+ pnv_pci_ioda2_tce_invalidate(tbl, index, 1, true);
|
|
|
+
|
|
|
+ return ret;
|
|
|
+}
|
|
|
#endif
|
|
|
|
|
|
static void pnv_ioda2_tce_free(struct iommu_table *tbl, long index,
|
|
@@ -2018,13 +2040,13 @@ static void pnv_ioda2_tce_free(struct iommu_table *tbl, long index,
|
|
|
static void pnv_ioda2_table_free(struct iommu_table *tbl)
|
|
|
{
|
|
|
pnv_pci_ioda2_table_free_pages(tbl);
|
|
|
- iommu_free_table(tbl, "pnv");
|
|
|
}
|
|
|
|
|
|
static struct iommu_table_ops pnv_ioda2_iommu_ops = {
|
|
|
.set = pnv_ioda2_tce_build,
|
|
|
#ifdef CONFIG_IOMMU_API
|
|
|
.exchange = pnv_ioda2_tce_xchg,
|
|
|
+ .exchange_rm = pnv_ioda2_tce_xchg_rm,
|
|
|
#endif
|
|
|
.clear = pnv_ioda2_tce_free,
|
|
|
.get = pnv_tce_get,
|
|
@@ -2204,7 +2226,7 @@ found:
|
|
|
__free_pages(tce_mem, get_order(tce32_segsz * segs));
|
|
|
if (tbl) {
|
|
|
pnv_pci_unlink_table_and_group(tbl, &pe->table_group);
|
|
|
- iommu_free_table(tbl, "pnv");
|
|
|
+ iommu_tce_table_put(tbl);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2294,16 +2316,16 @@ static long pnv_pci_ioda2_create_table(struct iommu_table_group *table_group,
|
|
|
if (!tbl)
|
|
|
return -ENOMEM;
|
|
|
|
|
|
+ tbl->it_ops = &pnv_ioda2_iommu_ops;
|
|
|
+
|
|
|
ret = pnv_pci_ioda2_table_alloc_pages(nid,
|
|
|
bus_offset, page_shift, window_size,
|
|
|
levels, tbl);
|
|
|
if (ret) {
|
|
|
- iommu_free_table(tbl, "pnv");
|
|
|
+ iommu_tce_table_put(tbl);
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
- tbl->it_ops = &pnv_ioda2_iommu_ops;
|
|
|
-
|
|
|
*ptbl = tbl;
|
|
|
|
|
|
return 0;
|
|
@@ -2344,7 +2366,7 @@ static long pnv_pci_ioda2_setup_default_config(struct pnv_ioda_pe *pe)
|
|
|
if (rc) {
|
|
|
pe_err(pe, "Failed to configure 32-bit TCE table, err %ld\n",
|
|
|
rc);
|
|
|
- pnv_ioda2_table_free(tbl);
|
|
|
+ iommu_tce_table_put(tbl);
|
|
|
return rc;
|
|
|
}
|
|
|
|
|
@@ -2432,7 +2454,7 @@ static void pnv_ioda2_take_ownership(struct iommu_table_group *table_group)
|
|
|
pnv_pci_ioda2_unset_window(&pe->table_group, 0);
|
|
|
if (pe->pbus)
|
|
|
pnv_ioda_setup_bus_dma(pe, pe->pbus, false);
|
|
|
- pnv_ioda2_table_free(tbl);
|
|
|
+ iommu_tce_table_put(tbl);
|
|
|
}
|
|
|
|
|
|
static void pnv_ioda2_release_ownership(struct iommu_table_group *table_group)
|
|
@@ -3405,7 +3427,7 @@ static void pnv_pci_ioda1_release_pe_dma(struct pnv_ioda_pe *pe)
|
|
|
}
|
|
|
|
|
|
free_pages(tbl->it_base, get_order(tbl->it_size << 3));
|
|
|
- iommu_free_table(tbl, "pnv");
|
|
|
+ iommu_tce_table_put(tbl);
|
|
|
}
|
|
|
|
|
|
static void pnv_pci_ioda2_release_pe_dma(struct pnv_ioda_pe *pe)
|
|
@@ -3432,7 +3454,7 @@ static void pnv_pci_ioda2_release_pe_dma(struct pnv_ioda_pe *pe)
|
|
|
}
|
|
|
|
|
|
pnv_pci_ioda2_table_free_pages(tbl);
|
|
|
- iommu_free_table(tbl, "pnv");
|
|
|
+ iommu_tce_table_put(tbl);
|
|
|
}
|
|
|
|
|
|
static void pnv_ioda_free_pe_seg(struct pnv_ioda_pe *pe,
|