perf bpf: Move perf_event_output() from stdio.h to bpf.h
[linux/fpc-iii.git] / drivers / gpu / drm / i915 / intel_guc_ct.c
bloba52883e9146f273237bf9c259c3bcfa6f224a3ea
1 /*
2 * Copyright © 2016-2017 Intel Corporation
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 (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
24 #include "i915_drv.h"
25 #include "intel_guc_ct.h"
27 #ifdef CONFIG_DRM_I915_DEBUG_GUC
28 #define CT_DEBUG_DRIVER(...) DRM_DEBUG_DRIVER(__VA_ARGS__)
29 #else
30 #define CT_DEBUG_DRIVER(...) do { } while (0)
31 #endif
33 struct ct_request {
34 struct list_head link;
35 u32 fence;
36 u32 status;
37 u32 response_len;
38 u32 *response_buf;
41 struct ct_incoming_request {
42 struct list_head link;
43 u32 msg[];
46 enum { CTB_SEND = 0, CTB_RECV = 1 };
48 enum { CTB_OWNER_HOST = 0 };
50 static void ct_incoming_request_worker_func(struct work_struct *w);
52 /**
53 * intel_guc_ct_init_early - Initialize CT state without requiring device access
54 * @ct: pointer to CT struct
56 void intel_guc_ct_init_early(struct intel_guc_ct *ct)
58 /* we're using static channel owners */
59 ct->host_channel.owner = CTB_OWNER_HOST;
61 spin_lock_init(&ct->lock);
62 INIT_LIST_HEAD(&ct->pending_requests);
63 INIT_LIST_HEAD(&ct->incoming_requests);
64 INIT_WORK(&ct->worker, ct_incoming_request_worker_func);
67 static inline struct intel_guc *ct_to_guc(struct intel_guc_ct *ct)
69 return container_of(ct, struct intel_guc, ct);
72 static inline const char *guc_ct_buffer_type_to_str(u32 type)
74 switch (type) {
75 case INTEL_GUC_CT_BUFFER_TYPE_SEND:
76 return "SEND";
77 case INTEL_GUC_CT_BUFFER_TYPE_RECV:
78 return "RECV";
79 default:
80 return "<invalid>";
84 static void guc_ct_buffer_desc_init(struct guc_ct_buffer_desc *desc,
85 u32 cmds_addr, u32 size, u32 owner)
87 CT_DEBUG_DRIVER("CT: desc %p init addr=%#x size=%u owner=%u\n",
88 desc, cmds_addr, size, owner);
89 memset(desc, 0, sizeof(*desc));
90 desc->addr = cmds_addr;
91 desc->size = size;
92 desc->owner = owner;
95 static void guc_ct_buffer_desc_reset(struct guc_ct_buffer_desc *desc)
97 CT_DEBUG_DRIVER("CT: desc %p reset head=%u tail=%u\n",
98 desc, desc->head, desc->tail);
99 desc->head = 0;
100 desc->tail = 0;
101 desc->is_in_error = 0;
104 static int guc_action_register_ct_buffer(struct intel_guc *guc,
105 u32 desc_addr,
106 u32 type)
108 u32 action[] = {
109 INTEL_GUC_ACTION_REGISTER_COMMAND_TRANSPORT_BUFFER,
110 desc_addr,
111 sizeof(struct guc_ct_buffer_desc),
112 type
114 int err;
116 /* Can't use generic send(), CT registration must go over MMIO */
117 err = intel_guc_send_mmio(guc, action, ARRAY_SIZE(action), NULL, 0);
118 if (err)
119 DRM_ERROR("CT: register %s buffer failed; err=%d\n",
120 guc_ct_buffer_type_to_str(type), err);
121 return err;
124 static int guc_action_deregister_ct_buffer(struct intel_guc *guc,
125 u32 owner,
126 u32 type)
128 u32 action[] = {
129 INTEL_GUC_ACTION_DEREGISTER_COMMAND_TRANSPORT_BUFFER,
130 owner,
131 type
133 int err;
135 /* Can't use generic send(), CT deregistration must go over MMIO */
136 err = intel_guc_send_mmio(guc, action, ARRAY_SIZE(action), NULL, 0);
137 if (err)
138 DRM_ERROR("CT: deregister %s buffer failed; owner=%d err=%d\n",
139 guc_ct_buffer_type_to_str(type), owner, err);
140 return err;
143 static bool ctch_is_open(struct intel_guc_ct_channel *ctch)
145 return ctch->vma != NULL;
148 static int ctch_init(struct intel_guc *guc,
149 struct intel_guc_ct_channel *ctch)
151 struct i915_vma *vma;
152 void *blob;
153 int err;
154 int i;
156 GEM_BUG_ON(ctch->vma);
158 /* We allocate 1 page to hold both descriptors and both buffers.
159 * ___________.....................
160 * |desc (SEND)| :
161 * |___________| PAGE/4
162 * :___________....................:
163 * |desc (RECV)| :
164 * |___________| PAGE/4
165 * :_______________________________:
166 * |cmds (SEND) |
167 * | PAGE/4
168 * |_______________________________|
169 * |cmds (RECV) |
170 * | PAGE/4
171 * |_______________________________|
173 * Each message can use a maximum of 32 dwords and we don't expect to
174 * have more than 1 in flight at any time, so we have enough space.
175 * Some logic further ahead will rely on the fact that there is only 1
176 * page and that it is always mapped, so if the size is changed the
177 * other code will need updating as well.
180 /* allocate vma */
181 vma = intel_guc_allocate_vma(guc, PAGE_SIZE);
182 if (IS_ERR(vma)) {
183 err = PTR_ERR(vma);
184 goto err_out;
186 ctch->vma = vma;
188 /* map first page */
189 blob = i915_gem_object_pin_map(vma->obj, I915_MAP_WB);
190 if (IS_ERR(blob)) {
191 err = PTR_ERR(blob);
192 goto err_vma;
194 CT_DEBUG_DRIVER("CT: vma base=%#x\n",
195 intel_guc_ggtt_offset(guc, ctch->vma));
197 /* store pointers to desc and cmds */
198 for (i = 0; i < ARRAY_SIZE(ctch->ctbs); i++) {
199 GEM_BUG_ON((i != CTB_SEND) && (i != CTB_RECV));
200 ctch->ctbs[i].desc = blob + PAGE_SIZE/4 * i;
201 ctch->ctbs[i].cmds = blob + PAGE_SIZE/4 * i + PAGE_SIZE/2;
204 return 0;
206 err_vma:
207 i915_vma_unpin_and_release(&ctch->vma, 0);
208 err_out:
209 CT_DEBUG_DRIVER("CT: channel %d initialization failed; err=%d\n",
210 ctch->owner, err);
211 return err;
214 static void ctch_fini(struct intel_guc *guc,
215 struct intel_guc_ct_channel *ctch)
217 i915_vma_unpin_and_release(&ctch->vma, I915_VMA_RELEASE_MAP);
220 static int ctch_open(struct intel_guc *guc,
221 struct intel_guc_ct_channel *ctch)
223 u32 base;
224 int err;
225 int i;
227 CT_DEBUG_DRIVER("CT: channel %d reopen=%s\n",
228 ctch->owner, yesno(ctch_is_open(ctch)));
230 if (!ctch->vma) {
231 err = ctch_init(guc, ctch);
232 if (unlikely(err))
233 goto err_out;
234 GEM_BUG_ON(!ctch->vma);
237 /* vma should be already allocated and map'ed */
238 base = intel_guc_ggtt_offset(guc, ctch->vma);
240 /* (re)initialize descriptors
241 * cmds buffers are in the second half of the blob page
243 for (i = 0; i < ARRAY_SIZE(ctch->ctbs); i++) {
244 GEM_BUG_ON((i != CTB_SEND) && (i != CTB_RECV));
245 guc_ct_buffer_desc_init(ctch->ctbs[i].desc,
246 base + PAGE_SIZE/4 * i + PAGE_SIZE/2,
247 PAGE_SIZE/4,
248 ctch->owner);
251 /* register buffers, starting wirh RECV buffer
252 * descriptors are in first half of the blob
254 err = guc_action_register_ct_buffer(guc,
255 base + PAGE_SIZE/4 * CTB_RECV,
256 INTEL_GUC_CT_BUFFER_TYPE_RECV);
257 if (unlikely(err))
258 goto err_fini;
260 err = guc_action_register_ct_buffer(guc,
261 base + PAGE_SIZE/4 * CTB_SEND,
262 INTEL_GUC_CT_BUFFER_TYPE_SEND);
263 if (unlikely(err))
264 goto err_deregister;
266 return 0;
268 err_deregister:
269 guc_action_deregister_ct_buffer(guc,
270 ctch->owner,
271 INTEL_GUC_CT_BUFFER_TYPE_RECV);
272 err_fini:
273 ctch_fini(guc, ctch);
274 err_out:
275 DRM_ERROR("CT: can't open channel %d; err=%d\n", ctch->owner, err);
276 return err;
279 static void ctch_close(struct intel_guc *guc,
280 struct intel_guc_ct_channel *ctch)
282 GEM_BUG_ON(!ctch_is_open(ctch));
284 guc_action_deregister_ct_buffer(guc,
285 ctch->owner,
286 INTEL_GUC_CT_BUFFER_TYPE_SEND);
287 guc_action_deregister_ct_buffer(guc,
288 ctch->owner,
289 INTEL_GUC_CT_BUFFER_TYPE_RECV);
290 ctch_fini(guc, ctch);
293 static u32 ctch_get_next_fence(struct intel_guc_ct_channel *ctch)
295 /* For now it's trivial */
296 return ++ctch->next_fence;
300 * DOC: CTB Host to GuC request
302 * Format of the CTB Host to GuC request message is as follows::
304 * +------------+---------+---------+---------+---------+
305 * | msg[0] | [1] | [2] | ... | [n-1] |
306 * +------------+---------+---------+---------+---------+
307 * | MESSAGE | MESSAGE PAYLOAD |
308 * + HEADER +---------+---------+---------+---------+
309 * | | 0 | 1 | ... | n |
310 * +============+=========+=========+=========+=========+
311 * | len >= 1 | FENCE | request specific data |
312 * +------+-----+---------+---------+---------+---------+
314 * ^-----------------len-------------------^
317 static int ctb_write(struct intel_guc_ct_buffer *ctb,
318 const u32 *action,
319 u32 len /* in dwords */,
320 u32 fence,
321 bool want_response)
323 struct guc_ct_buffer_desc *desc = ctb->desc;
324 u32 head = desc->head / 4; /* in dwords */
325 u32 tail = desc->tail / 4; /* in dwords */
326 u32 size = desc->size / 4; /* in dwords */
327 u32 used; /* in dwords */
328 u32 header;
329 u32 *cmds = ctb->cmds;
330 unsigned int i;
332 GEM_BUG_ON(desc->size % 4);
333 GEM_BUG_ON(desc->head % 4);
334 GEM_BUG_ON(desc->tail % 4);
335 GEM_BUG_ON(tail >= size);
338 * tail == head condition indicates empty. GuC FW does not support
339 * using up the entire buffer to get tail == head meaning full.
341 if (tail < head)
342 used = (size - head) + tail;
343 else
344 used = tail - head;
346 /* make sure there is a space including extra dw for the fence */
347 if (unlikely(used + len + 1 >= size))
348 return -ENOSPC;
351 * Write the message. The format is the following:
352 * DW0: header (including action code)
353 * DW1: fence
354 * DW2+: action data
356 header = (len << GUC_CT_MSG_LEN_SHIFT) |
357 (GUC_CT_MSG_WRITE_FENCE_TO_DESC) |
358 (want_response ? GUC_CT_MSG_SEND_STATUS : 0) |
359 (action[0] << GUC_CT_MSG_ACTION_SHIFT);
361 CT_DEBUG_DRIVER("CT: writing %*ph %*ph %*ph\n",
362 4, &header, 4, &fence,
363 4 * (len - 1), &action[1]);
365 cmds[tail] = header;
366 tail = (tail + 1) % size;
368 cmds[tail] = fence;
369 tail = (tail + 1) % size;
371 for (i = 1; i < len; i++) {
372 cmds[tail] = action[i];
373 tail = (tail + 1) % size;
376 /* now update desc tail (back in bytes) */
377 desc->tail = tail * 4;
378 GEM_BUG_ON(desc->tail > desc->size);
380 return 0;
384 * wait_for_ctb_desc_update - Wait for the CT buffer descriptor update.
385 * @desc: buffer descriptor
386 * @fence: response fence
387 * @status: placeholder for status
389 * Guc will update CT buffer descriptor with new fence and status
390 * after processing the command identified by the fence. Wait for
391 * specified fence and then read from the descriptor status of the
392 * command.
394 * Return:
395 * * 0 response received (status is valid)
396 * * -ETIMEDOUT no response within hardcoded timeout
397 * * -EPROTO no response, CT buffer is in error
399 static int wait_for_ctb_desc_update(struct guc_ct_buffer_desc *desc,
400 u32 fence,
401 u32 *status)
403 int err;
406 * Fast commands should complete in less than 10us, so sample quickly
407 * up to that length of time, then switch to a slower sleep-wait loop.
408 * No GuC command should ever take longer than 10ms.
410 #define done (READ_ONCE(desc->fence) == fence)
411 err = wait_for_us(done, 10);
412 if (err)
413 err = wait_for(done, 10);
414 #undef done
416 if (unlikely(err)) {
417 DRM_ERROR("CT: fence %u failed; reported fence=%u\n",
418 fence, desc->fence);
420 if (WARN_ON(desc->is_in_error)) {
421 /* Something went wrong with the messaging, try to reset
422 * the buffer and hope for the best
424 guc_ct_buffer_desc_reset(desc);
425 err = -EPROTO;
429 *status = desc->status;
430 return err;
434 * wait_for_ct_request_update - Wait for CT request state update.
435 * @req: pointer to pending request
436 * @status: placeholder for status
438 * For each sent request, Guc shall send bac CT response message.
439 * Our message handler will update status of tracked request once
440 * response message with given fence is received. Wait here and
441 * check for valid response status value.
443 * Return:
444 * * 0 response received (status is valid)
445 * * -ETIMEDOUT no response within hardcoded timeout
447 static int wait_for_ct_request_update(struct ct_request *req, u32 *status)
449 int err;
452 * Fast commands should complete in less than 10us, so sample quickly
453 * up to that length of time, then switch to a slower sleep-wait loop.
454 * No GuC command should ever take longer than 10ms.
456 #define done INTEL_GUC_MSG_IS_RESPONSE(READ_ONCE(req->status))
457 err = wait_for_us(done, 10);
458 if (err)
459 err = wait_for(done, 10);
460 #undef done
462 if (unlikely(err))
463 DRM_ERROR("CT: fence %u err %d\n", req->fence, err);
465 *status = req->status;
466 return err;
469 static int ctch_send(struct intel_guc_ct *ct,
470 struct intel_guc_ct_channel *ctch,
471 const u32 *action,
472 u32 len,
473 u32 *response_buf,
474 u32 response_buf_size,
475 u32 *status)
477 struct intel_guc_ct_buffer *ctb = &ctch->ctbs[CTB_SEND];
478 struct guc_ct_buffer_desc *desc = ctb->desc;
479 struct ct_request request;
480 unsigned long flags;
481 u32 fence;
482 int err;
484 GEM_BUG_ON(!ctch_is_open(ctch));
485 GEM_BUG_ON(!len);
486 GEM_BUG_ON(len & ~GUC_CT_MSG_LEN_MASK);
487 GEM_BUG_ON(!response_buf && response_buf_size);
489 fence = ctch_get_next_fence(ctch);
490 request.fence = fence;
491 request.status = 0;
492 request.response_len = response_buf_size;
493 request.response_buf = response_buf;
495 spin_lock_irqsave(&ct->lock, flags);
496 list_add_tail(&request.link, &ct->pending_requests);
497 spin_unlock_irqrestore(&ct->lock, flags);
499 err = ctb_write(ctb, action, len, fence, !!response_buf);
500 if (unlikely(err))
501 goto unlink;
503 intel_guc_notify(ct_to_guc(ct));
505 if (response_buf)
506 err = wait_for_ct_request_update(&request, status);
507 else
508 err = wait_for_ctb_desc_update(desc, fence, status);
509 if (unlikely(err))
510 goto unlink;
512 if (!INTEL_GUC_MSG_IS_RESPONSE_SUCCESS(*status)) {
513 err = -EIO;
514 goto unlink;
517 if (response_buf) {
518 /* There shall be no data in the status */
519 WARN_ON(INTEL_GUC_MSG_TO_DATA(request.status));
520 /* Return actual response len */
521 err = request.response_len;
522 } else {
523 /* There shall be no response payload */
524 WARN_ON(request.response_len);
525 /* Return data decoded from the status dword */
526 err = INTEL_GUC_MSG_TO_DATA(*status);
529 unlink:
530 spin_lock_irqsave(&ct->lock, flags);
531 list_del(&request.link);
532 spin_unlock_irqrestore(&ct->lock, flags);
534 return err;
538 * Command Transport (CT) buffer based GuC send function.
540 static int intel_guc_send_ct(struct intel_guc *guc, const u32 *action, u32 len,
541 u32 *response_buf, u32 response_buf_size)
543 struct intel_guc_ct *ct = &guc->ct;
544 struct intel_guc_ct_channel *ctch = &ct->host_channel;
545 u32 status = ~0; /* undefined */
546 int ret;
548 mutex_lock(&guc->send_mutex);
550 ret = ctch_send(ct, ctch, action, len, response_buf, response_buf_size,
551 &status);
552 if (unlikely(ret < 0)) {
553 DRM_ERROR("CT: send action %#X failed; err=%d status=%#X\n",
554 action[0], ret, status);
555 } else if (unlikely(ret)) {
556 CT_DEBUG_DRIVER("CT: send action %#x returned %d (%#x)\n",
557 action[0], ret, ret);
560 mutex_unlock(&guc->send_mutex);
561 return ret;
564 static inline unsigned int ct_header_get_len(u32 header)
566 return (header >> GUC_CT_MSG_LEN_SHIFT) & GUC_CT_MSG_LEN_MASK;
569 static inline unsigned int ct_header_get_action(u32 header)
571 return (header >> GUC_CT_MSG_ACTION_SHIFT) & GUC_CT_MSG_ACTION_MASK;
574 static inline bool ct_header_is_response(u32 header)
576 return ct_header_get_action(header) == INTEL_GUC_ACTION_DEFAULT;
579 static int ctb_read(struct intel_guc_ct_buffer *ctb, u32 *data)
581 struct guc_ct_buffer_desc *desc = ctb->desc;
582 u32 head = desc->head / 4; /* in dwords */
583 u32 tail = desc->tail / 4; /* in dwords */
584 u32 size = desc->size / 4; /* in dwords */
585 u32 *cmds = ctb->cmds;
586 s32 available; /* in dwords */
587 unsigned int len;
588 unsigned int i;
590 GEM_BUG_ON(desc->size % 4);
591 GEM_BUG_ON(desc->head % 4);
592 GEM_BUG_ON(desc->tail % 4);
593 GEM_BUG_ON(tail >= size);
594 GEM_BUG_ON(head >= size);
596 /* tail == head condition indicates empty */
597 available = tail - head;
598 if (unlikely(available == 0))
599 return -ENODATA;
601 /* beware of buffer wrap case */
602 if (unlikely(available < 0))
603 available += size;
604 CT_DEBUG_DRIVER("CT: available %d (%u:%u)\n", available, head, tail);
605 GEM_BUG_ON(available < 0);
607 data[0] = cmds[head];
608 head = (head + 1) % size;
610 /* message len with header */
611 len = ct_header_get_len(data[0]) + 1;
612 if (unlikely(len > (u32)available)) {
613 DRM_ERROR("CT: incomplete message %*ph %*ph %*ph\n",
614 4, data,
615 4 * (head + available - 1 > size ?
616 size - head : available - 1), &cmds[head],
617 4 * (head + available - 1 > size ?
618 available - 1 - size + head : 0), &cmds[0]);
619 return -EPROTO;
622 for (i = 1; i < len; i++) {
623 data[i] = cmds[head];
624 head = (head + 1) % size;
626 CT_DEBUG_DRIVER("CT: received %*ph\n", 4 * len, data);
628 desc->head = head * 4;
629 return 0;
633 * DOC: CTB GuC to Host response
635 * Format of the CTB GuC to Host response message is as follows::
637 * +------------+---------+---------+---------+---------+---------+
638 * | msg[0] | [1] | [2] | [3] | ... | [n-1] |
639 * +------------+---------+---------+---------+---------+---------+
640 * | MESSAGE | MESSAGE PAYLOAD |
641 * + HEADER +---------+---------+---------+---------+---------+
642 * | | 0 | 1 | 2 | ... | n |
643 * +============+=========+=========+=========+=========+=========+
644 * | len >= 2 | FENCE | STATUS | response specific data |
645 * +------+-----+---------+---------+---------+---------+---------+
647 * ^-----------------------len-----------------------^
650 static int ct_handle_response(struct intel_guc_ct *ct, const u32 *msg)
652 u32 header = msg[0];
653 u32 len = ct_header_get_len(header);
654 u32 msglen = len + 1; /* total message length including header */
655 u32 fence;
656 u32 status;
657 u32 datalen;
658 struct ct_request *req;
659 bool found = false;
661 GEM_BUG_ON(!ct_header_is_response(header));
662 GEM_BUG_ON(!in_irq());
664 /* Response payload shall at least include fence and status */
665 if (unlikely(len < 2)) {
666 DRM_ERROR("CT: corrupted response %*ph\n", 4 * msglen, msg);
667 return -EPROTO;
670 fence = msg[1];
671 status = msg[2];
672 datalen = len - 2;
674 /* Format of the status follows RESPONSE message */
675 if (unlikely(!INTEL_GUC_MSG_IS_RESPONSE(status))) {
676 DRM_ERROR("CT: corrupted response %*ph\n", 4 * msglen, msg);
677 return -EPROTO;
680 CT_DEBUG_DRIVER("CT: response fence %u status %#x\n", fence, status);
682 spin_lock(&ct->lock);
683 list_for_each_entry(req, &ct->pending_requests, link) {
684 if (unlikely(fence != req->fence)) {
685 CT_DEBUG_DRIVER("CT: request %u awaits response\n",
686 req->fence);
687 continue;
689 if (unlikely(datalen > req->response_len)) {
690 DRM_ERROR("CT: response %u too long %*ph\n",
691 req->fence, 4 * msglen, msg);
692 datalen = 0;
694 if (datalen)
695 memcpy(req->response_buf, msg + 3, 4 * datalen);
696 req->response_len = datalen;
697 WRITE_ONCE(req->status, status);
698 found = true;
699 break;
701 spin_unlock(&ct->lock);
703 if (!found)
704 DRM_ERROR("CT: unsolicited response %*ph\n", 4 * msglen, msg);
705 return 0;
708 static void ct_process_request(struct intel_guc_ct *ct,
709 u32 action, u32 len, const u32 *payload)
711 struct intel_guc *guc = ct_to_guc(ct);
713 CT_DEBUG_DRIVER("CT: request %x %*ph\n", action, 4 * len, payload);
715 switch (action) {
716 case INTEL_GUC_ACTION_DEFAULT:
717 if (unlikely(len < 1))
718 goto fail_unexpected;
719 intel_guc_to_host_process_recv_msg(guc, *payload);
720 break;
722 default:
723 fail_unexpected:
724 DRM_ERROR("CT: unexpected request %x %*ph\n",
725 action, 4 * len, payload);
726 break;
730 static bool ct_process_incoming_requests(struct intel_guc_ct *ct)
732 unsigned long flags;
733 struct ct_incoming_request *request;
734 u32 header;
735 u32 *payload;
736 bool done;
738 spin_lock_irqsave(&ct->lock, flags);
739 request = list_first_entry_or_null(&ct->incoming_requests,
740 struct ct_incoming_request, link);
741 if (request)
742 list_del(&request->link);
743 done = !!list_empty(&ct->incoming_requests);
744 spin_unlock_irqrestore(&ct->lock, flags);
746 if (!request)
747 return true;
749 header = request->msg[0];
750 payload = &request->msg[1];
751 ct_process_request(ct,
752 ct_header_get_action(header),
753 ct_header_get_len(header),
754 payload);
756 kfree(request);
757 return done;
760 static void ct_incoming_request_worker_func(struct work_struct *w)
762 struct intel_guc_ct *ct = container_of(w, struct intel_guc_ct, worker);
763 bool done;
765 done = ct_process_incoming_requests(ct);
766 if (!done)
767 queue_work(system_unbound_wq, &ct->worker);
771 * DOC: CTB GuC to Host request
773 * Format of the CTB GuC to Host request message is as follows::
775 * +------------+---------+---------+---------+---------+---------+
776 * | msg[0] | [1] | [2] | [3] | ... | [n-1] |
777 * +------------+---------+---------+---------+---------+---------+
778 * | MESSAGE | MESSAGE PAYLOAD |
779 * + HEADER +---------+---------+---------+---------+---------+
780 * | | 0 | 1 | 2 | ... | n |
781 * +============+=========+=========+=========+=========+=========+
782 * | len | request specific data |
783 * +------+-----+---------+---------+---------+---------+---------+
785 * ^-----------------------len-----------------------^
788 static int ct_handle_request(struct intel_guc_ct *ct, const u32 *msg)
790 u32 header = msg[0];
791 u32 len = ct_header_get_len(header);
792 u32 msglen = len + 1; /* total message length including header */
793 struct ct_incoming_request *request;
794 unsigned long flags;
796 GEM_BUG_ON(ct_header_is_response(header));
798 request = kmalloc(sizeof(*request) + 4 * msglen, GFP_ATOMIC);
799 if (unlikely(!request)) {
800 DRM_ERROR("CT: dropping request %*ph\n", 4 * msglen, msg);
801 return 0; /* XXX: -ENOMEM ? */
803 memcpy(request->msg, msg, 4 * msglen);
805 spin_lock_irqsave(&ct->lock, flags);
806 list_add_tail(&request->link, &ct->incoming_requests);
807 spin_unlock_irqrestore(&ct->lock, flags);
809 queue_work(system_unbound_wq, &ct->worker);
810 return 0;
813 static void ct_process_host_channel(struct intel_guc_ct *ct)
815 struct intel_guc_ct_channel *ctch = &ct->host_channel;
816 struct intel_guc_ct_buffer *ctb = &ctch->ctbs[CTB_RECV];
817 u32 msg[GUC_CT_MSG_LEN_MASK + 1]; /* one extra dw for the header */
818 int err = 0;
820 if (!ctch_is_open(ctch))
821 return;
823 do {
824 err = ctb_read(ctb, msg);
825 if (err)
826 break;
828 if (ct_header_is_response(msg[0]))
829 err = ct_handle_response(ct, msg);
830 else
831 err = ct_handle_request(ct, msg);
832 } while (!err);
834 if (GEM_WARN_ON(err == -EPROTO)) {
835 DRM_ERROR("CT: corrupted message detected!\n");
836 ctb->desc->is_in_error = 1;
841 * When we're communicating with the GuC over CT, GuC uses events
842 * to notify us about new messages being posted on the RECV buffer.
844 static void intel_guc_to_host_event_handler_ct(struct intel_guc *guc)
846 struct intel_guc_ct *ct = &guc->ct;
848 ct_process_host_channel(ct);
852 * intel_guc_ct_enable - Enable buffer based command transport.
853 * @ct: pointer to CT struct
855 * Shall only be called for platforms with HAS_GUC_CT.
857 * Return: 0 on success, a negative errno code on failure.
859 int intel_guc_ct_enable(struct intel_guc_ct *ct)
861 struct intel_guc *guc = ct_to_guc(ct);
862 struct drm_i915_private *i915 = guc_to_i915(guc);
863 struct intel_guc_ct_channel *ctch = &ct->host_channel;
864 int err;
866 GEM_BUG_ON(!HAS_GUC_CT(i915));
868 err = ctch_open(guc, ctch);
869 if (unlikely(err))
870 return err;
872 /* Switch into cmd transport buffer based send() */
873 guc->send = intel_guc_send_ct;
874 guc->handler = intel_guc_to_host_event_handler_ct;
875 DRM_INFO("CT: %s\n", enableddisabled(true));
876 return 0;
880 * intel_guc_ct_disable - Disable buffer based command transport.
881 * @ct: pointer to CT struct
883 * Shall only be called for platforms with HAS_GUC_CT.
885 void intel_guc_ct_disable(struct intel_guc_ct *ct)
887 struct intel_guc *guc = ct_to_guc(ct);
888 struct drm_i915_private *i915 = guc_to_i915(guc);
889 struct intel_guc_ct_channel *ctch = &ct->host_channel;
891 GEM_BUG_ON(!HAS_GUC_CT(i915));
893 if (!ctch_is_open(ctch))
894 return;
896 ctch_close(guc, ctch);
898 /* Disable send */
899 guc->send = intel_guc_send_nop;
900 guc->handler = intel_guc_to_host_event_handler_nop;
901 DRM_INFO("CT: %s\n", enableddisabled(false));