hc
2023-10-25 6c2073b7aa40e29d0eca7d571dd7bc590c7ecaa7
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
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (c) 2021 Rockchip Electronics Co., Ltd
 */
#ifndef __SOC_ROCKCHIP_IOMMU_H
#define __SOC_ROCKCHIP_IOMMU_H
 
struct device;
 
#if IS_ENABLED(CONFIG_ROCKCHIP_IOMMU)
int rockchip_iommu_enable(struct device *dev);
int rockchip_iommu_disable(struct device *dev);
bool rockchip_iommu_is_enabled(struct device *dev);
#else
static inline int rockchip_iommu_enable(struct device *dev)
{
   return -ENODEV;
}
static inline int rockchip_iommu_disable(struct device *dev)
{
   return -ENODEV;
}
static inline bool rockchip_iommu_is_enabled(struct device *dev)
{
   return false;
}
#endif
 
#endif