2 * Copyright (c) 2015-2016 MediaTek Inc.
3 * Author: Yong Wu <yong.wu@mediatek.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 #ifndef MTK_IOMMU_SMI_H
15 #define MTK_IOMMU_SMI_H
17 #include <linux/bitops.h>
18 #include <linux/device.h>
22 #define MTK_LARB_NR_MAX 16
24 #define MTK_SMI_MMU_EN(port) BIT(port)
26 struct mtk_smi_larb_iommu
{
31 struct mtk_smi_iommu
{
33 struct mtk_smi_larb_iommu larb_imu
[MTK_LARB_NR_MAX
];
37 * mtk_smi_larb_get: Enable the power domain and clocks for this local arbiter.
38 * It also initialize some basic setting(like iommu).
39 * mtk_smi_larb_put: Disable the power domain and clocks for this local arbiter.
40 * Both should be called in non-atomic context.
42 * Returns 0 if successful, negative on failure.
44 int mtk_smi_larb_get(struct device
*larbdev
);
45 void mtk_smi_larb_put(struct device
*larbdev
);
49 static inline int mtk_smi_larb_get(struct device
*larbdev
)
54 static inline void mtk_smi_larb_put(struct device
*larbdev
) { }