• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (C) 2013 Red Hat
4  * Author: Rob Clark <robdclark@gmail.com>
5  *
6  * Copyright (c) 2014,2017, 2019 The Linux Foundation. All rights reserved.
7  */
8 
9 #ifndef __ADRENO_GPU_H__
10 #define __ADRENO_GPU_H__
11 
12 #include <linux/firmware.h>
13 #include <linux/iopoll.h>
14 
15 #include "msm_gpu.h"
16 
17 #include "adreno_common.xml.h"
18 #include "adreno_pm4.xml.h"
19 
20 extern bool snapshot_debugbus;
21 extern bool allow_vram_carveout;
22 
23 enum {
24 	ADRENO_FW_PM4 = 0,
25 	ADRENO_FW_SQE = 0, /* a6xx */
26 	ADRENO_FW_PFP = 1,
27 	ADRENO_FW_GMU = 1, /* a6xx */
28 	ADRENO_FW_GPMU = 2,
29 	ADRENO_FW_MAX,
30 };
31 
32 #define ADRENO_QUIRK_TWO_PASS_USE_WFI		BIT(0)
33 #define ADRENO_QUIRK_FAULT_DETECT_MASK		BIT(1)
34 #define ADRENO_QUIRK_LMLOADKILL_DISABLE		BIT(2)
35 
36 struct adreno_rev {
37 	uint8_t  core;
38 	uint8_t  major;
39 	uint8_t  minor;
40 	uint8_t  patchid;
41 };
42 
43 #define ANY_ID 0xff
44 
45 #define ADRENO_REV(core, major, minor, patchid) \
46 	((struct adreno_rev){ core, major, minor, patchid })
47 
48 struct adreno_gpu_funcs {
49 	struct msm_gpu_funcs base;
50 	int (*get_timestamp)(struct msm_gpu *gpu, uint64_t *value);
51 };
52 
53 struct adreno_reglist {
54 	u32 offset;
55 	u32 value;
56 };
57 
58 extern const struct adreno_reglist a630_hwcg[], a640_hwcg[], a650_hwcg[], a660_hwcg[];
59 
60 struct adreno_info {
61 	struct adreno_rev rev;
62 	uint32_t revn;
63 	const char *name;
64 	const char *fw[ADRENO_FW_MAX];
65 	uint32_t gmem;
66 	u64 quirks;
67 	struct msm_gpu *(*init)(struct drm_device *dev);
68 	const char *zapfw;
69 	u32 inactive_period;
70 	const struct adreno_reglist *hwcg;
71 };
72 
73 const struct adreno_info *adreno_info(struct adreno_rev rev);
74 
75 struct adreno_gpu {
76 	struct msm_gpu base;
77 	struct adreno_rev rev;
78 	const struct adreno_info *info;
79 	uint32_t gmem;  /* actual gmem size */
80 	uint32_t revn;  /* numeric revision name */
81 	const struct adreno_gpu_funcs *funcs;
82 
83 	/* interesting register offsets to dump: */
84 	const unsigned int *registers;
85 
86 	/*
87 	 * Are we loading fw from legacy path?  Prior to addition
88 	 * of gpu firmware to linux-firmware, the fw files were
89 	 * placed in toplevel firmware directory, following qcom's
90 	 * android kernel.  But linux-firmware preferred they be
91 	 * placed in a 'qcom' subdirectory.
92 	 *
93 	 * For backwards compatibility, we try first to load from
94 	 * the new path, using request_firmware_direct() to avoid
95 	 * any potential timeout waiting for usermode helper, then
96 	 * fall back to the old path (with direct load).  And
97 	 * finally fall back to request_firmware() with the new
98 	 * path to allow the usermode helper.
99 	 */
100 	enum {
101 		FW_LOCATION_UNKNOWN = 0,
102 		FW_LOCATION_NEW,       /* /lib/firmware/qcom/$fwfile */
103 		FW_LOCATION_LEGACY,    /* /lib/firmware/$fwfile */
104 		FW_LOCATION_HELPER,
105 	} fwloc;
106 
107 	/* firmware: */
108 	const struct firmware *fw[ADRENO_FW_MAX];
109 
110 	/*
111 	 * Register offsets are different between some GPUs.
112 	 * GPU specific offsets will be exported by GPU specific
113 	 * code (a3xx_gpu.c) and stored in this common location.
114 	 */
115 	const unsigned int *reg_offsets;
116 };
117 #define to_adreno_gpu(x) container_of(x, struct adreno_gpu, base)
118 
119 struct adreno_ocmem {
120 	struct ocmem *ocmem;
121 	unsigned long base;
122 	void *hdl;
123 };
124 
125 /* platform config data (ie. from DT, or pdata) */
126 struct adreno_platform_config {
127 	struct adreno_rev rev;
128 };
129 
130 #define ADRENO_IDLE_TIMEOUT msecs_to_jiffies(1000)
131 
132 #define spin_until(X) ({                                   \
133 	int __ret = -ETIMEDOUT;                            \
134 	unsigned long __t = jiffies + ADRENO_IDLE_TIMEOUT; \
135 	do {                                               \
136 		if (X) {                                   \
137 			__ret = 0;                         \
138 			break;                             \
139 		}                                          \
140 	} while (time_before(jiffies, __t));               \
141 	__ret;                                             \
142 })
143 
144 bool adreno_cmp_rev(struct adreno_rev rev1, struct adreno_rev rev2);
145 
adreno_is_a2xx(struct adreno_gpu * gpu)146 static inline bool adreno_is_a2xx(struct adreno_gpu *gpu)
147 {
148 	return (gpu->revn < 300);
149 }
150 
adreno_is_a20x(struct adreno_gpu * gpu)151 static inline bool adreno_is_a20x(struct adreno_gpu *gpu)
152 {
153 	return (gpu->revn < 210);
154 }
155 
adreno_is_a225(struct adreno_gpu * gpu)156 static inline bool adreno_is_a225(struct adreno_gpu *gpu)
157 {
158 	return gpu->revn == 225;
159 }
160 
adreno_is_a305(struct adreno_gpu * gpu)161 static inline bool adreno_is_a305(struct adreno_gpu *gpu)
162 {
163 	return gpu->revn == 305;
164 }
165 
adreno_is_a306(struct adreno_gpu * gpu)166 static inline bool adreno_is_a306(struct adreno_gpu *gpu)
167 {
168 	/* yes, 307, because a305c is 306 */
169 	return gpu->revn == 307;
170 }
171 
adreno_is_a320(struct adreno_gpu * gpu)172 static inline bool adreno_is_a320(struct adreno_gpu *gpu)
173 {
174 	return gpu->revn == 320;
175 }
176 
adreno_is_a330(struct adreno_gpu * gpu)177 static inline bool adreno_is_a330(struct adreno_gpu *gpu)
178 {
179 	return gpu->revn == 330;
180 }
181 
adreno_is_a330v2(struct adreno_gpu * gpu)182 static inline bool adreno_is_a330v2(struct adreno_gpu *gpu)
183 {
184 	return adreno_is_a330(gpu) && (gpu->rev.patchid > 0);
185 }
186 
adreno_is_a405(struct adreno_gpu * gpu)187 static inline int adreno_is_a405(struct adreno_gpu *gpu)
188 {
189 	return gpu->revn == 405;
190 }
191 
adreno_is_a420(struct adreno_gpu * gpu)192 static inline int adreno_is_a420(struct adreno_gpu *gpu)
193 {
194 	return gpu->revn == 420;
195 }
196 
adreno_is_a430(struct adreno_gpu * gpu)197 static inline int adreno_is_a430(struct adreno_gpu *gpu)
198 {
199        return gpu->revn == 430;
200 }
201 
adreno_is_a508(struct adreno_gpu * gpu)202 static inline int adreno_is_a508(struct adreno_gpu *gpu)
203 {
204 	return gpu->revn == 508;
205 }
206 
adreno_is_a509(struct adreno_gpu * gpu)207 static inline int adreno_is_a509(struct adreno_gpu *gpu)
208 {
209 	return gpu->revn == 509;
210 }
211 
adreno_is_a510(struct adreno_gpu * gpu)212 static inline int adreno_is_a510(struct adreno_gpu *gpu)
213 {
214 	return gpu->revn == 510;
215 }
216 
adreno_is_a512(struct adreno_gpu * gpu)217 static inline int adreno_is_a512(struct adreno_gpu *gpu)
218 {
219 	return gpu->revn == 512;
220 }
221 
adreno_is_a530(struct adreno_gpu * gpu)222 static inline int adreno_is_a530(struct adreno_gpu *gpu)
223 {
224 	return gpu->revn == 530;
225 }
226 
adreno_is_a540(struct adreno_gpu * gpu)227 static inline int adreno_is_a540(struct adreno_gpu *gpu)
228 {
229 	return gpu->revn == 540;
230 }
231 
adreno_is_a618(struct adreno_gpu * gpu)232 static inline int adreno_is_a618(struct adreno_gpu *gpu)
233 {
234        return gpu->revn == 618;
235 }
236 
adreno_is_a630(struct adreno_gpu * gpu)237 static inline int adreno_is_a630(struct adreno_gpu *gpu)
238 {
239        return gpu->revn == 630;
240 }
241 
adreno_is_a640_family(struct adreno_gpu * gpu)242 static inline int adreno_is_a640_family(struct adreno_gpu *gpu)
243 {
244 	return (gpu->revn == 640) || (gpu->revn == 680);
245 }
246 
adreno_is_a650(struct adreno_gpu * gpu)247 static inline int adreno_is_a650(struct adreno_gpu *gpu)
248 {
249        return gpu->revn == 650;
250 }
251 
adreno_is_7c3(struct adreno_gpu * gpu)252 static inline int adreno_is_7c3(struct adreno_gpu *gpu)
253 {
254 	/* The order of args is important here to handle ANY_ID correctly */
255        return adreno_cmp_rev(ADRENO_REV(6, 3, 5, ANY_ID), gpu->rev);
256 }
257 
adreno_is_a660(struct adreno_gpu * gpu)258 static inline int adreno_is_a660(struct adreno_gpu *gpu)
259 {
260        return gpu->revn == 660;
261 }
262 
adreno_is_a660_family(struct adreno_gpu * gpu)263 static inline int adreno_is_a660_family(struct adreno_gpu *gpu)
264 {
265        return adreno_is_a660(gpu) || adreno_is_7c3(gpu);
266 }
267 
268 /* check for a650, a660, or any derivatives */
adreno_is_a650_family(struct adreno_gpu * gpu)269 static inline int adreno_is_a650_family(struct adreno_gpu *gpu)
270 {
271        return gpu->revn == 650 || gpu->revn == 620 ||
272 	       adreno_is_a660_family(gpu);
273 }
274 
275 int adreno_get_param(struct msm_gpu *gpu, uint32_t param, uint64_t *value);
276 const struct firmware *adreno_request_fw(struct adreno_gpu *adreno_gpu,
277 		const char *fwname);
278 struct drm_gem_object *adreno_fw_create_bo(struct msm_gpu *gpu,
279 		const struct firmware *fw, u64 *iova);
280 int adreno_hw_init(struct msm_gpu *gpu);
281 void adreno_recover(struct msm_gpu *gpu);
282 void adreno_flush(struct msm_gpu *gpu, struct msm_ringbuffer *ring, u32 reg);
283 bool adreno_idle(struct msm_gpu *gpu, struct msm_ringbuffer *ring);
284 #if defined(CONFIG_DEBUG_FS) || defined(CONFIG_DEV_COREDUMP)
285 void adreno_show(struct msm_gpu *gpu, struct msm_gpu_state *state,
286 		struct drm_printer *p);
287 #endif
288 void adreno_dump_info(struct msm_gpu *gpu);
289 void adreno_dump(struct msm_gpu *gpu);
290 void adreno_wait_ring(struct msm_ringbuffer *ring, uint32_t ndwords);
291 struct msm_ringbuffer *adreno_active_ring(struct msm_gpu *gpu);
292 
293 int adreno_gpu_ocmem_init(struct device *dev, struct adreno_gpu *adreno_gpu,
294 			  struct adreno_ocmem *ocmem);
295 void adreno_gpu_ocmem_cleanup(struct adreno_ocmem *ocmem);
296 
297 int adreno_gpu_init(struct drm_device *drm, struct platform_device *pdev,
298 		struct adreno_gpu *gpu, const struct adreno_gpu_funcs *funcs,
299 		int nr_rings);
300 void adreno_gpu_cleanup(struct adreno_gpu *gpu);
301 int adreno_load_fw(struct adreno_gpu *adreno_gpu);
302 
303 void adreno_gpu_state_destroy(struct msm_gpu_state *state);
304 
305 int adreno_gpu_state_get(struct msm_gpu *gpu, struct msm_gpu_state *state);
306 int adreno_gpu_state_put(struct msm_gpu_state *state);
307 
308 /*
309  * Common helper function to initialize the default address space for arm-smmu
310  * attached targets
311  */
312 struct msm_gem_address_space *
313 adreno_iommu_create_address_space(struct msm_gpu *gpu,
314 		struct platform_device *pdev);
315 
316 void adreno_set_llc_attributes(struct iommu_domain *iommu);
317 
318 /*
319  * For a5xx and a6xx targets load the zap shader that is used to pull the GPU
320  * out of secure mode
321  */
322 int adreno_zap_shader_load(struct msm_gpu *gpu, u32 pasid);
323 
324 /* ringbuffer helpers (the parts that are adreno specific) */
325 
326 static inline void
OUT_PKT0(struct msm_ringbuffer * ring,uint16_t regindx,uint16_t cnt)327 OUT_PKT0(struct msm_ringbuffer *ring, uint16_t regindx, uint16_t cnt)
328 {
329 	adreno_wait_ring(ring, cnt+1);
330 	OUT_RING(ring, CP_TYPE0_PKT | ((cnt-1) << 16) | (regindx & 0x7FFF));
331 }
332 
333 /* no-op packet: */
334 static inline void
OUT_PKT2(struct msm_ringbuffer * ring)335 OUT_PKT2(struct msm_ringbuffer *ring)
336 {
337 	adreno_wait_ring(ring, 1);
338 	OUT_RING(ring, CP_TYPE2_PKT);
339 }
340 
341 static inline void
OUT_PKT3(struct msm_ringbuffer * ring,uint8_t opcode,uint16_t cnt)342 OUT_PKT3(struct msm_ringbuffer *ring, uint8_t opcode, uint16_t cnt)
343 {
344 	adreno_wait_ring(ring, cnt+1);
345 	OUT_RING(ring, CP_TYPE3_PKT | ((cnt-1) << 16) | ((opcode & 0xFF) << 8));
346 }
347 
PM4_PARITY(u32 val)348 static inline u32 PM4_PARITY(u32 val)
349 {
350 	return (0x9669 >> (0xF & (val ^
351 		(val >> 4) ^ (val >> 8) ^ (val >> 12) ^
352 		(val >> 16) ^ ((val) >> 20) ^ (val >> 24) ^
353 		(val >> 28)))) & 1;
354 }
355 
356 /* Maximum number of values that can be executed for one opcode */
357 #define TYPE4_MAX_PAYLOAD 127
358 
359 #define PKT4(_reg, _cnt) \
360 	(CP_TYPE4_PKT | ((_cnt) << 0) | (PM4_PARITY((_cnt)) << 7) | \
361 	 (((_reg) & 0x3FFFF) << 8) | (PM4_PARITY((_reg)) << 27))
362 
363 static inline void
OUT_PKT4(struct msm_ringbuffer * ring,uint16_t regindx,uint16_t cnt)364 OUT_PKT4(struct msm_ringbuffer *ring, uint16_t regindx, uint16_t cnt)
365 {
366 	adreno_wait_ring(ring, cnt + 1);
367 	OUT_RING(ring, PKT4(regindx, cnt));
368 }
369 
370 static inline void
OUT_PKT7(struct msm_ringbuffer * ring,uint8_t opcode,uint16_t cnt)371 OUT_PKT7(struct msm_ringbuffer *ring, uint8_t opcode, uint16_t cnt)
372 {
373 	adreno_wait_ring(ring, cnt + 1);
374 	OUT_RING(ring, CP_TYPE7_PKT | (cnt << 0) | (PM4_PARITY(cnt) << 15) |
375 		((opcode & 0x7F) << 16) | (PM4_PARITY(opcode) << 23));
376 }
377 
378 struct msm_gpu *a2xx_gpu_init(struct drm_device *dev);
379 struct msm_gpu *a3xx_gpu_init(struct drm_device *dev);
380 struct msm_gpu *a4xx_gpu_init(struct drm_device *dev);
381 struct msm_gpu *a5xx_gpu_init(struct drm_device *dev);
382 struct msm_gpu *a6xx_gpu_init(struct drm_device *dev);
383 
get_wptr(struct msm_ringbuffer * ring)384 static inline uint32_t get_wptr(struct msm_ringbuffer *ring)
385 {
386 	return (ring->cur - ring->start) % (MSM_GPU_RINGBUFFER_SZ >> 2);
387 }
388 
389 /*
390  * Given a register and a count, return a value to program into
391  * REG_CP_PROTECT_REG(n) - this will block both reads and writes for _len
392  * registers starting at _reg.
393  *
394  * The register base needs to be a multiple of the length. If it is not, the
395  * hardware will quietly mask off the bits for you and shift the size. For
396  * example, if you intend the protection to start at 0x07 for a length of 4
397  * (0x07-0x0A) the hardware will actually protect (0x04-0x07) which might
398  * expose registers you intended to protect!
399  */
400 #define ADRENO_PROTECT_RW(_reg, _len) \
401 	((1 << 30) | (1 << 29) | \
402 	((ilog2((_len)) & 0x1F) << 24) | (((_reg) << 2) & 0xFFFFF))
403 
404 /*
405  * Same as above, but allow reads over the range. For areas of mixed use (such
406  * as performance counters) this allows us to protect a much larger range with a
407  * single register
408  */
409 #define ADRENO_PROTECT_RDONLY(_reg, _len) \
410 	((1 << 29) \
411 	((ilog2((_len)) & 0x1F) << 24) | (((_reg) << 2) & 0xFFFFF))
412 
413 
414 #define gpu_poll_timeout(gpu, addr, val, cond, interval, timeout) \
415 	readl_poll_timeout((gpu)->mmio + ((addr) << 2), val, cond, \
416 		interval, timeout)
417 
418 #endif /* __ADRENO_GPU_H__ */
419