blob: 864a2bc06e45c5e2037f4b6fda986e49136b0e8e [file] [log] [blame]
Zhi Wange4734052016-05-01 07:42:16 -04001/*
2 * Copyright(c) 2011-2016 Intel Corporation. All rights reserved.
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 FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors:
24 * Zhi Wang <zhi.a.wang@intel.com>
25 *
26 * Contributors:
27 * Ping Gao <ping.a.gao@intel.com>
28 * Tina Zhang <tina.zhang@intel.com>
29 * Chanbin Du <changbin.du@intel.com>
30 * Min He <min.he@intel.com>
31 * Bing Niu <bing.niu@intel.com>
32 * Zhenyu Wang <zhenyuw@linux.intel.com>
33 *
34 */
35
Zhi Wange4734052016-05-01 07:42:16 -040036#include <linux/kthread.h>
37
Zhenyu Wangfeddf6e2016-10-20 17:15:03 +080038#include "i915_drv.h"
39#include "gvt.h"
40
Zhi Wange4734052016-05-01 07:42:16 -040041#define RING_CTX_OFF(x) \
42 offsetof(struct execlist_ring_context, x)
43
Du, Changbin999ccb42016-10-20 14:08:47 +080044static void set_context_pdp_root_pointer(
45 struct execlist_ring_context *ring_context,
Zhi Wange4734052016-05-01 07:42:16 -040046 u32 pdp[8])
47{
48 struct execlist_mmio_pair *pdp_pair = &ring_context->pdp3_UDW;
49 int i;
50
51 for (i = 0; i < 8; i++)
52 pdp_pair[i].val = pdp[7 - i];
53}
54
55static int populate_shadow_context(struct intel_vgpu_workload *workload)
56{
57 struct intel_vgpu *vgpu = workload->vgpu;
58 struct intel_gvt *gvt = vgpu->gvt;
59 int ring_id = workload->ring_id;
Zhi Wang1406a142017-09-10 21:15:18 +080060 struct i915_gem_context *shadow_ctx = vgpu->submission.shadow_ctx;
Zhi Wange4734052016-05-01 07:42:16 -040061 struct drm_i915_gem_object *ctx_obj =
62 shadow_ctx->engine[ring_id].state->obj;
63 struct execlist_ring_context *shadow_ring_context;
64 struct page *page;
65 void *dst;
66 unsigned long context_gpa, context_page_num;
67 int i;
68
69 gvt_dbg_sched("ring id %d workload lrca %x", ring_id,
70 workload->ctx_desc.lrca);
71
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +030072 context_page_num = gvt->dev_priv->engine[ring_id]->context_size;
Zhi Wange4734052016-05-01 07:42:16 -040073
74 context_page_num = context_page_num >> PAGE_SHIFT;
75
76 if (IS_BROADWELL(gvt->dev_priv) && ring_id == RCS)
77 context_page_num = 19;
78
79 i = 2;
80
81 while (i < context_page_num) {
82 context_gpa = intel_vgpu_gma_to_gpa(vgpu->gtt.ggtt_mm,
83 (u32)((workload->ctx_desc.lrca + i) <<
84 GTT_PAGE_SHIFT));
85 if (context_gpa == INTEL_GVT_INVALID_ADDR) {
Tina Zhang695fbc02017-03-10 04:26:53 -050086 gvt_vgpu_err("Invalid guest context descriptor\n");
Zhi Wange4734052016-05-01 07:42:16 -040087 return -EINVAL;
88 }
89
Michel Thierry0b29c752017-09-13 09:56:00 +010090 page = i915_gem_object_get_page(ctx_obj, LRC_HEADER_PAGES + i);
Xiaoguang Chenc7549362016-11-03 18:38:30 +080091 dst = kmap(page);
Zhi Wange4734052016-05-01 07:42:16 -040092 intel_gvt_hypervisor_read_gpa(vgpu, context_gpa, dst,
93 GTT_PAGE_SIZE);
Xiaoguang Chenc7549362016-11-03 18:38:30 +080094 kunmap(page);
Zhi Wange4734052016-05-01 07:42:16 -040095 i++;
96 }
97
98 page = i915_gem_object_get_page(ctx_obj, LRC_STATE_PN);
Xiaoguang Chenc7549362016-11-03 18:38:30 +080099 shadow_ring_context = kmap(page);
Zhi Wange4734052016-05-01 07:42:16 -0400100
101#define COPY_REG(name) \
102 intel_gvt_hypervisor_read_gpa(vgpu, workload->ring_context_gpa \
103 + RING_CTX_OFF(name.val), &shadow_ring_context->name.val, 4)
104
105 COPY_REG(ctx_ctrl);
106 COPY_REG(ctx_timestamp);
107
108 if (ring_id == RCS) {
109 COPY_REG(bb_per_ctx_ptr);
110 COPY_REG(rcs_indirect_ctx);
111 COPY_REG(rcs_indirect_ctx_offset);
112 }
113#undef COPY_REG
114
115 set_context_pdp_root_pointer(shadow_ring_context,
116 workload->shadow_mm->shadow_page_table);
117
118 intel_gvt_hypervisor_read_gpa(vgpu,
119 workload->ring_context_gpa +
120 sizeof(*shadow_ring_context),
121 (void *)shadow_ring_context +
122 sizeof(*shadow_ring_context),
123 GTT_PAGE_SIZE - sizeof(*shadow_ring_context));
124
Xiaoguang Chenc7549362016-11-03 18:38:30 +0800125 kunmap(page);
Zhi Wange4734052016-05-01 07:42:16 -0400126 return 0;
127}
128
Changbin Dubc2d4b62017-03-22 12:35:31 +0800129static inline bool is_gvt_request(struct drm_i915_gem_request *req)
130{
131 return i915_gem_context_force_single_submission(req->ctx);
132}
133
Zhi Wange4734052016-05-01 07:42:16 -0400134static int shadow_context_status_change(struct notifier_block *nb,
135 unsigned long action, void *data)
136{
Changbin Du3fc03062017-03-13 10:47:11 +0800137 struct drm_i915_gem_request *req = (struct drm_i915_gem_request *)data;
138 struct intel_gvt *gvt = container_of(nb, struct intel_gvt,
139 shadow_ctx_notifier_block[req->engine->id]);
140 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
Changbin Du0e86cc92017-05-04 10:52:38 +0800141 enum intel_engine_id ring_id = req->engine->id;
142 struct intel_vgpu_workload *workload;
Zhi Wange4734052016-05-01 07:42:16 -0400143
Changbin Du0e86cc92017-05-04 10:52:38 +0800144 if (!is_gvt_request(req)) {
145 spin_lock_bh(&scheduler->mmio_context_lock);
146 if (action == INTEL_CONTEXT_SCHEDULE_IN &&
147 scheduler->engine_owner[ring_id]) {
148 /* Switch ring from vGPU to host. */
149 intel_gvt_switch_mmio(scheduler->engine_owner[ring_id],
150 NULL, ring_id);
151 scheduler->engine_owner[ring_id] = NULL;
152 }
153 spin_unlock_bh(&scheduler->mmio_context_lock);
154
155 return NOTIFY_OK;
156 }
157
158 workload = scheduler->current_workload[ring_id];
159 if (unlikely(!workload))
Chuanxiao Dong9272f732017-02-17 19:29:52 +0800160 return NOTIFY_OK;
161
Zhi Wange4734052016-05-01 07:42:16 -0400162 switch (action) {
163 case INTEL_CONTEXT_SCHEDULE_IN:
Changbin Du0e86cc92017-05-04 10:52:38 +0800164 spin_lock_bh(&scheduler->mmio_context_lock);
165 if (workload->vgpu != scheduler->engine_owner[ring_id]) {
166 /* Switch ring from host to vGPU or vGPU to vGPU. */
167 intel_gvt_switch_mmio(scheduler->engine_owner[ring_id],
168 workload->vgpu, ring_id);
169 scheduler->engine_owner[ring_id] = workload->vgpu;
170 } else
171 gvt_dbg_sched("skip ring %d mmio switch for vgpu%d\n",
172 ring_id, workload->vgpu->id);
173 spin_unlock_bh(&scheduler->mmio_context_lock);
Zhi Wange4734052016-05-01 07:42:16 -0400174 atomic_set(&workload->shadow_ctx_active, 1);
175 break;
176 case INTEL_CONTEXT_SCHEDULE_OUT:
Chris Wilsond6c05112017-10-03 21:34:47 +0100177 case INTEL_CONTEXT_SCHEDULE_PREEMPTED:
Zhi Wange4734052016-05-01 07:42:16 -0400178 atomic_set(&workload->shadow_ctx_active, 0);
179 break;
180 default:
181 WARN_ON(1);
182 return NOTIFY_OK;
183 }
184 wake_up(&workload->shadow_ctx_status_wq);
185 return NOTIFY_OK;
186}
187
Kechen Lu9dfb8e52017-08-10 07:41:36 +0800188static void shadow_context_descriptor_update(struct i915_gem_context *ctx,
189 struct intel_engine_cs *engine)
190{
191 struct intel_context *ce = &ctx->engine[engine->id];
192 u64 desc = 0;
193
194 desc = ce->lrc_desc;
195
196 /* Update bits 0-11 of the context descriptor which includes flags
197 * like GEN8_CTX_* cached in desc_template
198 */
199 desc &= U64_MAX << 12;
200 desc |= ctx->desc_template & ((1ULL << 12) - 1);
201
202 ce->lrc_desc = desc;
203}
204
fred gao0a53bc02017-08-18 15:41:06 +0800205static int copy_workload_to_ring_buffer(struct intel_vgpu_workload *workload)
206{
207 struct intel_vgpu *vgpu = workload->vgpu;
208 void *shadow_ring_buffer_va;
209 u32 *cs;
210
211 /* allocate shadow ring buffer */
212 cs = intel_ring_begin(workload->req, workload->rb_len / sizeof(u32));
213 if (IS_ERR(cs)) {
214 gvt_vgpu_err("fail to alloc size =%ld shadow ring buffer\n",
215 workload->rb_len);
216 return PTR_ERR(cs);
217 }
218
219 shadow_ring_buffer_va = workload->shadow_ring_buffer_va;
220
221 /* get shadow ring buffer va */
222 workload->shadow_ring_buffer_va = cs;
223
224 memcpy(cs, shadow_ring_buffer_va,
225 workload->rb_len);
226
227 cs += workload->rb_len / sizeof(u32);
228 intel_ring_advance(workload->req, cs);
229
230 return 0;
231}
232
fred gaoa3cfdca2017-08-18 15:41:07 +0800233void release_shadow_wa_ctx(struct intel_shadow_wa_ctx *wa_ctx)
234{
235 if (!wa_ctx->indirect_ctx.obj)
236 return;
237
238 i915_gem_object_unpin_map(wa_ctx->indirect_ctx.obj);
239 i915_gem_object_put(wa_ctx->indirect_ctx.obj);
240}
241
Ping Gao89ea20b2017-06-29 12:22:42 +0800242/**
243 * intel_gvt_scan_and_shadow_workload - audit the workload by scanning and
244 * shadow it as well, include ringbuffer,wa_ctx and ctx.
245 * @workload: an abstract entity for each execlist submission.
246 *
247 * This function is called before the workload submitting to i915, to make
248 * sure the content of the workload is valid.
249 */
250int intel_gvt_scan_and_shadow_workload(struct intel_vgpu_workload *workload)
Zhi Wange4734052016-05-01 07:42:16 -0400251{
Zhi Wang1406a142017-09-10 21:15:18 +0800252 struct intel_vgpu *vgpu = workload->vgpu;
253 struct intel_vgpu_submission *s = &vgpu->submission;
254 struct i915_gem_context *shadow_ctx = s->shadow_ctx;
255 struct drm_i915_private *dev_priv = vgpu->gvt->dev_priv;
Zhi Wange4734052016-05-01 07:42:16 -0400256 int ring_id = workload->ring_id;
fred gao0a53bc02017-08-18 15:41:06 +0800257 struct intel_engine_cs *engine = dev_priv->engine[ring_id];
Chris Wilson0eb742d2016-10-20 17:29:36 +0800258 struct drm_i915_gem_request *rq;
fred gao0a53bc02017-08-18 15:41:06 +0800259 struct intel_ring *ring;
Zhi Wange4734052016-05-01 07:42:16 -0400260 int ret;
261
Ping Gao87e919d2017-07-04 14:53:03 +0800262 lockdep_assert_held(&dev_priv->drm.struct_mutex);
263
Ping Gaod0302e72017-06-29 12:22:43 +0800264 if (workload->shadowed)
265 return 0;
Zhi Wange4734052016-05-01 07:42:16 -0400266
Zhenyu Wang03806ed2017-02-13 17:07:19 +0800267 shadow_ctx->desc_template &= ~(0x3 << GEN8_CTX_ADDRESSING_MODE_SHIFT);
268 shadow_ctx->desc_template |= workload->ctx_desc.addressing_mode <<
Zhi Wange4734052016-05-01 07:42:16 -0400269 GEN8_CTX_ADDRESSING_MODE_SHIFT;
270
Zhi Wang1406a142017-09-10 21:15:18 +0800271 if (!test_and_set_bit(ring_id, s->shadow_ctx_desc_updated))
Kechen Lu9dfb8e52017-08-10 07:41:36 +0800272 shadow_context_descriptor_update(shadow_ctx,
273 dev_priv->engine[ring_id]);
Chuanxiao Dong3cd23b82017-03-16 09:47:58 +0800274
Ping Gao89ea20b2017-06-29 12:22:42 +0800275 ret = intel_gvt_scan_and_shadow_ringbuffer(workload);
Zhi Wangbe1da702016-05-03 18:26:57 -0400276 if (ret)
fred gaoa3cfdca2017-08-18 15:41:07 +0800277 goto err_scan;
Zhi Wangbe1da702016-05-03 18:26:57 -0400278
Tina Zhang17f1b1a2017-03-15 23:16:01 -0400279 if ((workload->ring_id == RCS) &&
280 (workload->wa_ctx.indirect_ctx.size != 0)) {
281 ret = intel_gvt_scan_and_shadow_wa_ctx(&workload->wa_ctx);
282 if (ret)
fred gaoa3cfdca2017-08-18 15:41:07 +0800283 goto err_scan;
Tina Zhang17f1b1a2017-03-15 23:16:01 -0400284 }
Zhi Wangbe1da702016-05-03 18:26:57 -0400285
Ping Gao89ea20b2017-06-29 12:22:42 +0800286 /* pin shadow context by gvt even the shadow context will be pinned
287 * when i915 alloc request. That is because gvt will update the guest
288 * context from shadow context when workload is completed, and at that
289 * moment, i915 may already unpined the shadow context to make the
290 * shadow_ctx pages invalid. So gvt need to pin itself. After update
291 * the guest context, gvt can unpin the shadow_ctx safely.
292 */
293 ring = engine->context_pin(engine, shadow_ctx);
294 if (IS_ERR(ring)) {
295 ret = PTR_ERR(ring);
296 gvt_vgpu_err("fail to pin shadow context\n");
fred gaoa3cfdca2017-08-18 15:41:07 +0800297 goto err_shadow;
Ping Gao89ea20b2017-06-29 12:22:42 +0800298 }
Zhi Wange4734052016-05-01 07:42:16 -0400299
fred gao0a53bc02017-08-18 15:41:06 +0800300 ret = populate_shadow_context(workload);
301 if (ret)
fred gaoa3cfdca2017-08-18 15:41:07 +0800302 goto err_unpin;
fred gao0a53bc02017-08-18 15:41:06 +0800303
304 rq = i915_gem_request_alloc(dev_priv->engine[ring_id], shadow_ctx);
305 if (IS_ERR(rq)) {
306 gvt_vgpu_err("fail to allocate gem request\n");
307 ret = PTR_ERR(rq);
fred gaoa3cfdca2017-08-18 15:41:07 +0800308 goto err_unpin;
fred gao0a53bc02017-08-18 15:41:06 +0800309 }
310
311 gvt_dbg_sched("ring id %d get i915 gem request %p\n", ring_id, rq);
312
313 workload->req = i915_gem_request_get(rq);
314 ret = copy_workload_to_ring_buffer(workload);
315 if (ret)
fred gaoa3cfdca2017-08-18 15:41:07 +0800316 goto err_unpin;
fred gao0a53bc02017-08-18 15:41:06 +0800317 workload->shadowed = true;
fred gaoa3cfdca2017-08-18 15:41:07 +0800318 return 0;
fred gao0a53bc02017-08-18 15:41:06 +0800319
fred gaoa3cfdca2017-08-18 15:41:07 +0800320err_unpin:
321 engine->context_unpin(engine, shadow_ctx);
322err_shadow:
323 release_shadow_wa_ctx(&workload->wa_ctx);
324err_scan:
fred gao0a53bc02017-08-18 15:41:06 +0800325 return ret;
326}
327
328static int dispatch_workload(struct intel_vgpu_workload *workload)
329{
Zhi Wang1406a142017-09-10 21:15:18 +0800330 struct intel_vgpu *vgpu = workload->vgpu;
331 struct intel_vgpu_submission *s = &vgpu->submission;
332 struct i915_gem_context *shadow_ctx = s->shadow_ctx;
333 struct drm_i915_private *dev_priv = vgpu->gvt->dev_priv;
fred gao0a53bc02017-08-18 15:41:06 +0800334 int ring_id = workload->ring_id;
fred gao0a53bc02017-08-18 15:41:06 +0800335 struct intel_engine_cs *engine = dev_priv->engine[ring_id];
336 int ret = 0;
337
338 gvt_dbg_sched("ring id %d prepare to dispatch workload %p\n",
339 ring_id, workload);
340
341 mutex_lock(&dev_priv->drm.struct_mutex);
342
343 ret = intel_gvt_scan_and_shadow_workload(workload);
344 if (ret)
345 goto out;
346
347 if (workload->prepare) {
348 ret = workload->prepare(workload);
fred gao0f437022017-08-18 15:41:10 +0800349 if (ret) {
350 engine->context_unpin(engine, shadow_ctx);
fred gao0a53bc02017-08-18 15:41:06 +0800351 goto out;
fred gao0f437022017-08-18 15:41:10 +0800352 }
fred gao0a53bc02017-08-18 15:41:06 +0800353 }
354
Pei Zhang90d27a12016-11-14 18:02:57 +0800355out:
356 if (ret)
357 workload->status = ret;
Chris Wilson0eb742d2016-10-20 17:29:36 +0800358
Ping Gao89ea20b2017-06-29 12:22:42 +0800359 if (!IS_ERR_OR_NULL(workload->req)) {
360 gvt_dbg_sched("ring id %d submit workload to i915 %p\n",
361 ring_id, workload->req);
362 i915_add_request(workload->req);
363 workload->dispatched = true;
364 }
Chuanxiao Dong3cd23b82017-03-16 09:47:58 +0800365
Pei Zhang90d27a12016-11-14 18:02:57 +0800366 mutex_unlock(&dev_priv->drm.struct_mutex);
Zhi Wange4734052016-05-01 07:42:16 -0400367 return ret;
368}
369
370static struct intel_vgpu_workload *pick_next_workload(
371 struct intel_gvt *gvt, int ring_id)
372{
373 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
374 struct intel_vgpu_workload *workload = NULL;
375
376 mutex_lock(&gvt->lock);
377
378 /*
379 * no current vgpu / will be scheduled out / no workload
380 * bail out
381 */
382 if (!scheduler->current_vgpu) {
383 gvt_dbg_sched("ring id %d stop - no current vgpu\n", ring_id);
384 goto out;
385 }
386
387 if (scheduler->need_reschedule) {
388 gvt_dbg_sched("ring id %d stop - will reschedule\n", ring_id);
389 goto out;
390 }
391
Zhenyu Wang954180a2017-04-12 14:22:50 +0800392 if (list_empty(workload_q_head(scheduler->current_vgpu, ring_id)))
Zhi Wange4734052016-05-01 07:42:16 -0400393 goto out;
Zhi Wange4734052016-05-01 07:42:16 -0400394
395 /*
396 * still have current workload, maybe the workload disptacher
397 * fail to submit it for some reason, resubmit it.
398 */
399 if (scheduler->current_workload[ring_id]) {
400 workload = scheduler->current_workload[ring_id];
401 gvt_dbg_sched("ring id %d still have current workload %p\n",
402 ring_id, workload);
403 goto out;
404 }
405
406 /*
407 * pick a workload as current workload
408 * once current workload is set, schedule policy routines
409 * will wait the current workload is finished when trying to
410 * schedule out a vgpu.
411 */
412 scheduler->current_workload[ring_id] = container_of(
413 workload_q_head(scheduler->current_vgpu, ring_id)->next,
414 struct intel_vgpu_workload, list);
415
416 workload = scheduler->current_workload[ring_id];
417
418 gvt_dbg_sched("ring id %d pick new workload %p\n", ring_id, workload);
419
Zhi Wang1406a142017-09-10 21:15:18 +0800420 atomic_inc(&workload->vgpu->submission.running_workload_num);
Zhi Wange4734052016-05-01 07:42:16 -0400421out:
422 mutex_unlock(&gvt->lock);
423 return workload;
424}
425
426static void update_guest_context(struct intel_vgpu_workload *workload)
427{
428 struct intel_vgpu *vgpu = workload->vgpu;
429 struct intel_gvt *gvt = vgpu->gvt;
Zhi Wang1406a142017-09-10 21:15:18 +0800430 struct intel_vgpu_submission *s = &vgpu->submission;
431 struct i915_gem_context *shadow_ctx = s->shadow_ctx;
Zhi Wange4734052016-05-01 07:42:16 -0400432 int ring_id = workload->ring_id;
Zhi Wange4734052016-05-01 07:42:16 -0400433 struct drm_i915_gem_object *ctx_obj =
434 shadow_ctx->engine[ring_id].state->obj;
435 struct execlist_ring_context *shadow_ring_context;
436 struct page *page;
437 void *src;
438 unsigned long context_gpa, context_page_num;
439 int i;
440
441 gvt_dbg_sched("ring id %d workload lrca %x\n", ring_id,
442 workload->ctx_desc.lrca);
443
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300444 context_page_num = gvt->dev_priv->engine[ring_id]->context_size;
Zhi Wange4734052016-05-01 07:42:16 -0400445
446 context_page_num = context_page_num >> PAGE_SHIFT;
447
448 if (IS_BROADWELL(gvt->dev_priv) && ring_id == RCS)
449 context_page_num = 19;
450
451 i = 2;
452
453 while (i < context_page_num) {
454 context_gpa = intel_vgpu_gma_to_gpa(vgpu->gtt.ggtt_mm,
455 (u32)((workload->ctx_desc.lrca + i) <<
456 GTT_PAGE_SHIFT));
457 if (context_gpa == INTEL_GVT_INVALID_ADDR) {
Tina Zhang695fbc02017-03-10 04:26:53 -0500458 gvt_vgpu_err("invalid guest context descriptor\n");
Zhi Wange4734052016-05-01 07:42:16 -0400459 return;
460 }
461
Michel Thierry0b29c752017-09-13 09:56:00 +0100462 page = i915_gem_object_get_page(ctx_obj, LRC_HEADER_PAGES + i);
Xiaoguang Chenc7549362016-11-03 18:38:30 +0800463 src = kmap(page);
Zhi Wange4734052016-05-01 07:42:16 -0400464 intel_gvt_hypervisor_write_gpa(vgpu, context_gpa, src,
465 GTT_PAGE_SIZE);
Xiaoguang Chenc7549362016-11-03 18:38:30 +0800466 kunmap(page);
Zhi Wange4734052016-05-01 07:42:16 -0400467 i++;
468 }
469
470 intel_gvt_hypervisor_write_gpa(vgpu, workload->ring_context_gpa +
471 RING_CTX_OFF(ring_header.val), &workload->rb_tail, 4);
472
473 page = i915_gem_object_get_page(ctx_obj, LRC_STATE_PN);
Xiaoguang Chenc7549362016-11-03 18:38:30 +0800474 shadow_ring_context = kmap(page);
Zhi Wange4734052016-05-01 07:42:16 -0400475
476#define COPY_REG(name) \
477 intel_gvt_hypervisor_write_gpa(vgpu, workload->ring_context_gpa + \
478 RING_CTX_OFF(name.val), &shadow_ring_context->name.val, 4)
479
480 COPY_REG(ctx_ctrl);
481 COPY_REG(ctx_timestamp);
482
483#undef COPY_REG
484
485 intel_gvt_hypervisor_write_gpa(vgpu,
486 workload->ring_context_gpa +
487 sizeof(*shadow_ring_context),
488 (void *)shadow_ring_context +
489 sizeof(*shadow_ring_context),
490 GTT_PAGE_SIZE - sizeof(*shadow_ring_context));
491
Xiaoguang Chenc7549362016-11-03 18:38:30 +0800492 kunmap(page);
Zhi Wange4734052016-05-01 07:42:16 -0400493}
494
495static void complete_current_workload(struct intel_gvt *gvt, int ring_id)
496{
497 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
Zhi Wang1406a142017-09-10 21:15:18 +0800498 struct intel_vgpu_workload *workload =
499 scheduler->current_workload[ring_id];
500 struct intel_vgpu *vgpu = workload->vgpu;
501 struct intel_vgpu_submission *s = &vgpu->submission;
Zhi Wangbe1da702016-05-03 18:26:57 -0400502 int event;
Zhi Wange4734052016-05-01 07:42:16 -0400503
504 mutex_lock(&gvt->lock);
505
Chuanxiao Dong8f1117a2017-03-06 13:05:24 +0800506 /* For the workload w/ request, needs to wait for the context
507 * switch to make sure request is completed.
508 * For the workload w/o request, directly complete the workload.
509 */
510 if (workload->req) {
Chuanxiao Dong3cd23b82017-03-16 09:47:58 +0800511 struct drm_i915_private *dev_priv =
512 workload->vgpu->gvt->dev_priv;
513 struct intel_engine_cs *engine =
514 dev_priv->engine[workload->ring_id];
Zhi Wange4734052016-05-01 07:42:16 -0400515 wait_event(workload->shadow_ctx_status_wq,
516 !atomic_read(&workload->shadow_ctx_active));
517
Chuanxiao Dong0cf5ec42017-06-23 13:01:11 +0800518 /* If this request caused GPU hang, req->fence.error will
519 * be set to -EIO. Use -EIO to set workload status so
520 * that when this request caused GPU hang, didn't trigger
521 * context switch interrupt to guest.
522 */
523 if (likely(workload->status == -EINPROGRESS)) {
524 if (workload->req->fence.error == -EIO)
525 workload->status = -EIO;
526 else
527 workload->status = 0;
528 }
529
Chuanxiao Dong8f1117a2017-03-06 13:05:24 +0800530 i915_gem_request_put(fetch_and_zero(&workload->req));
Zhi Wangbe1da702016-05-03 18:26:57 -0400531
Chuanxiao Dong6184cc82017-08-01 17:47:25 +0800532 if (!workload->status && !(vgpu->resetting_eng &
533 ENGINE_MASK(ring_id))) {
Chuanxiao Dong8f1117a2017-03-06 13:05:24 +0800534 update_guest_context(workload);
535
536 for_each_set_bit(event, workload->pending_events,
537 INTEL_GVT_EVENT_MAX)
538 intel_vgpu_trigger_virtual_event(vgpu, event);
539 }
Chuanxiao Dong3cd23b82017-03-16 09:47:58 +0800540 mutex_lock(&dev_priv->drm.struct_mutex);
541 /* unpin shadow ctx as the shadow_ctx update is done */
Zhi Wang1406a142017-09-10 21:15:18 +0800542 engine->context_unpin(engine, s->shadow_ctx);
Chuanxiao Dong3cd23b82017-03-16 09:47:58 +0800543 mutex_unlock(&dev_priv->drm.struct_mutex);
Zhi Wange4734052016-05-01 07:42:16 -0400544 }
545
546 gvt_dbg_sched("ring id %d complete workload %p status %d\n",
547 ring_id, workload, workload->status);
548
549 scheduler->current_workload[ring_id] = NULL;
550
Zhi Wange4734052016-05-01 07:42:16 -0400551 list_del_init(&workload->list);
552 workload->complete(workload);
553
Zhi Wang1406a142017-09-10 21:15:18 +0800554 atomic_dec(&s->running_workload_num);
Zhi Wange4734052016-05-01 07:42:16 -0400555 wake_up(&scheduler->workload_complete_wq);
Ping Gaof100dae2017-05-24 09:14:11 +0800556
557 if (gvt->scheduler.need_reschedule)
558 intel_gvt_request_service(gvt, INTEL_GVT_REQUEST_EVENT_SCHED);
559
Zhi Wange4734052016-05-01 07:42:16 -0400560 mutex_unlock(&gvt->lock);
561}
562
563struct workload_thread_param {
564 struct intel_gvt *gvt;
565 int ring_id;
566};
567
568static int workload_thread(void *priv)
569{
570 struct workload_thread_param *p = (struct workload_thread_param *)priv;
571 struct intel_gvt *gvt = p->gvt;
572 int ring_id = p->ring_id;
573 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
574 struct intel_vgpu_workload *workload = NULL;
Tina Zhang695fbc02017-03-10 04:26:53 -0500575 struct intel_vgpu *vgpu = NULL;
Zhi Wange4734052016-05-01 07:42:16 -0400576 int ret;
Xu Hane3476c02017-03-29 10:13:59 +0800577 bool need_force_wake = IS_SKYLAKE(gvt->dev_priv)
578 || IS_KABYLAKE(gvt->dev_priv);
Du, Changbine45d7b72016-10-27 11:10:31 +0800579 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Zhi Wange4734052016-05-01 07:42:16 -0400580
581 kfree(p);
582
583 gvt_dbg_core("workload thread for ring %d started\n", ring_id);
584
585 while (!kthread_should_stop()) {
Du, Changbine45d7b72016-10-27 11:10:31 +0800586 add_wait_queue(&scheduler->waitq[ring_id], &wait);
587 do {
588 workload = pick_next_workload(gvt, ring_id);
589 if (workload)
590 break;
591 wait_woken(&wait, TASK_INTERRUPTIBLE,
592 MAX_SCHEDULE_TIMEOUT);
593 } while (!kthread_should_stop());
594 remove_wait_queue(&scheduler->waitq[ring_id], &wait);
Zhi Wange4734052016-05-01 07:42:16 -0400595
Du, Changbine45d7b72016-10-27 11:10:31 +0800596 if (!workload)
Zhi Wange4734052016-05-01 07:42:16 -0400597 break;
598
599 gvt_dbg_sched("ring id %d next workload %p vgpu %d\n",
600 workload->ring_id, workload,
601 workload->vgpu->id);
602
603 intel_runtime_pm_get(gvt->dev_priv);
604
Zhi Wange4734052016-05-01 07:42:16 -0400605 gvt_dbg_sched("ring id %d will dispatch workload %p\n",
606 workload->ring_id, workload);
607
608 if (need_force_wake)
609 intel_uncore_forcewake_get(gvt->dev_priv,
610 FORCEWAKE_ALL);
611
Pei Zhang90d27a12016-11-14 18:02:57 +0800612 mutex_lock(&gvt->lock);
Zhi Wange4734052016-05-01 07:42:16 -0400613 ret = dispatch_workload(workload);
Pei Zhang90d27a12016-11-14 18:02:57 +0800614 mutex_unlock(&gvt->lock);
Chris Wilson66bbc3b2016-10-19 11:11:44 +0100615
Zhi Wange4734052016-05-01 07:42:16 -0400616 if (ret) {
Tina Zhang695fbc02017-03-10 04:26:53 -0500617 vgpu = workload->vgpu;
618 gvt_vgpu_err("fail to dispatch workload, skip\n");
Zhi Wange4734052016-05-01 07:42:16 -0400619 goto complete;
620 }
621
622 gvt_dbg_sched("ring id %d wait workload %p\n",
623 workload->ring_id, workload);
Chris Wilson3dce2ac2017-03-08 22:08:08 +0000624 i915_wait_request(workload->req, 0, MAX_SCHEDULE_TIMEOUT);
Zhi Wange4734052016-05-01 07:42:16 -0400625
626complete:
Changbin Du3ce32742017-02-09 10:13:16 +0800627 gvt_dbg_sched("will complete workload %p, status: %d\n",
Zhi Wange4734052016-05-01 07:42:16 -0400628 workload, workload->status);
629
Changbin Du2e51ef32017-01-05 13:28:05 +0800630 complete_current_workload(gvt, ring_id);
631
Zhi Wange4734052016-05-01 07:42:16 -0400632 if (need_force_wake)
633 intel_uncore_forcewake_put(gvt->dev_priv,
634 FORCEWAKE_ALL);
635
Zhi Wange4734052016-05-01 07:42:16 -0400636 intel_runtime_pm_put(gvt->dev_priv);
Zhi Wange4734052016-05-01 07:42:16 -0400637 }
638 return 0;
639}
640
641void intel_gvt_wait_vgpu_idle(struct intel_vgpu *vgpu)
642{
Zhi Wang1406a142017-09-10 21:15:18 +0800643 struct intel_vgpu_submission *s = &vgpu->submission;
Zhi Wange4734052016-05-01 07:42:16 -0400644 struct intel_gvt *gvt = vgpu->gvt;
645 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
646
Zhi Wang1406a142017-09-10 21:15:18 +0800647 if (atomic_read(&s->running_workload_num)) {
Zhi Wange4734052016-05-01 07:42:16 -0400648 gvt_dbg_sched("wait vgpu idle\n");
649
650 wait_event(scheduler->workload_complete_wq,
Zhi Wang1406a142017-09-10 21:15:18 +0800651 !atomic_read(&s->running_workload_num));
Zhi Wange4734052016-05-01 07:42:16 -0400652 }
653}
654
655void intel_gvt_clean_workload_scheduler(struct intel_gvt *gvt)
656{
657 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
Changbin Du3fc03062017-03-13 10:47:11 +0800658 struct intel_engine_cs *engine;
659 enum intel_engine_id i;
Zhi Wange4734052016-05-01 07:42:16 -0400660
661 gvt_dbg_core("clean workload scheduler\n");
662
Changbin Du3fc03062017-03-13 10:47:11 +0800663 for_each_engine(engine, gvt->dev_priv, i) {
664 atomic_notifier_chain_unregister(
665 &engine->context_status_notifier,
666 &gvt->shadow_ctx_notifier_block[i]);
667 kthread_stop(scheduler->thread[i]);
Zhi Wange4734052016-05-01 07:42:16 -0400668 }
669}
670
671int intel_gvt_init_workload_scheduler(struct intel_gvt *gvt)
672{
673 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
674 struct workload_thread_param *param = NULL;
Changbin Du3fc03062017-03-13 10:47:11 +0800675 struct intel_engine_cs *engine;
676 enum intel_engine_id i;
Zhi Wange4734052016-05-01 07:42:16 -0400677 int ret;
Zhi Wange4734052016-05-01 07:42:16 -0400678
679 gvt_dbg_core("init workload scheduler\n");
680
681 init_waitqueue_head(&scheduler->workload_complete_wq);
682
Changbin Du3fc03062017-03-13 10:47:11 +0800683 for_each_engine(engine, gvt->dev_priv, i) {
Zhi Wange4734052016-05-01 07:42:16 -0400684 init_waitqueue_head(&scheduler->waitq[i]);
685
686 param = kzalloc(sizeof(*param), GFP_KERNEL);
687 if (!param) {
688 ret = -ENOMEM;
689 goto err;
690 }
691
692 param->gvt = gvt;
693 param->ring_id = i;
694
695 scheduler->thread[i] = kthread_run(workload_thread, param,
696 "gvt workload %d", i);
697 if (IS_ERR(scheduler->thread[i])) {
698 gvt_err("fail to create workload thread\n");
699 ret = PTR_ERR(scheduler->thread[i]);
700 goto err;
701 }
Changbin Du3fc03062017-03-13 10:47:11 +0800702
703 gvt->shadow_ctx_notifier_block[i].notifier_call =
704 shadow_context_status_change;
705 atomic_notifier_chain_register(&engine->context_status_notifier,
706 &gvt->shadow_ctx_notifier_block[i]);
Zhi Wange4734052016-05-01 07:42:16 -0400707 }
708 return 0;
709err:
710 intel_gvt_clean_workload_scheduler(gvt);
711 kfree(param);
712 param = NULL;
713 return ret;
714}
715
Zhi Wang874b6a92017-09-10 20:08:18 +0800716/**
717 * intel_vgpu_clean_submission - free submission-related resource for vGPU
718 * @vgpu: a vGPU
719 *
720 * This function is called when a vGPU is being destroyed.
721 *
722 */
723void intel_vgpu_clean_submission(struct intel_vgpu *vgpu)
Zhi Wange4734052016-05-01 07:42:16 -0400724{
Zhi Wang1406a142017-09-10 21:15:18 +0800725 struct intel_vgpu_submission *s = &vgpu->submission;
726
727 i915_gem_context_put(s->shadow_ctx);
728 kmem_cache_destroy(s->workloads);
Zhi Wange4734052016-05-01 07:42:16 -0400729}
730
Zhi Wang874b6a92017-09-10 20:08:18 +0800731/**
732 * intel_vgpu_setup_submission - setup submission-related resource for vGPU
733 * @vgpu: a vGPU
734 *
735 * This function is called when a vGPU is being created.
736 *
737 * Returns:
738 * Zero on success, negative error code if failed.
739 *
740 */
741int intel_vgpu_setup_submission(struct intel_vgpu *vgpu)
Zhi Wange4734052016-05-01 07:42:16 -0400742{
Zhi Wang1406a142017-09-10 21:15:18 +0800743 struct intel_vgpu_submission *s = &vgpu->submission;
Zhi Wang9a9829e2017-09-10 20:28:09 +0800744 enum intel_engine_id i;
745 struct intel_engine_cs *engine;
746 int ret;
Zhi Wange4734052016-05-01 07:42:16 -0400747
Zhi Wang1406a142017-09-10 21:15:18 +0800748 s->shadow_ctx = i915_gem_context_create_gvt(
Zhi Wange4734052016-05-01 07:42:16 -0400749 &vgpu->gvt->dev_priv->drm);
Zhi Wang1406a142017-09-10 21:15:18 +0800750 if (IS_ERR(s->shadow_ctx))
751 return PTR_ERR(s->shadow_ctx);
Zhi Wange4734052016-05-01 07:42:16 -0400752
Zhi Wang1406a142017-09-10 21:15:18 +0800753 bitmap_zero(s->shadow_ctx_desc_updated, I915_NUM_ENGINES);
Kechen Lu9dfb8e52017-08-10 07:41:36 +0800754
Zhi Wang1406a142017-09-10 21:15:18 +0800755 s->workloads = kmem_cache_create("gvt-g_vgpu_workload",
Zhi Wang9a9829e2017-09-10 20:28:09 +0800756 sizeof(struct intel_vgpu_workload), 0,
757 SLAB_HWCACHE_ALIGN,
758 NULL);
759
Zhi Wang1406a142017-09-10 21:15:18 +0800760 if (!s->workloads) {
Zhi Wang9a9829e2017-09-10 20:28:09 +0800761 ret = -ENOMEM;
762 goto out_shadow_ctx;
763 }
764
765 for_each_engine(engine, vgpu->gvt->dev_priv, i)
Zhi Wang1406a142017-09-10 21:15:18 +0800766 INIT_LIST_HEAD(&s->workload_q_head[i]);
Zhi Wang9a9829e2017-09-10 20:28:09 +0800767
Zhi Wang1406a142017-09-10 21:15:18 +0800768 atomic_set(&s->running_workload_num, 0);
Zhi Wang9a9829e2017-09-10 20:28:09 +0800769
Zhi Wange4734052016-05-01 07:42:16 -0400770 return 0;
Zhi Wang9a9829e2017-09-10 20:28:09 +0800771
772out_shadow_ctx:
Zhi Wang1406a142017-09-10 21:15:18 +0800773 i915_gem_context_put(s->shadow_ctx);
Zhi Wang9a9829e2017-09-10 20:28:09 +0800774 return ret;
Zhi Wange4734052016-05-01 07:42:16 -0400775}