xref: /linux/drivers/gpu/drm/panthor/panthor_fw.c (revision 21ef2d065ad3f0cfbf2ae51260bf962a9fa2c643)
1 // SPDX-License-Identifier: GPL-2.0 or MIT
2 /* Copyright 2023 Collabora ltd. */
3 
4 #ifdef CONFIG_ARM_ARCH_TIMER
5 #include <asm/arch_timer.h>
6 #endif
7 
8 #include <linux/clk.h>
9 #include <linux/dma-mapping.h>
10 #include <linux/firmware.h>
11 #include <linux/iopoll.h>
12 #include <linux/iosys-map.h>
13 #include <linux/mutex.h>
14 #include <linux/platform_device.h>
15 #include <linux/pm_runtime.h>
16 
17 #include <drm/drm_drv.h>
18 #include <drm/drm_managed.h>
19 #include <drm/drm_print.h>
20 
21 #include "panthor_device.h"
22 #include "panthor_fw.h"
23 #include "panthor_fw_regs.h"
24 #include "panthor_gem.h"
25 #include "panthor_gpu.h"
26 #include "panthor_hw.h"
27 #include "panthor_mmu.h"
28 #include "panthor_sched.h"
29 #include "panthor_trace.h"
30 
31 #define CSF_FW_NAME "mali_csffw.bin"
32 
33 #define PING_INTERVAL_MS			12000
34 #define PROGRESS_TIMEOUT_CYCLES			(5ull * 500 * 1024 * 1024)
35 #define PROGRESS_TIMEOUT_SCALE_SHIFT		10
36 #define IDLE_HYSTERESIS_US			800
37 #define PWROFF_HYSTERESIS_US			10000
38 #define MCU_HALT_TIMEOUT_US			(1ULL * USEC_PER_SEC)
39 
40 /**
41  * struct panthor_fw_binary_hdr - Firmware binary header.
42  */
43 struct panthor_fw_binary_hdr {
44 	/** @magic: Magic value to check binary validity. */
45 	u32 magic;
46 #define CSF_FW_BINARY_HEADER_MAGIC		0xc3f13a6e
47 
48 	/** @minor: Minor FW version. */
49 	u8 minor;
50 
51 	/** @major: Major FW version. */
52 	u8 major;
53 #define CSF_FW_BINARY_HEADER_MAJOR_MAX		0
54 
55 	/** @padding1: MBZ. */
56 	u16 padding1;
57 
58 	/** @version_hash: FW version hash. */
59 	u32 version_hash;
60 
61 	/** @padding2: MBZ. */
62 	u32 padding2;
63 
64 	/** @size: FW binary size. */
65 	u32 size;
66 };
67 
68 /**
69  * enum panthor_fw_binary_entry_type - Firmware binary entry type
70  */
71 enum panthor_fw_binary_entry_type {
72 	/** @CSF_FW_BINARY_ENTRY_TYPE_IFACE: Host <-> FW interface. */
73 	CSF_FW_BINARY_ENTRY_TYPE_IFACE = 0,
74 
75 	/** @CSF_FW_BINARY_ENTRY_TYPE_CONFIG: FW config. */
76 	CSF_FW_BINARY_ENTRY_TYPE_CONFIG = 1,
77 
78 	/** @CSF_FW_BINARY_ENTRY_TYPE_FUTF_TEST: Unit-tests. */
79 	CSF_FW_BINARY_ENTRY_TYPE_FUTF_TEST = 2,
80 
81 	/** @CSF_FW_BINARY_ENTRY_TYPE_TRACE_BUFFER: Trace buffer interface. */
82 	CSF_FW_BINARY_ENTRY_TYPE_TRACE_BUFFER = 3,
83 
84 	/** @CSF_FW_BINARY_ENTRY_TYPE_TIMELINE_METADATA: Timeline metadata interface. */
85 	CSF_FW_BINARY_ENTRY_TYPE_TIMELINE_METADATA = 4,
86 
87 	/**
88 	 * @CSF_FW_BINARY_ENTRY_TYPE_BUILD_INFO_METADATA: Metadata about how
89 	 * the FW binary was built.
90 	 */
91 	CSF_FW_BINARY_ENTRY_TYPE_BUILD_INFO_METADATA = 6
92 };
93 
94 #define CSF_FW_BINARY_ENTRY_TYPE(ehdr)					((ehdr) & 0xff)
95 #define CSF_FW_BINARY_ENTRY_SIZE(ehdr)					(((ehdr) >> 8) & 0xff)
96 #define CSF_FW_BINARY_ENTRY_UPDATE					BIT(30)
97 #define CSF_FW_BINARY_ENTRY_OPTIONAL					BIT(31)
98 
99 #define CSF_FW_BINARY_IFACE_ENTRY_RD					BIT(0)
100 #define CSF_FW_BINARY_IFACE_ENTRY_WR					BIT(1)
101 #define CSF_FW_BINARY_IFACE_ENTRY_EX					BIT(2)
102 #define CSF_FW_BINARY_IFACE_ENTRY_CACHE_MODE_NONE			(0 << 3)
103 #define CSF_FW_BINARY_IFACE_ENTRY_CACHE_MODE_CACHED			(1 << 3)
104 #define CSF_FW_BINARY_IFACE_ENTRY_CACHE_MODE_UNCACHED_COHERENT		(2 << 3)
105 #define CSF_FW_BINARY_IFACE_ENTRY_CACHE_MODE_CACHED_COHERENT		(3 << 3)
106 #define CSF_FW_BINARY_IFACE_ENTRY_CACHE_MODE_MASK			GENMASK(4, 3)
107 #define CSF_FW_BINARY_IFACE_ENTRY_PROT					BIT(5)
108 #define CSF_FW_BINARY_IFACE_ENTRY_SHARED				BIT(30)
109 #define CSF_FW_BINARY_IFACE_ENTRY_ZERO					BIT(31)
110 
111 #define CSF_FW_BINARY_IFACE_ENTRY_SUPPORTED_FLAGS			\
112 	(CSF_FW_BINARY_IFACE_ENTRY_RD |					\
113 	 CSF_FW_BINARY_IFACE_ENTRY_WR |					\
114 	 CSF_FW_BINARY_IFACE_ENTRY_EX |					\
115 	 CSF_FW_BINARY_IFACE_ENTRY_CACHE_MODE_MASK |			\
116 	 CSF_FW_BINARY_IFACE_ENTRY_PROT |				\
117 	 CSF_FW_BINARY_IFACE_ENTRY_SHARED  |				\
118 	 CSF_FW_BINARY_IFACE_ENTRY_ZERO)
119 
120 /**
121  * struct panthor_fw_binary_section_entry_hdr - Describes a section of FW binary
122  */
123 struct panthor_fw_binary_section_entry_hdr {
124 	/** @flags: Section flags. */
125 	u32 flags;
126 
127 	/** @va: MCU virtual range to map this binary section to. */
128 	struct {
129 		/** @start: Start address. */
130 		u32 start;
131 
132 		/** @end: End address. */
133 		u32 end;
134 	} va;
135 
136 	/** @data: Data to initialize the FW section with. */
137 	struct {
138 		/** @start: Start offset in the FW binary. */
139 		u32 start;
140 
141 		/** @end: End offset in the FW binary. */
142 		u32 end;
143 	} data;
144 };
145 
146 struct panthor_fw_build_info_hdr {
147 	/** @meta_start: Offset of the build info data in the FW binary */
148 	u32 meta_start;
149 	/** @meta_size: Size of the build info data in the FW binary */
150 	u32 meta_size;
151 };
152 
153 /**
154  * struct panthor_fw_binary_iter - Firmware binary iterator
155  *
156  * Used to parse a firmware binary.
157  */
158 struct panthor_fw_binary_iter {
159 	/** @data: FW binary data. */
160 	const void *data;
161 
162 	/** @size: FW binary size. */
163 	size_t size;
164 
165 	/** @offset: Iterator offset. */
166 	size_t offset;
167 };
168 
169 /**
170  * struct panthor_fw_section - FW section
171  */
172 struct panthor_fw_section {
173 	/** @node: Used to keep track of FW sections. */
174 	struct list_head node;
175 
176 	/** @flags: Section flags, as encoded in the FW binary. */
177 	u32 flags;
178 
179 	/** @mem: Section memory. */
180 	struct panthor_kernel_bo *mem;
181 
182 	/**
183 	 * @name: Name of the section, as specified in the binary.
184 	 *
185 	 * Can be NULL.
186 	 */
187 	const char *name;
188 
189 	/**
190 	 * @data: Initial data copied to the FW memory.
191 	 *
192 	 * We keep data around so we can reload sections after a reset.
193 	 */
194 	struct {
195 		/** @buf: Buffed used to store init data. */
196 		const void *buf;
197 
198 		/** @size: Size of @buf in bytes. */
199 		size_t size;
200 	} data;
201 };
202 
203 #define CSF_MCU_SHARED_REGION_START		0x04000000ULL
204 #define CSF_MCU_SHARED_REGION_SIZE		0x04000000ULL
205 
206 #define MIN_CS_PER_CSG				8
207 #define MIN_CSGS				3
208 
209 #define CSF_IFACE_VERSION(major, minor, patch)	\
210 	(((major) << 24) | ((minor) << 16) | (patch))
211 #define CSF_IFACE_VERSION_MAJOR(v)		((v) >> 24)
212 #define CSF_IFACE_VERSION_MINOR(v)		(((v) >> 16) & 0xff)
213 #define CSF_IFACE_VERSION_PATCH(v)		((v) & 0xffff)
214 
215 #define CSF_GROUP_CONTROL_OFFSET		0x1000
216 #define CSF_STREAM_CONTROL_OFFSET		0x40
217 #define CSF_UNPRESERVED_REG_COUNT		4
218 
219 /**
220  * struct panthor_fw_iface - FW interfaces
221  */
222 struct panthor_fw_iface {
223 	/** @global: Global interface. */
224 	struct panthor_fw_global_iface global;
225 
226 	/** @groups: Group slot interfaces. */
227 	struct panthor_fw_csg_iface groups[MAX_CSGS];
228 
229 	/** @streams: Command stream slot interfaces. */
230 	struct panthor_fw_cs_iface streams[MAX_CSGS][MAX_CS_PER_CSG];
231 };
232 
233 /**
234  * struct panthor_fw - Firmware management
235  */
236 struct panthor_fw {
237 	/** @iomem: CPU mapping of MCU_CONTROL iomem region */
238 	void __iomem *iomem;
239 
240 	/** @vm: MCU VM. */
241 	struct panthor_vm *vm;
242 
243 	/** @sections: List of FW sections. */
244 	struct list_head sections;
245 
246 	/** @shared_section: The section containing the FW interfaces. */
247 	struct panthor_fw_section *shared_section;
248 
249 	/** @iface: FW interfaces. */
250 	struct panthor_fw_iface iface;
251 
252 	/** @watchdog: Collection of fields relating to the FW watchdog. */
253 	struct {
254 		/** @ping_work: Delayed work used to ping the FW. */
255 		struct delayed_work ping_work;
256 	} watchdog;
257 
258 	/**
259 	 * @req_waitqueue: FW request waitqueue.
260 	 *
261 	 * Everytime a request is sent to a command stream group or the global
262 	 * interface, the caller will first busy wait for the request to be
263 	 * acknowledged, and then fallback to a sleeping wait.
264 	 *
265 	 * This wait queue is here to support the sleeping wait flavor.
266 	 */
267 	wait_queue_head_t req_waitqueue;
268 
269 	/** @booted: True is the FW is booted */
270 	bool booted;
271 
272 	/** @irq: Job irq data. */
273 	struct panthor_irq irq;
274 };
275 
276 struct panthor_vm *panthor_fw_vm(struct panthor_device *ptdev)
277 {
278 	return ptdev->fw->vm;
279 }
280 
281 /**
282  * panthor_fw_get_glb_iface() - Get the global interface
283  * @ptdev: Device.
284  *
285  * Return: The global interface.
286  */
287 struct panthor_fw_global_iface *
288 panthor_fw_get_glb_iface(struct panthor_device *ptdev)
289 {
290 	return &ptdev->fw->iface.global;
291 }
292 
293 /**
294  * panthor_fw_get_csg_iface() - Get a command stream group slot interface
295  * @ptdev: Device.
296  * @csg_slot: Index of the command stream group slot.
297  *
298  * Return: The command stream group slot interface.
299  */
300 struct panthor_fw_csg_iface *
301 panthor_fw_get_csg_iface(struct panthor_device *ptdev, u32 csg_slot)
302 {
303 	if (drm_WARN_ON(&ptdev->base, csg_slot >= MAX_CSGS))
304 		return NULL;
305 
306 	return &ptdev->fw->iface.groups[csg_slot];
307 }
308 
309 /**
310  * panthor_fw_get_cs_iface() - Get a command stream slot interface
311  * @ptdev: Device.
312  * @csg_slot: Index of the command stream group slot.
313  * @cs_slot: Index of the command stream slot.
314  *
315  * Return: The command stream slot interface.
316  */
317 struct panthor_fw_cs_iface *
318 panthor_fw_get_cs_iface(struct panthor_device *ptdev, u32 csg_slot, u32 cs_slot)
319 {
320 	if (drm_WARN_ON(&ptdev->base, csg_slot >= MAX_CSGS || cs_slot >= MAX_CS_PER_CSG))
321 		return NULL;
322 
323 	return &ptdev->fw->iface.streams[csg_slot][cs_slot];
324 }
325 
326 static bool panthor_fw_has_glb_state(struct panthor_device *ptdev)
327 {
328 	struct panthor_fw_global_iface *glb_iface = panthor_fw_get_glb_iface(ptdev);
329 
330 	return glb_iface->control->version >= CSF_IFACE_VERSION(4, 1, 0);
331 }
332 
333 static bool panthor_fw_has_64bit_ep_req(struct panthor_device *ptdev)
334 {
335 	struct panthor_fw_global_iface *glb_iface = panthor_fw_get_glb_iface(ptdev);
336 
337 	return glb_iface->control->version >= CSF_IFACE_VERSION(4, 0, 0);
338 }
339 
340 u64 panthor_fw_csg_endpoint_req_get(struct panthor_device *ptdev,
341 				    struct panthor_fw_csg_iface *csg_iface)
342 {
343 	if (panthor_fw_has_64bit_ep_req(ptdev))
344 		return csg_iface->input->endpoint_req2;
345 	else
346 		return csg_iface->input->endpoint_req;
347 }
348 
349 void panthor_fw_csg_endpoint_req_set(struct panthor_device *ptdev,
350 				     struct panthor_fw_csg_iface *csg_iface, u64 value)
351 {
352 	if (panthor_fw_has_64bit_ep_req(ptdev))
353 		csg_iface->input->endpoint_req2 = value;
354 	else
355 		csg_iface->input->endpoint_req = lower_32_bits(value);
356 }
357 
358 void panthor_fw_csg_endpoint_req_update(struct panthor_device *ptdev,
359 					struct panthor_fw_csg_iface *csg_iface, u64 value,
360 					u64 mask)
361 {
362 	if (panthor_fw_has_64bit_ep_req(ptdev))
363 		panthor_fw_update_reqs64(csg_iface, endpoint_req2, value, mask);
364 	else
365 		panthor_fw_update_reqs(csg_iface, endpoint_req, lower_32_bits(value),
366 				       lower_32_bits(mask));
367 }
368 
369 /**
370  * panthor_fw_conv_timeout() - Convert a timeout into a cycle-count
371  * @ptdev: Device.
372  * @timeout_us: Timeout expressed in micro-seconds.
373  *
374  * The FW has two timer sources: the GPU counter or arch-timer. We need
375  * to express timeouts in term of number of cycles and specify which
376  * timer source should be used.
377  *
378  * Return: A value suitable for timeout fields in the global interface.
379  */
380 static u32 panthor_fw_conv_timeout(struct panthor_device *ptdev, u32 timeout_us)
381 {
382 	bool use_cycle_counter = false;
383 	u32 timer_rate = 0;
384 	u64 mod_cycles;
385 
386 #ifdef CONFIG_ARM_ARCH_TIMER
387 	timer_rate = arch_timer_get_cntfrq();
388 #endif
389 
390 	if (!timer_rate) {
391 		use_cycle_counter = true;
392 		timer_rate = clk_get_rate(ptdev->clks.core);
393 	}
394 
395 	if (drm_WARN_ON(&ptdev->base, !timer_rate)) {
396 		/* We couldn't get a valid clock rate, let's just pick the
397 		 * maximum value so the FW still handles the core
398 		 * power on/off requests.
399 		 */
400 		return GLB_TIMER_VAL(~0) |
401 		       GLB_TIMER_SOURCE_GPU_COUNTER;
402 	}
403 
404 	mod_cycles = DIV_ROUND_UP_ULL((u64)timeout_us * timer_rate,
405 				      1000000ull << 10);
406 	if (drm_WARN_ON(&ptdev->base, mod_cycles > GLB_TIMER_VAL(~0)))
407 		mod_cycles = GLB_TIMER_VAL(~0);
408 
409 	return GLB_TIMER_VAL(mod_cycles) |
410 	       (use_cycle_counter ? GLB_TIMER_SOURCE_GPU_COUNTER : 0);
411 }
412 
413 static int panthor_fw_binary_iter_read(struct panthor_device *ptdev,
414 				       struct panthor_fw_binary_iter *iter,
415 				       void *out, size_t size)
416 {
417 	size_t new_offset = iter->offset + size;
418 
419 	if (new_offset > iter->size || new_offset < iter->offset) {
420 		drm_err(&ptdev->base, "Firmware too small\n");
421 		return -EINVAL;
422 	}
423 
424 	memcpy(out, iter->data + iter->offset, size);
425 	iter->offset = new_offset;
426 	return 0;
427 }
428 
429 static int panthor_fw_binary_sub_iter_init(struct panthor_device *ptdev,
430 					   struct panthor_fw_binary_iter *iter,
431 					   struct panthor_fw_binary_iter *sub_iter,
432 					   size_t size)
433 {
434 	size_t new_offset = iter->offset + size;
435 
436 	if (new_offset > iter->size || new_offset < iter->offset) {
437 		drm_err(&ptdev->base, "Firmware entry too long\n");
438 		return -EINVAL;
439 	}
440 
441 	sub_iter->offset = 0;
442 	sub_iter->data = iter->data + iter->offset;
443 	sub_iter->size = size;
444 	iter->offset = new_offset;
445 	return 0;
446 }
447 
448 static void panthor_fw_init_section_mem(struct panthor_device *ptdev,
449 					struct panthor_fw_section *section)
450 {
451 	bool was_mapped = !!section->mem->kmap;
452 	int ret;
453 
454 	if (!section->data.size &&
455 	    !(section->flags & CSF_FW_BINARY_IFACE_ENTRY_ZERO))
456 		return;
457 
458 	ret = panthor_kernel_bo_vmap(section->mem);
459 	if (drm_WARN_ON(&ptdev->base, ret))
460 		return;
461 
462 	memcpy(section->mem->kmap, section->data.buf, section->data.size);
463 	if (section->flags & CSF_FW_BINARY_IFACE_ENTRY_ZERO) {
464 		memset(section->mem->kmap + section->data.size, 0,
465 		       panthor_kernel_bo_size(section->mem) - section->data.size);
466 	}
467 
468 	if (!was_mapped)
469 		panthor_kernel_bo_vunmap(section->mem);
470 }
471 
472 /**
473  * panthor_fw_alloc_queue_iface_mem() - Allocate a ring-buffer interfaces.
474  * @ptdev: Device.
475  * @input: Pointer holding the input interface on success.
476  * Should be ignored on failure.
477  * @output: Pointer holding the output interface on success.
478  * Should be ignored on failure.
479  * @input_fw_va: Pointer holding the input interface FW VA on success.
480  * Should be ignored on failure.
481  * @output_fw_va: Pointer holding the output interface FW VA on success.
482  * Should be ignored on failure.
483  *
484  * Allocates panthor_fw_ringbuf_{input,out}_iface interfaces. The input
485  * interface is at offset 0, and the output interface at offset 4096.
486  *
487  * Return: A valid pointer in case of success, an ERR_PTR() otherwise.
488  */
489 struct panthor_kernel_bo *
490 panthor_fw_alloc_queue_iface_mem(struct panthor_device *ptdev,
491 				 struct panthor_fw_ringbuf_input_iface **input,
492 				 const struct panthor_fw_ringbuf_output_iface **output,
493 				 u32 *input_fw_va, u32 *output_fw_va)
494 {
495 	struct panthor_kernel_bo *mem;
496 	int ret;
497 
498 	mem = panthor_kernel_bo_create(ptdev, ptdev->fw->vm, SZ_8K,
499 				       DRM_PANTHOR_BO_NO_MMAP,
500 				       DRM_PANTHOR_VM_BIND_OP_MAP_NOEXEC |
501 				       DRM_PANTHOR_VM_BIND_OP_MAP_UNCACHED,
502 				       PANTHOR_VM_KERNEL_AUTO_VA,
503 				       "Queue FW interface");
504 	if (IS_ERR(mem))
505 		return mem;
506 
507 	ret = panthor_kernel_bo_vmap(mem);
508 	if (ret) {
509 		panthor_kernel_bo_destroy(mem);
510 		return ERR_PTR(ret);
511 	}
512 
513 	memset(mem->kmap, 0, panthor_kernel_bo_size(mem));
514 	*input = mem->kmap;
515 	*output = mem->kmap + SZ_4K;
516 	*input_fw_va = panthor_kernel_bo_gpuva(mem);
517 	*output_fw_va = *input_fw_va + SZ_4K;
518 
519 	return mem;
520 }
521 
522 /**
523  * panthor_fw_alloc_suspend_buf_mem() - Allocate a suspend buffer for a command stream group.
524  * @ptdev: Device.
525  * @size: Size of the suspend buffer.
526  *
527  * Return: A valid pointer in case of success, an ERR_PTR() otherwise.
528  */
529 struct panthor_kernel_bo *
530 panthor_fw_alloc_suspend_buf_mem(struct panthor_device *ptdev, size_t size)
531 {
532 	return panthor_kernel_bo_create(ptdev, panthor_fw_vm(ptdev), size,
533 					DRM_PANTHOR_BO_NO_MMAP,
534 					DRM_PANTHOR_VM_BIND_OP_MAP_NOEXEC,
535 					PANTHOR_VM_KERNEL_AUTO_VA,
536 					"FW suspend buffer");
537 }
538 
539 static int panthor_fw_load_section_entry(struct panthor_device *ptdev,
540 					 const struct firmware *fw,
541 					 struct panthor_fw_binary_iter *iter,
542 					 u32 ehdr)
543 {
544 	ssize_t vm_pgsz = panthor_vm_page_size(ptdev->fw->vm);
545 	struct panthor_fw_binary_section_entry_hdr hdr;
546 	struct panthor_fw_section *section;
547 	u32 section_size;
548 	u32 data_size;
549 	u32 name_len;
550 	int ret;
551 
552 	ret = panthor_fw_binary_iter_read(ptdev, iter, &hdr, sizeof(hdr));
553 	if (ret)
554 		return ret;
555 
556 	if (hdr.data.end < hdr.data.start) {
557 		drm_err(&ptdev->base, "Firmware corrupted, data.end < data.start (0x%x < 0x%x)\n",
558 			hdr.data.end, hdr.data.start);
559 		return -EINVAL;
560 	}
561 
562 	if (hdr.va.end < hdr.va.start) {
563 		drm_err(&ptdev->base, "Firmware corrupted, hdr.va.end < hdr.va.start (0x%x < 0x%x)\n",
564 			hdr.va.end, hdr.va.start);
565 		return -EINVAL;
566 	}
567 
568 	if (hdr.data.end > fw->size) {
569 		drm_err(&ptdev->base, "Firmware corrupted, file truncated? data_end=0x%x > fw size=0x%zx\n",
570 			hdr.data.end, fw->size);
571 		return -EINVAL;
572 	}
573 
574 	if (!IS_ALIGNED(hdr.va.start, vm_pgsz) || !IS_ALIGNED(hdr.va.end, vm_pgsz)) {
575 		drm_err(&ptdev->base, "Firmware corrupted, virtual addresses not page aligned: 0x%x-0x%x\n",
576 			hdr.va.start, hdr.va.end);
577 		return -EINVAL;
578 	}
579 
580 	if (hdr.flags & ~CSF_FW_BINARY_IFACE_ENTRY_SUPPORTED_FLAGS) {
581 		drm_err(&ptdev->base, "Firmware contains interface with unsupported flags (0x%x)\n",
582 			hdr.flags);
583 		return -EINVAL;
584 	}
585 
586 	if (hdr.flags & CSF_FW_BINARY_IFACE_ENTRY_PROT) {
587 		drm_warn(&ptdev->base,
588 			 "Firmware protected mode entry is not supported, ignoring");
589 		return 0;
590 	}
591 
592 	if (hdr.va.start == CSF_MCU_SHARED_REGION_START &&
593 	    !(hdr.flags & CSF_FW_BINARY_IFACE_ENTRY_SHARED)) {
594 		drm_err(&ptdev->base,
595 			"Interface at 0x%llx must be shared", CSF_MCU_SHARED_REGION_START);
596 		return -EINVAL;
597 	}
598 
599 	section_size = hdr.va.end - hdr.va.start;
600 	data_size = hdr.data.end - hdr.data.start;
601 	if (data_size > section_size) {
602 		drm_err(&ptdev->base, "Firmware corrupted, section data exceeds section size\n");
603 		return -EINVAL;
604 	}
605 
606 	if (!section_size)
607 		return 0;
608 
609 	name_len = iter->size - iter->offset;
610 
611 	section = drmm_kzalloc(&ptdev->base, sizeof(*section), GFP_KERNEL);
612 	if (!section)
613 		return -ENOMEM;
614 
615 	list_add_tail(&section->node, &ptdev->fw->sections);
616 	section->flags = hdr.flags;
617 	section->data.size = data_size;
618 
619 	if (section->data.size > 0) {
620 		void *data = drmm_kmalloc(&ptdev->base, section->data.size, GFP_KERNEL);
621 
622 		if (!data)
623 			return -ENOMEM;
624 
625 		memcpy(data, fw->data + hdr.data.start, section->data.size);
626 		section->data.buf = data;
627 	}
628 
629 	if (name_len > 0) {
630 		char *name = drmm_kmalloc(&ptdev->base, name_len + 1, GFP_KERNEL);
631 
632 		if (!name)
633 			return -ENOMEM;
634 
635 		memcpy(name, iter->data + iter->offset, name_len);
636 		name[name_len] = '\0';
637 		section->name = name;
638 	}
639 
640 	if (section_size) {
641 		u32 cache_mode = hdr.flags & CSF_FW_BINARY_IFACE_ENTRY_CACHE_MODE_MASK;
642 		struct panthor_gem_object *bo;
643 		u32 vm_map_flags = 0;
644 		u64 va = hdr.va.start;
645 
646 		if (!(hdr.flags & CSF_FW_BINARY_IFACE_ENTRY_WR))
647 			vm_map_flags |= DRM_PANTHOR_VM_BIND_OP_MAP_READONLY;
648 
649 		if (!(hdr.flags & CSF_FW_BINARY_IFACE_ENTRY_EX))
650 			vm_map_flags |= DRM_PANTHOR_VM_BIND_OP_MAP_NOEXEC;
651 
652 		/* TODO: CSF_FW_BINARY_IFACE_ENTRY_CACHE_MODE_*_COHERENT are mapped to
653 		 * non-cacheable for now. We might want to introduce a new
654 		 * IOMMU_xxx flag (or abuse IOMMU_MMIO, which maps to device
655 		 * memory and is currently not used by our driver) for
656 		 * AS_MEMATTR_AARCH64_SHARED memory, so we can take benefit
657 		 * of IO-coherent systems.
658 		 */
659 		if (cache_mode != CSF_FW_BINARY_IFACE_ENTRY_CACHE_MODE_CACHED)
660 			vm_map_flags |= DRM_PANTHOR_VM_BIND_OP_MAP_UNCACHED;
661 
662 		section->mem = panthor_kernel_bo_create(ptdev, panthor_fw_vm(ptdev),
663 							section_size,
664 							DRM_PANTHOR_BO_NO_MMAP,
665 							vm_map_flags, va, "FW section");
666 		if (IS_ERR(section->mem))
667 			return PTR_ERR(section->mem);
668 
669 		if (drm_WARN_ON(&ptdev->base, section->mem->va_node.start != hdr.va.start))
670 			return -EINVAL;
671 
672 		if (section->flags & CSF_FW_BINARY_IFACE_ENTRY_SHARED) {
673 			ret = panthor_kernel_bo_vmap(section->mem);
674 			if (ret)
675 				return ret;
676 		}
677 
678 		panthor_fw_init_section_mem(ptdev, section);
679 
680 		bo = to_panthor_bo(section->mem->obj);
681 
682 		/* An sgt should have been requested when the kernel BO was GPU-mapped. */
683 		if (drm_WARN_ON_ONCE(&ptdev->base, !bo->dmap.sgt))
684 			return -EINVAL;
685 
686 		dma_sync_sgtable_for_device(ptdev->base.dev, bo->dmap.sgt, DMA_TO_DEVICE);
687 	}
688 
689 	if (hdr.va.start == CSF_MCU_SHARED_REGION_START)
690 		ptdev->fw->shared_section = section;
691 
692 	return 0;
693 }
694 
695 static int panthor_fw_read_build_info(struct panthor_device *ptdev,
696 				      const struct firmware *fw,
697 				      struct panthor_fw_binary_iter *iter,
698 				      u32 ehdr)
699 {
700 	struct panthor_fw_build_info_hdr hdr;
701 	static const char git_sha_header[] = "git_sha: ";
702 	const int header_len = sizeof(git_sha_header) - 1;
703 	int ret;
704 
705 	ret = panthor_fw_binary_iter_read(ptdev, iter, &hdr, sizeof(hdr));
706 	if (ret)
707 		return ret;
708 
709 	if (hdr.meta_start > fw->size ||
710 	    hdr.meta_start + hdr.meta_size > fw->size) {
711 		drm_err(&ptdev->base, "Firmware build info corrupt\n");
712 		/* We don't need the build info, so continue */
713 		return 0;
714 	}
715 
716 	if (memcmp(git_sha_header, fw->data + hdr.meta_start, header_len)) {
717 		/* Not the expected header, this isn't metadata we understand */
718 		return 0;
719 	}
720 
721 	/* Check that the git SHA is NULL terminated as expected */
722 	if (fw->data[hdr.meta_start + hdr.meta_size - 1] != '\0') {
723 		drm_warn(&ptdev->base, "Firmware's git sha is not NULL terminated\n");
724 		/* Don't treat as fatal */
725 		return 0;
726 	}
727 
728 	drm_info(&ptdev->base, "Firmware git sha: %s\n",
729 		 fw->data + hdr.meta_start + header_len);
730 
731 	return 0;
732 }
733 
734 static void
735 panthor_reload_fw_sections(struct panthor_device *ptdev, bool full_reload)
736 {
737 	struct panthor_fw_section *section;
738 
739 	list_for_each_entry(section, &ptdev->fw->sections, node) {
740 		struct sg_table *sgt;
741 
742 		if (!full_reload && !(section->flags & CSF_FW_BINARY_IFACE_ENTRY_WR))
743 			continue;
744 
745 		panthor_fw_init_section_mem(ptdev, section);
746 
747 		/* An sgt should have been requested when the kernel BO was GPU-mapped. */
748 		sgt = to_panthor_bo(section->mem->obj)->dmap.sgt;
749 		if (!drm_WARN_ON_ONCE(&ptdev->base, !sgt))
750 			dma_sync_sgtable_for_device(ptdev->base.dev, sgt, DMA_TO_DEVICE);
751 	}
752 }
753 
754 static int panthor_fw_load_entry(struct panthor_device *ptdev,
755 				 const struct firmware *fw,
756 				 struct panthor_fw_binary_iter *iter)
757 {
758 	struct panthor_fw_binary_iter eiter;
759 	u32 ehdr;
760 	int ret;
761 
762 	ret = panthor_fw_binary_iter_read(ptdev, iter, &ehdr, sizeof(ehdr));
763 	if (ret)
764 		return ret;
765 
766 	if ((iter->offset % sizeof(u32)) ||
767 	    (CSF_FW_BINARY_ENTRY_SIZE(ehdr) % sizeof(u32))) {
768 		drm_err(&ptdev->base, "Firmware entry is not 32-bit aligned, offset=0x%x size=0x%x\n",
769 			(u32)(iter->offset - sizeof(u32)), CSF_FW_BINARY_ENTRY_SIZE(ehdr));
770 		return -EINVAL;
771 	}
772 
773 	if (panthor_fw_binary_sub_iter_init(ptdev, iter, &eiter,
774 					    CSF_FW_BINARY_ENTRY_SIZE(ehdr) - sizeof(ehdr)))
775 		return -EINVAL;
776 
777 	switch (CSF_FW_BINARY_ENTRY_TYPE(ehdr)) {
778 	case CSF_FW_BINARY_ENTRY_TYPE_IFACE:
779 		return panthor_fw_load_section_entry(ptdev, fw, &eiter, ehdr);
780 	case CSF_FW_BINARY_ENTRY_TYPE_BUILD_INFO_METADATA:
781 		return panthor_fw_read_build_info(ptdev, fw, &eiter, ehdr);
782 
783 	/* FIXME: handle those entry types? */
784 	case CSF_FW_BINARY_ENTRY_TYPE_CONFIG:
785 	case CSF_FW_BINARY_ENTRY_TYPE_FUTF_TEST:
786 	case CSF_FW_BINARY_ENTRY_TYPE_TRACE_BUFFER:
787 	case CSF_FW_BINARY_ENTRY_TYPE_TIMELINE_METADATA:
788 		return 0;
789 	default:
790 		break;
791 	}
792 
793 	if (ehdr & CSF_FW_BINARY_ENTRY_OPTIONAL)
794 		return 0;
795 
796 	drm_err(&ptdev->base,
797 		"Unsupported non-optional entry type %u in firmware\n",
798 		CSF_FW_BINARY_ENTRY_TYPE(ehdr));
799 	return -EINVAL;
800 }
801 
802 static int panthor_fw_load(struct panthor_device *ptdev)
803 {
804 	const struct firmware *fw = NULL;
805 	struct panthor_fw_binary_iter iter = {};
806 	struct panthor_fw_binary_hdr hdr;
807 	char fw_path[128];
808 	int ret;
809 
810 	snprintf(fw_path, sizeof(fw_path), "arm/mali/arch%d.%d/%s",
811 		 (u32)GPU_ARCH_MAJOR(ptdev->gpu_info.gpu_id),
812 		 (u32)GPU_ARCH_MINOR(ptdev->gpu_info.gpu_id),
813 		 CSF_FW_NAME);
814 
815 	ret = request_firmware(&fw, fw_path, ptdev->base.dev);
816 	if (ret) {
817 		drm_err(&ptdev->base, "Failed to load firmware image '%s'\n",
818 			CSF_FW_NAME);
819 		return ret;
820 	}
821 
822 	iter.data = fw->data;
823 	iter.size = fw->size;
824 	ret = panthor_fw_binary_iter_read(ptdev, &iter, &hdr, sizeof(hdr));
825 	if (ret)
826 		goto out;
827 
828 	if (hdr.magic != CSF_FW_BINARY_HEADER_MAGIC) {
829 		ret = -EINVAL;
830 		drm_err(&ptdev->base, "Invalid firmware magic\n");
831 		goto out;
832 	}
833 
834 	if (hdr.major != CSF_FW_BINARY_HEADER_MAJOR_MAX) {
835 		ret = -EINVAL;
836 		drm_err(&ptdev->base, "Unsupported firmware binary header version %d.%d (expected %d.x)\n",
837 			hdr.major, hdr.minor, CSF_FW_BINARY_HEADER_MAJOR_MAX);
838 		goto out;
839 	}
840 
841 	if (hdr.size > iter.size) {
842 		ret = -EINVAL;
843 		drm_err(&ptdev->base, "Firmware image is truncated\n");
844 		goto out;
845 	}
846 
847 	iter.size = hdr.size;
848 
849 	while (iter.offset < hdr.size) {
850 		ret = panthor_fw_load_entry(ptdev, fw, &iter);
851 		if (ret)
852 			goto out;
853 	}
854 
855 	if (!ptdev->fw->shared_section) {
856 		drm_err(&ptdev->base, "Shared interface region not found\n");
857 		ret = -EINVAL;
858 		goto out;
859 	}
860 
861 out:
862 	release_firmware(fw);
863 	return ret;
864 }
865 
866 /**
867  * iface_fw_to_cpu_addr() - Turn an MCU address into a CPU address
868  * @ptdev: Device.
869  * @mcu_va: MCU address.
870  * @size: Size of the object pointed to by @mcu_va.
871  *
872  * Return: NULL if the object is not part of the shared section, non-NULL otherwise.
873  */
874 static void *iface_fw_to_cpu_addr(struct panthor_device *ptdev, u32 mcu_va, size_t size)
875 {
876 	u64 shared_mem_start = panthor_kernel_bo_gpuva(ptdev->fw->shared_section->mem);
877 	size_t shared_mem_size = panthor_kernel_bo_size(ptdev->fw->shared_section->mem);
878 	u64 offset;
879 
880 	if (mcu_va < shared_mem_start)
881 		return NULL;
882 
883 	offset = mcu_va - shared_mem_start;
884 	if (offset > shared_mem_size || size > shared_mem_size - offset)
885 		return NULL;
886 
887 	return ptdev->fw->shared_section->mem->kmap + offset;
888 }
889 
890 static int panthor_init_cs_iface(struct panthor_device *ptdev,
891 				 unsigned int csg_idx, unsigned int cs_idx)
892 {
893 	struct panthor_fw_global_iface *glb_iface = panthor_fw_get_glb_iface(ptdev);
894 	struct panthor_fw_csg_iface *csg_iface = panthor_fw_get_csg_iface(ptdev, csg_idx);
895 	struct panthor_fw_cs_iface *cs_iface = &ptdev->fw->iface.streams[csg_idx][cs_idx];
896 	u64 shared_section_sz = panthor_kernel_bo_size(ptdev->fw->shared_section->mem);
897 	u32 iface_offset = CSF_GROUP_CONTROL_OFFSET +
898 			   (csg_idx * glb_iface->control->group_stride) +
899 			   CSF_STREAM_CONTROL_OFFSET +
900 			   (cs_idx * csg_iface->control->stream_stride);
901 	struct panthor_fw_cs_iface *first_cs_iface =
902 		panthor_fw_get_cs_iface(ptdev, 0, 0);
903 
904 	if (iface_offset + sizeof(*cs_iface) >= shared_section_sz)
905 		return -EINVAL;
906 
907 	spin_lock_init(&cs_iface->lock);
908 	cs_iface->control = ptdev->fw->shared_section->mem->kmap + iface_offset;
909 	cs_iface->input = iface_fw_to_cpu_addr(ptdev, cs_iface->control->input_va,
910 					       sizeof(*cs_iface->input));
911 	cs_iface->output = iface_fw_to_cpu_addr(ptdev, cs_iface->control->output_va,
912 						sizeof(*cs_iface->output));
913 
914 	if (!cs_iface->input || !cs_iface->output) {
915 		drm_err(&ptdev->base, "Invalid stream control interface input/output VA");
916 		return -EINVAL;
917 	}
918 
919 	if (cs_iface != first_cs_iface) {
920 		if (cs_iface->control->features != first_cs_iface->control->features) {
921 			drm_err(&ptdev->base, "Expecting identical CS slots");
922 			return -EINVAL;
923 		}
924 	} else {
925 		u32 reg_count = CS_FEATURES_WORK_REGS(cs_iface->control->features);
926 
927 		ptdev->csif_info.cs_reg_count = reg_count;
928 		ptdev->csif_info.unpreserved_cs_reg_count = CSF_UNPRESERVED_REG_COUNT;
929 	}
930 
931 	return 0;
932 }
933 
934 static bool compare_csg(const struct panthor_fw_csg_control_iface *a,
935 			const struct panthor_fw_csg_control_iface *b)
936 {
937 	if (a->features != b->features)
938 		return false;
939 	if (a->suspend_size != b->suspend_size)
940 		return false;
941 	if (a->protm_suspend_size != b->protm_suspend_size)
942 		return false;
943 	if (a->stream_num != b->stream_num)
944 		return false;
945 	return true;
946 }
947 
948 static int panthor_init_csg_iface(struct panthor_device *ptdev,
949 				  unsigned int csg_idx)
950 {
951 	struct panthor_fw_global_iface *glb_iface = panthor_fw_get_glb_iface(ptdev);
952 	struct panthor_fw_csg_iface *csg_iface = &ptdev->fw->iface.groups[csg_idx];
953 	u64 shared_section_sz = panthor_kernel_bo_size(ptdev->fw->shared_section->mem);
954 	u32 iface_offset = CSF_GROUP_CONTROL_OFFSET + (csg_idx * glb_iface->control->group_stride);
955 	unsigned int i;
956 
957 	if (iface_offset + sizeof(*csg_iface) >= shared_section_sz)
958 		return -EINVAL;
959 
960 	spin_lock_init(&csg_iface->lock);
961 	csg_iface->control = ptdev->fw->shared_section->mem->kmap + iface_offset;
962 	csg_iface->input = iface_fw_to_cpu_addr(ptdev, csg_iface->control->input_va,
963 						sizeof(*csg_iface->input));
964 	csg_iface->output = iface_fw_to_cpu_addr(ptdev, csg_iface->control->output_va,
965 						 sizeof(*csg_iface->output));
966 
967 	if (csg_iface->control->stream_num < MIN_CS_PER_CSG ||
968 	    csg_iface->control->stream_num > MAX_CS_PER_CSG)
969 		return -EINVAL;
970 
971 	if (!csg_iface->input || !csg_iface->output) {
972 		drm_err(&ptdev->base, "Invalid group control interface input/output VA");
973 		return -EINVAL;
974 	}
975 
976 	if (csg_idx > 0) {
977 		struct panthor_fw_csg_iface *first_csg_iface =
978 			panthor_fw_get_csg_iface(ptdev, 0);
979 
980 		if (!compare_csg(first_csg_iface->control, csg_iface->control)) {
981 			drm_err(&ptdev->base, "Expecting identical CSG slots");
982 			return -EINVAL;
983 		}
984 	}
985 
986 	for (i = 0; i < csg_iface->control->stream_num; i++) {
987 		int ret = panthor_init_cs_iface(ptdev, csg_idx, i);
988 
989 		if (ret)
990 			return ret;
991 	}
992 
993 	return 0;
994 }
995 
996 static u32 panthor_get_instr_features(struct panthor_device *ptdev)
997 {
998 	struct panthor_fw_global_iface *glb_iface = panthor_fw_get_glb_iface(ptdev);
999 
1000 	if (glb_iface->control->version < CSF_IFACE_VERSION(1, 1, 0))
1001 		return 0;
1002 
1003 	return glb_iface->control->instr_features;
1004 }
1005 
1006 static int panthor_fw_init_ifaces(struct panthor_device *ptdev)
1007 {
1008 	struct panthor_fw_global_iface *glb_iface = &ptdev->fw->iface.global;
1009 	unsigned int i;
1010 
1011 	if (!ptdev->fw->shared_section->mem->kmap)
1012 		return -EINVAL;
1013 
1014 	spin_lock_init(&glb_iface->lock);
1015 	glb_iface->control = ptdev->fw->shared_section->mem->kmap;
1016 
1017 	if (!glb_iface->control->version) {
1018 		drm_err(&ptdev->base, "Firmware version is 0. Firmware may have failed to boot");
1019 		return -EINVAL;
1020 	}
1021 
1022 	glb_iface->input = iface_fw_to_cpu_addr(ptdev, glb_iface->control->input_va,
1023 						sizeof(*glb_iface->input));
1024 	glb_iface->output = iface_fw_to_cpu_addr(ptdev, glb_iface->control->output_va,
1025 						 sizeof(*glb_iface->output));
1026 	if (!glb_iface->input || !glb_iface->output) {
1027 		drm_err(&ptdev->base, "Invalid global control interface input/output VA");
1028 		return -EINVAL;
1029 	}
1030 
1031 	if (glb_iface->control->group_num > MAX_CSGS ||
1032 	    glb_iface->control->group_num < MIN_CSGS) {
1033 		drm_err(&ptdev->base, "Invalid number of control groups");
1034 		return -EINVAL;
1035 	}
1036 
1037 	for (i = 0; i < glb_iface->control->group_num; i++) {
1038 		int ret = panthor_init_csg_iface(ptdev, i);
1039 
1040 		if (ret)
1041 			return ret;
1042 	}
1043 
1044 	drm_info(&ptdev->base, "CSF FW using interface v%d.%d.%d, Features %#x Instrumentation features %#x",
1045 		 CSF_IFACE_VERSION_MAJOR(glb_iface->control->version),
1046 		 CSF_IFACE_VERSION_MINOR(glb_iface->control->version),
1047 		 CSF_IFACE_VERSION_PATCH(glb_iface->control->version),
1048 		 glb_iface->control->features,
1049 		 panthor_get_instr_features(ptdev));
1050 	return 0;
1051 }
1052 
1053 static void panthor_fw_init_global_iface(struct panthor_device *ptdev)
1054 {
1055 	struct panthor_fw_global_iface *glb_iface = panthor_fw_get_glb_iface(ptdev);
1056 
1057 	/* Enable all cores. */
1058 	glb_iface->input->core_en_mask = ptdev->gpu_info.shader_present;
1059 
1060 	/* Setup timers. */
1061 	glb_iface->input->poweroff_timer = panthor_fw_conv_timeout(ptdev, PWROFF_HYSTERESIS_US);
1062 	glb_iface->input->progress_timer = PROGRESS_TIMEOUT_CYCLES >> PROGRESS_TIMEOUT_SCALE_SHIFT;
1063 	glb_iface->input->idle_timer = panthor_fw_conv_timeout(ptdev, IDLE_HYSTERESIS_US);
1064 
1065 	/* Enable interrupts we care about. */
1066 	glb_iface->input->ack_irq_mask = GLB_CFG_ALLOC_EN |
1067 					 GLB_PING |
1068 					 GLB_CFG_PROGRESS_TIMER |
1069 					 GLB_CFG_POWEROFF_TIMER |
1070 					 GLB_IDLE_EN |
1071 					 GLB_IDLE;
1072 
1073 	if (panthor_fw_has_glb_state(ptdev))
1074 		glb_iface->input->ack_irq_mask |= GLB_STATE_MASK;
1075 
1076 	panthor_fw_update_reqs(glb_iface, req, GLB_IDLE_EN | GLB_COUNTER_EN,
1077 			       GLB_IDLE_EN | GLB_COUNTER_EN);
1078 	panthor_fw_toggle_reqs(glb_iface, req, ack,
1079 			       GLB_CFG_ALLOC_EN |
1080 			       GLB_CFG_POWEROFF_TIMER |
1081 			       GLB_CFG_PROGRESS_TIMER);
1082 
1083 	panthor_fw_ring_doorbell(ptdev, CSF_GLB_DOORBELL_ID);
1084 
1085 	/* Kick the watchdog. */
1086 	mod_delayed_work(ptdev->reset.wq, &ptdev->fw->watchdog.ping_work,
1087 			 msecs_to_jiffies(PING_INTERVAL_MS));
1088 }
1089 
1090 static void panthor_job_irq_handler(struct panthor_device *ptdev, u32 status)
1091 {
1092 	u32 duration;
1093 	u64 start = 0;
1094 
1095 	if (tracepoint_enabled(gpu_job_irq))
1096 		start = ktime_get_ns();
1097 
1098 	gpu_write(ptdev->fw->irq.iomem, INT_CLEAR, status);
1099 
1100 	if (!ptdev->fw->booted && (status & JOB_INT_GLOBAL_IF))
1101 		ptdev->fw->booted = true;
1102 
1103 	wake_up_all(&ptdev->fw->req_waitqueue);
1104 
1105 	/* If the FW is not booted, don't process IRQs, just flag the FW as booted. */
1106 	if (!ptdev->fw->booted)
1107 		return;
1108 
1109 	panthor_sched_report_fw_events(ptdev, status);
1110 
1111 	if (tracepoint_enabled(gpu_job_irq) && start) {
1112 		if (check_sub_overflow(ktime_get_ns(), start, &duration))
1113 			duration = U32_MAX;
1114 		trace_gpu_job_irq(ptdev->base.dev, status, duration);
1115 	}
1116 }
1117 PANTHOR_IRQ_HANDLER(job, panthor_job_irq_handler);
1118 
1119 static int panthor_fw_start(struct panthor_device *ptdev)
1120 {
1121 	struct panthor_fw *fw = ptdev->fw;
1122 	bool timedout = false;
1123 
1124 	ptdev->fw->booted = false;
1125 	panthor_job_irq_enable_events(&ptdev->fw->irq, ~0);
1126 	panthor_job_irq_resume(&ptdev->fw->irq);
1127 	gpu_write(fw->iomem, MCU_CONTROL, MCU_CONTROL_AUTO);
1128 
1129 	if (!wait_event_timeout(ptdev->fw->req_waitqueue,
1130 				ptdev->fw->booted,
1131 				msecs_to_jiffies(1000))) {
1132 		if (!ptdev->fw->booted &&
1133 		    !(gpu_read(fw->irq.iomem, INT_STAT) & JOB_INT_GLOBAL_IF))
1134 			timedout = true;
1135 	}
1136 
1137 	if (timedout) {
1138 		static const char * const status_str[] = {
1139 			[MCU_STATUS_DISABLED] = "disabled",
1140 			[MCU_STATUS_ENABLED] = "enabled",
1141 			[MCU_STATUS_HALT] = "halt",
1142 			[MCU_STATUS_FATAL] = "fatal",
1143 		};
1144 		u32 status = gpu_read(fw->iomem, MCU_STATUS);
1145 
1146 		drm_err(&ptdev->base, "Failed to boot MCU (status=%s)",
1147 			status < ARRAY_SIZE(status_str) ? status_str[status] : "unknown");
1148 		return -ETIMEDOUT;
1149 	}
1150 
1151 	return 0;
1152 }
1153 
1154 static void panthor_fw_stop(struct panthor_device *ptdev)
1155 {
1156 	struct panthor_fw *fw = ptdev->fw;
1157 	u32 status;
1158 
1159 	gpu_write(fw->iomem, MCU_CONTROL, MCU_CONTROL_DISABLE);
1160 	if (gpu_read_poll_timeout(fw->iomem, MCU_STATUS, status,
1161 				  status == MCU_STATUS_DISABLED, 10, 100000))
1162 		drm_err(&ptdev->base, "Failed to stop MCU");
1163 }
1164 
1165 static bool panthor_fw_mcu_halted(struct panthor_device *ptdev)
1166 {
1167 	struct panthor_fw_global_iface *glb_iface = panthor_fw_get_glb_iface(ptdev);
1168 	bool halted;
1169 
1170 	halted = gpu_read(ptdev->fw->iomem, MCU_STATUS) == MCU_STATUS_HALT;
1171 
1172 	if (panthor_fw_has_glb_state(ptdev))
1173 		halted &= (GLB_STATE_GET(glb_iface->output->ack) == GLB_STATE_HALT);
1174 
1175 	return halted;
1176 }
1177 
1178 static void panthor_fw_halt_mcu(struct panthor_device *ptdev)
1179 {
1180 	struct panthor_fw_global_iface *glb_iface = panthor_fw_get_glb_iface(ptdev);
1181 
1182 	if (panthor_fw_has_glb_state(ptdev))
1183 		panthor_fw_update_reqs(glb_iface, req, GLB_STATE(GLB_STATE_HALT), GLB_STATE_MASK);
1184 	else
1185 		panthor_fw_update_reqs(glb_iface, req, GLB_HALT, GLB_HALT);
1186 
1187 	panthor_fw_ring_doorbell(ptdev, CSF_GLB_DOORBELL_ID);
1188 }
1189 
1190 static bool panthor_fw_wait_mcu_halted(struct panthor_device *ptdev)
1191 {
1192 	bool halted = false;
1193 
1194 	if (read_poll_timeout_atomic(panthor_fw_mcu_halted, halted, halted, 10,
1195 				     MCU_HALT_TIMEOUT_US, 0, ptdev)) {
1196 		drm_warn(&ptdev->base, "Timed out waiting for MCU to halt");
1197 		return false;
1198 	}
1199 
1200 	return true;
1201 }
1202 
1203 static void panthor_fw_mcu_set_active(struct panthor_device *ptdev)
1204 {
1205 	struct panthor_fw_global_iface *glb_iface = panthor_fw_get_glb_iface(ptdev);
1206 
1207 	if (panthor_fw_has_glb_state(ptdev))
1208 		panthor_fw_update_reqs(glb_iface, req, GLB_STATE(GLB_STATE_ACTIVE), GLB_STATE_MASK);
1209 	else
1210 		panthor_fw_update_reqs(glb_iface, req, 0, GLB_HALT);
1211 }
1212 
1213 /**
1214  * panthor_fw_pre_reset() - Call before a reset.
1215  * @ptdev: Device.
1216  * @on_hang: true if the reset was triggered on a GPU hang.
1217  *
1218  * If the reset is not triggered on a hang, we try to gracefully halt the
1219  * MCU, so we can do a fast-reset when panthor_fw_post_reset() is called.
1220  */
1221 void panthor_fw_pre_reset(struct panthor_device *ptdev, bool on_hang)
1222 {
1223 	/* Make sure we won't be woken up by a ping. */
1224 	cancel_delayed_work_sync(&ptdev->fw->watchdog.ping_work);
1225 
1226 	ptdev->reset.fast = false;
1227 
1228 	if (!on_hang) {
1229 		panthor_fw_halt_mcu(ptdev);
1230 		if (!panthor_fw_wait_mcu_halted(ptdev))
1231 			drm_warn(&ptdev->base, "Failed to cleanly suspend MCU");
1232 		else
1233 			ptdev->reset.fast = true;
1234 	}
1235 
1236 	panthor_job_irq_suspend(&ptdev->fw->irq);
1237 	panthor_fw_stop(ptdev);
1238 }
1239 
1240 /**
1241  * panthor_fw_post_reset() - Call after a reset.
1242  * @ptdev: Device.
1243  *
1244  * Start the FW. If this is not a fast reset, all FW sections are reloaded to
1245  * make sure we can recover from a memory corruption.
1246  */
1247 int panthor_fw_post_reset(struct panthor_device *ptdev)
1248 {
1249 	int ret;
1250 
1251 	/* Make the MCU VM active. */
1252 	ret = panthor_vm_active(ptdev->fw->vm);
1253 	if (ret)
1254 		return ret;
1255 
1256 	if (!ptdev->reset.fast) {
1257 		/* On a slow reset, reload all sections, including RO ones.
1258 		 * We're not supposed to end up here anyway, let's just assume
1259 		 * the overhead of reloading everything is acceptable.
1260 		 */
1261 		panthor_reload_fw_sections(ptdev, true);
1262 	} else {
1263 		/*
1264 		 * If the FW was previously successfully halted in the pre-reset
1265 		 * operation, we need to transition it to active again before
1266 		 * the FW is rebooted.
1267 		 * This is not needed on a slow reset because FW sections are
1268 		 * re-initialized.
1269 		 */
1270 		panthor_fw_mcu_set_active(ptdev);
1271 	}
1272 
1273 	ret = panthor_fw_start(ptdev);
1274 	if (ret) {
1275 		drm_err(&ptdev->base, "FW %s reset failed",
1276 			ptdev->reset.fast ?  "fast" : "slow");
1277 		return ret;
1278 	}
1279 
1280 	/* We must re-initialize the global interface even on fast-reset. */
1281 	panthor_fw_init_global_iface(ptdev);
1282 	return 0;
1283 }
1284 
1285 /**
1286  * panthor_fw_unplug() - Called when the device is unplugged.
1287  * @ptdev: Device.
1288  *
1289  * This function must make sure all pending operations are flushed before
1290  * will release device resources, thus preventing any interaction with
1291  * the HW.
1292  *
1293  * If there is still FW-related work running after this function returns,
1294  * they must use drm_dev_{enter,exit}() and skip any HW access when
1295  * drm_dev_enter() returns false.
1296  */
1297 void panthor_fw_unplug(struct panthor_device *ptdev)
1298 {
1299 	struct panthor_fw_section *section;
1300 
1301 	disable_delayed_work_sync(&ptdev->fw->watchdog.ping_work);
1302 
1303 	if (!IS_ENABLED(CONFIG_PM) || pm_runtime_active(ptdev->base.dev)) {
1304 		/* Make sure the IRQ handler cannot be called after that point. */
1305 		panthor_job_irq_suspend(&ptdev->fw->irq);
1306 		panthor_fw_stop(ptdev);
1307 	}
1308 
1309 	list_for_each_entry(section, &ptdev->fw->sections, node)
1310 		panthor_kernel_bo_destroy(section->mem);
1311 
1312 	/* We intentionally don't call panthor_vm_idle() and let
1313 	 * panthor_mmu_unplug() release the AS we acquired with
1314 	 * panthor_vm_active() so we don't have to track the VM active/idle
1315 	 * state to keep the active_refcnt balanced.
1316 	 */
1317 	panthor_vm_put(ptdev->fw->vm);
1318 	ptdev->fw->vm = NULL;
1319 
1320 	if (!IS_ENABLED(CONFIG_PM) || pm_runtime_active(ptdev->base.dev))
1321 		panthor_hw_l2_power_off(ptdev);
1322 }
1323 
1324 /**
1325  * panthor_fw_wait_acks() - Wait for requests to be acknowledged by the FW.
1326  * @req_ptr: Pointer to the req register.
1327  * @ack_ptr: Pointer to the ack register.
1328  * @wq: Wait queue to use for the sleeping wait.
1329  * @req_mask: Mask of requests to wait for.
1330  * @acked: Pointer to field that's updated with the acked requests.
1331  * If the function returns 0, *acked == req_mask.
1332  * @timeout_ms: Timeout expressed in milliseconds.
1333  *
1334  * Return: 0 on success, -ETIMEDOUT otherwise.
1335  */
1336 static int panthor_fw_wait_acks(const u32 *req_ptr, const u32 *ack_ptr,
1337 				wait_queue_head_t *wq,
1338 				u32 req_mask, u32 *acked,
1339 				u32 timeout_ms)
1340 {
1341 	u32 ack, req = READ_ONCE(*req_ptr) & req_mask;
1342 	int ret;
1343 
1344 	/* Busy wait for a few µsecs before falling back to a sleeping wait. */
1345 	*acked = req_mask;
1346 	ret = read_poll_timeout_atomic(READ_ONCE, ack,
1347 				       (ack & req_mask) == req,
1348 				       0, 10, 0,
1349 				       *ack_ptr);
1350 	if (!ret)
1351 		return 0;
1352 
1353 	if (wait_event_timeout(*wq, (READ_ONCE(*ack_ptr) & req_mask) == req,
1354 			       msecs_to_jiffies(timeout_ms)))
1355 		return 0;
1356 
1357 	/* Check one last time, in case we were not woken up for some reason. */
1358 	ack = READ_ONCE(*ack_ptr);
1359 	if ((ack & req_mask) == req)
1360 		return 0;
1361 
1362 	*acked = ~(req ^ ack) & req_mask;
1363 	return -ETIMEDOUT;
1364 }
1365 
1366 /**
1367  * panthor_fw_glb_wait_acks() - Wait for global requests to be acknowledged.
1368  * @ptdev: Device.
1369  * @req_mask: Mask of requests to wait for.
1370  * @acked: Pointer to field that's updated with the acked requests.
1371  * If the function returns 0, *acked == req_mask.
1372  * @timeout_ms: Timeout expressed in milliseconds.
1373  *
1374  * Return: 0 on success, -ETIMEDOUT otherwise.
1375  */
1376 int panthor_fw_glb_wait_acks(struct panthor_device *ptdev,
1377 			     u32 req_mask, u32 *acked,
1378 			     u32 timeout_ms)
1379 {
1380 	struct panthor_fw_global_iface *glb_iface = panthor_fw_get_glb_iface(ptdev);
1381 
1382 	/* GLB_HALT doesn't get acked through the FW interface. */
1383 	if (drm_WARN_ON(&ptdev->base, req_mask & (~GLB_REQ_MASK | GLB_HALT)))
1384 		return -EINVAL;
1385 
1386 	return panthor_fw_wait_acks(&glb_iface->input->req,
1387 				    &glb_iface->output->ack,
1388 				    &ptdev->fw->req_waitqueue,
1389 				    req_mask, acked, timeout_ms);
1390 }
1391 
1392 /**
1393  * panthor_fw_csg_wait_acks() - Wait for command stream group requests to be acknowledged.
1394  * @ptdev: Device.
1395  * @csg_slot: CSG slot ID.
1396  * @req_mask: Mask of requests to wait for.
1397  * @acked: Pointer to field that's updated with the acked requests.
1398  * If the function returns 0, *acked == req_mask.
1399  * @timeout_ms: Timeout expressed in milliseconds.
1400  *
1401  * Return: 0 on success, -ETIMEDOUT otherwise.
1402  */
1403 int panthor_fw_csg_wait_acks(struct panthor_device *ptdev, u32 csg_slot,
1404 			     u32 req_mask, u32 *acked, u32 timeout_ms)
1405 {
1406 	struct panthor_fw_csg_iface *csg_iface = panthor_fw_get_csg_iface(ptdev, csg_slot);
1407 	int ret;
1408 
1409 	if (drm_WARN_ON(&ptdev->base, req_mask & ~CSG_REQ_MASK))
1410 		return -EINVAL;
1411 
1412 	ret = panthor_fw_wait_acks(&csg_iface->input->req,
1413 				   &csg_iface->output->ack,
1414 				   &ptdev->fw->req_waitqueue,
1415 				   req_mask, acked, timeout_ms);
1416 
1417 	/*
1418 	 * Check that all bits in the state field were updated, if any mismatch
1419 	 * then clear all bits in the state field. This allows code to do
1420 	 * (acked & CSG_STATE_MASK) and get the right value.
1421 	 */
1422 
1423 	if ((*acked & CSG_STATE_MASK) != CSG_STATE_MASK)
1424 		*acked &= ~CSG_STATE_MASK;
1425 
1426 	return ret;
1427 }
1428 
1429 void panthor_fw_ring_doorbell(struct panthor_device *ptdev, u32 doorbell_id)
1430 {
1431 	gpu_write(ptdev->iomem, CSF_DOORBELL(doorbell_id), 1);
1432 }
1433 
1434 /**
1435  * panthor_fw_ring_csg_doorbells() - Ring command stream group doorbells.
1436  * @ptdev: Device.
1437  * @csg_mask: Bitmask encoding the command stream group doorbells to ring.
1438  *
1439  * This function is toggling bits in the doorbell_req and ringing the
1440  * global doorbell. It doesn't require a user doorbell to be attached to
1441  * the group.
1442  */
1443 void panthor_fw_ring_csg_doorbells(struct panthor_device *ptdev, u32 csg_mask)
1444 {
1445 	struct panthor_fw_global_iface *glb_iface = panthor_fw_get_glb_iface(ptdev);
1446 
1447 	panthor_fw_toggle_reqs(glb_iface, doorbell_req, doorbell_ack, csg_mask);
1448 	panthor_fw_ring_doorbell(ptdev, CSF_GLB_DOORBELL_ID);
1449 }
1450 
1451 static void panthor_fw_ping_work(struct work_struct *work)
1452 {
1453 	struct panthor_fw *fw = container_of(work, struct panthor_fw, watchdog.ping_work.work);
1454 	struct panthor_device *ptdev = fw->irq.ptdev;
1455 	struct panthor_fw_global_iface *glb_iface = panthor_fw_get_glb_iface(ptdev);
1456 	u32 acked;
1457 	int ret;
1458 
1459 	if (panthor_device_reset_is_pending(ptdev))
1460 		return;
1461 
1462 	panthor_fw_toggle_reqs(glb_iface, req, ack, GLB_PING);
1463 	panthor_fw_ring_doorbell(ptdev, CSF_GLB_DOORBELL_ID);
1464 
1465 	ret = panthor_fw_glb_wait_acks(ptdev, GLB_PING, &acked, 100);
1466 	if (ret) {
1467 		panthor_device_schedule_reset(ptdev);
1468 		drm_err(&ptdev->base, "FW ping timeout, scheduling a reset");
1469 	} else {
1470 		mod_delayed_work(ptdev->reset.wq, &fw->watchdog.ping_work,
1471 				 msecs_to_jiffies(PING_INTERVAL_MS));
1472 	}
1473 }
1474 
1475 /**
1476  * panthor_fw_init() - Initialize FW related data.
1477  * @ptdev: Device.
1478  *
1479  * Return: 0 on success, a negative error code otherwise.
1480  */
1481 int panthor_fw_init(struct panthor_device *ptdev)
1482 {
1483 	struct panthor_fw *fw;
1484 	int ret, irq;
1485 
1486 	fw = drmm_kzalloc(&ptdev->base, sizeof(*fw), GFP_KERNEL);
1487 	if (!fw)
1488 		return -ENOMEM;
1489 
1490 	fw->iomem = ptdev->iomem + MCU_CONTROL_BASE;
1491 	ptdev->fw = fw;
1492 	init_waitqueue_head(&fw->req_waitqueue);
1493 	INIT_LIST_HEAD(&fw->sections);
1494 	INIT_DELAYED_WORK(&fw->watchdog.ping_work, panthor_fw_ping_work);
1495 
1496 	irq = platform_get_irq_byname(to_platform_device(ptdev->base.dev), "job");
1497 	if (irq <= 0)
1498 		return -ENODEV;
1499 
1500 	ret = panthor_request_job_irq(ptdev, &fw->irq, irq,
1501 				      ptdev->iomem + JOB_INT_BASE);
1502 	if (ret) {
1503 		drm_err(&ptdev->base, "failed to request job irq");
1504 		return ret;
1505 	}
1506 
1507 	ret = panthor_hw_l2_power_on(ptdev);
1508 	if (ret)
1509 		return ret;
1510 
1511 	fw->vm = panthor_vm_create(ptdev, true,
1512 				   0, SZ_4G,
1513 				   CSF_MCU_SHARED_REGION_START,
1514 				   CSF_MCU_SHARED_REGION_SIZE);
1515 	if (IS_ERR(fw->vm)) {
1516 		ret = PTR_ERR(fw->vm);
1517 		fw->vm = NULL;
1518 		goto err_unplug_fw;
1519 	}
1520 
1521 	ret = panthor_fw_load(ptdev);
1522 	if (ret)
1523 		goto err_unplug_fw;
1524 
1525 	ret = panthor_vm_active(fw->vm);
1526 	if (ret)
1527 		goto err_unplug_fw;
1528 
1529 	ret = panthor_fw_start(ptdev);
1530 	if (ret)
1531 		goto err_unplug_fw;
1532 
1533 	ret = panthor_fw_init_ifaces(ptdev);
1534 	if (ret)
1535 		goto err_unplug_fw;
1536 
1537 	panthor_fw_init_global_iface(ptdev);
1538 	return 0;
1539 
1540 err_unplug_fw:
1541 	panthor_fw_unplug(ptdev);
1542 	return ret;
1543 }
1544 
1545 MODULE_FIRMWARE("arm/mali/arch10.8/mali_csffw.bin");
1546 MODULE_FIRMWARE("arm/mali/arch10.10/mali_csffw.bin");
1547 MODULE_FIRMWARE("arm/mali/arch10.12/mali_csffw.bin");
1548 MODULE_FIRMWARE("arm/mali/arch11.8/mali_csffw.bin");
1549 MODULE_FIRMWARE("arm/mali/arch12.8/mali_csffw.bin");
1550 MODULE_FIRMWARE("arm/mali/arch13.8/mali_csffw.bin");
1551 MODULE_FIRMWARE("arm/mali/arch14.8/mali_csffw.bin");
1552