xref: /linux/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c (revision 466423c6dd8af23ebb3a69d43434d01aed0db356)
1 /*
2  * Copyright 2019 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  */
23 
24 #include <linux/firmware.h>
25 #include <drm/drm_exec.h>
26 
27 #include "amdgpu_mes.h"
28 #include "amdgpu.h"
29 #include "soc15_common.h"
30 #include "amdgpu_mes_ctx.h"
31 
32 #define AMDGPU_MES_MAX_NUM_OF_QUEUES_PER_PROCESS 1024
33 #define AMDGPU_ONE_DOORBELL_SIZE 8
34 
35 signed long amdgpu_mes_fence_wait_polling(u64 *fence,
36 					  u64 wait_seq,
37 					  signed long timeout)
38 {
39 
40 	while ((s64)(wait_seq - *fence) > 0 && timeout > 0) {
41 		udelay(2);
42 		timeout -= 2;
43 	}
44 	return timeout > 0 ? timeout : 0;
45 }
46 
47 int amdgpu_mes_doorbell_process_slice(struct amdgpu_device *adev)
48 {
49 	return roundup(AMDGPU_ONE_DOORBELL_SIZE *
50 		       AMDGPU_MES_MAX_NUM_OF_QUEUES_PER_PROCESS,
51 		       PAGE_SIZE);
52 }
53 
54 static int amdgpu_mes_kernel_doorbell_get(struct amdgpu_device *adev,
55 					 int ip_type, uint64_t *doorbell_index)
56 {
57 	unsigned int offset, found;
58 	struct amdgpu_mes *mes = &adev->mes;
59 
60 	if (ip_type == AMDGPU_RING_TYPE_SDMA)
61 		offset = adev->doorbell_index.sdma_engine[0];
62 	else
63 		offset = 0;
64 
65 	found = find_next_zero_bit(mes->doorbell_bitmap, mes->num_mes_dbs, offset);
66 	if (found >= mes->num_mes_dbs) {
67 		DRM_WARN("No doorbell available\n");
68 		return -ENOSPC;
69 	}
70 
71 	set_bit(found, mes->doorbell_bitmap);
72 
73 	/* Get the absolute doorbell index on BAR */
74 	*doorbell_index = mes->db_start_dw_offset + found * 2;
75 	return 0;
76 }
77 
78 static void amdgpu_mes_kernel_doorbell_free(struct amdgpu_device *adev,
79 					   uint32_t doorbell_index)
80 {
81 	unsigned int old, rel_index;
82 	struct amdgpu_mes *mes = &adev->mes;
83 
84 	/* Find the relative index of the doorbell in this object */
85 	rel_index = (doorbell_index - mes->db_start_dw_offset) / 2;
86 	old = test_and_clear_bit(rel_index, mes->doorbell_bitmap);
87 	WARN_ON(!old);
88 }
89 
90 static int amdgpu_mes_doorbell_init(struct amdgpu_device *adev)
91 {
92 	int i;
93 	struct amdgpu_mes *mes = &adev->mes;
94 
95 	/* Bitmap for dynamic allocation of kernel doorbells */
96 	mes->doorbell_bitmap = bitmap_zalloc(PAGE_SIZE / sizeof(u32), GFP_KERNEL);
97 	if (!mes->doorbell_bitmap) {
98 		DRM_ERROR("Failed to allocate MES doorbell bitmap\n");
99 		return -ENOMEM;
100 	}
101 
102 	mes->num_mes_dbs = PAGE_SIZE / AMDGPU_ONE_DOORBELL_SIZE;
103 	for (i = 0; i < AMDGPU_MES_PRIORITY_NUM_LEVELS; i++) {
104 		adev->mes.aggregated_doorbells[i] = mes->db_start_dw_offset + i * 2;
105 		set_bit(i, mes->doorbell_bitmap);
106 	}
107 
108 	return 0;
109 }
110 
111 static int amdgpu_mes_event_log_init(struct amdgpu_device *adev)
112 {
113 	int r;
114 
115 	if (!amdgpu_mes_log_enable)
116 		return 0;
117 
118 	r = amdgpu_bo_create_kernel(adev, AMDGPU_MES_LOG_BUFFER_SIZE, PAGE_SIZE,
119 				    AMDGPU_GEM_DOMAIN_GTT,
120 				    &adev->mes.event_log_gpu_obj,
121 				    &adev->mes.event_log_gpu_addr,
122 				    &adev->mes.event_log_cpu_addr);
123 	if (r) {
124 		dev_warn(adev->dev, "failed to create MES event log buffer (%d)", r);
125 		return r;
126 	}
127 
128 	memset(adev->mes.event_log_cpu_addr, 0, PAGE_SIZE);
129 
130 	return  0;
131 
132 }
133 
134 static void amdgpu_mes_doorbell_free(struct amdgpu_device *adev)
135 {
136 	bitmap_free(adev->mes.doorbell_bitmap);
137 }
138 
139 int amdgpu_mes_init(struct amdgpu_device *adev)
140 {
141 	int i, r;
142 
143 	adev->mes.adev = adev;
144 
145 	idr_init(&adev->mes.pasid_idr);
146 	idr_init(&adev->mes.gang_id_idr);
147 	idr_init(&adev->mes.queue_id_idr);
148 	ida_init(&adev->mes.doorbell_ida);
149 	spin_lock_init(&adev->mes.queue_id_lock);
150 	spin_lock_init(&adev->mes.ring_lock);
151 	mutex_init(&adev->mes.mutex_hidden);
152 
153 	adev->mes.total_max_queue = AMDGPU_FENCE_MES_QUEUE_ID_MASK;
154 	adev->mes.vmid_mask_mmhub = 0xffffff00;
155 	adev->mes.vmid_mask_gfxhub = 0xffffff00;
156 
157 	for (i = 0; i < AMDGPU_MES_MAX_COMPUTE_PIPES; i++) {
158 		/* use only 1st MEC pipes */
159 		if (i >= adev->gfx.mec.num_pipe_per_mec)
160 			continue;
161 		adev->mes.compute_hqd_mask[i] = 0xc;
162 	}
163 
164 	for (i = 0; i < AMDGPU_MES_MAX_GFX_PIPES; i++)
165 		adev->mes.gfx_hqd_mask[i] = i ? 0 : 0xfffffffe;
166 
167 	for (i = 0; i < AMDGPU_MES_MAX_SDMA_PIPES; i++) {
168 		if (amdgpu_ip_version(adev, SDMA0_HWIP, 0) <
169 		    IP_VERSION(6, 0, 0))
170 			adev->mes.sdma_hqd_mask[i] = i ? 0 : 0x3fc;
171 		/* zero sdma_hqd_mask for non-existent engine */
172 		else if (adev->sdma.num_instances == 1)
173 			adev->mes.sdma_hqd_mask[i] = i ? 0 : 0xfc;
174 		else
175 			adev->mes.sdma_hqd_mask[i] = 0xfc;
176 	}
177 
178 	r = amdgpu_device_wb_get(adev, &adev->mes.sch_ctx_offs);
179 	if (r) {
180 		dev_err(adev->dev,
181 			"(%d) ring trail_fence_offs wb alloc failed\n", r);
182 		goto error_ids;
183 	}
184 	adev->mes.sch_ctx_gpu_addr =
185 		adev->wb.gpu_addr + (adev->mes.sch_ctx_offs * 4);
186 	adev->mes.sch_ctx_ptr =
187 		(uint64_t *)&adev->wb.wb[adev->mes.sch_ctx_offs];
188 
189 	r = amdgpu_device_wb_get(adev, &adev->mes.query_status_fence_offs);
190 	if (r) {
191 		amdgpu_device_wb_free(adev, adev->mes.sch_ctx_offs);
192 		dev_err(adev->dev,
193 			"(%d) query_status_fence_offs wb alloc failed\n", r);
194 		goto error_ids;
195 	}
196 	adev->mes.query_status_fence_gpu_addr =
197 		adev->wb.gpu_addr + (adev->mes.query_status_fence_offs * 4);
198 	adev->mes.query_status_fence_ptr =
199 		(uint64_t *)&adev->wb.wb[adev->mes.query_status_fence_offs];
200 
201 	r = amdgpu_device_wb_get(adev, &adev->mes.read_val_offs);
202 	if (r) {
203 		amdgpu_device_wb_free(adev, adev->mes.sch_ctx_offs);
204 		amdgpu_device_wb_free(adev, adev->mes.query_status_fence_offs);
205 		dev_err(adev->dev,
206 			"(%d) read_val_offs alloc failed\n", r);
207 		goto error_ids;
208 	}
209 	adev->mes.read_val_gpu_addr =
210 		adev->wb.gpu_addr + (adev->mes.read_val_offs * 4);
211 	adev->mes.read_val_ptr =
212 		(uint32_t *)&adev->wb.wb[adev->mes.read_val_offs];
213 
214 	r = amdgpu_mes_doorbell_init(adev);
215 	if (r)
216 		goto error;
217 
218 	r = amdgpu_mes_event_log_init(adev);
219 	if (r)
220 		goto error_doorbell;
221 
222 	return 0;
223 
224 error_doorbell:
225 	amdgpu_mes_doorbell_free(adev);
226 error:
227 	amdgpu_device_wb_free(adev, adev->mes.sch_ctx_offs);
228 	amdgpu_device_wb_free(adev, adev->mes.query_status_fence_offs);
229 	amdgpu_device_wb_free(adev, adev->mes.read_val_offs);
230 error_ids:
231 	idr_destroy(&adev->mes.pasid_idr);
232 	idr_destroy(&adev->mes.gang_id_idr);
233 	idr_destroy(&adev->mes.queue_id_idr);
234 	ida_destroy(&adev->mes.doorbell_ida);
235 	mutex_destroy(&adev->mes.mutex_hidden);
236 	return r;
237 }
238 
239 void amdgpu_mes_fini(struct amdgpu_device *adev)
240 {
241 	amdgpu_bo_free_kernel(&adev->mes.event_log_gpu_obj,
242 			      &adev->mes.event_log_gpu_addr,
243 			      &adev->mes.event_log_cpu_addr);
244 
245 	amdgpu_device_wb_free(adev, adev->mes.sch_ctx_offs);
246 	amdgpu_device_wb_free(adev, adev->mes.query_status_fence_offs);
247 	amdgpu_device_wb_free(adev, adev->mes.read_val_offs);
248 	amdgpu_mes_doorbell_free(adev);
249 
250 	idr_destroy(&adev->mes.pasid_idr);
251 	idr_destroy(&adev->mes.gang_id_idr);
252 	idr_destroy(&adev->mes.queue_id_idr);
253 	ida_destroy(&adev->mes.doorbell_ida);
254 	mutex_destroy(&adev->mes.mutex_hidden);
255 }
256 
257 static void amdgpu_mes_queue_free_mqd(struct amdgpu_mes_queue *q)
258 {
259 	amdgpu_bo_free_kernel(&q->mqd_obj,
260 			      &q->mqd_gpu_addr,
261 			      &q->mqd_cpu_ptr);
262 }
263 
264 int amdgpu_mes_create_process(struct amdgpu_device *adev, int pasid,
265 			      struct amdgpu_vm *vm)
266 {
267 	struct amdgpu_mes_process *process;
268 	int r;
269 
270 	/* allocate the mes process buffer */
271 	process = kzalloc(sizeof(struct amdgpu_mes_process), GFP_KERNEL);
272 	if (!process) {
273 		DRM_ERROR("no more memory to create mes process\n");
274 		return -ENOMEM;
275 	}
276 
277 	/* allocate the process context bo and map it */
278 	r = amdgpu_bo_create_kernel(adev, AMDGPU_MES_PROC_CTX_SIZE, PAGE_SIZE,
279 				    AMDGPU_GEM_DOMAIN_GTT,
280 				    &process->proc_ctx_bo,
281 				    &process->proc_ctx_gpu_addr,
282 				    &process->proc_ctx_cpu_ptr);
283 	if (r) {
284 		DRM_ERROR("failed to allocate process context bo\n");
285 		goto clean_up_memory;
286 	}
287 	memset(process->proc_ctx_cpu_ptr, 0, AMDGPU_MES_PROC_CTX_SIZE);
288 
289 	/*
290 	 * Avoid taking any other locks under MES lock to avoid circular
291 	 * lock dependencies.
292 	 */
293 	amdgpu_mes_lock(&adev->mes);
294 
295 	/* add the mes process to idr list */
296 	r = idr_alloc(&adev->mes.pasid_idr, process, pasid, pasid + 1,
297 		      GFP_KERNEL);
298 	if (r < 0) {
299 		DRM_ERROR("failed to lock pasid=%d\n", pasid);
300 		goto clean_up_ctx;
301 	}
302 
303 	INIT_LIST_HEAD(&process->gang_list);
304 	process->vm = vm;
305 	process->pasid = pasid;
306 	process->process_quantum = adev->mes.default_process_quantum;
307 	process->pd_gpu_addr = amdgpu_bo_gpu_offset(vm->root.bo);
308 
309 	amdgpu_mes_unlock(&adev->mes);
310 	return 0;
311 
312 clean_up_ctx:
313 	amdgpu_mes_unlock(&adev->mes);
314 	amdgpu_bo_free_kernel(&process->proc_ctx_bo,
315 			      &process->proc_ctx_gpu_addr,
316 			      &process->proc_ctx_cpu_ptr);
317 clean_up_memory:
318 	kfree(process);
319 	return r;
320 }
321 
322 void amdgpu_mes_destroy_process(struct amdgpu_device *adev, int pasid)
323 {
324 	struct amdgpu_mes_process *process;
325 	struct amdgpu_mes_gang *gang, *tmp1;
326 	struct amdgpu_mes_queue *queue, *tmp2;
327 	struct mes_remove_queue_input queue_input;
328 	unsigned long flags;
329 	int r;
330 
331 	/*
332 	 * Avoid taking any other locks under MES lock to avoid circular
333 	 * lock dependencies.
334 	 */
335 	amdgpu_mes_lock(&adev->mes);
336 
337 	process = idr_find(&adev->mes.pasid_idr, pasid);
338 	if (!process) {
339 		DRM_WARN("pasid %d doesn't exist\n", pasid);
340 		amdgpu_mes_unlock(&adev->mes);
341 		return;
342 	}
343 
344 	/* Remove all queues from hardware */
345 	list_for_each_entry_safe(gang, tmp1, &process->gang_list, list) {
346 		list_for_each_entry_safe(queue, tmp2, &gang->queue_list, list) {
347 			spin_lock_irqsave(&adev->mes.queue_id_lock, flags);
348 			idr_remove(&adev->mes.queue_id_idr, queue->queue_id);
349 			spin_unlock_irqrestore(&adev->mes.queue_id_lock, flags);
350 
351 			queue_input.doorbell_offset = queue->doorbell_off;
352 			queue_input.gang_context_addr = gang->gang_ctx_gpu_addr;
353 
354 			r = adev->mes.funcs->remove_hw_queue(&adev->mes,
355 							     &queue_input);
356 			if (r)
357 				DRM_WARN("failed to remove hardware queue\n");
358 		}
359 
360 		idr_remove(&adev->mes.gang_id_idr, gang->gang_id);
361 	}
362 
363 	idr_remove(&adev->mes.pasid_idr, pasid);
364 	amdgpu_mes_unlock(&adev->mes);
365 
366 	/* free all memory allocated by the process */
367 	list_for_each_entry_safe(gang, tmp1, &process->gang_list, list) {
368 		/* free all queues in the gang */
369 		list_for_each_entry_safe(queue, tmp2, &gang->queue_list, list) {
370 			amdgpu_mes_queue_free_mqd(queue);
371 			list_del(&queue->list);
372 			kfree(queue);
373 		}
374 		amdgpu_bo_free_kernel(&gang->gang_ctx_bo,
375 				      &gang->gang_ctx_gpu_addr,
376 				      &gang->gang_ctx_cpu_ptr);
377 		list_del(&gang->list);
378 		kfree(gang);
379 
380 	}
381 	amdgpu_bo_free_kernel(&process->proc_ctx_bo,
382 			      &process->proc_ctx_gpu_addr,
383 			      &process->proc_ctx_cpu_ptr);
384 	kfree(process);
385 }
386 
387 int amdgpu_mes_add_gang(struct amdgpu_device *adev, int pasid,
388 			struct amdgpu_mes_gang_properties *gprops,
389 			int *gang_id)
390 {
391 	struct amdgpu_mes_process *process;
392 	struct amdgpu_mes_gang *gang;
393 	int r;
394 
395 	/* allocate the mes gang buffer */
396 	gang = kzalloc(sizeof(struct amdgpu_mes_gang), GFP_KERNEL);
397 	if (!gang) {
398 		return -ENOMEM;
399 	}
400 
401 	/* allocate the gang context bo and map it to cpu space */
402 	r = amdgpu_bo_create_kernel(adev, AMDGPU_MES_GANG_CTX_SIZE, PAGE_SIZE,
403 				    AMDGPU_GEM_DOMAIN_GTT,
404 				    &gang->gang_ctx_bo,
405 				    &gang->gang_ctx_gpu_addr,
406 				    &gang->gang_ctx_cpu_ptr);
407 	if (r) {
408 		DRM_ERROR("failed to allocate process context bo\n");
409 		goto clean_up_mem;
410 	}
411 	memset(gang->gang_ctx_cpu_ptr, 0, AMDGPU_MES_GANG_CTX_SIZE);
412 
413 	/*
414 	 * Avoid taking any other locks under MES lock to avoid circular
415 	 * lock dependencies.
416 	 */
417 	amdgpu_mes_lock(&adev->mes);
418 
419 	process = idr_find(&adev->mes.pasid_idr, pasid);
420 	if (!process) {
421 		DRM_ERROR("pasid %d doesn't exist\n", pasid);
422 		r = -EINVAL;
423 		goto clean_up_ctx;
424 	}
425 
426 	/* add the mes gang to idr list */
427 	r = idr_alloc(&adev->mes.gang_id_idr, gang, 1, 0,
428 		      GFP_KERNEL);
429 	if (r < 0) {
430 		DRM_ERROR("failed to allocate idr for gang\n");
431 		goto clean_up_ctx;
432 	}
433 
434 	gang->gang_id = r;
435 	*gang_id = r;
436 
437 	INIT_LIST_HEAD(&gang->queue_list);
438 	gang->process = process;
439 	gang->priority = gprops->priority;
440 	gang->gang_quantum = gprops->gang_quantum ?
441 		gprops->gang_quantum : adev->mes.default_gang_quantum;
442 	gang->global_priority_level = gprops->global_priority_level;
443 	gang->inprocess_gang_priority = gprops->inprocess_gang_priority;
444 	list_add_tail(&gang->list, &process->gang_list);
445 
446 	amdgpu_mes_unlock(&adev->mes);
447 	return 0;
448 
449 clean_up_ctx:
450 	amdgpu_mes_unlock(&adev->mes);
451 	amdgpu_bo_free_kernel(&gang->gang_ctx_bo,
452 			      &gang->gang_ctx_gpu_addr,
453 			      &gang->gang_ctx_cpu_ptr);
454 clean_up_mem:
455 	kfree(gang);
456 	return r;
457 }
458 
459 int amdgpu_mes_remove_gang(struct amdgpu_device *adev, int gang_id)
460 {
461 	struct amdgpu_mes_gang *gang;
462 
463 	/*
464 	 * Avoid taking any other locks under MES lock to avoid circular
465 	 * lock dependencies.
466 	 */
467 	amdgpu_mes_lock(&adev->mes);
468 
469 	gang = idr_find(&adev->mes.gang_id_idr, gang_id);
470 	if (!gang) {
471 		DRM_ERROR("gang id %d doesn't exist\n", gang_id);
472 		amdgpu_mes_unlock(&adev->mes);
473 		return -EINVAL;
474 	}
475 
476 	if (!list_empty(&gang->queue_list)) {
477 		DRM_ERROR("queue list is not empty\n");
478 		amdgpu_mes_unlock(&adev->mes);
479 		return -EBUSY;
480 	}
481 
482 	idr_remove(&adev->mes.gang_id_idr, gang->gang_id);
483 	list_del(&gang->list);
484 	amdgpu_mes_unlock(&adev->mes);
485 
486 	amdgpu_bo_free_kernel(&gang->gang_ctx_bo,
487 			      &gang->gang_ctx_gpu_addr,
488 			      &gang->gang_ctx_cpu_ptr);
489 
490 	kfree(gang);
491 
492 	return 0;
493 }
494 
495 int amdgpu_mes_suspend(struct amdgpu_device *adev)
496 {
497 	struct idr *idp;
498 	struct amdgpu_mes_process *process;
499 	struct amdgpu_mes_gang *gang;
500 	struct mes_suspend_gang_input input;
501 	int r, pasid;
502 
503 	/*
504 	 * Avoid taking any other locks under MES lock to avoid circular
505 	 * lock dependencies.
506 	 */
507 	amdgpu_mes_lock(&adev->mes);
508 
509 	idp = &adev->mes.pasid_idr;
510 
511 	idr_for_each_entry(idp, process, pasid) {
512 		list_for_each_entry(gang, &process->gang_list, list) {
513 			r = adev->mes.funcs->suspend_gang(&adev->mes, &input);
514 			if (r)
515 				DRM_ERROR("failed to suspend pasid %d gangid %d",
516 					 pasid, gang->gang_id);
517 		}
518 	}
519 
520 	amdgpu_mes_unlock(&adev->mes);
521 	return 0;
522 }
523 
524 int amdgpu_mes_resume(struct amdgpu_device *adev)
525 {
526 	struct idr *idp;
527 	struct amdgpu_mes_process *process;
528 	struct amdgpu_mes_gang *gang;
529 	struct mes_resume_gang_input input;
530 	int r, pasid;
531 
532 	/*
533 	 * Avoid taking any other locks under MES lock to avoid circular
534 	 * lock dependencies.
535 	 */
536 	amdgpu_mes_lock(&adev->mes);
537 
538 	idp = &adev->mes.pasid_idr;
539 
540 	idr_for_each_entry(idp, process, pasid) {
541 		list_for_each_entry(gang, &process->gang_list, list) {
542 			r = adev->mes.funcs->resume_gang(&adev->mes, &input);
543 			if (r)
544 				DRM_ERROR("failed to resume pasid %d gangid %d",
545 					 pasid, gang->gang_id);
546 		}
547 	}
548 
549 	amdgpu_mes_unlock(&adev->mes);
550 	return 0;
551 }
552 
553 static int amdgpu_mes_queue_alloc_mqd(struct amdgpu_device *adev,
554 				     struct amdgpu_mes_queue *q,
555 				     struct amdgpu_mes_queue_properties *p)
556 {
557 	struct amdgpu_mqd *mqd_mgr = &adev->mqds[p->queue_type];
558 	u32 mqd_size = mqd_mgr->mqd_size;
559 	int r;
560 
561 	r = amdgpu_bo_create_kernel(adev, mqd_size, PAGE_SIZE,
562 				    AMDGPU_GEM_DOMAIN_GTT,
563 				    &q->mqd_obj,
564 				    &q->mqd_gpu_addr, &q->mqd_cpu_ptr);
565 	if (r) {
566 		dev_warn(adev->dev, "failed to create queue mqd bo (%d)", r);
567 		return r;
568 	}
569 	memset(q->mqd_cpu_ptr, 0, mqd_size);
570 
571 	r = amdgpu_bo_reserve(q->mqd_obj, false);
572 	if (unlikely(r != 0))
573 		goto clean_up;
574 
575 	return 0;
576 
577 clean_up:
578 	amdgpu_bo_free_kernel(&q->mqd_obj,
579 			      &q->mqd_gpu_addr,
580 			      &q->mqd_cpu_ptr);
581 	return r;
582 }
583 
584 static void amdgpu_mes_queue_init_mqd(struct amdgpu_device *adev,
585 				     struct amdgpu_mes_queue *q,
586 				     struct amdgpu_mes_queue_properties *p)
587 {
588 	struct amdgpu_mqd *mqd_mgr = &adev->mqds[p->queue_type];
589 	struct amdgpu_mqd_prop mqd_prop = {0};
590 
591 	mqd_prop.mqd_gpu_addr = q->mqd_gpu_addr;
592 	mqd_prop.hqd_base_gpu_addr = p->hqd_base_gpu_addr;
593 	mqd_prop.rptr_gpu_addr = p->rptr_gpu_addr;
594 	mqd_prop.wptr_gpu_addr = p->wptr_gpu_addr;
595 	mqd_prop.queue_size = p->queue_size;
596 	mqd_prop.use_doorbell = true;
597 	mqd_prop.doorbell_index = p->doorbell_off;
598 	mqd_prop.eop_gpu_addr = p->eop_gpu_addr;
599 	mqd_prop.hqd_pipe_priority = p->hqd_pipe_priority;
600 	mqd_prop.hqd_queue_priority = p->hqd_queue_priority;
601 	mqd_prop.hqd_active = false;
602 
603 	if (p->queue_type == AMDGPU_RING_TYPE_GFX ||
604 	    p->queue_type == AMDGPU_RING_TYPE_COMPUTE) {
605 		mutex_lock(&adev->srbm_mutex);
606 		amdgpu_gfx_select_me_pipe_q(adev, p->ring->me, p->ring->pipe, 0, 0, 0);
607 	}
608 
609 	mqd_mgr->init_mqd(adev, q->mqd_cpu_ptr, &mqd_prop);
610 
611 	if (p->queue_type == AMDGPU_RING_TYPE_GFX ||
612 	    p->queue_type == AMDGPU_RING_TYPE_COMPUTE) {
613 		amdgpu_gfx_select_me_pipe_q(adev, 0, 0, 0, 0, 0);
614 		mutex_unlock(&adev->srbm_mutex);
615 	}
616 
617 	amdgpu_bo_unreserve(q->mqd_obj);
618 }
619 
620 int amdgpu_mes_add_hw_queue(struct amdgpu_device *adev, int gang_id,
621 			    struct amdgpu_mes_queue_properties *qprops,
622 			    int *queue_id)
623 {
624 	struct amdgpu_mes_queue *queue;
625 	struct amdgpu_mes_gang *gang;
626 	struct mes_add_queue_input queue_input;
627 	unsigned long flags;
628 	int r;
629 
630 	memset(&queue_input, 0, sizeof(struct mes_add_queue_input));
631 
632 	/* allocate the mes queue buffer */
633 	queue = kzalloc(sizeof(struct amdgpu_mes_queue), GFP_KERNEL);
634 	if (!queue) {
635 		DRM_ERROR("Failed to allocate memory for queue\n");
636 		return -ENOMEM;
637 	}
638 
639 	/* Allocate the queue mqd */
640 	r = amdgpu_mes_queue_alloc_mqd(adev, queue, qprops);
641 	if (r)
642 		goto clean_up_memory;
643 
644 	/*
645 	 * Avoid taking any other locks under MES lock to avoid circular
646 	 * lock dependencies.
647 	 */
648 	amdgpu_mes_lock(&adev->mes);
649 
650 	gang = idr_find(&adev->mes.gang_id_idr, gang_id);
651 	if (!gang) {
652 		DRM_ERROR("gang id %d doesn't exist\n", gang_id);
653 		r = -EINVAL;
654 		goto clean_up_mqd;
655 	}
656 
657 	/* add the mes gang to idr list */
658 	spin_lock_irqsave(&adev->mes.queue_id_lock, flags);
659 	r = idr_alloc(&adev->mes.queue_id_idr, queue, 1, 0,
660 		      GFP_ATOMIC);
661 	if (r < 0) {
662 		spin_unlock_irqrestore(&adev->mes.queue_id_lock, flags);
663 		goto clean_up_mqd;
664 	}
665 	spin_unlock_irqrestore(&adev->mes.queue_id_lock, flags);
666 	*queue_id = queue->queue_id = r;
667 
668 	/* allocate a doorbell index for the queue */
669 	r = amdgpu_mes_kernel_doorbell_get(adev,
670 					  qprops->queue_type,
671 					  &qprops->doorbell_off);
672 	if (r)
673 		goto clean_up_queue_id;
674 
675 	/* initialize the queue mqd */
676 	amdgpu_mes_queue_init_mqd(adev, queue, qprops);
677 
678 	/* add hw queue to mes */
679 	queue_input.process_id = gang->process->pasid;
680 
681 	queue_input.page_table_base_addr =
682 		adev->vm_manager.vram_base_offset + gang->process->pd_gpu_addr -
683 		adev->gmc.vram_start;
684 
685 	queue_input.process_va_start = 0;
686 	queue_input.process_va_end =
687 		(adev->vm_manager.max_pfn - 1) << AMDGPU_GPU_PAGE_SHIFT;
688 	queue_input.process_quantum = gang->process->process_quantum;
689 	queue_input.process_context_addr = gang->process->proc_ctx_gpu_addr;
690 	queue_input.gang_quantum = gang->gang_quantum;
691 	queue_input.gang_context_addr = gang->gang_ctx_gpu_addr;
692 	queue_input.inprocess_gang_priority = gang->inprocess_gang_priority;
693 	queue_input.gang_global_priority_level = gang->global_priority_level;
694 	queue_input.doorbell_offset = qprops->doorbell_off;
695 	queue_input.mqd_addr = queue->mqd_gpu_addr;
696 	queue_input.wptr_addr = qprops->wptr_gpu_addr;
697 	queue_input.wptr_mc_addr = qprops->wptr_mc_addr;
698 	queue_input.queue_type = qprops->queue_type;
699 	queue_input.paging = qprops->paging;
700 	queue_input.is_kfd_process = 0;
701 
702 	r = adev->mes.funcs->add_hw_queue(&adev->mes, &queue_input);
703 	if (r) {
704 		DRM_ERROR("failed to add hardware queue to MES, doorbell=0x%llx\n",
705 			  qprops->doorbell_off);
706 		goto clean_up_doorbell;
707 	}
708 
709 	DRM_DEBUG("MES hw queue was added, pasid=%d, gang id=%d, "
710 		  "queue type=%d, doorbell=0x%llx\n",
711 		  gang->process->pasid, gang_id, qprops->queue_type,
712 		  qprops->doorbell_off);
713 
714 	queue->ring = qprops->ring;
715 	queue->doorbell_off = qprops->doorbell_off;
716 	queue->wptr_gpu_addr = qprops->wptr_gpu_addr;
717 	queue->queue_type = qprops->queue_type;
718 	queue->paging = qprops->paging;
719 	queue->gang = gang;
720 	queue->ring->mqd_ptr = queue->mqd_cpu_ptr;
721 	list_add_tail(&queue->list, &gang->queue_list);
722 
723 	amdgpu_mes_unlock(&adev->mes);
724 	return 0;
725 
726 clean_up_doorbell:
727 	amdgpu_mes_kernel_doorbell_free(adev, qprops->doorbell_off);
728 clean_up_queue_id:
729 	spin_lock_irqsave(&adev->mes.queue_id_lock, flags);
730 	idr_remove(&adev->mes.queue_id_idr, queue->queue_id);
731 	spin_unlock_irqrestore(&adev->mes.queue_id_lock, flags);
732 clean_up_mqd:
733 	amdgpu_mes_unlock(&adev->mes);
734 	amdgpu_mes_queue_free_mqd(queue);
735 clean_up_memory:
736 	kfree(queue);
737 	return r;
738 }
739 
740 int amdgpu_mes_remove_hw_queue(struct amdgpu_device *adev, int queue_id)
741 {
742 	unsigned long flags;
743 	struct amdgpu_mes_queue *queue;
744 	struct amdgpu_mes_gang *gang;
745 	struct mes_remove_queue_input queue_input;
746 	int r;
747 
748 	/*
749 	 * Avoid taking any other locks under MES lock to avoid circular
750 	 * lock dependencies.
751 	 */
752 	amdgpu_mes_lock(&adev->mes);
753 
754 	/* remove the mes gang from idr list */
755 	spin_lock_irqsave(&adev->mes.queue_id_lock, flags);
756 
757 	queue = idr_find(&adev->mes.queue_id_idr, queue_id);
758 	if (!queue) {
759 		spin_unlock_irqrestore(&adev->mes.queue_id_lock, flags);
760 		amdgpu_mes_unlock(&adev->mes);
761 		DRM_ERROR("queue id %d doesn't exist\n", queue_id);
762 		return -EINVAL;
763 	}
764 
765 	idr_remove(&adev->mes.queue_id_idr, queue_id);
766 	spin_unlock_irqrestore(&adev->mes.queue_id_lock, flags);
767 
768 	DRM_DEBUG("try to remove queue, doorbell off = 0x%llx\n",
769 		  queue->doorbell_off);
770 
771 	gang = queue->gang;
772 	queue_input.doorbell_offset = queue->doorbell_off;
773 	queue_input.gang_context_addr = gang->gang_ctx_gpu_addr;
774 
775 	r = adev->mes.funcs->remove_hw_queue(&adev->mes, &queue_input);
776 	if (r)
777 		DRM_ERROR("failed to remove hardware queue, queue id = %d\n",
778 			  queue_id);
779 
780 	list_del(&queue->list);
781 	amdgpu_mes_kernel_doorbell_free(adev, queue->doorbell_off);
782 	amdgpu_mes_unlock(&adev->mes);
783 
784 	amdgpu_mes_queue_free_mqd(queue);
785 	kfree(queue);
786 	return 0;
787 }
788 
789 int amdgpu_mes_map_legacy_queue(struct amdgpu_device *adev,
790 				struct amdgpu_ring *ring)
791 {
792 	struct mes_map_legacy_queue_input queue_input;
793 	int r;
794 
795 	memset(&queue_input, 0, sizeof(queue_input));
796 
797 	queue_input.queue_type = ring->funcs->type;
798 	queue_input.doorbell_offset = ring->doorbell_index;
799 	queue_input.pipe_id = ring->pipe;
800 	queue_input.queue_id = ring->queue;
801 	queue_input.mqd_addr = amdgpu_bo_gpu_offset(ring->mqd_obj);
802 	queue_input.wptr_addr = ring->wptr_gpu_addr;
803 
804 	amdgpu_mes_lock(&adev->mes);
805 	r = adev->mes.funcs->map_legacy_queue(&adev->mes, &queue_input);
806 	amdgpu_mes_unlock(&adev->mes);
807 	if (r)
808 		DRM_ERROR("failed to map legacy queue\n");
809 
810 	return r;
811 }
812 
813 int amdgpu_mes_unmap_legacy_queue(struct amdgpu_device *adev,
814 				  struct amdgpu_ring *ring,
815 				  enum amdgpu_unmap_queues_action action,
816 				  u64 gpu_addr, u64 seq)
817 {
818 	struct mes_unmap_legacy_queue_input queue_input;
819 	int r;
820 
821 	queue_input.action = action;
822 	queue_input.queue_type = ring->funcs->type;
823 	queue_input.doorbell_offset = ring->doorbell_index;
824 	queue_input.pipe_id = ring->pipe;
825 	queue_input.queue_id = ring->queue;
826 	queue_input.trail_fence_addr = gpu_addr;
827 	queue_input.trail_fence_data = seq;
828 
829 	amdgpu_mes_lock(&adev->mes);
830 	r = adev->mes.funcs->unmap_legacy_queue(&adev->mes, &queue_input);
831 	amdgpu_mes_unlock(&adev->mes);
832 	if (r)
833 		DRM_ERROR("failed to unmap legacy queue\n");
834 
835 	return r;
836 }
837 
838 uint32_t amdgpu_mes_rreg(struct amdgpu_device *adev, uint32_t reg)
839 {
840 	struct mes_misc_op_input op_input;
841 	int r, val = 0;
842 
843 	op_input.op = MES_MISC_OP_READ_REG;
844 	op_input.read_reg.reg_offset = reg;
845 	op_input.read_reg.buffer_addr = adev->mes.read_val_gpu_addr;
846 
847 	if (!adev->mes.funcs->misc_op) {
848 		DRM_ERROR("mes rreg is not supported!\n");
849 		goto error;
850 	}
851 
852 	amdgpu_mes_lock(&adev->mes);
853 	r = adev->mes.funcs->misc_op(&adev->mes, &op_input);
854 	if (r)
855 		DRM_ERROR("failed to read reg (0x%x)\n", reg);
856 	else
857 		val = *(adev->mes.read_val_ptr);
858 	amdgpu_mes_unlock(&adev->mes);
859 
860 error:
861 	return val;
862 }
863 
864 int amdgpu_mes_wreg(struct amdgpu_device *adev,
865 		    uint32_t reg, uint32_t val)
866 {
867 	struct mes_misc_op_input op_input;
868 	int r;
869 
870 	op_input.op = MES_MISC_OP_WRITE_REG;
871 	op_input.write_reg.reg_offset = reg;
872 	op_input.write_reg.reg_value = val;
873 
874 	if (!adev->mes.funcs->misc_op) {
875 		DRM_ERROR("mes wreg is not supported!\n");
876 		r = -EINVAL;
877 		goto error;
878 	}
879 
880 	amdgpu_mes_lock(&adev->mes);
881 	r = adev->mes.funcs->misc_op(&adev->mes, &op_input);
882 	amdgpu_mes_unlock(&adev->mes);
883 	if (r)
884 		DRM_ERROR("failed to write reg (0x%x)\n", reg);
885 
886 error:
887 	return r;
888 }
889 
890 int amdgpu_mes_reg_write_reg_wait(struct amdgpu_device *adev,
891 				  uint32_t reg0, uint32_t reg1,
892 				  uint32_t ref, uint32_t mask)
893 {
894 	struct mes_misc_op_input op_input;
895 	int r;
896 
897 	op_input.op = MES_MISC_OP_WRM_REG_WR_WAIT;
898 	op_input.wrm_reg.reg0 = reg0;
899 	op_input.wrm_reg.reg1 = reg1;
900 	op_input.wrm_reg.ref = ref;
901 	op_input.wrm_reg.mask = mask;
902 
903 	if (!adev->mes.funcs->misc_op) {
904 		DRM_ERROR("mes reg_write_reg_wait is not supported!\n");
905 		r = -EINVAL;
906 		goto error;
907 	}
908 
909 	amdgpu_mes_lock(&adev->mes);
910 	r = adev->mes.funcs->misc_op(&adev->mes, &op_input);
911 	amdgpu_mes_unlock(&adev->mes);
912 	if (r)
913 		DRM_ERROR("failed to reg_write_reg_wait\n");
914 
915 error:
916 	return r;
917 }
918 
919 int amdgpu_mes_reg_wait(struct amdgpu_device *adev, uint32_t reg,
920 			uint32_t val, uint32_t mask)
921 {
922 	struct mes_misc_op_input op_input;
923 	int r;
924 
925 	op_input.op = MES_MISC_OP_WRM_REG_WAIT;
926 	op_input.wrm_reg.reg0 = reg;
927 	op_input.wrm_reg.ref = val;
928 	op_input.wrm_reg.mask = mask;
929 
930 	if (!adev->mes.funcs->misc_op) {
931 		DRM_ERROR("mes reg wait is not supported!\n");
932 		r = -EINVAL;
933 		goto error;
934 	}
935 
936 	amdgpu_mes_lock(&adev->mes);
937 	r = adev->mes.funcs->misc_op(&adev->mes, &op_input);
938 	amdgpu_mes_unlock(&adev->mes);
939 	if (r)
940 		DRM_ERROR("failed to reg_write_reg_wait\n");
941 
942 error:
943 	return r;
944 }
945 
946 int amdgpu_mes_set_shader_debugger(struct amdgpu_device *adev,
947 				uint64_t process_context_addr,
948 				uint32_t spi_gdbg_per_vmid_cntl,
949 				const uint32_t *tcp_watch_cntl,
950 				uint32_t flags,
951 				bool trap_en)
952 {
953 	struct mes_misc_op_input op_input = {0};
954 	int r;
955 
956 	if (!adev->mes.funcs->misc_op) {
957 		DRM_ERROR("mes set shader debugger is not supported!\n");
958 		return -EINVAL;
959 	}
960 
961 	op_input.op = MES_MISC_OP_SET_SHADER_DEBUGGER;
962 	op_input.set_shader_debugger.process_context_addr = process_context_addr;
963 	op_input.set_shader_debugger.flags.u32all = flags;
964 
965 	/* use amdgpu mes_flush_shader_debugger instead */
966 	if (op_input.set_shader_debugger.flags.process_ctx_flush)
967 		return -EINVAL;
968 
969 	op_input.set_shader_debugger.spi_gdbg_per_vmid_cntl = spi_gdbg_per_vmid_cntl;
970 	memcpy(op_input.set_shader_debugger.tcp_watch_cntl, tcp_watch_cntl,
971 			sizeof(op_input.set_shader_debugger.tcp_watch_cntl));
972 
973 	if (((adev->mes.sched_version & AMDGPU_MES_API_VERSION_MASK) >>
974 			AMDGPU_MES_API_VERSION_SHIFT) >= 14)
975 		op_input.set_shader_debugger.trap_en = trap_en;
976 
977 	amdgpu_mes_lock(&adev->mes);
978 
979 	r = adev->mes.funcs->misc_op(&adev->mes, &op_input);
980 	if (r)
981 		DRM_ERROR("failed to set_shader_debugger\n");
982 
983 	amdgpu_mes_unlock(&adev->mes);
984 
985 	return r;
986 }
987 
988 int amdgpu_mes_flush_shader_debugger(struct amdgpu_device *adev,
989 				     uint64_t process_context_addr)
990 {
991 	struct mes_misc_op_input op_input = {0};
992 	int r;
993 
994 	if (!adev->mes.funcs->misc_op) {
995 		DRM_ERROR("mes flush shader debugger is not supported!\n");
996 		return -EINVAL;
997 	}
998 
999 	op_input.op = MES_MISC_OP_SET_SHADER_DEBUGGER;
1000 	op_input.set_shader_debugger.process_context_addr = process_context_addr;
1001 	op_input.set_shader_debugger.flags.process_ctx_flush = true;
1002 
1003 	amdgpu_mes_lock(&adev->mes);
1004 
1005 	r = adev->mes.funcs->misc_op(&adev->mes, &op_input);
1006 	if (r)
1007 		DRM_ERROR("failed to set_shader_debugger\n");
1008 
1009 	amdgpu_mes_unlock(&adev->mes);
1010 
1011 	return r;
1012 }
1013 
1014 static void
1015 amdgpu_mes_ring_to_queue_props(struct amdgpu_device *adev,
1016 			       struct amdgpu_ring *ring,
1017 			       struct amdgpu_mes_queue_properties *props)
1018 {
1019 	props->queue_type = ring->funcs->type;
1020 	props->hqd_base_gpu_addr = ring->gpu_addr;
1021 	props->rptr_gpu_addr = ring->rptr_gpu_addr;
1022 	props->wptr_gpu_addr = ring->wptr_gpu_addr;
1023 	props->wptr_mc_addr =
1024 		ring->mes_ctx->meta_data_mc_addr + ring->wptr_offs;
1025 	props->queue_size = ring->ring_size;
1026 	props->eop_gpu_addr = ring->eop_gpu_addr;
1027 	props->hqd_pipe_priority = AMDGPU_GFX_PIPE_PRIO_NORMAL;
1028 	props->hqd_queue_priority = AMDGPU_GFX_QUEUE_PRIORITY_MINIMUM;
1029 	props->paging = false;
1030 	props->ring = ring;
1031 }
1032 
1033 #define DEFINE_AMDGPU_MES_CTX_GET_OFFS_ENG(_eng)			\
1034 do {									\
1035        if (id_offs < AMDGPU_MES_CTX_MAX_OFFS)				\
1036 		return offsetof(struct amdgpu_mes_ctx_meta_data,	\
1037 				_eng[ring->idx].slots[id_offs]);        \
1038        else if (id_offs == AMDGPU_MES_CTX_RING_OFFS)			\
1039 		return offsetof(struct amdgpu_mes_ctx_meta_data,        \
1040 				_eng[ring->idx].ring);                  \
1041        else if (id_offs == AMDGPU_MES_CTX_IB_OFFS)			\
1042 		return offsetof(struct amdgpu_mes_ctx_meta_data,        \
1043 				_eng[ring->idx].ib);                    \
1044        else if (id_offs == AMDGPU_MES_CTX_PADDING_OFFS)			\
1045 		return offsetof(struct amdgpu_mes_ctx_meta_data,        \
1046 				_eng[ring->idx].padding);               \
1047 } while(0)
1048 
1049 int amdgpu_mes_ctx_get_offs(struct amdgpu_ring *ring, unsigned int id_offs)
1050 {
1051 	switch (ring->funcs->type) {
1052 	case AMDGPU_RING_TYPE_GFX:
1053 		DEFINE_AMDGPU_MES_CTX_GET_OFFS_ENG(gfx);
1054 		break;
1055 	case AMDGPU_RING_TYPE_COMPUTE:
1056 		DEFINE_AMDGPU_MES_CTX_GET_OFFS_ENG(compute);
1057 		break;
1058 	case AMDGPU_RING_TYPE_SDMA:
1059 		DEFINE_AMDGPU_MES_CTX_GET_OFFS_ENG(sdma);
1060 		break;
1061 	default:
1062 		break;
1063 	}
1064 
1065 	WARN_ON(1);
1066 	return -EINVAL;
1067 }
1068 
1069 int amdgpu_mes_add_ring(struct amdgpu_device *adev, int gang_id,
1070 			int queue_type, int idx,
1071 			struct amdgpu_mes_ctx_data *ctx_data,
1072 			struct amdgpu_ring **out)
1073 {
1074 	struct amdgpu_ring *ring;
1075 	struct amdgpu_mes_gang *gang;
1076 	struct amdgpu_mes_queue_properties qprops = {0};
1077 	int r, queue_id, pasid;
1078 
1079 	/*
1080 	 * Avoid taking any other locks under MES lock to avoid circular
1081 	 * lock dependencies.
1082 	 */
1083 	amdgpu_mes_lock(&adev->mes);
1084 	gang = idr_find(&adev->mes.gang_id_idr, gang_id);
1085 	if (!gang) {
1086 		DRM_ERROR("gang id %d doesn't exist\n", gang_id);
1087 		amdgpu_mes_unlock(&adev->mes);
1088 		return -EINVAL;
1089 	}
1090 	pasid = gang->process->pasid;
1091 
1092 	ring = kzalloc(sizeof(struct amdgpu_ring), GFP_KERNEL);
1093 	if (!ring) {
1094 		amdgpu_mes_unlock(&adev->mes);
1095 		return -ENOMEM;
1096 	}
1097 
1098 	ring->ring_obj = NULL;
1099 	ring->use_doorbell = true;
1100 	ring->is_mes_queue = true;
1101 	ring->mes_ctx = ctx_data;
1102 	ring->idx = idx;
1103 	ring->no_scheduler = true;
1104 
1105 	if (queue_type == AMDGPU_RING_TYPE_COMPUTE) {
1106 		int offset = offsetof(struct amdgpu_mes_ctx_meta_data,
1107 				      compute[ring->idx].mec_hpd);
1108 		ring->eop_gpu_addr =
1109 			amdgpu_mes_ctx_get_offs_gpu_addr(ring, offset);
1110 	}
1111 
1112 	switch (queue_type) {
1113 	case AMDGPU_RING_TYPE_GFX:
1114 		ring->funcs = adev->gfx.gfx_ring[0].funcs;
1115 		ring->me = adev->gfx.gfx_ring[0].me;
1116 		ring->pipe = adev->gfx.gfx_ring[0].pipe;
1117 		break;
1118 	case AMDGPU_RING_TYPE_COMPUTE:
1119 		ring->funcs = adev->gfx.compute_ring[0].funcs;
1120 		ring->me = adev->gfx.compute_ring[0].me;
1121 		ring->pipe = adev->gfx.compute_ring[0].pipe;
1122 		break;
1123 	case AMDGPU_RING_TYPE_SDMA:
1124 		ring->funcs = adev->sdma.instance[0].ring.funcs;
1125 		break;
1126 	default:
1127 		BUG();
1128 	}
1129 
1130 	r = amdgpu_ring_init(adev, ring, 1024, NULL, 0,
1131 			     AMDGPU_RING_PRIO_DEFAULT, NULL);
1132 	if (r)
1133 		goto clean_up_memory;
1134 
1135 	amdgpu_mes_ring_to_queue_props(adev, ring, &qprops);
1136 
1137 	dma_fence_wait(gang->process->vm->last_update, false);
1138 	dma_fence_wait(ctx_data->meta_data_va->last_pt_update, false);
1139 	amdgpu_mes_unlock(&adev->mes);
1140 
1141 	r = amdgpu_mes_add_hw_queue(adev, gang_id, &qprops, &queue_id);
1142 	if (r)
1143 		goto clean_up_ring;
1144 
1145 	ring->hw_queue_id = queue_id;
1146 	ring->doorbell_index = qprops.doorbell_off;
1147 
1148 	if (queue_type == AMDGPU_RING_TYPE_GFX)
1149 		sprintf(ring->name, "gfx_%d.%d.%d", pasid, gang_id, queue_id);
1150 	else if (queue_type == AMDGPU_RING_TYPE_COMPUTE)
1151 		sprintf(ring->name, "compute_%d.%d.%d", pasid, gang_id,
1152 			queue_id);
1153 	else if (queue_type == AMDGPU_RING_TYPE_SDMA)
1154 		sprintf(ring->name, "sdma_%d.%d.%d", pasid, gang_id,
1155 			queue_id);
1156 	else
1157 		BUG();
1158 
1159 	*out = ring;
1160 	return 0;
1161 
1162 clean_up_ring:
1163 	amdgpu_ring_fini(ring);
1164 clean_up_memory:
1165 	kfree(ring);
1166 	amdgpu_mes_unlock(&adev->mes);
1167 	return r;
1168 }
1169 
1170 void amdgpu_mes_remove_ring(struct amdgpu_device *adev,
1171 			    struct amdgpu_ring *ring)
1172 {
1173 	if (!ring)
1174 		return;
1175 
1176 	amdgpu_mes_remove_hw_queue(adev, ring->hw_queue_id);
1177 	del_timer_sync(&ring->fence_drv.fallback_timer);
1178 	amdgpu_ring_fini(ring);
1179 	kfree(ring);
1180 }
1181 
1182 uint32_t amdgpu_mes_get_aggregated_doorbell_index(struct amdgpu_device *adev,
1183 						   enum amdgpu_mes_priority_level prio)
1184 {
1185 	return adev->mes.aggregated_doorbells[prio];
1186 }
1187 
1188 int amdgpu_mes_ctx_alloc_meta_data(struct amdgpu_device *adev,
1189 				   struct amdgpu_mes_ctx_data *ctx_data)
1190 {
1191 	int r;
1192 
1193 	r = amdgpu_bo_create_kernel(adev,
1194 			    sizeof(struct amdgpu_mes_ctx_meta_data),
1195 			    PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
1196 			    &ctx_data->meta_data_obj,
1197 			    &ctx_data->meta_data_mc_addr,
1198 			    &ctx_data->meta_data_ptr);
1199 	if (r) {
1200 		dev_warn(adev->dev, "(%d) create CTX bo failed\n", r);
1201 		return r;
1202 	}
1203 
1204 	if (!ctx_data->meta_data_obj)
1205 		return -ENOMEM;
1206 
1207 	memset(ctx_data->meta_data_ptr, 0,
1208 	       sizeof(struct amdgpu_mes_ctx_meta_data));
1209 
1210 	return 0;
1211 }
1212 
1213 void amdgpu_mes_ctx_free_meta_data(struct amdgpu_mes_ctx_data *ctx_data)
1214 {
1215 	if (ctx_data->meta_data_obj)
1216 		amdgpu_bo_free_kernel(&ctx_data->meta_data_obj,
1217 				      &ctx_data->meta_data_mc_addr,
1218 				      &ctx_data->meta_data_ptr);
1219 }
1220 
1221 int amdgpu_mes_ctx_map_meta_data(struct amdgpu_device *adev,
1222 				 struct amdgpu_vm *vm,
1223 				 struct amdgpu_mes_ctx_data *ctx_data)
1224 {
1225 	struct amdgpu_bo_va *bo_va;
1226 	struct amdgpu_sync sync;
1227 	struct drm_exec exec;
1228 	int r;
1229 
1230 	amdgpu_sync_create(&sync);
1231 
1232 	drm_exec_init(&exec, 0, 0);
1233 	drm_exec_until_all_locked(&exec) {
1234 		r = drm_exec_lock_obj(&exec,
1235 				      &ctx_data->meta_data_obj->tbo.base);
1236 		drm_exec_retry_on_contention(&exec);
1237 		if (unlikely(r))
1238 			goto error_fini_exec;
1239 
1240 		r = amdgpu_vm_lock_pd(vm, &exec, 0);
1241 		drm_exec_retry_on_contention(&exec);
1242 		if (unlikely(r))
1243 			goto error_fini_exec;
1244 	}
1245 
1246 	bo_va = amdgpu_vm_bo_add(adev, vm, ctx_data->meta_data_obj);
1247 	if (!bo_va) {
1248 		DRM_ERROR("failed to create bo_va for meta data BO\n");
1249 		r = -ENOMEM;
1250 		goto error_fini_exec;
1251 	}
1252 
1253 	r = amdgpu_vm_bo_map(adev, bo_va, ctx_data->meta_data_gpu_addr, 0,
1254 			     sizeof(struct amdgpu_mes_ctx_meta_data),
1255 			     AMDGPU_PTE_READABLE | AMDGPU_PTE_WRITEABLE |
1256 			     AMDGPU_PTE_EXECUTABLE);
1257 
1258 	if (r) {
1259 		DRM_ERROR("failed to do bo_map on meta data, err=%d\n", r);
1260 		goto error_del_bo_va;
1261 	}
1262 
1263 	r = amdgpu_vm_bo_update(adev, bo_va, false);
1264 	if (r) {
1265 		DRM_ERROR("failed to do vm_bo_update on meta data\n");
1266 		goto error_del_bo_va;
1267 	}
1268 	amdgpu_sync_fence(&sync, bo_va->last_pt_update);
1269 
1270 	r = amdgpu_vm_update_pdes(adev, vm, false);
1271 	if (r) {
1272 		DRM_ERROR("failed to update pdes on meta data\n");
1273 		goto error_del_bo_va;
1274 	}
1275 	amdgpu_sync_fence(&sync, vm->last_update);
1276 
1277 	amdgpu_sync_wait(&sync, false);
1278 	drm_exec_fini(&exec);
1279 
1280 	amdgpu_sync_free(&sync);
1281 	ctx_data->meta_data_va = bo_va;
1282 	return 0;
1283 
1284 error_del_bo_va:
1285 	amdgpu_vm_bo_del(adev, bo_va);
1286 
1287 error_fini_exec:
1288 	drm_exec_fini(&exec);
1289 	amdgpu_sync_free(&sync);
1290 	return r;
1291 }
1292 
1293 int amdgpu_mes_ctx_unmap_meta_data(struct amdgpu_device *adev,
1294 				   struct amdgpu_mes_ctx_data *ctx_data)
1295 {
1296 	struct amdgpu_bo_va *bo_va = ctx_data->meta_data_va;
1297 	struct amdgpu_bo *bo = ctx_data->meta_data_obj;
1298 	struct amdgpu_vm *vm = bo_va->base.vm;
1299 	struct dma_fence *fence;
1300 	struct drm_exec exec;
1301 	long r;
1302 
1303 	drm_exec_init(&exec, 0, 0);
1304 	drm_exec_until_all_locked(&exec) {
1305 		r = drm_exec_lock_obj(&exec,
1306 				      &ctx_data->meta_data_obj->tbo.base);
1307 		drm_exec_retry_on_contention(&exec);
1308 		if (unlikely(r))
1309 			goto out_unlock;
1310 
1311 		r = amdgpu_vm_lock_pd(vm, &exec, 0);
1312 		drm_exec_retry_on_contention(&exec);
1313 		if (unlikely(r))
1314 			goto out_unlock;
1315 	}
1316 
1317 	amdgpu_vm_bo_del(adev, bo_va);
1318 	if (!amdgpu_vm_ready(vm))
1319 		goto out_unlock;
1320 
1321 	r = dma_resv_get_singleton(bo->tbo.base.resv, DMA_RESV_USAGE_BOOKKEEP,
1322 				   &fence);
1323 	if (r)
1324 		goto out_unlock;
1325 	if (fence) {
1326 		amdgpu_bo_fence(bo, fence, true);
1327 		fence = NULL;
1328 	}
1329 
1330 	r = amdgpu_vm_clear_freed(adev, vm, &fence);
1331 	if (r || !fence)
1332 		goto out_unlock;
1333 
1334 	dma_fence_wait(fence, false);
1335 	amdgpu_bo_fence(bo, fence, true);
1336 	dma_fence_put(fence);
1337 
1338 out_unlock:
1339 	if (unlikely(r < 0))
1340 		dev_err(adev->dev, "failed to clear page tables (%ld)\n", r);
1341 	drm_exec_fini(&exec);
1342 
1343 	return r;
1344 }
1345 
1346 static int amdgpu_mes_test_create_gang_and_queues(struct amdgpu_device *adev,
1347 					  int pasid, int *gang_id,
1348 					  int queue_type, int num_queue,
1349 					  struct amdgpu_ring **added_rings,
1350 					  struct amdgpu_mes_ctx_data *ctx_data)
1351 {
1352 	struct amdgpu_ring *ring;
1353 	struct amdgpu_mes_gang_properties gprops = {0};
1354 	int r, j;
1355 
1356 	/* create a gang for the process */
1357 	gprops.priority = AMDGPU_MES_PRIORITY_LEVEL_NORMAL;
1358 	gprops.gang_quantum = adev->mes.default_gang_quantum;
1359 	gprops.inprocess_gang_priority = AMDGPU_MES_PRIORITY_LEVEL_NORMAL;
1360 	gprops.priority_level = AMDGPU_MES_PRIORITY_LEVEL_NORMAL;
1361 	gprops.global_priority_level = AMDGPU_MES_PRIORITY_LEVEL_NORMAL;
1362 
1363 	r = amdgpu_mes_add_gang(adev, pasid, &gprops, gang_id);
1364 	if (r) {
1365 		DRM_ERROR("failed to add gang\n");
1366 		return r;
1367 	}
1368 
1369 	/* create queues for the gang */
1370 	for (j = 0; j < num_queue; j++) {
1371 		r = amdgpu_mes_add_ring(adev, *gang_id, queue_type, j,
1372 					ctx_data, &ring);
1373 		if (r) {
1374 			DRM_ERROR("failed to add ring\n");
1375 			break;
1376 		}
1377 
1378 		DRM_INFO("ring %s was added\n", ring->name);
1379 		added_rings[j] = ring;
1380 	}
1381 
1382 	return 0;
1383 }
1384 
1385 static int amdgpu_mes_test_queues(struct amdgpu_ring **added_rings)
1386 {
1387 	struct amdgpu_ring *ring;
1388 	int i, r;
1389 
1390 	for (i = 0; i < AMDGPU_MES_CTX_MAX_RINGS; i++) {
1391 		ring = added_rings[i];
1392 		if (!ring)
1393 			continue;
1394 
1395 		r = amdgpu_ring_test_helper(ring);
1396 		if (r)
1397 			return r;
1398 
1399 		r = amdgpu_ring_test_ib(ring, 1000 * 10);
1400 		if (r) {
1401 			DRM_DEV_ERROR(ring->adev->dev,
1402 				      "ring %s ib test failed (%d)\n",
1403 				      ring->name, r);
1404 			return r;
1405 		} else
1406 			DRM_INFO("ring %s ib test pass\n", ring->name);
1407 	}
1408 
1409 	return 0;
1410 }
1411 
1412 int amdgpu_mes_self_test(struct amdgpu_device *adev)
1413 {
1414 	struct amdgpu_vm *vm = NULL;
1415 	struct amdgpu_mes_ctx_data ctx_data = {0};
1416 	struct amdgpu_ring *added_rings[AMDGPU_MES_CTX_MAX_RINGS] = { NULL };
1417 	int gang_ids[3] = {0};
1418 	int queue_types[][2] = { { AMDGPU_RING_TYPE_GFX, 1 },
1419 				 { AMDGPU_RING_TYPE_COMPUTE, 1 },
1420 				 { AMDGPU_RING_TYPE_SDMA, 1} };
1421 	int i, r, pasid, k = 0;
1422 
1423 	pasid = amdgpu_pasid_alloc(16);
1424 	if (pasid < 0) {
1425 		dev_warn(adev->dev, "No more PASIDs available!");
1426 		pasid = 0;
1427 	}
1428 
1429 	vm = kzalloc(sizeof(*vm), GFP_KERNEL);
1430 	if (!vm) {
1431 		r = -ENOMEM;
1432 		goto error_pasid;
1433 	}
1434 
1435 	r = amdgpu_vm_init(adev, vm, -1);
1436 	if (r) {
1437 		DRM_ERROR("failed to initialize vm\n");
1438 		goto error_pasid;
1439 	}
1440 
1441 	r = amdgpu_mes_ctx_alloc_meta_data(adev, &ctx_data);
1442 	if (r) {
1443 		DRM_ERROR("failed to alloc ctx meta data\n");
1444 		goto error_fini;
1445 	}
1446 
1447 	ctx_data.meta_data_gpu_addr = AMDGPU_VA_RESERVED_BOTTOM;
1448 	r = amdgpu_mes_ctx_map_meta_data(adev, vm, &ctx_data);
1449 	if (r) {
1450 		DRM_ERROR("failed to map ctx meta data\n");
1451 		goto error_vm;
1452 	}
1453 
1454 	r = amdgpu_mes_create_process(adev, pasid, vm);
1455 	if (r) {
1456 		DRM_ERROR("failed to create MES process\n");
1457 		goto error_vm;
1458 	}
1459 
1460 	for (i = 0; i < ARRAY_SIZE(queue_types); i++) {
1461 		/* On GFX v10.3, fw hasn't supported to map sdma queue. */
1462 		if (amdgpu_ip_version(adev, GC_HWIP, 0) >=
1463 			    IP_VERSION(10, 3, 0) &&
1464 		    amdgpu_ip_version(adev, GC_HWIP, 0) <
1465 			    IP_VERSION(11, 0, 0) &&
1466 		    queue_types[i][0] == AMDGPU_RING_TYPE_SDMA)
1467 			continue;
1468 
1469 		r = amdgpu_mes_test_create_gang_and_queues(adev, pasid,
1470 							   &gang_ids[i],
1471 							   queue_types[i][0],
1472 							   queue_types[i][1],
1473 							   &added_rings[k],
1474 							   &ctx_data);
1475 		if (r)
1476 			goto error_queues;
1477 
1478 		k += queue_types[i][1];
1479 	}
1480 
1481 	/* start ring test and ib test for MES queues */
1482 	amdgpu_mes_test_queues(added_rings);
1483 
1484 error_queues:
1485 	/* remove all queues */
1486 	for (i = 0; i < ARRAY_SIZE(added_rings); i++) {
1487 		if (!added_rings[i])
1488 			continue;
1489 		amdgpu_mes_remove_ring(adev, added_rings[i]);
1490 	}
1491 
1492 	for (i = 0; i < ARRAY_SIZE(gang_ids); i++) {
1493 		if (!gang_ids[i])
1494 			continue;
1495 		amdgpu_mes_remove_gang(adev, gang_ids[i]);
1496 	}
1497 
1498 	amdgpu_mes_destroy_process(adev, pasid);
1499 
1500 error_vm:
1501 	amdgpu_mes_ctx_unmap_meta_data(adev, &ctx_data);
1502 
1503 error_fini:
1504 	amdgpu_vm_fini(adev, vm);
1505 
1506 error_pasid:
1507 	if (pasid)
1508 		amdgpu_pasid_free(pasid);
1509 
1510 	amdgpu_mes_ctx_free_meta_data(&ctx_data);
1511 	kfree(vm);
1512 	return 0;
1513 }
1514 
1515 int amdgpu_mes_init_microcode(struct amdgpu_device *adev, int pipe)
1516 {
1517 	const struct mes_firmware_header_v1_0 *mes_hdr;
1518 	struct amdgpu_firmware_info *info;
1519 	char ucode_prefix[30];
1520 	char fw_name[50];
1521 	bool need_retry = false;
1522 	int r;
1523 
1524 	amdgpu_ucode_ip_version_decode(adev, GC_HWIP, ucode_prefix,
1525 				       sizeof(ucode_prefix));
1526 	if (adev->enable_uni_mes && pipe == AMDGPU_MES_SCHED_PIPE) {
1527 		snprintf(fw_name, sizeof(fw_name),
1528 			 "amdgpu/%s_uni_mes.bin", ucode_prefix);
1529 	} else if (amdgpu_ip_version(adev, GC_HWIP, 0) >= IP_VERSION(11, 0, 0) &&
1530 	    amdgpu_ip_version(adev, GC_HWIP, 0) < IP_VERSION(12, 0, 0)) {
1531 		snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_mes%s.bin",
1532 			 ucode_prefix,
1533 			 pipe == AMDGPU_MES_SCHED_PIPE ? "_2" : "1");
1534 		need_retry = true;
1535 	} else {
1536 		snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_mes%s.bin",
1537 			 ucode_prefix,
1538 			 pipe == AMDGPU_MES_SCHED_PIPE ? "" : "1");
1539 	}
1540 
1541 	r = amdgpu_ucode_request(adev, &adev->mes.fw[pipe], fw_name);
1542 	if (r && need_retry && pipe == AMDGPU_MES_SCHED_PIPE) {
1543 		dev_info(adev->dev, "try to fall back to %s_mes.bin\n", ucode_prefix);
1544 		r = amdgpu_ucode_request(adev, &adev->mes.fw[pipe],
1545 					 "amdgpu/%s_mes.bin", ucode_prefix);
1546 	}
1547 
1548 	if (r)
1549 		goto out;
1550 
1551 	mes_hdr = (const struct mes_firmware_header_v1_0 *)
1552 		adev->mes.fw[pipe]->data;
1553 	adev->mes.uc_start_addr[pipe] =
1554 		le32_to_cpu(mes_hdr->mes_uc_start_addr_lo) |
1555 		((uint64_t)(le32_to_cpu(mes_hdr->mes_uc_start_addr_hi)) << 32);
1556 	adev->mes.data_start_addr[pipe] =
1557 		le32_to_cpu(mes_hdr->mes_data_start_addr_lo) |
1558 		((uint64_t)(le32_to_cpu(mes_hdr->mes_data_start_addr_hi)) << 32);
1559 
1560 	if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) {
1561 		int ucode, ucode_data;
1562 
1563 		if (pipe == AMDGPU_MES_SCHED_PIPE) {
1564 			ucode = AMDGPU_UCODE_ID_CP_MES;
1565 			ucode_data = AMDGPU_UCODE_ID_CP_MES_DATA;
1566 		} else {
1567 			ucode = AMDGPU_UCODE_ID_CP_MES1;
1568 			ucode_data = AMDGPU_UCODE_ID_CP_MES1_DATA;
1569 		}
1570 
1571 		info = &adev->firmware.ucode[ucode];
1572 		info->ucode_id = ucode;
1573 		info->fw = adev->mes.fw[pipe];
1574 		adev->firmware.fw_size +=
1575 			ALIGN(le32_to_cpu(mes_hdr->mes_ucode_size_bytes),
1576 			      PAGE_SIZE);
1577 
1578 		info = &adev->firmware.ucode[ucode_data];
1579 		info->ucode_id = ucode_data;
1580 		info->fw = adev->mes.fw[pipe];
1581 		adev->firmware.fw_size +=
1582 			ALIGN(le32_to_cpu(mes_hdr->mes_ucode_data_size_bytes),
1583 			      PAGE_SIZE);
1584 	}
1585 
1586 	return 0;
1587 out:
1588 	amdgpu_ucode_release(&adev->mes.fw[pipe]);
1589 	return r;
1590 }
1591 
1592 #if defined(CONFIG_DEBUG_FS)
1593 
1594 static int amdgpu_debugfs_mes_event_log_show(struct seq_file *m, void *unused)
1595 {
1596 	struct amdgpu_device *adev = m->private;
1597 	uint32_t *mem = (uint32_t *)(adev->mes.event_log_cpu_addr);
1598 
1599 	seq_hex_dump(m, "", DUMP_PREFIX_OFFSET, 32, 4,
1600 		     mem, AMDGPU_MES_LOG_BUFFER_SIZE, false);
1601 
1602 	return 0;
1603 }
1604 
1605 DEFINE_SHOW_ATTRIBUTE(amdgpu_debugfs_mes_event_log);
1606 
1607 #endif
1608 
1609 void amdgpu_debugfs_mes_event_log_init(struct amdgpu_device *adev)
1610 {
1611 
1612 #if defined(CONFIG_DEBUG_FS)
1613 	struct drm_minor *minor = adev_to_drm(adev)->primary;
1614 	struct dentry *root = minor->debugfs_root;
1615 	if (adev->enable_mes && amdgpu_mes_log_enable)
1616 		debugfs_create_file("amdgpu_mes_event_log", 0444, root,
1617 				    adev, &amdgpu_debugfs_mes_event_log_fops);
1618 
1619 #endif
1620 }
1621