intel_guc_submission.c 30.8 KB
Newer Older
1
// SPDX-License-Identifier: MIT
2 3 4 5
/*
 * Copyright © 2014 Intel Corporation
 */

6
#include <linux/circ_buf.h>
7

8
#include "gem/i915_gem_context.h"
9 10
#include "gt/intel_context.h"
#include "gt/intel_engine_pm.h"
11
#include "gt/intel_gt.h"
12
#include "gt/intel_gt_pm.h"
13
#include "gt/intel_lrc_reg.h"
14 15
#include "gt/intel_ring.h"

16
#include "intel_guc_submission.h"
17

18
#include "i915_drv.h"
19
#include "i915_trace.h"
20

21
/**
A
Alex Dai 已提交
22
 * DOC: GuC-based command submission
23
 *
24 25 26 27 28 29
 * IMPORTANT NOTE: GuC submission is currently not supported in i915. The GuC
 * firmware is moving to an updated submission interface and we plan to
 * turn submission back on when that lands. The below documentation (and related
 * code) matches the old submission model and will be updated as part of the
 * upgrade to the new flow.
 *
30
 * GuC client:
31
 * A intel_guc_client refers to a submission path through GuC. Currently, there
32 33 34 35
 * is only one client, which is charged with all submissions to the GuC. This
 * struct is the owner of a doorbell, a process descriptor and a workqueue (all
 * of them inside a single gem object that contains all required pages for these
 * elements).
36
 *
37
 * GuC stage descriptor:
38 39
 * During initialization, the driver allocates a static pool of 1024 such
 * descriptors, and shares them with the GuC.
40
 * Currently, there exists a 1:1 mapping between a intel_guc_client and a
41 42 43 44
 * guc_stage_desc (via the client's stage_id), so effectively only one
 * gets used. This stage descriptor lets the GuC know about the doorbell,
 * workqueue and process descriptor. Theoretically, it also lets the GuC
 * know about our HW contexts (context ID, etc...), but we actually
45
 * employ a kind of submission where the GuC uses the LRCA sent via the work
46
 * item instead (the single guc_stage_desc associated to execbuf client
47 48
 * contains information about the default kernel context only, but this is
 * essentially unused). This is called a "proxy" submission.
49 50 51 52 53 54 55 56
 *
 * The Scratch registers:
 * There are 16 MMIO-based registers start from 0xC180. The kernel driver writes
 * a value to the action register (SOFT_SCRATCH_0) along with any data. It then
 * triggers an interrupt on the GuC via another register write (0xC4C8).
 * Firmware writes a success/fail code back to the action register after
 * processes the request. The kernel driver polls waiting for this update and
 * then proceeds.
57
 * See intel_guc_send()
58 59 60 61 62 63 64 65 66 67 68
 *
 * Doorbells:
 * Doorbells are interrupts to uKernel. A doorbell is a single cache line (QW)
 * mapped into process space.
 *
 * Work Items:
 * There are several types of work items that the host may place into a
 * workqueue, each with its own requirements and limitations. Currently only
 * WQ_TYPE_INORDER is needed to support legacy submission via GuC, which
 * represents in-order queue. The kernel driver packs ring tail pointer and an
 * ELSP context descriptor dword into Work Item.
69
 * See guc_add_request()
70 71 72
 *
 */

73 74 75 76 77
static inline struct i915_priolist *to_priolist(struct rb_node *rb)
{
	return rb_entry(rb, struct i915_priolist, node);
}

78
static inline bool is_high_priority(struct intel_guc_client *client)
79
{
80 81
	return (client->priority == GUC_CLIENT_PRIORITY_KMD_HIGH ||
		client->priority == GUC_CLIENT_PRIORITY_HIGH);
82 83
}

84
static int reserve_doorbell(struct intel_guc_client *client)
85 86 87 88 89 90 91 92 93 94 95 96 97
{
	unsigned long offset;
	unsigned long end;
	u16 id;

	GEM_BUG_ON(client->doorbell_id != GUC_DOORBELL_INVALID);

	/*
	 * The bitmap tracks which doorbell registers are currently in use.
	 * It is split into two halves; the first half is used for normal
	 * priority contexts, the second half for high-priority ones.
	 */
	offset = 0;
98
	end = GUC_NUM_DOORBELLS / 2;
99 100 101 102 103
	if (is_high_priority(client)) {
		offset = end;
		end += offset;
	}

104
	id = find_next_zero_bit(client->guc->doorbell_bitmap, end, offset);
105 106 107 108 109 110
	if (id == end)
		return -ENOSPC;

	__set_bit(id, client->guc->doorbell_bitmap);
	client->doorbell_id = id;
	DRM_DEBUG_DRIVER("client %u (high prio=%s) reserved doorbell: %d\n",
111
			 client->stage_id, yesno(is_high_priority(client)),
112 113 114 115
			 id);
	return 0;
}

116 117 118 119 120 121 122 123
static bool has_doorbell(struct intel_guc_client *client)
{
	if (client->doorbell_id == GUC_DOORBELL_INVALID)
		return false;

	return test_bit(client->doorbell_id, client->guc->doorbell_bitmap);
}

124
static void unreserve_doorbell(struct intel_guc_client *client)
125
{
126
	GEM_BUG_ON(!has_doorbell(client));
127 128 129 130 131

	__clear_bit(client->doorbell_id, client->guc->doorbell_bitmap);
	client->doorbell_id = GUC_DOORBELL_INVALID;
}

132 133 134 135
/*
 * Tell the GuC to allocate or deallocate a specific doorbell
 */

136
static int __guc_allocate_doorbell(struct intel_guc *guc, u32 stage_id)
137
{
138 139
	u32 action[] = {
		INTEL_GUC_ACTION_ALLOCATE_DOORBELL,
140
		stage_id
141
	};
142

143
	return intel_guc_send(guc, action, ARRAY_SIZE(action));
144 145
}

146
static int __guc_deallocate_doorbell(struct intel_guc *guc, u32 stage_id)
147
{
148 149
	u32 action[] = {
		INTEL_GUC_ACTION_DEALLOCATE_DOORBELL,
150
		stage_id
151
	};
152

153
	return intel_guc_send(guc, action, ARRAY_SIZE(action));
154 155
}

156
static struct guc_stage_desc *__get_stage_desc(struct intel_guc_client *client)
157
{
158
	struct guc_stage_desc *base = client->guc->stage_desc_pool_vaddr;
159

160
	return &base[client->stage_id];
161 162
}

163 164 165 166 167 168 169
/*
 * Initialise, update, or clear doorbell data shared with the GuC
 *
 * These functions modify shared data and so need access to the mapped
 * client object which contains the page being used for the doorbell
 */

170
static void __update_doorbell_desc(struct intel_guc_client *client, u16 new_id)
171
{
172
	struct guc_stage_desc *desc;
173

174
	/* Update the GuC's idea of the doorbell ID */
175
	desc = __get_stage_desc(client);
176
	desc->db_id = new_id;
177
}
178

179
static struct guc_doorbell_info *__get_doorbell(struct intel_guc_client *client)
180 181 182 183
{
	return client->vaddr + client->doorbell_offset;
}

184 185
static bool __doorbell_valid(struct intel_guc *guc, u16 db_id)
{
186
	struct intel_uncore *uncore = guc_to_gt(guc)->uncore;
187 188

	GEM_BUG_ON(db_id >= GUC_NUM_DOORBELLS);
189
	return intel_uncore_read(uncore, GEN8_DRBREGL(db_id)) & GEN8_DRB_VALID;
190 191
}

192
static void __init_doorbell(struct intel_guc_client *client)
193 194 195 196
{
	struct guc_doorbell_info *doorbell;

	doorbell = __get_doorbell(client);
197
	doorbell->db_status = GUC_DOORBELL_ENABLED;
198
	doorbell->cookie = 0;
199 200
}

201
static void __fini_doorbell(struct intel_guc_client *client)
202
{
203
	struct guc_doorbell_info *doorbell;
204 205
	u16 db_id = client->doorbell_id;

206 207 208
	doorbell = __get_doorbell(client);
	doorbell->db_status = GUC_DOORBELL_DISABLED;

209 210
	/* Doorbell release flow requires that we wait for GEN8_DRB_VALID bit
	 * to go to zero after updating db_status before we call the GuC to
211 212
	 * release the doorbell
	 */
213
	if (wait_for_us(!__doorbell_valid(client->guc, db_id), 10))
214
		WARN_ONCE(true, "Doorbell never became invalid after disable\n");
215 216
}

217
static int create_doorbell(struct intel_guc_client *client)
218 219 220
{
	int ret;

221 222 223
	if (WARN_ON(!has_doorbell(client)))
		return -ENODEV; /* internal setup error, should never happen */

224
	__update_doorbell_desc(client, client->doorbell_id);
225
	__init_doorbell(client);
226

227 228
	ret = __guc_allocate_doorbell(client->guc, client->stage_id);
	if (ret) {
229
		__fini_doorbell(client);
230
		__update_doorbell_desc(client, GUC_DOORBELL_INVALID);
231 232
		DRM_DEBUG_DRIVER("Couldn't create client %u doorbell: %d\n",
				 client->stage_id, ret);
233 234
		return ret;
	}
235 236 237 238

	return 0;
}

239
static int destroy_doorbell(struct intel_guc_client *client)
240
{
241
	int ret;
242

243 244
	GEM_BUG_ON(!has_doorbell(client));

245
	__fini_doorbell(client);
246 247 248 249
	ret = __guc_deallocate_doorbell(client->guc, client->stage_id);
	if (ret)
		DRM_ERROR("Couldn't destroy client %u doorbell: %d\n",
			  client->stage_id, ret);
250

251
	__update_doorbell_desc(client, GUC_DOORBELL_INVALID);
252

253
	return ret;
254
}
255

256
static unsigned long __select_cacheline(struct intel_guc *guc)
257
{
258
	unsigned long offset;
259 260 261 262 263

	/* Doorbell uses a single cache line within a page */
	offset = offset_in_page(guc->db_cacheline);

	/* Moving to next cache line to reduce contention */
264
	guc->db_cacheline += cache_line_size();
265

266
	DRM_DEBUG_DRIVER("reserved cacheline 0x%lx, next 0x%x, linesize %u\n",
267
			 offset, guc->db_cacheline, cache_line_size());
268 269 270
	return offset;
}

271
static inline struct guc_process_desc *
272
__get_process_desc(struct intel_guc_client *client)
273 274 275 276
{
	return client->vaddr + client->proc_desc_offset;
}

277 278 279
/*
 * Initialise the process descriptor shared with the GuC firmware.
 */
280
static void guc_proc_desc_init(struct intel_guc_client *client)
281 282 283
{
	struct guc_process_desc *desc;

284
	desc = memset(__get_process_desc(client), 0, sizeof(*desc));
285 286 287 288 289 290 291 292 293 294

	/*
	 * XXX: pDoorbell and WQVBaseAddress are pointers in process address
	 * space for ring3 clients (set them as in mmap_ioctl) or kernel
	 * space for kernel clients (map on demand instead? May make debug
	 * easier to have it mapped).
	 */
	desc->wq_base_addr = 0;
	desc->db_base_addr = 0;

295
	desc->stage_id = client->stage_id;
296
	desc->wq_size_bytes = GUC_WQ_SIZE;
297 298 299 300
	desc->wq_status = WQ_STATUS_ACTIVE;
	desc->priority = client->priority;
}

301 302 303 304 305 306 307 308
static void guc_proc_desc_fini(struct intel_guc_client *client)
{
	struct guc_process_desc *desc;

	desc = __get_process_desc(client);
	memset(desc, 0, sizeof(*desc));
}

309 310 311 312 313 314 315 316 317 318 319 320 321
static int guc_stage_desc_pool_create(struct intel_guc *guc)
{
	struct i915_vma *vma;
	void *vaddr;

	vma = intel_guc_allocate_vma(guc,
				     PAGE_ALIGN(sizeof(struct guc_stage_desc) *
				     GUC_MAX_STAGE_DESCRIPTORS));
	if (IS_ERR(vma))
		return PTR_ERR(vma);

	vaddr = i915_gem_object_pin_map(vma->obj, I915_MAP_WB);
	if (IS_ERR(vaddr)) {
322
		i915_vma_unpin_and_release(&vma, 0);
323 324 325 326 327 328 329 330 331 332 333 334 335
		return PTR_ERR(vaddr);
	}

	guc->stage_desc_pool = vma;
	guc->stage_desc_pool_vaddr = vaddr;
	ida_init(&guc->stage_ids);

	return 0;
}

static void guc_stage_desc_pool_destroy(struct intel_guc *guc)
{
	ida_destroy(&guc->stage_ids);
336
	i915_vma_unpin_and_release(&guc->stage_desc_pool, I915_VMA_RELEASE_MAP);
337 338
}

339
/*
340
 * Initialise/clear the stage descriptor shared with the GuC firmware.
341 342 343 344 345
 *
 * This descriptor tells the GuC where (in GGTT space) to find the important
 * data structures relating to this client (doorbell, process descriptor,
 * write queue, etc).
 */
346
static void guc_stage_desc_init(struct intel_guc_client *client)
347
{
348
	struct intel_guc *guc = client->guc;
349
	struct guc_stage_desc *desc;
350
	u32 gfx_addr;
351

352
	desc = __get_stage_desc(client);
353
	memset(desc, 0, sizeof(*desc));
354

355 356
	desc->attribute = GUC_STAGE_DESC_ATTR_ACTIVE |
			  GUC_STAGE_DESC_ATTR_KERNEL;
357 358
	if (is_high_priority(client))
		desc->attribute |= GUC_STAGE_DESC_ATTR_PREEMPT;
359
	desc->stage_id = client->stage_id;
360 361
	desc->priority = client->priority;
	desc->db_id = client->doorbell_id;
362 363

	/*
364 365
	 * The doorbell, process descriptor, and workqueue are all parts
	 * of the client object, which the GuC will reference via the GGTT
366
	 */
367
	gfx_addr = intel_guc_ggtt_offset(guc, client->vma);
368
	desc->db_trigger_phy = sg_dma_address(client->vma->pages->sgl) +
369
				client->doorbell_offset;
370
	desc->db_trigger_cpu = ptr_to_u64(__get_doorbell(client));
371 372
	desc->db_trigger_uk = gfx_addr + client->doorbell_offset;
	desc->process_desc = gfx_addr + client->proc_desc_offset;
373 374
	desc->wq_addr = gfx_addr + GUC_DB_SIZE;
	desc->wq_size = GUC_WQ_SIZE;
375

376
	desc->desc_private = ptr_to_u64(client);
377 378
}

379
static void guc_stage_desc_fini(struct intel_guc_client *client)
380
{
381
	struct guc_stage_desc *desc;
382

383
	desc = __get_stage_desc(client);
384
	memset(desc, 0, sizeof(*desc));
385 386
}

387
/* Construct a Work Item and append it to the GuC's Work Queue */
388
static void guc_wq_item_append(struct intel_guc_client *client,
389 390
			       u32 target_engine, u32 context_desc,
			       u32 ring_tail, u32 fence_id)
391
{
392 393
	/* wqi_len is in DWords, and does not include the one-word header */
	const size_t wqi_size = sizeof(struct guc_wq_item);
394
	const u32 wqi_len = wqi_size / sizeof(u32) - 1;
395
	struct guc_process_desc *desc = __get_process_desc(client);
396
	struct guc_wq_item *wqi;
397
	u32 wq_off;
398

399
	lockdep_assert_held(&client->wq_lock);
400

401 402 403 404 405 406 407
	/* For now workqueue item is 4 DWs; workqueue buffer is 2 pages. So we
	 * should not have the case where structure wqi is across page, neither
	 * wrapped to the beginning. This simplifies the implementation below.
	 *
	 * XXX: if not the case, we need save data to a temp wqi and copy it to
	 * workqueue buffer dw by dw.
	 */
408
	BUILD_BUG_ON(wqi_size != 16);
409

410 411 412
	/* We expect the WQ to be active if we're appending items to it */
	GEM_BUG_ON(desc->wq_status != WQ_STATUS_ACTIVE);

413 414 415 416
	/* Free space is guaranteed. */
	wq_off = READ_ONCE(desc->tail);
	GEM_BUG_ON(CIRC_SPACE(wq_off, READ_ONCE(desc->head),
			      GUC_WQ_SIZE) < wqi_size);
417
	GEM_BUG_ON(wq_off & (wqi_size - 1));
418 419

	/* WQ starts from the page after doorbell / process_desc */
420
	wqi = client->vaddr + wq_off + GUC_DB_SIZE;
421

422 423 424 425 426 427 428 429 430 431 432 433 434
	if (I915_SELFTEST_ONLY(client->use_nop_wqi)) {
		wqi->header = WQ_TYPE_NOOP | (wqi_len << WQ_LEN_SHIFT);
	} else {
		/* Now fill in the 4-word work queue item */
		wqi->header = WQ_TYPE_INORDER |
			      (wqi_len << WQ_LEN_SHIFT) |
			      (target_engine << WQ_TARGET_SHIFT) |
			      WQ_NO_WCFLUSH_WAIT;
		wqi->context_desc = context_desc;
		wqi->submit_element_info = ring_tail << WQ_RING_TAIL_SHIFT;
		GEM_BUG_ON(ring_tail > WQ_RING_TAIL_MAX);
		wqi->fence_id = fence_id;
	}
435

436
	/* Make the update visible to GuC */
437
	WRITE_ONCE(desc->tail, (wq_off + wqi_size) & (GUC_WQ_SIZE - 1));
438 439
}

440
static void guc_ring_doorbell(struct intel_guc_client *client)
441
{
442 443
	struct guc_doorbell_info *db;
	u32 cookie;
444

445
	lockdep_assert_held(&client->wq_lock);
446 447

	/* pointer of current doorbell cacheline */
448
	db = __get_doorbell(client);
449

450 451 452 453
	/*
	 * We're not expecting the doorbell cookie to change behind our back,
	 * we also need to treat 0 as a reserved value.
	 */
454
	cookie = READ_ONCE(db->cookie);
455
	WARN_ON_ONCE(xchg(&db->cookie, cookie + 1 ?: cookie + 2) != cookie);
456

457 458
	/* XXX: doorbell was lost and need to acquire it again */
	GEM_BUG_ON(db->db_status != GUC_DOORBELL_ENABLED);
459 460
}

461
static void guc_add_request(struct intel_guc *guc, struct i915_request *rq)
462
{
463
	struct intel_guc_client *client = guc->execbuf_client;
464
	struct intel_engine_cs *engine = rq->engine;
465
	u32 ctx_desc = lower_32_bits(rq->hw_context->lrc_desc);
466 467 468
	u32 ring_tail = intel_ring_set_tail(rq->ring, rq->tail) / sizeof(u64);

	guc_wq_item_append(client, engine->guc_id, ctx_desc,
469
			   ring_tail, rq->fence.seqno);
470 471 472
	guc_ring_doorbell(client);
}

473 474 475 476 477 478 479 480 481 482
/*
 * When we're doing submissions using regular execlists backend, writing to
 * ELSP from CPU side is enough to make sure that writes to ringbuffer pages
 * pinned in mappable aperture portion of GGTT are visible to command streamer.
 * Writes done by GuC on our behalf are not guaranteeing such ordering,
 * therefore, to ensure the flush, we're issuing a POSTING READ.
 */
static void flush_ggtt_writes(struct i915_vma *vma)
{
	if (i915_vma_is_map_and_fenceable(vma))
483 484
		intel_uncore_posting_read_fw(vma->vm->gt->uncore,
					     GUC_STATUS);
485 486
}

487 488 489
static void guc_submit(struct intel_engine_cs *engine,
		       struct i915_request **out,
		       struct i915_request **end)
490
{
491
	struct intel_guc *guc = &engine->gt->uc.guc;
492
	struct intel_guc_client *client = guc->execbuf_client;
493

494
	spin_lock(&client->wq_lock);
495

496 497
	do {
		struct i915_request *rq = *out++;
498

499 500 501
		flush_ggtt_writes(rq->ring->vma);
		guc_add_request(guc, rq);
	} while (out != end);
502

503
	spin_unlock(&client->wq_lock);
504 505
}

506
static inline int rq_prio(const struct i915_request *rq)
507
{
508
	return rq->sched.attr.priority | __NO_PREEMPTION;
509 510
}

511
static struct i915_request *schedule_in(struct i915_request *rq, int idx)
512
{
513 514
	trace_i915_request_in(rq, idx);

515 516 517 518 519 520
	/*
	 * Currently we are not tracking the rq->context being inflight
	 * (ce->inflight = rq->engine). It is only used by the execlists
	 * backend at the moment, a similar counting strategy would be
	 * required if we generalise the inflight tracking.
	 */
521

522
	__intel_gt_pm_get(rq->engine->gt);
523
	return i915_request_get(rq);
524 525
}

526
static void schedule_out(struct i915_request *rq)
527
{
528 529
	trace_i915_request_out(rq);

530
	intel_gt_pm_put_async(rq->engine->gt);
531
	i915_request_put(rq);
532 533
}

534
static void __guc_dequeue(struct intel_engine_cs *engine)
535
{
536
	struct intel_engine_execlists * const execlists = &engine->execlists;
537 538 539 540
	struct i915_request **first = execlists->inflight;
	struct i915_request ** const last_port = first + execlists->port_mask;
	struct i915_request *last = first[0];
	struct i915_request **port;
541
	bool submit = false;
542 543
	struct rb_node *rb;

544
	lockdep_assert_held(&engine->active.lock);
545

546 547 548 549 550
	if (last) {
		if (*++first)
			return;

		last = NULL;
551 552
	}

553 554 555 556 557
	/*
	 * We write directly into the execlists->inflight queue and don't use
	 * the execlists->pending queue, as we don't have a distinct switch
	 * event.
	 */
558
	port = first;
559
	while ((rb = rb_first_cached(&execlists->queue))) {
560
		struct i915_priolist *p = to_priolist(rb);
561
		struct i915_request *rq, *rn;
562
		int i;
563

564
		priolist_for_each_request_consume(rq, rn, p, i) {
565
			if (last && rq->hw_context != last->hw_context) {
566
				if (port == last_port)
567 568
					goto done;

569 570
				*port = schedule_in(last,
						    port - execlists->inflight);
571 572 573
				port++;
			}

574
			list_del_init(&rq->sched.link);
575
			__i915_request_submit(rq);
576
			submit = true;
577
			last = rq;
578 579
		}

580
		rb_erase_cached(&p->node, &execlists->queue);
581
		i915_priolist_free(p);
582
	}
583
done:
584 585
	execlists->queue_priority_hint =
		rb ? to_priolist(rb)->priority : INT_MIN;
586 587 588 589 590 591
	if (submit) {
		*port = schedule_in(last, port - execlists->inflight);
		*++port = NULL;
		guc_submit(engine, first, port);
	}
	execlists->active = execlists->inflight;
592 593
}

594
static void guc_submission_tasklet(unsigned long data)
595
{
596
	struct intel_engine_cs * const engine = (struct intel_engine_cs *)data;
597
	struct intel_engine_execlists * const execlists = &engine->execlists;
598
	struct i915_request **port, *rq;
599 600
	unsigned long flags;

601
	spin_lock_irqsave(&engine->active.lock, flags);
602

603 604 605
	for (port = execlists->inflight; (rq = *port); port++) {
		if (!i915_request_completed(rq))
			break;
606

607 608 609 610 611 612
		schedule_out(rq);
	}
	if (port != execlists->inflight) {
		int idx = port - execlists->inflight;
		int rem = ARRAY_SIZE(execlists->inflight) - idx;
		memmove(execlists->inflight, port, rem * sizeof(*port));
613
	}
614

615
	__guc_dequeue(engine);
616

617
	spin_unlock_irqrestore(&engine->active.lock, flags);
618 619
}

620
static void guc_reset_prepare(struct intel_engine_cs *engine)
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637
{
	struct intel_engine_execlists * const execlists = &engine->execlists;

	GEM_TRACE("%s\n", engine->name);

	/*
	 * Prevent request submission to the hardware until we have
	 * completed the reset in i915_gem_reset_finish(). If a request
	 * is completed by one engine, it may then queue a request
	 * to a second via its execlists->tasklet *just* as we are
	 * calling engine->init_hw() and also writing the ELSP.
	 * Turning off the execlists->tasklet until the reset is over
	 * prevents the race.
	 */
	__tasklet_disable_sync_once(&execlists->tasklet);
}

638 639 640 641 642 643 644 645 646 647 648 649 650
static void
cancel_port_requests(struct intel_engine_execlists * const execlists)
{
	struct i915_request * const *port, *rq;

	/* Note we are only using the inflight and not the pending queue */

	for (port = execlists->active; (rq = *port); port++)
		schedule_out(rq);
	execlists->active =
		memset(execlists->inflight, 0, sizeof(execlists->inflight));
}

651 652 653 654 655 656
static void guc_reset(struct intel_engine_cs *engine, bool stalled)
{
	struct intel_engine_execlists * const execlists = &engine->execlists;
	struct i915_request *rq;
	unsigned long flags;

657
	spin_lock_irqsave(&engine->active.lock, flags);
658

659
	cancel_port_requests(execlists);
660 661 662 663 664 665 666 667 668

	/* Push back any incomplete requests for replay after the reset. */
	rq = execlists_unwind_incomplete_requests(execlists);
	if (!rq)
		goto out_unlock;

	if (!i915_request_started(rq))
		stalled = false;

669
	__i915_request_reset(rq, stalled);
670 671 672
	intel_lr_context_reset(engine, rq->hw_context, rq->head, stalled);

out_unlock:
673
	spin_unlock_irqrestore(&engine->active.lock, flags);
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
}

static void guc_cancel_requests(struct intel_engine_cs *engine)
{
	struct intel_engine_execlists * const execlists = &engine->execlists;
	struct i915_request *rq, *rn;
	struct rb_node *rb;
	unsigned long flags;

	GEM_TRACE("%s\n", engine->name);

	/*
	 * Before we call engine->cancel_requests(), we should have exclusive
	 * access to the submission state. This is arranged for us by the
	 * caller disabling the interrupt generation, the tasklet and other
	 * threads that may then access the same state, giving us a free hand
	 * to reset state. However, we still need to let lockdep be aware that
	 * we know this state may be accessed in hardirq context, so we
	 * disable the irq around this manipulation and we want to keep
	 * the spinlock focused on its duties and not accidentally conflate
	 * coverage to the submission's irq state. (Similarly, although we
	 * shouldn't need to disable irq around the manipulation of the
	 * submission's irq state, we also wish to remind ourselves that
	 * it is irq state.)
	 */
699
	spin_lock_irqsave(&engine->active.lock, flags);
700 701

	/* Cancel the requests on the HW and clear the ELSP tracker. */
702
	cancel_port_requests(execlists);
703 704

	/* Mark all executing requests as skipped. */
705
	list_for_each_entry(rq, &engine->active.requests, sched.link) {
706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
		if (!i915_request_signaled(rq))
			dma_fence_set_error(&rq->fence, -EIO);

		i915_request_mark_complete(rq);
	}

	/* Flush the queued requests to the timeline list (for retiring). */
	while ((rb = rb_first_cached(&execlists->queue))) {
		struct i915_priolist *p = to_priolist(rb);
		int i;

		priolist_for_each_request_consume(rq, rn, p, i) {
			list_del_init(&rq->sched.link);
			__i915_request_submit(rq);
			dma_fence_set_error(&rq->fence, -EIO);
			i915_request_mark_complete(rq);
		}

		rb_erase_cached(&p->node, &execlists->queue);
		i915_priolist_free(p);
	}

	/* Remaining _unready_ requests will be nop'ed when submitted */

	execlists->queue_priority_hint = INT_MIN;
	execlists->queue = RB_ROOT_CACHED;

733
	spin_unlock_irqrestore(&engine->active.lock, flags);
734 735 736 737 738 739 740 741 742 743 744 745 746 747
}

static void guc_reset_finish(struct intel_engine_cs *engine)
{
	struct intel_engine_execlists * const execlists = &engine->execlists;

	if (__tasklet_enable(&execlists->tasklet))
		/* And kick in case we missed a new request submission. */
		tasklet_hi_schedule(&execlists->tasklet);

	GEM_TRACE("%s: depth->%d\n", engine->name,
		  atomic_read(&execlists->tasklet.count));
}

748 749 750
/*
 * Everything below here is concerned with setup & teardown, and is
 * therefore not part of the somewhat time-critical batch-submission
751
 * path of guc_submit() above.
752 753
 */

754
/* Check that a doorbell register is in the expected state */
755
static bool doorbell_ok(struct intel_guc *guc, u16 db_id)
756
{
757 758
	bool valid;

759
	GEM_BUG_ON(db_id >= GUC_NUM_DOORBELLS);
760

761
	valid = __doorbell_valid(guc, db_id);
762

763
	if (test_bit(db_id, guc->doorbell_bitmap) == valid)
764 765
		return true;

766 767
	DRM_DEBUG_DRIVER("Doorbell %u has unexpected state: valid=%s\n",
			 db_id, yesno(valid));
768 769 770 771

	return false;
}

772
static bool guc_verify_doorbells(struct intel_guc *guc)
773
{
774
	bool doorbells_ok = true;
775
	u16 db_id;
776 777 778

	for (db_id = 0; db_id < GUC_NUM_DOORBELLS; ++db_id)
		if (!doorbell_ok(guc, db_id))
779
			doorbells_ok = false;
780

781
	return doorbells_ok;
782 783
}

784
/**
785
 * guc_client_alloc() - Allocate an intel_guc_client
786
 * @guc:	the intel_guc structure
787
 * @priority:	four levels priority _CRITICAL, _HIGH, _NORMAL and _LOW
788 789 790
 *		The kernel client to replace ExecList submission is created with
 *		NORMAL priority. Priority of a client for scheduler can be HIGH,
 *		while a preemption context can use CRITICAL.
791
 *
792
 * Return:	An intel_guc_client object if success, else NULL.
793
 */
794
static struct intel_guc_client *
795
guc_client_alloc(struct intel_guc *guc, u32 priority)
796
{
797
	struct intel_guc_client *client;
798
	struct i915_vma *vma;
799
	void *vaddr;
800
	int ret;
801 802 803

	client = kzalloc(sizeof(*client), GFP_KERNEL);
	if (!client)
804
		return ERR_PTR(-ENOMEM);
805 806

	client->guc = guc;
807
	client->priority = priority;
808 809
	client->doorbell_id = GUC_DOORBELL_INVALID;
	spin_lock_init(&client->wq_lock);
810

811
	ret = ida_simple_get(&guc->stage_ids, 0, GUC_MAX_STAGE_DESCRIPTORS,
812
			     GFP_KERNEL);
813 814 815
	if (ret < 0)
		goto err_client;

816
	client->stage_id = ret;
817 818

	/* The first page is doorbell/proc_desc. Two followed pages are wq. */
819
	vma = intel_guc_allocate_vma(guc, GUC_DB_SIZE + GUC_WQ_SIZE);
820 821 822 823
	if (IS_ERR(vma)) {
		ret = PTR_ERR(vma);
		goto err_id;
	}
824

825
	/* We'll keep just the first (doorbell/proc) page permanently kmap'd. */
826
	client->vma = vma;
827 828

	vaddr = i915_gem_object_pin_map(vma->obj, I915_MAP_WB);
829 830 831 832
	if (IS_ERR(vaddr)) {
		ret = PTR_ERR(vaddr);
		goto err_vma;
	}
833
	client->vaddr = vaddr;
834

835 836 837 838
	ret = reserve_doorbell(client);
	if (ret)
		goto err_vaddr;

839
	client->doorbell_offset = __select_cacheline(guc);
840 841 842 843 844 845 846 847 848 849 850

	/*
	 * Since the doorbell only requires a single cacheline, we can save
	 * space by putting the application process descriptor in the same
	 * page. Use the half of the page that doesn't include the doorbell.
	 */
	if (client->doorbell_offset >= (GUC_DB_SIZE / 2))
		client->proc_desc_offset = 0;
	else
		client->proc_desc_offset = (GUC_DB_SIZE / 2);

851 852
	DRM_DEBUG_DRIVER("new priority %u client %p: stage_id %u\n",
			 priority, client, client->stage_id);
853 854
	DRM_DEBUG_DRIVER("doorbell id %u, cacheline offset 0x%lx\n",
			 client->doorbell_id, client->doorbell_offset);
855 856

	return client;
857 858 859

err_vaddr:
	i915_gem_object_unpin_map(client->vma->obj);
860
err_vma:
861
	i915_vma_unpin_and_release(&client->vma, 0);
862
err_id:
863
	ida_simple_remove(&guc->stage_ids, client->stage_id);
864 865 866
err_client:
	kfree(client);
	return ERR_PTR(ret);
867 868
}

869
static void guc_client_free(struct intel_guc_client *client)
870
{
871
	unreserve_doorbell(client);
872
	i915_vma_unpin_and_release(&client->vma, I915_VMA_RELEASE_MAP);
873
	ida_simple_remove(&client->guc->stage_ids, client->stage_id);
874 875 876
	kfree(client);
}

877 878
static int guc_clients_create(struct intel_guc *guc)
{
879
	struct intel_guc_client *client;
880 881 882

	GEM_BUG_ON(guc->execbuf_client);

883
	client = guc_client_alloc(guc, GUC_CLIENT_PRIORITY_KMD_NORMAL);
884 885 886 887 888 889 890 891 892 893 894
	if (IS_ERR(client)) {
		DRM_ERROR("Failed to create GuC client for submission!\n");
		return PTR_ERR(client);
	}
	guc->execbuf_client = client;

	return 0;
}

static void guc_clients_destroy(struct intel_guc *guc)
{
895
	struct intel_guc_client *client;
896

897
	client = fetch_and_zero(&guc->execbuf_client);
898 899
	if (client)
		guc_client_free(client);
900 901
}

902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927
static int __guc_client_enable(struct intel_guc_client *client)
{
	int ret;

	guc_proc_desc_init(client);
	guc_stage_desc_init(client);

	ret = create_doorbell(client);
	if (ret)
		goto fail;

	return 0;

fail:
	guc_stage_desc_fini(client);
	guc_proc_desc_fini(client);
	return ret;
}

static void __guc_client_disable(struct intel_guc_client *client)
{
	/*
	 * By the time we're here, GuC may have already been reset. if that is
	 * the case, instead of trying (in vain) to communicate with it, let's
	 * just cleanup the doorbell HW and our internal state.
	 */
928
	if (intel_guc_is_running(client->guc))
929 930
		destroy_doorbell(client);
	else
931
		__fini_doorbell(client);
932 933 934 935 936 937 938

	guc_stage_desc_fini(client);
	guc_proc_desc_fini(client);
}

static int guc_clients_enable(struct intel_guc *guc)
{
939
	return __guc_client_enable(guc->execbuf_client);
940 941 942 943 944 945 946 947
}

static void guc_clients_disable(struct intel_guc *guc)
{
	if (guc->execbuf_client)
		__guc_client_disable(guc->execbuf_client);
}

948
/*
949 950
 * Set up the memory resources to be shared with the GuC (via the GGTT)
 * at firmware loading time.
951
 */
952
int intel_guc_submission_init(struct intel_guc *guc)
953
{
954
	int ret;
955

956
	if (guc->stage_desc_pool)
957
		return 0;
958

959 960 961
	ret = guc_stage_desc_pool_create(guc);
	if (ret)
		return ret;
962 963 964 965 966
	/*
	 * Keep static analysers happy, let them know that we allocated the
	 * vma after testing that it didn't exist earlier.
	 */
	GEM_BUG_ON(!guc->stage_desc_pool);
967

968
	WARN_ON(!guc_verify_doorbells(guc));
969 970
	ret = guc_clients_create(guc);
	if (ret)
971
		goto err_pool;
972

973
	return 0;
974

975 976 977
err_pool:
	guc_stage_desc_pool_destroy(guc);
	return ret;
978 979
}

980
void intel_guc_submission_fini(struct intel_guc *guc)
981
{
982
	guc_clients_destroy(guc);
983 984
	WARN_ON(!guc_verify_doorbells(guc));

985 986
	if (guc->stage_desc_pool)
		guc_stage_desc_pool_destroy(guc);
987 988
}

989
static void guc_interrupts_capture(struct intel_gt *gt)
990
{
991
	struct intel_uncore *uncore = gt->uncore;
992 993
	u32 irqs = GT_CONTEXT_SWITCH_INTERRUPT;
	u32 dmask = irqs << 16 | irqs;
994

995
	GEM_BUG_ON(INTEL_GEN(gt->i915) < 11);
996

997 998 999
	/* Don't handle the ctx switch interrupt in GuC submission mode */
	intel_uncore_rmw(uncore, GEN11_RENDER_COPY_INTR_ENABLE, dmask, 0);
	intel_uncore_rmw(uncore, GEN11_VCS_VECS_INTR_ENABLE, dmask, 0);
1000 1001
}

1002
static void guc_interrupts_release(struct intel_gt *gt)
1003
{
1004
	struct intel_uncore *uncore = gt->uncore;
1005 1006
	u32 irqs = GT_CONTEXT_SWITCH_INTERRUPT;
	u32 dmask = irqs << 16 | irqs;
1007

1008 1009 1010 1011 1012
	GEM_BUG_ON(INTEL_GEN(gt->i915) < 11);

	/* Handle ctx switch interrupts again */
	intel_uncore_rmw(uncore, GEN11_RENDER_COPY_INTR_ENABLE, 0, dmask);
	intel_uncore_rmw(uncore, GEN11_VCS_VECS_INTR_ENABLE, 0, dmask);
1013 1014
}

1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
static void guc_set_default_submission(struct intel_engine_cs *engine)
{
	/*
	 * We inherit a bunch of functions from execlists that we'd like
	 * to keep using:
	 *
	 *    engine->submit_request = execlists_submit_request;
	 *    engine->cancel_requests = execlists_cancel_requests;
	 *    engine->schedule = execlists_schedule;
	 *
	 * But we need to override the actual submission backend in order
	 * to talk to the GuC.
	 */
	intel_execlists_set_default_submission(engine);

	engine->execlists.tasklet.func = guc_submission_tasklet;

1032 1033
	/* do not use execlists park/unpark */
	engine->park = engine->unpark = NULL;
1034 1035

	engine->reset.prepare = guc_reset_prepare;
1036 1037 1038 1039
	engine->reset.reset = guc_reset;
	engine->reset.finish = guc_reset_finish;

	engine->cancel_requests = guc_cancel_requests;
1040 1041

	engine->flags &= ~I915_ENGINE_SUPPORTS_STATS;
1042 1043 1044 1045 1046 1047 1048 1049 1050
	engine->flags |= I915_ENGINE_NEEDS_BREADCRUMB_TASKLET;

	/*
	 * For the breadcrumb irq to work we need the interrupts to stay
	 * enabled. However, on all platforms on which we'll have support for
	 * GuC submission we don't allow disabling the interrupts at runtime, so
	 * we're always safe with the current flow.
	 */
	GEM_BUG_ON(engine->irq_enable || engine->irq_disable);
1051 1052
}

1053
int intel_guc_submission_enable(struct intel_guc *guc)
1054
{
1055
	struct intel_gt *gt = guc_to_gt(guc);
1056
	struct intel_engine_cs *engine;
1057
	enum intel_engine_id id;
1058
	int err;
1059

1060
	err = i915_inject_probe_error(gt->i915, -ENXIO);
1061 1062 1063
	if (err)
		return err;

1064 1065 1066 1067 1068 1069 1070 1071 1072
	/*
	 * We're using GuC work items for submitting work through GuC. Since
	 * we're coalescing multiple requests from a single context into a
	 * single work item prior to assigning it to execlist_port, we can
	 * never have more work items than the total number of ports (for all
	 * engines). The GuC firmware is controlling the HEAD of work queue,
	 * and it is guaranteed that it will remove the work item from the
	 * queue before our request is completed.
	 */
1073
	BUILD_BUG_ON(ARRAY_SIZE(engine->execlists.inflight) *
1074 1075 1076
		     sizeof(struct guc_wq_item) *
		     I915_NUM_ENGINES > GUC_WQ_SIZE);

1077 1078
	GEM_BUG_ON(!guc->execbuf_client);

1079
	err = guc_clients_enable(guc);
1080
	if (err)
1081
		return err;
A
Alex Dai 已提交
1082

1083
	/* Take over from manual control of ELSP (execlists) */
1084
	guc_interrupts_capture(gt);
1085

1086
	for_each_engine(engine, gt, id) {
1087 1088
		engine->set_default_submission = guc_set_default_submission;
		engine->set_default_submission(engine);
1089 1090
	}

1091 1092 1093
	return 0;
}

1094
void intel_guc_submission_disable(struct intel_guc *guc)
1095
{
1096
	struct intel_gt *gt = guc_to_gt(guc);
1097

1098
	GEM_BUG_ON(gt->awake); /* GT should be parked first */
1099

1100
	guc_interrupts_release(gt);
1101
	guc_clients_disable(guc);
1102
}
1103

1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
static bool __guc_submission_support(struct intel_guc *guc)
{
	/* XXX: GuC submission is unavailable for now */
	return false;

	if (!intel_guc_is_supported(guc))
		return false;

	return i915_modparams.enable_guc & ENABLE_GUC_SUBMISSION;
}

void intel_guc_submission_init_early(struct intel_guc *guc)
{
	guc->submission_supported = __guc_submission_support(guc);
}

1120
#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1121
#include "selftest_guc.c"
1122
#endif