2 * Tegra30 Memory Controller
4 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
20 #include <linux/err.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/ratelimit.h>
24 #include <linux/platform_device.h>
25 #include <linux/interrupt.h>
28 #define DRV_NAME "tegra30-mc"
30 #define MC_INTSTATUS 0x0
31 #define MC_INTMASK 0x4
33 #define MC_INT_ERR_SHIFT 6
34 #define MC_INT_ERR_MASK (0x1f << MC_INT_ERR_SHIFT)
35 #define MC_INT_DECERR_EMEM BIT(MC_INT_ERR_SHIFT)
36 #define MC_INT_SECURITY_VIOLATION BIT(MC_INT_ERR_SHIFT + 2)
37 #define MC_INT_ARBITRATION_EMEM BIT(MC_INT_ERR_SHIFT + 3)
38 #define MC_INT_INVALID_SMMU_PAGE BIT(MC_INT_ERR_SHIFT + 4)
40 #define MC_ERR_STATUS 0x8
41 #define MC_ERR_ADR 0xc
43 #define MC_ERR_TYPE_SHIFT 28
44 #define MC_ERR_TYPE_MASK (7 << MC_ERR_TYPE_SHIFT)
45 #define MC_ERR_TYPE_DECERR_EMEM 2
46 #define MC_ERR_TYPE_SECURITY_TRUSTZONE 3
47 #define MC_ERR_TYPE_SECURITY_CARVEOUT 4
48 #define MC_ERR_TYPE_INVALID_SMMU_PAGE 6
50 #define MC_ERR_INVALID_SMMU_PAGE_SHIFT 25
51 #define MC_ERR_INVALID_SMMU_PAGE_MASK (7 << MC_ERR_INVALID_SMMU_PAGE_SHIFT)
52 #define MC_ERR_RW_SHIFT 16
53 #define MC_ERR_RW BIT(MC_ERR_RW_SHIFT)
54 #define MC_ERR_SECURITY BIT(MC_ERR_RW_SHIFT + 1)
56 #define SECURITY_VIOLATION_TYPE BIT(30) /* 0=TRUSTZONE, 1=CARVEOUT */
58 #define MC_EMEM_ARB_CFG 0x90
59 #define MC_EMEM_ARB_OUTSTANDING_REQ 0x94
60 #define MC_EMEM_ARB_TIMING_RCD 0x98
61 #define MC_EMEM_ARB_TIMING_RP 0x9c
62 #define MC_EMEM_ARB_TIMING_RC 0xa0
63 #define MC_EMEM_ARB_TIMING_RAS 0xa4
64 #define MC_EMEM_ARB_TIMING_FAW 0xa8
65 #define MC_EMEM_ARB_TIMING_RRD 0xac
66 #define MC_EMEM_ARB_TIMING_RAP2PRE 0xb0
67 #define MC_EMEM_ARB_TIMING_WAP2PRE 0xb4
68 #define MC_EMEM_ARB_TIMING_R2R 0xb8
69 #define MC_EMEM_ARB_TIMING_W2W 0xbc
70 #define MC_EMEM_ARB_TIMING_R2W 0xc0
71 #define MC_EMEM_ARB_TIMING_W2R 0xc4
73 #define MC_EMEM_ARB_DA_TURNS 0xd0
74 #define MC_EMEM_ARB_DA_COVERS 0xd4
75 #define MC_EMEM_ARB_MISC0 0xd8
76 #define MC_EMEM_ARB_MISC1 0xdc
78 #define MC_EMEM_ARB_RING3_THROTTLE 0xe4
79 #define MC_EMEM_ARB_OVERRIDE 0xe8
81 #define MC_TIMING_CONTROL 0xfc
83 #define MC_CLIENT_ID_MASK 0x7f
85 #define NUM_MC_REG_BANKS 4
88 void __iomem
*regs
[NUM_MC_REG_BANKS
];
93 static inline u32
mc_readl(struct tegra30_mc
*mc
, u32 offs
)
98 val
= readl(mc
->regs
[0] + offs
);
99 else if (offs
< 0x1f0)
100 val
= readl(mc
->regs
[1] + offs
- 0x3c);
101 else if (offs
< 0x228)
102 val
= readl(mc
->regs
[2] + offs
- 0x200);
103 else if (offs
< 0x400)
104 val
= readl(mc
->regs
[3] + offs
- 0x284);
109 static inline void mc_writel(struct tegra30_mc
*mc
, u32 val
, u32 offs
)
112 writel(val
, mc
->regs
[0] + offs
);
113 else if (offs
< 0x1f0)
114 writel(val
, mc
->regs
[1] + offs
- 0x3c);
115 else if (offs
< 0x228)
116 writel(val
, mc
->regs
[2] + offs
- 0x200);
117 else if (offs
< 0x400)
118 writel(val
, mc
->regs
[3] + offs
- 0x284);
121 static const char * const tegra30_mc_client
[] = {
190 static void tegra30_mc_decode(struct tegra30_mc
*mc
, int n
)
193 const char * const mc_int_err
[] = {
197 "MC_ARBITRATION_EMEM",
200 const char * const err_type
[] = {
204 "SECURITY_TRUSTZONE",
211 int cid
, perm
, type
, idx
;
212 const char *client
= "Unknown";
214 idx
= n
- MC_INT_ERR_SHIFT
;
215 if ((idx
< 0) || (idx
>= ARRAY_SIZE(mc_int_err
)) || (idx
== 1)) {
216 dev_err_ratelimited(mc
->dev
, "Unknown interrupt status %08lx\n",
221 err
= mc_readl(mc
, MC_ERR_STATUS
);
223 type
= (err
& MC_ERR_TYPE_MASK
) >> MC_ERR_TYPE_SHIFT
;
224 perm
= (err
& MC_ERR_INVALID_SMMU_PAGE_MASK
) >>
225 MC_ERR_INVALID_SMMU_PAGE_SHIFT
;
226 if (type
== MC_ERR_TYPE_INVALID_SMMU_PAGE
)
227 sprintf(attr
, "%c-%c-%c",
228 (perm
& BIT(2)) ? 'R' : '-',
229 (perm
& BIT(1)) ? 'W' : '-',
230 (perm
& BIT(0)) ? 'S' : '-');
234 cid
= err
& MC_CLIENT_ID_MASK
;
235 if (cid
< ARRAY_SIZE(tegra30_mc_client
))
236 client
= tegra30_mc_client
[cid
];
238 addr
= mc_readl(mc
, MC_ERR_ADR
);
240 dev_err_ratelimited(mc
->dev
, "%s (0x%08x): 0x%08x %s (%s %s %s %s)\n",
241 mc_int_err
[idx
], err
, addr
, client
,
242 (err
& MC_ERR_SECURITY
) ? "secure" : "non-secure",
243 (err
& MC_ERR_RW
) ? "write" : "read",
244 err_type
[type
], attr
);
247 static const u32 tegra30_mc_ctx
[] = {
249 MC_EMEM_ARB_OUTSTANDING_REQ
,
250 MC_EMEM_ARB_TIMING_RCD
,
251 MC_EMEM_ARB_TIMING_RP
,
252 MC_EMEM_ARB_TIMING_RC
,
253 MC_EMEM_ARB_TIMING_RAS
,
254 MC_EMEM_ARB_TIMING_FAW
,
255 MC_EMEM_ARB_TIMING_RRD
,
256 MC_EMEM_ARB_TIMING_RAP2PRE
,
257 MC_EMEM_ARB_TIMING_WAP2PRE
,
258 MC_EMEM_ARB_TIMING_R2R
,
259 MC_EMEM_ARB_TIMING_W2W
,
260 MC_EMEM_ARB_TIMING_R2W
,
261 MC_EMEM_ARB_TIMING_W2R
,
262 MC_EMEM_ARB_DA_TURNS
,
263 MC_EMEM_ARB_DA_COVERS
,
266 MC_EMEM_ARB_RING3_THROTTLE
,
267 MC_EMEM_ARB_OVERRIDE
,
272 static int tegra30_mc_suspend(struct device
*dev
)
275 struct tegra30_mc
*mc
= dev_get_drvdata(dev
);
277 for (i
= 0; i
< ARRAY_SIZE(tegra30_mc_ctx
); i
++)
278 mc
->ctx
[i
] = mc_readl(mc
, tegra30_mc_ctx
[i
]);
282 static int tegra30_mc_resume(struct device
*dev
)
285 struct tegra30_mc
*mc
= dev_get_drvdata(dev
);
287 for (i
= 0; i
< ARRAY_SIZE(tegra30_mc_ctx
); i
++)
288 mc_writel(mc
, mc
->ctx
[i
], tegra30_mc_ctx
[i
]);
290 mc_writel(mc
, 1, MC_TIMING_CONTROL
);
291 /* Read-back to ensure that write reached */
292 mc_readl(mc
, MC_TIMING_CONTROL
);
297 static UNIVERSAL_DEV_PM_OPS(tegra30_mc_pm
,
299 tegra30_mc_resume
, NULL
);
301 static const struct of_device_id tegra30_mc_of_match
[] = {
302 { .compatible
= "nvidia,tegra30-mc", },
306 static irqreturn_t
tegra30_mc_isr(int irq
, void *data
)
309 struct tegra30_mc
*mc
= data
;
311 stat
= mc_readl(mc
, MC_INTSTATUS
);
312 mask
= mc_readl(mc
, MC_INTMASK
);
316 while ((bit
= ffs(mask
)) != 0) {
317 tegra30_mc_decode(mc
, bit
- 1);
318 mask
&= ~BIT(bit
- 1);
321 mc_writel(mc
, stat
, MC_INTSTATUS
);
325 static int tegra30_mc_probe(struct platform_device
*pdev
)
327 struct resource
*irq
;
328 struct tegra30_mc
*mc
;
333 bytes
= sizeof(*mc
) + sizeof(u32
) * ARRAY_SIZE(tegra30_mc_ctx
);
334 mc
= devm_kzalloc(&pdev
->dev
, bytes
, GFP_KERNEL
);
337 mc
->dev
= &pdev
->dev
;
339 for (i
= 0; i
< ARRAY_SIZE(mc
->regs
); i
++) {
340 struct resource
*res
;
342 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, i
);
345 mc
->regs
[i
] = devm_ioremap_resource(&pdev
->dev
, res
);
346 if (IS_ERR(mc
->regs
[i
]))
347 return PTR_ERR(mc
->regs
[i
]);
350 irq
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
353 err
= devm_request_irq(&pdev
->dev
, irq
->start
, tegra30_mc_isr
,
354 IRQF_SHARED
, dev_name(&pdev
->dev
), mc
);
358 platform_set_drvdata(pdev
, mc
);
360 intmask
= MC_INT_INVALID_SMMU_PAGE
|
361 MC_INT_DECERR_EMEM
| MC_INT_SECURITY_VIOLATION
;
362 mc_writel(mc
, intmask
, MC_INTMASK
);
366 static struct platform_driver tegra30_mc_driver
= {
367 .probe
= tegra30_mc_probe
,
370 .owner
= THIS_MODULE
,
371 .of_match_table
= tegra30_mc_of_match
,
372 .pm
= &tegra30_mc_pm
,
375 module_platform_driver(tegra30_mc_driver
);
377 MODULE_AUTHOR("Hiroshi DOYU <hdoyu@nvidia.com>");
378 MODULE_DESCRIPTION("Tegra30 MC driver");
379 MODULE_LICENSE("GPL v2");
380 MODULE_ALIAS("platform:" DRV_NAME
);