2 * Copyright 2014 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
24 #include <linux/slab.h>
25 #include <linux/list.h>
26 #include "kfd_device_queue_manager.h"
28 #include "kfd_kernel_queue.h"
29 #include "amdgpu_amdkfd.h"
31 static inline struct process_queue_node *get_queue_by_qid(
32 struct process_queue_manager *pqm, unsigned int qid)
34 struct process_queue_node *pqn;
36 list_for_each_entry(pqn, &pqm->queues, process_queue_list) {
37 if ((pqn->q && pqn->q->properties.queue_id == qid) ||
38 (pqn->kq && pqn->kq->queue->properties.queue_id == qid))
45 static int find_available_queue_slot(struct process_queue_manager *pqm,
50 found = find_first_zero_bit(pqm->queue_slot_bitmap,
51 KFD_MAX_NUM_OF_QUEUES_PER_PROCESS);
53 pr_debug("The new slot id %lu\n", found);
55 if (found >= KFD_MAX_NUM_OF_QUEUES_PER_PROCESS) {
56 pr_info("Cannot open more queues for process with pasid 0x%x\n",
61 set_bit(found, pqm->queue_slot_bitmap);
67 void kfd_process_dequeue_from_device(struct kfd_process_device *pdd)
69 struct kfd_dev *dev = pdd->dev;
71 if (pdd->already_dequeued)
74 dev->dqm->ops.process_termination(dev->dqm, &pdd->qpd);
75 pdd->already_dequeued = true;
78 int pqm_set_gws(struct process_queue_manager *pqm, unsigned int qid,
81 struct kfd_dev *dev = NULL;
82 struct process_queue_node *pqn;
83 struct kfd_process_device *pdd;
84 struct kgd_mem *mem = NULL;
87 pqn = get_queue_by_qid(pqm, qid);
89 pr_err("Queue id does not match any known queue\n");
98 pdd = kfd_get_process_device_data(dev, pqm->process);
100 pr_err("Process device data doesn't exist\n");
104 /* Only allow one queue per process can have GWS assigned */
105 if (gws && pdd->qpd.num_gws)
108 if (!gws && pdd->qpd.num_gws == 0)
112 ret = amdgpu_amdkfd_add_gws_to_process(pdd->process->kgd_process_info,
115 ret = amdgpu_amdkfd_remove_gws_from_process(pdd->process->kgd_process_info,
121 pdd->qpd.num_gws = gws ? amdgpu_amdkfd_get_num_gws(dev->kgd) : 0;
123 return pqn->q->device->dqm->ops.update_queue(pqn->q->device->dqm,
127 void kfd_process_dequeue_from_all_devices(struct kfd_process *p)
129 struct kfd_process_device *pdd;
131 list_for_each_entry(pdd, &p->per_device_data, per_device_list)
132 kfd_process_dequeue_from_device(pdd);
135 int pqm_init(struct process_queue_manager *pqm, struct kfd_process *p)
137 INIT_LIST_HEAD(&pqm->queues);
138 pqm->queue_slot_bitmap =
139 kzalloc(DIV_ROUND_UP(KFD_MAX_NUM_OF_QUEUES_PER_PROCESS,
140 BITS_PER_BYTE), GFP_KERNEL);
141 if (!pqm->queue_slot_bitmap)
148 void pqm_uninit(struct process_queue_manager *pqm)
150 struct process_queue_node *pqn, *next;
152 list_for_each_entry_safe(pqn, next, &pqm->queues, process_queue_list) {
153 if (pqn->q && pqn->q->gws)
154 amdgpu_amdkfd_remove_gws_from_process(pqm->process->kgd_process_info,
156 uninit_queue(pqn->q);
157 list_del(&pqn->process_queue_list);
161 kfree(pqm->queue_slot_bitmap);
162 pqm->queue_slot_bitmap = NULL;
165 static int init_user_queue(struct process_queue_manager *pqm,
166 struct kfd_dev *dev, struct queue **q,
167 struct queue_properties *q_properties,
168 struct file *f, unsigned int qid)
172 /* Doorbell initialized in user space*/
173 q_properties->doorbell_ptr = NULL;
175 /* let DQM handle it*/
176 q_properties->vmid = 0;
177 q_properties->queue_id = qid;
179 retval = init_queue(q, q_properties);
184 (*q)->process = pqm->process;
186 pr_debug("PQM After init queue");
191 int pqm_create_queue(struct process_queue_manager *pqm,
194 struct queue_properties *properties,
196 uint32_t *p_doorbell_offset_in_process)
199 struct kfd_process_device *pdd;
201 struct process_queue_node *pqn;
202 struct kernel_queue *kq;
203 enum kfd_queue_type type = properties->type;
204 unsigned int max_queues = 127; /* HWS limit */
209 pdd = kfd_get_process_device_data(dev, pqm->process);
211 pr_err("Process device data doesn't exist\n");
216 * for debug process, verify that it is within the static queues limit
217 * currently limit is set to half of the total avail HQD slots
218 * If we are just about to create DIQ, the is_debug flag is not set yet
219 * Hence we also check the type as well
221 if ((pdd->qpd.is_debug) || (type == KFD_QUEUE_TYPE_DIQ))
222 max_queues = dev->device_info->max_no_of_hqd/2;
224 if (pdd->qpd.queue_count >= max_queues)
227 retval = find_available_queue_slot(pqm, qid);
231 if (list_empty(&pdd->qpd.queues_list) &&
232 list_empty(&pdd->qpd.priv_queue_list))
233 dev->dqm->ops.register_process(dev->dqm, &pdd->qpd);
235 pqn = kzalloc(sizeof(*pqn), GFP_KERNEL);
238 goto err_allocate_pqn;
242 case KFD_QUEUE_TYPE_SDMA:
243 case KFD_QUEUE_TYPE_SDMA_XGMI:
244 /* SDMA queues are always allocated statically no matter
245 * which scheduler mode is used. We also do not need to
246 * check whether a SDMA queue can be allocated here, because
247 * allocate_sdma_queue() in create_queue() has the
248 * corresponding check logic.
250 retval = init_user_queue(pqm, dev, &q, properties, f, *qid);
252 goto err_create_queue;
255 retval = dev->dqm->ops.create_queue(dev->dqm, q, &pdd->qpd);
259 case KFD_QUEUE_TYPE_COMPUTE:
260 /* check if there is over subscription */
261 if ((dev->dqm->sched_policy ==
262 KFD_SCHED_POLICY_HWS_NO_OVERSUBSCRIPTION) &&
263 ((dev->dqm->processes_count >= dev->vm_info.vmid_num_kfd) ||
264 (dev->dqm->active_queue_count >= get_cp_queues_num(dev->dqm)))) {
265 pr_debug("Over-subscription is not allowed when amdkfd.sched_policy == 1\n");
267 goto err_create_queue;
270 retval = init_user_queue(pqm, dev, &q, properties, f, *qid);
272 goto err_create_queue;
275 retval = dev->dqm->ops.create_queue(dev->dqm, q, &pdd->qpd);
278 case KFD_QUEUE_TYPE_DIQ:
279 kq = kernel_queue_init(dev, KFD_QUEUE_TYPE_DIQ);
282 goto err_create_queue;
284 kq->queue->properties.queue_id = *qid;
287 retval = dev->dqm->ops.create_kernel_queue(dev->dqm,
291 WARN(1, "Invalid queue type %d", type);
296 pr_err("Pasid 0x%x DQM create queue type %d failed. ret %d\n",
297 pqm->process->pasid, type, retval);
298 goto err_create_queue;
301 if (q && p_doorbell_offset_in_process)
302 /* Return the doorbell offset within the doorbell page
303 * to the caller so it can be passed up to user mode
305 * There are always 1024 doorbells per process, so in case
306 * of 8-byte doorbells, there are two doorbell pages per
309 *p_doorbell_offset_in_process =
310 (q->properties.doorbell_off * sizeof(uint32_t)) &
311 (kfd_doorbell_process_slice(dev) - 1);
313 pr_debug("PQM After DQM create queue\n");
315 list_add(&pqn->process_queue_list, &pqm->queues);
318 pr_debug("PQM done creating queue\n");
319 kfd_procfs_add_queue(q);
320 print_queue_properties(&q->properties);
328 kernel_queue_uninit(kq, false);
331 /* check if queues list is empty unregister process from device */
332 clear_bit(*qid, pqm->queue_slot_bitmap);
333 if (list_empty(&pdd->qpd.queues_list) &&
334 list_empty(&pdd->qpd.priv_queue_list))
335 dev->dqm->ops.unregister_process(dev->dqm, &pdd->qpd);
339 int pqm_destroy_queue(struct process_queue_manager *pqm, unsigned int qid)
341 struct process_queue_node *pqn;
342 struct kfd_process_device *pdd;
343 struct device_queue_manager *dqm;
351 pqn = get_queue_by_qid(pqm, qid);
353 pr_err("Queue id does not match any known queue\n");
361 dev = pqn->q->device;
365 pdd = kfd_get_process_device_data(dev, pqm->process);
367 pr_err("Process device data doesn't exist\n");
372 /* destroy kernel queue (DIQ) */
373 dqm = pqn->kq->dev->dqm;
374 dqm->ops.destroy_kernel_queue(dqm, pqn->kq, &pdd->qpd);
375 kernel_queue_uninit(pqn->kq, false);
379 kfd_procfs_del_queue(pqn->q);
380 dqm = pqn->q->device->dqm;
381 retval = dqm->ops.destroy_queue(dqm, &pdd->qpd, pqn->q);
383 pr_err("Pasid 0x%x destroy queue %d failed, ret %d\n",
385 pqn->q->properties.queue_id, retval);
386 if (retval != -ETIME)
387 goto err_destroy_queue;
391 amdgpu_amdkfd_remove_gws_from_process(pqm->process->kgd_process_info,
393 pdd->qpd.num_gws = 0;
396 kfree(pqn->q->properties.cu_mask);
397 pqn->q->properties.cu_mask = NULL;
398 uninit_queue(pqn->q);
401 list_del(&pqn->process_queue_list);
403 clear_bit(qid, pqm->queue_slot_bitmap);
405 if (list_empty(&pdd->qpd.queues_list) &&
406 list_empty(&pdd->qpd.priv_queue_list))
407 dqm->ops.unregister_process(dqm, &pdd->qpd);
413 int pqm_update_queue(struct process_queue_manager *pqm, unsigned int qid,
414 struct queue_properties *p)
417 struct process_queue_node *pqn;
419 pqn = get_queue_by_qid(pqm, qid);
421 pr_debug("No queue %d exists for update operation\n", qid);
425 pqn->q->properties.queue_address = p->queue_address;
426 pqn->q->properties.queue_size = p->queue_size;
427 pqn->q->properties.queue_percent = p->queue_percent;
428 pqn->q->properties.priority = p->priority;
430 retval = pqn->q->device->dqm->ops.update_queue(pqn->q->device->dqm,
438 int pqm_set_cu_mask(struct process_queue_manager *pqm, unsigned int qid,
439 struct queue_properties *p)
442 struct process_queue_node *pqn;
444 pqn = get_queue_by_qid(pqm, qid);
446 pr_debug("No queue %d exists for update operation\n", qid);
450 /* Free the old CU mask memory if it is already allocated, then
451 * allocate memory for the new CU mask.
453 kfree(pqn->q->properties.cu_mask);
455 pqn->q->properties.cu_mask_count = p->cu_mask_count;
456 pqn->q->properties.cu_mask = p->cu_mask;
458 retval = pqn->q->device->dqm->ops.update_queue(pqn->q->device->dqm,
466 struct kernel_queue *pqm_get_kernel_queue(
467 struct process_queue_manager *pqm,
470 struct process_queue_node *pqn;
472 pqn = get_queue_by_qid(pqm, qid);
479 struct queue *pqm_get_user_queue(struct process_queue_manager *pqm,
482 struct process_queue_node *pqn;
484 pqn = get_queue_by_qid(pqm, qid);
485 return pqn ? pqn->q : NULL;
488 int pqm_get_wave_state(struct process_queue_manager *pqm,
490 void __user *ctl_stack,
491 u32 *ctl_stack_used_size,
492 u32 *save_area_used_size)
494 struct process_queue_node *pqn;
496 pqn = get_queue_by_qid(pqm, qid);
498 pr_debug("amdkfd: No queue %d exists for operation\n",
503 return pqn->q->device->dqm->ops.get_wave_state(pqn->q->device->dqm,
507 save_area_used_size);
510 #if defined(CONFIG_DEBUG_FS)
512 int pqm_debugfs_mqds(struct seq_file *m, void *data)
514 struct process_queue_manager *pqm = data;
515 struct process_queue_node *pqn;
517 enum KFD_MQD_TYPE mqd_type;
518 struct mqd_manager *mqd_mgr;
521 list_for_each_entry(pqn, &pqm->queues, process_queue_list) {
524 switch (q->properties.type) {
525 case KFD_QUEUE_TYPE_SDMA:
526 case KFD_QUEUE_TYPE_SDMA_XGMI:
527 seq_printf(m, " SDMA queue on device %x\n",
529 mqd_type = KFD_MQD_TYPE_SDMA;
531 case KFD_QUEUE_TYPE_COMPUTE:
532 seq_printf(m, " Compute queue on device %x\n",
534 mqd_type = KFD_MQD_TYPE_CP;
538 " Bad user queue type %d on device %x\n",
539 q->properties.type, q->device->id);
542 mqd_mgr = q->device->dqm->mqd_mgrs[mqd_type];
543 } else if (pqn->kq) {
545 mqd_mgr = pqn->kq->mqd_mgr;
546 switch (q->properties.type) {
547 case KFD_QUEUE_TYPE_DIQ:
548 seq_printf(m, " DIQ on device %x\n",
553 " Bad kernel queue type %d on device %x\n",
560 " Weird: Queue node with neither kernel nor user queue\n");
564 r = mqd_mgr->debugfs_show_mqd(m, q->mqd);