Loading...
1/*
2 * Copyright (C) 2014 NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include <linux/clk.h>
10#include <linux/interrupt.h>
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/of.h>
14#include <linux/platform_device.h>
15#include <linux/slab.h>
16#include <linux/sort.h>
17
18#include <soc/tegra/fuse.h>
19
20#include "mc.h"
21
22#define MC_INTSTATUS 0x000
23#define MC_INT_DECERR_MTS (1 << 16)
24#define MC_INT_SECERR_SEC (1 << 13)
25#define MC_INT_DECERR_VPR (1 << 12)
26#define MC_INT_INVALID_APB_ASID_UPDATE (1 << 11)
27#define MC_INT_INVALID_SMMU_PAGE (1 << 10)
28#define MC_INT_ARBITRATION_EMEM (1 << 9)
29#define MC_INT_SECURITY_VIOLATION (1 << 8)
30#define MC_INT_DECERR_EMEM (1 << 6)
31
32#define MC_INTMASK 0x004
33
34#define MC_ERR_STATUS 0x08
35#define MC_ERR_STATUS_TYPE_SHIFT 28
36#define MC_ERR_STATUS_TYPE_INVALID_SMMU_PAGE (6 << MC_ERR_STATUS_TYPE_SHIFT)
37#define MC_ERR_STATUS_TYPE_MASK (0x7 << MC_ERR_STATUS_TYPE_SHIFT)
38#define MC_ERR_STATUS_READABLE (1 << 27)
39#define MC_ERR_STATUS_WRITABLE (1 << 26)
40#define MC_ERR_STATUS_NONSECURE (1 << 25)
41#define MC_ERR_STATUS_ADR_HI_SHIFT 20
42#define MC_ERR_STATUS_ADR_HI_MASK 0x3
43#define MC_ERR_STATUS_SECURITY (1 << 17)
44#define MC_ERR_STATUS_RW (1 << 16)
45
46#define MC_ERR_ADR 0x0c
47
48#define MC_EMEM_ARB_CFG 0x90
49#define MC_EMEM_ARB_CFG_CYCLES_PER_UPDATE(x) (((x) & 0x1ff) << 0)
50#define MC_EMEM_ARB_CFG_CYCLES_PER_UPDATE_MASK 0x1ff
51#define MC_EMEM_ARB_MISC0 0xd8
52
53#define MC_EMEM_ADR_CFG 0x54
54#define MC_EMEM_ADR_CFG_EMEM_NUMDEV BIT(0)
55
56static const struct of_device_id tegra_mc_of_match[] = {
57#ifdef CONFIG_ARCH_TEGRA_3x_SOC
58 { .compatible = "nvidia,tegra30-mc", .data = &tegra30_mc_soc },
59#endif
60#ifdef CONFIG_ARCH_TEGRA_114_SOC
61 { .compatible = "nvidia,tegra114-mc", .data = &tegra114_mc_soc },
62#endif
63#ifdef CONFIG_ARCH_TEGRA_124_SOC
64 { .compatible = "nvidia,tegra124-mc", .data = &tegra124_mc_soc },
65#endif
66#ifdef CONFIG_ARCH_TEGRA_132_SOC
67 { .compatible = "nvidia,tegra132-mc", .data = &tegra132_mc_soc },
68#endif
69#ifdef CONFIG_ARCH_TEGRA_210_SOC
70 { .compatible = "nvidia,tegra210-mc", .data = &tegra210_mc_soc },
71#endif
72 { }
73};
74MODULE_DEVICE_TABLE(of, tegra_mc_of_match);
75
76static int tegra_mc_setup_latency_allowance(struct tegra_mc *mc)
77{
78 unsigned long long tick;
79 unsigned int i;
80 u32 value;
81
82 /* compute the number of MC clock cycles per tick */
83 tick = mc->tick * clk_get_rate(mc->clk);
84 do_div(tick, NSEC_PER_SEC);
85
86 value = readl(mc->regs + MC_EMEM_ARB_CFG);
87 value &= ~MC_EMEM_ARB_CFG_CYCLES_PER_UPDATE_MASK;
88 value |= MC_EMEM_ARB_CFG_CYCLES_PER_UPDATE(tick);
89 writel(value, mc->regs + MC_EMEM_ARB_CFG);
90
91 /* write latency allowance defaults */
92 for (i = 0; i < mc->soc->num_clients; i++) {
93 const struct tegra_mc_la *la = &mc->soc->clients[i].la;
94 u32 value;
95
96 value = readl(mc->regs + la->reg);
97 value &= ~(la->mask << la->shift);
98 value |= (la->def & la->mask) << la->shift;
99 writel(value, mc->regs + la->reg);
100 }
101
102 return 0;
103}
104
105void tegra_mc_write_emem_configuration(struct tegra_mc *mc, unsigned long rate)
106{
107 unsigned int i;
108 struct tegra_mc_timing *timing = NULL;
109
110 for (i = 0; i < mc->num_timings; i++) {
111 if (mc->timings[i].rate == rate) {
112 timing = &mc->timings[i];
113 break;
114 }
115 }
116
117 if (!timing) {
118 dev_err(mc->dev, "no memory timing registered for rate %lu\n",
119 rate);
120 return;
121 }
122
123 for (i = 0; i < mc->soc->num_emem_regs; ++i)
124 mc_writel(mc, timing->emem_data[i], mc->soc->emem_regs[i]);
125}
126
127unsigned int tegra_mc_get_emem_device_count(struct tegra_mc *mc)
128{
129 u8 dram_count;
130
131 dram_count = mc_readl(mc, MC_EMEM_ADR_CFG);
132 dram_count &= MC_EMEM_ADR_CFG_EMEM_NUMDEV;
133 dram_count++;
134
135 return dram_count;
136}
137
138static int load_one_timing(struct tegra_mc *mc,
139 struct tegra_mc_timing *timing,
140 struct device_node *node)
141{
142 int err;
143 u32 tmp;
144
145 err = of_property_read_u32(node, "clock-frequency", &tmp);
146 if (err) {
147 dev_err(mc->dev,
148 "timing %s: failed to read rate\n", node->name);
149 return err;
150 }
151
152 timing->rate = tmp;
153 timing->emem_data = devm_kcalloc(mc->dev, mc->soc->num_emem_regs,
154 sizeof(u32), GFP_KERNEL);
155 if (!timing->emem_data)
156 return -ENOMEM;
157
158 err = of_property_read_u32_array(node, "nvidia,emem-configuration",
159 timing->emem_data,
160 mc->soc->num_emem_regs);
161 if (err) {
162 dev_err(mc->dev,
163 "timing %s: failed to read EMEM configuration\n",
164 node->name);
165 return err;
166 }
167
168 return 0;
169}
170
171static int load_timings(struct tegra_mc *mc, struct device_node *node)
172{
173 struct device_node *child;
174 struct tegra_mc_timing *timing;
175 int child_count = of_get_child_count(node);
176 int i = 0, err;
177
178 mc->timings = devm_kcalloc(mc->dev, child_count, sizeof(*timing),
179 GFP_KERNEL);
180 if (!mc->timings)
181 return -ENOMEM;
182
183 mc->num_timings = child_count;
184
185 for_each_child_of_node(node, child) {
186 timing = &mc->timings[i++];
187
188 err = load_one_timing(mc, timing, child);
189 if (err)
190 return err;
191 }
192
193 return 0;
194}
195
196static int tegra_mc_setup_timings(struct tegra_mc *mc)
197{
198 struct device_node *node;
199 u32 ram_code, node_ram_code;
200 int err;
201
202 ram_code = tegra_read_ram_code();
203
204 mc->num_timings = 0;
205
206 for_each_child_of_node(mc->dev->of_node, node) {
207 err = of_property_read_u32(node, "nvidia,ram-code",
208 &node_ram_code);
209 if (err || (node_ram_code != ram_code)) {
210 of_node_put(node);
211 continue;
212 }
213
214 err = load_timings(mc, node);
215 if (err)
216 return err;
217 of_node_put(node);
218 break;
219 }
220
221 if (mc->num_timings == 0)
222 dev_warn(mc->dev,
223 "no memory timings for RAM code %u registered\n",
224 ram_code);
225
226 return 0;
227}
228
229static const char *const status_names[32] = {
230 [ 1] = "External interrupt",
231 [ 6] = "EMEM address decode error",
232 [ 8] = "Security violation",
233 [ 9] = "EMEM arbitration error",
234 [10] = "Page fault",
235 [11] = "Invalid APB ASID update",
236 [12] = "VPR violation",
237 [13] = "Secure carveout violation",
238 [16] = "MTS carveout violation",
239};
240
241static const char *const error_names[8] = {
242 [2] = "EMEM decode error",
243 [3] = "TrustZone violation",
244 [4] = "Carveout violation",
245 [6] = "SMMU translation error",
246};
247
248static irqreturn_t tegra_mc_irq(int irq, void *data)
249{
250 struct tegra_mc *mc = data;
251 unsigned long status, mask;
252 unsigned int bit;
253
254 /* mask all interrupts to avoid flooding */
255 status = mc_readl(mc, MC_INTSTATUS);
256 mask = mc_readl(mc, MC_INTMASK);
257
258 for_each_set_bit(bit, &status, 32) {
259 const char *error = status_names[bit] ?: "unknown";
260 const char *client = "unknown", *desc;
261 const char *direction, *secure;
262 phys_addr_t addr = 0;
263 unsigned int i;
264 char perm[7];
265 u8 id, type;
266 u32 value;
267
268 value = mc_readl(mc, MC_ERR_STATUS);
269
270#ifdef CONFIG_PHYS_ADDR_T_64BIT
271 if (mc->soc->num_address_bits > 32) {
272 addr = ((value >> MC_ERR_STATUS_ADR_HI_SHIFT) &
273 MC_ERR_STATUS_ADR_HI_MASK);
274 addr <<= 32;
275 }
276#endif
277
278 if (value & MC_ERR_STATUS_RW)
279 direction = "write";
280 else
281 direction = "read";
282
283 if (value & MC_ERR_STATUS_SECURITY)
284 secure = "secure ";
285 else
286 secure = "";
287
288 id = value & mc->soc->client_id_mask;
289
290 for (i = 0; i < mc->soc->num_clients; i++) {
291 if (mc->soc->clients[i].id == id) {
292 client = mc->soc->clients[i].name;
293 break;
294 }
295 }
296
297 type = (value & MC_ERR_STATUS_TYPE_MASK) >>
298 MC_ERR_STATUS_TYPE_SHIFT;
299 desc = error_names[type];
300
301 switch (value & MC_ERR_STATUS_TYPE_MASK) {
302 case MC_ERR_STATUS_TYPE_INVALID_SMMU_PAGE:
303 perm[0] = ' ';
304 perm[1] = '[';
305
306 if (value & MC_ERR_STATUS_READABLE)
307 perm[2] = 'R';
308 else
309 perm[2] = '-';
310
311 if (value & MC_ERR_STATUS_WRITABLE)
312 perm[3] = 'W';
313 else
314 perm[3] = '-';
315
316 if (value & MC_ERR_STATUS_NONSECURE)
317 perm[4] = '-';
318 else
319 perm[4] = 'S';
320
321 perm[5] = ']';
322 perm[6] = '\0';
323 break;
324
325 default:
326 perm[0] = '\0';
327 break;
328 }
329
330 value = mc_readl(mc, MC_ERR_ADR);
331 addr |= value;
332
333 dev_err_ratelimited(mc->dev, "%s: %s%s @%pa: %s (%s%s)\n",
334 client, secure, direction, &addr, error,
335 desc, perm);
336 }
337
338 /* clear interrupts */
339 mc_writel(mc, status, MC_INTSTATUS);
340
341 return IRQ_HANDLED;
342}
343
344static int tegra_mc_probe(struct platform_device *pdev)
345{
346 const struct of_device_id *match;
347 struct resource *res;
348 struct tegra_mc *mc;
349 u32 value;
350 int err;
351
352 match = of_match_node(tegra_mc_of_match, pdev->dev.of_node);
353 if (!match)
354 return -ENODEV;
355
356 mc = devm_kzalloc(&pdev->dev, sizeof(*mc), GFP_KERNEL);
357 if (!mc)
358 return -ENOMEM;
359
360 platform_set_drvdata(pdev, mc);
361 mc->soc = match->data;
362 mc->dev = &pdev->dev;
363
364 /* length of MC tick in nanoseconds */
365 mc->tick = 30;
366
367 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
368 mc->regs = devm_ioremap_resource(&pdev->dev, res);
369 if (IS_ERR(mc->regs))
370 return PTR_ERR(mc->regs);
371
372 mc->clk = devm_clk_get(&pdev->dev, "mc");
373 if (IS_ERR(mc->clk)) {
374 dev_err(&pdev->dev, "failed to get MC clock: %ld\n",
375 PTR_ERR(mc->clk));
376 return PTR_ERR(mc->clk);
377 }
378
379 err = tegra_mc_setup_latency_allowance(mc);
380 if (err < 0) {
381 dev_err(&pdev->dev, "failed to setup latency allowance: %d\n",
382 err);
383 return err;
384 }
385
386 err = tegra_mc_setup_timings(mc);
387 if (err < 0) {
388 dev_err(&pdev->dev, "failed to setup timings: %d\n", err);
389 return err;
390 }
391
392 if (IS_ENABLED(CONFIG_TEGRA_IOMMU_SMMU)) {
393 mc->smmu = tegra_smmu_probe(&pdev->dev, mc->soc->smmu, mc);
394 if (IS_ERR(mc->smmu)) {
395 dev_err(&pdev->dev, "failed to probe SMMU: %ld\n",
396 PTR_ERR(mc->smmu));
397 return PTR_ERR(mc->smmu);
398 }
399 }
400
401 mc->irq = platform_get_irq(pdev, 0);
402 if (mc->irq < 0) {
403 dev_err(&pdev->dev, "interrupt not specified\n");
404 return mc->irq;
405 }
406
407 err = devm_request_irq(&pdev->dev, mc->irq, tegra_mc_irq, IRQF_SHARED,
408 dev_name(&pdev->dev), mc);
409 if (err < 0) {
410 dev_err(&pdev->dev, "failed to request IRQ#%u: %d\n", mc->irq,
411 err);
412 return err;
413 }
414
415 WARN(!mc->soc->client_id_mask, "Missing client ID mask for this SoC\n");
416
417 value = MC_INT_DECERR_MTS | MC_INT_SECERR_SEC | MC_INT_DECERR_VPR |
418 MC_INT_INVALID_APB_ASID_UPDATE | MC_INT_INVALID_SMMU_PAGE |
419 MC_INT_SECURITY_VIOLATION | MC_INT_DECERR_EMEM;
420
421 mc_writel(mc, value, MC_INTMASK);
422
423 return 0;
424}
425
426static struct platform_driver tegra_mc_driver = {
427 .driver = {
428 .name = "tegra-mc",
429 .of_match_table = tegra_mc_of_match,
430 .suppress_bind_attrs = true,
431 },
432 .prevent_deferred_probe = true,
433 .probe = tegra_mc_probe,
434};
435
436static int tegra_mc_init(void)
437{
438 return platform_driver_register(&tegra_mc_driver);
439}
440arch_initcall(tegra_mc_init);
441
442MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
443MODULE_DESCRIPTION("NVIDIA Tegra Memory Controller driver");
444MODULE_LICENSE("GPL v2");
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2014 NVIDIA CORPORATION. All rights reserved.
4 */
5
6#include <linux/clk.h>
7#include <linux/delay.h>
8#include <linux/interrupt.h>
9#include <linux/kernel.h>
10#include <linux/module.h>
11#include <linux/of.h>
12#include <linux/of_device.h>
13#include <linux/platform_device.h>
14#include <linux/slab.h>
15#include <linux/sort.h>
16
17#include <soc/tegra/fuse.h>
18
19#include "mc.h"
20
21#define MC_INTSTATUS 0x000
22
23#define MC_INTMASK 0x004
24
25#define MC_ERR_STATUS 0x08
26#define MC_ERR_STATUS_TYPE_SHIFT 28
27#define MC_ERR_STATUS_TYPE_INVALID_SMMU_PAGE (6 << MC_ERR_STATUS_TYPE_SHIFT)
28#define MC_ERR_STATUS_TYPE_MASK (0x7 << MC_ERR_STATUS_TYPE_SHIFT)
29#define MC_ERR_STATUS_READABLE (1 << 27)
30#define MC_ERR_STATUS_WRITABLE (1 << 26)
31#define MC_ERR_STATUS_NONSECURE (1 << 25)
32#define MC_ERR_STATUS_ADR_HI_SHIFT 20
33#define MC_ERR_STATUS_ADR_HI_MASK 0x3
34#define MC_ERR_STATUS_SECURITY (1 << 17)
35#define MC_ERR_STATUS_RW (1 << 16)
36
37#define MC_ERR_ADR 0x0c
38
39#define MC_GART_ERROR_REQ 0x30
40#define MC_DECERR_EMEM_OTHERS_STATUS 0x58
41#define MC_SECURITY_VIOLATION_STATUS 0x74
42
43#define MC_EMEM_ARB_CFG 0x90
44#define MC_EMEM_ARB_CFG_CYCLES_PER_UPDATE(x) (((x) & 0x1ff) << 0)
45#define MC_EMEM_ARB_CFG_CYCLES_PER_UPDATE_MASK 0x1ff
46#define MC_EMEM_ARB_MISC0 0xd8
47
48#define MC_EMEM_ADR_CFG 0x54
49#define MC_EMEM_ADR_CFG_EMEM_NUMDEV BIT(0)
50
51#define MC_TIMING_CONTROL 0xfc
52#define MC_TIMING_UPDATE BIT(0)
53
54static const struct of_device_id tegra_mc_of_match[] = {
55#ifdef CONFIG_ARCH_TEGRA_2x_SOC
56 { .compatible = "nvidia,tegra20-mc-gart", .data = &tegra20_mc_soc },
57#endif
58#ifdef CONFIG_ARCH_TEGRA_3x_SOC
59 { .compatible = "nvidia,tegra30-mc", .data = &tegra30_mc_soc },
60#endif
61#ifdef CONFIG_ARCH_TEGRA_114_SOC
62 { .compatible = "nvidia,tegra114-mc", .data = &tegra114_mc_soc },
63#endif
64#ifdef CONFIG_ARCH_TEGRA_124_SOC
65 { .compatible = "nvidia,tegra124-mc", .data = &tegra124_mc_soc },
66#endif
67#ifdef CONFIG_ARCH_TEGRA_132_SOC
68 { .compatible = "nvidia,tegra132-mc", .data = &tegra132_mc_soc },
69#endif
70#ifdef CONFIG_ARCH_TEGRA_210_SOC
71 { .compatible = "nvidia,tegra210-mc", .data = &tegra210_mc_soc },
72#endif
73 { }
74};
75MODULE_DEVICE_TABLE(of, tegra_mc_of_match);
76
77static int tegra_mc_block_dma_common(struct tegra_mc *mc,
78 const struct tegra_mc_reset *rst)
79{
80 unsigned long flags;
81 u32 value;
82
83 spin_lock_irqsave(&mc->lock, flags);
84
85 value = mc_readl(mc, rst->control) | BIT(rst->bit);
86 mc_writel(mc, value, rst->control);
87
88 spin_unlock_irqrestore(&mc->lock, flags);
89
90 return 0;
91}
92
93static bool tegra_mc_dma_idling_common(struct tegra_mc *mc,
94 const struct tegra_mc_reset *rst)
95{
96 return (mc_readl(mc, rst->status) & BIT(rst->bit)) != 0;
97}
98
99static int tegra_mc_unblock_dma_common(struct tegra_mc *mc,
100 const struct tegra_mc_reset *rst)
101{
102 unsigned long flags;
103 u32 value;
104
105 spin_lock_irqsave(&mc->lock, flags);
106
107 value = mc_readl(mc, rst->control) & ~BIT(rst->bit);
108 mc_writel(mc, value, rst->control);
109
110 spin_unlock_irqrestore(&mc->lock, flags);
111
112 return 0;
113}
114
115static int tegra_mc_reset_status_common(struct tegra_mc *mc,
116 const struct tegra_mc_reset *rst)
117{
118 return (mc_readl(mc, rst->control) & BIT(rst->bit)) != 0;
119}
120
121const struct tegra_mc_reset_ops tegra_mc_reset_ops_common = {
122 .block_dma = tegra_mc_block_dma_common,
123 .dma_idling = tegra_mc_dma_idling_common,
124 .unblock_dma = tegra_mc_unblock_dma_common,
125 .reset_status = tegra_mc_reset_status_common,
126};
127
128static inline struct tegra_mc *reset_to_mc(struct reset_controller_dev *rcdev)
129{
130 return container_of(rcdev, struct tegra_mc, reset);
131}
132
133static const struct tegra_mc_reset *tegra_mc_reset_find(struct tegra_mc *mc,
134 unsigned long id)
135{
136 unsigned int i;
137
138 for (i = 0; i < mc->soc->num_resets; i++)
139 if (mc->soc->resets[i].id == id)
140 return &mc->soc->resets[i];
141
142 return NULL;
143}
144
145static int tegra_mc_hotreset_assert(struct reset_controller_dev *rcdev,
146 unsigned long id)
147{
148 struct tegra_mc *mc = reset_to_mc(rcdev);
149 const struct tegra_mc_reset_ops *rst_ops;
150 const struct tegra_mc_reset *rst;
151 int retries = 500;
152 int err;
153
154 rst = tegra_mc_reset_find(mc, id);
155 if (!rst)
156 return -ENODEV;
157
158 rst_ops = mc->soc->reset_ops;
159 if (!rst_ops)
160 return -ENODEV;
161
162 if (rst_ops->block_dma) {
163 /* block clients DMA requests */
164 err = rst_ops->block_dma(mc, rst);
165 if (err) {
166 dev_err(mc->dev, "failed to block %s DMA: %d\n",
167 rst->name, err);
168 return err;
169 }
170 }
171
172 if (rst_ops->dma_idling) {
173 /* wait for completion of the outstanding DMA requests */
174 while (!rst_ops->dma_idling(mc, rst)) {
175 if (!retries--) {
176 dev_err(mc->dev, "failed to flush %s DMA\n",
177 rst->name);
178 return -EBUSY;
179 }
180
181 usleep_range(10, 100);
182 }
183 }
184
185 if (rst_ops->hotreset_assert) {
186 /* clear clients DMA requests sitting before arbitration */
187 err = rst_ops->hotreset_assert(mc, rst);
188 if (err) {
189 dev_err(mc->dev, "failed to hot reset %s: %d\n",
190 rst->name, err);
191 return err;
192 }
193 }
194
195 return 0;
196}
197
198static int tegra_mc_hotreset_deassert(struct reset_controller_dev *rcdev,
199 unsigned long id)
200{
201 struct tegra_mc *mc = reset_to_mc(rcdev);
202 const struct tegra_mc_reset_ops *rst_ops;
203 const struct tegra_mc_reset *rst;
204 int err;
205
206 rst = tegra_mc_reset_find(mc, id);
207 if (!rst)
208 return -ENODEV;
209
210 rst_ops = mc->soc->reset_ops;
211 if (!rst_ops)
212 return -ENODEV;
213
214 if (rst_ops->hotreset_deassert) {
215 /* take out client from hot reset */
216 err = rst_ops->hotreset_deassert(mc, rst);
217 if (err) {
218 dev_err(mc->dev, "failed to deassert hot reset %s: %d\n",
219 rst->name, err);
220 return err;
221 }
222 }
223
224 if (rst_ops->unblock_dma) {
225 /* allow new DMA requests to proceed to arbitration */
226 err = rst_ops->unblock_dma(mc, rst);
227 if (err) {
228 dev_err(mc->dev, "failed to unblock %s DMA : %d\n",
229 rst->name, err);
230 return err;
231 }
232 }
233
234 return 0;
235}
236
237static int tegra_mc_hotreset_status(struct reset_controller_dev *rcdev,
238 unsigned long id)
239{
240 struct tegra_mc *mc = reset_to_mc(rcdev);
241 const struct tegra_mc_reset_ops *rst_ops;
242 const struct tegra_mc_reset *rst;
243
244 rst = tegra_mc_reset_find(mc, id);
245 if (!rst)
246 return -ENODEV;
247
248 rst_ops = mc->soc->reset_ops;
249 if (!rst_ops)
250 return -ENODEV;
251
252 return rst_ops->reset_status(mc, rst);
253}
254
255static const struct reset_control_ops tegra_mc_reset_ops = {
256 .assert = tegra_mc_hotreset_assert,
257 .deassert = tegra_mc_hotreset_deassert,
258 .status = tegra_mc_hotreset_status,
259};
260
261static int tegra_mc_reset_setup(struct tegra_mc *mc)
262{
263 int err;
264
265 mc->reset.ops = &tegra_mc_reset_ops;
266 mc->reset.owner = THIS_MODULE;
267 mc->reset.of_node = mc->dev->of_node;
268 mc->reset.of_reset_n_cells = 1;
269 mc->reset.nr_resets = mc->soc->num_resets;
270
271 err = reset_controller_register(&mc->reset);
272 if (err < 0)
273 return err;
274
275 return 0;
276}
277
278static int tegra_mc_setup_latency_allowance(struct tegra_mc *mc)
279{
280 unsigned long long tick;
281 unsigned int i;
282 u32 value;
283
284 /* compute the number of MC clock cycles per tick */
285 tick = (unsigned long long)mc->tick * clk_get_rate(mc->clk);
286 do_div(tick, NSEC_PER_SEC);
287
288 value = mc_readl(mc, MC_EMEM_ARB_CFG);
289 value &= ~MC_EMEM_ARB_CFG_CYCLES_PER_UPDATE_MASK;
290 value |= MC_EMEM_ARB_CFG_CYCLES_PER_UPDATE(tick);
291 mc_writel(mc, value, MC_EMEM_ARB_CFG);
292
293 /* write latency allowance defaults */
294 for (i = 0; i < mc->soc->num_clients; i++) {
295 const struct tegra_mc_la *la = &mc->soc->clients[i].la;
296 u32 value;
297
298 value = mc_readl(mc, la->reg);
299 value &= ~(la->mask << la->shift);
300 value |= (la->def & la->mask) << la->shift;
301 mc_writel(mc, value, la->reg);
302 }
303
304 /* latch new values */
305 mc_writel(mc, MC_TIMING_UPDATE, MC_TIMING_CONTROL);
306
307 return 0;
308}
309
310void tegra_mc_write_emem_configuration(struct tegra_mc *mc, unsigned long rate)
311{
312 unsigned int i;
313 struct tegra_mc_timing *timing = NULL;
314
315 for (i = 0; i < mc->num_timings; i++) {
316 if (mc->timings[i].rate == rate) {
317 timing = &mc->timings[i];
318 break;
319 }
320 }
321
322 if (!timing) {
323 dev_err(mc->dev, "no memory timing registered for rate %lu\n",
324 rate);
325 return;
326 }
327
328 for (i = 0; i < mc->soc->num_emem_regs; ++i)
329 mc_writel(mc, timing->emem_data[i], mc->soc->emem_regs[i]);
330}
331
332unsigned int tegra_mc_get_emem_device_count(struct tegra_mc *mc)
333{
334 u8 dram_count;
335
336 dram_count = mc_readl(mc, MC_EMEM_ADR_CFG);
337 dram_count &= MC_EMEM_ADR_CFG_EMEM_NUMDEV;
338 dram_count++;
339
340 return dram_count;
341}
342
343static int load_one_timing(struct tegra_mc *mc,
344 struct tegra_mc_timing *timing,
345 struct device_node *node)
346{
347 int err;
348 u32 tmp;
349
350 err = of_property_read_u32(node, "clock-frequency", &tmp);
351 if (err) {
352 dev_err(mc->dev,
353 "timing %pOFn: failed to read rate\n", node);
354 return err;
355 }
356
357 timing->rate = tmp;
358 timing->emem_data = devm_kcalloc(mc->dev, mc->soc->num_emem_regs,
359 sizeof(u32), GFP_KERNEL);
360 if (!timing->emem_data)
361 return -ENOMEM;
362
363 err = of_property_read_u32_array(node, "nvidia,emem-configuration",
364 timing->emem_data,
365 mc->soc->num_emem_regs);
366 if (err) {
367 dev_err(mc->dev,
368 "timing %pOFn: failed to read EMEM configuration\n",
369 node);
370 return err;
371 }
372
373 return 0;
374}
375
376static int load_timings(struct tegra_mc *mc, struct device_node *node)
377{
378 struct device_node *child;
379 struct tegra_mc_timing *timing;
380 int child_count = of_get_child_count(node);
381 int i = 0, err;
382
383 mc->timings = devm_kcalloc(mc->dev, child_count, sizeof(*timing),
384 GFP_KERNEL);
385 if (!mc->timings)
386 return -ENOMEM;
387
388 mc->num_timings = child_count;
389
390 for_each_child_of_node(node, child) {
391 timing = &mc->timings[i++];
392
393 err = load_one_timing(mc, timing, child);
394 if (err) {
395 of_node_put(child);
396 return err;
397 }
398 }
399
400 return 0;
401}
402
403static int tegra_mc_setup_timings(struct tegra_mc *mc)
404{
405 struct device_node *node;
406 u32 ram_code, node_ram_code;
407 int err;
408
409 ram_code = tegra_read_ram_code();
410
411 mc->num_timings = 0;
412
413 for_each_child_of_node(mc->dev->of_node, node) {
414 err = of_property_read_u32(node, "nvidia,ram-code",
415 &node_ram_code);
416 if (err || (node_ram_code != ram_code))
417 continue;
418
419 err = load_timings(mc, node);
420 of_node_put(node);
421 if (err)
422 return err;
423 break;
424 }
425
426 if (mc->num_timings == 0)
427 dev_warn(mc->dev,
428 "no memory timings for RAM code %u registered\n",
429 ram_code);
430
431 return 0;
432}
433
434static const char *const status_names[32] = {
435 [ 1] = "External interrupt",
436 [ 6] = "EMEM address decode error",
437 [ 7] = "GART page fault",
438 [ 8] = "Security violation",
439 [ 9] = "EMEM arbitration error",
440 [10] = "Page fault",
441 [11] = "Invalid APB ASID update",
442 [12] = "VPR violation",
443 [13] = "Secure carveout violation",
444 [16] = "MTS carveout violation",
445};
446
447static const char *const error_names[8] = {
448 [2] = "EMEM decode error",
449 [3] = "TrustZone violation",
450 [4] = "Carveout violation",
451 [6] = "SMMU translation error",
452};
453
454static irqreturn_t tegra_mc_irq(int irq, void *data)
455{
456 struct tegra_mc *mc = data;
457 unsigned long status;
458 unsigned int bit;
459
460 /* mask all interrupts to avoid flooding */
461 status = mc_readl(mc, MC_INTSTATUS) & mc->soc->intmask;
462 if (!status)
463 return IRQ_NONE;
464
465 for_each_set_bit(bit, &status, 32) {
466 const char *error = status_names[bit] ?: "unknown";
467 const char *client = "unknown", *desc;
468 const char *direction, *secure;
469 phys_addr_t addr = 0;
470 unsigned int i;
471 char perm[7];
472 u8 id, type;
473 u32 value;
474
475 value = mc_readl(mc, MC_ERR_STATUS);
476
477#ifdef CONFIG_PHYS_ADDR_T_64BIT
478 if (mc->soc->num_address_bits > 32) {
479 addr = ((value >> MC_ERR_STATUS_ADR_HI_SHIFT) &
480 MC_ERR_STATUS_ADR_HI_MASK);
481 addr <<= 32;
482 }
483#endif
484
485 if (value & MC_ERR_STATUS_RW)
486 direction = "write";
487 else
488 direction = "read";
489
490 if (value & MC_ERR_STATUS_SECURITY)
491 secure = "secure ";
492 else
493 secure = "";
494
495 id = value & mc->soc->client_id_mask;
496
497 for (i = 0; i < mc->soc->num_clients; i++) {
498 if (mc->soc->clients[i].id == id) {
499 client = mc->soc->clients[i].name;
500 break;
501 }
502 }
503
504 type = (value & MC_ERR_STATUS_TYPE_MASK) >>
505 MC_ERR_STATUS_TYPE_SHIFT;
506 desc = error_names[type];
507
508 switch (value & MC_ERR_STATUS_TYPE_MASK) {
509 case MC_ERR_STATUS_TYPE_INVALID_SMMU_PAGE:
510 perm[0] = ' ';
511 perm[1] = '[';
512
513 if (value & MC_ERR_STATUS_READABLE)
514 perm[2] = 'R';
515 else
516 perm[2] = '-';
517
518 if (value & MC_ERR_STATUS_WRITABLE)
519 perm[3] = 'W';
520 else
521 perm[3] = '-';
522
523 if (value & MC_ERR_STATUS_NONSECURE)
524 perm[4] = '-';
525 else
526 perm[4] = 'S';
527
528 perm[5] = ']';
529 perm[6] = '\0';
530 break;
531
532 default:
533 perm[0] = '\0';
534 break;
535 }
536
537 value = mc_readl(mc, MC_ERR_ADR);
538 addr |= value;
539
540 dev_err_ratelimited(mc->dev, "%s: %s%s @%pa: %s (%s%s)\n",
541 client, secure, direction, &addr, error,
542 desc, perm);
543 }
544
545 /* clear interrupts */
546 mc_writel(mc, status, MC_INTSTATUS);
547
548 return IRQ_HANDLED;
549}
550
551static __maybe_unused irqreturn_t tegra20_mc_irq(int irq, void *data)
552{
553 struct tegra_mc *mc = data;
554 unsigned long status;
555 unsigned int bit;
556
557 /* mask all interrupts to avoid flooding */
558 status = mc_readl(mc, MC_INTSTATUS) & mc->soc->intmask;
559 if (!status)
560 return IRQ_NONE;
561
562 for_each_set_bit(bit, &status, 32) {
563 const char *direction = "read", *secure = "";
564 const char *error = status_names[bit];
565 const char *client, *desc;
566 phys_addr_t addr;
567 u32 value, reg;
568 u8 id, type;
569
570 switch (BIT(bit)) {
571 case MC_INT_DECERR_EMEM:
572 reg = MC_DECERR_EMEM_OTHERS_STATUS;
573 value = mc_readl(mc, reg);
574
575 id = value & mc->soc->client_id_mask;
576 desc = error_names[2];
577
578 if (value & BIT(31))
579 direction = "write";
580 break;
581
582 case MC_INT_INVALID_GART_PAGE:
583 reg = MC_GART_ERROR_REQ;
584 value = mc_readl(mc, reg);
585
586 id = (value >> 1) & mc->soc->client_id_mask;
587 desc = error_names[2];
588
589 if (value & BIT(0))
590 direction = "write";
591 break;
592
593 case MC_INT_SECURITY_VIOLATION:
594 reg = MC_SECURITY_VIOLATION_STATUS;
595 value = mc_readl(mc, reg);
596
597 id = value & mc->soc->client_id_mask;
598 type = (value & BIT(30)) ? 4 : 3;
599 desc = error_names[type];
600 secure = "secure ";
601
602 if (value & BIT(31))
603 direction = "write";
604 break;
605
606 default:
607 continue;
608 }
609
610 client = mc->soc->clients[id].name;
611 addr = mc_readl(mc, reg + sizeof(u32));
612
613 dev_err_ratelimited(mc->dev, "%s: %s%s @%pa: %s (%s)\n",
614 client, secure, direction, &addr, error,
615 desc);
616 }
617
618 /* clear interrupts */
619 mc_writel(mc, status, MC_INTSTATUS);
620
621 return IRQ_HANDLED;
622}
623
624static int tegra_mc_probe(struct platform_device *pdev)
625{
626 struct resource *res;
627 struct tegra_mc *mc;
628 void *isr;
629 int err;
630
631 mc = devm_kzalloc(&pdev->dev, sizeof(*mc), GFP_KERNEL);
632 if (!mc)
633 return -ENOMEM;
634
635 platform_set_drvdata(pdev, mc);
636 spin_lock_init(&mc->lock);
637 mc->soc = of_device_get_match_data(&pdev->dev);
638 mc->dev = &pdev->dev;
639
640 /* length of MC tick in nanoseconds */
641 mc->tick = 30;
642
643 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
644 mc->regs = devm_ioremap_resource(&pdev->dev, res);
645 if (IS_ERR(mc->regs))
646 return PTR_ERR(mc->regs);
647
648 mc->clk = devm_clk_get(&pdev->dev, "mc");
649 if (IS_ERR(mc->clk)) {
650 dev_err(&pdev->dev, "failed to get MC clock: %ld\n",
651 PTR_ERR(mc->clk));
652 return PTR_ERR(mc->clk);
653 }
654
655#ifdef CONFIG_ARCH_TEGRA_2x_SOC
656 if (mc->soc == &tegra20_mc_soc) {
657 isr = tegra20_mc_irq;
658 } else
659#endif
660 {
661 err = tegra_mc_setup_latency_allowance(mc);
662 if (err < 0) {
663 dev_err(&pdev->dev,
664 "failed to setup latency allowance: %d\n",
665 err);
666 return err;
667 }
668
669 isr = tegra_mc_irq;
670
671 err = tegra_mc_setup_timings(mc);
672 if (err < 0) {
673 dev_err(&pdev->dev, "failed to setup timings: %d\n",
674 err);
675 return err;
676 }
677 }
678
679 mc->irq = platform_get_irq(pdev, 0);
680 if (mc->irq < 0) {
681 dev_err(&pdev->dev, "interrupt not specified\n");
682 return mc->irq;
683 }
684
685 WARN(!mc->soc->client_id_mask, "missing client ID mask for this SoC\n");
686
687 mc_writel(mc, mc->soc->intmask, MC_INTMASK);
688
689 err = devm_request_irq(&pdev->dev, mc->irq, isr, 0,
690 dev_name(&pdev->dev), mc);
691 if (err < 0) {
692 dev_err(&pdev->dev, "failed to request IRQ#%u: %d\n", mc->irq,
693 err);
694 return err;
695 }
696
697 err = tegra_mc_reset_setup(mc);
698 if (err < 0)
699 dev_err(&pdev->dev, "failed to register reset controller: %d\n",
700 err);
701
702 if (IS_ENABLED(CONFIG_TEGRA_IOMMU_SMMU) && mc->soc->smmu) {
703 mc->smmu = tegra_smmu_probe(&pdev->dev, mc->soc->smmu, mc);
704 if (IS_ERR(mc->smmu)) {
705 dev_err(&pdev->dev, "failed to probe SMMU: %ld\n",
706 PTR_ERR(mc->smmu));
707 mc->smmu = NULL;
708 }
709 }
710
711 if (IS_ENABLED(CONFIG_TEGRA_IOMMU_GART) && !mc->soc->smmu) {
712 mc->gart = tegra_gart_probe(&pdev->dev, mc);
713 if (IS_ERR(mc->gart)) {
714 dev_err(&pdev->dev, "failed to probe GART: %ld\n",
715 PTR_ERR(mc->gart));
716 mc->gart = NULL;
717 }
718 }
719
720 return 0;
721}
722
723static int tegra_mc_suspend(struct device *dev)
724{
725 struct tegra_mc *mc = dev_get_drvdata(dev);
726 int err;
727
728 if (IS_ENABLED(CONFIG_TEGRA_IOMMU_GART) && mc->gart) {
729 err = tegra_gart_suspend(mc->gart);
730 if (err)
731 return err;
732 }
733
734 return 0;
735}
736
737static int tegra_mc_resume(struct device *dev)
738{
739 struct tegra_mc *mc = dev_get_drvdata(dev);
740 int err;
741
742 if (IS_ENABLED(CONFIG_TEGRA_IOMMU_GART) && mc->gart) {
743 err = tegra_gart_resume(mc->gart);
744 if (err)
745 return err;
746 }
747
748 return 0;
749}
750
751static const struct dev_pm_ops tegra_mc_pm_ops = {
752 .suspend = tegra_mc_suspend,
753 .resume = tegra_mc_resume,
754};
755
756static struct platform_driver tegra_mc_driver = {
757 .driver = {
758 .name = "tegra-mc",
759 .of_match_table = tegra_mc_of_match,
760 .pm = &tegra_mc_pm_ops,
761 .suppress_bind_attrs = true,
762 },
763 .prevent_deferred_probe = true,
764 .probe = tegra_mc_probe,
765};
766
767static int tegra_mc_init(void)
768{
769 return platform_driver_register(&tegra_mc_driver);
770}
771arch_initcall(tegra_mc_init);
772
773MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
774MODULE_DESCRIPTION("NVIDIA Tegra Memory Controller driver");
775MODULE_LICENSE("GPL v2");