xref: /linux/include/soc/tegra/mc.h (revision c5dbf04160005e07e8ca7232a7faa77ab1547ae0)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (C) 2014 NVIDIA Corporation
4  */
5 
6 #ifndef __SOC_TEGRA_MC_H__
7 #define __SOC_TEGRA_MC_H__
8 
9 #include <linux/bits.h>
10 #include <linux/debugfs.h>
11 #include <linux/err.h>
12 #include <linux/interconnect-provider.h>
13 #include <linux/irq.h>
14 #include <linux/reset-controller.h>
15 #include <linux/types.h>
16 #include <linux/tegra-icc.h>
17 
18 struct clk;
19 struct device;
20 struct page;
21 
22 struct tegra_mc_timing {
23 	unsigned long rate;
24 
25 	u32 *emem_data;
26 };
27 
28 struct tegra_mc_client {
29 	unsigned int id;
30 	unsigned int bpmp_id;
31 	enum tegra_icc_client_type type;
32 	const char *name;
33 	/*
34 	 * For Tegra210 and earlier, this is the SWGROUP ID used for IOVA translations in the
35 	 * Tegra SMMU, whereas on Tegra186 and later this is the ID used to override the ARM SMMU
36 	 * stream ID used for IOVA translations for the given memory client.
37 	 */
38 	union {
39 		unsigned int swgroup;
40 		unsigned int sid;
41 	};
42 
43 	unsigned int fifo_size;
44 
45 	struct {
46 		/* Tegra SMMU enable (Tegra210 and earlier) */
47 		struct {
48 			unsigned int reg;
49 			unsigned int bit;
50 		} smmu;
51 
52 		/* latency allowance */
53 		struct {
54 			unsigned int reg;
55 			unsigned int shift;
56 			unsigned int mask;
57 			unsigned int def;
58 		} la;
59 
60 		/* stream ID overrides (Tegra186 and later) */
61 		struct {
62 			unsigned int override;
63 			unsigned int security;
64 		} sid;
65 	} regs;
66 };
67 
68 struct tegra_smmu_swgroup {
69 	const char *name;
70 	unsigned int swgroup;
71 	unsigned int reg;
72 };
73 
74 struct tegra_smmu_group_soc {
75 	const char *name;
76 	const unsigned int *swgroups;
77 	unsigned int num_swgroups;
78 };
79 
80 struct tegra_smmu_soc {
81 	const struct tegra_mc_client *clients;
82 	unsigned int num_clients;
83 
84 	const struct tegra_smmu_swgroup *swgroups;
85 	unsigned int num_swgroups;
86 
87 	const struct tegra_smmu_group_soc *groups;
88 	unsigned int num_groups;
89 
90 	bool supports_round_robin_arbitration;
91 	bool supports_request_limit;
92 
93 	unsigned int num_tlb_lines;
94 	unsigned int num_asids;
95 };
96 
97 struct tegra_mc;
98 struct tegra_smmu;
99 
100 #ifdef CONFIG_TEGRA_IOMMU_SMMU
101 struct tegra_smmu *tegra_smmu_probe(struct device *dev,
102 				    const struct tegra_smmu_soc *soc,
103 				    struct tegra_mc *mc);
104 void tegra_smmu_remove(struct tegra_smmu *smmu);
105 #else
106 static inline struct tegra_smmu *
107 tegra_smmu_probe(struct device *dev, const struct tegra_smmu_soc *soc,
108 		 struct tegra_mc *mc)
109 {
110 	return NULL;
111 }
112 
113 static inline void tegra_smmu_remove(struct tegra_smmu *smmu)
114 {
115 }
116 #endif
117 
118 struct tegra_mc_reset {
119 	const char *name;
120 	unsigned long id;
121 	unsigned int control;
122 	unsigned int status;
123 	unsigned int reset;
124 	unsigned int bit;
125 };
126 
127 struct tegra_mc_reset_ops {
128 	int (*hotreset_assert)(struct tegra_mc *mc,
129 			       const struct tegra_mc_reset *rst);
130 	int (*hotreset_deassert)(struct tegra_mc *mc,
131 				 const struct tegra_mc_reset *rst);
132 	int (*block_dma)(struct tegra_mc *mc,
133 			 const struct tegra_mc_reset *rst);
134 	bool (*dma_idling)(struct tegra_mc *mc,
135 			   const struct tegra_mc_reset *rst);
136 	int (*unblock_dma)(struct tegra_mc *mc,
137 			   const struct tegra_mc_reset *rst);
138 	int (*reset_status)(struct tegra_mc *mc,
139 			    const struct tegra_mc_reset *rst);
140 };
141 
142 #define TEGRA_MC_ICC_TAG_DEFAULT				0
143 #define TEGRA_MC_ICC_TAG_ISO					BIT(0)
144 
145 struct tegra_mc_icc_ops {
146 	int (*set)(struct icc_node *src, struct icc_node *dst);
147 	int (*aggregate)(struct icc_node *node, u32 tag, u32 avg_bw,
148 			 u32 peak_bw, u32 *agg_avg, u32 *agg_peak);
149 	struct icc_node* (*xlate)(struct of_phandle_args *spec, void *data);
150 	struct icc_node_data *(*xlate_extended)(struct of_phandle_args *spec,
151 						void *data);
152 	int (*get_bw)(struct icc_node *node, u32 *avg, u32 *peak);
153 };
154 
155 struct icc_node *tegra_mc_icc_xlate(struct of_phandle_args *spec, void *data);
156 extern const struct tegra_mc_icc_ops tegra_mc_icc_ops;
157 
158 struct tegra_mc_ops {
159 	/*
160 	 * @probe: Callback to set up SoC-specific bits of the memory controller. This is called
161 	 * after basic, common set up that is done by the SoC-agnostic bits.
162 	 */
163 	int (*probe)(struct tegra_mc *mc);
164 	void (*remove)(struct tegra_mc *mc);
165 	irqreturn_t (*handle_irq)(int irq, void *data);
166 	int (*probe_device)(struct tegra_mc *mc, struct device *dev);
167 };
168 
169 struct tegra_mc_soc {
170 	const struct tegra_mc_client *clients;
171 	unsigned int num_clients;
172 
173 	const unsigned long *emem_regs;
174 	unsigned int num_emem_regs;
175 
176 	unsigned int num_address_bits;
177 	unsigned int atom_size;
178 
179 	unsigned int num_carveouts;
180 
181 	u16 client_id_mask;
182 	u8 num_channels;
183 
184 	const struct tegra_smmu_soc *smmu;
185 
186 	u32 intmask;
187 	u32 ch_intmask;
188 	u32 global_intstatus_channel_shift;
189 	bool has_addr_hi_reg;
190 
191 	const struct tegra_mc_reset_ops *reset_ops;
192 	const struct tegra_mc_reset *resets;
193 	unsigned int num_resets;
194 
195 	const struct tegra_mc_icc_ops *icc_ops;
196 	const struct tegra_mc_ops *ops;
197 };
198 
199 struct tegra_mc {
200 	struct tegra_bpmp *bpmp;
201 	struct device *dev;
202 	struct tegra_smmu *smmu;
203 	void __iomem *regs;
204 	void __iomem *bcast_ch_regs;
205 	void __iomem **ch_regs;
206 	struct clk *clk;
207 	int irq;
208 
209 	const struct tegra_mc_soc *soc;
210 	unsigned long tick;
211 
212 	struct tegra_mc_timing *timings;
213 	unsigned int num_timings;
214 	unsigned int num_channels;
215 
216 	bool bwmgr_mrq_supported;
217 	struct reset_controller_dev reset;
218 
219 	struct icc_provider provider;
220 
221 	spinlock_t lock;
222 
223 	struct {
224 		struct dentry *root;
225 	} debugfs;
226 };
227 
228 int tegra_mc_write_emem_configuration(struct tegra_mc *mc, unsigned long rate);
229 unsigned int tegra_mc_get_emem_device_count(struct tegra_mc *mc);
230 
231 #ifdef CONFIG_TEGRA_MC
232 struct tegra_mc *devm_tegra_memory_controller_get(struct device *dev);
233 int tegra_mc_probe_device(struct tegra_mc *mc, struct device *dev);
234 int tegra_mc_get_carveout_info(struct tegra_mc *mc, unsigned int id,
235                                phys_addr_t *base, u64 *size);
236 #else
237 static inline struct tegra_mc *
238 devm_tegra_memory_controller_get(struct device *dev)
239 {
240 	return ERR_PTR(-ENODEV);
241 }
242 
243 static inline int
244 tegra_mc_probe_device(struct tegra_mc *mc, struct device *dev)
245 {
246 	return -ENODEV;
247 }
248 
249 static inline int
250 tegra_mc_get_carveout_info(struct tegra_mc *mc, unsigned int id,
251                            phys_addr_t *base, u64 *size)
252 {
253 	return -ENODEV;
254 }
255 #endif
256 
257 #endif /* __SOC_TEGRA_MC_H__ */
258