Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (c) 2015-2016 MediaTek Inc.
4 * Author: Yong Wu <yong.wu@mediatek.com>
5 */
6#include <linux/arm-smccc.h>
7#include <linux/clk.h>
8#include <linux/component.h>
9#include <linux/device.h>
10#include <linux/err.h>
11#include <linux/io.h>
12#include <linux/iopoll.h>
13#include <linux/module.h>
14#include <linux/of.h>
15#include <linux/of_platform.h>
16#include <linux/platform_device.h>
17#include <linux/pm_runtime.h>
18#include <linux/soc/mediatek/mtk_sip_svc.h>
19#include <soc/mediatek/smi.h>
20#include <dt-bindings/memory/mt2701-larb-port.h>
21#include <dt-bindings/memory/mtk-memory-port.h>
22
23/* SMI COMMON */
24#define SMI_L1LEN 0x100
25
26#define SMI_L1_ARB 0x200
27#define SMI_BUS_SEL 0x220
28#define SMI_BUS_LARB_SHIFT(larbid) ((larbid) << 1)
29/* All are MMU0 defaultly. Only specialize mmu1 here. */
30#define F_MMU1_LARB(larbid) (0x1 << SMI_BUS_LARB_SHIFT(larbid))
31
32#define SMI_READ_FIFO_TH 0x230
33#define SMI_M4U_TH 0x234
34#define SMI_FIFO_TH1 0x238
35#define SMI_FIFO_TH2 0x23c
36#define SMI_DCM 0x300
37#define SMI_DUMMY 0x444
38
39/* SMI LARB */
40#define SMI_LARB_SLP_CON 0xc
41#define SLP_PROT_EN BIT(0)
42#define SLP_PROT_RDY BIT(16)
43
44#define SMI_LARB_CMD_THRT_CON 0x24
45#define SMI_LARB_THRT_RD_NU_LMT_MSK GENMASK(7, 4)
46#define SMI_LARB_THRT_RD_NU_LMT (5 << 4)
47
48#define SMI_LARB_SW_FLAG 0x40
49#define SMI_LARB_SW_FLAG_1 0x1
50
51#define SMI_LARB_OSTDL_PORT 0x200
52#define SMI_LARB_OSTDL_PORTx(id) (SMI_LARB_OSTDL_PORT + (((id) & 0x1f) << 2))
53
54/* Below are about mmu enable registers, they are different in SoCs */
55/* gen1: mt2701 */
56#define REG_SMI_SECUR_CON_BASE 0x5c0
57
58/* every register control 8 port, register offset 0x4 */
59#define REG_SMI_SECUR_CON_OFFSET(id) (((id) >> 3) << 2)
60#define REG_SMI_SECUR_CON_ADDR(id) \
61 (REG_SMI_SECUR_CON_BASE + REG_SMI_SECUR_CON_OFFSET(id))
62
63/*
64 * every port have 4 bit to control, bit[port + 3] control virtual or physical,
65 * bit[port + 2 : port + 1] control the domain, bit[port] control the security
66 * or non-security.
67 */
68#define SMI_SECUR_CON_VAL_MSK(id) (~(0xf << (((id) & 0x7) << 2)))
69#define SMI_SECUR_CON_VAL_VIRT(id) BIT((((id) & 0x7) << 2) + 3)
70/* mt2701 domain should be set to 3 */
71#define SMI_SECUR_CON_VAL_DOMAIN(id) (0x3 << ((((id) & 0x7) << 2) + 1))
72
73/* gen2: */
74/* mt8167 */
75#define MT8167_SMI_LARB_MMU_EN 0xfc0
76
77/* mt8173 */
78#define MT8173_SMI_LARB_MMU_EN 0xf00
79
80/* general */
81#define SMI_LARB_NONSEC_CON(id) (0x380 + ((id) * 4))
82#define F_MMU_EN BIT(0)
83#define BANK_SEL(id) ({ \
84 u32 _id = (id) & 0x3; \
85 (_id << 8 | _id << 10 | _id << 12 | _id << 14); \
86})
87
88#define SMI_COMMON_INIT_REGS_NR 6
89#define SMI_LARB_PORT_NR_MAX 32
90
91#define MTK_SMI_FLAG_THRT_UPDATE BIT(0)
92#define MTK_SMI_FLAG_SW_FLAG BIT(1)
93#define MTK_SMI_FLAG_SLEEP_CTL BIT(2)
94#define MTK_SMI_FLAG_CFG_PORT_SEC_CTL BIT(3)
95#define MTK_SMI_CAPS(flags, _x) (!!((flags) & (_x)))
96
97struct mtk_smi_reg_pair {
98 unsigned int offset;
99 u32 value;
100};
101
102enum mtk_smi_type {
103 MTK_SMI_GEN1,
104 MTK_SMI_GEN2, /* gen2 smi common */
105 MTK_SMI_GEN2_SUB_COMM, /* gen2 smi sub common */
106};
107
108/* larbs: Require apb/smi clocks while gals is optional. */
109static const char * const mtk_smi_larb_clks[] = {"apb", "smi", "gals"};
110#define MTK_SMI_LARB_REQ_CLK_NR 2
111#define MTK_SMI_LARB_OPT_CLK_NR 1
112
113/*
114 * common: Require these four clocks in has_gals case. Otherwise, only apb/smi are required.
115 * sub common: Require apb/smi/gals0 clocks in has_gals case. Otherwise, only apb/smi are required.
116 */
117static const char * const mtk_smi_common_clks[] = {"apb", "smi", "gals0", "gals1"};
118#define MTK_SMI_CLK_NR_MAX ARRAY_SIZE(mtk_smi_common_clks)
119#define MTK_SMI_COM_REQ_CLK_NR 2
120#define MTK_SMI_COM_GALS_REQ_CLK_NR MTK_SMI_CLK_NR_MAX
121#define MTK_SMI_SUB_COM_GALS_REQ_CLK_NR 3
122
123struct mtk_smi_common_plat {
124 enum mtk_smi_type type;
125 bool has_gals;
126 u32 bus_sel; /* Balance some larbs to enter mmu0 or mmu1 */
127
128 const struct mtk_smi_reg_pair *init;
129};
130
131struct mtk_smi_larb_gen {
132 int port_in_larb[MTK_LARB_NR_MAX + 1];
133 int (*config_port)(struct device *dev);
134 unsigned int larb_direct_to_common_mask;
135 unsigned int flags_general;
136 const u8 (*ostd)[SMI_LARB_PORT_NR_MAX];
137};
138
139struct mtk_smi {
140 struct device *dev;
141 unsigned int clk_num;
142 struct clk_bulk_data clks[MTK_SMI_CLK_NR_MAX];
143 struct clk *clk_async; /*only needed by mt2701*/
144 union {
145 void __iomem *smi_ao_base; /* only for gen1 */
146 void __iomem *base; /* only for gen2 */
147 };
148 struct device *smi_common_dev; /* for sub common */
149 const struct mtk_smi_common_plat *plat;
150};
151
152struct mtk_smi_larb { /* larb: local arbiter */
153 struct mtk_smi smi;
154 void __iomem *base;
155 struct device *smi_common_dev; /* common or sub-common dev */
156 const struct mtk_smi_larb_gen *larb_gen;
157 int larbid;
158 u32 *mmu;
159 unsigned char *bank;
160};
161
162static int
163mtk_smi_larb_bind(struct device *dev, struct device *master, void *data)
164{
165 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
166 struct mtk_smi_larb_iommu *larb_mmu = data;
167 unsigned int i;
168
169 for (i = 0; i < MTK_LARB_NR_MAX; i++) {
170 if (dev == larb_mmu[i].dev) {
171 larb->larbid = i;
172 larb->mmu = &larb_mmu[i].mmu;
173 larb->bank = larb_mmu[i].bank;
174 return 0;
175 }
176 }
177 return -ENODEV;
178}
179
180static void
181mtk_smi_larb_unbind(struct device *dev, struct device *master, void *data)
182{
183 /* Do nothing as the iommu is always enabled. */
184}
185
186static const struct component_ops mtk_smi_larb_component_ops = {
187 .bind = mtk_smi_larb_bind,
188 .unbind = mtk_smi_larb_unbind,
189};
190
191static int mtk_smi_larb_config_port_gen1(struct device *dev)
192{
193 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
194 const struct mtk_smi_larb_gen *larb_gen = larb->larb_gen;
195 struct mtk_smi *common = dev_get_drvdata(larb->smi_common_dev);
196 int i, m4u_port_id, larb_port_num;
197 u32 sec_con_val, reg_val;
198
199 m4u_port_id = larb_gen->port_in_larb[larb->larbid];
200 larb_port_num = larb_gen->port_in_larb[larb->larbid + 1]
201 - larb_gen->port_in_larb[larb->larbid];
202
203 for (i = 0; i < larb_port_num; i++, m4u_port_id++) {
204 if (*larb->mmu & BIT(i)) {
205 /* bit[port + 3] controls the virtual or physical */
206 sec_con_val = SMI_SECUR_CON_VAL_VIRT(m4u_port_id);
207 } else {
208 /* do not need to enable m4u for this port */
209 continue;
210 }
211 reg_val = readl(common->smi_ao_base
212 + REG_SMI_SECUR_CON_ADDR(m4u_port_id));
213 reg_val &= SMI_SECUR_CON_VAL_MSK(m4u_port_id);
214 reg_val |= sec_con_val;
215 reg_val |= SMI_SECUR_CON_VAL_DOMAIN(m4u_port_id);
216 writel(reg_val,
217 common->smi_ao_base
218 + REG_SMI_SECUR_CON_ADDR(m4u_port_id));
219 }
220 return 0;
221}
222
223static int mtk_smi_larb_config_port_mt8167(struct device *dev)
224{
225 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
226
227 writel(*larb->mmu, larb->base + MT8167_SMI_LARB_MMU_EN);
228 return 0;
229}
230
231static int mtk_smi_larb_config_port_mt8173(struct device *dev)
232{
233 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
234
235 writel(*larb->mmu, larb->base + MT8173_SMI_LARB_MMU_EN);
236 return 0;
237}
238
239static int mtk_smi_larb_config_port_gen2_general(struct device *dev)
240{
241 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
242 u32 reg, flags_general = larb->larb_gen->flags_general;
243 const u8 *larbostd = larb->larb_gen->ostd ? larb->larb_gen->ostd[larb->larbid] : NULL;
244 struct arm_smccc_res res;
245 int i;
246
247 if (BIT(larb->larbid) & larb->larb_gen->larb_direct_to_common_mask)
248 return 0;
249
250 if (MTK_SMI_CAPS(flags_general, MTK_SMI_FLAG_THRT_UPDATE)) {
251 reg = readl_relaxed(larb->base + SMI_LARB_CMD_THRT_CON);
252 reg &= ~SMI_LARB_THRT_RD_NU_LMT_MSK;
253 reg |= SMI_LARB_THRT_RD_NU_LMT;
254 writel_relaxed(reg, larb->base + SMI_LARB_CMD_THRT_CON);
255 }
256
257 if (MTK_SMI_CAPS(flags_general, MTK_SMI_FLAG_SW_FLAG))
258 writel_relaxed(SMI_LARB_SW_FLAG_1, larb->base + SMI_LARB_SW_FLAG);
259
260 for (i = 0; i < SMI_LARB_PORT_NR_MAX && larbostd && !!larbostd[i]; i++)
261 writel_relaxed(larbostd[i], larb->base + SMI_LARB_OSTDL_PORTx(i));
262
263 /*
264 * When mmu_en bits are in security world, the bank_sel still is in the
265 * LARB_NONSEC_CON below. And the mmu_en bits of LARB_NONSEC_CON have no
266 * effect in this case.
267 */
268 if (MTK_SMI_CAPS(flags_general, MTK_SMI_FLAG_CFG_PORT_SEC_CTL)) {
269 arm_smccc_smc(MTK_SIP_KERNEL_IOMMU_CONTROL, IOMMU_ATF_CMD_CONFIG_SMI_LARB,
270 larb->larbid, *larb->mmu, 0, 0, 0, 0, &res);
271 if (res.a0 != 0) {
272 dev_err(dev, "Enable iommu fail, ret %ld\n", res.a0);
273 return -EINVAL;
274 }
275 }
276
277 for_each_set_bit(i, (unsigned long *)larb->mmu, 32) {
278 reg = readl_relaxed(larb->base + SMI_LARB_NONSEC_CON(i));
279 reg |= F_MMU_EN;
280 reg |= BANK_SEL(larb->bank[i]);
281 writel(reg, larb->base + SMI_LARB_NONSEC_CON(i));
282 }
283 return 0;
284}
285
286static const u8 mtk_smi_larb_mt8188_ostd[][SMI_LARB_PORT_NR_MAX] = {
287 [0] = {0x02, 0x18, 0x22, 0x22, 0x01, 0x02, 0x0a,},
288 [1] = {0x12, 0x02, 0x14, 0x14, 0x01, 0x18, 0x0a,},
289 [2] = {0x12, 0x12, 0x12, 0x12, 0x0a,},
290 [3] = {0x12, 0x12, 0x12, 0x12, 0x28, 0x28, 0x0a,},
291 [4] = {0x06, 0x01, 0x17, 0x06, 0x0a, 0x07, 0x07,},
292 [5] = {0x02, 0x01, 0x04, 0x02, 0x06, 0x01, 0x06, 0x0a,},
293 [6] = {0x06, 0x01, 0x06, 0x0a,},
294 [7] = {0x0c, 0x0c, 0x12,},
295 [8] = {0x0c, 0x01, 0x0a, 0x05, 0x02, 0x03, 0x01, 0x01, 0x14, 0x14,
296 0x0a, 0x14, 0x1e, 0x01, 0x0c, 0x0a, 0x05, 0x02, 0x02, 0x05,
297 0x03, 0x01, 0x1e, 0x01, 0x05,},
298 [9] = {0x1e, 0x01, 0x0a, 0x0a, 0x01, 0x01, 0x03, 0x1e, 0x1e, 0x10,
299 0x07, 0x01, 0x0a, 0x06, 0x03, 0x03, 0x0e, 0x01, 0x04, 0x28,},
300 [10] = {0x03, 0x20, 0x01, 0x20, 0x01, 0x01, 0x14, 0x0a, 0x0a, 0x0c,
301 0x0a, 0x05, 0x02, 0x03, 0x02, 0x14, 0x0a, 0x0a, 0x14, 0x14,
302 0x14, 0x01, 0x01, 0x14, 0x1e, 0x01, 0x05, 0x03, 0x02, 0x28,},
303 [11] = {0x03, 0x20, 0x01, 0x20, 0x01, 0x01, 0x14, 0x0a, 0x0a, 0x0c,
304 0x0a, 0x05, 0x02, 0x03, 0x02, 0x14, 0x0a, 0x0a, 0x14, 0x14,
305 0x14, 0x01, 0x01, 0x14, 0x1e, 0x01, 0x05, 0x03, 0x02, 0x28,},
306 [12] = {0x03, 0x20, 0x01, 0x20, 0x01, 0x01, 0x14, 0x0a, 0x0a, 0x0c,
307 0x0a, 0x05, 0x02, 0x03, 0x02, 0x14, 0x0a, 0x0a, 0x14, 0x14,
308 0x14, 0x01, 0x01, 0x14, 0x1e, 0x01, 0x05, 0x03, 0x02, 0x28,},
309 [13] = {0x07, 0x02, 0x04, 0x02, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,
310 0x07, 0x02, 0x04, 0x02, 0x05, 0x05,},
311 [14] = {0x02, 0x02, 0x0c, 0x0c, 0x0c, 0x0c, 0x01, 0x01, 0x02, 0x02,
312 0x02, 0x02, 0x0c, 0x0c, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02,
313 0x02, 0x02, 0x01, 0x01,},
314 [15] = {0x0c, 0x0c, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x0c, 0x0c,
315 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x01, 0x02,
316 0x0c, 0x01, 0x01,},
317 [16] = {0x28, 0x28, 0x03, 0x01, 0x01, 0x03, 0x14, 0x14, 0x0a, 0x0d,
318 0x03, 0x05, 0x0e, 0x01, 0x01, 0x05, 0x06, 0x0d, 0x01,},
319 [17] = {0x28, 0x02, 0x02, 0x12, 0x02, 0x12, 0x10, 0x02, 0x02, 0x0a,
320 0x12, 0x02, 0x02, 0x0a, 0x16, 0x02, 0x04,},
321 [18] = {0x28, 0x02, 0x02, 0x12, 0x02, 0x12, 0x10, 0x02, 0x02, 0x0a,
322 0x12, 0x02, 0x02, 0x0a, 0x16, 0x02, 0x04,},
323 [19] = {0x1a, 0x0e, 0x0a, 0x0a, 0x0c, 0x0e, 0x10,},
324 [20] = {0x1a, 0x0e, 0x0a, 0x0a, 0x0c, 0x0e, 0x10,},
325 [21] = {0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x04, 0x01,
326 0x01, 0x01, 0x04, 0x0a, 0x06, 0x01, 0x01, 0x01, 0x0a, 0x06,
327 0x01, 0x01, 0x05, 0x03, 0x03, 0x04, 0x01,},
328 [22] = {0x28, 0x19, 0x0c, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04,
329 0x01,},
330 [23] = {0x01, 0x01, 0x04, 0x01, 0x01, 0x01, 0x18, 0x01, 0x01,},
331 [24] = {0x12, 0x06, 0x12, 0x06,},
332 [25] = {0x01},
333};
334
335static const u8 mtk_smi_larb_mt8195_ostd[][SMI_LARB_PORT_NR_MAX] = {
336 [0] = {0x0a, 0xc, 0x22, 0x22, 0x01, 0x0a,}, /* larb0 */
337 [1] = {0x0a, 0xc, 0x22, 0x22, 0x01, 0x0a,}, /* larb1 */
338 [2] = {0x12, 0x12, 0x12, 0x12, 0x0a,}, /* ... */
339 [3] = {0x12, 0x12, 0x12, 0x12, 0x28, 0x28, 0x0a,},
340 [4] = {0x06, 0x01, 0x17, 0x06, 0x0a,},
341 [5] = {0x06, 0x01, 0x17, 0x06, 0x06, 0x01, 0x06, 0x0a,},
342 [6] = {0x06, 0x01, 0x06, 0x0a,},
343 [7] = {0x0c, 0x0c, 0x12,},
344 [8] = {0x0c, 0x0c, 0x12,},
345 [9] = {0x0a, 0x08, 0x04, 0x06, 0x01, 0x01, 0x10, 0x18, 0x11, 0x0a,
346 0x08, 0x04, 0x11, 0x06, 0x02, 0x06, 0x01, 0x11, 0x11, 0x06,},
347 [10] = {0x18, 0x08, 0x01, 0x01, 0x20, 0x12, 0x18, 0x06, 0x05, 0x10,
348 0x08, 0x08, 0x10, 0x08, 0x08, 0x18, 0x0c, 0x09, 0x0b, 0x0d,
349 0x0d, 0x06, 0x10, 0x10,},
350 [11] = {0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x01, 0x01, 0x01, 0x01,},
351 [12] = {0x09, 0x09, 0x05, 0x05, 0x0c, 0x18, 0x02, 0x02, 0x04, 0x02,},
352 [13] = {0x02, 0x02, 0x12, 0x12, 0x02, 0x02, 0x02, 0x02, 0x08, 0x01,},
353 [14] = {0x12, 0x12, 0x02, 0x02, 0x02, 0x02, 0x16, 0x01, 0x16, 0x01,
354 0x01, 0x02, 0x02, 0x08, 0x02,},
355 [15] = {},
356 [16] = {0x28, 0x02, 0x02, 0x12, 0x02, 0x12, 0x10, 0x02, 0x02, 0x0a,
357 0x12, 0x02, 0x0a, 0x16, 0x02, 0x04,},
358 [17] = {0x1a, 0x0e, 0x0a, 0x0a, 0x0c, 0x0e, 0x10,},
359 [18] = {0x12, 0x06, 0x12, 0x06,},
360 [19] = {0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x04, 0x01,
361 0x01, 0x01, 0x04, 0x0a, 0x06, 0x01, 0x01, 0x01, 0x0a, 0x06,
362 0x01, 0x01, 0x05, 0x03, 0x03, 0x04, 0x01,},
363 [20] = {0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x04, 0x01,
364 0x01, 0x01, 0x04, 0x0a, 0x06, 0x01, 0x01, 0x01, 0x0a, 0x06,
365 0x01, 0x01, 0x05, 0x03, 0x03, 0x04, 0x01,},
366 [21] = {0x28, 0x19, 0x0c, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04,},
367 [22] = {0x28, 0x19, 0x0c, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04,},
368 [23] = {0x18, 0x01,},
369 [24] = {0x01, 0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x01,
370 0x01, 0x01,},
371 [25] = {0x02, 0x02, 0x02, 0x28, 0x16, 0x02, 0x02, 0x02, 0x12, 0x16,
372 0x02, 0x01,},
373 [26] = {0x02, 0x02, 0x02, 0x28, 0x16, 0x02, 0x02, 0x02, 0x12, 0x16,
374 0x02, 0x01,},
375 [27] = {0x02, 0x02, 0x02, 0x28, 0x16, 0x02, 0x02, 0x02, 0x12, 0x16,
376 0x02, 0x01,},
377 [28] = {0x1a, 0x0e, 0x0a, 0x0a, 0x0c, 0x0e, 0x10,},
378};
379
380static const struct mtk_smi_larb_gen mtk_smi_larb_mt2701 = {
381 .port_in_larb = {
382 LARB0_PORT_OFFSET, LARB1_PORT_OFFSET,
383 LARB2_PORT_OFFSET, LARB3_PORT_OFFSET
384 },
385 .config_port = mtk_smi_larb_config_port_gen1,
386};
387
388static const struct mtk_smi_larb_gen mtk_smi_larb_mt2712 = {
389 .config_port = mtk_smi_larb_config_port_gen2_general,
390 .larb_direct_to_common_mask = BIT(8) | BIT(9), /* bdpsys */
391};
392
393static const struct mtk_smi_larb_gen mtk_smi_larb_mt6779 = {
394 .config_port = mtk_smi_larb_config_port_gen2_general,
395 .larb_direct_to_common_mask =
396 BIT(4) | BIT(6) | BIT(11) | BIT(12) | BIT(13),
397 /* DUMMY | IPU0 | IPU1 | CCU | MDLA */
398};
399
400static const struct mtk_smi_larb_gen mtk_smi_larb_mt8167 = {
401 /* mt8167 do not need the port in larb */
402 .config_port = mtk_smi_larb_config_port_mt8167,
403};
404
405static const struct mtk_smi_larb_gen mtk_smi_larb_mt8173 = {
406 /* mt8173 do not need the port in larb */
407 .config_port = mtk_smi_larb_config_port_mt8173,
408};
409
410static const struct mtk_smi_larb_gen mtk_smi_larb_mt8183 = {
411 .config_port = mtk_smi_larb_config_port_gen2_general,
412 .larb_direct_to_common_mask = BIT(2) | BIT(3) | BIT(7),
413 /* IPU0 | IPU1 | CCU */
414};
415
416static const struct mtk_smi_larb_gen mtk_smi_larb_mt8186 = {
417 .config_port = mtk_smi_larb_config_port_gen2_general,
418 .flags_general = MTK_SMI_FLAG_SLEEP_CTL,
419};
420
421static const struct mtk_smi_larb_gen mtk_smi_larb_mt8188 = {
422 .config_port = mtk_smi_larb_config_port_gen2_general,
423 .flags_general = MTK_SMI_FLAG_THRT_UPDATE | MTK_SMI_FLAG_SW_FLAG |
424 MTK_SMI_FLAG_SLEEP_CTL | MTK_SMI_FLAG_CFG_PORT_SEC_CTL,
425 .ostd = mtk_smi_larb_mt8188_ostd,
426};
427
428static const struct mtk_smi_larb_gen mtk_smi_larb_mt8192 = {
429 .config_port = mtk_smi_larb_config_port_gen2_general,
430};
431
432static const struct mtk_smi_larb_gen mtk_smi_larb_mt8195 = {
433 .config_port = mtk_smi_larb_config_port_gen2_general,
434 .flags_general = MTK_SMI_FLAG_THRT_UPDATE | MTK_SMI_FLAG_SW_FLAG |
435 MTK_SMI_FLAG_SLEEP_CTL,
436 .ostd = mtk_smi_larb_mt8195_ostd,
437};
438
439static const struct of_device_id mtk_smi_larb_of_ids[] = {
440 {.compatible = "mediatek,mt2701-smi-larb", .data = &mtk_smi_larb_mt2701},
441 {.compatible = "mediatek,mt2712-smi-larb", .data = &mtk_smi_larb_mt2712},
442 {.compatible = "mediatek,mt6779-smi-larb", .data = &mtk_smi_larb_mt6779},
443 {.compatible = "mediatek,mt6795-smi-larb", .data = &mtk_smi_larb_mt8173},
444 {.compatible = "mediatek,mt8167-smi-larb", .data = &mtk_smi_larb_mt8167},
445 {.compatible = "mediatek,mt8173-smi-larb", .data = &mtk_smi_larb_mt8173},
446 {.compatible = "mediatek,mt8183-smi-larb", .data = &mtk_smi_larb_mt8183},
447 {.compatible = "mediatek,mt8186-smi-larb", .data = &mtk_smi_larb_mt8186},
448 {.compatible = "mediatek,mt8188-smi-larb", .data = &mtk_smi_larb_mt8188},
449 {.compatible = "mediatek,mt8192-smi-larb", .data = &mtk_smi_larb_mt8192},
450 {.compatible = "mediatek,mt8195-smi-larb", .data = &mtk_smi_larb_mt8195},
451 {}
452};
453MODULE_DEVICE_TABLE(of, mtk_smi_larb_of_ids);
454
455static int mtk_smi_larb_sleep_ctrl_enable(struct mtk_smi_larb *larb)
456{
457 int ret;
458 u32 tmp;
459
460 writel_relaxed(SLP_PROT_EN, larb->base + SMI_LARB_SLP_CON);
461 ret = readl_poll_timeout_atomic(larb->base + SMI_LARB_SLP_CON,
462 tmp, !!(tmp & SLP_PROT_RDY), 10, 1000);
463 if (ret) {
464 /* TODO: Reset this larb if it fails here. */
465 dev_err(larb->smi.dev, "sleep ctrl is not ready(0x%x).\n", tmp);
466 }
467 return ret;
468}
469
470static void mtk_smi_larb_sleep_ctrl_disable(struct mtk_smi_larb *larb)
471{
472 writel_relaxed(0, larb->base + SMI_LARB_SLP_CON);
473}
474
475static int mtk_smi_device_link_common(struct device *dev, struct device **com_dev)
476{
477 struct platform_device *smi_com_pdev;
478 struct device_node *smi_com_node;
479 struct device *smi_com_dev;
480 struct device_link *link;
481
482 smi_com_node = of_parse_phandle(dev->of_node, "mediatek,smi", 0);
483 if (!smi_com_node)
484 return -EINVAL;
485
486 smi_com_pdev = of_find_device_by_node(smi_com_node);
487 of_node_put(smi_com_node);
488 if (smi_com_pdev) {
489 /* smi common is the supplier, Make sure it is ready before */
490 if (!platform_get_drvdata(smi_com_pdev)) {
491 put_device(&smi_com_pdev->dev);
492 return -EPROBE_DEFER;
493 }
494 smi_com_dev = &smi_com_pdev->dev;
495 link = device_link_add(dev, smi_com_dev,
496 DL_FLAG_PM_RUNTIME | DL_FLAG_STATELESS);
497 if (!link) {
498 dev_err(dev, "Unable to link smi-common dev\n");
499 put_device(&smi_com_pdev->dev);
500 return -ENODEV;
501 }
502 *com_dev = smi_com_dev;
503 } else {
504 dev_err(dev, "Failed to get the smi_common device\n");
505 return -EINVAL;
506 }
507 return 0;
508}
509
510static int mtk_smi_dts_clk_init(struct device *dev, struct mtk_smi *smi,
511 const char * const clks[],
512 unsigned int clk_nr_required,
513 unsigned int clk_nr_optional)
514{
515 int i, ret;
516
517 for (i = 0; i < clk_nr_required; i++)
518 smi->clks[i].id = clks[i];
519 ret = devm_clk_bulk_get(dev, clk_nr_required, smi->clks);
520 if (ret)
521 return ret;
522
523 for (i = clk_nr_required; i < clk_nr_required + clk_nr_optional; i++)
524 smi->clks[i].id = clks[i];
525 ret = devm_clk_bulk_get_optional(dev, clk_nr_optional,
526 smi->clks + clk_nr_required);
527 smi->clk_num = clk_nr_required + clk_nr_optional;
528 return ret;
529}
530
531static int mtk_smi_larb_probe(struct platform_device *pdev)
532{
533 struct mtk_smi_larb *larb;
534 struct device *dev = &pdev->dev;
535 int ret;
536
537 larb = devm_kzalloc(dev, sizeof(*larb), GFP_KERNEL);
538 if (!larb)
539 return -ENOMEM;
540
541 larb->larb_gen = of_device_get_match_data(dev);
542 larb->base = devm_platform_ioremap_resource(pdev, 0);
543 if (IS_ERR(larb->base))
544 return PTR_ERR(larb->base);
545
546 ret = mtk_smi_dts_clk_init(dev, &larb->smi, mtk_smi_larb_clks,
547 MTK_SMI_LARB_REQ_CLK_NR, MTK_SMI_LARB_OPT_CLK_NR);
548 if (ret)
549 return ret;
550
551 larb->smi.dev = dev;
552
553 ret = mtk_smi_device_link_common(dev, &larb->smi_common_dev);
554 if (ret < 0)
555 return ret;
556
557 pm_runtime_enable(dev);
558 platform_set_drvdata(pdev, larb);
559 ret = component_add(dev, &mtk_smi_larb_component_ops);
560 if (ret)
561 goto err_pm_disable;
562 return 0;
563
564err_pm_disable:
565 pm_runtime_disable(dev);
566 device_link_remove(dev, larb->smi_common_dev);
567 return ret;
568}
569
570static void mtk_smi_larb_remove(struct platform_device *pdev)
571{
572 struct mtk_smi_larb *larb = platform_get_drvdata(pdev);
573
574 device_link_remove(&pdev->dev, larb->smi_common_dev);
575 pm_runtime_disable(&pdev->dev);
576 component_del(&pdev->dev, &mtk_smi_larb_component_ops);
577}
578
579static int __maybe_unused mtk_smi_larb_resume(struct device *dev)
580{
581 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
582 const struct mtk_smi_larb_gen *larb_gen = larb->larb_gen;
583 int ret;
584
585 ret = clk_bulk_prepare_enable(larb->smi.clk_num, larb->smi.clks);
586 if (ret)
587 return ret;
588
589 if (MTK_SMI_CAPS(larb->larb_gen->flags_general, MTK_SMI_FLAG_SLEEP_CTL))
590 mtk_smi_larb_sleep_ctrl_disable(larb);
591
592 /* Configure the basic setting for this larb */
593 return larb_gen->config_port(dev);
594}
595
596static int __maybe_unused mtk_smi_larb_suspend(struct device *dev)
597{
598 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
599 int ret;
600
601 if (MTK_SMI_CAPS(larb->larb_gen->flags_general, MTK_SMI_FLAG_SLEEP_CTL)) {
602 ret = mtk_smi_larb_sleep_ctrl_enable(larb);
603 if (ret)
604 return ret;
605 }
606
607 clk_bulk_disable_unprepare(larb->smi.clk_num, larb->smi.clks);
608 return 0;
609}
610
611static const struct dev_pm_ops smi_larb_pm_ops = {
612 SET_RUNTIME_PM_OPS(mtk_smi_larb_suspend, mtk_smi_larb_resume, NULL)
613 SET_LATE_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
614 pm_runtime_force_resume)
615};
616
617static struct platform_driver mtk_smi_larb_driver = {
618 .probe = mtk_smi_larb_probe,
619 .remove = mtk_smi_larb_remove,
620 .driver = {
621 .name = "mtk-smi-larb",
622 .of_match_table = mtk_smi_larb_of_ids,
623 .pm = &smi_larb_pm_ops,
624 }
625};
626
627static const struct mtk_smi_reg_pair mtk_smi_common_mt6795_init[SMI_COMMON_INIT_REGS_NR] = {
628 {SMI_L1_ARB, 0x1b},
629 {SMI_M4U_TH, 0xce810c85},
630 {SMI_FIFO_TH1, 0x43214c8},
631 {SMI_READ_FIFO_TH, 0x191f},
632};
633
634static const struct mtk_smi_reg_pair mtk_smi_common_mt8195_init[SMI_COMMON_INIT_REGS_NR] = {
635 {SMI_L1LEN, 0xb},
636 {SMI_M4U_TH, 0xe100e10},
637 {SMI_FIFO_TH1, 0x506090a},
638 {SMI_FIFO_TH2, 0x506090a},
639 {SMI_DCM, 0x4f1},
640 {SMI_DUMMY, 0x1},
641};
642
643static const struct mtk_smi_common_plat mtk_smi_common_gen1 = {
644 .type = MTK_SMI_GEN1,
645};
646
647static const struct mtk_smi_common_plat mtk_smi_common_gen2 = {
648 .type = MTK_SMI_GEN2,
649};
650
651static const struct mtk_smi_common_plat mtk_smi_common_mt6779 = {
652 .type = MTK_SMI_GEN2,
653 .has_gals = true,
654 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(4) |
655 F_MMU1_LARB(5) | F_MMU1_LARB(6) | F_MMU1_LARB(7),
656};
657
658static const struct mtk_smi_common_plat mtk_smi_common_mt6795 = {
659 .type = MTK_SMI_GEN2,
660 .bus_sel = F_MMU1_LARB(0),
661 .init = mtk_smi_common_mt6795_init,
662};
663
664static const struct mtk_smi_common_plat mtk_smi_common_mt8183 = {
665 .type = MTK_SMI_GEN2,
666 .has_gals = true,
667 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(5) |
668 F_MMU1_LARB(7),
669};
670
671static const struct mtk_smi_common_plat mtk_smi_common_mt8186 = {
672 .type = MTK_SMI_GEN2,
673 .has_gals = true,
674 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(4) | F_MMU1_LARB(7),
675};
676
677static const struct mtk_smi_common_plat mtk_smi_common_mt8188_vdo = {
678 .type = MTK_SMI_GEN2,
679 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(5) | F_MMU1_LARB(7),
680 .init = mtk_smi_common_mt8195_init,
681};
682
683static const struct mtk_smi_common_plat mtk_smi_common_mt8188_vpp = {
684 .type = MTK_SMI_GEN2,
685 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(7),
686 .init = mtk_smi_common_mt8195_init,
687};
688
689static const struct mtk_smi_common_plat mtk_smi_common_mt8192 = {
690 .type = MTK_SMI_GEN2,
691 .has_gals = true,
692 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(5) |
693 F_MMU1_LARB(6),
694};
695
696static const struct mtk_smi_common_plat mtk_smi_common_mt8195_vdo = {
697 .type = MTK_SMI_GEN2,
698 .has_gals = true,
699 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(3) | F_MMU1_LARB(5) |
700 F_MMU1_LARB(7),
701 .init = mtk_smi_common_mt8195_init,
702};
703
704static const struct mtk_smi_common_plat mtk_smi_common_mt8195_vpp = {
705 .type = MTK_SMI_GEN2,
706 .has_gals = true,
707 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(7),
708 .init = mtk_smi_common_mt8195_init,
709};
710
711static const struct mtk_smi_common_plat mtk_smi_sub_common_mt8195 = {
712 .type = MTK_SMI_GEN2_SUB_COMM,
713 .has_gals = true,
714};
715
716static const struct mtk_smi_common_plat mtk_smi_common_mt8365 = {
717 .type = MTK_SMI_GEN2,
718 .bus_sel = F_MMU1_LARB(2) | F_MMU1_LARB(4),
719};
720
721static const struct of_device_id mtk_smi_common_of_ids[] = {
722 {.compatible = "mediatek,mt2701-smi-common", .data = &mtk_smi_common_gen1},
723 {.compatible = "mediatek,mt2712-smi-common", .data = &mtk_smi_common_gen2},
724 {.compatible = "mediatek,mt6779-smi-common", .data = &mtk_smi_common_mt6779},
725 {.compatible = "mediatek,mt6795-smi-common", .data = &mtk_smi_common_mt6795},
726 {.compatible = "mediatek,mt8167-smi-common", .data = &mtk_smi_common_gen2},
727 {.compatible = "mediatek,mt8173-smi-common", .data = &mtk_smi_common_gen2},
728 {.compatible = "mediatek,mt8183-smi-common", .data = &mtk_smi_common_mt8183},
729 {.compatible = "mediatek,mt8186-smi-common", .data = &mtk_smi_common_mt8186},
730 {.compatible = "mediatek,mt8188-smi-common-vdo", .data = &mtk_smi_common_mt8188_vdo},
731 {.compatible = "mediatek,mt8188-smi-common-vpp", .data = &mtk_smi_common_mt8188_vpp},
732 {.compatible = "mediatek,mt8192-smi-common", .data = &mtk_smi_common_mt8192},
733 {.compatible = "mediatek,mt8195-smi-common-vdo", .data = &mtk_smi_common_mt8195_vdo},
734 {.compatible = "mediatek,mt8195-smi-common-vpp", .data = &mtk_smi_common_mt8195_vpp},
735 {.compatible = "mediatek,mt8195-smi-sub-common", .data = &mtk_smi_sub_common_mt8195},
736 {.compatible = "mediatek,mt8365-smi-common", .data = &mtk_smi_common_mt8365},
737 {}
738};
739MODULE_DEVICE_TABLE(of, mtk_smi_common_of_ids);
740
741static int mtk_smi_common_probe(struct platform_device *pdev)
742{
743 struct device *dev = &pdev->dev;
744 struct mtk_smi *common;
745 int ret, clk_required = MTK_SMI_COM_REQ_CLK_NR;
746
747 common = devm_kzalloc(dev, sizeof(*common), GFP_KERNEL);
748 if (!common)
749 return -ENOMEM;
750 common->dev = dev;
751 common->plat = of_device_get_match_data(dev);
752
753 if (common->plat->has_gals) {
754 if (common->plat->type == MTK_SMI_GEN2)
755 clk_required = MTK_SMI_COM_GALS_REQ_CLK_NR;
756 else if (common->plat->type == MTK_SMI_GEN2_SUB_COMM)
757 clk_required = MTK_SMI_SUB_COM_GALS_REQ_CLK_NR;
758 }
759 ret = mtk_smi_dts_clk_init(dev, common, mtk_smi_common_clks, clk_required, 0);
760 if (ret)
761 return ret;
762
763 /*
764 * for mtk smi gen 1, we need to get the ao(always on) base to config
765 * m4u port, and we need to enable the aync clock for transform the smi
766 * clock into emi clock domain, but for mtk smi gen2, there's no smi ao
767 * base.
768 */
769 if (common->plat->type == MTK_SMI_GEN1) {
770 common->smi_ao_base = devm_platform_ioremap_resource(pdev, 0);
771 if (IS_ERR(common->smi_ao_base))
772 return PTR_ERR(common->smi_ao_base);
773
774 common->clk_async = devm_clk_get_enabled(dev, "async");
775 if (IS_ERR(common->clk_async))
776 return PTR_ERR(common->clk_async);
777 } else {
778 common->base = devm_platform_ioremap_resource(pdev, 0);
779 if (IS_ERR(common->base))
780 return PTR_ERR(common->base);
781 }
782
783 /* link its smi-common if this is smi-sub-common */
784 if (common->plat->type == MTK_SMI_GEN2_SUB_COMM) {
785 ret = mtk_smi_device_link_common(dev, &common->smi_common_dev);
786 if (ret < 0)
787 return ret;
788 }
789
790 pm_runtime_enable(dev);
791 platform_set_drvdata(pdev, common);
792 return 0;
793}
794
795static void mtk_smi_common_remove(struct platform_device *pdev)
796{
797 struct mtk_smi *common = dev_get_drvdata(&pdev->dev);
798
799 if (common->plat->type == MTK_SMI_GEN2_SUB_COMM)
800 device_link_remove(&pdev->dev, common->smi_common_dev);
801 pm_runtime_disable(&pdev->dev);
802}
803
804static int __maybe_unused mtk_smi_common_resume(struct device *dev)
805{
806 struct mtk_smi *common = dev_get_drvdata(dev);
807 const struct mtk_smi_reg_pair *init = common->plat->init;
808 u32 bus_sel = common->plat->bus_sel; /* default is 0 */
809 int ret, i;
810
811 ret = clk_bulk_prepare_enable(common->clk_num, common->clks);
812 if (ret)
813 return ret;
814
815 if (common->plat->type != MTK_SMI_GEN2)
816 return 0;
817
818 for (i = 0; i < SMI_COMMON_INIT_REGS_NR && init && init[i].offset; i++)
819 writel_relaxed(init[i].value, common->base + init[i].offset);
820
821 writel(bus_sel, common->base + SMI_BUS_SEL);
822 return 0;
823}
824
825static int __maybe_unused mtk_smi_common_suspend(struct device *dev)
826{
827 struct mtk_smi *common = dev_get_drvdata(dev);
828
829 clk_bulk_disable_unprepare(common->clk_num, common->clks);
830 return 0;
831}
832
833static const struct dev_pm_ops smi_common_pm_ops = {
834 SET_RUNTIME_PM_OPS(mtk_smi_common_suspend, mtk_smi_common_resume, NULL)
835 SET_LATE_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
836 pm_runtime_force_resume)
837};
838
839static struct platform_driver mtk_smi_common_driver = {
840 .probe = mtk_smi_common_probe,
841 .remove = mtk_smi_common_remove,
842 .driver = {
843 .name = "mtk-smi-common",
844 .of_match_table = mtk_smi_common_of_ids,
845 .pm = &smi_common_pm_ops,
846 }
847};
848
849static struct platform_driver * const smidrivers[] = {
850 &mtk_smi_common_driver,
851 &mtk_smi_larb_driver,
852};
853
854static int __init mtk_smi_init(void)
855{
856 return platform_register_drivers(smidrivers, ARRAY_SIZE(smidrivers));
857}
858module_init(mtk_smi_init);
859
860static void __exit mtk_smi_exit(void)
861{
862 platform_unregister_drivers(smidrivers, ARRAY_SIZE(smidrivers));
863}
864module_exit(mtk_smi_exit);
865
866MODULE_DESCRIPTION("MediaTek SMI driver");
867MODULE_LICENSE("GPL v2");
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (c) 2015-2016 MediaTek Inc.
4 * Author: Yong Wu <yong.wu@mediatek.com>
5 */
6#include <linux/clk.h>
7#include <linux/component.h>
8#include <linux/device.h>
9#include <linux/err.h>
10#include <linux/io.h>
11#include <linux/module.h>
12#include <linux/of.h>
13#include <linux/of_platform.h>
14#include <linux/platform_device.h>
15#include <linux/pm_runtime.h>
16#include <soc/mediatek/smi.h>
17#include <dt-bindings/memory/mt2701-larb-port.h>
18#include <dt-bindings/memory/mtk-memory-port.h>
19
20/* mt8173 */
21#define SMI_LARB_MMU_EN 0xf00
22
23/* mt8167 */
24#define MT8167_SMI_LARB_MMU_EN 0xfc0
25
26/* mt2701 */
27#define REG_SMI_SECUR_CON_BASE 0x5c0
28
29/* every register control 8 port, register offset 0x4 */
30#define REG_SMI_SECUR_CON_OFFSET(id) (((id) >> 3) << 2)
31#define REG_SMI_SECUR_CON_ADDR(id) \
32 (REG_SMI_SECUR_CON_BASE + REG_SMI_SECUR_CON_OFFSET(id))
33
34/*
35 * every port have 4 bit to control, bit[port + 3] control virtual or physical,
36 * bit[port + 2 : port + 1] control the domain, bit[port] control the security
37 * or non-security.
38 */
39#define SMI_SECUR_CON_VAL_MSK(id) (~(0xf << (((id) & 0x7) << 2)))
40#define SMI_SECUR_CON_VAL_VIRT(id) BIT((((id) & 0x7) << 2) + 3)
41/* mt2701 domain should be set to 3 */
42#define SMI_SECUR_CON_VAL_DOMAIN(id) (0x3 << ((((id) & 0x7) << 2) + 1))
43
44/* mt2712 */
45#define SMI_LARB_NONSEC_CON(id) (0x380 + ((id) * 4))
46#define F_MMU_EN BIT(0)
47#define BANK_SEL(id) ({ \
48 u32 _id = (id) & 0x3; \
49 (_id << 8 | _id << 10 | _id << 12 | _id << 14); \
50})
51
52/* SMI COMMON */
53#define SMI_BUS_SEL 0x220
54#define SMI_BUS_LARB_SHIFT(larbid) ((larbid) << 1)
55/* All are MMU0 defaultly. Only specialize mmu1 here. */
56#define F_MMU1_LARB(larbid) (0x1 << SMI_BUS_LARB_SHIFT(larbid))
57
58enum mtk_smi_gen {
59 MTK_SMI_GEN1,
60 MTK_SMI_GEN2
61};
62
63struct mtk_smi_common_plat {
64 enum mtk_smi_gen gen;
65 bool has_gals;
66 u32 bus_sel; /* Balance some larbs to enter mmu0 or mmu1 */
67};
68
69struct mtk_smi_larb_gen {
70 int port_in_larb[MTK_LARB_NR_MAX + 1];
71 void (*config_port)(struct device *dev);
72 unsigned int larb_direct_to_common_mask;
73 bool has_gals;
74};
75
76struct mtk_smi {
77 struct device *dev;
78 struct clk *clk_apb, *clk_smi;
79 struct clk *clk_gals0, *clk_gals1;
80 struct clk *clk_async; /*only needed by mt2701*/
81 union {
82 void __iomem *smi_ao_base; /* only for gen1 */
83 void __iomem *base; /* only for gen2 */
84 };
85 const struct mtk_smi_common_plat *plat;
86};
87
88struct mtk_smi_larb { /* larb: local arbiter */
89 struct mtk_smi smi;
90 void __iomem *base;
91 struct device *smi_common_dev;
92 const struct mtk_smi_larb_gen *larb_gen;
93 int larbid;
94 u32 *mmu;
95 unsigned char *bank;
96};
97
98static int mtk_smi_clk_enable(const struct mtk_smi *smi)
99{
100 int ret;
101
102 ret = clk_prepare_enable(smi->clk_apb);
103 if (ret)
104 return ret;
105
106 ret = clk_prepare_enable(smi->clk_smi);
107 if (ret)
108 goto err_disable_apb;
109
110 ret = clk_prepare_enable(smi->clk_gals0);
111 if (ret)
112 goto err_disable_smi;
113
114 ret = clk_prepare_enable(smi->clk_gals1);
115 if (ret)
116 goto err_disable_gals0;
117
118 return 0;
119
120err_disable_gals0:
121 clk_disable_unprepare(smi->clk_gals0);
122err_disable_smi:
123 clk_disable_unprepare(smi->clk_smi);
124err_disable_apb:
125 clk_disable_unprepare(smi->clk_apb);
126 return ret;
127}
128
129static void mtk_smi_clk_disable(const struct mtk_smi *smi)
130{
131 clk_disable_unprepare(smi->clk_gals1);
132 clk_disable_unprepare(smi->clk_gals0);
133 clk_disable_unprepare(smi->clk_smi);
134 clk_disable_unprepare(smi->clk_apb);
135}
136
137int mtk_smi_larb_get(struct device *larbdev)
138{
139 int ret = pm_runtime_resume_and_get(larbdev);
140
141 return (ret < 0) ? ret : 0;
142}
143EXPORT_SYMBOL_GPL(mtk_smi_larb_get);
144
145void mtk_smi_larb_put(struct device *larbdev)
146{
147 pm_runtime_put_sync(larbdev);
148}
149EXPORT_SYMBOL_GPL(mtk_smi_larb_put);
150
151static int
152mtk_smi_larb_bind(struct device *dev, struct device *master, void *data)
153{
154 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
155 struct mtk_smi_larb_iommu *larb_mmu = data;
156 unsigned int i;
157
158 for (i = 0; i < MTK_LARB_NR_MAX; i++) {
159 if (dev == larb_mmu[i].dev) {
160 larb->larbid = i;
161 larb->mmu = &larb_mmu[i].mmu;
162 larb->bank = larb_mmu[i].bank;
163 return 0;
164 }
165 }
166 return -ENODEV;
167}
168
169static void mtk_smi_larb_config_port_gen2_general(struct device *dev)
170{
171 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
172 u32 reg;
173 int i;
174
175 if (BIT(larb->larbid) & larb->larb_gen->larb_direct_to_common_mask)
176 return;
177
178 for_each_set_bit(i, (unsigned long *)larb->mmu, 32) {
179 reg = readl_relaxed(larb->base + SMI_LARB_NONSEC_CON(i));
180 reg |= F_MMU_EN;
181 reg |= BANK_SEL(larb->bank[i]);
182 writel(reg, larb->base + SMI_LARB_NONSEC_CON(i));
183 }
184}
185
186static void mtk_smi_larb_config_port_mt8173(struct device *dev)
187{
188 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
189
190 writel(*larb->mmu, larb->base + SMI_LARB_MMU_EN);
191}
192
193static void mtk_smi_larb_config_port_mt8167(struct device *dev)
194{
195 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
196
197 writel(*larb->mmu, larb->base + MT8167_SMI_LARB_MMU_EN);
198}
199
200static void mtk_smi_larb_config_port_gen1(struct device *dev)
201{
202 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
203 const struct mtk_smi_larb_gen *larb_gen = larb->larb_gen;
204 struct mtk_smi *common = dev_get_drvdata(larb->smi_common_dev);
205 int i, m4u_port_id, larb_port_num;
206 u32 sec_con_val, reg_val;
207
208 m4u_port_id = larb_gen->port_in_larb[larb->larbid];
209 larb_port_num = larb_gen->port_in_larb[larb->larbid + 1]
210 - larb_gen->port_in_larb[larb->larbid];
211
212 for (i = 0; i < larb_port_num; i++, m4u_port_id++) {
213 if (*larb->mmu & BIT(i)) {
214 /* bit[port + 3] controls the virtual or physical */
215 sec_con_val = SMI_SECUR_CON_VAL_VIRT(m4u_port_id);
216 } else {
217 /* do not need to enable m4u for this port */
218 continue;
219 }
220 reg_val = readl(common->smi_ao_base
221 + REG_SMI_SECUR_CON_ADDR(m4u_port_id));
222 reg_val &= SMI_SECUR_CON_VAL_MSK(m4u_port_id);
223 reg_val |= sec_con_val;
224 reg_val |= SMI_SECUR_CON_VAL_DOMAIN(m4u_port_id);
225 writel(reg_val,
226 common->smi_ao_base
227 + REG_SMI_SECUR_CON_ADDR(m4u_port_id));
228 }
229}
230
231static void
232mtk_smi_larb_unbind(struct device *dev, struct device *master, void *data)
233{
234 /* Do nothing as the iommu is always enabled. */
235}
236
237static const struct component_ops mtk_smi_larb_component_ops = {
238 .bind = mtk_smi_larb_bind,
239 .unbind = mtk_smi_larb_unbind,
240};
241
242static const struct mtk_smi_larb_gen mtk_smi_larb_mt8173 = {
243 /* mt8173 do not need the port in larb */
244 .config_port = mtk_smi_larb_config_port_mt8173,
245};
246
247static const struct mtk_smi_larb_gen mtk_smi_larb_mt8167 = {
248 /* mt8167 do not need the port in larb */
249 .config_port = mtk_smi_larb_config_port_mt8167,
250};
251
252static const struct mtk_smi_larb_gen mtk_smi_larb_mt2701 = {
253 .port_in_larb = {
254 LARB0_PORT_OFFSET, LARB1_PORT_OFFSET,
255 LARB2_PORT_OFFSET, LARB3_PORT_OFFSET
256 },
257 .config_port = mtk_smi_larb_config_port_gen1,
258};
259
260static const struct mtk_smi_larb_gen mtk_smi_larb_mt2712 = {
261 .config_port = mtk_smi_larb_config_port_gen2_general,
262 .larb_direct_to_common_mask = BIT(8) | BIT(9), /* bdpsys */
263};
264
265static const struct mtk_smi_larb_gen mtk_smi_larb_mt6779 = {
266 .config_port = mtk_smi_larb_config_port_gen2_general,
267 .larb_direct_to_common_mask =
268 BIT(4) | BIT(6) | BIT(11) | BIT(12) | BIT(13),
269 /* DUMMY | IPU0 | IPU1 | CCU | MDLA */
270};
271
272static const struct mtk_smi_larb_gen mtk_smi_larb_mt8183 = {
273 .has_gals = true,
274 .config_port = mtk_smi_larb_config_port_gen2_general,
275 .larb_direct_to_common_mask = BIT(2) | BIT(3) | BIT(7),
276 /* IPU0 | IPU1 | CCU */
277};
278
279static const struct mtk_smi_larb_gen mtk_smi_larb_mt8192 = {
280 .config_port = mtk_smi_larb_config_port_gen2_general,
281};
282
283static const struct of_device_id mtk_smi_larb_of_ids[] = {
284 {
285 .compatible = "mediatek,mt8167-smi-larb",
286 .data = &mtk_smi_larb_mt8167
287 },
288 {
289 .compatible = "mediatek,mt8173-smi-larb",
290 .data = &mtk_smi_larb_mt8173
291 },
292 {
293 .compatible = "mediatek,mt2701-smi-larb",
294 .data = &mtk_smi_larb_mt2701
295 },
296 {
297 .compatible = "mediatek,mt2712-smi-larb",
298 .data = &mtk_smi_larb_mt2712
299 },
300 {
301 .compatible = "mediatek,mt6779-smi-larb",
302 .data = &mtk_smi_larb_mt6779
303 },
304 {
305 .compatible = "mediatek,mt8183-smi-larb",
306 .data = &mtk_smi_larb_mt8183
307 },
308 {
309 .compatible = "mediatek,mt8192-smi-larb",
310 .data = &mtk_smi_larb_mt8192
311 },
312 {}
313};
314
315static int mtk_smi_larb_probe(struct platform_device *pdev)
316{
317 struct mtk_smi_larb *larb;
318 struct resource *res;
319 struct device *dev = &pdev->dev;
320 struct device_node *smi_node;
321 struct platform_device *smi_pdev;
322 struct device_link *link;
323
324 larb = devm_kzalloc(dev, sizeof(*larb), GFP_KERNEL);
325 if (!larb)
326 return -ENOMEM;
327
328 larb->larb_gen = of_device_get_match_data(dev);
329 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
330 larb->base = devm_ioremap_resource(dev, res);
331 if (IS_ERR(larb->base))
332 return PTR_ERR(larb->base);
333
334 larb->smi.clk_apb = devm_clk_get(dev, "apb");
335 if (IS_ERR(larb->smi.clk_apb))
336 return PTR_ERR(larb->smi.clk_apb);
337
338 larb->smi.clk_smi = devm_clk_get(dev, "smi");
339 if (IS_ERR(larb->smi.clk_smi))
340 return PTR_ERR(larb->smi.clk_smi);
341
342 if (larb->larb_gen->has_gals) {
343 /* The larbs may still haven't gals even if the SoC support.*/
344 larb->smi.clk_gals0 = devm_clk_get(dev, "gals");
345 if (PTR_ERR(larb->smi.clk_gals0) == -ENOENT)
346 larb->smi.clk_gals0 = NULL;
347 else if (IS_ERR(larb->smi.clk_gals0))
348 return PTR_ERR(larb->smi.clk_gals0);
349 }
350 larb->smi.dev = dev;
351
352 smi_node = of_parse_phandle(dev->of_node, "mediatek,smi", 0);
353 if (!smi_node)
354 return -EINVAL;
355
356 smi_pdev = of_find_device_by_node(smi_node);
357 of_node_put(smi_node);
358 if (smi_pdev) {
359 if (!platform_get_drvdata(smi_pdev))
360 return -EPROBE_DEFER;
361 larb->smi_common_dev = &smi_pdev->dev;
362 link = device_link_add(dev, larb->smi_common_dev,
363 DL_FLAG_PM_RUNTIME | DL_FLAG_STATELESS);
364 if (!link) {
365 dev_err(dev, "Unable to link smi-common dev\n");
366 return -ENODEV;
367 }
368 } else {
369 dev_err(dev, "Failed to get the smi_common device\n");
370 return -EINVAL;
371 }
372
373 pm_runtime_enable(dev);
374 platform_set_drvdata(pdev, larb);
375 return component_add(dev, &mtk_smi_larb_component_ops);
376}
377
378static int mtk_smi_larb_remove(struct platform_device *pdev)
379{
380 struct mtk_smi_larb *larb = platform_get_drvdata(pdev);
381
382 device_link_remove(&pdev->dev, larb->smi_common_dev);
383 pm_runtime_disable(&pdev->dev);
384 component_del(&pdev->dev, &mtk_smi_larb_component_ops);
385 return 0;
386}
387
388static int __maybe_unused mtk_smi_larb_resume(struct device *dev)
389{
390 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
391 const struct mtk_smi_larb_gen *larb_gen = larb->larb_gen;
392 int ret;
393
394 ret = mtk_smi_clk_enable(&larb->smi);
395 if (ret < 0) {
396 dev_err(dev, "Failed to enable clock(%d).\n", ret);
397 return ret;
398 }
399
400 /* Configure the basic setting for this larb */
401 larb_gen->config_port(dev);
402
403 return 0;
404}
405
406static int __maybe_unused mtk_smi_larb_suspend(struct device *dev)
407{
408 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
409
410 mtk_smi_clk_disable(&larb->smi);
411 return 0;
412}
413
414static const struct dev_pm_ops smi_larb_pm_ops = {
415 SET_RUNTIME_PM_OPS(mtk_smi_larb_suspend, mtk_smi_larb_resume, NULL)
416 SET_LATE_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
417 pm_runtime_force_resume)
418};
419
420static struct platform_driver mtk_smi_larb_driver = {
421 .probe = mtk_smi_larb_probe,
422 .remove = mtk_smi_larb_remove,
423 .driver = {
424 .name = "mtk-smi-larb",
425 .of_match_table = mtk_smi_larb_of_ids,
426 .pm = &smi_larb_pm_ops,
427 }
428};
429
430static const struct mtk_smi_common_plat mtk_smi_common_gen1 = {
431 .gen = MTK_SMI_GEN1,
432};
433
434static const struct mtk_smi_common_plat mtk_smi_common_gen2 = {
435 .gen = MTK_SMI_GEN2,
436};
437
438static const struct mtk_smi_common_plat mtk_smi_common_mt6779 = {
439 .gen = MTK_SMI_GEN2,
440 .has_gals = true,
441 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(4) |
442 F_MMU1_LARB(5) | F_MMU1_LARB(6) | F_MMU1_LARB(7),
443};
444
445static const struct mtk_smi_common_plat mtk_smi_common_mt8183 = {
446 .gen = MTK_SMI_GEN2,
447 .has_gals = true,
448 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(5) |
449 F_MMU1_LARB(7),
450};
451
452static const struct mtk_smi_common_plat mtk_smi_common_mt8192 = {
453 .gen = MTK_SMI_GEN2,
454 .has_gals = true,
455 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(5) |
456 F_MMU1_LARB(6),
457};
458
459static const struct of_device_id mtk_smi_common_of_ids[] = {
460 {
461 .compatible = "mediatek,mt8173-smi-common",
462 .data = &mtk_smi_common_gen2,
463 },
464 {
465 .compatible = "mediatek,mt8167-smi-common",
466 .data = &mtk_smi_common_gen2,
467 },
468 {
469 .compatible = "mediatek,mt2701-smi-common",
470 .data = &mtk_smi_common_gen1,
471 },
472 {
473 .compatible = "mediatek,mt2712-smi-common",
474 .data = &mtk_smi_common_gen2,
475 },
476 {
477 .compatible = "mediatek,mt6779-smi-common",
478 .data = &mtk_smi_common_mt6779,
479 },
480 {
481 .compatible = "mediatek,mt8183-smi-common",
482 .data = &mtk_smi_common_mt8183,
483 },
484 {
485 .compatible = "mediatek,mt8192-smi-common",
486 .data = &mtk_smi_common_mt8192,
487 },
488 {}
489};
490
491static int mtk_smi_common_probe(struct platform_device *pdev)
492{
493 struct device *dev = &pdev->dev;
494 struct mtk_smi *common;
495 struct resource *res;
496 int ret;
497
498 common = devm_kzalloc(dev, sizeof(*common), GFP_KERNEL);
499 if (!common)
500 return -ENOMEM;
501 common->dev = dev;
502 common->plat = of_device_get_match_data(dev);
503
504 common->clk_apb = devm_clk_get(dev, "apb");
505 if (IS_ERR(common->clk_apb))
506 return PTR_ERR(common->clk_apb);
507
508 common->clk_smi = devm_clk_get(dev, "smi");
509 if (IS_ERR(common->clk_smi))
510 return PTR_ERR(common->clk_smi);
511
512 if (common->plat->has_gals) {
513 common->clk_gals0 = devm_clk_get(dev, "gals0");
514 if (IS_ERR(common->clk_gals0))
515 return PTR_ERR(common->clk_gals0);
516
517 common->clk_gals1 = devm_clk_get(dev, "gals1");
518 if (IS_ERR(common->clk_gals1))
519 return PTR_ERR(common->clk_gals1);
520 }
521
522 /*
523 * for mtk smi gen 1, we need to get the ao(always on) base to config
524 * m4u port, and we need to enable the aync clock for transform the smi
525 * clock into emi clock domain, but for mtk smi gen2, there's no smi ao
526 * base.
527 */
528 if (common->plat->gen == MTK_SMI_GEN1) {
529 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
530 common->smi_ao_base = devm_ioremap_resource(dev, res);
531 if (IS_ERR(common->smi_ao_base))
532 return PTR_ERR(common->smi_ao_base);
533
534 common->clk_async = devm_clk_get(dev, "async");
535 if (IS_ERR(common->clk_async))
536 return PTR_ERR(common->clk_async);
537
538 ret = clk_prepare_enable(common->clk_async);
539 if (ret)
540 return ret;
541 } else {
542 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
543 common->base = devm_ioremap_resource(dev, res);
544 if (IS_ERR(common->base))
545 return PTR_ERR(common->base);
546 }
547 pm_runtime_enable(dev);
548 platform_set_drvdata(pdev, common);
549 return 0;
550}
551
552static int mtk_smi_common_remove(struct platform_device *pdev)
553{
554 pm_runtime_disable(&pdev->dev);
555 return 0;
556}
557
558static int __maybe_unused mtk_smi_common_resume(struct device *dev)
559{
560 struct mtk_smi *common = dev_get_drvdata(dev);
561 u32 bus_sel = common->plat->bus_sel;
562 int ret;
563
564 ret = mtk_smi_clk_enable(common);
565 if (ret) {
566 dev_err(common->dev, "Failed to enable clock(%d).\n", ret);
567 return ret;
568 }
569
570 if (common->plat->gen == MTK_SMI_GEN2 && bus_sel)
571 writel(bus_sel, common->base + SMI_BUS_SEL);
572 return 0;
573}
574
575static int __maybe_unused mtk_smi_common_suspend(struct device *dev)
576{
577 struct mtk_smi *common = dev_get_drvdata(dev);
578
579 mtk_smi_clk_disable(common);
580 return 0;
581}
582
583static const struct dev_pm_ops smi_common_pm_ops = {
584 SET_RUNTIME_PM_OPS(mtk_smi_common_suspend, mtk_smi_common_resume, NULL)
585 SET_LATE_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
586 pm_runtime_force_resume)
587};
588
589static struct platform_driver mtk_smi_common_driver = {
590 .probe = mtk_smi_common_probe,
591 .remove = mtk_smi_common_remove,
592 .driver = {
593 .name = "mtk-smi-common",
594 .of_match_table = mtk_smi_common_of_ids,
595 .pm = &smi_common_pm_ops,
596 }
597};
598
599static struct platform_driver * const smidrivers[] = {
600 &mtk_smi_common_driver,
601 &mtk_smi_larb_driver,
602};
603
604static int __init mtk_smi_init(void)
605{
606 return platform_register_drivers(smidrivers, ARRAY_SIZE(smidrivers));
607}
608module_init(mtk_smi_init);
609
610static void __exit mtk_smi_exit(void)
611{
612 platform_unregister_drivers(smidrivers, ARRAY_SIZE(smidrivers));
613}
614module_exit(mtk_smi_exit);
615
616MODULE_DESCRIPTION("MediaTek SMI driver");
617MODULE_LICENSE("GPL v2");