summaryrefslogtreecommitdiff
path: root/include/linux/of_iommu.h
blob: 9a5e6b410dd2fb154c40da4139514c0945f6e370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __OF_IOMMU_H
#define __OF_IOMMU_H

struct device;
struct device_node;
struct iommu_ops;

#ifdef CONFIG_OF_IOMMU

extern const struct iommu_ops *of_iommu_configure(struct device *dev,
					struct device_node *master_np,
					const u32 *id);

extern void of_iommu_get_resv_regions(struct device *dev,
				      struct list_head *list);

#else

static inline const struct iommu_ops *of_iommu_configure(struct device *dev,
					 struct device_node *master_np,
					 const u32 *id)
{
	return NULL;
}

static inline void of_iommu_get_resv_regions(struct device *dev,
					     struct list_head *list)
{
}

#endif	/* CONFIG_OF_IOMMU */

#endif /* __OF_IOMMU_H */
td>perf scripts python: export-to-sqlite.py: Fix DROP VIEW power_events_viewAdrian Hunter 2019-06-25perf scripts python: export-to-sqlite.py: Export Intel PT power and ptwrite e...Adrian Hunter 2019-06-05perf scripts python: export-to-sqlite.py: Export IPC informationAdrian Hunter 2019-05-28perf scripts python: export-to-sqlite.py: Add support for pyside2Adrian Hunter 2019-04-16perf scripts python: export-to-sqlite.py: Fix use of parent_id in calls_viewAdrian Hunter 2019-03-11perf script python: Add printdate function to SQL exportersTony Jones 2019-03-11perf script python: Add Python3 support to export-to-sqlite.pyTony Jones 2019-03-01perf scripts python: export-to-sqlite.py: Export calls parent_idAdrian Hunter 2019-02-06perf thread-stack: Represent jmps to the start of a different symbolAdrian Hunter 2018-10-23perf scripts python: call-graph-from-sql.py: Rename to exported-sql-viewer.pyAdrian Hunter 2018-09-25perf script python: Fix export-to-sqlite.py sample columnsAdrian Hunter 2017-08-15perf script python: Add support for exporting to sqlite3Adrian Hunter