x86/speculation/l1tf: Make pmd/pud_mknotpresent() invert
[linux/fpc-iii.git] / include / soc / mediatek / smi.h
blob5201e9022c86fa90a580735d886dddfa7e9144dd
1 /*
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>
20 #ifdef CONFIG_MTK_SMI
22 #define MTK_LARB_NR_MAX 16
24 #define MTK_SMI_MMU_EN(port) BIT(port)
26 struct mtk_smi_larb_iommu {
27 struct device *dev;
28 unsigned int mmu;
31 struct mtk_smi_iommu {
32 unsigned int larb_nr;
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);
47 #else
49 static inline int mtk_smi_larb_get(struct device *larbdev)
51 return 0;
54 static inline void mtk_smi_larb_put(struct device *larbdev) { }
56 #endif
58 #endif