1 /* 2 * Copyright © 2014 Intel Corporation 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 (including the next 12 * paragraph) shall be included in all copies or substantial portions of the 13 * Software. 14 * 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. 22 * 23 */ 24 25 #include <linux/circ_buf.h> 26 27 #include "gem/i915_gem_context.h" 28 29 #include "gt/intel_context.h" 30 #include "gt/intel_engine_pm.h" 31 #include "gt/intel_gt.h" 32 #include "gt/intel_lrc_reg.h" 33 #include "intel_guc_submission.h" 34 35 #include "i915_drv.h" 36 37 enum { 38 GUC_PREEMPT_NONE = 0, 39 GUC_PREEMPT_INPROGRESS, 40 GUC_PREEMPT_FINISHED, 41 }; 42 #define GUC_PREEMPT_BREADCRUMB_DWORDS 0x8 43 #define GUC_PREEMPT_BREADCRUMB_BYTES \ 44 (sizeof(u32) * GUC_PREEMPT_BREADCRUMB_DWORDS) 45 46 /** 47 * DOC: GuC-based command submission 48 * 49 * GuC client: 50 * A intel_guc_client refers to a submission path through GuC. Currently, there 51 * is only one client, which is charged with all submissions to the GuC. This 52 * struct is the owner of a doorbell, a process descriptor and a workqueue (all 53 * of them inside a single gem object that contains all required pages for these 54 * elements). 55 * 56 * GuC stage descriptor: 57 * During initialization, the driver allocates a static pool of 1024 such 58 * descriptors, and shares them with the GuC. 59 * Currently, there exists a 1:1 mapping between a intel_guc_client and a 60 * guc_stage_desc (via the client's stage_id), so effectively only one 61 * gets used. This stage descriptor lets the GuC know about the doorbell, 62 * workqueue and process descriptor. Theoretically, it also lets the GuC 63 * know about our HW contexts (context ID, etc...), but we actually 64 * employ a kind of submission where the GuC uses the LRCA sent via the work 65 * item instead (the single guc_stage_desc associated to execbuf client 66 * contains information about the default kernel context only, but this is 67 * essentially unused). This is called a "proxy" submission. 68 * 69 * The Scratch registers: 70 * There are 16 MMIO-based registers start from 0xC180. The kernel driver writes 71 * a value to the action register (SOFT_SCRATCH_0) along with any data. It then 72 * triggers an interrupt on the GuC via another register write (0xC4C8). 73 * Firmware writes a success/fail code back to the action register after 74 * processes the request. The kernel driver polls waiting for this update and 75 * then proceeds. 76 * See intel_guc_send() 77 * 78 * Doorbells: 79 * Doorbells are interrupts to uKernel. A doorbell is a single cache line (QW) 80 * mapped into process space. 81 * 82 * Work Items: 83 * There are several types of work items that the host may place into a 84 * workqueue, each with its own requirements and limitations. Currently only 85 * WQ_TYPE_INORDER is needed to support legacy submission via GuC, which 86 * represents in-order queue. The kernel driver packs ring tail pointer and an 87 * ELSP context descriptor dword into Work Item. 88 * See guc_add_request() 89 * 90 */ 91 92 static inline struct i915_priolist *to_priolist(struct rb_node *rb) 93 { 94 return rb_entry(rb, struct i915_priolist, node); 95 } 96 97 static inline bool is_high_priority(struct intel_guc_client *client) 98 { 99 return (client->priority == GUC_CLIENT_PRIORITY_KMD_HIGH || 100 client->priority == GUC_CLIENT_PRIORITY_HIGH); 101 } 102 103 static int reserve_doorbell(struct intel_guc_client *client) 104 { 105 unsigned long offset; 106 unsigned long end; 107 u16 id; 108 109 GEM_BUG_ON(client->doorbell_id != GUC_DOORBELL_INVALID); 110 111 /* 112 * The bitmap tracks which doorbell registers are currently in use. 113 * It is split into two halves; the first half is used for normal 114 * priority contexts, the second half for high-priority ones. 115 */ 116 offset = 0; 117 end = GUC_NUM_DOORBELLS / 2; 118 if (is_high_priority(client)) { 119 offset = end; 120 end += offset; 121 } 122 123 id = find_next_zero_bit(client->guc->doorbell_bitmap, end, offset); 124 if (id == end) 125 return -ENOSPC; 126 127 __set_bit(id, client->guc->doorbell_bitmap); 128 client->doorbell_id = id; 129 DRM_DEBUG_DRIVER("client %u (high prio=%s) reserved doorbell: %d\n", 130 client->stage_id, yesno(is_high_priority(client)), 131 id); 132 return 0; 133 } 134 135 static bool has_doorbell(struct intel_guc_client *client) 136 { 137 if (client->doorbell_id == GUC_DOORBELL_INVALID) 138 return false; 139 140 return test_bit(client->doorbell_id, client->guc->doorbell_bitmap); 141 } 142 143 static void unreserve_doorbell(struct intel_guc_client *client) 144 { 145 GEM_BUG_ON(!has_doorbell(client)); 146 147 __clear_bit(client->doorbell_id, client->guc->doorbell_bitmap); 148 client->doorbell_id = GUC_DOORBELL_INVALID; 149 } 150 151 /* 152 * Tell the GuC to allocate or deallocate a specific doorbell 153 */ 154 155 static int __guc_allocate_doorbell(struct intel_guc *guc, u32 stage_id) 156 { 157 u32 action[] = { 158 INTEL_GUC_ACTION_ALLOCATE_DOORBELL, 159 stage_id 160 }; 161 162 return intel_guc_send(guc, action, ARRAY_SIZE(action)); 163 } 164 165 static int __guc_deallocate_doorbell(struct intel_guc *guc, u32 stage_id) 166 { 167 u32 action[] = { 168 INTEL_GUC_ACTION_DEALLOCATE_DOORBELL, 169 stage_id 170 }; 171 172 return intel_guc_send(guc, action, ARRAY_SIZE(action)); 173 } 174 175 static struct guc_stage_desc *__get_stage_desc(struct intel_guc_client *client) 176 { 177 struct guc_stage_desc *base = client->guc->stage_desc_pool_vaddr; 178 179 return &base[client->stage_id]; 180 } 181 182 /* 183 * Initialise, update, or clear doorbell data shared with the GuC 184 * 185 * These functions modify shared data and so need access to the mapped 186 * client object which contains the page being used for the doorbell 187 */ 188 189 static void __update_doorbell_desc(struct intel_guc_client *client, u16 new_id) 190 { 191 struct guc_stage_desc *desc; 192 193 /* Update the GuC's idea of the doorbell ID */ 194 desc = __get_stage_desc(client); 195 desc->db_id = new_id; 196 } 197 198 static struct guc_doorbell_info *__get_doorbell(struct intel_guc_client *client) 199 { 200 return client->vaddr + client->doorbell_offset; 201 } 202 203 static bool __doorbell_valid(struct intel_guc *guc, u16 db_id) 204 { 205 struct intel_uncore *uncore = guc_to_gt(guc)->uncore; 206 207 GEM_BUG_ON(db_id >= GUC_NUM_DOORBELLS); 208 return intel_uncore_read(uncore, GEN8_DRBREGL(db_id)) & GEN8_DRB_VALID; 209 } 210 211 static void __init_doorbell(struct intel_guc_client *client) 212 { 213 struct guc_doorbell_info *doorbell; 214 215 doorbell = __get_doorbell(client); 216 doorbell->db_status = GUC_DOORBELL_ENABLED; 217 doorbell->cookie = 0; 218 } 219 220 static void __fini_doorbell(struct intel_guc_client *client) 221 { 222 struct guc_doorbell_info *doorbell; 223 u16 db_id = client->doorbell_id; 224 225 doorbell = __get_doorbell(client); 226 doorbell->db_status = GUC_DOORBELL_DISABLED; 227 228 /* Doorbell release flow requires that we wait for GEN8_DRB_VALID bit 229 * to go to zero after updating db_status before we call the GuC to 230 * release the doorbell 231 */ 232 if (wait_for_us(!__doorbell_valid(client->guc, db_id), 10)) 233 WARN_ONCE(true, "Doorbell never became invalid after disable\n"); 234 } 235 236 static int create_doorbell(struct intel_guc_client *client) 237 { 238 int ret; 239 240 if (WARN_ON(!has_doorbell(client))) 241 return -ENODEV; /* internal setup error, should never happen */ 242 243 __update_doorbell_desc(client, client->doorbell_id); 244 __init_doorbell(client); 245 246 ret = __guc_allocate_doorbell(client->guc, client->stage_id); 247 if (ret) { 248 __fini_doorbell(client); 249 __update_doorbell_desc(client, GUC_DOORBELL_INVALID); 250 DRM_DEBUG_DRIVER("Couldn't create client %u doorbell: %d\n", 251 client->stage_id, ret); 252 return ret; 253 } 254 255 return 0; 256 } 257 258 static int destroy_doorbell(struct intel_guc_client *client) 259 { 260 int ret; 261 262 GEM_BUG_ON(!has_doorbell(client)); 263 264 __fini_doorbell(client); 265 ret = __guc_deallocate_doorbell(client->guc, client->stage_id); 266 if (ret) 267 DRM_ERROR("Couldn't destroy client %u doorbell: %d\n", 268 client->stage_id, ret); 269 270 __update_doorbell_desc(client, GUC_DOORBELL_INVALID); 271 272 return ret; 273 } 274 275 static unsigned long __select_cacheline(struct intel_guc *guc) 276 { 277 unsigned long offset; 278 279 /* Doorbell uses a single cache line within a page */ 280 offset = offset_in_page(guc->db_cacheline); 281 282 /* Moving to next cache line to reduce contention */ 283 guc->db_cacheline += cache_line_size(); 284 285 DRM_DEBUG_DRIVER("reserved cacheline 0x%lx, next 0x%x, linesize %u\n", 286 offset, guc->db_cacheline, cache_line_size()); 287 return offset; 288 } 289 290 static inline struct guc_process_desc * 291 __get_process_desc(struct intel_guc_client *client) 292 { 293 return client->vaddr + client->proc_desc_offset; 294 } 295 296 /* 297 * Initialise the process descriptor shared with the GuC firmware. 298 */ 299 static void guc_proc_desc_init(struct intel_guc_client *client) 300 { 301 struct guc_process_desc *desc; 302 303 desc = memset(__get_process_desc(client), 0, sizeof(*desc)); 304 305 /* 306 * XXX: pDoorbell and WQVBaseAddress are pointers in process address 307 * space for ring3 clients (set them as in mmap_ioctl) or kernel 308 * space for kernel clients (map on demand instead? May make debug 309 * easier to have it mapped). 310 */ 311 desc->wq_base_addr = 0; 312 desc->db_base_addr = 0; 313 314 desc->stage_id = client->stage_id; 315 desc->wq_size_bytes = GUC_WQ_SIZE; 316 desc->wq_status = WQ_STATUS_ACTIVE; 317 desc->priority = client->priority; 318 } 319 320 static void guc_proc_desc_fini(struct intel_guc_client *client) 321 { 322 struct guc_process_desc *desc; 323 324 desc = __get_process_desc(client); 325 memset(desc, 0, sizeof(*desc)); 326 } 327 328 static int guc_stage_desc_pool_create(struct intel_guc *guc) 329 { 330 struct i915_vma *vma; 331 void *vaddr; 332 333 vma = intel_guc_allocate_vma(guc, 334 PAGE_ALIGN(sizeof(struct guc_stage_desc) * 335 GUC_MAX_STAGE_DESCRIPTORS)); 336 if (IS_ERR(vma)) 337 return PTR_ERR(vma); 338 339 vaddr = i915_gem_object_pin_map(vma->obj, I915_MAP_WB); 340 if (IS_ERR(vaddr)) { 341 i915_vma_unpin_and_release(&vma, 0); 342 return PTR_ERR(vaddr); 343 } 344 345 guc->stage_desc_pool = vma; 346 guc->stage_desc_pool_vaddr = vaddr; 347 ida_init(&guc->stage_ids); 348 349 return 0; 350 } 351 352 static void guc_stage_desc_pool_destroy(struct intel_guc *guc) 353 { 354 ida_destroy(&guc->stage_ids); 355 i915_vma_unpin_and_release(&guc->stage_desc_pool, I915_VMA_RELEASE_MAP); 356 } 357 358 /* 359 * Initialise/clear the stage descriptor shared with the GuC firmware. 360 * 361 * This descriptor tells the GuC where (in GGTT space) to find the important 362 * data structures relating to this client (doorbell, process descriptor, 363 * write queue, etc). 364 */ 365 static void guc_stage_desc_init(struct intel_guc_client *client) 366 { 367 struct intel_guc *guc = client->guc; 368 struct guc_stage_desc *desc; 369 u32 gfx_addr; 370 371 desc = __get_stage_desc(client); 372 memset(desc, 0, sizeof(*desc)); 373 374 desc->attribute = GUC_STAGE_DESC_ATTR_ACTIVE | 375 GUC_STAGE_DESC_ATTR_KERNEL; 376 if (is_high_priority(client)) 377 desc->attribute |= GUC_STAGE_DESC_ATTR_PREEMPT; 378 desc->stage_id = client->stage_id; 379 desc->priority = client->priority; 380 desc->db_id = client->doorbell_id; 381 382 /* 383 * The doorbell, process descriptor, and workqueue are all parts 384 * of the client object, which the GuC will reference via the GGTT 385 */ 386 gfx_addr = intel_guc_ggtt_offset(guc, client->vma); 387 desc->db_trigger_phy = sg_dma_address(client->vma->pages->sgl) + 388 client->doorbell_offset; 389 desc->db_trigger_cpu = ptr_to_u64(__get_doorbell(client)); 390 desc->db_trigger_uk = gfx_addr + client->doorbell_offset; 391 desc->process_desc = gfx_addr + client->proc_desc_offset; 392 desc->wq_addr = gfx_addr + GUC_DB_SIZE; 393 desc->wq_size = GUC_WQ_SIZE; 394 395 desc->desc_private = ptr_to_u64(client); 396 } 397 398 static void guc_stage_desc_fini(struct intel_guc_client *client) 399 { 400 struct guc_stage_desc *desc; 401 402 desc = __get_stage_desc(client); 403 memset(desc, 0, sizeof(*desc)); 404 } 405 406 /* Construct a Work Item and append it to the GuC's Work Queue */ 407 static void guc_wq_item_append(struct intel_guc_client *client, 408 u32 target_engine, u32 context_desc, 409 u32 ring_tail, u32 fence_id) 410 { 411 /* wqi_len is in DWords, and does not include the one-word header */ 412 const size_t wqi_size = sizeof(struct guc_wq_item); 413 const u32 wqi_len = wqi_size / sizeof(u32) - 1; 414 struct guc_process_desc *desc = __get_process_desc(client); 415 struct guc_wq_item *wqi; 416 u32 wq_off; 417 418 lockdep_assert_held(&client->wq_lock); 419 420 /* For now workqueue item is 4 DWs; workqueue buffer is 2 pages. So we 421 * should not have the case where structure wqi is across page, neither 422 * wrapped to the beginning. This simplifies the implementation below. 423 * 424 * XXX: if not the case, we need save data to a temp wqi and copy it to 425 * workqueue buffer dw by dw. 426 */ 427 BUILD_BUG_ON(wqi_size != 16); 428 429 /* We expect the WQ to be active if we're appending items to it */ 430 GEM_BUG_ON(desc->wq_status != WQ_STATUS_ACTIVE); 431 432 /* Free space is guaranteed. */ 433 wq_off = READ_ONCE(desc->tail); 434 GEM_BUG_ON(CIRC_SPACE(wq_off, READ_ONCE(desc->head), 435 GUC_WQ_SIZE) < wqi_size); 436 GEM_BUG_ON(wq_off & (wqi_size - 1)); 437 438 /* WQ starts from the page after doorbell / process_desc */ 439 wqi = client->vaddr + wq_off + GUC_DB_SIZE; 440 441 if (I915_SELFTEST_ONLY(client->use_nop_wqi)) { 442 wqi->header = WQ_TYPE_NOOP | (wqi_len << WQ_LEN_SHIFT); 443 } else { 444 /* Now fill in the 4-word work queue item */ 445 wqi->header = WQ_TYPE_INORDER | 446 (wqi_len << WQ_LEN_SHIFT) | 447 (target_engine << WQ_TARGET_SHIFT) | 448 WQ_NO_WCFLUSH_WAIT; 449 wqi->context_desc = context_desc; 450 wqi->submit_element_info = ring_tail << WQ_RING_TAIL_SHIFT; 451 GEM_BUG_ON(ring_tail > WQ_RING_TAIL_MAX); 452 wqi->fence_id = fence_id; 453 } 454 455 /* Make the update visible to GuC */ 456 WRITE_ONCE(desc->tail, (wq_off + wqi_size) & (GUC_WQ_SIZE - 1)); 457 } 458 459 static void guc_ring_doorbell(struct intel_guc_client *client) 460 { 461 struct guc_doorbell_info *db; 462 u32 cookie; 463 464 lockdep_assert_held(&client->wq_lock); 465 466 /* pointer of current doorbell cacheline */ 467 db = __get_doorbell(client); 468 469 /* 470 * We're not expecting the doorbell cookie to change behind our back, 471 * we also need to treat 0 as a reserved value. 472 */ 473 cookie = READ_ONCE(db->cookie); 474 WARN_ON_ONCE(xchg(&db->cookie, cookie + 1 ?: cookie + 2) != cookie); 475 476 /* XXX: doorbell was lost and need to acquire it again */ 477 GEM_BUG_ON(db->db_status != GUC_DOORBELL_ENABLED); 478 } 479 480 static void guc_add_request(struct intel_guc *guc, struct i915_request *rq) 481 { 482 struct intel_guc_client *client = guc->execbuf_client; 483 struct intel_engine_cs *engine = rq->engine; 484 u32 ctx_desc = lower_32_bits(rq->hw_context->lrc_desc); 485 u32 ring_tail = intel_ring_set_tail(rq->ring, rq->tail) / sizeof(u64); 486 487 guc_wq_item_append(client, engine->guc_id, ctx_desc, 488 ring_tail, rq->fence.seqno); 489 guc_ring_doorbell(client); 490 491 client->submissions[engine->id] += 1; 492 } 493 494 /* 495 * When we're doing submissions using regular execlists backend, writing to 496 * ELSP from CPU side is enough to make sure that writes to ringbuffer pages 497 * pinned in mappable aperture portion of GGTT are visible to command streamer. 498 * Writes done by GuC on our behalf are not guaranteeing such ordering, 499 * therefore, to ensure the flush, we're issuing a POSTING READ. 500 */ 501 static void flush_ggtt_writes(struct i915_vma *vma) 502 { 503 struct drm_i915_private *i915 = vma->vm->i915; 504 505 if (i915_vma_is_map_and_fenceable(vma)) 506 intel_uncore_posting_read_fw(&i915->uncore, GUC_STATUS); 507 } 508 509 static void guc_submit(struct intel_engine_cs *engine, 510 struct i915_request **out, 511 struct i915_request **end) 512 { 513 struct intel_guc *guc = &engine->gt->uc.guc; 514 struct intel_guc_client *client = guc->execbuf_client; 515 516 spin_lock(&client->wq_lock); 517 518 do { 519 struct i915_request *rq = *out++; 520 521 flush_ggtt_writes(rq->ring->vma); 522 guc_add_request(guc, rq); 523 } while (out != end); 524 525 spin_unlock(&client->wq_lock); 526 } 527 528 static inline int rq_prio(const struct i915_request *rq) 529 { 530 return rq->sched.attr.priority | __NO_PREEMPTION; 531 } 532 533 static struct i915_request *schedule_in(struct i915_request *rq, int idx) 534 { 535 trace_i915_request_in(rq, idx); 536 537 if (!rq->hw_context->inflight) 538 rq->hw_context->inflight = rq->engine; 539 intel_context_inflight_inc(rq->hw_context); 540 541 return i915_request_get(rq); 542 } 543 544 static void schedule_out(struct i915_request *rq) 545 { 546 trace_i915_request_out(rq); 547 548 intel_context_inflight_dec(rq->hw_context); 549 if (!intel_context_inflight_count(rq->hw_context)) 550 rq->hw_context->inflight = NULL; 551 552 i915_request_put(rq); 553 } 554 555 static void __guc_dequeue(struct intel_engine_cs *engine) 556 { 557 struct intel_engine_execlists * const execlists = &engine->execlists; 558 struct i915_request **first = execlists->inflight; 559 struct i915_request ** const last_port = first + execlists->port_mask; 560 struct i915_request *last = first[0]; 561 struct i915_request **port; 562 bool submit = false; 563 struct rb_node *rb; 564 565 lockdep_assert_held(&engine->active.lock); 566 567 if (last) { 568 if (*++first) 569 return; 570 571 last = NULL; 572 } 573 574 port = first; 575 while ((rb = rb_first_cached(&execlists->queue))) { 576 struct i915_priolist *p = to_priolist(rb); 577 struct i915_request *rq, *rn; 578 int i; 579 580 priolist_for_each_request_consume(rq, rn, p, i) { 581 if (last && rq->hw_context != last->hw_context) { 582 if (port == last_port) 583 goto done; 584 585 *port = schedule_in(last, 586 port - execlists->inflight); 587 port++; 588 } 589 590 list_del_init(&rq->sched.link); 591 __i915_request_submit(rq); 592 submit = true; 593 last = rq; 594 } 595 596 rb_erase_cached(&p->node, &execlists->queue); 597 i915_priolist_free(p); 598 } 599 done: 600 execlists->queue_priority_hint = 601 rb ? to_priolist(rb)->priority : INT_MIN; 602 if (submit) { 603 *port = schedule_in(last, port - execlists->inflight); 604 *++port = NULL; 605 guc_submit(engine, first, port); 606 } 607 execlists->active = execlists->inflight; 608 } 609 610 static void guc_submission_tasklet(unsigned long data) 611 { 612 struct intel_engine_cs * const engine = (struct intel_engine_cs *)data; 613 struct intel_engine_execlists * const execlists = &engine->execlists; 614 struct i915_request **port, *rq; 615 unsigned long flags; 616 617 spin_lock_irqsave(&engine->active.lock, flags); 618 619 for (port = execlists->inflight; (rq = *port); port++) { 620 if (!i915_request_completed(rq)) 621 break; 622 623 schedule_out(rq); 624 } 625 if (port != execlists->inflight) { 626 int idx = port - execlists->inflight; 627 int rem = ARRAY_SIZE(execlists->inflight) - idx; 628 memmove(execlists->inflight, port, rem * sizeof(*port)); 629 } 630 631 __guc_dequeue(engine); 632 633 spin_unlock_irqrestore(&engine->active.lock, flags); 634 } 635 636 static void guc_reset_prepare(struct intel_engine_cs *engine) 637 { 638 struct intel_engine_execlists * const execlists = &engine->execlists; 639 640 GEM_TRACE("%s\n", engine->name); 641 642 /* 643 * Prevent request submission to the hardware until we have 644 * completed the reset in i915_gem_reset_finish(). If a request 645 * is completed by one engine, it may then queue a request 646 * to a second via its execlists->tasklet *just* as we are 647 * calling engine->init_hw() and also writing the ELSP. 648 * Turning off the execlists->tasklet until the reset is over 649 * prevents the race. 650 */ 651 __tasklet_disable_sync_once(&execlists->tasklet); 652 } 653 654 static void guc_reset(struct intel_engine_cs *engine, bool stalled) 655 { 656 struct intel_engine_execlists * const execlists = &engine->execlists; 657 struct i915_request *rq; 658 unsigned long flags; 659 660 spin_lock_irqsave(&engine->active.lock, flags); 661 662 execlists_cancel_port_requests(execlists); 663 664 /* Push back any incomplete requests for replay after the reset. */ 665 rq = execlists_unwind_incomplete_requests(execlists); 666 if (!rq) 667 goto out_unlock; 668 669 if (!i915_request_started(rq)) 670 stalled = false; 671 672 __i915_request_reset(rq, stalled); 673 intel_lr_context_reset(engine, rq->hw_context, rq->head, stalled); 674 675 out_unlock: 676 spin_unlock_irqrestore(&engine->active.lock, flags); 677 } 678 679 static void guc_cancel_requests(struct intel_engine_cs *engine) 680 { 681 struct intel_engine_execlists * const execlists = &engine->execlists; 682 struct i915_request *rq, *rn; 683 struct rb_node *rb; 684 unsigned long flags; 685 686 GEM_TRACE("%s\n", engine->name); 687 688 /* 689 * Before we call engine->cancel_requests(), we should have exclusive 690 * access to the submission state. This is arranged for us by the 691 * caller disabling the interrupt generation, the tasklet and other 692 * threads that may then access the same state, giving us a free hand 693 * to reset state. However, we still need to let lockdep be aware that 694 * we know this state may be accessed in hardirq context, so we 695 * disable the irq around this manipulation and we want to keep 696 * the spinlock focused on its duties and not accidentally conflate 697 * coverage to the submission's irq state. (Similarly, although we 698 * shouldn't need to disable irq around the manipulation of the 699 * submission's irq state, we also wish to remind ourselves that 700 * it is irq state.) 701 */ 702 spin_lock_irqsave(&engine->active.lock, flags); 703 704 /* Cancel the requests on the HW and clear the ELSP tracker. */ 705 execlists_cancel_port_requests(execlists); 706 707 /* Mark all executing requests as skipped. */ 708 list_for_each_entry(rq, &engine->active.requests, sched.link) { 709 if (!i915_request_signaled(rq)) 710 dma_fence_set_error(&rq->fence, -EIO); 711 712 i915_request_mark_complete(rq); 713 } 714 715 /* Flush the queued requests to the timeline list (for retiring). */ 716 while ((rb = rb_first_cached(&execlists->queue))) { 717 struct i915_priolist *p = to_priolist(rb); 718 int i; 719 720 priolist_for_each_request_consume(rq, rn, p, i) { 721 list_del_init(&rq->sched.link); 722 __i915_request_submit(rq); 723 dma_fence_set_error(&rq->fence, -EIO); 724 i915_request_mark_complete(rq); 725 } 726 727 rb_erase_cached(&p->node, &execlists->queue); 728 i915_priolist_free(p); 729 } 730 731 /* Remaining _unready_ requests will be nop'ed when submitted */ 732 733 execlists->queue_priority_hint = INT_MIN; 734 execlists->queue = RB_ROOT_CACHED; 735 736 spin_unlock_irqrestore(&engine->active.lock, flags); 737 } 738 739 static void guc_reset_finish(struct intel_engine_cs *engine) 740 { 741 struct intel_engine_execlists * const execlists = &engine->execlists; 742 743 if (__tasklet_enable(&execlists->tasklet)) 744 /* And kick in case we missed a new request submission. */ 745 tasklet_hi_schedule(&execlists->tasklet); 746 747 GEM_TRACE("%s: depth->%d\n", engine->name, 748 atomic_read(&execlists->tasklet.count)); 749 } 750 751 /* 752 * Everything below here is concerned with setup & teardown, and is 753 * therefore not part of the somewhat time-critical batch-submission 754 * path of guc_submit() above. 755 */ 756 757 /* Check that a doorbell register is in the expected state */ 758 static bool doorbell_ok(struct intel_guc *guc, u16 db_id) 759 { 760 bool valid; 761 762 GEM_BUG_ON(db_id >= GUC_NUM_DOORBELLS); 763 764 valid = __doorbell_valid(guc, db_id); 765 766 if (test_bit(db_id, guc->doorbell_bitmap) == valid) 767 return true; 768 769 DRM_DEBUG_DRIVER("Doorbell %u has unexpected state: valid=%s\n", 770 db_id, yesno(valid)); 771 772 return false; 773 } 774 775 static bool guc_verify_doorbells(struct intel_guc *guc) 776 { 777 bool doorbells_ok = true; 778 u16 db_id; 779 780 for (db_id = 0; db_id < GUC_NUM_DOORBELLS; ++db_id) 781 if (!doorbell_ok(guc, db_id)) 782 doorbells_ok = false; 783 784 return doorbells_ok; 785 } 786 787 /** 788 * guc_client_alloc() - Allocate an intel_guc_client 789 * @guc: the intel_guc structure 790 * @priority: four levels priority _CRITICAL, _HIGH, _NORMAL and _LOW 791 * The kernel client to replace ExecList submission is created with 792 * NORMAL priority. Priority of a client for scheduler can be HIGH, 793 * while a preemption context can use CRITICAL. 794 * 795 * Return: An intel_guc_client object if success, else NULL. 796 */ 797 static struct intel_guc_client * 798 guc_client_alloc(struct intel_guc *guc, u32 priority) 799 { 800 struct intel_guc_client *client; 801 struct i915_vma *vma; 802 void *vaddr; 803 int ret; 804 805 client = kzalloc(sizeof(*client), GFP_KERNEL); 806 if (!client) 807 return ERR_PTR(-ENOMEM); 808 809 client->guc = guc; 810 client->priority = priority; 811 client->doorbell_id = GUC_DOORBELL_INVALID; 812 spin_lock_init(&client->wq_lock); 813 814 ret = ida_simple_get(&guc->stage_ids, 0, GUC_MAX_STAGE_DESCRIPTORS, 815 GFP_KERNEL); 816 if (ret < 0) 817 goto err_client; 818 819 client->stage_id = ret; 820 821 /* The first page is doorbell/proc_desc. Two followed pages are wq. */ 822 vma = intel_guc_allocate_vma(guc, GUC_DB_SIZE + GUC_WQ_SIZE); 823 if (IS_ERR(vma)) { 824 ret = PTR_ERR(vma); 825 goto err_id; 826 } 827 828 /* We'll keep just the first (doorbell/proc) page permanently kmap'd. */ 829 client->vma = vma; 830 831 vaddr = i915_gem_object_pin_map(vma->obj, I915_MAP_WB); 832 if (IS_ERR(vaddr)) { 833 ret = PTR_ERR(vaddr); 834 goto err_vma; 835 } 836 client->vaddr = vaddr; 837 838 ret = reserve_doorbell(client); 839 if (ret) 840 goto err_vaddr; 841 842 client->doorbell_offset = __select_cacheline(guc); 843 844 /* 845 * Since the doorbell only requires a single cacheline, we can save 846 * space by putting the application process descriptor in the same 847 * page. Use the half of the page that doesn't include the doorbell. 848 */ 849 if (client->doorbell_offset >= (GUC_DB_SIZE / 2)) 850 client->proc_desc_offset = 0; 851 else 852 client->proc_desc_offset = (GUC_DB_SIZE / 2); 853 854 DRM_DEBUG_DRIVER("new priority %u client %p: stage_id %u\n", 855 priority, client, client->stage_id); 856 DRM_DEBUG_DRIVER("doorbell id %u, cacheline offset 0x%lx\n", 857 client->doorbell_id, client->doorbell_offset); 858 859 return client; 860 861 err_vaddr: 862 i915_gem_object_unpin_map(client->vma->obj); 863 err_vma: 864 i915_vma_unpin_and_release(&client->vma, 0); 865 err_id: 866 ida_simple_remove(&guc->stage_ids, client->stage_id); 867 err_client: 868 kfree(client); 869 return ERR_PTR(ret); 870 } 871 872 static void guc_client_free(struct intel_guc_client *client) 873 { 874 unreserve_doorbell(client); 875 i915_vma_unpin_and_release(&client->vma, I915_VMA_RELEASE_MAP); 876 ida_simple_remove(&client->guc->stage_ids, client->stage_id); 877 kfree(client); 878 } 879 880 static inline bool ctx_save_restore_disabled(struct intel_context *ce) 881 { 882 u32 sr = ce->lrc_reg_state[CTX_CONTEXT_CONTROL + 1]; 883 884 #define SR_DISABLED \ 885 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT | \ 886 CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT) 887 888 return (sr & SR_DISABLED) == SR_DISABLED; 889 890 #undef SR_DISABLED 891 } 892 893 static int guc_clients_create(struct intel_guc *guc) 894 { 895 struct intel_guc_client *client; 896 897 GEM_BUG_ON(guc->execbuf_client); 898 899 client = guc_client_alloc(guc, GUC_CLIENT_PRIORITY_KMD_NORMAL); 900 if (IS_ERR(client)) { 901 DRM_ERROR("Failed to create GuC client for submission!\n"); 902 return PTR_ERR(client); 903 } 904 guc->execbuf_client = client; 905 906 return 0; 907 } 908 909 static void guc_clients_destroy(struct intel_guc *guc) 910 { 911 struct intel_guc_client *client; 912 913 client = fetch_and_zero(&guc->execbuf_client); 914 if (client) 915 guc_client_free(client); 916 } 917 918 static int __guc_client_enable(struct intel_guc_client *client) 919 { 920 int ret; 921 922 guc_proc_desc_init(client); 923 guc_stage_desc_init(client); 924 925 ret = create_doorbell(client); 926 if (ret) 927 goto fail; 928 929 return 0; 930 931 fail: 932 guc_stage_desc_fini(client); 933 guc_proc_desc_fini(client); 934 return ret; 935 } 936 937 static void __guc_client_disable(struct intel_guc_client *client) 938 { 939 /* 940 * By the time we're here, GuC may have already been reset. if that is 941 * the case, instead of trying (in vain) to communicate with it, let's 942 * just cleanup the doorbell HW and our internal state. 943 */ 944 if (intel_guc_is_running(client->guc)) 945 destroy_doorbell(client); 946 else 947 __fini_doorbell(client); 948 949 guc_stage_desc_fini(client); 950 guc_proc_desc_fini(client); 951 } 952 953 static int guc_clients_enable(struct intel_guc *guc) 954 { 955 return __guc_client_enable(guc->execbuf_client); 956 } 957 958 static void guc_clients_disable(struct intel_guc *guc) 959 { 960 if (guc->execbuf_client) 961 __guc_client_disable(guc->execbuf_client); 962 } 963 964 /* 965 * Set up the memory resources to be shared with the GuC (via the GGTT) 966 * at firmware loading time. 967 */ 968 int intel_guc_submission_init(struct intel_guc *guc) 969 { 970 int ret; 971 972 if (guc->stage_desc_pool) 973 return 0; 974 975 ret = guc_stage_desc_pool_create(guc); 976 if (ret) 977 return ret; 978 /* 979 * Keep static analysers happy, let them know that we allocated the 980 * vma after testing that it didn't exist earlier. 981 */ 982 GEM_BUG_ON(!guc->stage_desc_pool); 983 984 WARN_ON(!guc_verify_doorbells(guc)); 985 ret = guc_clients_create(guc); 986 if (ret) 987 goto err_pool; 988 989 return 0; 990 991 err_pool: 992 guc_stage_desc_pool_destroy(guc); 993 return ret; 994 } 995 996 void intel_guc_submission_fini(struct intel_guc *guc) 997 { 998 guc_clients_destroy(guc); 999 WARN_ON(!guc_verify_doorbells(guc)); 1000 1001 if (guc->stage_desc_pool) 1002 guc_stage_desc_pool_destroy(guc); 1003 } 1004 1005 static void guc_interrupts_capture(struct intel_gt *gt) 1006 { 1007 struct intel_rps *rps = >->i915->gt_pm.rps; 1008 struct intel_uncore *uncore = gt->uncore; 1009 struct intel_engine_cs *engine; 1010 enum intel_engine_id id; 1011 int irqs; 1012 1013 /* tell all command streamers to forward interrupts (but not vblank) 1014 * to GuC 1015 */ 1016 irqs = _MASKED_BIT_ENABLE(GFX_INTERRUPT_STEERING); 1017 for_each_engine(engine, gt->i915, id) 1018 ENGINE_WRITE(engine, RING_MODE_GEN7, irqs); 1019 1020 /* route USER_INTERRUPT to Host, all others are sent to GuC. */ 1021 irqs = GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT | 1022 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT; 1023 /* These three registers have the same bit definitions */ 1024 intel_uncore_write(uncore, GUC_BCS_RCS_IER, ~irqs); 1025 intel_uncore_write(uncore, GUC_VCS2_VCS1_IER, ~irqs); 1026 intel_uncore_write(uncore, GUC_WD_VECS_IER, ~irqs); 1027 1028 /* 1029 * The REDIRECT_TO_GUC bit of the PMINTRMSK register directs all 1030 * (unmasked) PM interrupts to the GuC. All other bits of this 1031 * register *disable* generation of a specific interrupt. 1032 * 1033 * 'pm_intrmsk_mbz' indicates bits that are NOT to be set when 1034 * writing to the PM interrupt mask register, i.e. interrupts 1035 * that must not be disabled. 1036 * 1037 * If the GuC is handling these interrupts, then we must not let 1038 * the PM code disable ANY interrupt that the GuC is expecting. 1039 * So for each ENABLED (0) bit in this register, we must SET the 1040 * bit in pm_intrmsk_mbz so that it's left enabled for the GuC. 1041 * GuC needs ARAT expired interrupt unmasked hence it is set in 1042 * pm_intrmsk_mbz. 1043 * 1044 * Here we CLEAR REDIRECT_TO_GUC bit in pm_intrmsk_mbz, which will 1045 * result in the register bit being left SET! 1046 */ 1047 rps->pm_intrmsk_mbz |= ARAT_EXPIRED_INTRMSK; 1048 rps->pm_intrmsk_mbz &= ~GEN8_PMINTR_DISABLE_REDIRECT_TO_GUC; 1049 } 1050 1051 static void guc_interrupts_release(struct intel_gt *gt) 1052 { 1053 struct intel_rps *rps = >->i915->gt_pm.rps; 1054 struct intel_uncore *uncore = gt->uncore; 1055 struct intel_engine_cs *engine; 1056 enum intel_engine_id id; 1057 int irqs; 1058 1059 /* 1060 * tell all command streamers NOT to forward interrupts or vblank 1061 * to GuC. 1062 */ 1063 irqs = _MASKED_FIELD(GFX_FORWARD_VBLANK_MASK, GFX_FORWARD_VBLANK_NEVER); 1064 irqs |= _MASKED_BIT_DISABLE(GFX_INTERRUPT_STEERING); 1065 for_each_engine(engine, gt->i915, id) 1066 ENGINE_WRITE(engine, RING_MODE_GEN7, irqs); 1067 1068 /* route all GT interrupts to the host */ 1069 intel_uncore_write(uncore, GUC_BCS_RCS_IER, 0); 1070 intel_uncore_write(uncore, GUC_VCS2_VCS1_IER, 0); 1071 intel_uncore_write(uncore, GUC_WD_VECS_IER, 0); 1072 1073 rps->pm_intrmsk_mbz |= GEN8_PMINTR_DISABLE_REDIRECT_TO_GUC; 1074 rps->pm_intrmsk_mbz &= ~ARAT_EXPIRED_INTRMSK; 1075 } 1076 1077 static void guc_submission_park(struct intel_engine_cs *engine) 1078 { 1079 intel_engine_park(engine); 1080 intel_engine_unpin_breadcrumbs_irq(engine); 1081 engine->flags &= ~I915_ENGINE_NEEDS_BREADCRUMB_TASKLET; 1082 } 1083 1084 static void guc_submission_unpark(struct intel_engine_cs *engine) 1085 { 1086 engine->flags |= I915_ENGINE_NEEDS_BREADCRUMB_TASKLET; 1087 intel_engine_pin_breadcrumbs_irq(engine); 1088 } 1089 1090 static void guc_set_default_submission(struct intel_engine_cs *engine) 1091 { 1092 /* 1093 * We inherit a bunch of functions from execlists that we'd like 1094 * to keep using: 1095 * 1096 * engine->submit_request = execlists_submit_request; 1097 * engine->cancel_requests = execlists_cancel_requests; 1098 * engine->schedule = execlists_schedule; 1099 * 1100 * But we need to override the actual submission backend in order 1101 * to talk to the GuC. 1102 */ 1103 intel_execlists_set_default_submission(engine); 1104 1105 engine->execlists.tasklet.func = guc_submission_tasklet; 1106 1107 engine->park = guc_submission_park; 1108 engine->unpark = guc_submission_unpark; 1109 1110 engine->reset.prepare = guc_reset_prepare; 1111 engine->reset.reset = guc_reset; 1112 engine->reset.finish = guc_reset_finish; 1113 1114 engine->cancel_requests = guc_cancel_requests; 1115 1116 engine->flags &= ~I915_ENGINE_SUPPORTS_STATS; 1117 } 1118 1119 int intel_guc_submission_enable(struct intel_guc *guc) 1120 { 1121 struct intel_gt *gt = guc_to_gt(guc); 1122 struct intel_engine_cs *engine; 1123 enum intel_engine_id id; 1124 int err; 1125 1126 /* 1127 * We're using GuC work items for submitting work through GuC. Since 1128 * we're coalescing multiple requests from a single context into a 1129 * single work item prior to assigning it to execlist_port, we can 1130 * never have more work items than the total number of ports (for all 1131 * engines). The GuC firmware is controlling the HEAD of work queue, 1132 * and it is guaranteed that it will remove the work item from the 1133 * queue before our request is completed. 1134 */ 1135 BUILD_BUG_ON(ARRAY_SIZE(engine->execlists.inflight) * 1136 sizeof(struct guc_wq_item) * 1137 I915_NUM_ENGINES > GUC_WQ_SIZE); 1138 1139 GEM_BUG_ON(!guc->execbuf_client); 1140 1141 err = guc_clients_enable(guc); 1142 if (err) 1143 return err; 1144 1145 /* Take over from manual control of ELSP (execlists) */ 1146 guc_interrupts_capture(gt); 1147 1148 for_each_engine(engine, gt->i915, id) { 1149 engine->set_default_submission = guc_set_default_submission; 1150 engine->set_default_submission(engine); 1151 } 1152 1153 return 0; 1154 } 1155 1156 void intel_guc_submission_disable(struct intel_guc *guc) 1157 { 1158 struct intel_gt *gt = guc_to_gt(guc); 1159 1160 GEM_BUG_ON(gt->awake); /* GT should be parked first */ 1161 1162 guc_interrupts_release(gt); 1163 guc_clients_disable(guc); 1164 } 1165 1166 #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST) 1167 #include "selftest_guc.c" 1168 #endif 1169