Skip to content

Commit 57365a0

Browse files
rmurphy-armjoergroedel
authored andcommitted
iommu: Move bus setup to IOMMU device registration
Move the bus setup to iommu_device_register(). This should allow bus_iommu_probe() to be correctly replayed for multiple IOMMU instances, and leaves bus_set_iommu() as a glorified no-op to be cleaned up next. At this point we can also handle cleanup better than just rolling back the most-recently-touched bus upon failure - which may release devices owned by other already-registered instances, and still leave devices on other buses with dangling pointers to the failed instance. Now it's easy to clean up the exact footprint of a given instance, no more, no less. Tested-by: Marek Szyprowski <[email protected]> Reviewed-by: Krishna Reddy <[email protected]> Reviewed-by: Kevin Tian <[email protected]> Tested-by: Matthew Rosato <[email protected]> # s390 Tested-by: Niklas Schnelle <[email protected]> # s390 Signed-off-by: Robin Murphy <[email protected]> Link: https://lore.kernel.org/r/d342b6f27efb5ef3e93aacaa3012d25386d74866.1660572783.git.robin.murphy@arm.com Signed-off-by: Joerg Roedel <[email protected]>
1 parent c13dbc1 commit 57365a0

File tree

1 file changed

+30
-25
lines changed

1 file changed

+30
-25
lines changed

drivers/iommu/iommu.c

Lines changed: 30 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,14 @@ static int __init iommu_subsys_init(void)
188188
}
189189
subsys_initcall(iommu_subsys_init);
190190

191+
static int remove_iommu_group(struct device *dev, void *data)
192+
{
193+
if (dev->iommu && dev->iommu->iommu_dev == data)
194+
iommu_release_device(dev);
195+
196+
return 0;
197+
}
198+
191199
/**
192200
* iommu_device_register() - Register an IOMMU hardware instance
193201
* @iommu: IOMMU handle for the instance
@@ -199,9 +207,18 @@ subsys_initcall(iommu_subsys_init);
199207
int iommu_device_register(struct iommu_device *iommu,
200208
const struct iommu_ops *ops, struct device *hwdev)
201209
{
210+
int err = 0;
211+
202212
/* We need to be able to take module references appropriately */
203213
if (WARN_ON(is_module_address((unsigned long)ops) && !ops->owner))
204214
return -EINVAL;
215+
/*
216+
* Temporarily enforce global restriction to a single driver. This was
217+
* already the de-facto behaviour, since any possible combination of
218+
* existing drivers would compete for at least the PCI or platform bus.
219+
*/
220+
if (iommu_buses[0]->iommu_ops && iommu_buses[0]->iommu_ops != ops)
221+
return -EBUSY;
205222

206223
iommu->ops = ops;
207224
if (hwdev)
@@ -210,12 +227,22 @@ int iommu_device_register(struct iommu_device *iommu,
210227
spin_lock(&iommu_device_lock);
211228
list_add_tail(&iommu->list, &iommu_device_list);
212229
spin_unlock(&iommu_device_lock);
213-
return 0;
230+
231+
for (int i = 0; i < ARRAY_SIZE(iommu_buses) && !err; i++) {
232+
iommu_buses[i]->iommu_ops = ops;
233+
err = bus_iommu_probe(iommu_buses[i]);
234+
}
235+
if (err)
236+
iommu_device_unregister(iommu);
237+
return err;
214238
}
215239
EXPORT_SYMBOL_GPL(iommu_device_register);
216240

217241
void iommu_device_unregister(struct iommu_device *iommu)
218242
{
243+
for (int i = 0; i < ARRAY_SIZE(iommu_buses); i++)
244+
bus_for_each_dev(iommu_buses[i], NULL, iommu, remove_iommu_group);
245+
219246
spin_lock(&iommu_device_lock);
220247
list_del(&iommu->list);
221248
spin_unlock(&iommu_device_lock);
@@ -1643,13 +1670,6 @@ static int probe_iommu_group(struct device *dev, void *data)
16431670
return ret;
16441671
}
16451672

1646-
static int remove_iommu_group(struct device *dev, void *data)
1647-
{
1648-
iommu_release_device(dev);
1649-
1650-
return 0;
1651-
}
1652-
16531673
static int iommu_bus_notifier(struct notifier_block *nb,
16541674
unsigned long action, void *data)
16551675
{
@@ -1821,27 +1841,12 @@ int bus_iommu_probe(struct bus_type *bus)
18211841
*/
18221842
int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops)
18231843
{
1824-
int err;
1825-
1826-
if (ops == NULL) {
1827-
bus->iommu_ops = NULL;
1828-
return 0;
1829-
}
1830-
1831-
if (bus->iommu_ops != NULL)
1844+
if (bus->iommu_ops && ops && bus->iommu_ops != ops)
18321845
return -EBUSY;
18331846

18341847
bus->iommu_ops = ops;
18351848

1836-
/* Do IOMMU specific setup for this bus-type */
1837-
err = bus_iommu_probe(bus);
1838-
if (err) {
1839-
/* Clean up */
1840-
bus_for_each_dev(bus, NULL, NULL, remove_iommu_group);
1841-
bus->iommu_ops = NULL;
1842-
}
1843-
1844-
return err;
1849+
return 0;
18451850
}
18461851
EXPORT_SYMBOL_GPL(bus_set_iommu);
18471852

0 commit comments

Comments
 (0)