1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 2015-2016 MediaTek Inc.
4 * Author: Honghui Zhang <honghui.zhang@mediatek.com>
10 #include <linux/clk.h>
11 #include <linux/component.h>
12 #include <linux/device.h>
14 #include <linux/io-pgtable.h>
15 #include <linux/iommu.h>
16 #include <linux/list.h>
17 #include <linux/spinlock.h>
18 #include <soc/mediatek/smi.h>
20 struct mtk_iommu_suspend_reg
{
21 u32 standard_axi_mode
;
37 struct mtk_iommu_plat_data
{
38 enum mtk_iommu_plat m4u_plat
;
41 /* HW will use the EMI clock if there isn't the "bclk". */
45 unsigned char larbid_remap
[MTK_LARB_NR_MAX
];
48 struct mtk_iommu_domain
;
50 struct mtk_iommu_data
{
55 phys_addr_t protect_base
; /* protect memory base */
56 struct mtk_iommu_suspend_reg reg
;
57 struct mtk_iommu_domain
*m4u_dom
;
58 struct iommu_group
*m4u_group
;
60 bool tlb_flush_active
;
61 spinlock_t tlb_lock
; /* lock for tlb range flush */
63 struct iommu_device iommu
;
64 const struct mtk_iommu_plat_data
*plat_data
;
66 struct list_head list
;
67 struct mtk_smi_larb_iommu larb_imu
[MTK_LARB_NR_MAX
];
70 static inline int compare_of(struct device
*dev
, void *data
)
72 return dev
->of_node
== data
;
75 static inline void release_of(struct device
*dev
, void *data
)
80 static inline int mtk_iommu_bind(struct device
*dev
)
82 struct mtk_iommu_data
*data
= dev_get_drvdata(dev
);
84 return component_bind_all(dev
, &data
->larb_imu
);
87 static inline void mtk_iommu_unbind(struct device
*dev
)
89 struct mtk_iommu_data
*data
= dev_get_drvdata(dev
);
91 component_unbind_all(dev
, &data
->larb_imu
);