提交 c73e1ac8 编写于 作者: J Joerg Roedel

iommu: Add iommu_device_set_fwnode() interface

Allow to store a fwnode in 'struct iommu_device';
Signed-off-by: NJoerg Roedel <jroedel@suse.de>
上级 e3d10af1
...@@ -214,6 +214,7 @@ struct iommu_ops { ...@@ -214,6 +214,7 @@ struct iommu_ops {
struct iommu_device { struct iommu_device {
struct list_head list; struct list_head list;
const struct iommu_ops *ops; const struct iommu_ops *ops;
struct fwnode_handle *fwnode;
struct device dev; struct device dev;
}; };
...@@ -233,6 +234,12 @@ static inline void iommu_device_set_ops(struct iommu_device *iommu, ...@@ -233,6 +234,12 @@ static inline void iommu_device_set_ops(struct iommu_device *iommu,
iommu->ops = ops; iommu->ops = ops;
} }
static inline void iommu_device_set_fwnode(struct iommu_device *iommu,
struct fwnode_handle *fwnode)
{
iommu->fwnode = fwnode;
}
#define IOMMU_GROUP_NOTIFY_ADD_DEVICE 1 /* Device added */ #define IOMMU_GROUP_NOTIFY_ADD_DEVICE 1 /* Device added */
#define IOMMU_GROUP_NOTIFY_DEL_DEVICE 2 /* Pre Device removed */ #define IOMMU_GROUP_NOTIFY_DEL_DEVICE 2 /* Pre Device removed */
#define IOMMU_GROUP_NOTIFY_BIND_DRIVER 3 /* Pre Driver bind */ #define IOMMU_GROUP_NOTIFY_BIND_DRIVER 3 /* Pre Driver bind */
...@@ -580,6 +587,11 @@ static inline void iommu_device_set_ops(struct iommu_device *iommu, ...@@ -580,6 +587,11 @@ static inline void iommu_device_set_ops(struct iommu_device *iommu,
{ {
} }
static inline void iommu_device_set_fwnode(struct iommu_device *iommu,
struct fwnode_handle *fwnode)
{
}
static inline void iommu_device_unregister(struct iommu_device *iommu) static inline void iommu_device_unregister(struct iommu_device *iommu)
{ {
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册