1 // SPDX-License-Identifier: GPL-2.0
4 * Copyright 2016-2019 HabanaLabs, Ltd.
8 #include "habanalabs.h"
10 #include <linux/slab.h>
13 * hl_queue_add_ptr - add to pi or ci and checks if it wraps around
15 * @ptr: the current pi/ci value
16 * @val: the amount to add
18 * Add val to ptr. It can go until twice the queue length.
20 inline u32 hl_hw_queue_add_ptr(u32 ptr, u16 val)
23 ptr &= ((HL_QUEUE_LENGTH << 1) - 1);
27 static inline int queue_free_slots(struct hl_hw_queue *q, u32 queue_len)
29 int delta = (q->pi - q->ci);
32 return (queue_len - delta);
34 return (abs(delta) - queue_len);
37 void hl_int_hw_queue_update_ci(struct hl_cs *cs)
39 struct hl_device *hdev = cs->ctx->hdev;
40 struct hl_hw_queue *q;
43 hdev->asic_funcs->hw_queues_lock(hdev);
48 q = &hdev->kernel_queues[0];
49 for (i = 0 ; i < HL_MAX_QUEUES ; i++, q++) {
50 if (q->queue_type == QUEUE_TYPE_INT) {
51 q->ci += cs->jobs_in_queue_cnt[i];
52 q->ci &= ((q->int_queue_len << 1) - 1);
57 hdev->asic_funcs->hw_queues_unlock(hdev);
61 * ext_queue_submit_bd - Submit a buffer descriptor to an external queue
63 * @hdev: pointer to habanalabs device structure
64 * @q: pointer to habanalabs queue structure
65 * @ctl: BD's control word
69 * This function assumes there is enough space on the queue to submit a new
70 * BD to it. It initializes the next BD and calls the device specific
71 * function to set the pi (and doorbell)
73 * This function must be called when the scheduler mutex is taken
76 static void ext_queue_submit_bd(struct hl_device *hdev, struct hl_hw_queue *q,
77 u32 ctl, u32 len, u64 ptr)
81 bd = (struct hl_bd *) (uintptr_t) q->kernel_address;
82 bd += hl_pi_2_offset(q->pi);
83 bd->ctl = cpu_to_le32(ctl);
84 bd->len = cpu_to_le32(len);
85 bd->ptr = cpu_to_le64(ptr);
87 q->pi = hl_queue_inc_ptr(q->pi);
88 hdev->asic_funcs->ring_doorbell(hdev, q->hw_queue_id, q->pi);
92 * ext_queue_sanity_checks - perform some sanity checks on external queue
94 * @hdev : pointer to hl_device structure
95 * @q : pointer to hl_hw_queue structure
96 * @num_of_entries : how many entries to check for space
97 * @reserve_cq_entry : whether to reserve an entry in the cq
99 * H/W queues spinlock should be taken before calling this function
101 * Perform the following:
102 * - Make sure we have enough space in the h/w queue
103 * - Make sure we have enough space in the completion queue
104 * - Reserve space in the completion queue (needs to be reversed if there
105 * is a failure down the road before the actual submission of work). Only
106 * do this action if reserve_cq_entry is true
109 static int ext_queue_sanity_checks(struct hl_device *hdev,
110 struct hl_hw_queue *q, int num_of_entries,
111 bool reserve_cq_entry)
113 atomic_t *free_slots =
114 &hdev->completion_queue[q->hw_queue_id].free_slots_cnt;
117 /* Check we have enough space in the queue */
118 free_slots_cnt = queue_free_slots(q, HL_QUEUE_LENGTH);
120 if (free_slots_cnt < num_of_entries) {
121 dev_dbg(hdev->dev, "Queue %d doesn't have room for %d CBs\n",
122 q->hw_queue_id, num_of_entries);
126 if (reserve_cq_entry) {
128 * Check we have enough space in the completion queue
129 * Add -1 to counter (decrement) unless counter was already 0
130 * In that case, CQ is full so we can't submit a new CB because
131 * we won't get ack on its completion
132 * atomic_add_unless will return 0 if counter was already 0
134 if (atomic_add_negative(num_of_entries * -1, free_slots)) {
135 dev_dbg(hdev->dev, "No space for %d on CQ %d\n",
136 num_of_entries, q->hw_queue_id);
137 atomic_add(num_of_entries, free_slots);
146 * int_queue_sanity_checks - perform some sanity checks on internal queue
148 * @hdev : pointer to hl_device structure
149 * @q : pointer to hl_hw_queue structure
150 * @num_of_entries : how many entries to check for space
152 * H/W queues spinlock should be taken before calling this function
154 * Perform the following:
155 * - Make sure we have enough space in the h/w queue
158 static int int_queue_sanity_checks(struct hl_device *hdev,
159 struct hl_hw_queue *q,
164 /* Check we have enough space in the queue */
165 free_slots_cnt = queue_free_slots(q, q->int_queue_len);
167 if (free_slots_cnt < num_of_entries) {
168 dev_dbg(hdev->dev, "Queue %d doesn't have room for %d CBs\n",
169 q->hw_queue_id, num_of_entries);
177 * hl_hw_queue_send_cb_no_cmpl - send a single CB (not a JOB) without completion
179 * @hdev: pointer to hl_device structure
180 * @hw_queue_id: Queue's type
181 * @cb_size: size of CB
182 * @cb_ptr: pointer to CB location
184 * This function sends a single CB, that must NOT generate a completion entry
187 int hl_hw_queue_send_cb_no_cmpl(struct hl_device *hdev, u32 hw_queue_id,
188 u32 cb_size, u64 cb_ptr)
190 struct hl_hw_queue *q = &hdev->kernel_queues[hw_queue_id];
194 * The CPU queue is a synchronous queue with an effective depth of
195 * a single entry (although it is allocated with room for multiple
196 * entries). Therefore, there is a different lock, called
197 * send_cpu_message_lock, that serializes accesses to the CPU queue.
198 * As a result, we don't need to lock the access to the entire H/W
199 * queues module when submitting a JOB to the CPU queue
201 if (q->queue_type != QUEUE_TYPE_CPU)
202 hdev->asic_funcs->hw_queues_lock(hdev);
204 if (hdev->disabled) {
209 rc = ext_queue_sanity_checks(hdev, q, 1, false);
213 ext_queue_submit_bd(hdev, q, 0, cb_size, cb_ptr);
216 if (q->queue_type != QUEUE_TYPE_CPU)
217 hdev->asic_funcs->hw_queues_unlock(hdev);
223 * ext_hw_queue_schedule_job - submit an JOB to an external queue
225 * @job: pointer to the job that needs to be submitted to the queue
227 * This function must be called when the scheduler mutex is taken
230 static void ext_hw_queue_schedule_job(struct hl_cs_job *job)
232 struct hl_device *hdev = job->cs->ctx->hdev;
233 struct hl_hw_queue *q = &hdev->kernel_queues[job->hw_queue_id];
234 struct hl_cq_entry cq_pkt;
243 * Update the JOB ID inside the BD CTL so the device would know what
244 * to write in the completion queue
246 ctl = ((q->pi << BD_CTL_SHADOW_INDEX_SHIFT) & BD_CTL_SHADOW_INDEX_MASK);
248 cb = job->patched_cb;
249 len = job->job_cb_size;
250 ptr = cb->bus_address;
252 cq_pkt.data = cpu_to_le32(
253 ((q->pi << CQ_ENTRY_SHADOW_INDEX_SHIFT)
254 & CQ_ENTRY_SHADOW_INDEX_MASK) |
255 (1 << CQ_ENTRY_SHADOW_INDEX_VALID_SHIFT) |
256 (1 << CQ_ENTRY_READY_SHIFT));
259 * No need to protect pi_offset because scheduling to the
260 * H/W queues is done under the scheduler mutex
262 * No need to check if CQ is full because it was already
263 * checked in hl_queue_sanity_checks
265 cq = &hdev->completion_queue[q->hw_queue_id];
266 cq_addr = cq->bus_address + cq->pi * sizeof(struct hl_cq_entry);
268 hdev->asic_funcs->add_end_of_cb_packets(hdev, cb->kernel_address, len,
270 le32_to_cpu(cq_pkt.data),
273 q->shadow_queue[hl_pi_2_offset(q->pi)] = job;
275 cq->pi = hl_cq_inc_ptr(cq->pi);
277 ext_queue_submit_bd(hdev, q, ctl, len, ptr);
281 * int_hw_queue_schedule_job - submit an JOB to an internal queue
283 * @job: pointer to the job that needs to be submitted to the queue
285 * This function must be called when the scheduler mutex is taken
288 static void int_hw_queue_schedule_job(struct hl_cs_job *job)
290 struct hl_device *hdev = job->cs->ctx->hdev;
291 struct hl_hw_queue *q = &hdev->kernel_queues[job->hw_queue_id];
296 bd.len = cpu_to_le32(job->job_cb_size);
297 bd.ptr = cpu_to_le64((u64) (uintptr_t) job->user_cb);
299 pi = (__le64 *) (uintptr_t) (q->kernel_address +
300 ((q->pi & (q->int_queue_len - 1)) * sizeof(bd)));
303 q->pi &= ((q->int_queue_len << 1) - 1);
305 hdev->asic_funcs->pqe_write(hdev, pi, &bd);
307 hdev->asic_funcs->ring_doorbell(hdev, q->hw_queue_id, q->pi);
311 * hl_hw_queue_schedule_cs - schedule a command submission
313 * @job : pointer to the CS
316 int hl_hw_queue_schedule_cs(struct hl_cs *cs)
318 struct hl_device *hdev = cs->ctx->hdev;
319 struct hl_cs_job *job, *tmp;
320 struct hl_hw_queue *q;
321 int rc = 0, i, cq_cnt;
323 hdev->asic_funcs->hw_queues_lock(hdev);
325 if (hl_device_disabled_or_in_reset(hdev)) {
327 "device is disabled or in reset, CS rejected!\n");
332 q = &hdev->kernel_queues[0];
333 /* This loop assumes all external queues are consecutive */
334 for (i = 0, cq_cnt = 0 ; i < HL_MAX_QUEUES ; i++, q++) {
335 if (q->queue_type == QUEUE_TYPE_EXT) {
336 if (cs->jobs_in_queue_cnt[i]) {
337 rc = ext_queue_sanity_checks(hdev, q,
338 cs->jobs_in_queue_cnt[i], true);
343 } else if (q->queue_type == QUEUE_TYPE_INT) {
344 if (cs->jobs_in_queue_cnt[i]) {
345 rc = int_queue_sanity_checks(hdev, q,
346 cs->jobs_in_queue_cnt[i]);
353 spin_lock(&hdev->hw_queues_mirror_lock);
354 list_add_tail(&cs->mirror_node, &hdev->hw_queues_mirror_list);
356 /* Queue TDR if the CS is the first entry and if timeout is wanted */
357 if ((hdev->timeout_jiffies != MAX_SCHEDULE_TIMEOUT) &&
358 (list_first_entry(&hdev->hw_queues_mirror_list,
359 struct hl_cs, mirror_node) == cs)) {
360 cs->tdr_active = true;
361 schedule_delayed_work(&cs->work_tdr, hdev->timeout_jiffies);
362 spin_unlock(&hdev->hw_queues_mirror_lock);
364 spin_unlock(&hdev->hw_queues_mirror_lock);
367 if (!hdev->cs_active_cnt++) {
368 struct hl_device_idle_busy_ts *ts;
370 ts = &hdev->idle_busy_ts_arr[hdev->idle_busy_ts_idx];
371 ts->busy_to_idle_ts = ktime_set(0, 0);
372 ts->idle_to_busy_ts = ktime_get();
375 list_for_each_entry_safe(job, tmp, &cs->job_list, cs_node)
377 ext_hw_queue_schedule_job(job);
379 int_hw_queue_schedule_job(job);
381 cs->submitted = true;
386 /* This loop assumes all external queues are consecutive */
387 q = &hdev->kernel_queues[0];
388 for (i = 0 ; (i < HL_MAX_QUEUES) && (cq_cnt > 0) ; i++, q++) {
389 if ((q->queue_type == QUEUE_TYPE_EXT) &&
390 (cs->jobs_in_queue_cnt[i])) {
391 atomic_t *free_slots =
392 &hdev->completion_queue[i].free_slots_cnt;
393 atomic_add(cs->jobs_in_queue_cnt[i], free_slots);
399 hdev->asic_funcs->hw_queues_unlock(hdev);
405 * hl_hw_queue_inc_ci_kernel - increment ci for kernel's queue
407 * @hdev: pointer to hl_device structure
408 * @hw_queue_id: which queue to increment its ci
410 void hl_hw_queue_inc_ci_kernel(struct hl_device *hdev, u32 hw_queue_id)
412 struct hl_hw_queue *q = &hdev->kernel_queues[hw_queue_id];
414 q->ci = hl_queue_inc_ptr(q->ci);
417 static int ext_and_cpu_hw_queue_init(struct hl_device *hdev,
418 struct hl_hw_queue *q, bool is_cpu_queue)
424 p = hdev->asic_funcs->cpu_accessible_dma_pool_alloc(hdev,
425 HL_QUEUE_SIZE_IN_BYTES,
428 p = hdev->asic_funcs->asic_dma_alloc_coherent(hdev,
429 HL_QUEUE_SIZE_IN_BYTES,
431 GFP_KERNEL | __GFP_ZERO);
435 q->kernel_address = (u64) (uintptr_t) p;
437 q->shadow_queue = kmalloc_array(HL_QUEUE_LENGTH,
438 sizeof(*q->shadow_queue),
440 if (!q->shadow_queue) {
442 "Failed to allocate shadow queue for H/W queue %d\n",
448 /* Make sure read/write pointers are initialized to start of queue */
456 hdev->asic_funcs->cpu_accessible_dma_pool_free(hdev,
457 HL_QUEUE_SIZE_IN_BYTES,
458 (void *) (uintptr_t) q->kernel_address);
460 hdev->asic_funcs->asic_dma_free_coherent(hdev,
461 HL_QUEUE_SIZE_IN_BYTES,
462 (void *) (uintptr_t) q->kernel_address,
468 static int int_hw_queue_init(struct hl_device *hdev, struct hl_hw_queue *q)
472 p = hdev->asic_funcs->get_int_queue_base(hdev, q->hw_queue_id,
473 &q->bus_address, &q->int_queue_len);
476 "Failed to get base address for internal queue %d\n",
481 q->kernel_address = (u64) (uintptr_t) p;
488 static int cpu_hw_queue_init(struct hl_device *hdev, struct hl_hw_queue *q)
490 return ext_and_cpu_hw_queue_init(hdev, q, true);
493 static int ext_hw_queue_init(struct hl_device *hdev, struct hl_hw_queue *q)
495 return ext_and_cpu_hw_queue_init(hdev, q, false);
499 * hw_queue_init - main initialization function for H/W queue object
501 * @hdev: pointer to hl_device device structure
502 * @q: pointer to hl_hw_queue queue structure
503 * @hw_queue_id: The id of the H/W queue
505 * Allocate dma-able memory for the queue and initialize fields
506 * Returns 0 on success
508 static int hw_queue_init(struct hl_device *hdev, struct hl_hw_queue *q,
513 BUILD_BUG_ON(HL_QUEUE_SIZE_IN_BYTES > HL_PAGE_SIZE);
515 q->hw_queue_id = hw_queue_id;
517 switch (q->queue_type) {
519 rc = ext_hw_queue_init(hdev, q);
523 rc = int_hw_queue_init(hdev, q);
527 rc = cpu_hw_queue_init(hdev, q);
535 dev_crit(hdev->dev, "wrong queue type %d during init\n",
550 * hw_queue_fini - destroy queue
552 * @hdev: pointer to hl_device device structure
553 * @q: pointer to hl_hw_queue queue structure
555 * Free the queue memory
557 static void hw_queue_fini(struct hl_device *hdev, struct hl_hw_queue *q)
563 * If we arrived here, there are no jobs waiting on this queue
564 * so we can safely remove it.
565 * This is because this function can only called when:
566 * 1. Either a context is deleted, which only can occur if all its
568 * 2. A context wasn't able to be created due to failure or timeout,
569 * which means there are no jobs on the queue yet
571 * The only exception are the queues of the kernel context, but
572 * if they are being destroyed, it means that the entire module is
573 * being removed. If the module is removed, it means there is no open
574 * user context. It also means that if a job was submitted by
575 * the kernel driver (e.g. context creation), the job itself was
576 * released by the kernel driver when a timeout occurred on its
577 * Completion. Thus, we don't need to release it again.
580 if (q->queue_type == QUEUE_TYPE_INT)
583 kfree(q->shadow_queue);
585 if (q->queue_type == QUEUE_TYPE_CPU)
586 hdev->asic_funcs->cpu_accessible_dma_pool_free(hdev,
587 HL_QUEUE_SIZE_IN_BYTES,
588 (void *) (uintptr_t) q->kernel_address);
590 hdev->asic_funcs->asic_dma_free_coherent(hdev,
591 HL_QUEUE_SIZE_IN_BYTES,
592 (void *) (uintptr_t) q->kernel_address,
596 int hl_hw_queues_create(struct hl_device *hdev)
598 struct asic_fixed_properties *asic = &hdev->asic_prop;
599 struct hl_hw_queue *q;
600 int i, rc, q_ready_cnt;
602 hdev->kernel_queues = kcalloc(HL_MAX_QUEUES,
603 sizeof(*hdev->kernel_queues), GFP_KERNEL);
605 if (!hdev->kernel_queues) {
606 dev_err(hdev->dev, "Not enough memory for H/W queues\n");
610 /* Initialize the H/W queues */
611 for (i = 0, q_ready_cnt = 0, q = hdev->kernel_queues;
612 i < HL_MAX_QUEUES ; i++, q_ready_cnt++, q++) {
614 q->queue_type = asic->hw_queues_props[i].type;
615 rc = hw_queue_init(hdev, q, i);
618 "failed to initialize queue %d\n", i);
626 for (i = 0, q = hdev->kernel_queues ; i < q_ready_cnt ; i++, q++)
627 hw_queue_fini(hdev, q);
629 kfree(hdev->kernel_queues);
634 void hl_hw_queues_destroy(struct hl_device *hdev)
636 struct hl_hw_queue *q;
639 for (i = 0, q = hdev->kernel_queues ; i < HL_MAX_QUEUES ; i++, q++)
640 hw_queue_fini(hdev, q);
642 kfree(hdev->kernel_queues);
645 void hl_hw_queue_reset(struct hl_device *hdev, bool hard_reset)
647 struct hl_hw_queue *q;
650 for (i = 0, q = hdev->kernel_queues ; i < HL_MAX_QUEUES ; i++, q++) {
652 ((!hard_reset) && (q->queue_type == QUEUE_TYPE_CPU)))