1 // SPDX-License-Identifier: GPL-2.0
3 * Stub IOMMU driver which does nothing.
4 * The main purpose of it being present is to reuse generic IOMMU device tree
5 * bindings by Xen grant DMA-mapping layer.
7 * Copyright (C) 2022 EPAM Systems Inc.
10 #include <linux/iommu.h>
12 #include <linux/platform_device.h>
14 struct grant_dma_iommu_device
{
16 struct iommu_device iommu
;
19 static struct iommu_device
*grant_dma_iommu_probe_device(struct device
*dev
)
21 return ERR_PTR(-ENODEV
);
24 /* Nothing is really needed here except a dummy probe_device callback */
25 static const struct iommu_ops grant_dma_iommu_ops
= {
26 .probe_device
= grant_dma_iommu_probe_device
,
29 static const struct of_device_id grant_dma_iommu_of_match
[] = {
30 { .compatible
= "xen,grant-dma" },
34 static int grant_dma_iommu_probe(struct platform_device
*pdev
)
36 struct grant_dma_iommu_device
*mmu
;
39 mmu
= devm_kzalloc(&pdev
->dev
, sizeof(*mmu
), GFP_KERNEL
);
43 mmu
->dev
= &pdev
->dev
;
45 ret
= iommu_device_register(&mmu
->iommu
, &grant_dma_iommu_ops
, &pdev
->dev
);
49 platform_set_drvdata(pdev
, mmu
);
54 static void grant_dma_iommu_remove(struct platform_device
*pdev
)
56 struct grant_dma_iommu_device
*mmu
= platform_get_drvdata(pdev
);
58 platform_set_drvdata(pdev
, NULL
);
59 iommu_device_unregister(&mmu
->iommu
);
62 static struct platform_driver grant_dma_iommu_driver
= {
64 .name
= "grant-dma-iommu",
65 .of_match_table
= grant_dma_iommu_of_match
,
67 .probe
= grant_dma_iommu_probe
,
68 .remove_new
= grant_dma_iommu_remove
,
71 static int __init
grant_dma_iommu_init(void)
73 struct device_node
*iommu_np
;
75 iommu_np
= of_find_matching_node(NULL
, grant_dma_iommu_of_match
);
79 of_node_put(iommu_np
);
81 return platform_driver_register(&grant_dma_iommu_driver
);
83 subsys_initcall(grant_dma_iommu_init
);