mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-01 10:42:11 +00:00
e70140ba0d
The continual trickle of small conversion patches is grating on me, and is really not helping. Just get rid of the 'remove_new' member function, which is just an alias for the plain 'remove', and had a comment to that effect: /* * .remove_new() is a relic from a prototype conversion of .remove(). * New drivers are supposed to implement .remove(). Once all drivers are * converted to not use .remove_new any more, it will be dropped. */ This was just a tree-wide 'sed' script that replaced '.remove_new' with '.remove', with some care taken to turn a subsequent tab into two tabs to make things line up. I did do some minimal manual whitespace adjustment for places that used spaces to line things up. Then I just removed the old (sic) .remove_new member function, and this is the end result. No more unnecessary conversion noise. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
84 lines
1.9 KiB
C
84 lines
1.9 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Stub IOMMU driver which does nothing.
|
|
* The main purpose of it being present is to reuse generic IOMMU device tree
|
|
* bindings by Xen grant DMA-mapping layer.
|
|
*
|
|
* Copyright (C) 2022 EPAM Systems Inc.
|
|
*/
|
|
|
|
#include <linux/iommu.h>
|
|
#include <linux/of.h>
|
|
#include <linux/platform_device.h>
|
|
|
|
struct grant_dma_iommu_device {
|
|
struct device *dev;
|
|
struct iommu_device iommu;
|
|
};
|
|
|
|
static struct iommu_device *grant_dma_iommu_probe_device(struct device *dev)
|
|
{
|
|
return ERR_PTR(-ENODEV);
|
|
}
|
|
|
|
/* Nothing is really needed here except a dummy probe_device callback */
|
|
static const struct iommu_ops grant_dma_iommu_ops = {
|
|
.probe_device = grant_dma_iommu_probe_device,
|
|
};
|
|
|
|
static const struct of_device_id grant_dma_iommu_of_match[] = {
|
|
{ .compatible = "xen,grant-dma" },
|
|
{ },
|
|
};
|
|
|
|
static int grant_dma_iommu_probe(struct platform_device *pdev)
|
|
{
|
|
struct grant_dma_iommu_device *mmu;
|
|
int ret;
|
|
|
|
mmu = devm_kzalloc(&pdev->dev, sizeof(*mmu), GFP_KERNEL);
|
|
if (!mmu)
|
|
return -ENOMEM;
|
|
|
|
mmu->dev = &pdev->dev;
|
|
|
|
ret = iommu_device_register(&mmu->iommu, &grant_dma_iommu_ops, &pdev->dev);
|
|
if (ret)
|
|
return ret;
|
|
|
|
platform_set_drvdata(pdev, mmu);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void grant_dma_iommu_remove(struct platform_device *pdev)
|
|
{
|
|
struct grant_dma_iommu_device *mmu = platform_get_drvdata(pdev);
|
|
|
|
platform_set_drvdata(pdev, NULL);
|
|
iommu_device_unregister(&mmu->iommu);
|
|
}
|
|
|
|
static struct platform_driver grant_dma_iommu_driver = {
|
|
.driver = {
|
|
.name = "grant-dma-iommu",
|
|
.of_match_table = grant_dma_iommu_of_match,
|
|
},
|
|
.probe = grant_dma_iommu_probe,
|
|
.remove = grant_dma_iommu_remove,
|
|
};
|
|
|
|
static int __init grant_dma_iommu_init(void)
|
|
{
|
|
struct device_node *iommu_np;
|
|
|
|
iommu_np = of_find_matching_node(NULL, grant_dma_iommu_of_match);
|
|
if (!iommu_np)
|
|
return 0;
|
|
|
|
of_node_put(iommu_np);
|
|
|
|
return platform_driver_register(&grant_dma_iommu_driver);
|
|
}
|
|
subsys_initcall(grant_dma_iommu_init);
|