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
97 struct mtk_smi_reg_pair {
98 unsigned int offset;
99 u32 value;
100 };
101
102 enum 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. */
109 static 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 */
117 static 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
123 struct 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
131 struct 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
139 struct 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
152 struct 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
162 static int
mtk_smi_larb_bind(struct device * dev,struct device * master,void * data)163 mtk_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
180 static void
mtk_smi_larb_unbind(struct device * dev,struct device * master,void * data)181 mtk_smi_larb_unbind(struct device *dev, struct device *master, void *data)
182 {
183 /* Do nothing as the iommu is always enabled. */
184 }
185
186 static const struct component_ops mtk_smi_larb_component_ops = {
187 .bind = mtk_smi_larb_bind,
188 .unbind = mtk_smi_larb_unbind,
189 };
190
mtk_smi_larb_config_port_gen1(struct device * dev)191 static 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
mtk_smi_larb_config_port_mt8167(struct device * dev)223 static 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
mtk_smi_larb_config_port_mt8173(struct device * dev)231 static 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
mtk_smi_larb_config_port_gen2_general(struct device * dev)239 static 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
286 static const u8 mtk_smi_larb_mt6893_ostd[][SMI_LARB_PORT_NR_MAX] = {
287 [0] = {0x2, 0x6, 0x2, 0x2, 0x2, 0x28, 0x18, 0x18, 0x1, 0x1, 0x1, 0x8,
288 0x8, 0x1, 0x3f},
289 [1] = {0x2, 0x6, 0x2, 0x2, 0x2, 0x28, 0x18, 0x18, 0x1, 0x1, 0x1, 0x8,
290 0x8, 0x1, 0x3f},
291 [2] = {0x5, 0x5, 0x5, 0x5, 0x1, 0x3f},
292 [3] = {0x5, 0x5, 0x5, 0x5, 0x1, 0x3f},
293 [4] = {0x28, 0x19, 0xb, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x4, 0x1},
294 [5] = {0x1, 0x1, 0x4, 0x1, 0x1, 0x1, 0x1, 0x16},
295 [6] = {},
296 [7] = {0x1, 0x4, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x4, 0x4, 0x1,
297 0x4, 0x1, 0xa, 0x6, 0x1, 0xa, 0x6, 0x1, 0x1, 0x1, 0x1, 0x5,
298 0x3, 0x3, 0x4},
299 [8] = {0x1, 0x4, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x4, 0x4, 0x1,
300 0x4, 0x1, 0xa, 0x6, 0x1, 0xa, 0x6, 0x1, 0x1, 0x1, 0x1, 0x5,
301 0x3, 0x3, 0x4},
302 [9] = {0x9, 0x7, 0xf, 0x8, 0x1, 0x8, 0x9, 0x3, 0x3, 0x6, 0x7, 0x4,
303 0x9, 0x3, 0x4, 0xe, 0x1, 0x7, 0x8, 0x7, 0x7, 0x1, 0x6, 0x2,
304 0xf, 0x8, 0x1, 0x1, 0x1},
305 [10] = {},
306 [11] = {0x9, 0x7, 0xf, 0x8, 0x1, 0x8, 0x9, 0x3, 0x3, 0x6, 0x7, 0x4,
307 0x9, 0x3, 0x4, 0xe, 0x1, 0x7, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1,
308 0x1, 0x1, 0x1, 0x1, 0x1},
309 [12] = {},
310 [13] = {0x2, 0xc, 0xc, 0xe, 0x6, 0x6, 0x6, 0x6, 0x6, 0x12, 0x6, 0x1},
311 [14] = {0x2, 0xc, 0xc, 0x28, 0x12, 0x6},
312 [15] = {0x28, 0x1, 0x2, 0x28, 0x1},
313 [16] = {0x28, 0x14, 0x2, 0xc, 0x18, 0x2, 0x14, 0x14, 0x4, 0x4, 0x4, 0x2,
314 0x4, 0x2, 0x8, 0x4, 0x4},
315 [17] = {0x28, 0x14, 0x2, 0xc, 0x18, 0x2, 0x14, 0x14, 0x4, 0x4, 0x4, 0x2,
316 0x4, 0x2, 0x8, 0x4, 0x4},
317 [18] = {0x28, 0x14, 0x2, 0xc, 0x18, 0x2, 0x14, 0x14, 0x4, 0x4, 0x4, 0x2,
318 0x4, 0x2, 0x8, 0x4, 0x4},
319 [19] = {0x2, 0x2, 0x4, 0x2},
320 [20] = {0x9, 0x9, 0x5, 0x5, 0x1, 0x1},
321 };
322
323 static const u8 mtk_smi_larb_mt8186_ostd[][SMI_LARB_PORT_NR_MAX] = {
324 [0] = {0x2, 0x1, 0x8, 0x1,},
325 [1] = {0x1, 0x3, 0x1, 0x1,},
326 [2] = {0x6, 0x1, 0x4, 0x1,},
327 [3] = {},
328 [4] = {0xf, 0x1, 0x5, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1,
329 0x1, 0x1, 0x1,},
330 [5] = {},
331 [6] = {},
332 [7] = {0x1, 0x3, 0x1, 0x1, 0x1, 0x3, 0x2, 0xd, 0x7, 0x5, 0x3,
333 0x1, 0x5,},
334 [8] = {0x1, 0x2, 0x2,},
335 [9] = {0x9, 0x7, 0xf, 0x8, 0x1, 0x8, 0x9, 0x3, 0x3, 0xb, 0x7, 0x4,
336 0x9, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1,
337 0x1, 0x1, 0x1, 0x1, 0x1,},
338 [10] = {},
339 [11] = {0x9, 0x7, 0xf, 0x8, 0x1, 0x8, 0x9, 0x3, 0x3, 0xb, 0x7, 0x4,
340 0x9, 0x1, 0x1, 0x1, 0x1, 0x1, 0x8, 0x7, 0x7, 0x1, 0x6, 0x2,
341 0xf, 0x8, 0x1, 0x1, 0x1,},
342 [12] = {},
343 [13] = {0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x6, 0x6, 0x6, 0x1, 0x1, 0x1,},
344 [14] = {0x1, 0x1, 0x1, 0x1, 0x1, 0x1,},
345 [15] = {},
346 [16] = {0x28, 0x14, 0x2, 0xc, 0x18, 0x1, 0x14, 0x1, 0x4, 0x4, 0x4,
347 0x2, 0x4, 0x2, 0x8, 0x4, 0x4,},
348 [17] = {0x28, 0x14, 0x2, 0xc, 0x18, 0x1, 0x14, 0x1, 0x4, 0x4, 0x4,
349 0x2, 0x4, 0x2, 0x8, 0x4, 0x4,},
350 [18] = {},
351 [19] = {0x1, 0x1, 0x1, 0x1,},
352 [20] = {0x2, 0x2, 0x2, 0x2, 0x1, 0x1,},
353 };
354
355 static const u8 mtk_smi_larb_mt8188_ostd[][SMI_LARB_PORT_NR_MAX] = {
356 [0] = {0x02, 0x18, 0x22, 0x22, 0x01, 0x02, 0x0a,},
357 [1] = {0x12, 0x02, 0x14, 0x14, 0x01, 0x18, 0x0a,},
358 [2] = {0x12, 0x12, 0x12, 0x12, 0x0a,},
359 [3] = {0x12, 0x12, 0x12, 0x12, 0x28, 0x28, 0x0a,},
360 [4] = {0x06, 0x01, 0x17, 0x06, 0x0a, 0x07, 0x07,},
361 [5] = {0x02, 0x01, 0x04, 0x02, 0x06, 0x01, 0x06, 0x0a,},
362 [6] = {0x06, 0x01, 0x06, 0x0a,},
363 [7] = {0x0c, 0x0c, 0x12,},
364 [8] = {0x0c, 0x01, 0x0a, 0x05, 0x02, 0x03, 0x01, 0x01, 0x14, 0x14,
365 0x0a, 0x14, 0x1e, 0x01, 0x0c, 0x0a, 0x05, 0x02, 0x02, 0x05,
366 0x03, 0x01, 0x1e, 0x01, 0x05,},
367 [9] = {0x1e, 0x01, 0x0a, 0x0a, 0x01, 0x01, 0x03, 0x1e, 0x1e, 0x10,
368 0x07, 0x01, 0x0a, 0x06, 0x03, 0x03, 0x0e, 0x01, 0x04, 0x28,},
369 [10] = {0x03, 0x20, 0x01, 0x20, 0x01, 0x01, 0x14, 0x0a, 0x0a, 0x0c,
370 0x0a, 0x05, 0x02, 0x03, 0x02, 0x14, 0x0a, 0x0a, 0x14, 0x14,
371 0x14, 0x01, 0x01, 0x14, 0x1e, 0x01, 0x05, 0x03, 0x02, 0x28,},
372 [11] = {0x03, 0x20, 0x01, 0x20, 0x01, 0x01, 0x14, 0x0a, 0x0a, 0x0c,
373 0x0a, 0x05, 0x02, 0x03, 0x02, 0x14, 0x0a, 0x0a, 0x14, 0x14,
374 0x14, 0x01, 0x01, 0x14, 0x1e, 0x01, 0x05, 0x03, 0x02, 0x28,},
375 [12] = {0x03, 0x20, 0x01, 0x20, 0x01, 0x01, 0x14, 0x0a, 0x0a, 0x0c,
376 0x0a, 0x05, 0x02, 0x03, 0x02, 0x14, 0x0a, 0x0a, 0x14, 0x14,
377 0x14, 0x01, 0x01, 0x14, 0x1e, 0x01, 0x05, 0x03, 0x02, 0x28,},
378 [13] = {0x07, 0x02, 0x04, 0x02, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,
379 0x07, 0x02, 0x04, 0x02, 0x05, 0x05,},
380 [14] = {0x02, 0x02, 0x0c, 0x0c, 0x0c, 0x0c, 0x01, 0x01, 0x02, 0x02,
381 0x02, 0x02, 0x0c, 0x0c, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02,
382 0x02, 0x02, 0x01, 0x01,},
383 [15] = {0x0c, 0x0c, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x0c, 0x0c,
384 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x01, 0x02,
385 0x0c, 0x01, 0x01,},
386 [16] = {0x28, 0x28, 0x03, 0x01, 0x01, 0x03, 0x14, 0x14, 0x0a, 0x0d,
387 0x03, 0x05, 0x0e, 0x01, 0x01, 0x05, 0x06, 0x0d, 0x01,},
388 [17] = {0x28, 0x02, 0x02, 0x12, 0x02, 0x12, 0x10, 0x02, 0x02, 0x0a,
389 0x12, 0x02, 0x02, 0x0a, 0x16, 0x02, 0x04,},
390 [18] = {0x28, 0x02, 0x02, 0x12, 0x02, 0x12, 0x10, 0x02, 0x02, 0x0a,
391 0x12, 0x02, 0x02, 0x0a, 0x16, 0x02, 0x04,},
392 [19] = {0x1a, 0x0e, 0x0a, 0x0a, 0x0c, 0x0e, 0x10,},
393 [20] = {0x1a, 0x0e, 0x0a, 0x0a, 0x0c, 0x0e, 0x10,},
394 [21] = {0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x04, 0x01,
395 0x01, 0x01, 0x04, 0x0a, 0x06, 0x01, 0x01, 0x01, 0x0a, 0x06,
396 0x01, 0x01, 0x05, 0x03, 0x03, 0x04, 0x01,},
397 [22] = {0x28, 0x19, 0x0c, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04,
398 0x01,},
399 [23] = {0x01, 0x01, 0x04, 0x01, 0x01, 0x01, 0x18, 0x01, 0x01,},
400 [24] = {0x12, 0x06, 0x12, 0x06,},
401 [25] = {0x01},
402 };
403
404 static const u8 mtk_smi_larb_mt8192_ostd[][SMI_LARB_PORT_NR_MAX] = {
405 [0] = {0x2, 0x2, 0x28, 0xa, 0xc, 0x28,},
406 [1] = {0x2, 0x2, 0x18, 0x18, 0x18, 0xa, 0xc, 0x28,},
407 [2] = {0x5, 0x5, 0x5, 0x5, 0x1,},
408 [3] = {},
409 [4] = {0x28, 0x19, 0xb, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x4, 0x1,},
410 [5] = {0x1, 0x1, 0x4, 0x1, 0x1, 0x1, 0x1, 0x16,},
411 [6] = {},
412 [7] = {0x1, 0x3, 0x2, 0x1, 0x1, 0x5, 0x2, 0x12, 0x13, 0x4, 0x4, 0x1,
413 0x4, 0x2, 0x1,},
414 [8] = {},
415 [9] = {0xa, 0x7, 0xf, 0x8, 0x1, 0x8, 0x9, 0x3, 0x3, 0x6, 0x7, 0x4,
416 0xa, 0x3, 0x4, 0xe, 0x1, 0x7, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1,
417 0x1, 0x1, 0x1, 0x1, 0x1,},
418 [10] = {},
419 [11] = {0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1,
420 0x1, 0x1, 0x1, 0xe, 0x1, 0x7, 0x8, 0x7, 0x7, 0x1, 0x6, 0x2,
421 0xf, 0x8, 0x1, 0x1, 0x1,},
422 [12] = {},
423 [13] = {0x2, 0xc, 0xc, 0xe, 0x6, 0x6, 0x6, 0x6, 0x6, 0x12, 0x6, 0x28,
424 0x2, 0xc, 0xc, 0x28, 0x12, 0x6,},
425 [14] = {},
426 [15] = {0x28, 0x14, 0x2, 0xc, 0x18, 0x4, 0x28, 0x14, 0x4, 0x4, 0x4, 0x2,
427 0x4, 0x2, 0x8, 0x4, 0x4,},
428 [16] = {0x28, 0x14, 0x2, 0xc, 0x18, 0x4, 0x28, 0x14, 0x4, 0x4, 0x4, 0x2,
429 0x4, 0x2, 0x8, 0x4, 0x4,},
430 [17] = {0x28, 0x14, 0x2, 0xc, 0x18, 0x4, 0x28, 0x14, 0x4, 0x4, 0x4, 0x2,
431 0x4, 0x2, 0x8, 0x4, 0x4,},
432 [18] = {0x2, 0x2, 0x4, 0x2,},
433 [19] = {0x9, 0x9, 0x5, 0x5, 0x1, 0x1,},
434 };
435
436 static const u8 mtk_smi_larb_mt8195_ostd[][SMI_LARB_PORT_NR_MAX] = {
437 [0] = {0x0a, 0xc, 0x22, 0x22, 0x01, 0x0a,}, /* larb0 */
438 [1] = {0x0a, 0xc, 0x22, 0x22, 0x01, 0x0a,}, /* larb1 */
439 [2] = {0x12, 0x12, 0x12, 0x12, 0x0a,}, /* ... */
440 [3] = {0x12, 0x12, 0x12, 0x12, 0x28, 0x28, 0x0a,},
441 [4] = {0x06, 0x01, 0x17, 0x06, 0x0a,},
442 [5] = {0x06, 0x01, 0x17, 0x06, 0x06, 0x01, 0x06, 0x0a,},
443 [6] = {0x06, 0x01, 0x06, 0x0a,},
444 [7] = {0x0c, 0x0c, 0x12,},
445 [8] = {0x0c, 0x0c, 0x12,},
446 [9] = {0x0a, 0x08, 0x04, 0x06, 0x01, 0x01, 0x10, 0x18, 0x11, 0x0a,
447 0x08, 0x04, 0x11, 0x06, 0x02, 0x06, 0x01, 0x11, 0x11, 0x06,},
448 [10] = {0x18, 0x08, 0x01, 0x01, 0x20, 0x12, 0x18, 0x06, 0x05, 0x10,
449 0x08, 0x08, 0x10, 0x08, 0x08, 0x18, 0x0c, 0x09, 0x0b, 0x0d,
450 0x0d, 0x06, 0x10, 0x10,},
451 [11] = {0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x01, 0x01, 0x01, 0x01,},
452 [12] = {0x09, 0x09, 0x05, 0x05, 0x0c, 0x18, 0x02, 0x02, 0x04, 0x02,},
453 [13] = {0x02, 0x02, 0x12, 0x12, 0x02, 0x02, 0x02, 0x02, 0x08, 0x01,},
454 [14] = {0x12, 0x12, 0x02, 0x02, 0x02, 0x02, 0x16, 0x01, 0x16, 0x01,
455 0x01, 0x02, 0x02, 0x08, 0x02,},
456 [15] = {},
457 [16] = {0x28, 0x02, 0x02, 0x12, 0x02, 0x12, 0x10, 0x02, 0x02, 0x0a,
458 0x12, 0x02, 0x0a, 0x16, 0x02, 0x04,},
459 [17] = {0x1a, 0x0e, 0x0a, 0x0a, 0x0c, 0x0e, 0x10,},
460 [18] = {0x12, 0x06, 0x12, 0x06,},
461 [19] = {0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x04, 0x01,
462 0x01, 0x01, 0x04, 0x0a, 0x06, 0x01, 0x01, 0x01, 0x0a, 0x06,
463 0x01, 0x01, 0x05, 0x03, 0x03, 0x04, 0x01,},
464 [20] = {0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x04, 0x01,
465 0x01, 0x01, 0x04, 0x0a, 0x06, 0x01, 0x01, 0x01, 0x0a, 0x06,
466 0x01, 0x01, 0x05, 0x03, 0x03, 0x04, 0x01,},
467 [21] = {0x28, 0x19, 0x0c, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04,},
468 [22] = {0x28, 0x19, 0x0c, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04,},
469 [23] = {0x18, 0x01,},
470 [24] = {0x01, 0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x01,
471 0x01, 0x01,},
472 [25] = {0x02, 0x02, 0x02, 0x28, 0x16, 0x02, 0x02, 0x02, 0x12, 0x16,
473 0x02, 0x01,},
474 [26] = {0x02, 0x02, 0x02, 0x28, 0x16, 0x02, 0x02, 0x02, 0x12, 0x16,
475 0x02, 0x01,},
476 [27] = {0x02, 0x02, 0x02, 0x28, 0x16, 0x02, 0x02, 0x02, 0x12, 0x16,
477 0x02, 0x01,},
478 [28] = {0x1a, 0x0e, 0x0a, 0x0a, 0x0c, 0x0e, 0x10,},
479 };
480
481 static const struct mtk_smi_larb_gen mtk_smi_larb_mt2701 = {
482 .port_in_larb = {
483 LARB0_PORT_OFFSET, LARB1_PORT_OFFSET,
484 LARB2_PORT_OFFSET, LARB3_PORT_OFFSET
485 },
486 .config_port = mtk_smi_larb_config_port_gen1,
487 };
488
489 static const struct mtk_smi_larb_gen mtk_smi_larb_mt2712 = {
490 .config_port = mtk_smi_larb_config_port_gen2_general,
491 .larb_direct_to_common_mask = BIT(8) | BIT(9), /* bdpsys */
492 };
493
494 static const struct mtk_smi_larb_gen mtk_smi_larb_mt6779 = {
495 .config_port = mtk_smi_larb_config_port_gen2_general,
496 .larb_direct_to_common_mask =
497 BIT(4) | BIT(6) | BIT(11) | BIT(12) | BIT(13),
498 /* DUMMY | IPU0 | IPU1 | CCU | MDLA */
499 };
500
501 static const struct mtk_smi_larb_gen mtk_smi_larb_mt6893 = {
502 .config_port = mtk_smi_larb_config_port_gen2_general,
503 .flags_general = MTK_SMI_FLAG_THRT_UPDATE | MTK_SMI_FLAG_SW_FLAG,
504 .ostd = mtk_smi_larb_mt6893_ostd,
505 };
506
507 static const struct mtk_smi_larb_gen mtk_smi_larb_mt8167 = {
508 /* mt8167 do not need the port in larb */
509 .config_port = mtk_smi_larb_config_port_mt8167,
510 };
511
512 static const struct mtk_smi_larb_gen mtk_smi_larb_mt8173 = {
513 /* mt8173 do not need the port in larb */
514 .config_port = mtk_smi_larb_config_port_mt8173,
515 };
516
517 static const struct mtk_smi_larb_gen mtk_smi_larb_mt8183 = {
518 .config_port = mtk_smi_larb_config_port_gen2_general,
519 .larb_direct_to_common_mask = BIT(2) | BIT(3) | BIT(7),
520 /* IPU0 | IPU1 | CCU */
521 };
522
523 static const struct mtk_smi_larb_gen mtk_smi_larb_mt8186 = {
524 .config_port = mtk_smi_larb_config_port_gen2_general,
525 .flags_general = MTK_SMI_FLAG_SLEEP_CTL,
526 .ostd = mtk_smi_larb_mt8186_ostd,
527 };
528
529 static const struct mtk_smi_larb_gen mtk_smi_larb_mt8188 = {
530 .config_port = mtk_smi_larb_config_port_gen2_general,
531 .flags_general = MTK_SMI_FLAG_THRT_UPDATE | MTK_SMI_FLAG_SW_FLAG |
532 MTK_SMI_FLAG_SLEEP_CTL | MTK_SMI_FLAG_CFG_PORT_SEC_CTL,
533 .ostd = mtk_smi_larb_mt8188_ostd,
534 };
535
536 static const struct mtk_smi_larb_gen mtk_smi_larb_mt8192 = {
537 .config_port = mtk_smi_larb_config_port_gen2_general,
538 .ostd = mtk_smi_larb_mt8192_ostd,
539 };
540
541 static const struct mtk_smi_larb_gen mtk_smi_larb_mt8195 = {
542 .config_port = mtk_smi_larb_config_port_gen2_general,
543 .flags_general = MTK_SMI_FLAG_THRT_UPDATE | MTK_SMI_FLAG_SW_FLAG |
544 MTK_SMI_FLAG_SLEEP_CTL,
545 .ostd = mtk_smi_larb_mt8195_ostd,
546 };
547
548 static const struct of_device_id mtk_smi_larb_of_ids[] = {
549 {.compatible = "mediatek,mt2701-smi-larb", .data = &mtk_smi_larb_mt2701},
550 {.compatible = "mediatek,mt2712-smi-larb", .data = &mtk_smi_larb_mt2712},
551 {.compatible = "mediatek,mt6779-smi-larb", .data = &mtk_smi_larb_mt6779},
552 {.compatible = "mediatek,mt6795-smi-larb", .data = &mtk_smi_larb_mt8173},
553 {.compatible = "mediatek,mt6893-smi-larb", .data = &mtk_smi_larb_mt6893},
554 {.compatible = "mediatek,mt8167-smi-larb", .data = &mtk_smi_larb_mt8167},
555 {.compatible = "mediatek,mt8173-smi-larb", .data = &mtk_smi_larb_mt8173},
556 {.compatible = "mediatek,mt8183-smi-larb", .data = &mtk_smi_larb_mt8183},
557 {.compatible = "mediatek,mt8186-smi-larb", .data = &mtk_smi_larb_mt8186},
558 {.compatible = "mediatek,mt8188-smi-larb", .data = &mtk_smi_larb_mt8188},
559 {.compatible = "mediatek,mt8192-smi-larb", .data = &mtk_smi_larb_mt8192},
560 {.compatible = "mediatek,mt8195-smi-larb", .data = &mtk_smi_larb_mt8195},
561 {}
562 };
563 MODULE_DEVICE_TABLE(of, mtk_smi_larb_of_ids);
564
mtk_smi_larb_sleep_ctrl_enable(struct mtk_smi_larb * larb)565 static int mtk_smi_larb_sleep_ctrl_enable(struct mtk_smi_larb *larb)
566 {
567 int ret;
568 u32 tmp;
569
570 writel_relaxed(SLP_PROT_EN, larb->base + SMI_LARB_SLP_CON);
571 ret = readl_poll_timeout_atomic(larb->base + SMI_LARB_SLP_CON,
572 tmp, !!(tmp & SLP_PROT_RDY), 10, 1000);
573 if (ret) {
574 /* TODO: Reset this larb if it fails here. */
575 dev_err(larb->smi.dev, "sleep ctrl is not ready(0x%x).\n", tmp);
576 }
577 return ret;
578 }
579
mtk_smi_larb_sleep_ctrl_disable(struct mtk_smi_larb * larb)580 static void mtk_smi_larb_sleep_ctrl_disable(struct mtk_smi_larb *larb)
581 {
582 writel_relaxed(0, larb->base + SMI_LARB_SLP_CON);
583 }
584
mtk_smi_device_link_common(struct device * dev,struct device ** com_dev)585 static int mtk_smi_device_link_common(struct device *dev, struct device **com_dev)
586 {
587 struct platform_device *smi_com_pdev;
588 struct device_node *smi_com_node;
589 struct device *smi_com_dev;
590 struct device_link *link;
591
592 smi_com_node = of_parse_phandle(dev->of_node, "mediatek,smi", 0);
593 if (!smi_com_node)
594 return -EINVAL;
595
596 smi_com_pdev = of_find_device_by_node(smi_com_node);
597 of_node_put(smi_com_node);
598 if (!smi_com_pdev) {
599 dev_err(dev, "Failed to get the smi_common device\n");
600 return -EINVAL;
601 }
602
603 /* smi common is the supplier, Make sure it is ready before */
604 if (!platform_get_drvdata(smi_com_pdev)) {
605 put_device(&smi_com_pdev->dev);
606 return -EPROBE_DEFER;
607 }
608
609 smi_com_dev = &smi_com_pdev->dev;
610 link = device_link_add(dev, smi_com_dev,
611 DL_FLAG_PM_RUNTIME | DL_FLAG_STATELESS);
612 if (!link) {
613 dev_err(dev, "Unable to link smi-common dev\n");
614 put_device(&smi_com_pdev->dev);
615 return -ENODEV;
616 }
617
618 *com_dev = smi_com_dev;
619
620 return 0;
621 }
622
mtk_smi_dts_clk_init(struct device * dev,struct mtk_smi * smi,const char * const clks[],unsigned int clk_nr_required,unsigned int clk_nr_optional)623 static int mtk_smi_dts_clk_init(struct device *dev, struct mtk_smi *smi,
624 const char * const clks[],
625 unsigned int clk_nr_required,
626 unsigned int clk_nr_optional)
627 {
628 int i, ret;
629
630 for (i = 0; i < clk_nr_required; i++)
631 smi->clks[i].id = clks[i];
632 ret = devm_clk_bulk_get(dev, clk_nr_required, smi->clks);
633 if (ret)
634 return ret;
635
636 for (i = clk_nr_required; i < clk_nr_required + clk_nr_optional; i++)
637 smi->clks[i].id = clks[i];
638 ret = devm_clk_bulk_get_optional(dev, clk_nr_optional,
639 smi->clks + clk_nr_required);
640 smi->clk_num = clk_nr_required + clk_nr_optional;
641 return ret;
642 }
643
mtk_smi_larb_probe(struct platform_device * pdev)644 static int mtk_smi_larb_probe(struct platform_device *pdev)
645 {
646 struct mtk_smi_larb *larb;
647 struct device *dev = &pdev->dev;
648 int ret;
649
650 larb = devm_kzalloc(dev, sizeof(*larb), GFP_KERNEL);
651 if (!larb)
652 return -ENOMEM;
653
654 larb->larb_gen = of_device_get_match_data(dev);
655 larb->base = devm_platform_ioremap_resource(pdev, 0);
656 if (IS_ERR(larb->base))
657 return PTR_ERR(larb->base);
658
659 ret = mtk_smi_dts_clk_init(dev, &larb->smi, mtk_smi_larb_clks,
660 MTK_SMI_LARB_REQ_CLK_NR, MTK_SMI_LARB_OPT_CLK_NR);
661 if (ret)
662 return ret;
663
664 larb->smi.dev = dev;
665
666 ret = mtk_smi_device_link_common(dev, &larb->smi_common_dev);
667 if (ret < 0)
668 return ret;
669
670 pm_runtime_enable(dev);
671 platform_set_drvdata(pdev, larb);
672 ret = component_add(dev, &mtk_smi_larb_component_ops);
673 if (ret)
674 goto err_pm_disable;
675 return 0;
676
677 err_pm_disable:
678 pm_runtime_disable(dev);
679 device_link_remove(dev, larb->smi_common_dev);
680 put_device(larb->smi_common_dev);
681 return ret;
682 }
683
mtk_smi_larb_remove(struct platform_device * pdev)684 static void mtk_smi_larb_remove(struct platform_device *pdev)
685 {
686 struct mtk_smi_larb *larb = platform_get_drvdata(pdev);
687
688 device_link_remove(&pdev->dev, larb->smi_common_dev);
689 pm_runtime_disable(&pdev->dev);
690 component_del(&pdev->dev, &mtk_smi_larb_component_ops);
691 put_device(larb->smi_common_dev);
692 }
693
mtk_smi_larb_resume(struct device * dev)694 static int __maybe_unused mtk_smi_larb_resume(struct device *dev)
695 {
696 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
697 const struct mtk_smi_larb_gen *larb_gen = larb->larb_gen;
698 int ret;
699
700 ret = clk_bulk_prepare_enable(larb->smi.clk_num, larb->smi.clks);
701 if (ret)
702 return ret;
703
704 if (MTK_SMI_CAPS(larb->larb_gen->flags_general, MTK_SMI_FLAG_SLEEP_CTL))
705 mtk_smi_larb_sleep_ctrl_disable(larb);
706
707 /* Configure the basic setting for this larb */
708 return larb_gen->config_port(dev);
709 }
710
mtk_smi_larb_suspend(struct device * dev)711 static int __maybe_unused mtk_smi_larb_suspend(struct device *dev)
712 {
713 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
714 int ret;
715
716 if (MTK_SMI_CAPS(larb->larb_gen->flags_general, MTK_SMI_FLAG_SLEEP_CTL)) {
717 ret = mtk_smi_larb_sleep_ctrl_enable(larb);
718 if (ret)
719 return ret;
720 }
721
722 clk_bulk_disable_unprepare(larb->smi.clk_num, larb->smi.clks);
723 return 0;
724 }
725
726 static const struct dev_pm_ops smi_larb_pm_ops = {
727 SET_RUNTIME_PM_OPS(mtk_smi_larb_suspend, mtk_smi_larb_resume, NULL)
728 SET_LATE_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
729 pm_runtime_force_resume)
730 };
731
732 static struct platform_driver mtk_smi_larb_driver = {
733 .probe = mtk_smi_larb_probe,
734 .remove = mtk_smi_larb_remove,
735 .driver = {
736 .name = "mtk-smi-larb",
737 .of_match_table = mtk_smi_larb_of_ids,
738 .pm = &smi_larb_pm_ops,
739 }
740 };
741
742 static const struct mtk_smi_reg_pair mtk_smi_common_mt6795_init[SMI_COMMON_INIT_REGS_NR] = {
743 {SMI_L1_ARB, 0x1b},
744 {SMI_M4U_TH, 0xce810c85},
745 {SMI_FIFO_TH1, 0x43214c8},
746 {SMI_READ_FIFO_TH, 0x191f},
747 };
748
749 static const struct mtk_smi_reg_pair mtk_smi_common_mt8195_init[SMI_COMMON_INIT_REGS_NR] = {
750 {SMI_L1LEN, 0xb},
751 {SMI_M4U_TH, 0xe100e10},
752 {SMI_FIFO_TH1, 0x506090a},
753 {SMI_FIFO_TH2, 0x506090a},
754 {SMI_DCM, 0x4f1},
755 {SMI_DUMMY, 0x1},
756 };
757
758 static const struct mtk_smi_common_plat mtk_smi_common_gen1 = {
759 .type = MTK_SMI_GEN1,
760 };
761
762 static const struct mtk_smi_common_plat mtk_smi_common_gen2 = {
763 .type = MTK_SMI_GEN2,
764 };
765
766 static const struct mtk_smi_common_plat mtk_smi_common_mt6779 = {
767 .type = MTK_SMI_GEN2,
768 .has_gals = true,
769 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(4) |
770 F_MMU1_LARB(5) | F_MMU1_LARB(6) | F_MMU1_LARB(7),
771 };
772
773 static const struct mtk_smi_common_plat mtk_smi_common_mt6795 = {
774 .type = MTK_SMI_GEN2,
775 .bus_sel = F_MMU1_LARB(0),
776 .init = mtk_smi_common_mt6795_init,
777 };
778
779 static const struct mtk_smi_common_plat mtk_smi_common_mt6893 = {
780 .type = MTK_SMI_GEN2,
781 .has_gals = true,
782 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(4) |
783 F_MMU1_LARB(5) | F_MMU1_LARB(7),
784 };
785
786 static const struct mtk_smi_common_plat mtk_smi_common_mt8183 = {
787 .type = MTK_SMI_GEN2,
788 .has_gals = true,
789 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(5) |
790 F_MMU1_LARB(7),
791 };
792
793 static const struct mtk_smi_common_plat mtk_smi_common_mt8186 = {
794 .type = MTK_SMI_GEN2,
795 .has_gals = true,
796 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(4) | F_MMU1_LARB(7),
797 };
798
799 static const struct mtk_smi_common_plat mtk_smi_common_mt8188_vdo = {
800 .type = MTK_SMI_GEN2,
801 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(5) | F_MMU1_LARB(7),
802 .init = mtk_smi_common_mt8195_init,
803 };
804
805 static const struct mtk_smi_common_plat mtk_smi_common_mt8188_vpp = {
806 .type = MTK_SMI_GEN2,
807 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(7),
808 .init = mtk_smi_common_mt8195_init,
809 };
810
811 static const struct mtk_smi_common_plat mtk_smi_common_mt8192 = {
812 .type = MTK_SMI_GEN2,
813 .has_gals = true,
814 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(5) |
815 F_MMU1_LARB(6),
816 };
817
818 static const struct mtk_smi_common_plat mtk_smi_common_mt8195_vdo = {
819 .type = MTK_SMI_GEN2,
820 .has_gals = true,
821 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(3) | F_MMU1_LARB(5) |
822 F_MMU1_LARB(7),
823 .init = mtk_smi_common_mt8195_init,
824 };
825
826 static const struct mtk_smi_common_plat mtk_smi_common_mt8195_vpp = {
827 .type = MTK_SMI_GEN2,
828 .has_gals = true,
829 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(7),
830 .init = mtk_smi_common_mt8195_init,
831 };
832
833 static const struct mtk_smi_common_plat mtk_smi_sub_common_mt8195 = {
834 .type = MTK_SMI_GEN2_SUB_COMM,
835 .has_gals = true,
836 };
837
838 static const struct mtk_smi_common_plat mtk_smi_common_mt8365 = {
839 .type = MTK_SMI_GEN2,
840 .bus_sel = F_MMU1_LARB(2) | F_MMU1_LARB(4),
841 };
842
843 static const struct of_device_id mtk_smi_common_of_ids[] = {
844 {.compatible = "mediatek,mt2701-smi-common", .data = &mtk_smi_common_gen1},
845 {.compatible = "mediatek,mt2712-smi-common", .data = &mtk_smi_common_gen2},
846 {.compatible = "mediatek,mt6779-smi-common", .data = &mtk_smi_common_mt6779},
847 {.compatible = "mediatek,mt6795-smi-common", .data = &mtk_smi_common_mt6795},
848 {.compatible = "mediatek,mt6893-smi-common", .data = &mtk_smi_common_mt6893},
849 {.compatible = "mediatek,mt8167-smi-common", .data = &mtk_smi_common_gen2},
850 {.compatible = "mediatek,mt8173-smi-common", .data = &mtk_smi_common_gen2},
851 {.compatible = "mediatek,mt8183-smi-common", .data = &mtk_smi_common_mt8183},
852 {.compatible = "mediatek,mt8186-smi-common", .data = &mtk_smi_common_mt8186},
853 {.compatible = "mediatek,mt8188-smi-common-vdo", .data = &mtk_smi_common_mt8188_vdo},
854 {.compatible = "mediatek,mt8188-smi-common-vpp", .data = &mtk_smi_common_mt8188_vpp},
855 {.compatible = "mediatek,mt8192-smi-common", .data = &mtk_smi_common_mt8192},
856 {.compatible = "mediatek,mt8195-smi-common-vdo", .data = &mtk_smi_common_mt8195_vdo},
857 {.compatible = "mediatek,mt8195-smi-common-vpp", .data = &mtk_smi_common_mt8195_vpp},
858 {.compatible = "mediatek,mt8195-smi-sub-common", .data = &mtk_smi_sub_common_mt8195},
859 {.compatible = "mediatek,mt8365-smi-common", .data = &mtk_smi_common_mt8365},
860 {}
861 };
862 MODULE_DEVICE_TABLE(of, mtk_smi_common_of_ids);
863
mtk_smi_common_probe(struct platform_device * pdev)864 static int mtk_smi_common_probe(struct platform_device *pdev)
865 {
866 struct device *dev = &pdev->dev;
867 struct mtk_smi *common;
868 int ret, clk_required = MTK_SMI_COM_REQ_CLK_NR;
869
870 common = devm_kzalloc(dev, sizeof(*common), GFP_KERNEL);
871 if (!common)
872 return -ENOMEM;
873 common->dev = dev;
874 common->plat = of_device_get_match_data(dev);
875
876 if (common->plat->has_gals) {
877 if (common->plat->type == MTK_SMI_GEN2)
878 clk_required = MTK_SMI_COM_GALS_REQ_CLK_NR;
879 else if (common->plat->type == MTK_SMI_GEN2_SUB_COMM)
880 clk_required = MTK_SMI_SUB_COM_GALS_REQ_CLK_NR;
881 }
882 ret = mtk_smi_dts_clk_init(dev, common, mtk_smi_common_clks, clk_required, 0);
883 if (ret)
884 return ret;
885
886 /*
887 * for mtk smi gen 1, we need to get the ao(always on) base to config
888 * m4u port, and we need to enable the aync clock for transform the smi
889 * clock into emi clock domain, but for mtk smi gen2, there's no smi ao
890 * base.
891 */
892 if (common->plat->type == MTK_SMI_GEN1) {
893 common->smi_ao_base = devm_platform_ioremap_resource(pdev, 0);
894 if (IS_ERR(common->smi_ao_base))
895 return PTR_ERR(common->smi_ao_base);
896
897 common->clk_async = devm_clk_get_enabled(dev, "async");
898 if (IS_ERR(common->clk_async))
899 return PTR_ERR(common->clk_async);
900 } else {
901 common->base = devm_platform_ioremap_resource(pdev, 0);
902 if (IS_ERR(common->base))
903 return PTR_ERR(common->base);
904 }
905
906 /* link its smi-common if this is smi-sub-common */
907 if (common->plat->type == MTK_SMI_GEN2_SUB_COMM) {
908 ret = mtk_smi_device_link_common(dev, &common->smi_common_dev);
909 if (ret < 0)
910 return ret;
911 }
912
913 pm_runtime_enable(dev);
914 platform_set_drvdata(pdev, common);
915 return 0;
916 }
917
mtk_smi_common_remove(struct platform_device * pdev)918 static void mtk_smi_common_remove(struct platform_device *pdev)
919 {
920 struct mtk_smi *common = dev_get_drvdata(&pdev->dev);
921
922 if (common->plat->type == MTK_SMI_GEN2_SUB_COMM)
923 device_link_remove(&pdev->dev, common->smi_common_dev);
924 pm_runtime_disable(&pdev->dev);
925 put_device(common->smi_common_dev);
926 }
927
mtk_smi_common_resume(struct device * dev)928 static int __maybe_unused mtk_smi_common_resume(struct device *dev)
929 {
930 struct mtk_smi *common = dev_get_drvdata(dev);
931 const struct mtk_smi_reg_pair *init = common->plat->init;
932 u32 bus_sel = common->plat->bus_sel; /* default is 0 */
933 int ret, i;
934
935 ret = clk_bulk_prepare_enable(common->clk_num, common->clks);
936 if (ret)
937 return ret;
938
939 if (common->plat->type != MTK_SMI_GEN2)
940 return 0;
941
942 for (i = 0; i < SMI_COMMON_INIT_REGS_NR && init && init[i].offset; i++)
943 writel_relaxed(init[i].value, common->base + init[i].offset);
944
945 writel(bus_sel, common->base + SMI_BUS_SEL);
946 return 0;
947 }
948
mtk_smi_common_suspend(struct device * dev)949 static int __maybe_unused mtk_smi_common_suspend(struct device *dev)
950 {
951 struct mtk_smi *common = dev_get_drvdata(dev);
952
953 clk_bulk_disable_unprepare(common->clk_num, common->clks);
954 return 0;
955 }
956
957 static const struct dev_pm_ops smi_common_pm_ops = {
958 SET_RUNTIME_PM_OPS(mtk_smi_common_suspend, mtk_smi_common_resume, NULL)
959 SET_LATE_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
960 pm_runtime_force_resume)
961 };
962
963 static struct platform_driver mtk_smi_common_driver = {
964 .probe = mtk_smi_common_probe,
965 .remove = mtk_smi_common_remove,
966 .driver = {
967 .name = "mtk-smi-common",
968 .of_match_table = mtk_smi_common_of_ids,
969 .pm = &smi_common_pm_ops,
970 }
971 };
972
973 static struct platform_driver * const smidrivers[] = {
974 &mtk_smi_common_driver,
975 &mtk_smi_larb_driver,
976 };
977
mtk_smi_init(void)978 static int __init mtk_smi_init(void)
979 {
980 return platform_register_drivers(smidrivers, ARRAY_SIZE(smidrivers));
981 }
982 module_init(mtk_smi_init);
983
mtk_smi_exit(void)984 static void __exit mtk_smi_exit(void)
985 {
986 platform_unregister_drivers(smidrivers, ARRAY_SIZE(smidrivers));
987 }
988 module_exit(mtk_smi_exit);
989
990 MODULE_DESCRIPTION("MediaTek SMI driver");
991 MODULE_LICENSE("GPL v2");
992