drm/i915: Rename and inline i915_gem_context_get()
[deliverable/linux.git] / drivers / gpu / drm / i915 / i915_guc_submission.c
CommitLineData
bac427f8
AD
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#include <linux/firmware.h>
25#include <linux/circ_buf.h>
26#include "i915_drv.h"
27#include "intel_guc.h"
28
44a28b1d 29/**
feda33ef 30 * DOC: GuC-based command submission
44a28b1d
DG
31 *
32 * i915_guc_client:
33 * We use the term client to avoid confusion with contexts. A i915_guc_client is
34 * equivalent to GuC object guc_context_desc. This context descriptor is
35 * allocated from a pool of 1024 entries. Kernel driver will allocate doorbell
36 * and workqueue for it. Also the process descriptor (guc_process_desc), which
37 * is mapped to client space. So the client can write Work Item then ring the
38 * doorbell.
39 *
40 * To simplify the implementation, we allocate one gem object that contains all
41 * pages for doorbell, process descriptor and workqueue.
42 *
43 * The Scratch registers:
44 * There are 16 MMIO-based registers start from 0xC180. The kernel driver writes
45 * a value to the action register (SOFT_SCRATCH_0) along with any data. It then
46 * triggers an interrupt on the GuC via another register write (0xC4C8).
47 * Firmware writes a success/fail code back to the action register after
48 * processes the request. The kernel driver polls waiting for this update and
49 * then proceeds.
50 * See host2guc_action()
51 *
52 * Doorbells:
53 * Doorbells are interrupts to uKernel. A doorbell is a single cache line (QW)
54 * mapped into process space.
55 *
56 * Work Items:
57 * There are several types of work items that the host may place into a
58 * workqueue, each with its own requirements and limitations. Currently only
59 * WQ_TYPE_INORDER is needed to support legacy submission via GuC, which
60 * represents in-order queue. The kernel driver packs ring tail pointer and an
61 * ELSP context descriptor dword into Work Item.
62 * See guc_add_workqueue_item()
63 *
64 */
65
66/*
67 * Read GuC command/status register (SOFT_SCRATCH_0)
68 * Return true if it contains a response rather than a command
69 */
70static inline bool host2guc_action_response(struct drm_i915_private *dev_priv,
71 u32 *status)
72{
73 u32 val = I915_READ(SOFT_SCRATCH(0));
74 *status = val;
75 return GUC2HOST_IS_RESPONSE(val);
76}
77
78static int host2guc_action(struct intel_guc *guc, u32 *data, u32 len)
79{
80 struct drm_i915_private *dev_priv = guc_to_i915(guc);
81 u32 status;
82 int i;
83 int ret;
84
85 if (WARN_ON(len < 1 || len > 15))
86 return -EINVAL;
87
88 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
44a28b1d
DG
89
90 dev_priv->guc.action_count += 1;
91 dev_priv->guc.action_cmd = data[0];
92
93 for (i = 0; i < len; i++)
94 I915_WRITE(SOFT_SCRATCH(i), data[i]);
95
96 POSTING_READ(SOFT_SCRATCH(i - 1));
97
98 I915_WRITE(HOST2GUC_INTERRUPT, HOST2GUC_TRIGGER);
99
100 /* No HOST2GUC command should take longer than 10ms */
101 ret = wait_for_atomic(host2guc_action_response(dev_priv, &status), 10);
102 if (status != GUC2HOST_STATUS_SUCCESS) {
103 /*
104 * Either the GuC explicitly returned an error (which
105 * we convert to -EIO here) or no response at all was
106 * received within the timeout limit (-ETIMEDOUT)
107 */
108 if (ret != -ETIMEDOUT)
109 ret = -EIO;
110
111 DRM_ERROR("GUC: host2guc action 0x%X failed. ret=%d "
112 "status=0x%08X response=0x%08X\n",
113 data[0], ret, status,
114 I915_READ(SOFT_SCRATCH(15)));
115
116 dev_priv->guc.action_fail += 1;
117 dev_priv->guc.action_err = ret;
118 }
119 dev_priv->guc.action_status = status;
120
44a28b1d
DG
121 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
122
123 return ret;
124}
125
126/*
127 * Tell the GuC to allocate or deallocate a specific doorbell
128 */
129
130static int host2guc_allocate_doorbell(struct intel_guc *guc,
131 struct i915_guc_client *client)
132{
133 u32 data[2];
134
135 data[0] = HOST2GUC_ACTION_ALLOCATE_DOORBELL;
136 data[1] = client->ctx_index;
137
138 return host2guc_action(guc, data, 2);
139}
140
141static int host2guc_release_doorbell(struct intel_guc *guc,
142 struct i915_guc_client *client)
143{
144 u32 data[2];
145
146 data[0] = HOST2GUC_ACTION_DEALLOCATE_DOORBELL;
147 data[1] = client->ctx_index;
148
149 return host2guc_action(guc, data, 2);
150}
151
f5d3c3ea
AD
152static int host2guc_sample_forcewake(struct intel_guc *guc,
153 struct i915_guc_client *client)
154{
155 struct drm_i915_private *dev_priv = guc_to_i915(guc);
93f25318 156 struct drm_device *dev = dev_priv->dev;
f5d3c3ea
AD
157 u32 data[2];
158
159 data[0] = HOST2GUC_ACTION_SAMPLE_FORCEWAKE;
93f25318 160 /* WaRsDisableCoarsePowerGating:skl,bxt */
dc97997a 161 if (!intel_enable_rc6() || NEEDS_WaRsDisableCoarsePowerGating(dev))
93f25318
AD
162 data[1] = 0;
163 else
164 /* bit 0 and 1 are for Render and Media domain separately */
165 data[1] = GUC_FORCEWAKE_RENDER | GUC_FORCEWAKE_MEDIA;
166
167 return host2guc_action(guc, data, ARRAY_SIZE(data));
f5d3c3ea
AD
168}
169
44a28b1d
DG
170/*
171 * Initialise, update, or clear doorbell data shared with the GuC
172 *
173 * These functions modify shared data and so need access to the mapped
174 * client object which contains the page being used for the doorbell
175 */
176
177static void guc_init_doorbell(struct intel_guc *guc,
178 struct i915_guc_client *client)
179{
180 struct guc_doorbell_info *doorbell;
44a28b1d 181
0d92a6a4 182 doorbell = client->client_base + client->doorbell_offset;
44a28b1d 183
0d92a6a4 184 doorbell->db_status = GUC_DOORBELL_ENABLED;
44a28b1d 185 doorbell->cookie = 0;
44a28b1d
DG
186}
187
188static int guc_ring_doorbell(struct i915_guc_client *gc)
189{
190 struct guc_process_desc *desc;
191 union guc_doorbell_qw db_cmp, db_exc, db_ret;
192 union guc_doorbell_qw *db;
44a28b1d
DG
193 int attempt = 2, ret = -EAGAIN;
194
0d92a6a4 195 desc = gc->client_base + gc->proc_desc_offset;
44a28b1d
DG
196
197 /* Update the tail so it is visible to GuC */
198 desc->tail = gc->wq_tail;
199
200 /* current cookie */
201 db_cmp.db_status = GUC_DOORBELL_ENABLED;
202 db_cmp.cookie = gc->cookie;
203
204 /* cookie to be updated */
205 db_exc.db_status = GUC_DOORBELL_ENABLED;
206 db_exc.cookie = gc->cookie + 1;
207 if (db_exc.cookie == 0)
208 db_exc.cookie = 1;
209
210 /* pointer of current doorbell cacheline */
0d92a6a4 211 db = gc->client_base + gc->doorbell_offset;
44a28b1d
DG
212
213 while (attempt--) {
214 /* lets ring the doorbell */
215 db_ret.value_qw = atomic64_cmpxchg((atomic64_t *)db,
216 db_cmp.value_qw, db_exc.value_qw);
217
218 /* if the exchange was successfully executed */
219 if (db_ret.value_qw == db_cmp.value_qw) {
220 /* db was successfully rung */
221 gc->cookie = db_exc.cookie;
222 ret = 0;
223 break;
224 }
225
226 /* XXX: doorbell was lost and need to acquire it again */
227 if (db_ret.db_status == GUC_DOORBELL_DISABLED)
228 break;
229
230 DRM_ERROR("Cookie mismatch. Expected %d, returned %d\n",
231 db_cmp.cookie, db_ret.cookie);
232
233 /* update the cookie to newly read cookie from GuC */
234 db_cmp.cookie = db_ret.cookie;
235 db_exc.cookie = db_ret.cookie + 1;
236 if (db_exc.cookie == 0)
237 db_exc.cookie = 1;
238 }
239
44a28b1d
DG
240 return ret;
241}
242
243static void guc_disable_doorbell(struct intel_guc *guc,
244 struct i915_guc_client *client)
245{
246 struct drm_i915_private *dev_priv = guc_to_i915(guc);
247 struct guc_doorbell_info *doorbell;
f0f59a00 248 i915_reg_t drbreg = GEN8_DRBREGL(client->doorbell_id);
44a28b1d
DG
249 int value;
250
0d92a6a4 251 doorbell = client->client_base + client->doorbell_offset;
44a28b1d 252
0d92a6a4 253 doorbell->db_status = GUC_DOORBELL_DISABLED;
44a28b1d
DG
254
255 I915_WRITE(drbreg, I915_READ(drbreg) & ~GEN8_DRB_VALID);
256
257 value = I915_READ(drbreg);
258 WARN_ON((value & GEN8_DRB_VALID) != 0);
259
260 I915_WRITE(GEN8_DRBREGU(client->doorbell_id), 0);
261 I915_WRITE(drbreg, 0);
262
263 /* XXX: wait for any interrupts */
264 /* XXX: wait for workqueue to drain */
265}
266
267/*
268 * Select, assign and relase doorbell cachelines
269 *
270 * These functions track which doorbell cachelines are in use.
271 * The data they manipulate is protected by the host2guc lock.
272 */
273
274static uint32_t select_doorbell_cacheline(struct intel_guc *guc)
275{
276 const uint32_t cacheline_size = cache_line_size();
277 uint32_t offset;
278
44a28b1d
DG
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 += cacheline_size;
284
44a28b1d
DG
285 DRM_DEBUG_DRIVER("selected doorbell cacheline 0x%x, next 0x%x, linesize %u\n",
286 offset, guc->db_cacheline, cacheline_size);
287
288 return offset;
289}
290
291static uint16_t assign_doorbell(struct intel_guc *guc, uint32_t priority)
292{
293 /*
294 * The bitmap is split into two halves; the first half is used for
295 * normal priority contexts, the second half for high-priority ones.
296 * Note that logically higher priorities are numerically less than
297 * normal ones, so the test below means "is it high-priority?"
298 */
299 const bool hi_pri = (priority <= GUC_CTX_PRIORITY_HIGH);
300 const uint16_t half = GUC_MAX_DOORBELLS / 2;
301 const uint16_t start = hi_pri ? half : 0;
302 const uint16_t end = start + half;
303 uint16_t id;
304
44a28b1d
DG
305 id = find_next_zero_bit(guc->doorbell_bitmap, end, start);
306 if (id == end)
307 id = GUC_INVALID_DOORBELL_ID;
308 else
309 bitmap_set(guc->doorbell_bitmap, id, 1);
44a28b1d
DG
310
311 DRM_DEBUG_DRIVER("assigned %s priority doorbell id 0x%x\n",
312 hi_pri ? "high" : "normal", id);
313
314 return id;
315}
316
317static void release_doorbell(struct intel_guc *guc, uint16_t id)
318{
44a28b1d 319 bitmap_clear(guc->doorbell_bitmap, id, 1);
44a28b1d
DG
320}
321
322/*
323 * Initialise the process descriptor shared with the GuC firmware.
324 */
325static void guc_init_proc_desc(struct intel_guc *guc,
326 struct i915_guc_client *client)
327{
328 struct guc_process_desc *desc;
44a28b1d 329
0d92a6a4 330 desc = client->client_base + client->proc_desc_offset;
44a28b1d
DG
331
332 memset(desc, 0, sizeof(*desc));
333
334 /*
335 * XXX: pDoorbell and WQVBaseAddress are pointers in process address
336 * space for ring3 clients (set them as in mmap_ioctl) or kernel
337 * space for kernel clients (map on demand instead? May make debug
338 * easier to have it mapped).
339 */
340 desc->wq_base_addr = 0;
341 desc->db_base_addr = 0;
342
343 desc->context_id = client->ctx_index;
344 desc->wq_size_bytes = client->wq_size;
345 desc->wq_status = WQ_STATUS_ACTIVE;
346 desc->priority = client->priority;
44a28b1d
DG
347}
348
349/*
350 * Initialise/clear the context descriptor shared with the GuC firmware.
351 *
352 * This descriptor tells the GuC where (in GGTT space) to find the important
353 * data structures relating to this client (doorbell, process descriptor,
354 * write queue, etc).
355 */
356
357static void guc_init_ctx_desc(struct intel_guc *guc,
358 struct i915_guc_client *client)
359{
86e06cc0 360 struct drm_i915_gem_object *client_obj = client->client_obj;
397097b0 361 struct drm_i915_private *dev_priv = guc_to_i915(guc);
e2f80391 362 struct intel_engine_cs *engine;
e2efd130 363 struct i915_gem_context *ctx = client->owner;
44a28b1d
DG
364 struct guc_context_desc desc;
365 struct sg_table *sg;
c3232b18 366 enum intel_engine_id id;
86e06cc0 367 u32 gfx_addr;
44a28b1d
DG
368
369 memset(&desc, 0, sizeof(desc));
370
371 desc.attribute = GUC_CTX_DESC_ATTR_ACTIVE | GUC_CTX_DESC_ATTR_KERNEL;
372 desc.context_id = client->ctx_index;
373 desc.priority = client->priority;
44a28b1d
DG
374 desc.db_id = client->doorbell_id;
375
c3232b18 376 for_each_engine_id(engine, dev_priv, id) {
e2f80391 377 struct guc_execlist_context *lrc = &desc.lrc[engine->guc_id];
d1675198
AD
378 struct drm_i915_gem_object *obj;
379 uint64_t ctx_desc;
380
381 /* TODO: We have a design issue to be solved here. Only when we
382 * receive the first batch, we know which engine is used by the
383 * user. But here GuC expects the lrc and ring to be pinned. It
384 * is not an issue for default context, which is the only one
385 * for now who owns a GuC client. But for future owner of GuC
386 * client, need to make sure lrc is pinned prior to enter here.
387 */
c3232b18 388 obj = ctx->engine[id].state;
d1675198
AD
389 if (!obj)
390 break; /* XXX: continue? */
391
e2f80391 392 ctx_desc = intel_lr_context_descriptor(ctx, engine);
d1675198
AD
393 lrc->context_desc = (u32)ctx_desc;
394
395 /* The state page is after PPHWSP */
86e06cc0
DG
396 gfx_addr = i915_gem_obj_ggtt_offset(obj);
397 lrc->ring_lcra = gfx_addr + LRC_STATE_PN * PAGE_SIZE;
d1675198 398 lrc->context_id = (client->ctx_index << GUC_ELC_CTXID_OFFSET) |
e2f80391 399 (engine->guc_id << GUC_ELC_ENGINE_OFFSET);
d1675198 400
c3232b18 401 obj = ctx->engine[id].ringbuf->obj;
86e06cc0 402 gfx_addr = i915_gem_obj_ggtt_offset(obj);
d1675198 403
86e06cc0
DG
404 lrc->ring_begin = gfx_addr;
405 lrc->ring_end = gfx_addr + obj->base.size - 1;
406 lrc->ring_next_free_location = gfx_addr;
d1675198
AD
407 lrc->ring_current_tail_pointer_value = 0;
408
e2f80391 409 desc.engines_used |= (1 << engine->guc_id);
d1675198
AD
410 }
411
412 WARN_ON(desc.engines_used == 0);
413
44a28b1d 414 /*
86e06cc0
DG
415 * The doorbell, process descriptor, and workqueue are all parts
416 * of the client object, which the GuC will reference via the GGTT
44a28b1d 417 */
86e06cc0
DG
418 gfx_addr = i915_gem_obj_ggtt_offset(client_obj);
419 desc.db_trigger_phy = sg_dma_address(client_obj->pages->sgl) +
420 client->doorbell_offset;
421 desc.db_trigger_cpu = (uintptr_t)client->client_base +
422 client->doorbell_offset;
423 desc.db_trigger_uk = gfx_addr + client->doorbell_offset;
424 desc.process_desc = gfx_addr + client->proc_desc_offset;
425 desc.wq_addr = gfx_addr + client->wq_offset;
44a28b1d
DG
426 desc.wq_size = client->wq_size;
427
428 /*
e2efd130 429 * XXX: Take LRCs from an existing context if this is not an
44a28b1d
DG
430 * IsKMDCreatedContext client
431 */
432 desc.desc_private = (uintptr_t)client;
433
434 /* Pool context is pinned already */
435 sg = guc->ctx_pool_obj->pages;
436 sg_pcopy_from_buffer(sg->sgl, sg->nents, &desc, sizeof(desc),
437 sizeof(desc) * client->ctx_index);
438}
439
440static void guc_fini_ctx_desc(struct intel_guc *guc,
441 struct i915_guc_client *client)
442{
443 struct guc_context_desc desc;
444 struct sg_table *sg;
445
446 memset(&desc, 0, sizeof(desc));
447
448 sg = guc->ctx_pool_obj->pages;
449 sg_pcopy_from_buffer(sg->sgl, sg->nents, &desc, sizeof(desc),
450 sizeof(desc) * client->ctx_index);
451}
452
7c2c270d
DG
453/**
454 * i915_guc_wq_check_space() - check that the GuC can accept a request
455 * @request: request associated with the commands
456 *
457 * Return: 0 if space is available
458 * -EAGAIN if space is not currently available
459 *
460 * This function must be called (and must return 0) before a request
461 * is submitted to the GuC via i915_guc_submit() below. Once a result
462 * of 0 has been returned, it remains valid until (but only until)
463 * the next call to submit().
464 *
465 * This precheck allows the caller to determine in advance that space
466 * will be available for the next submission before committing resources
467 * to it, and helps avoid late failures with complicated recovery paths.
468 */
469int i915_guc_wq_check_space(struct drm_i915_gem_request *request)
44a28b1d 470{
551aaecd 471 const size_t wqi_size = sizeof(struct guc_wq_item);
7c2c270d 472 struct i915_guc_client *gc = request->i915->guc.execbuf_client;
44a28b1d 473 struct guc_process_desc *desc;
551aaecd 474 u32 freespace;
44a28b1d 475
7c2c270d 476 GEM_BUG_ON(gc == NULL);
a7e02199 477
0d92a6a4 478 desc = gc->client_base + gc->proc_desc_offset;
44a28b1d 479
551aaecd
DG
480 freespace = CIRC_SPACE(gc->wq_tail, desc->head, gc->wq_size);
481 if (likely(freespace >= wqi_size))
482 return 0;
5a843307 483
551aaecd 484 gc->no_wq_space += 1;
44a28b1d 485
551aaecd 486 return -EAGAIN;
44a28b1d
DG
487}
488
0a31afbc
DG
489static void guc_add_workqueue_item(struct i915_guc_client *gc,
490 struct drm_i915_gem_request *rq)
44a28b1d 491{
0a31afbc
DG
492 /* wqi_len is in DWords, and does not include the one-word header */
493 const size_t wqi_size = sizeof(struct guc_wq_item);
494 const u32 wqi_len = wqi_size/sizeof(u32) - 1;
a5916e8f 495 struct guc_process_desc *desc;
44a28b1d
DG
496 struct guc_wq_item *wqi;
497 void *base;
0a31afbc 498 u32 freespace, tail, wq_off, wq_page;
a7e02199 499
a5916e8f 500 desc = gc->client_base + gc->proc_desc_offset;
44a28b1d 501
0a31afbc
DG
502 /* Free space is guaranteed, see i915_guc_wq_check_space() above */
503 freespace = CIRC_SPACE(gc->wq_tail, desc->head, gc->wq_size);
504 GEM_BUG_ON(freespace < wqi_size);
505
506 /* The GuC firmware wants the tail index in QWords, not bytes */
507 tail = rq->tail;
508 GEM_BUG_ON(tail & 7);
509 tail >>= 3;
510 GEM_BUG_ON(tail > WQ_RING_TAIL_MAX);
44a28b1d
DG
511
512 /* For now workqueue item is 4 DWs; workqueue buffer is 2 pages. So we
513 * should not have the case where structure wqi is across page, neither
514 * wrapped to the beginning. This simplifies the implementation below.
515 *
516 * XXX: if not the case, we need save data to a temp wqi and copy it to
517 * workqueue buffer dw by dw.
518 */
0a31afbc 519 BUILD_BUG_ON(wqi_size != 16);
44a28b1d 520
0a31afbc
DG
521 /* postincrement WQ tail for next time */
522 wq_off = gc->wq_tail;
523 gc->wq_tail += wqi_size;
524 gc->wq_tail &= gc->wq_size - 1;
525 GEM_BUG_ON(wq_off & (wqi_size - 1));
526
527 /* WQ starts from the page after doorbell / process_desc */
528 wq_page = (wq_off + GUC_DB_SIZE) >> PAGE_SHIFT;
44a28b1d 529 wq_off &= PAGE_SIZE - 1;
0a31afbc 530 base = kmap_atomic(i915_gem_object_get_page(gc->client_obj, wq_page));
44a28b1d
DG
531 wqi = (struct guc_wq_item *)((char *)base + wq_off);
532
0a31afbc 533 /* Now fill in the 4-word work queue item */
44a28b1d 534 wqi->header = WQ_TYPE_INORDER |
0a31afbc 535 (wqi_len << WQ_LEN_SHIFT) |
4a570db5 536 (rq->engine->guc_id << WQ_TARGET_SHIFT) |
44a28b1d
DG
537 WQ_NO_WCFLUSH_WAIT;
538
539 /* The GuC wants only the low-order word of the context descriptor */
4a570db5
TU
540 wqi->context_desc = (u32)intel_lr_context_descriptor(rq->ctx,
541 rq->engine);
44a28b1d 542
44a28b1d 543 wqi->ring_tail = tail << WQ_RING_TAIL_SHIFT;
0a31afbc 544 wqi->fence_id = rq->seqno;
44a28b1d
DG
545
546 kunmap_atomic(base);
44a28b1d
DG
547}
548
549/**
550 * i915_guc_submit() - Submit commands through GuC
feda33ef 551 * @rq: request associated with the commands
44a28b1d 552 *
7c2c270d
DG
553 * Return: 0 on success, otherwise an errno.
554 * (Note: nonzero really shouldn't happen!)
555 *
556 * The caller must have already called i915_guc_wq_check_space() above
557 * with a result of 0 (success) since the last request submission. This
558 * guarantees that there is space in the work queue for the new request,
559 * so enqueuing the item cannot fail.
560 *
561 * Bad Things Will Happen if the caller violates this protocol e.g. calls
562 * submit() when check() says there's no space, or calls submit() multiple
563 * times with no intervening check().
564 *
565 * The only error here arises if the doorbell hardware isn't functioning
566 * as expected, which really shouln't happen.
44a28b1d 567 */
7c2c270d 568int i915_guc_submit(struct drm_i915_gem_request *rq)
44a28b1d 569{
4a570db5 570 unsigned int engine_id = rq->engine->guc_id;
7c2c270d
DG
571 struct intel_guc *guc = &rq->i915->guc;
572 struct i915_guc_client *client = guc->execbuf_client;
0a31afbc 573 int b_ret;
44a28b1d 574
0a31afbc
DG
575 guc_add_workqueue_item(client, rq);
576 b_ret = guc_ring_doorbell(client);
44a28b1d 577
397097b0 578 client->submissions[engine_id] += 1;
0a31afbc
DG
579 client->retcode = b_ret;
580 if (b_ret)
44a28b1d 581 client->b_fail += 1;
0a31afbc 582
397097b0
AD
583 guc->submissions[engine_id] += 1;
584 guc->last_seqno[engine_id] = rq->seqno;
44a28b1d 585
0a31afbc 586 return b_ret;
44a28b1d
DG
587}
588
589/*
590 * Everything below here is concerned with setup & teardown, and is
591 * therefore not part of the somewhat time-critical batch-submission
592 * path of i915_guc_submit() above.
593 */
594
bac427f8
AD
595/**
596 * gem_allocate_guc_obj() - Allocate gem object for GuC usage
597 * @dev: drm device
598 * @size: size of object
599 *
600 * This is a wrapper to create a gem obj. In order to use it inside GuC, the
601 * object needs to be pinned lifetime. Also we must pin it to gtt space other
602 * than [0, GUC_WOPCM_TOP) because this range is reserved inside GuC.
603 *
604 * Return: A drm_i915_gem_object if successful, otherwise NULL.
605 */
606static struct drm_i915_gem_object *gem_allocate_guc_obj(struct drm_device *dev,
607 u32 size)
608{
609 struct drm_i915_private *dev_priv = dev->dev_private;
610 struct drm_i915_gem_object *obj;
611
d37cd8a8 612 obj = i915_gem_object_create(dev, size);
fe3db79b 613 if (IS_ERR(obj))
bac427f8
AD
614 return NULL;
615
616 if (i915_gem_object_get_pages(obj)) {
617 drm_gem_object_unreference(&obj->base);
618 return NULL;
619 }
620
621 if (i915_gem_obj_ggtt_pin(obj, PAGE_SIZE,
622 PIN_OFFSET_BIAS | GUC_WOPCM_TOP)) {
623 drm_gem_object_unreference(&obj->base);
624 return NULL;
625 }
626
627 /* Invalidate GuC TLB to let GuC take the latest updates to GTT. */
628 I915_WRITE(GEN8_GTCR, GEN8_GTCR_INVALIDATE);
629
630 return obj;
631}
632
633/**
634 * gem_release_guc_obj() - Release gem object allocated for GuC usage
635 * @obj: gem obj to be released
81fd874e 636 */
bac427f8
AD
637static void gem_release_guc_obj(struct drm_i915_gem_object *obj)
638{
639 if (!obj)
640 return;
641
642 if (i915_gem_obj_is_pinned(obj))
643 i915_gem_object_ggtt_unpin(obj);
644
645 drm_gem_object_unreference(&obj->base);
646}
647
44a28b1d
DG
648static void guc_client_free(struct drm_device *dev,
649 struct i915_guc_client *client)
650{
651 struct drm_i915_private *dev_priv = dev->dev_private;
652 struct intel_guc *guc = &dev_priv->guc;
653
654 if (!client)
655 return;
656
44a28b1d
DG
657 /*
658 * XXX: wait for any outstanding submissions before freeing memory.
659 * Be sure to drop any locks
660 */
661
0d92a6a4
DG
662 if (client->client_base) {
663 /*
664 * If we got as far as setting up a doorbell, make sure
665 * we shut it down before unmapping & deallocating the
666 * memory. So first disable the doorbell, then tell the
667 * GuC that we've finished with it, finally deallocate
668 * it in our bitmap
669 */
670 if (client->doorbell_id != GUC_INVALID_DOORBELL_ID) {
671 guc_disable_doorbell(guc, client);
672 host2guc_release_doorbell(guc, client);
673 release_doorbell(guc, client->doorbell_id);
674 }
675
676 kunmap(kmap_to_page(client->client_base));
677 }
678
44a28b1d
DG
679 gem_release_guc_obj(client->client_obj);
680
681 if (client->ctx_index != GUC_INVALID_CTX_ID) {
682 guc_fini_ctx_desc(guc, client);
683 ida_simple_remove(&guc->ctx_ids, client->ctx_index);
684 }
685
686 kfree(client);
687}
688
689/**
690 * guc_client_alloc() - Allocate an i915_guc_client
691 * @dev: drm device
692 * @priority: four levels priority _CRITICAL, _HIGH, _NORMAL and _LOW
693 * The kernel client to replace ExecList submission is created with
694 * NORMAL priority. Priority of a client for scheduler can be HIGH,
695 * while a preemption context can use CRITICAL.
feda33ef
AD
696 * @ctx: the context that owns the client (we use the default render
697 * context)
44a28b1d 698 *
0d92a6a4 699 * Return: An i915_guc_client object if success, else NULL.
44a28b1d
DG
700 */
701static struct i915_guc_client *guc_client_alloc(struct drm_device *dev,
d1675198 702 uint32_t priority,
e2efd130 703 struct i915_gem_context *ctx)
44a28b1d
DG
704{
705 struct i915_guc_client *client;
706 struct drm_i915_private *dev_priv = dev->dev_private;
707 struct intel_guc *guc = &dev_priv->guc;
708 struct drm_i915_gem_object *obj;
709
710 client = kzalloc(sizeof(*client), GFP_KERNEL);
711 if (!client)
712 return NULL;
713
714 client->doorbell_id = GUC_INVALID_DOORBELL_ID;
715 client->priority = priority;
d1675198 716 client->owner = ctx;
44a28b1d
DG
717 client->guc = guc;
718
719 client->ctx_index = (uint32_t)ida_simple_get(&guc->ctx_ids, 0,
720 GUC_MAX_GPU_CONTEXTS, GFP_KERNEL);
721 if (client->ctx_index >= GUC_MAX_GPU_CONTEXTS) {
722 client->ctx_index = GUC_INVALID_CTX_ID;
723 goto err;
724 }
725
726 /* The first page is doorbell/proc_desc. Two followed pages are wq. */
727 obj = gem_allocate_guc_obj(dev, GUC_DB_SIZE + GUC_WQ_SIZE);
728 if (!obj)
729 goto err;
730
0d92a6a4 731 /* We'll keep just the first (doorbell/proc) page permanently kmap'd. */
44a28b1d 732 client->client_obj = obj;
0d92a6a4 733 client->client_base = kmap(i915_gem_object_get_page(obj, 0));
44a28b1d
DG
734 client->wq_offset = GUC_DB_SIZE;
735 client->wq_size = GUC_WQ_SIZE;
44a28b1d
DG
736
737 client->doorbell_offset = select_doorbell_cacheline(guc);
738
739 /*
740 * Since the doorbell only requires a single cacheline, we can save
741 * space by putting the application process descriptor in the same
742 * page. Use the half of the page that doesn't include the doorbell.
743 */
744 if (client->doorbell_offset >= (GUC_DB_SIZE / 2))
745 client->proc_desc_offset = 0;
746 else
747 client->proc_desc_offset = (GUC_DB_SIZE / 2);
748
749 client->doorbell_id = assign_doorbell(guc, client->priority);
750 if (client->doorbell_id == GUC_INVALID_DOORBELL_ID)
751 /* XXX: evict a doorbell instead */
752 goto err;
753
754 guc_init_proc_desc(guc, client);
755 guc_init_ctx_desc(guc, client);
756 guc_init_doorbell(guc, client);
757
758 /* XXX: Any cache flushes needed? General domain mgmt calls? */
759
760 if (host2guc_allocate_doorbell(guc, client))
761 goto err;
762
763 DRM_DEBUG_DRIVER("new priority %u client %p: ctx_index %u db_id %u\n",
764 priority, client, client->ctx_index, client->doorbell_id);
765
766 return client;
767
768err:
769 DRM_ERROR("FAILED to create priority %u GuC client!\n", priority);
770
771 guc_client_free(dev, client);
772 return NULL;
773}
774
4c7e77fc
AD
775static void guc_create_log(struct intel_guc *guc)
776{
777 struct drm_i915_private *dev_priv = guc_to_i915(guc);
778 struct drm_i915_gem_object *obj;
779 unsigned long offset;
780 uint32_t size, flags;
781
782 if (i915.guc_log_level < GUC_LOG_VERBOSITY_MIN)
783 return;
784
785 if (i915.guc_log_level > GUC_LOG_VERBOSITY_MAX)
786 i915.guc_log_level = GUC_LOG_VERBOSITY_MAX;
787
788 /* The first page is to save log buffer state. Allocate one
789 * extra page for others in case for overlap */
790 size = (1 + GUC_LOG_DPC_PAGES + 1 +
791 GUC_LOG_ISR_PAGES + 1 +
792 GUC_LOG_CRASH_PAGES + 1) << PAGE_SHIFT;
793
794 obj = guc->log_obj;
795 if (!obj) {
796 obj = gem_allocate_guc_obj(dev_priv->dev, size);
797 if (!obj) {
798 /* logging will be off */
799 i915.guc_log_level = -1;
800 return;
801 }
802
803 guc->log_obj = obj;
804 }
805
806 /* each allocated unit is a page */
807 flags = GUC_LOG_VALID | GUC_LOG_NOTIFY_ON_HALF_FULL |
808 (GUC_LOG_DPC_PAGES << GUC_LOG_DPC_SHIFT) |
809 (GUC_LOG_ISR_PAGES << GUC_LOG_ISR_SHIFT) |
810 (GUC_LOG_CRASH_PAGES << GUC_LOG_CRASH_SHIFT);
811
812 offset = i915_gem_obj_ggtt_offset(obj) >> PAGE_SHIFT; /* in pages */
813 guc->log_flags = (offset << GUC_LOG_BUF_ADDR_SHIFT) | flags;
814}
815
463704d0
AD
816static void init_guc_policies(struct guc_policies *policies)
817{
818 struct guc_policy *policy;
819 u32 p, i;
820
821 policies->dpc_promote_time = 500000;
822 policies->max_num_work_items = POLICY_MAX_NUM_WI;
823
824 for (p = 0; p < GUC_CTX_PRIORITY_NUM; p++) {
397097b0 825 for (i = GUC_RENDER_ENGINE; i < GUC_MAX_ENGINES_NUM; i++) {
463704d0
AD
826 policy = &policies->policy[p][i];
827
828 policy->execution_quantum = 1000000;
829 policy->preemption_time = 500000;
830 policy->fault_time = 250000;
831 policy->policy_flags = 0;
832 }
833 }
834
835 policies->is_valid = 1;
836}
837
68371a95
AD
838static void guc_create_ads(struct intel_guc *guc)
839{
840 struct drm_i915_private *dev_priv = guc_to_i915(guc);
841 struct drm_i915_gem_object *obj;
842 struct guc_ads *ads;
463704d0 843 struct guc_policies *policies;
5c148e04 844 struct guc_mmio_reg_state *reg_state;
e2f80391 845 struct intel_engine_cs *engine;
68371a95 846 struct page *page;
b4ac5afc 847 u32 size;
68371a95
AD
848
849 /* The ads obj includes the struct itself and buffers passed to GuC */
5c148e04
AD
850 size = sizeof(struct guc_ads) + sizeof(struct guc_policies) +
851 sizeof(struct guc_mmio_reg_state) +
852 GUC_S3_SAVE_SPACE_PAGES * PAGE_SIZE;
68371a95
AD
853
854 obj = guc->ads_obj;
855 if (!obj) {
856 obj = gem_allocate_guc_obj(dev_priv->dev, PAGE_ALIGN(size));
857 if (!obj)
858 return;
859
860 guc->ads_obj = obj;
861 }
862
863 page = i915_gem_object_get_page(obj, 0);
864 ads = kmap(page);
865
866 /*
867 * The GuC requires a "Golden Context" when it reinitialises
868 * engines after a reset. Here we use the Render ring default
869 * context, which must already exist and be pinned in the GGTT,
870 * so its address won't change after we've told the GuC where
871 * to find it.
872 */
4a570db5 873 engine = &dev_priv->engine[RCS];
e2f80391 874 ads->golden_context_lrca = engine->status_page.gfx_addr;
68371a95 875
b4ac5afc 876 for_each_engine(engine, dev_priv)
e2f80391 877 ads->eng_state_size[engine->guc_id] = intel_lr_context_size(engine);
68371a95 878
463704d0
AD
879 /* GuC scheduling policies */
880 policies = (void *)ads + sizeof(struct guc_ads);
881 init_guc_policies(policies);
882
883 ads->scheduler_policies = i915_gem_obj_ggtt_offset(obj) +
884 sizeof(struct guc_ads);
885
5c148e04
AD
886 /* MMIO reg state */
887 reg_state = (void *)policies + sizeof(struct guc_policies);
888
b4ac5afc 889 for_each_engine(engine, dev_priv) {
e2f80391
TU
890 reg_state->mmio_white_list[engine->guc_id].mmio_start =
891 engine->mmio_base + GUC_MMIO_WHITE_LIST_START;
5c148e04
AD
892
893 /* Nothing to be saved or restored for now. */
e2f80391 894 reg_state->mmio_white_list[engine->guc_id].count = 0;
5c148e04
AD
895 }
896
897 ads->reg_state_addr = ads->scheduler_policies +
898 sizeof(struct guc_policies);
899
900 ads->reg_state_buffer = ads->reg_state_addr +
901 sizeof(struct guc_mmio_reg_state);
902
68371a95
AD
903 kunmap(page);
904}
905
bac427f8
AD
906/*
907 * Set up the memory resources to be shared with the GuC. At this point,
908 * we require just one object that can be mapped through the GGTT.
909 */
910int i915_guc_submission_init(struct drm_device *dev)
911{
912 struct drm_i915_private *dev_priv = dev->dev_private;
913 const size_t ctxsize = sizeof(struct guc_context_desc);
914 const size_t poolsize = GUC_MAX_GPU_CONTEXTS * ctxsize;
915 const size_t gemsize = round_up(poolsize, PAGE_SIZE);
916 struct intel_guc *guc = &dev_priv->guc;
917
918 if (!i915.enable_guc_submission)
919 return 0; /* not enabled */
920
921 if (guc->ctx_pool_obj)
922 return 0; /* already allocated */
923
924 guc->ctx_pool_obj = gem_allocate_guc_obj(dev_priv->dev, gemsize);
925 if (!guc->ctx_pool_obj)
926 return -ENOMEM;
927
928 ida_init(&guc->ctx_ids);
929
4c7e77fc
AD
930 guc_create_log(guc);
931
68371a95
AD
932 guc_create_ads(guc);
933
bac427f8
AD
934 return 0;
935}
936
44a28b1d
DG
937int i915_guc_submission_enable(struct drm_device *dev)
938{
939 struct drm_i915_private *dev_priv = dev->dev_private;
940 struct intel_guc *guc = &dev_priv->guc;
e2efd130 941 struct i915_gem_context *ctx = dev_priv->kernel_context;
44a28b1d
DG
942 struct i915_guc_client *client;
943
944 /* client for execbuf submission */
d1675198 945 client = guc_client_alloc(dev, GUC_CTX_PRIORITY_KMD_NORMAL, ctx);
44a28b1d
DG
946 if (!client) {
947 DRM_ERROR("Failed to create execbuf guc_client\n");
948 return -ENOMEM;
949 }
950
951 guc->execbuf_client = client;
f5d3c3ea
AD
952
953 host2guc_sample_forcewake(guc, client);
954
44a28b1d
DG
955 return 0;
956}
957
958void i915_guc_submission_disable(struct drm_device *dev)
959{
960 struct drm_i915_private *dev_priv = dev->dev_private;
961 struct intel_guc *guc = &dev_priv->guc;
962
963 guc_client_free(dev, guc->execbuf_client);
964 guc->execbuf_client = NULL;
965}
966
bac427f8
AD
967void i915_guc_submission_fini(struct drm_device *dev)
968{
969 struct drm_i915_private *dev_priv = dev->dev_private;
970 struct intel_guc *guc = &dev_priv->guc;
971
68371a95
AD
972 gem_release_guc_obj(dev_priv->guc.ads_obj);
973 guc->ads_obj = NULL;
974
4c7e77fc
AD
975 gem_release_guc_obj(dev_priv->guc.log_obj);
976 guc->log_obj = NULL;
977
bac427f8
AD
978 if (guc->ctx_pool_obj)
979 ida_destroy(&guc->ctx_ids);
980 gem_release_guc_obj(guc->ctx_pool_obj);
981 guc->ctx_pool_obj = NULL;
982}
a1c41994
AD
983
984/**
985 * intel_guc_suspend() - notify GuC entering suspend state
986 * @dev: drm device
987 */
988int intel_guc_suspend(struct drm_device *dev)
989{
990 struct drm_i915_private *dev_priv = dev->dev_private;
991 struct intel_guc *guc = &dev_priv->guc;
e2efd130 992 struct i915_gem_context *ctx;
a1c41994
AD
993 u32 data[3];
994
fce91f22 995 if (guc->guc_fw.guc_fw_load_status != GUC_FIRMWARE_SUCCESS)
a1c41994
AD
996 return 0;
997
ed54c1a1 998 ctx = dev_priv->kernel_context;
a1c41994
AD
999
1000 data[0] = HOST2GUC_ACTION_ENTER_S_STATE;
1001 /* any value greater than GUC_POWER_D0 */
1002 data[1] = GUC_POWER_D1;
1003 /* first page is shared data with GuC */
1004 data[2] = i915_gem_obj_ggtt_offset(ctx->engine[RCS].state);
1005
1006 return host2guc_action(guc, data, ARRAY_SIZE(data));
1007}
1008
1009
1010/**
1011 * intel_guc_resume() - notify GuC resuming from suspend state
1012 * @dev: drm device
1013 */
1014int intel_guc_resume(struct drm_device *dev)
1015{
1016 struct drm_i915_private *dev_priv = dev->dev_private;
1017 struct intel_guc *guc = &dev_priv->guc;
e2efd130 1018 struct i915_gem_context *ctx;
a1c41994
AD
1019 u32 data[3];
1020
fce91f22 1021 if (guc->guc_fw.guc_fw_load_status != GUC_FIRMWARE_SUCCESS)
a1c41994
AD
1022 return 0;
1023
ed54c1a1 1024 ctx = dev_priv->kernel_context;
a1c41994
AD
1025
1026 data[0] = HOST2GUC_ACTION_EXIT_S_STATE;
1027 data[1] = GUC_POWER_D0;
1028 /* first page is shared data with GuC */
1029 data[2] = i915_gem_obj_ggtt_offset(ctx->engine[RCS].state);
1030
1031 return host2guc_action(guc, data, ARRAY_SIZE(data));
1032}
This page took 0.126616 seconds and 5 git commands to generate.