2012-06-25 19:23:54 +08:00
|
|
|
#ifndef __OF_IOMMU_H
|
|
|
|
#define __OF_IOMMU_H
|
|
|
|
|
2014-08-27 23:20:32 +08:00
|
|
|
#include <linux/device.h>
|
2014-08-27 21:40:58 +08:00
|
|
|
#include <linux/iommu.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
|
2012-06-25 19:23:54 +08:00
|
|
|
#ifdef CONFIG_OF_IOMMU
|
|
|
|
|
|
|
|
extern int of_get_dma_window(struct device_node *dn, const char *prefix,
|
|
|
|
int index, unsigned long *busno, dma_addr_t *addr,
|
|
|
|
size_t *size);
|
|
|
|
|
2014-08-27 21:40:58 +08:00
|
|
|
extern void of_iommu_init(void);
|
2015-03-04 01:52:08 +08:00
|
|
|
extern struct iommu_ops *of_iommu_configure(struct device *dev,
|
|
|
|
struct device_node *master_np);
|
2014-08-27 21:40:58 +08:00
|
|
|
|
2012-06-25 19:23:54 +08:00
|
|
|
#else
|
|
|
|
|
|
|
|
static inline int of_get_dma_window(struct device_node *dn, const char *prefix,
|
|
|
|
int index, unsigned long *busno, dma_addr_t *addr,
|
|
|
|
size_t *size)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2014-08-27 21:40:58 +08:00
|
|
|
static inline void of_iommu_init(void) { }
|
2015-03-04 01:52:08 +08:00
|
|
|
static inline struct iommu_ops *of_iommu_configure(struct device *dev,
|
|
|
|
struct device_node *master_np)
|
2014-08-27 23:20:32 +08:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-08-27 21:40:58 +08:00
|
|
|
|
2012-06-25 19:23:54 +08:00
|
|
|
#endif /* CONFIG_OF_IOMMU */
|
|
|
|
|
2014-12-05 21:41:02 +08:00
|
|
|
void of_iommu_set_ops(struct device_node *np, struct iommu_ops *ops);
|
|
|
|
struct iommu_ops *of_iommu_get_ops(struct device_node *np);
|
2014-08-27 21:40:58 +08:00
|
|
|
|
|
|
|
extern struct of_device_id __iommu_of_table;
|
|
|
|
|
|
|
|
typedef int (*of_iommu_init_fn)(struct device_node *);
|
|
|
|
|
|
|
|
#define IOMMU_OF_DECLARE(name, compat, fn) \
|
|
|
|
_OF_DECLARE(iommu, name, compat, fn, of_iommu_init_fn)
|
|
|
|
|
2012-06-25 19:23:54 +08:00
|
|
|
#endif /* __OF_IOMMU_H */
|