xref: /linux/drivers/gpu/drm/panfrost/panfrost_gpu.c (revision 69050f8d6d075dc01af7a5f2f550a8067510366f)
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright 2018 Marty E. Plummer <hanetzer@startmail.com> */
3 /* Copyright 2019 Linaro, Ltd., Rob Herring <robh@kernel.org> */
4 /* Copyright 2019 Collabora ltd. */
5 #include <linux/bitfield.h>
6 #include <linux/bitmap.h>
7 #include <linux/delay.h>
8 #include <linux/dma-mapping.h>
9 #include <linux/interrupt.h>
10 #include <linux/io.h>
11 #include <linux/iopoll.h>
12 #include <linux/platform_device.h>
13 #include <linux/pm_runtime.h>
14 
15 #include <drm/drm_print.h>
16 
17 #include "panfrost_device.h"
18 #include "panfrost_features.h"
19 #include "panfrost_issues.h"
20 #include "panfrost_gpu.h"
21 #include "panfrost_perfcnt.h"
22 #include "panfrost_regs.h"
23 
24 static irqreturn_t panfrost_gpu_irq_handler(int irq, void *data)
25 {
26 	struct panfrost_device *pfdev = data;
27 	u32 fault_status, state;
28 
29 	if (test_bit(PANFROST_COMP_BIT_GPU, pfdev->is_suspended))
30 		return IRQ_NONE;
31 
32 	fault_status = gpu_read(pfdev, GPU_FAULT_STATUS);
33 	state = gpu_read(pfdev, GPU_INT_STAT);
34 	if (!state)
35 		return IRQ_NONE;
36 
37 	if (state & GPU_IRQ_MASK_ERROR) {
38 		u64 address = (u64) gpu_read(pfdev, GPU_FAULT_ADDRESS_HI) << 32;
39 		address |= gpu_read(pfdev, GPU_FAULT_ADDRESS_LO);
40 
41 		dev_warn(pfdev->base.dev, "GPU Fault 0x%08x (%s) at 0x%016llx\n",
42 			 fault_status, panfrost_exception_name(fault_status & 0xFF),
43 			 address);
44 
45 		if (state & GPU_IRQ_MULTIPLE_FAULT)
46 			dev_warn(pfdev->base.dev, "There were multiple GPU faults - some have not been reported\n");
47 
48 		gpu_write(pfdev, GPU_INT_MASK, 0);
49 	}
50 
51 	if (state & GPU_IRQ_PERFCNT_SAMPLE_COMPLETED)
52 		panfrost_perfcnt_sample_done(pfdev);
53 
54 	if (state & GPU_IRQ_CLEAN_CACHES_COMPLETED)
55 		panfrost_perfcnt_clean_cache_done(pfdev);
56 
57 	gpu_write(pfdev, GPU_INT_CLEAR, state);
58 
59 	return IRQ_HANDLED;
60 }
61 
62 int panfrost_gpu_soft_reset(struct panfrost_device *pfdev)
63 {
64 	int ret;
65 	u32 val;
66 
67 	gpu_write(pfdev, GPU_INT_MASK, 0);
68 	gpu_write(pfdev, GPU_INT_CLEAR, GPU_IRQ_RESET_COMPLETED);
69 
70 	clear_bit(PANFROST_COMP_BIT_GPU, pfdev->is_suspended);
71 
72 	gpu_write(pfdev, GPU_CMD, GPU_CMD_SOFT_RESET);
73 	ret = readl_relaxed_poll_timeout(pfdev->iomem + GPU_INT_RAWSTAT,
74 		val, val & GPU_IRQ_RESET_COMPLETED, 10, 10000);
75 
76 	if (ret) {
77 		dev_err(pfdev->base.dev, "gpu soft reset timed out, attempting hard reset\n");
78 
79 		gpu_write(pfdev, GPU_CMD, GPU_CMD_HARD_RESET);
80 		ret = readl_relaxed_poll_timeout(pfdev->iomem + GPU_INT_RAWSTAT, val,
81 						 val & GPU_IRQ_RESET_COMPLETED, 100, 10000);
82 		if (ret) {
83 			dev_err(pfdev->base.dev, "gpu hard reset timed out\n");
84 			return ret;
85 		}
86 	}
87 
88 	gpu_write(pfdev, GPU_INT_CLEAR, GPU_IRQ_MASK_ALL);
89 
90 	/* Only enable the interrupts we care about */
91 	gpu_write(pfdev, GPU_INT_MASK,
92 		  GPU_IRQ_MASK_ERROR |
93 		  GPU_IRQ_PERFCNT_SAMPLE_COMPLETED |
94 		  GPU_IRQ_CLEAN_CACHES_COMPLETED);
95 
96 	/*
97 	 * All in-flight jobs should have released their cycle
98 	 * counter references upon reset, but let us make sure
99 	 */
100 	if (drm_WARN_ON(&pfdev->base, atomic_read(&pfdev->cycle_counter.use_count) != 0))
101 		atomic_set(&pfdev->cycle_counter.use_count, 0);
102 
103 	return 0;
104 }
105 
106 void panfrost_gpu_amlogic_quirk(struct panfrost_device *pfdev)
107 {
108 	/*
109 	 * The Amlogic integrated Mali-T820, Mali-G31 & Mali-G52 needs
110 	 * these undocumented bits in GPU_PWR_OVERRIDE1 to be set in order
111 	 * to operate correctly.
112 	 */
113 	gpu_write(pfdev, GPU_PWR_KEY, GPU_PWR_KEY_UNLOCK);
114 	gpu_write(pfdev, GPU_PWR_OVERRIDE1, 0xfff | (0x20 << 16));
115 }
116 
117 static void panfrost_gpu_init_quirks(struct panfrost_device *pfdev)
118 {
119 	u32 quirks = 0;
120 
121 	if (panfrost_has_hw_issue(pfdev, HW_ISSUE_8443) ||
122 	    panfrost_has_hw_issue(pfdev, HW_ISSUE_11035))
123 		quirks |= SC_LS_PAUSEBUFFER_DISABLE;
124 
125 	if (panfrost_has_hw_issue(pfdev, HW_ISSUE_10327))
126 		quirks |= SC_SDC_DISABLE_OQ_DISCARD;
127 
128 	if (panfrost_has_hw_issue(pfdev, HW_ISSUE_10797))
129 		quirks |= SC_ENABLE_TEXGRD_FLAGS;
130 
131 	if (!panfrost_has_hw_issue(pfdev, GPUCORE_1619)) {
132 		if (panfrost_model_cmp(pfdev, 0x750) < 0) /* T60x, T62x, T72x */
133 			quirks |= SC_LS_ATTR_CHECK_DISABLE;
134 		else if (panfrost_model_cmp(pfdev, 0x880) <= 0) /* T76x, T8xx */
135 			quirks |= SC_LS_ALLOW_ATTR_TYPES;
136 	}
137 
138 	if (panfrost_has_hw_issue(pfdev, HW_ISSUE_TTRX_2968_TTRX_3162))
139 		quirks |= SC_VAR_ALGORITHM;
140 
141 	if (panfrost_has_hw_feature(pfdev, HW_FEATURE_TLS_HASHING))
142 		quirks |= SC_TLS_HASH_ENABLE;
143 
144 	if (quirks)
145 		gpu_write(pfdev, GPU_SHADER_CONFIG, quirks);
146 
147 
148 	quirks = gpu_read(pfdev, GPU_TILER_CONFIG);
149 
150 	/* Set tiler clock gate override if required */
151 	if (panfrost_has_hw_issue(pfdev, HW_ISSUE_T76X_3953))
152 		quirks |= TC_CLOCK_GATE_OVERRIDE;
153 
154 	gpu_write(pfdev, GPU_TILER_CONFIG, quirks);
155 
156 
157 	quirks = 0;
158 	if ((panfrost_model_eq(pfdev, 0x860) || panfrost_model_eq(pfdev, 0x880)) &&
159 	    pfdev->features.revision >= 0x2000)
160 		quirks |= JM_MAX_JOB_THROTTLE_LIMIT << JM_JOB_THROTTLE_LIMIT_SHIFT;
161 	else if (panfrost_model_eq(pfdev, 0x6000) &&
162 		 pfdev->features.coherency_features == BIT(COHERENCY_ACE))
163 		quirks |= (BIT(COHERENCY_ACE_LITE) | BIT(COHERENCY_ACE)) <<
164 			   JM_FORCE_COHERENCY_FEATURES_SHIFT;
165 
166 	if (panfrost_has_hw_feature(pfdev, HW_FEATURE_IDVS_GROUP_SIZE))
167 		quirks |= JM_DEFAULT_IDVS_GROUP_SIZE << JM_IDVS_GROUP_SIZE_SHIFT;
168 
169 	if (quirks)
170 		gpu_write(pfdev, GPU_JM_CONFIG, quirks);
171 
172 	/* Here goes platform specific quirks */
173 	if (pfdev->comp->vendor_quirk)
174 		pfdev->comp->vendor_quirk(pfdev);
175 }
176 
177 #define MAX_HW_REVS 6
178 
179 struct panfrost_model {
180 	const char *name;
181 	u32 id;
182 	u64 features;
183 	u64 issues;
184 	struct {
185 		u32 revision;
186 		u64 issues;
187 	} revs[MAX_HW_REVS];
188 };
189 
190 #define GPU_MODEL(_name, _id, ...) \
191 {\
192 	.name = __stringify(_name),				\
193 	.id = _id,						\
194 	.features = hw_features_##_name,			\
195 	.issues = hw_issues_##_name,				\
196 	.revs = { __VA_ARGS__ },				\
197 }
198 
199 #define GPU_REV_EXT(name, _rev, _p, _s, stat) \
200 {\
201 	.revision = (_rev) << 12 | (_p) << 4 | (_s),		\
202 	.issues = hw_issues_##name##_r##_rev##p##_p##stat,	\
203 }
204 #define GPU_REV(name, r, p) GPU_REV_EXT(name, r, p, 0, )
205 
206 static const struct panfrost_model gpu_models[] = {
207 	/* T60x has an oddball version */
208 	GPU_MODEL(t600, 0x600,
209 		GPU_REV_EXT(t600, 0, 0, 1, _15dev0)),
210 	GPU_MODEL(t620, 0x620,
211 		GPU_REV(t620, 0, 1), GPU_REV(t620, 1, 0)),
212 	GPU_MODEL(t720, 0x720),
213 	GPU_MODEL(t760, 0x750,
214 		GPU_REV(t760, 0, 0), GPU_REV(t760, 0, 1),
215 		GPU_REV_EXT(t760, 0, 1, 0, _50rel0),
216 		GPU_REV(t760, 0, 2), GPU_REV(t760, 0, 3)),
217 	GPU_MODEL(t820, 0x820),
218 	GPU_MODEL(t830, 0x830),
219 	GPU_MODEL(t860, 0x860),
220 	GPU_MODEL(t880, 0x880),
221 
222 	GPU_MODEL(g71, 0x6000,
223 		GPU_REV_EXT(g71, 0, 0, 1, _05dev0)),
224 	GPU_MODEL(g72, 0x6001),
225 	GPU_MODEL(g51, 0x7000),
226 	GPU_MODEL(g76, 0x7001),
227 	GPU_MODEL(g52, 0x7002),
228 	GPU_MODEL(g31, 0x7003,
229 		GPU_REV(g31, 1, 0)),
230 
231 	GPU_MODEL(g57, 0x9001,
232 		GPU_REV(g57, 0, 0)),
233 
234 	/* MediaTek MT8192 has a Mali-G57 with a different GPU ID from the
235 	 * standard. Arm's driver does not appear to handle this model.
236 	 * ChromeOS has a hack downstream for it. Treat it as equivalent to
237 	 * standard Mali-G57 for now.
238 	 */
239 	GPU_MODEL(g57, 0x9003,
240 		GPU_REV(g57, 0, 0)),
241 
242 	/* MediaTek MT8188 Mali-G57 MC3 */
243 	GPU_MODEL(g57, 0x9093,
244 		GPU_REV(g57, 0, 0)),
245 	{0},
246 };
247 
248 static int panfrost_gpu_init_features(struct panfrost_device *pfdev)
249 {
250 	u32 gpu_id, num_js, major, minor, status, rev;
251 	const char *name = "unknown";
252 	u64 hw_feat = 0;
253 	u64 hw_issues = hw_issues_all;
254 	const struct panfrost_model *model;
255 	int i;
256 
257 	pfdev->features.l2_features = gpu_read(pfdev, GPU_L2_FEATURES);
258 	pfdev->features.core_features = gpu_read(pfdev, GPU_CORE_FEATURES);
259 	pfdev->features.tiler_features = gpu_read(pfdev, GPU_TILER_FEATURES);
260 	pfdev->features.mem_features = gpu_read(pfdev, GPU_MEM_FEATURES);
261 	pfdev->features.mmu_features = gpu_read(pfdev, GPU_MMU_FEATURES);
262 	pfdev->features.thread_features = gpu_read(pfdev, GPU_THREAD_FEATURES);
263 	pfdev->features.max_threads = gpu_read(pfdev, GPU_THREAD_MAX_THREADS);
264 	pfdev->features.thread_max_workgroup_sz = gpu_read(pfdev, GPU_THREAD_MAX_WORKGROUP_SIZE);
265 	pfdev->features.thread_max_barrier_sz = gpu_read(pfdev, GPU_THREAD_MAX_BARRIER_SIZE);
266 
267 	if (panfrost_has_hw_feature(pfdev, HW_FEATURE_COHERENCY_REG))
268 		pfdev->features.coherency_features = gpu_read(pfdev, GPU_COHERENCY_FEATURES);
269 	else
270 		pfdev->features.coherency_features = BIT(COHERENCY_ACE_LITE);
271 
272 	BUILD_BUG_ON(COHERENCY_ACE_LITE != DRM_PANFROST_GPU_COHERENCY_ACE_LITE);
273 	BUILD_BUG_ON(COHERENCY_ACE != DRM_PANFROST_GPU_COHERENCY_ACE);
274 	BUILD_BUG_ON(COHERENCY_NONE != DRM_PANFROST_GPU_COHERENCY_NONE);
275 
276 	if (!pfdev->coherent) {
277 		pfdev->features.selected_coherency = COHERENCY_NONE;
278 	} else if (pfdev->features.coherency_features & BIT(COHERENCY_ACE)) {
279 		pfdev->features.selected_coherency = COHERENCY_ACE;
280 	} else if (pfdev->features.coherency_features & BIT(COHERENCY_ACE_LITE)) {
281 		pfdev->features.selected_coherency = COHERENCY_ACE_LITE;
282 	} else {
283 		drm_WARN(&pfdev->base, true, "No known coherency protocol supported");
284 		pfdev->features.selected_coherency = COHERENCY_NONE;
285 	}
286 
287 	pfdev->features.afbc_features = gpu_read(pfdev, GPU_AFBC_FEATURES);
288 	for (i = 0; i < 4; i++)
289 		pfdev->features.texture_features[i] = gpu_read(pfdev, GPU_TEXTURE_FEATURES(i));
290 
291 	pfdev->features.as_present = gpu_read(pfdev, GPU_AS_PRESENT);
292 
293 	pfdev->features.js_present = gpu_read(pfdev, GPU_JS_PRESENT);
294 	num_js = hweight32(pfdev->features.js_present);
295 	for (i = 0; i < num_js; i++)
296 		pfdev->features.js_features[i] = gpu_read(pfdev, GPU_JS_FEATURES(i));
297 
298 	pfdev->features.shader_present = gpu_read(pfdev, GPU_SHADER_PRESENT_LO);
299 	pfdev->features.shader_present |= (u64)gpu_read(pfdev, GPU_SHADER_PRESENT_HI) << 32;
300 
301 	pfdev->features.tiler_present = gpu_read(pfdev, GPU_TILER_PRESENT_LO);
302 	pfdev->features.tiler_present |= (u64)gpu_read(pfdev, GPU_TILER_PRESENT_HI) << 32;
303 
304 	pfdev->features.l2_present = gpu_read(pfdev, GPU_L2_PRESENT_LO);
305 	pfdev->features.l2_present |= (u64)gpu_read(pfdev, GPU_L2_PRESENT_HI) << 32;
306 	pfdev->features.nr_core_groups = hweight64(pfdev->features.l2_present);
307 
308 	pfdev->features.stack_present = gpu_read(pfdev, GPU_STACK_PRESENT_LO);
309 	pfdev->features.stack_present |= (u64)gpu_read(pfdev, GPU_STACK_PRESENT_HI) << 32;
310 
311 	pfdev->features.thread_tls_alloc = gpu_read(pfdev, GPU_THREAD_TLS_ALLOC);
312 
313 	gpu_id = gpu_read(pfdev, GPU_ID);
314 	pfdev->features.revision = gpu_id & 0xffff;
315 	pfdev->features.id = gpu_id >> 16;
316 
317 	/* The T60x has an oddball ID value. Fix it up to the standard Midgard
318 	 * format so we (and userspace) don't have to special case it.
319 	 */
320 	if (pfdev->features.id == 0x6956)
321 		pfdev->features.id = 0x0600;
322 
323 	major = (pfdev->features.revision >> 12) & 0xf;
324 	minor = (pfdev->features.revision >> 4) & 0xff;
325 	status = pfdev->features.revision & 0xf;
326 	rev = pfdev->features.revision;
327 
328 	gpu_id = pfdev->features.id;
329 
330 	for (model = gpu_models; model->name; model++) {
331 		int best = -1;
332 
333 		if (!panfrost_model_eq(pfdev, model->id))
334 			continue;
335 
336 		name = model->name;
337 		hw_feat = model->features;
338 		hw_issues |= model->issues;
339 		for (i = 0; i < MAX_HW_REVS; i++) {
340 			if (model->revs[i].revision == rev) {
341 				best = i;
342 				break;
343 			} else if (model->revs[i].revision == (rev & ~0xf))
344 				best = i;
345 		}
346 
347 		if (best >= 0)
348 			hw_issues |= model->revs[best].issues;
349 
350 		break;
351 	}
352 
353 	if (!model->name) {
354 		dev_err(pfdev->base.dev, "GPU model not found: mali-%s id rev %#x %#x\n",
355 			name, gpu_id, rev);
356 		return -ENODEV;
357 	}
358 
359 	bitmap_from_u64(pfdev->features.hw_features, hw_feat);
360 	bitmap_from_u64(pfdev->features.hw_issues, hw_issues);
361 
362 	dev_info(pfdev->base.dev, "mali-%s id 0x%x major 0x%x minor 0x%x status 0x%x",
363 		 name, gpu_id, major, minor, status);
364 	dev_info(pfdev->base.dev, "features: %64pb, issues: %64pb",
365 		 pfdev->features.hw_features,
366 		 pfdev->features.hw_issues);
367 
368 	dev_info(pfdev->base.dev, "Features: L2:0x%08x Shader:0x%08x Tiler:0x%08x Mem:0x%0x MMU:0x%08x AS:0x%x JS:0x%x",
369 		 pfdev->features.l2_features,
370 		 pfdev->features.core_features,
371 		 pfdev->features.tiler_features,
372 		 pfdev->features.mem_features,
373 		 pfdev->features.mmu_features,
374 		 pfdev->features.as_present,
375 		 pfdev->features.js_present);
376 
377 	dev_info(pfdev->base.dev, "shader_present=0x%0llx l2_present=0x%0llx",
378 		 pfdev->features.shader_present, pfdev->features.l2_present);
379 
380 	return 0;
381 }
382 
383 void panfrost_cycle_counter_get(struct panfrost_device *pfdev)
384 {
385 	if (atomic_inc_not_zero(&pfdev->cycle_counter.use_count))
386 		return;
387 
388 	spin_lock(&pfdev->cycle_counter.lock);
389 	if (atomic_inc_return(&pfdev->cycle_counter.use_count) == 1)
390 		gpu_write(pfdev, GPU_CMD, GPU_CMD_CYCLE_COUNT_START);
391 	spin_unlock(&pfdev->cycle_counter.lock);
392 }
393 
394 void panfrost_cycle_counter_put(struct panfrost_device *pfdev)
395 {
396 	if (atomic_add_unless(&pfdev->cycle_counter.use_count, -1, 1))
397 		return;
398 
399 	spin_lock(&pfdev->cycle_counter.lock);
400 	if (atomic_dec_return(&pfdev->cycle_counter.use_count) == 0)
401 		gpu_write(pfdev, GPU_CMD, GPU_CMD_CYCLE_COUNT_STOP);
402 	spin_unlock(&pfdev->cycle_counter.lock);
403 }
404 
405 unsigned long long panfrost_cycle_counter_read(struct panfrost_device *pfdev)
406 {
407 	u32 hi, lo;
408 
409 	do {
410 		hi = gpu_read(pfdev, GPU_CYCLE_COUNT_HI);
411 		lo = gpu_read(pfdev, GPU_CYCLE_COUNT_LO);
412 	} while (hi != gpu_read(pfdev, GPU_CYCLE_COUNT_HI));
413 
414 	return ((u64)hi << 32) | lo;
415 }
416 
417 unsigned long long panfrost_timestamp_read(struct panfrost_device *pfdev)
418 {
419 	u32 hi, lo;
420 
421 	do {
422 		hi = gpu_read(pfdev, GPU_TIMESTAMP_HI);
423 		lo = gpu_read(pfdev, GPU_TIMESTAMP_LO);
424 	} while (hi != gpu_read(pfdev, GPU_TIMESTAMP_HI));
425 
426 	return ((u64)hi << 32) | lo;
427 }
428 
429 static u64 panfrost_get_core_mask(struct panfrost_device *pfdev)
430 {
431 	u64 core_mask;
432 
433 	if (pfdev->features.l2_present == 1)
434 		return U64_MAX;
435 
436 	/*
437 	 * Only support one core group now.
438 	 * ~(l2_present - 1) unsets all bits in l2_present except
439 	 * the bottom bit. (l2_present - 2) has all the bits in
440 	 * the first core group set. AND them together to generate
441 	 * a mask of cores in the first core group.
442 	 */
443 	core_mask = ~(pfdev->features.l2_present - 1) &
444 		     (pfdev->features.l2_present - 2);
445 	dev_info_once(pfdev->base.dev, "using only 1st core group (%lu cores from %lu)\n",
446 		      hweight64(core_mask),
447 		      hweight64(pfdev->features.shader_present));
448 
449 	return core_mask;
450 }
451 
452 void panfrost_gpu_power_on(struct panfrost_device *pfdev)
453 {
454 	int ret;
455 	u32 val;
456 	u64 core_mask;
457 
458 	panfrost_gpu_init_quirks(pfdev);
459 	core_mask = panfrost_get_core_mask(pfdev);
460 
461 	gpu_write(pfdev, L2_PWRON_LO, pfdev->features.l2_present & core_mask);
462 	ret = readl_relaxed_poll_timeout(pfdev->iomem + L2_READY_LO,
463 		val, val == (pfdev->features.l2_present & core_mask),
464 		10, 20000);
465 	if (ret)
466 		dev_err(pfdev->base.dev, "error powering up gpu L2");
467 
468 	gpu_write(pfdev, SHADER_PWRON_LO,
469 		  pfdev->features.shader_present & core_mask);
470 	ret = readl_relaxed_poll_timeout(pfdev->iomem + SHADER_READY_LO,
471 		val, val == (pfdev->features.shader_present & core_mask),
472 		10, 20000);
473 	if (ret)
474 		dev_err(pfdev->base.dev, "error powering up gpu shader");
475 
476 	gpu_write(pfdev, TILER_PWRON_LO, pfdev->features.tiler_present);
477 	ret = readl_relaxed_poll_timeout(pfdev->iomem + TILER_READY_LO,
478 		val, val == pfdev->features.tiler_present, 10, 1000);
479 	if (ret)
480 		dev_err(pfdev->base.dev, "error powering up gpu tiler");
481 }
482 
483 void panfrost_gpu_power_off(struct panfrost_device *pfdev)
484 {
485 	int ret;
486 	u32 val;
487 
488 	gpu_write(pfdev, SHADER_PWROFF_LO, pfdev->features.shader_present);
489 	ret = readl_relaxed_poll_timeout(pfdev->iomem + SHADER_PWRTRANS_LO,
490 					 val, !val, 1, 2000);
491 	if (ret)
492 		dev_err(pfdev->base.dev, "shader power transition timeout");
493 
494 	gpu_write(pfdev, TILER_PWROFF_LO, pfdev->features.tiler_present);
495 	ret = readl_relaxed_poll_timeout(pfdev->iomem + TILER_PWRTRANS_LO,
496 					 val, !val, 1, 2000);
497 	if (ret)
498 		dev_err(pfdev->base.dev, "tiler power transition timeout");
499 
500 	gpu_write(pfdev, L2_PWROFF_LO, pfdev->features.l2_present);
501 	ret = readl_poll_timeout(pfdev->iomem + L2_PWRTRANS_LO,
502 				 val, !val, 0, 2000);
503 	if (ret)
504 		dev_err(pfdev->base.dev, "l2 power transition timeout");
505 }
506 
507 void panfrost_gpu_suspend_irq(struct panfrost_device *pfdev)
508 {
509 	set_bit(PANFROST_COMP_BIT_GPU, pfdev->is_suspended);
510 
511 	gpu_write(pfdev, GPU_INT_MASK, 0);
512 	synchronize_irq(pfdev->gpu_irq);
513 }
514 
515 int panfrost_gpu_init(struct panfrost_device *pfdev)
516 {
517 	int err;
518 
519 	err = panfrost_gpu_soft_reset(pfdev);
520 	if (err)
521 		return err;
522 
523 	err = panfrost_gpu_init_features(pfdev);
524 	if (err)
525 		return err;
526 
527 	err = dma_set_mask_and_coherent(pfdev->base.dev,
528 					DMA_BIT_MASK(FIELD_GET(0xff00,
529 							       pfdev->features.mmu_features)));
530 	if (err)
531 		return err;
532 
533 	dma_set_max_seg_size(pfdev->base.dev, UINT_MAX);
534 
535 	pfdev->gpu_irq = platform_get_irq_byname(to_platform_device(pfdev->base.dev), "gpu");
536 	if (pfdev->gpu_irq < 0)
537 		return pfdev->gpu_irq;
538 
539 	err = devm_request_irq(pfdev->base.dev, pfdev->gpu_irq, panfrost_gpu_irq_handler,
540 			       IRQF_SHARED, KBUILD_MODNAME "-gpu", pfdev);
541 	if (err) {
542 		dev_err(pfdev->base.dev, "failed to request gpu irq");
543 		return err;
544 	}
545 
546 	panfrost_gpu_power_on(pfdev);
547 
548 	return 0;
549 }
550 
551 void panfrost_gpu_fini(struct panfrost_device *pfdev)
552 {
553 	panfrost_gpu_power_off(pfdev);
554 }
555 
556 u32 panfrost_gpu_get_latest_flush_id(struct panfrost_device *pfdev)
557 {
558 	u32 flush_id;
559 
560 	if (panfrost_has_hw_feature(pfdev, HW_FEATURE_FLUSH_REDUCTION)) {
561 		/* Flush reduction only makes sense when the GPU is kept powered on between jobs */
562 		if (pm_runtime_get_if_in_use(pfdev->base.dev)) {
563 			flush_id = gpu_read(pfdev, GPU_LATEST_FLUSH_ID);
564 			pm_runtime_put(pfdev->base.dev);
565 			return flush_id;
566 		}
567 	}
568 
569 	return 0;
570 }
571