2 * Tegra20 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 "tegra20-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_INVALID_GART_PAGE BIT(MC_INT_ERR_SHIFT + 1)
37 #define MC_INT_SECURITY_VIOLATION BIT(MC_INT_ERR_SHIFT + 2)
38 #define MC_INT_ARBITRATION_EMEM BIT(MC_INT_ERR_SHIFT + 3)
40 #define MC_GART_ERROR_REQ 0x30
41 #define MC_DECERR_EMEM_OTHERS_STATUS 0x58
42 #define MC_SECURITY_VIOLATION_STATUS 0x74
44 #define SECURITY_VIOLATION_TYPE BIT(30) /* 0=TRUSTZONE, 1=CARVEOUT */
46 #define MC_CLIENT_ID_MASK 0x3f
48 #define NUM_MC_REG_BANKS 2
51 void __iomem
*regs
[NUM_MC_REG_BANKS
];
55 static inline u32
mc_readl(struct tegra20_mc
*mc
, u32 offs
)
60 val
= readl(mc
->regs
[0] + offs
);
61 else if (offs
< 0x400)
62 val
= readl(mc
->regs
[1] + offs
- 0x3c);
67 static inline void mc_writel(struct tegra20_mc
*mc
, u32 val
, u32 offs
)
70 writel(val
, mc
->regs
[0] + offs
);
71 else if (offs
< 0x400)
72 writel(val
, mc
->regs
[1] + offs
- 0x3c);
75 static const char * const tegra20_mc_client
[] = {
130 static void tegra20_mc_decode(struct tegra20_mc
*mc
, int n
)
133 const char *client
= "Unknown";
135 const struct reg_info
{
137 u32 write_bit
; /* 0=READ, 1=WRITE */
142 .offset
= MC_DECERR_EMEM_OTHERS_STATUS
,
144 .message
= "MC_DECERR",
147 .offset
= MC_GART_ERROR_REQ
,
149 .message
= "MC_GART_ERR",
153 .offset
= MC_SECURITY_VIOLATION_STATUS
,
155 .message
= "MC_SECURITY_ERR",
159 idx
= n
- MC_INT_ERR_SHIFT
;
160 if ((idx
< 0) || (idx
>= ARRAY_SIZE(reg
))) {
161 dev_err_ratelimited(mc
->dev
, "Unknown interrupt status %08lx\n",
166 req
= mc_readl(mc
, reg
[idx
].offset
);
167 cid
= (req
>> reg
[idx
].cid_shift
) & MC_CLIENT_ID_MASK
;
168 if (cid
< ARRAY_SIZE(tegra20_mc_client
))
169 client
= tegra20_mc_client
[cid
];
171 addr
= mc_readl(mc
, reg
[idx
].offset
+ sizeof(u32
));
173 dev_err_ratelimited(mc
->dev
, "%s (0x%08x): 0x%08x %s (%s %s)\n",
174 reg
[idx
].message
, req
, addr
, client
,
175 (req
& BIT(reg
[idx
].write_bit
)) ? "write" : "read",
176 (reg
[idx
].offset
== MC_SECURITY_VIOLATION_STATUS
) ?
177 ((req
& SECURITY_VIOLATION_TYPE
) ?
178 "carveout" : "trustzone") : "");
181 static const struct of_device_id tegra20_mc_of_match
[] = {
182 { .compatible
= "nvidia,tegra20-mc", },
186 static irqreturn_t
tegra20_mc_isr(int irq
, void *data
)
189 struct tegra20_mc
*mc
= data
;
191 stat
= mc_readl(mc
, MC_INTSTATUS
);
192 mask
= mc_readl(mc
, MC_INTMASK
);
196 while ((bit
= ffs(mask
)) != 0)
197 tegra20_mc_decode(mc
, bit
- 1);
198 mc_writel(mc
, stat
, MC_INTSTATUS
);
202 static int tegra20_mc_probe(struct platform_device
*pdev
)
204 struct resource
*irq
;
205 struct tegra20_mc
*mc
;
209 mc
= devm_kzalloc(&pdev
->dev
, sizeof(*mc
), GFP_KERNEL
);
212 mc
->dev
= &pdev
->dev
;
214 for (i
= 0; i
< ARRAY_SIZE(mc
->regs
); i
++) {
215 struct resource
*res
;
217 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, i
);
220 mc
->regs
[i
] = devm_ioremap_resource(&pdev
->dev
, res
);
221 if (IS_ERR(mc
->regs
[i
]))
222 return PTR_ERR(mc
->regs
[i
]);
225 irq
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
228 err
= devm_request_irq(&pdev
->dev
, irq
->start
, tegra20_mc_isr
,
229 IRQF_SHARED
, dev_name(&pdev
->dev
), mc
);
233 platform_set_drvdata(pdev
, mc
);
235 intmask
= MC_INT_INVALID_GART_PAGE
|
236 MC_INT_DECERR_EMEM
| MC_INT_SECURITY_VIOLATION
;
237 mc_writel(mc
, intmask
, MC_INTMASK
);
241 static struct platform_driver tegra20_mc_driver
= {
242 .probe
= tegra20_mc_probe
,
245 .owner
= THIS_MODULE
,
246 .of_match_table
= tegra20_mc_of_match
,
249 module_platform_driver(tegra20_mc_driver
);
251 MODULE_AUTHOR("Hiroshi DOYU <hdoyu@nvidia.com>");
252 MODULE_DESCRIPTION("Tegra20 MC driver");
253 MODULE_LICENSE("GPL v2");
254 MODULE_ALIAS("platform:" DRV_NAME
);