hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/drivers/memory/tegra/mc.h
....@@ -1,47 +1,95 @@
1
+/* SPDX-License-Identifier: GPL-2.0-only */
12 /*
23 * 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.
74 */
85
96 #ifndef MEMORY_TEGRA_MC_H
107 #define MEMORY_TEGRA_MC_H
118
9
+#include <linux/bits.h>
1210 #include <linux/io.h>
1311 #include <linux/types.h>
1412
1513 #include <soc/tegra/mc.h>
1614
17
-#define MC_INT_DECERR_MTS (1 << 16)
18
-#define MC_INT_SECERR_SEC (1 << 13)
19
-#define MC_INT_DECERR_VPR (1 << 12)
20
-#define MC_INT_INVALID_APB_ASID_UPDATE (1 << 11)
21
-#define MC_INT_INVALID_SMMU_PAGE (1 << 10)
22
-#define MC_INT_ARBITRATION_EMEM (1 << 9)
23
-#define MC_INT_SECURITY_VIOLATION (1 << 8)
24
-#define MC_INT_INVALID_GART_PAGE (1 << 7)
25
-#define MC_INT_DECERR_EMEM (1 << 6)
15
+#define MC_INTSTATUS 0x00
16
+#define MC_INTMASK 0x04
17
+#define MC_ERR_STATUS 0x08
18
+#define MC_ERR_ADR 0x0c
19
+#define MC_GART_ERROR_REQ 0x30
20
+#define MC_EMEM_ADR_CFG 0x54
21
+#define MC_DECERR_EMEM_OTHERS_STATUS 0x58
22
+#define MC_SECURITY_VIOLATION_STATUS 0x74
23
+#define MC_EMEM_ARB_CFG 0x90
24
+#define MC_EMEM_ARB_OUTSTANDING_REQ 0x94
25
+#define MC_EMEM_ARB_TIMING_RCD 0x98
26
+#define MC_EMEM_ARB_TIMING_RP 0x9c
27
+#define MC_EMEM_ARB_TIMING_RC 0xa0
28
+#define MC_EMEM_ARB_TIMING_RAS 0xa4
29
+#define MC_EMEM_ARB_TIMING_FAW 0xa8
30
+#define MC_EMEM_ARB_TIMING_RRD 0xac
31
+#define MC_EMEM_ARB_TIMING_RAP2PRE 0xb0
32
+#define MC_EMEM_ARB_TIMING_WAP2PRE 0xb4
33
+#define MC_EMEM_ARB_TIMING_R2R 0xb8
34
+#define MC_EMEM_ARB_TIMING_W2W 0xbc
35
+#define MC_EMEM_ARB_TIMING_R2W 0xc0
36
+#define MC_EMEM_ARB_TIMING_W2R 0xc4
37
+#define MC_EMEM_ARB_MISC2 0xc8
38
+#define MC_EMEM_ARB_DA_TURNS 0xd0
39
+#define MC_EMEM_ARB_DA_COVERS 0xd4
40
+#define MC_EMEM_ARB_MISC0 0xd8
41
+#define MC_EMEM_ARB_MISC1 0xdc
42
+#define MC_EMEM_ARB_RING1_THROTTLE 0xe0
43
+#define MC_EMEM_ARB_OVERRIDE 0xe8
44
+#define MC_TIMING_CONTROL_DBG 0xf8
45
+#define MC_TIMING_CONTROL 0xfc
46
+
47
+#define MC_INT_DECERR_MTS BIT(16)
48
+#define MC_INT_SECERR_SEC BIT(13)
49
+#define MC_INT_DECERR_VPR BIT(12)
50
+#define MC_INT_INVALID_APB_ASID_UPDATE BIT(11)
51
+#define MC_INT_INVALID_SMMU_PAGE BIT(10)
52
+#define MC_INT_ARBITRATION_EMEM BIT(9)
53
+#define MC_INT_SECURITY_VIOLATION BIT(8)
54
+#define MC_INT_INVALID_GART_PAGE BIT(7)
55
+#define MC_INT_DECERR_EMEM BIT(6)
56
+
57
+#define MC_ERR_STATUS_TYPE_SHIFT 28
58
+#define MC_ERR_STATUS_TYPE_INVALID_SMMU_PAGE (0x6 << 28)
59
+#define MC_ERR_STATUS_TYPE_MASK (0x7 << 28)
60
+#define MC_ERR_STATUS_READABLE BIT(27)
61
+#define MC_ERR_STATUS_WRITABLE BIT(26)
62
+#define MC_ERR_STATUS_NONSECURE BIT(25)
63
+#define MC_ERR_STATUS_ADR_HI_SHIFT 20
64
+#define MC_ERR_STATUS_ADR_HI_MASK 0x3
65
+#define MC_ERR_STATUS_SECURITY BIT(17)
66
+#define MC_ERR_STATUS_RW BIT(16)
67
+
68
+#define MC_EMEM_ADR_CFG_EMEM_NUMDEV BIT(0)
69
+
70
+#define MC_EMEM_ARB_CFG_CYCLES_PER_UPDATE(x) ((x) & 0x1ff)
71
+#define MC_EMEM_ARB_CFG_CYCLES_PER_UPDATE_MASK 0x1ff
72
+
73
+#define MC_EMEM_ARB_OUTSTANDING_REQ_MAX_MASK 0x1ff
74
+#define MC_EMEM_ARB_OUTSTANDING_REQ_HOLDOFF_OVERRIDE BIT(30)
75
+#define MC_EMEM_ARB_OUTSTANDING_REQ_LIMIT_ENABLE BIT(31)
76
+
77
+#define MC_EMEM_ARB_OVERRIDE_EACK_MASK 0x3
78
+
79
+#define MC_TIMING_UPDATE BIT(0)
2680
2781 static inline u32 mc_readl(struct tegra_mc *mc, unsigned long offset)
2882 {
29
- if (mc->regs2 && offset >= 0x24)
30
- return readl(mc->regs2 + offset - 0x3c);
31
-
32
- return readl(mc->regs + offset);
83
+ return readl_relaxed(mc->regs + offset);
3384 }
3485
3586 static inline void mc_writel(struct tegra_mc *mc, u32 value,
3687 unsigned long offset)
3788 {
38
- if (mc->regs2 && offset >= 0x24)
39
- return writel(value, mc->regs2 + offset - 0x3c);
40
-
41
- writel(value, mc->regs + offset);
89
+ writel_relaxed(value, mc->regs + offset);
4290 }
4391
44
-extern const struct tegra_mc_reset_ops terga_mc_reset_ops_common;
92
+extern const struct tegra_mc_reset_ops tegra_mc_reset_ops_common;
4593
4694 #ifdef CONFIG_ARCH_TEGRA_2x_SOC
4795 extern const struct tegra_mc_soc tegra20_mc_soc;