|
@@ -21,6 +21,7 @@
|
|
|
|
|
|
#include <linux/errno.h>
|
|
|
#include <linux/err.h>
|
|
|
+#include <linux/of.h>
|
|
|
#include <linux/types.h>
|
|
|
#include <trace/events/iommu.h>
|
|
|
|
|
@@ -102,6 +103,7 @@ enum iommu_attr {
|
|
|
* @remove_device: remove device from iommu grouping
|
|
|
* @domain_get_attr: Query domain attributes
|
|
|
* @domain_set_attr: Change domain attributes
|
|
|
+ * @of_xlate: add OF master IDs to iommu grouping
|
|
|
* @pgsize_bitmap: bitmap of supported page sizes
|
|
|
* @priv: per-instance data private to the iommu driver
|
|
|
*/
|
|
@@ -133,6 +135,10 @@ struct iommu_ops {
|
|
|
/* Get the numer of window per domain */
|
|
|
u32 (*domain_get_windows)(struct iommu_domain *domain);
|
|
|
|
|
|
+#ifdef CONFIG_OF_IOMMU
|
|
|
+ int (*of_xlate)(struct device *dev, struct of_phandle_args *args);
|
|
|
+#endif
|
|
|
+
|
|
|
unsigned long pgsize_bitmap;
|
|
|
void *priv;
|
|
|
};
|