blob: e201e5976f34f92cffb950691e2bf925213ff90f [file] [log] [blame]
Thomas Gleixner1802d0b2019-05-27 08:55:21 +02001// SPDX-License-Identifier: GPL-2.0-only
Yong Wucc8bbe12016-02-23 01:20:49 +08002/*
3 * Copyright (c) 2015-2016 MediaTek Inc.
4 * Author: Yong Wu <yong.wu@mediatek.com>
Yong Wucc8bbe12016-02-23 01:20:49 +08005 */
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>
Yong Wu4f608d32017-08-21 19:00:21 +080011#include <linux/module.h>
Yong Wucc8bbe12016-02-23 01:20:49 +080012#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>
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +080017#include <dt-bindings/memory/mt2701-larb-port.h>
Yong Wu66a28912021-01-11 19:18:49 +080018#include <dt-bindings/memory/mtk-memory-port.h>
Yong Wucc8bbe12016-02-23 01:20:49 +080019
Yong Wu534e0ad2021-09-14 19:36:55 +080020/* SMI COMMON */
Yong Wu431e9ca2021-09-14 19:37:01 +080021#define SMI_L1LEN 0x100
22
Yong Wu534e0ad2021-09-14 19:36:55 +080023#define SMI_BUS_SEL 0x220
24#define SMI_BUS_LARB_SHIFT(larbid) ((larbid) << 1)
25/* All are MMU0 defaultly. Only specialize mmu1 here. */
26#define F_MMU1_LARB(larbid) (0x1 << SMI_BUS_LARB_SHIFT(larbid))
Yong Wue6dec922017-08-21 19:00:16 +080027
Yong Wu431e9ca2021-09-14 19:37:01 +080028#define SMI_M4U_TH 0x234
29#define SMI_FIFO_TH1 0x238
30#define SMI_FIFO_TH2 0x23c
31#define SMI_DCM 0x300
32#define SMI_DUMMY 0x444
33
Yong Wu534e0ad2021-09-14 19:36:55 +080034/* SMI LARB */
Yong Wufe6dd2a2021-09-14 19:37:02 +080035#define SMI_LARB_CMD_THRT_CON 0x24
36#define SMI_LARB_THRT_RD_NU_LMT_MSK GENMASK(7, 4)
37#define SMI_LARB_THRT_RD_NU_LMT (5 << 4)
38
39#define SMI_LARB_SW_FLAG 0x40
40#define SMI_LARB_SW_FLAG_1 0x1
41
42#define SMI_LARB_OSTDL_PORT 0x200
43#define SMI_LARB_OSTDL_PORTx(id) (SMI_LARB_OSTDL_PORT + (((id) & 0x1f) << 2))
Fabien Parenta8529f32020-09-06 20:09:38 +020044
Yong Wu534e0ad2021-09-14 19:36:55 +080045/* Below are about mmu enable registers, they are different in SoCs */
46/* gen1: mt2701 */
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +080047#define REG_SMI_SECUR_CON_BASE 0x5c0
48
49/* every register control 8 port, register offset 0x4 */
50#define REG_SMI_SECUR_CON_OFFSET(id) (((id) >> 3) << 2)
51#define REG_SMI_SECUR_CON_ADDR(id) \
52 (REG_SMI_SECUR_CON_BASE + REG_SMI_SECUR_CON_OFFSET(id))
53
54/*
55 * every port have 4 bit to control, bit[port + 3] control virtual or physical,
56 * bit[port + 2 : port + 1] control the domain, bit[port] control the security
57 * or non-security.
58 */
59#define SMI_SECUR_CON_VAL_MSK(id) (~(0xf << (((id) & 0x7) << 2)))
60#define SMI_SECUR_CON_VAL_VIRT(id) BIT((((id) & 0x7) << 2) + 3)
61/* mt2701 domain should be set to 3 */
62#define SMI_SECUR_CON_VAL_DOMAIN(id) (0x3 << ((((id) & 0x7) << 2) + 1))
63
Yong Wu534e0ad2021-09-14 19:36:55 +080064/* gen2: */
65/* mt8167 */
66#define MT8167_SMI_LARB_MMU_EN 0xfc0
67
68/* mt8173 */
69#define MT8173_SMI_LARB_MMU_EN 0xf00
70
71/* general */
72#define SMI_LARB_NONSEC_CON(id) (0x380 + ((id) * 4))
73#define F_MMU_EN BIT(0)
74#define BANK_SEL(id) ({ \
Yong Wu8d2c7492021-01-11 19:19:11 +080075 u32 _id = (id) & 0x3; \
76 (_id << 8 | _id << 10 | _id << 12 | _id << 14); \
77})
Yong Wue6dec922017-08-21 19:00:16 +080078
Yong Wu431e9ca2021-09-14 19:37:01 +080079#define SMI_COMMON_INIT_REGS_NR 6
Yong Wufe6dd2a2021-09-14 19:37:02 +080080#define SMI_LARB_PORT_NR_MAX 32
81
82#define MTK_SMI_FLAG_THRT_UPDATE BIT(0)
83#define MTK_SMI_FLAG_SW_FLAG BIT(1)
84#define MTK_SMI_CAPS(flags, _x) (!!((flags) & (_x)))
Yong Wu431e9ca2021-09-14 19:37:01 +080085
86struct mtk_smi_reg_pair {
87 unsigned int offset;
88 u32 value;
89};
90
Yong Wua5c18982021-09-14 19:36:54 +080091enum mtk_smi_type {
Yong Wu42d42c72019-08-24 11:01:49 +080092 MTK_SMI_GEN1,
Yong Wu47404752021-09-14 19:36:57 +080093 MTK_SMI_GEN2, /* gen2 smi common */
94 MTK_SMI_GEN2_SUB_COMM, /* gen2 smi sub common */
Yong Wu42d42c72019-08-24 11:01:49 +080095};
96
Yong Wu0e149172021-09-14 19:36:53 +080097#define MTK_SMI_CLK_NR_MAX 4
98
99/* larbs: Require apb/smi clocks while gals is optional. */
100static const char * const mtk_smi_larb_clks[] = {"apb", "smi", "gals"};
101#define MTK_SMI_LARB_REQ_CLK_NR 2
102#define MTK_SMI_LARB_OPT_CLK_NR 1
103
104/*
105 * common: Require these four clocks in has_gals case. Otherwise, only apb/smi are required.
Yong Wu3e4f74e2021-09-14 19:36:58 +0800106 * sub common: Require apb/smi/gals0 clocks in has_gals case. Otherwise, only apb/smi are required.
Yong Wu0e149172021-09-14 19:36:53 +0800107 */
108static const char * const mtk_smi_common_clks[] = {"apb", "smi", "gals0", "gals1"};
109#define MTK_SMI_COM_REQ_CLK_NR 2
110#define MTK_SMI_COM_GALS_REQ_CLK_NR MTK_SMI_CLK_NR_MAX
Yong Wu3e4f74e2021-09-14 19:36:58 +0800111#define MTK_SMI_SUB_COM_GALS_REQ_CLK_NR 3
Yong Wu0e149172021-09-14 19:36:53 +0800112
Yong Wu42d42c72019-08-24 11:01:49 +0800113struct mtk_smi_common_plat {
Yong Wua5c18982021-09-14 19:36:54 +0800114 enum mtk_smi_type type;
115 bool has_gals;
116 u32 bus_sel; /* Balance some larbs to enter mmu0 or mmu1 */
Yong Wu431e9ca2021-09-14 19:37:01 +0800117
118 const struct mtk_smi_reg_pair *init;
Yong Wu42d42c72019-08-24 11:01:49 +0800119};
120
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800121struct mtk_smi_larb_gen {
122 int port_in_larb[MTK_LARB_NR_MAX + 1];
Krzysztof Kozlowski3aa5a6c2020-07-24 09:40:28 +0200123 void (*config_port)(struct device *dev);
Yong Wu2e9b0902019-08-24 11:01:48 +0800124 unsigned int larb_direct_to_common_mask;
Yong Wufe6dd2a2021-09-14 19:37:02 +0800125 unsigned int flags_general;
126 const u8 (*ostd)[SMI_LARB_PORT_NR_MAX];
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800127};
Yong Wucc8bbe12016-02-23 01:20:49 +0800128
129struct mtk_smi {
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800130 struct device *dev;
Yong Wu0e149172021-09-14 19:36:53 +0800131 unsigned int clk_num;
132 struct clk_bulk_data clks[MTK_SMI_CLK_NR_MAX];
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800133 struct clk *clk_async; /*only needed by mt2701*/
Yong Wu567e58c2019-08-24 11:02:05 +0800134 union {
135 void __iomem *smi_ao_base; /* only for gen1 */
136 void __iomem *base; /* only for gen2 */
137 };
Yong Wu47404752021-09-14 19:36:57 +0800138 struct device *smi_common_dev; /* for sub common */
Yong Wu42d42c72019-08-24 11:01:49 +0800139 const struct mtk_smi_common_plat *plat;
Yong Wucc8bbe12016-02-23 01:20:49 +0800140};
141
142struct mtk_smi_larb { /* larb: local arbiter */
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800143 struct mtk_smi smi;
144 void __iomem *base;
Yong Wu47404752021-09-14 19:36:57 +0800145 struct device *smi_common_dev; /* common or sub-common dev */
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800146 const struct mtk_smi_larb_gen *larb_gen;
147 int larbid;
148 u32 *mmu;
Yong Wu8d2c7492021-01-11 19:19:11 +0800149 unsigned char *bank;
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800150};
151
Yong Wucc8bbe12016-02-23 01:20:49 +0800152int mtk_smi_larb_get(struct device *larbdev)
153{
Zhang Qilonga2d522f2020-11-23 18:21:18 +0800154 int ret = pm_runtime_resume_and_get(larbdev);
Yong Wucc8bbe12016-02-23 01:20:49 +0800155
Yong Wu4f0a1a12019-08-24 11:02:04 +0800156 return (ret < 0) ? ret : 0;
Yong Wucc8bbe12016-02-23 01:20:49 +0800157}
Philipp Zabelcb1b5df2016-04-27 10:48:00 +0200158EXPORT_SYMBOL_GPL(mtk_smi_larb_get);
Yong Wucc8bbe12016-02-23 01:20:49 +0800159
160void mtk_smi_larb_put(struct device *larbdev)
161{
Yong Wu4f0a1a12019-08-24 11:02:04 +0800162 pm_runtime_put_sync(larbdev);
Yong Wucc8bbe12016-02-23 01:20:49 +0800163}
Philipp Zabelcb1b5df2016-04-27 10:48:00 +0200164EXPORT_SYMBOL_GPL(mtk_smi_larb_put);
Yong Wucc8bbe12016-02-23 01:20:49 +0800165
166static int
167mtk_smi_larb_bind(struct device *dev, struct device *master, void *data)
168{
169 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
Yong Wu1ee9feb2019-08-24 11:02:08 +0800170 struct mtk_smi_larb_iommu *larb_mmu = data;
Yong Wucc8bbe12016-02-23 01:20:49 +0800171 unsigned int i;
172
Yong Wuec2da072019-08-24 11:02:07 +0800173 for (i = 0; i < MTK_LARB_NR_MAX; i++) {
Yong Wu1ee9feb2019-08-24 11:02:08 +0800174 if (dev == larb_mmu[i].dev) {
Yong Wuec2da072019-08-24 11:02:07 +0800175 larb->larbid = i;
Yong Wu1ee9feb2019-08-24 11:02:08 +0800176 larb->mmu = &larb_mmu[i].mmu;
Yong Wu8d2c7492021-01-11 19:19:11 +0800177 larb->bank = larb_mmu[i].bank;
Yong Wucc8bbe12016-02-23 01:20:49 +0800178 return 0;
179 }
180 }
181 return -ENODEV;
182}
183
Yong Wu534e0ad2021-09-14 19:36:55 +0800184static void
185mtk_smi_larb_unbind(struct device *dev, struct device *master, void *data)
Yong Wue6dec922017-08-21 19:00:16 +0800186{
Yong Wu534e0ad2021-09-14 19:36:55 +0800187 /* Do nothing as the iommu is always enabled. */
Yong Wue6dec922017-08-21 19:00:16 +0800188}
189
Yong Wu534e0ad2021-09-14 19:36:55 +0800190static const struct component_ops mtk_smi_larb_component_ops = {
191 .bind = mtk_smi_larb_bind,
192 .unbind = mtk_smi_larb_unbind,
193};
Fabien Parenta8529f32020-09-06 20:09:38 +0200194
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800195static void mtk_smi_larb_config_port_gen1(struct device *dev)
196{
197 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
198 const struct mtk_smi_larb_gen *larb_gen = larb->larb_gen;
199 struct mtk_smi *common = dev_get_drvdata(larb->smi_common_dev);
200 int i, m4u_port_id, larb_port_num;
201 u32 sec_con_val, reg_val;
202
203 m4u_port_id = larb_gen->port_in_larb[larb->larbid];
204 larb_port_num = larb_gen->port_in_larb[larb->larbid + 1]
205 - larb_gen->port_in_larb[larb->larbid];
206
207 for (i = 0; i < larb_port_num; i++, m4u_port_id++) {
208 if (*larb->mmu & BIT(i)) {
209 /* bit[port + 3] controls the virtual or physical */
210 sec_con_val = SMI_SECUR_CON_VAL_VIRT(m4u_port_id);
211 } else {
212 /* do not need to enable m4u for this port */
213 continue;
214 }
215 reg_val = readl(common->smi_ao_base
216 + REG_SMI_SECUR_CON_ADDR(m4u_port_id));
217 reg_val &= SMI_SECUR_CON_VAL_MSK(m4u_port_id);
218 reg_val |= sec_con_val;
219 reg_val |= SMI_SECUR_CON_VAL_DOMAIN(m4u_port_id);
220 writel(reg_val,
221 common->smi_ao_base
222 + REG_SMI_SECUR_CON_ADDR(m4u_port_id));
223 }
224}
225
Yong Wu534e0ad2021-09-14 19:36:55 +0800226static void mtk_smi_larb_config_port_mt8167(struct device *dev)
Yong Wucc8bbe12016-02-23 01:20:49 +0800227{
Yong Wu534e0ad2021-09-14 19:36:55 +0800228 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
229
230 writel(*larb->mmu, larb->base + MT8167_SMI_LARB_MMU_EN);
Yong Wucc8bbe12016-02-23 01:20:49 +0800231}
232
Yong Wu534e0ad2021-09-14 19:36:55 +0800233static void mtk_smi_larb_config_port_mt8173(struct device *dev)
234{
235 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
Yong Wucc8bbe12016-02-23 01:20:49 +0800236
Yong Wu534e0ad2021-09-14 19:36:55 +0800237 writel(*larb->mmu, larb->base + MT8173_SMI_LARB_MMU_EN);
238}
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800239
Yong Wu534e0ad2021-09-14 19:36:55 +0800240static void mtk_smi_larb_config_port_gen2_general(struct device *dev)
241{
242 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
Yong Wufe6dd2a2021-09-14 19:37:02 +0800243 u32 reg, flags_general = larb->larb_gen->flags_general;
Yong Wu383a44a2021-11-24 09:50:42 +0100244 const u8 *larbostd = larb->larb_gen->ostd ? larb->larb_gen->ostd[larb->larbid] : NULL;
Yong Wu534e0ad2021-09-14 19:36:55 +0800245 int i;
246
247 if (BIT(larb->larbid) & larb->larb_gen->larb_direct_to_common_mask)
248 return;
249
Yong Wufe6dd2a2021-09-14 19:37:02 +0800250 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
Yong Wu534e0ad2021-09-14 19:36:55 +0800263 for_each_set_bit(i, (unsigned long *)larb->mmu, 32) {
264 reg = readl_relaxed(larb->base + SMI_LARB_NONSEC_CON(i));
265 reg |= F_MMU_EN;
266 reg |= BANK_SEL(larb->bank[i]);
267 writel(reg, larb->base + SMI_LARB_NONSEC_CON(i));
268 }
269}
Fabien Parenta8529f32020-09-06 20:09:38 +0200270
Yong Wufe6dd2a2021-09-14 19:37:02 +0800271static const u8 mtk_smi_larb_mt8195_ostd[][SMI_LARB_PORT_NR_MAX] = {
272 [0] = {0x0a, 0xc, 0x22, 0x22, 0x01, 0x0a,}, /* larb0 */
273 [1] = {0x0a, 0xc, 0x22, 0x22, 0x01, 0x0a,}, /* larb1 */
274 [2] = {0x12, 0x12, 0x12, 0x12, 0x0a,}, /* ... */
275 [3] = {0x12, 0x12, 0x12, 0x12, 0x28, 0x28, 0x0a,},
276 [4] = {0x06, 0x01, 0x17, 0x06, 0x0a,},
277 [5] = {0x06, 0x01, 0x17, 0x06, 0x06, 0x01, 0x06, 0x0a,},
278 [6] = {0x06, 0x01, 0x06, 0x0a,},
279 [7] = {0x0c, 0x0c, 0x12,},
280 [8] = {0x0c, 0x0c, 0x12,},
281 [9] = {0x0a, 0x08, 0x04, 0x06, 0x01, 0x01, 0x10, 0x18, 0x11, 0x0a,
282 0x08, 0x04, 0x11, 0x06, 0x02, 0x06, 0x01, 0x11, 0x11, 0x06,},
283 [10] = {0x18, 0x08, 0x01, 0x01, 0x20, 0x12, 0x18, 0x06, 0x05, 0x10,
284 0x08, 0x08, 0x10, 0x08, 0x08, 0x18, 0x0c, 0x09, 0x0b, 0x0d,
285 0x0d, 0x06, 0x10, 0x10,},
286 [11] = {0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x01, 0x01, 0x01, 0x01,},
287 [12] = {0x09, 0x09, 0x05, 0x05, 0x0c, 0x18, 0x02, 0x02, 0x04, 0x02,},
288 [13] = {0x02, 0x02, 0x12, 0x12, 0x02, 0x02, 0x02, 0x02, 0x08, 0x01,},
289 [14] = {0x12, 0x12, 0x02, 0x02, 0x02, 0x02, 0x16, 0x01, 0x16, 0x01,
290 0x01, 0x02, 0x02, 0x08, 0x02,},
291 [15] = {},
292 [16] = {0x28, 0x02, 0x02, 0x12, 0x02, 0x12, 0x10, 0x02, 0x02, 0x0a,
293 0x12, 0x02, 0x0a, 0x16, 0x02, 0x04,},
294 [17] = {0x1a, 0x0e, 0x0a, 0x0a, 0x0c, 0x0e, 0x10,},
295 [18] = {0x12, 0x06, 0x12, 0x06,},
296 [19] = {0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x04, 0x01,
297 0x01, 0x01, 0x04, 0x0a, 0x06, 0x01, 0x01, 0x01, 0x0a, 0x06,
298 0x01, 0x01, 0x05, 0x03, 0x03, 0x04, 0x01,},
299 [20] = {0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x04, 0x01,
300 0x01, 0x01, 0x04, 0x0a, 0x06, 0x01, 0x01, 0x01, 0x0a, 0x06,
301 0x01, 0x01, 0x05, 0x03, 0x03, 0x04, 0x01,},
302 [21] = {0x28, 0x19, 0x0c, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04,},
303 [22] = {0x28, 0x19, 0x0c, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04,},
304 [23] = {0x18, 0x01,},
305 [24] = {0x01, 0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x01,
306 0x01, 0x01,},
307 [25] = {0x02, 0x02, 0x02, 0x28, 0x16, 0x02, 0x02, 0x02, 0x12, 0x16,
308 0x02, 0x01,},
309 [26] = {0x02, 0x02, 0x02, 0x28, 0x16, 0x02, 0x02, 0x02, 0x12, 0x16,
310 0x02, 0x01,},
311 [27] = {0x02, 0x02, 0x02, 0x28, 0x16, 0x02, 0x02, 0x02, 0x12, 0x16,
312 0x02, 0x01,},
313 [28] = {0x1a, 0x0e, 0x0a, 0x0a, 0x0c, 0x0e, 0x10,},
314};
315
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800316static const struct mtk_smi_larb_gen mtk_smi_larb_mt2701 = {
317 .port_in_larb = {
318 LARB0_PORT_OFFSET, LARB1_PORT_OFFSET,
319 LARB2_PORT_OFFSET, LARB3_PORT_OFFSET
320 },
321 .config_port = mtk_smi_larb_config_port_gen1,
322};
323
Yong Wue6dec922017-08-21 19:00:16 +0800324static const struct mtk_smi_larb_gen mtk_smi_larb_mt2712 = {
Yong Wu2e9b0902019-08-24 11:01:48 +0800325 .config_port = mtk_smi_larb_config_port_gen2_general,
326 .larb_direct_to_common_mask = BIT(8) | BIT(9), /* bdpsys */
Yong Wue6dec922017-08-21 19:00:16 +0800327};
328
Ming-Fan Chenfc492f32020-01-08 14:41:30 +0800329static const struct mtk_smi_larb_gen mtk_smi_larb_mt6779 = {
330 .config_port = mtk_smi_larb_config_port_gen2_general,
331 .larb_direct_to_common_mask =
332 BIT(4) | BIT(6) | BIT(11) | BIT(12) | BIT(13),
333 /* DUMMY | IPU0 | IPU1 | CCU | MDLA */
334};
335
Yong Wu534e0ad2021-09-14 19:36:55 +0800336static const struct mtk_smi_larb_gen mtk_smi_larb_mt8167 = {
337 /* mt8167 do not need the port in larb */
338 .config_port = mtk_smi_larb_config_port_mt8167,
339};
340
341static const struct mtk_smi_larb_gen mtk_smi_larb_mt8173 = {
342 /* mt8173 do not need the port in larb */
343 .config_port = mtk_smi_larb_config_port_mt8173,
344};
345
Yong Wu907ba6a2019-08-24 11:02:02 +0800346static const struct mtk_smi_larb_gen mtk_smi_larb_mt8183 = {
Yong Wu907ba6a2019-08-24 11:02:02 +0800347 .config_port = mtk_smi_larb_config_port_gen2_general,
348 .larb_direct_to_common_mask = BIT(2) | BIT(3) | BIT(7),
349 /* IPU0 | IPU1 | CCU */
350};
351
Yong Wu02c02dd2020-11-03 13:42:00 +0800352static const struct mtk_smi_larb_gen mtk_smi_larb_mt8192 = {
353 .config_port = mtk_smi_larb_config_port_gen2_general,
354};
355
Yong Wucc4f9dc2021-09-14 19:37:00 +0800356static const struct mtk_smi_larb_gen mtk_smi_larb_mt8195 = {
357 .config_port = mtk_smi_larb_config_port_gen2_general,
Yong Wufe6dd2a2021-09-14 19:37:02 +0800358 .flags_general = MTK_SMI_FLAG_THRT_UPDATE | MTK_SMI_FLAG_SW_FLAG,
359 .ostd = mtk_smi_larb_mt8195_ostd,
Yong Wucc4f9dc2021-09-14 19:37:00 +0800360};
361
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800362static const struct of_device_id mtk_smi_larb_of_ids[] = {
Yong Wu534e0ad2021-09-14 19:36:55 +0800363 {.compatible = "mediatek,mt2701-smi-larb", .data = &mtk_smi_larb_mt2701},
364 {.compatible = "mediatek,mt2712-smi-larb", .data = &mtk_smi_larb_mt2712},
365 {.compatible = "mediatek,mt6779-smi-larb", .data = &mtk_smi_larb_mt6779},
366 {.compatible = "mediatek,mt8167-smi-larb", .data = &mtk_smi_larb_mt8167},
367 {.compatible = "mediatek,mt8173-smi-larb", .data = &mtk_smi_larb_mt8173},
368 {.compatible = "mediatek,mt8183-smi-larb", .data = &mtk_smi_larb_mt8183},
369 {.compatible = "mediatek,mt8192-smi-larb", .data = &mtk_smi_larb_mt8192},
Yong Wucc4f9dc2021-09-14 19:37:00 +0800370 {.compatible = "mediatek,mt8195-smi-larb", .data = &mtk_smi_larb_mt8195},
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800371 {}
372};
373
Yong Wu47404752021-09-14 19:36:57 +0800374static int mtk_smi_device_link_common(struct device *dev, struct device **com_dev)
375{
376 struct platform_device *smi_com_pdev;
377 struct device_node *smi_com_node;
378 struct device *smi_com_dev;
379 struct device_link *link;
380
381 smi_com_node = of_parse_phandle(dev->of_node, "mediatek,smi", 0);
382 if (!smi_com_node)
383 return -EINVAL;
384
385 smi_com_pdev = of_find_device_by_node(smi_com_node);
386 of_node_put(smi_com_node);
387 if (smi_com_pdev) {
388 /* smi common is the supplier, Make sure it is ready before */
389 if (!platform_get_drvdata(smi_com_pdev))
390 return -EPROBE_DEFER;
391 smi_com_dev = &smi_com_pdev->dev;
392 link = device_link_add(dev, smi_com_dev,
393 DL_FLAG_PM_RUNTIME | DL_FLAG_STATELESS);
394 if (!link) {
395 dev_err(dev, "Unable to link smi-common dev\n");
396 return -ENODEV;
397 }
398 *com_dev = smi_com_dev;
399 } else {
400 dev_err(dev, "Failed to get the smi_common device\n");
401 return -EINVAL;
402 }
403 return 0;
404}
405
Yong Wu0e149172021-09-14 19:36:53 +0800406static int mtk_smi_dts_clk_init(struct device *dev, struct mtk_smi *smi,
407 const char * const clks[],
408 unsigned int clk_nr_required,
409 unsigned int clk_nr_optional)
410{
411 int i, ret;
412
413 for (i = 0; i < clk_nr_required; i++)
414 smi->clks[i].id = clks[i];
415 ret = devm_clk_bulk_get(dev, clk_nr_required, smi->clks);
416 if (ret)
417 return ret;
418
419 for (i = clk_nr_required; i < clk_nr_required + clk_nr_optional; i++)
420 smi->clks[i].id = clks[i];
421 ret = devm_clk_bulk_get_optional(dev, clk_nr_optional,
422 smi->clks + clk_nr_required);
423 smi->clk_num = clk_nr_required + clk_nr_optional;
424 return ret;
425}
426
Yong Wucc8bbe12016-02-23 01:20:49 +0800427static int mtk_smi_larb_probe(struct platform_device *pdev)
428{
429 struct mtk_smi_larb *larb;
Yong Wucc8bbe12016-02-23 01:20:49 +0800430 struct device *dev = &pdev->dev;
Yong Wu0e149172021-09-14 19:36:53 +0800431 int ret;
Yong Wucc8bbe12016-02-23 01:20:49 +0800432
Yong Wucc8bbe12016-02-23 01:20:49 +0800433 larb = devm_kzalloc(dev, sizeof(*larb), GFP_KERNEL);
434 if (!larb)
435 return -ENOMEM;
436
Honghui Zhang75487862017-08-04 09:32:25 +0800437 larb->larb_gen = of_device_get_match_data(dev);
Yong Wu912fea82021-09-14 19:36:59 +0800438 larb->base = devm_platform_ioremap_resource(pdev, 0);
Yong Wucc8bbe12016-02-23 01:20:49 +0800439 if (IS_ERR(larb->base))
440 return PTR_ERR(larb->base);
441
Yong Wu0e149172021-09-14 19:36:53 +0800442 ret = mtk_smi_dts_clk_init(dev, &larb->smi, mtk_smi_larb_clks,
443 MTK_SMI_LARB_REQ_CLK_NR, MTK_SMI_LARB_OPT_CLK_NR);
444 if (ret)
445 return ret;
Yong Wucc8bbe12016-02-23 01:20:49 +0800446
Yong Wucc8bbe12016-02-23 01:20:49 +0800447 larb->smi.dev = dev;
Yong Wucc8bbe12016-02-23 01:20:49 +0800448
Yong Wu47404752021-09-14 19:36:57 +0800449 ret = mtk_smi_device_link_common(dev, &larb->smi_common_dev);
450 if (ret < 0)
451 return ret;
Yong Wucc8bbe12016-02-23 01:20:49 +0800452
453 pm_runtime_enable(dev);
454 platform_set_drvdata(pdev, larb);
Yong Wu30b869e2021-09-14 19:36:56 +0800455 ret = component_add(dev, &mtk_smi_larb_component_ops);
456 if (ret)
457 goto err_pm_disable;
458 return 0;
459
460err_pm_disable:
461 pm_runtime_disable(dev);
462 device_link_remove(dev, larb->smi_common_dev);
463 return ret;
Yong Wucc8bbe12016-02-23 01:20:49 +0800464}
465
466static int mtk_smi_larb_remove(struct platform_device *pdev)
467{
Yong Wu6ce2c052021-04-10 17:11:16 +0800468 struct mtk_smi_larb *larb = platform_get_drvdata(pdev);
469
470 device_link_remove(&pdev->dev, larb->smi_common_dev);
Yong Wucc8bbe12016-02-23 01:20:49 +0800471 pm_runtime_disable(&pdev->dev);
472 component_del(&pdev->dev, &mtk_smi_larb_component_ops);
473 return 0;
474}
475
Yong Wu4f0a1a12019-08-24 11:02:04 +0800476static int __maybe_unused mtk_smi_larb_resume(struct device *dev)
477{
478 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
479 const struct mtk_smi_larb_gen *larb_gen = larb->larb_gen;
480 int ret;
481
Yong Wu0e149172021-09-14 19:36:53 +0800482 ret = clk_bulk_prepare_enable(larb->smi.clk_num, larb->smi.clks);
483 if (ret < 0)
Yong Wu4f0a1a12019-08-24 11:02:04 +0800484 return ret;
Yong Wu4f0a1a12019-08-24 11:02:04 +0800485
486 /* Configure the basic setting for this larb */
487 larb_gen->config_port(dev);
488
489 return 0;
490}
491
492static int __maybe_unused mtk_smi_larb_suspend(struct device *dev)
493{
494 struct mtk_smi_larb *larb = dev_get_drvdata(dev);
495
Yong Wu0e149172021-09-14 19:36:53 +0800496 clk_bulk_disable_unprepare(larb->smi.clk_num, larb->smi.clks);
Yong Wu4f0a1a12019-08-24 11:02:04 +0800497 return 0;
498}
499
500static const struct dev_pm_ops smi_larb_pm_ops = {
501 SET_RUNTIME_PM_OPS(mtk_smi_larb_suspend, mtk_smi_larb_resume, NULL)
Yong Wufb030822019-10-09 19:59:33 +0800502 SET_LATE_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
503 pm_runtime_force_resume)
Yong Wu4f0a1a12019-08-24 11:02:04 +0800504};
505
Yong Wucc8bbe12016-02-23 01:20:49 +0800506static struct platform_driver mtk_smi_larb_driver = {
507 .probe = mtk_smi_larb_probe,
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800508 .remove = mtk_smi_larb_remove,
Yong Wucc8bbe12016-02-23 01:20:49 +0800509 .driver = {
510 .name = "mtk-smi-larb",
511 .of_match_table = mtk_smi_larb_of_ids,
Yong Wu4f0a1a12019-08-24 11:02:04 +0800512 .pm = &smi_larb_pm_ops,
Yong Wucc8bbe12016-02-23 01:20:49 +0800513 }
514};
515
Yong Wu431e9ca2021-09-14 19:37:01 +0800516static const struct mtk_smi_reg_pair mtk_smi_common_mt8195_init[SMI_COMMON_INIT_REGS_NR] = {
517 {SMI_L1LEN, 0xb},
518 {SMI_M4U_TH, 0xe100e10},
519 {SMI_FIFO_TH1, 0x506090a},
520 {SMI_FIFO_TH2, 0x506090a},
521 {SMI_DCM, 0x4f1},
522 {SMI_DUMMY, 0x1},
523};
524
Yong Wu42d42c72019-08-24 11:01:49 +0800525static const struct mtk_smi_common_plat mtk_smi_common_gen1 = {
Yong Wua5c18982021-09-14 19:36:54 +0800526 .type = MTK_SMI_GEN1,
Yong Wu42d42c72019-08-24 11:01:49 +0800527};
528
529static const struct mtk_smi_common_plat mtk_smi_common_gen2 = {
Yong Wua5c18982021-09-14 19:36:54 +0800530 .type = MTK_SMI_GEN2,
Yong Wu42d42c72019-08-24 11:01:49 +0800531};
532
Ming-Fan Chenfc492f32020-01-08 14:41:30 +0800533static const struct mtk_smi_common_plat mtk_smi_common_mt6779 = {
Yong Wua5c18982021-09-14 19:36:54 +0800534 .type = MTK_SMI_GEN2,
535 .has_gals = true,
536 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(4) |
537 F_MMU1_LARB(5) | F_MMU1_LARB(6) | F_MMU1_LARB(7),
Ming-Fan Chenfc492f32020-01-08 14:41:30 +0800538};
539
Yong Wu907ba6a2019-08-24 11:02:02 +0800540static const struct mtk_smi_common_plat mtk_smi_common_mt8183 = {
Yong Wua5c18982021-09-14 19:36:54 +0800541 .type = MTK_SMI_GEN2,
Yong Wu907ba6a2019-08-24 11:02:02 +0800542 .has_gals = true,
Yong Wu567e58c2019-08-24 11:02:05 +0800543 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(5) |
544 F_MMU1_LARB(7),
Yong Wu907ba6a2019-08-24 11:02:02 +0800545};
546
Yong Wu02c02dd2020-11-03 13:42:00 +0800547static const struct mtk_smi_common_plat mtk_smi_common_mt8192 = {
Yong Wua5c18982021-09-14 19:36:54 +0800548 .type = MTK_SMI_GEN2,
Yong Wu02c02dd2020-11-03 13:42:00 +0800549 .has_gals = true,
550 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(5) |
551 F_MMU1_LARB(6),
552};
553
Yong Wucc4f9dc2021-09-14 19:37:00 +0800554static const struct mtk_smi_common_plat mtk_smi_common_mt8195_vdo = {
555 .type = MTK_SMI_GEN2,
556 .has_gals = true,
557 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(3) | F_MMU1_LARB(5) |
558 F_MMU1_LARB(7),
Yong Wu431e9ca2021-09-14 19:37:01 +0800559 .init = mtk_smi_common_mt8195_init,
Yong Wucc4f9dc2021-09-14 19:37:00 +0800560};
561
562static const struct mtk_smi_common_plat mtk_smi_common_mt8195_vpp = {
563 .type = MTK_SMI_GEN2,
564 .has_gals = true,
565 .bus_sel = F_MMU1_LARB(1) | F_MMU1_LARB(2) | F_MMU1_LARB(7),
Yong Wu431e9ca2021-09-14 19:37:01 +0800566 .init = mtk_smi_common_mt8195_init,
Yong Wucc4f9dc2021-09-14 19:37:00 +0800567};
568
569static const struct mtk_smi_common_plat mtk_smi_sub_common_mt8195 = {
570 .type = MTK_SMI_GEN2_SUB_COMM,
571 .has_gals = true,
572};
573
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800574static const struct of_device_id mtk_smi_common_of_ids[] = {
Yong Wu534e0ad2021-09-14 19:36:55 +0800575 {.compatible = "mediatek,mt2701-smi-common", .data = &mtk_smi_common_gen1},
576 {.compatible = "mediatek,mt2712-smi-common", .data = &mtk_smi_common_gen2},
577 {.compatible = "mediatek,mt6779-smi-common", .data = &mtk_smi_common_mt6779},
578 {.compatible = "mediatek,mt8167-smi-common", .data = &mtk_smi_common_gen2},
579 {.compatible = "mediatek,mt8173-smi-common", .data = &mtk_smi_common_gen2},
580 {.compatible = "mediatek,mt8183-smi-common", .data = &mtk_smi_common_mt8183},
581 {.compatible = "mediatek,mt8192-smi-common", .data = &mtk_smi_common_mt8192},
Yong Wucc4f9dc2021-09-14 19:37:00 +0800582 {.compatible = "mediatek,mt8195-smi-common-vdo", .data = &mtk_smi_common_mt8195_vdo},
583 {.compatible = "mediatek,mt8195-smi-common-vpp", .data = &mtk_smi_common_mt8195_vpp},
584 {.compatible = "mediatek,mt8195-smi-sub-common", .data = &mtk_smi_sub_common_mt8195},
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800585 {}
586};
587
Yong Wucc8bbe12016-02-23 01:20:49 +0800588static int mtk_smi_common_probe(struct platform_device *pdev)
589{
590 struct device *dev = &pdev->dev;
591 struct mtk_smi *common;
Yong Wu0e149172021-09-14 19:36:53 +0800592 int ret, clk_required = MTK_SMI_COM_REQ_CLK_NR;
Yong Wucc8bbe12016-02-23 01:20:49 +0800593
Yong Wucc8bbe12016-02-23 01:20:49 +0800594 common = devm_kzalloc(dev, sizeof(*common), GFP_KERNEL);
595 if (!common)
596 return -ENOMEM;
597 common->dev = dev;
Yong Wu42d42c72019-08-24 11:01:49 +0800598 common->plat = of_device_get_match_data(dev);
Yong Wucc8bbe12016-02-23 01:20:49 +0800599
Yong Wu3e4f74e2021-09-14 19:36:58 +0800600 if (common->plat->has_gals) {
601 if (common->plat->type == MTK_SMI_GEN2)
602 clk_required = MTK_SMI_COM_GALS_REQ_CLK_NR;
603 else if (common->plat->type == MTK_SMI_GEN2_SUB_COMM)
604 clk_required = MTK_SMI_SUB_COM_GALS_REQ_CLK_NR;
605 }
Yong Wu0e149172021-09-14 19:36:53 +0800606 ret = mtk_smi_dts_clk_init(dev, common, mtk_smi_common_clks, clk_required, 0);
607 if (ret)
608 return ret;
Yong Wu64fea742019-08-24 11:02:01 +0800609
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800610 /*
611 * for mtk smi gen 1, we need to get the ao(always on) base to config
612 * m4u port, and we need to enable the aync clock for transform the smi
613 * clock into emi clock domain, but for mtk smi gen2, there's no smi ao
614 * base.
615 */
Yong Wua5c18982021-09-14 19:36:54 +0800616 if (common->plat->type == MTK_SMI_GEN1) {
Yong Wu912fea82021-09-14 19:36:59 +0800617 common->smi_ao_base = devm_platform_ioremap_resource(pdev, 0);
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800618 if (IS_ERR(common->smi_ao_base))
619 return PTR_ERR(common->smi_ao_base);
620
621 common->clk_async = devm_clk_get(dev, "async");
622 if (IS_ERR(common->clk_async))
623 return PTR_ERR(common->clk_async);
624
Arvind Yadav46cc8152017-08-10 10:47:32 +0530625 ret = clk_prepare_enable(common->clk_async);
626 if (ret)
627 return ret;
Yong Wu567e58c2019-08-24 11:02:05 +0800628 } else {
Yong Wu912fea82021-09-14 19:36:59 +0800629 common->base = devm_platform_ioremap_resource(pdev, 0);
Yong Wu567e58c2019-08-24 11:02:05 +0800630 if (IS_ERR(common->base))
631 return PTR_ERR(common->base);
Honghui Zhang3c8f4ad2016-06-08 17:50:59 +0800632 }
Yong Wu47404752021-09-14 19:36:57 +0800633
634 /* link its smi-common if this is smi-sub-common */
635 if (common->plat->type == MTK_SMI_GEN2_SUB_COMM) {
636 ret = mtk_smi_device_link_common(dev, &common->smi_common_dev);
637 if (ret < 0)
638 return ret;
639 }
640
Yong Wucc8bbe12016-02-23 01:20:49 +0800641 pm_runtime_enable(dev);
642 platform_set_drvdata(pdev, common);
643 return 0;
644}
645
646static int mtk_smi_common_remove(struct platform_device *pdev)
647{
Yong Wu47404752021-09-14 19:36:57 +0800648 struct mtk_smi *common = dev_get_drvdata(&pdev->dev);
649
650 if (common->plat->type == MTK_SMI_GEN2_SUB_COMM)
651 device_link_remove(&pdev->dev, common->smi_common_dev);
Yong Wucc8bbe12016-02-23 01:20:49 +0800652 pm_runtime_disable(&pdev->dev);
653 return 0;
654}
655
Yong Wu4f0a1a12019-08-24 11:02:04 +0800656static int __maybe_unused mtk_smi_common_resume(struct device *dev)
657{
658 struct mtk_smi *common = dev_get_drvdata(dev);
Yong Wu431e9ca2021-09-14 19:37:01 +0800659 const struct mtk_smi_reg_pair *init = common->plat->init;
660 u32 bus_sel = common->plat->bus_sel; /* default is 0 */
661 int ret, i;
Yong Wu4f0a1a12019-08-24 11:02:04 +0800662
Yong Wu0e149172021-09-14 19:36:53 +0800663 ret = clk_bulk_prepare_enable(common->clk_num, common->clks);
664 if (ret)
Yong Wu4f0a1a12019-08-24 11:02:04 +0800665 return ret;
Yong Wu567e58c2019-08-24 11:02:05 +0800666
Yong Wu431e9ca2021-09-14 19:37:01 +0800667 if (common->plat->type != MTK_SMI_GEN2)
668 return 0;
669
670 for (i = 0; i < SMI_COMMON_INIT_REGS_NR && init && init[i].offset; i++)
671 writel_relaxed(init[i].value, common->base + init[i].offset);
672
673 writel(bus_sel, common->base + SMI_BUS_SEL);
Yong Wu4f0a1a12019-08-24 11:02:04 +0800674 return 0;
675}
676
677static int __maybe_unused mtk_smi_common_suspend(struct device *dev)
678{
679 struct mtk_smi *common = dev_get_drvdata(dev);
680
Yong Wu0e149172021-09-14 19:36:53 +0800681 clk_bulk_disable_unprepare(common->clk_num, common->clks);
Yong Wu4f0a1a12019-08-24 11:02:04 +0800682 return 0;
683}
684
685static const struct dev_pm_ops smi_common_pm_ops = {
686 SET_RUNTIME_PM_OPS(mtk_smi_common_suspend, mtk_smi_common_resume, NULL)
Yong Wufb030822019-10-09 19:59:33 +0800687 SET_LATE_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
688 pm_runtime_force_resume)
Yong Wu4f0a1a12019-08-24 11:02:04 +0800689};
690
Yong Wucc8bbe12016-02-23 01:20:49 +0800691static struct platform_driver mtk_smi_common_driver = {
692 .probe = mtk_smi_common_probe,
693 .remove = mtk_smi_common_remove,
694 .driver = {
695 .name = "mtk-smi-common",
696 .of_match_table = mtk_smi_common_of_ids,
Yong Wu4f0a1a12019-08-24 11:02:04 +0800697 .pm = &smi_common_pm_ops,
Yong Wucc8bbe12016-02-23 01:20:49 +0800698 }
699};
700
Yong Wu18212032021-01-21 14:24:27 +0800701static struct platform_driver * const smidrivers[] = {
702 &mtk_smi_common_driver,
703 &mtk_smi_larb_driver,
704};
705
Yong Wucc8bbe12016-02-23 01:20:49 +0800706static int __init mtk_smi_init(void)
707{
Yong Wu18212032021-01-21 14:24:27 +0800708 return platform_register_drivers(smidrivers, ARRAY_SIZE(smidrivers));
Yong Wucc8bbe12016-02-23 01:20:49 +0800709}
Yong Wu4f608d32017-08-21 19:00:21 +0800710module_init(mtk_smi_init);
Yong Wu50fc8d92021-01-26 14:00:55 +0800711
712static void __exit mtk_smi_exit(void)
713{
714 platform_unregister_drivers(smidrivers, ARRAY_SIZE(smidrivers));
715}
716module_exit(mtk_smi_exit);
717
718MODULE_DESCRIPTION("MediaTek SMI driver");
719MODULE_LICENSE("GPL v2");