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"
30 static inline struct process_queue_node *get_queue_by_qid(
31 struct process_queue_manager *pqm, unsigned int qid)
33 struct process_queue_node *pqn;
35 list_for_each_entry(pqn, &pqm->queues, process_queue_list) {
36 if ((pqn->q && pqn->q->properties.queue_id == qid) ||
37 (pqn->kq && pqn->kq->queue->properties.queue_id == qid))
44 static int find_available_queue_slot(struct process_queue_manager *pqm,
49 found = find_first_zero_bit(pqm->queue_slot_bitmap,
50 KFD_MAX_NUM_OF_QUEUES_PER_PROCESS);
52 pr_debug("The new slot id %lu\n", found);
54 if (found >= KFD_MAX_NUM_OF_QUEUES_PER_PROCESS) {
55 pr_info("Cannot open more queues for process with pasid %d\n",
60 set_bit(found, pqm->queue_slot_bitmap);
66 void kfd_process_dequeue_from_device(struct kfd_process_device *pdd)
68 struct kfd_dev *dev = pdd->dev;
70 if (pdd->already_dequeued)
73 dev->dqm->ops.process_termination(dev->dqm, &pdd->qpd);
74 pdd->already_dequeued = true;
77 void kfd_process_dequeue_from_all_devices(struct kfd_process *p)
79 struct kfd_process_device *pdd;
81 list_for_each_entry(pdd, &p->per_device_data, per_device_list)
82 kfd_process_dequeue_from_device(pdd);
85 int pqm_init(struct process_queue_manager *pqm, struct kfd_process *p)
87 INIT_LIST_HEAD(&pqm->queues);
88 pqm->queue_slot_bitmap =
89 kzalloc(DIV_ROUND_UP(KFD_MAX_NUM_OF_QUEUES_PER_PROCESS,
90 BITS_PER_BYTE), GFP_KERNEL);
91 if (!pqm->queue_slot_bitmap)
98 void pqm_uninit(struct process_queue_manager *pqm)
100 struct process_queue_node *pqn, *next;
102 list_for_each_entry_safe(pqn, next, &pqm->queues, process_queue_list) {
103 uninit_queue(pqn->q);
104 list_del(&pqn->process_queue_list);
108 kfree(pqm->queue_slot_bitmap);
109 pqm->queue_slot_bitmap = NULL;
112 static int create_cp_queue(struct process_queue_manager *pqm,
113 struct kfd_dev *dev, struct queue **q,
114 struct queue_properties *q_properties,
115 struct file *f, unsigned int qid)
119 /* Doorbell initialized in user space*/
120 q_properties->doorbell_ptr = NULL;
122 /* let DQM handle it*/
123 q_properties->vmid = 0;
124 q_properties->queue_id = qid;
126 retval = init_queue(q, q_properties);
131 (*q)->process = pqm->process;
133 pr_debug("PQM After init queue");
138 int pqm_create_queue(struct process_queue_manager *pqm,
141 struct queue_properties *properties,
145 struct kfd_process_device *pdd;
147 struct process_queue_node *pqn;
148 struct kernel_queue *kq;
149 enum kfd_queue_type type = properties->type;
150 unsigned int max_queues = 127; /* HWS limit */
155 pdd = kfd_get_process_device_data(dev, pqm->process);
157 pr_err("Process device data doesn't exist\n");
162 * for debug process, verify that it is within the static queues limit
163 * currently limit is set to half of the total avail HQD slots
164 * If we are just about to create DIQ, the is_debug flag is not set yet
165 * Hence we also check the type as well
167 if ((pdd->qpd.is_debug) || (type == KFD_QUEUE_TYPE_DIQ))
168 max_queues = dev->device_info->max_no_of_hqd/2;
170 if (pdd->qpd.queue_count >= max_queues)
173 retval = find_available_queue_slot(pqm, qid);
177 if (list_empty(&pdd->qpd.queues_list) &&
178 list_empty(&pdd->qpd.priv_queue_list))
179 dev->dqm->ops.register_process(dev->dqm, &pdd->qpd);
181 pqn = kzalloc(sizeof(*pqn), GFP_KERNEL);
184 goto err_allocate_pqn;
188 case KFD_QUEUE_TYPE_SDMA:
189 if (dev->dqm->queue_count >= get_num_sdma_queues(dev->dqm)) {
190 pr_err("Over-subscription is not allowed for SDMA.\n");
192 goto err_create_queue;
195 retval = create_cp_queue(pqm, dev, &q, properties, f, *qid);
197 goto err_create_queue;
200 retval = dev->dqm->ops.create_queue(dev->dqm, q, &pdd->qpd);
201 pr_debug("DQM returned %d for create_queue\n", retval);
205 case KFD_QUEUE_TYPE_COMPUTE:
206 /* check if there is over subscription */
207 if ((dev->dqm->sched_policy ==
208 KFD_SCHED_POLICY_HWS_NO_OVERSUBSCRIPTION) &&
209 ((dev->dqm->processes_count >= dev->vm_info.vmid_num_kfd) ||
210 (dev->dqm->queue_count >= get_queues_num(dev->dqm)))) {
211 pr_debug("Over-subscription is not allowed when amdkfd.sched_policy == 1\n");
213 goto err_create_queue;
216 retval = create_cp_queue(pqm, dev, &q, properties, f, *qid);
218 goto err_create_queue;
221 retval = dev->dqm->ops.create_queue(dev->dqm, q, &pdd->qpd);
222 pr_debug("DQM returned %d for create_queue\n", retval);
225 case KFD_QUEUE_TYPE_DIQ:
226 kq = kernel_queue_init(dev, KFD_QUEUE_TYPE_DIQ);
229 goto err_create_queue;
231 kq->queue->properties.queue_id = *qid;
234 retval = dev->dqm->ops.create_kernel_queue(dev->dqm,
238 WARN(1, "Invalid queue type %d", type);
243 pr_err("Pasid %d DQM create queue %d failed. ret %d\n",
244 pqm->process->pasid, type, retval);
245 goto err_create_queue;
249 /* Return the doorbell offset within the doorbell page
250 * to the caller so it can be passed up to user mode
253 properties->doorbell_off =
254 (q->properties.doorbell_off * sizeof(uint32_t)) &
255 (kfd_doorbell_process_slice(dev) - 1);
257 pr_debug("PQM After DQM create queue\n");
259 list_add(&pqn->process_queue_list, &pqm->queues);
262 pr_debug("PQM done creating queue\n");
263 print_queue_properties(&q->properties);
271 /* check if queues list is empty unregister process from device */
272 clear_bit(*qid, pqm->queue_slot_bitmap);
273 if (list_empty(&pdd->qpd.queues_list) &&
274 list_empty(&pdd->qpd.priv_queue_list))
275 dev->dqm->ops.unregister_process(dev->dqm, &pdd->qpd);
279 int pqm_destroy_queue(struct process_queue_manager *pqm, unsigned int qid)
281 struct process_queue_node *pqn;
282 struct kfd_process_device *pdd;
283 struct device_queue_manager *dqm;
291 pqn = get_queue_by_qid(pqm, qid);
293 pr_err("Queue id does not match any known queue\n");
301 dev = pqn->q->device;
305 pdd = kfd_get_process_device_data(dev, pqm->process);
307 pr_err("Process device data doesn't exist\n");
312 /* destroy kernel queue (DIQ) */
313 dqm = pqn->kq->dev->dqm;
314 dqm->ops.destroy_kernel_queue(dqm, pqn->kq, &pdd->qpd);
315 kernel_queue_uninit(pqn->kq);
319 dqm = pqn->q->device->dqm;
320 retval = dqm->ops.destroy_queue(dqm, &pdd->qpd, pqn->q);
322 pr_err("Pasid %d destroy queue %d failed, ret %d\n",
324 pqn->q->properties.queue_id, retval);
325 if (retval != -ETIME)
326 goto err_destroy_queue;
328 kfree(pqn->q->properties.cu_mask);
329 pqn->q->properties.cu_mask = NULL;
330 uninit_queue(pqn->q);
333 list_del(&pqn->process_queue_list);
335 clear_bit(qid, pqm->queue_slot_bitmap);
337 if (list_empty(&pdd->qpd.queues_list) &&
338 list_empty(&pdd->qpd.priv_queue_list))
339 dqm->ops.unregister_process(dqm, &pdd->qpd);
345 int pqm_update_queue(struct process_queue_manager *pqm, unsigned int qid,
346 struct queue_properties *p)
349 struct process_queue_node *pqn;
351 pqn = get_queue_by_qid(pqm, qid);
353 pr_debug("No queue %d exists for update operation\n", qid);
357 pqn->q->properties.queue_address = p->queue_address;
358 pqn->q->properties.queue_size = p->queue_size;
359 pqn->q->properties.queue_percent = p->queue_percent;
360 pqn->q->properties.priority = p->priority;
362 retval = pqn->q->device->dqm->ops.update_queue(pqn->q->device->dqm,
370 int pqm_set_cu_mask(struct process_queue_manager *pqm, unsigned int qid,
371 struct queue_properties *p)
374 struct process_queue_node *pqn;
376 pqn = get_queue_by_qid(pqm, qid);
378 pr_debug("No queue %d exists for update operation\n", qid);
382 /* Free the old CU mask memory if it is already allocated, then
383 * allocate memory for the new CU mask.
385 kfree(pqn->q->properties.cu_mask);
387 pqn->q->properties.cu_mask_count = p->cu_mask_count;
388 pqn->q->properties.cu_mask = p->cu_mask;
390 retval = pqn->q->device->dqm->ops.update_queue(pqn->q->device->dqm,
398 struct kernel_queue *pqm_get_kernel_queue(
399 struct process_queue_manager *pqm,
402 struct process_queue_node *pqn;
404 pqn = get_queue_by_qid(pqm, qid);
411 int pqm_get_wave_state(struct process_queue_manager *pqm,
413 void __user *ctl_stack,
414 u32 *ctl_stack_used_size,
415 u32 *save_area_used_size)
417 struct process_queue_node *pqn;
419 pqn = get_queue_by_qid(pqm, qid);
421 pr_debug("amdkfd: No queue %d exists for operation\n",
426 return pqn->q->device->dqm->ops.get_wave_state(pqn->q->device->dqm,
430 save_area_used_size);
433 #if defined(CONFIG_DEBUG_FS)
435 int pqm_debugfs_mqds(struct seq_file *m, void *data)
437 struct process_queue_manager *pqm = data;
438 struct process_queue_node *pqn;
440 enum KFD_MQD_TYPE mqd_type;
441 struct mqd_manager *mqd_mgr;
444 list_for_each_entry(pqn, &pqm->queues, process_queue_list) {
447 switch (q->properties.type) {
448 case KFD_QUEUE_TYPE_SDMA:
449 seq_printf(m, " SDMA queue on device %x\n",
451 mqd_type = KFD_MQD_TYPE_SDMA;
453 case KFD_QUEUE_TYPE_COMPUTE:
454 seq_printf(m, " Compute queue on device %x\n",
456 mqd_type = KFD_MQD_TYPE_CP;
460 " Bad user queue type %d on device %x\n",
461 q->properties.type, q->device->id);
464 mqd_mgr = q->device->dqm->ops.get_mqd_manager(
465 q->device->dqm, mqd_type);
466 } else if (pqn->kq) {
468 mqd_mgr = pqn->kq->mqd_mgr;
469 switch (q->properties.type) {
470 case KFD_QUEUE_TYPE_DIQ:
471 seq_printf(m, " DIQ on device %x\n",
473 mqd_type = KFD_MQD_TYPE_HIQ;
477 " Bad kernel queue type %d on device %x\n",
484 " Weird: Queue node with neither kernel nor user queue\n");
488 r = mqd_mgr->debugfs_show_mqd(m, q->mqd);