blob: 29171961af5e8c2627ee30ec52f2c572dc0824f9 [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;
60 struct i915_gem_context *shadow_ctx = workload->vgpu->shadow_ctx;
61 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
90 page = i915_gem_object_get_page(ctx_obj, LRC_PPHWSP_PN + 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:
Zhi Wange4734052016-05-01 07:42:16 -0400177 atomic_set(&workload->shadow_ctx_active, 0);
178 break;
179 default:
180 WARN_ON(1);
181 return NOTIFY_OK;
182 }
183 wake_up(&workload->shadow_ctx_status_wq);
184 return NOTIFY_OK;
185}
186
Kechen Lu9dfb8e52017-08-10 07:41:36 +0800187static void shadow_context_descriptor_update(struct i915_gem_context *ctx,
188 struct intel_engine_cs *engine)
189{
190 struct intel_context *ce = &ctx->engine[engine->id];
191 u64 desc = 0;
192
193 desc = ce->lrc_desc;
194
195 /* Update bits 0-11 of the context descriptor which includes flags
196 * like GEN8_CTX_* cached in desc_template
197 */
198 desc &= U64_MAX << 12;
199 desc |= ctx->desc_template & ((1ULL << 12) - 1);
200
201 ce->lrc_desc = desc;
202}
203
fred gao0a53bc02017-08-18 15:41:06 +0800204static int copy_workload_to_ring_buffer(struct intel_vgpu_workload *workload)
205{
206 struct intel_vgpu *vgpu = workload->vgpu;
207 void *shadow_ring_buffer_va;
208 u32 *cs;
209
210 /* allocate shadow ring buffer */
211 cs = intel_ring_begin(workload->req, workload->rb_len / sizeof(u32));
212 if (IS_ERR(cs)) {
213 gvt_vgpu_err("fail to alloc size =%ld shadow ring buffer\n",
214 workload->rb_len);
215 return PTR_ERR(cs);
216 }
217
218 shadow_ring_buffer_va = workload->shadow_ring_buffer_va;
219
220 /* get shadow ring buffer va */
221 workload->shadow_ring_buffer_va = cs;
222
223 memcpy(cs, shadow_ring_buffer_va,
224 workload->rb_len);
225
226 cs += workload->rb_len / sizeof(u32);
227 intel_ring_advance(workload->req, cs);
228
229 return 0;
230}
231
fred gaoa3cfdca2017-08-18 15:41:07 +0800232void release_shadow_wa_ctx(struct intel_shadow_wa_ctx *wa_ctx)
233{
234 if (!wa_ctx->indirect_ctx.obj)
235 return;
236
237 i915_gem_object_unpin_map(wa_ctx->indirect_ctx.obj);
238 i915_gem_object_put(wa_ctx->indirect_ctx.obj);
239}
240
Ping Gao89ea20b2017-06-29 12:22:42 +0800241/**
242 * intel_gvt_scan_and_shadow_workload - audit the workload by scanning and
243 * shadow it as well, include ringbuffer,wa_ctx and ctx.
244 * @workload: an abstract entity for each execlist submission.
245 *
246 * This function is called before the workload submitting to i915, to make
247 * sure the content of the workload is valid.
248 */
249int intel_gvt_scan_and_shadow_workload(struct intel_vgpu_workload *workload)
Zhi Wange4734052016-05-01 07:42:16 -0400250{
Zhi Wange4734052016-05-01 07:42:16 -0400251 int ring_id = workload->ring_id;
252 struct i915_gem_context *shadow_ctx = workload->vgpu->shadow_ctx;
253 struct drm_i915_private *dev_priv = workload->vgpu->gvt->dev_priv;
fred gao0a53bc02017-08-18 15:41:06 +0800254 struct intel_engine_cs *engine = dev_priv->engine[ring_id];
Chris Wilson0eb742d2016-10-20 17:29:36 +0800255 struct drm_i915_gem_request *rq;
Tina Zhang695fbc02017-03-10 04:26:53 -0500256 struct intel_vgpu *vgpu = workload->vgpu;
fred gao0a53bc02017-08-18 15:41:06 +0800257 struct intel_ring *ring;
Zhi Wange4734052016-05-01 07:42:16 -0400258 int ret;
259
Ping Gao87e919d2017-07-04 14:53:03 +0800260 lockdep_assert_held(&dev_priv->drm.struct_mutex);
261
Ping Gaod0302e72017-06-29 12:22:43 +0800262 if (workload->shadowed)
263 return 0;
Zhi Wange4734052016-05-01 07:42:16 -0400264
Zhenyu Wang03806ed2017-02-13 17:07:19 +0800265 shadow_ctx->desc_template &= ~(0x3 << GEN8_CTX_ADDRESSING_MODE_SHIFT);
266 shadow_ctx->desc_template |= workload->ctx_desc.addressing_mode <<
Zhi Wange4734052016-05-01 07:42:16 -0400267 GEN8_CTX_ADDRESSING_MODE_SHIFT;
268
Kechen Lu9dfb8e52017-08-10 07:41:36 +0800269 if (!test_and_set_bit(ring_id, vgpu->shadow_ctx_desc_updated))
270 shadow_context_descriptor_update(shadow_ctx,
271 dev_priv->engine[ring_id]);
Chuanxiao Dong3cd23b82017-03-16 09:47:58 +0800272
Ping Gao89ea20b2017-06-29 12:22:42 +0800273 ret = intel_gvt_scan_and_shadow_ringbuffer(workload);
Zhi Wangbe1da702016-05-03 18:26:57 -0400274 if (ret)
fred gaoa3cfdca2017-08-18 15:41:07 +0800275 goto err_scan;
Zhi Wangbe1da702016-05-03 18:26:57 -0400276
Tina Zhang17f1b1a2017-03-15 23:16:01 -0400277 if ((workload->ring_id == RCS) &&
278 (workload->wa_ctx.indirect_ctx.size != 0)) {
279 ret = intel_gvt_scan_and_shadow_wa_ctx(&workload->wa_ctx);
280 if (ret)
fred gaoa3cfdca2017-08-18 15:41:07 +0800281 goto err_scan;
Tina Zhang17f1b1a2017-03-15 23:16:01 -0400282 }
Zhi Wangbe1da702016-05-03 18:26:57 -0400283
Ping Gao89ea20b2017-06-29 12:22:42 +0800284 /* pin shadow context by gvt even the shadow context will be pinned
285 * when i915 alloc request. That is because gvt will update the guest
286 * context from shadow context when workload is completed, and at that
287 * moment, i915 may already unpined the shadow context to make the
288 * shadow_ctx pages invalid. So gvt need to pin itself. After update
289 * the guest context, gvt can unpin the shadow_ctx safely.
290 */
291 ring = engine->context_pin(engine, shadow_ctx);
292 if (IS_ERR(ring)) {
293 ret = PTR_ERR(ring);
294 gvt_vgpu_err("fail to pin shadow context\n");
fred gaoa3cfdca2017-08-18 15:41:07 +0800295 goto err_shadow;
Ping Gao89ea20b2017-06-29 12:22:42 +0800296 }
Zhi Wange4734052016-05-01 07:42:16 -0400297
fred gao0a53bc02017-08-18 15:41:06 +0800298 ret = populate_shadow_context(workload);
299 if (ret)
fred gaoa3cfdca2017-08-18 15:41:07 +0800300 goto err_unpin;
fred gao0a53bc02017-08-18 15:41:06 +0800301
302 rq = i915_gem_request_alloc(dev_priv->engine[ring_id], shadow_ctx);
303 if (IS_ERR(rq)) {
304 gvt_vgpu_err("fail to allocate gem request\n");
305 ret = PTR_ERR(rq);
fred gaoa3cfdca2017-08-18 15:41:07 +0800306 goto err_unpin;
fred gao0a53bc02017-08-18 15:41:06 +0800307 }
308
309 gvt_dbg_sched("ring id %d get i915 gem request %p\n", ring_id, rq);
310
311 workload->req = i915_gem_request_get(rq);
312 ret = copy_workload_to_ring_buffer(workload);
313 if (ret)
fred gaoa3cfdca2017-08-18 15:41:07 +0800314 goto err_unpin;
fred gao0a53bc02017-08-18 15:41:06 +0800315 workload->shadowed = true;
fred gaoa3cfdca2017-08-18 15:41:07 +0800316 return 0;
fred gao0a53bc02017-08-18 15:41:06 +0800317
fred gaoa3cfdca2017-08-18 15:41:07 +0800318err_unpin:
319 engine->context_unpin(engine, shadow_ctx);
320err_shadow:
321 release_shadow_wa_ctx(&workload->wa_ctx);
322err_scan:
fred gao0a53bc02017-08-18 15:41:06 +0800323 return ret;
324}
325
326static int dispatch_workload(struct intel_vgpu_workload *workload)
327{
328 int ring_id = workload->ring_id;
329 struct i915_gem_context *shadow_ctx = workload->vgpu->shadow_ctx;
330 struct drm_i915_private *dev_priv = workload->vgpu->gvt->dev_priv;
331 struct intel_engine_cs *engine = dev_priv->engine[ring_id];
332 int ret = 0;
333
334 gvt_dbg_sched("ring id %d prepare to dispatch workload %p\n",
335 ring_id, workload);
336
337 mutex_lock(&dev_priv->drm.struct_mutex);
338
339 ret = intel_gvt_scan_and_shadow_workload(workload);
340 if (ret)
341 goto out;
342
343 if (workload->prepare) {
344 ret = workload->prepare(workload);
345 if (ret)
346 goto out;
347 }
348
Pei Zhang90d27a12016-11-14 18:02:57 +0800349out:
350 if (ret)
351 workload->status = ret;
Chris Wilson0eb742d2016-10-20 17:29:36 +0800352
Ping Gao89ea20b2017-06-29 12:22:42 +0800353 if (!IS_ERR_OR_NULL(workload->req)) {
354 gvt_dbg_sched("ring id %d submit workload to i915 %p\n",
355 ring_id, workload->req);
356 i915_add_request(workload->req);
357 workload->dispatched = true;
358 }
Chuanxiao Dong3cd23b82017-03-16 09:47:58 +0800359
Pei Zhang90d27a12016-11-14 18:02:57 +0800360 mutex_unlock(&dev_priv->drm.struct_mutex);
Zhi Wange4734052016-05-01 07:42:16 -0400361 return ret;
362}
363
364static struct intel_vgpu_workload *pick_next_workload(
365 struct intel_gvt *gvt, int ring_id)
366{
367 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
368 struct intel_vgpu_workload *workload = NULL;
369
370 mutex_lock(&gvt->lock);
371
372 /*
373 * no current vgpu / will be scheduled out / no workload
374 * bail out
375 */
376 if (!scheduler->current_vgpu) {
377 gvt_dbg_sched("ring id %d stop - no current vgpu\n", ring_id);
378 goto out;
379 }
380
381 if (scheduler->need_reschedule) {
382 gvt_dbg_sched("ring id %d stop - will reschedule\n", ring_id);
383 goto out;
384 }
385
Zhenyu Wang954180a2017-04-12 14:22:50 +0800386 if (list_empty(workload_q_head(scheduler->current_vgpu, ring_id)))
Zhi Wange4734052016-05-01 07:42:16 -0400387 goto out;
Zhi Wange4734052016-05-01 07:42:16 -0400388
389 /*
390 * still have current workload, maybe the workload disptacher
391 * fail to submit it for some reason, resubmit it.
392 */
393 if (scheduler->current_workload[ring_id]) {
394 workload = scheduler->current_workload[ring_id];
395 gvt_dbg_sched("ring id %d still have current workload %p\n",
396 ring_id, workload);
397 goto out;
398 }
399
400 /*
401 * pick a workload as current workload
402 * once current workload is set, schedule policy routines
403 * will wait the current workload is finished when trying to
404 * schedule out a vgpu.
405 */
406 scheduler->current_workload[ring_id] = container_of(
407 workload_q_head(scheduler->current_vgpu, ring_id)->next,
408 struct intel_vgpu_workload, list);
409
410 workload = scheduler->current_workload[ring_id];
411
412 gvt_dbg_sched("ring id %d pick new workload %p\n", ring_id, workload);
413
414 atomic_inc(&workload->vgpu->running_workload_num);
415out:
416 mutex_unlock(&gvt->lock);
417 return workload;
418}
419
420static void update_guest_context(struct intel_vgpu_workload *workload)
421{
422 struct intel_vgpu *vgpu = workload->vgpu;
423 struct intel_gvt *gvt = vgpu->gvt;
424 int ring_id = workload->ring_id;
425 struct i915_gem_context *shadow_ctx = workload->vgpu->shadow_ctx;
426 struct drm_i915_gem_object *ctx_obj =
427 shadow_ctx->engine[ring_id].state->obj;
428 struct execlist_ring_context *shadow_ring_context;
429 struct page *page;
430 void *src;
431 unsigned long context_gpa, context_page_num;
432 int i;
433
434 gvt_dbg_sched("ring id %d workload lrca %x\n", ring_id,
435 workload->ctx_desc.lrca);
436
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300437 context_page_num = gvt->dev_priv->engine[ring_id]->context_size;
Zhi Wange4734052016-05-01 07:42:16 -0400438
439 context_page_num = context_page_num >> PAGE_SHIFT;
440
441 if (IS_BROADWELL(gvt->dev_priv) && ring_id == RCS)
442 context_page_num = 19;
443
444 i = 2;
445
446 while (i < context_page_num) {
447 context_gpa = intel_vgpu_gma_to_gpa(vgpu->gtt.ggtt_mm,
448 (u32)((workload->ctx_desc.lrca + i) <<
449 GTT_PAGE_SHIFT));
450 if (context_gpa == INTEL_GVT_INVALID_ADDR) {
Tina Zhang695fbc02017-03-10 04:26:53 -0500451 gvt_vgpu_err("invalid guest context descriptor\n");
Zhi Wange4734052016-05-01 07:42:16 -0400452 return;
453 }
454
455 page = i915_gem_object_get_page(ctx_obj, LRC_PPHWSP_PN + i);
Xiaoguang Chenc7549362016-11-03 18:38:30 +0800456 src = kmap(page);
Zhi Wange4734052016-05-01 07:42:16 -0400457 intel_gvt_hypervisor_write_gpa(vgpu, context_gpa, src,
458 GTT_PAGE_SIZE);
Xiaoguang Chenc7549362016-11-03 18:38:30 +0800459 kunmap(page);
Zhi Wange4734052016-05-01 07:42:16 -0400460 i++;
461 }
462
463 intel_gvt_hypervisor_write_gpa(vgpu, workload->ring_context_gpa +
464 RING_CTX_OFF(ring_header.val), &workload->rb_tail, 4);
465
466 page = i915_gem_object_get_page(ctx_obj, LRC_STATE_PN);
Xiaoguang Chenc7549362016-11-03 18:38:30 +0800467 shadow_ring_context = kmap(page);
Zhi Wange4734052016-05-01 07:42:16 -0400468
469#define COPY_REG(name) \
470 intel_gvt_hypervisor_write_gpa(vgpu, workload->ring_context_gpa + \
471 RING_CTX_OFF(name.val), &shadow_ring_context->name.val, 4)
472
473 COPY_REG(ctx_ctrl);
474 COPY_REG(ctx_timestamp);
475
476#undef COPY_REG
477
478 intel_gvt_hypervisor_write_gpa(vgpu,
479 workload->ring_context_gpa +
480 sizeof(*shadow_ring_context),
481 (void *)shadow_ring_context +
482 sizeof(*shadow_ring_context),
483 GTT_PAGE_SIZE - sizeof(*shadow_ring_context));
484
Xiaoguang Chenc7549362016-11-03 18:38:30 +0800485 kunmap(page);
Zhi Wange4734052016-05-01 07:42:16 -0400486}
487
488static void complete_current_workload(struct intel_gvt *gvt, int ring_id)
489{
490 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
491 struct intel_vgpu_workload *workload;
Changbin Du440a9b92017-01-05 16:49:03 +0800492 struct intel_vgpu *vgpu;
Zhi Wangbe1da702016-05-03 18:26:57 -0400493 int event;
Zhi Wange4734052016-05-01 07:42:16 -0400494
495 mutex_lock(&gvt->lock);
496
497 workload = scheduler->current_workload[ring_id];
Changbin Du440a9b92017-01-05 16:49:03 +0800498 vgpu = workload->vgpu;
Zhi Wange4734052016-05-01 07:42:16 -0400499
Chuanxiao Dong8f1117a2017-03-06 13:05:24 +0800500 /* For the workload w/ request, needs to wait for the context
501 * switch to make sure request is completed.
502 * For the workload w/o request, directly complete the workload.
503 */
504 if (workload->req) {
Chuanxiao Dong3cd23b82017-03-16 09:47:58 +0800505 struct drm_i915_private *dev_priv =
506 workload->vgpu->gvt->dev_priv;
507 struct intel_engine_cs *engine =
508 dev_priv->engine[workload->ring_id];
Zhi Wange4734052016-05-01 07:42:16 -0400509 wait_event(workload->shadow_ctx_status_wq,
510 !atomic_read(&workload->shadow_ctx_active));
511
Chuanxiao Dong0cf5ec42017-06-23 13:01:11 +0800512 /* If this request caused GPU hang, req->fence.error will
513 * be set to -EIO. Use -EIO to set workload status so
514 * that when this request caused GPU hang, didn't trigger
515 * context switch interrupt to guest.
516 */
517 if (likely(workload->status == -EINPROGRESS)) {
518 if (workload->req->fence.error == -EIO)
519 workload->status = -EIO;
520 else
521 workload->status = 0;
522 }
523
Chuanxiao Dong8f1117a2017-03-06 13:05:24 +0800524 i915_gem_request_put(fetch_and_zero(&workload->req));
Zhi Wangbe1da702016-05-03 18:26:57 -0400525
Chuanxiao Dong6184cc82017-08-01 17:47:25 +0800526 if (!workload->status && !(vgpu->resetting_eng &
527 ENGINE_MASK(ring_id))) {
Chuanxiao Dong8f1117a2017-03-06 13:05:24 +0800528 update_guest_context(workload);
529
530 for_each_set_bit(event, workload->pending_events,
531 INTEL_GVT_EVENT_MAX)
532 intel_vgpu_trigger_virtual_event(vgpu, event);
533 }
Chuanxiao Dong3cd23b82017-03-16 09:47:58 +0800534 mutex_lock(&dev_priv->drm.struct_mutex);
535 /* unpin shadow ctx as the shadow_ctx update is done */
536 engine->context_unpin(engine, workload->vgpu->shadow_ctx);
537 mutex_unlock(&dev_priv->drm.struct_mutex);
Zhi Wange4734052016-05-01 07:42:16 -0400538 }
539
540 gvt_dbg_sched("ring id %d complete workload %p status %d\n",
541 ring_id, workload, workload->status);
542
543 scheduler->current_workload[ring_id] = NULL;
544
Zhi Wange4734052016-05-01 07:42:16 -0400545 list_del_init(&workload->list);
546 workload->complete(workload);
547
Changbin Du440a9b92017-01-05 16:49:03 +0800548 atomic_dec(&vgpu->running_workload_num);
Zhi Wange4734052016-05-01 07:42:16 -0400549 wake_up(&scheduler->workload_complete_wq);
Ping Gaof100dae2017-05-24 09:14:11 +0800550
551 if (gvt->scheduler.need_reschedule)
552 intel_gvt_request_service(gvt, INTEL_GVT_REQUEST_EVENT_SCHED);
553
Zhi Wange4734052016-05-01 07:42:16 -0400554 mutex_unlock(&gvt->lock);
555}
556
557struct workload_thread_param {
558 struct intel_gvt *gvt;
559 int ring_id;
560};
561
562static int workload_thread(void *priv)
563{
564 struct workload_thread_param *p = (struct workload_thread_param *)priv;
565 struct intel_gvt *gvt = p->gvt;
566 int ring_id = p->ring_id;
567 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
568 struct intel_vgpu_workload *workload = NULL;
Tina Zhang695fbc02017-03-10 04:26:53 -0500569 struct intel_vgpu *vgpu = NULL;
Zhi Wange4734052016-05-01 07:42:16 -0400570 int ret;
Xu Hane3476c02017-03-29 10:13:59 +0800571 bool need_force_wake = IS_SKYLAKE(gvt->dev_priv)
572 || IS_KABYLAKE(gvt->dev_priv);
Du, Changbine45d7b72016-10-27 11:10:31 +0800573 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Zhi Wange4734052016-05-01 07:42:16 -0400574
575 kfree(p);
576
577 gvt_dbg_core("workload thread for ring %d started\n", ring_id);
578
579 while (!kthread_should_stop()) {
Du, Changbine45d7b72016-10-27 11:10:31 +0800580 add_wait_queue(&scheduler->waitq[ring_id], &wait);
581 do {
582 workload = pick_next_workload(gvt, ring_id);
583 if (workload)
584 break;
585 wait_woken(&wait, TASK_INTERRUPTIBLE,
586 MAX_SCHEDULE_TIMEOUT);
587 } while (!kthread_should_stop());
588 remove_wait_queue(&scheduler->waitq[ring_id], &wait);
Zhi Wange4734052016-05-01 07:42:16 -0400589
Du, Changbine45d7b72016-10-27 11:10:31 +0800590 if (!workload)
Zhi Wange4734052016-05-01 07:42:16 -0400591 break;
592
593 gvt_dbg_sched("ring id %d next workload %p vgpu %d\n",
594 workload->ring_id, workload,
595 workload->vgpu->id);
596
597 intel_runtime_pm_get(gvt->dev_priv);
598
Zhi Wange4734052016-05-01 07:42:16 -0400599 gvt_dbg_sched("ring id %d will dispatch workload %p\n",
600 workload->ring_id, workload);
601
602 if (need_force_wake)
603 intel_uncore_forcewake_get(gvt->dev_priv,
604 FORCEWAKE_ALL);
605
Pei Zhang90d27a12016-11-14 18:02:57 +0800606 mutex_lock(&gvt->lock);
Zhi Wange4734052016-05-01 07:42:16 -0400607 ret = dispatch_workload(workload);
Pei Zhang90d27a12016-11-14 18:02:57 +0800608 mutex_unlock(&gvt->lock);
Chris Wilson66bbc3b2016-10-19 11:11:44 +0100609
Zhi Wange4734052016-05-01 07:42:16 -0400610 if (ret) {
Tina Zhang695fbc02017-03-10 04:26:53 -0500611 vgpu = workload->vgpu;
612 gvt_vgpu_err("fail to dispatch workload, skip\n");
Zhi Wange4734052016-05-01 07:42:16 -0400613 goto complete;
614 }
615
616 gvt_dbg_sched("ring id %d wait workload %p\n",
617 workload->ring_id, workload);
Chris Wilson3dce2ac2017-03-08 22:08:08 +0000618 i915_wait_request(workload->req, 0, MAX_SCHEDULE_TIMEOUT);
Zhi Wange4734052016-05-01 07:42:16 -0400619
620complete:
Changbin Du3ce32742017-02-09 10:13:16 +0800621 gvt_dbg_sched("will complete workload %p, status: %d\n",
Zhi Wange4734052016-05-01 07:42:16 -0400622 workload, workload->status);
623
Changbin Du2e51ef32017-01-05 13:28:05 +0800624 complete_current_workload(gvt, ring_id);
625
Zhi Wange4734052016-05-01 07:42:16 -0400626 if (need_force_wake)
627 intel_uncore_forcewake_put(gvt->dev_priv,
628 FORCEWAKE_ALL);
629
Zhi Wange4734052016-05-01 07:42:16 -0400630 intel_runtime_pm_put(gvt->dev_priv);
Zhi Wange4734052016-05-01 07:42:16 -0400631 }
632 return 0;
633}
634
635void intel_gvt_wait_vgpu_idle(struct intel_vgpu *vgpu)
636{
637 struct intel_gvt *gvt = vgpu->gvt;
638 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
639
640 if (atomic_read(&vgpu->running_workload_num)) {
641 gvt_dbg_sched("wait vgpu idle\n");
642
643 wait_event(scheduler->workload_complete_wq,
644 !atomic_read(&vgpu->running_workload_num));
645 }
646}
647
648void intel_gvt_clean_workload_scheduler(struct intel_gvt *gvt)
649{
650 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
Changbin Du3fc03062017-03-13 10:47:11 +0800651 struct intel_engine_cs *engine;
652 enum intel_engine_id i;
Zhi Wange4734052016-05-01 07:42:16 -0400653
654 gvt_dbg_core("clean workload scheduler\n");
655
Changbin Du3fc03062017-03-13 10:47:11 +0800656 for_each_engine(engine, gvt->dev_priv, i) {
657 atomic_notifier_chain_unregister(
658 &engine->context_status_notifier,
659 &gvt->shadow_ctx_notifier_block[i]);
660 kthread_stop(scheduler->thread[i]);
Zhi Wange4734052016-05-01 07:42:16 -0400661 }
662}
663
664int intel_gvt_init_workload_scheduler(struct intel_gvt *gvt)
665{
666 struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
667 struct workload_thread_param *param = NULL;
Changbin Du3fc03062017-03-13 10:47:11 +0800668 struct intel_engine_cs *engine;
669 enum intel_engine_id i;
Zhi Wange4734052016-05-01 07:42:16 -0400670 int ret;
Zhi Wange4734052016-05-01 07:42:16 -0400671
672 gvt_dbg_core("init workload scheduler\n");
673
674 init_waitqueue_head(&scheduler->workload_complete_wq);
675
Changbin Du3fc03062017-03-13 10:47:11 +0800676 for_each_engine(engine, gvt->dev_priv, i) {
Zhi Wange4734052016-05-01 07:42:16 -0400677 init_waitqueue_head(&scheduler->waitq[i]);
678
679 param = kzalloc(sizeof(*param), GFP_KERNEL);
680 if (!param) {
681 ret = -ENOMEM;
682 goto err;
683 }
684
685 param->gvt = gvt;
686 param->ring_id = i;
687
688 scheduler->thread[i] = kthread_run(workload_thread, param,
689 "gvt workload %d", i);
690 if (IS_ERR(scheduler->thread[i])) {
691 gvt_err("fail to create workload thread\n");
692 ret = PTR_ERR(scheduler->thread[i]);
693 goto err;
694 }
Changbin Du3fc03062017-03-13 10:47:11 +0800695
696 gvt->shadow_ctx_notifier_block[i].notifier_call =
697 shadow_context_status_change;
698 atomic_notifier_chain_register(&engine->context_status_notifier,
699 &gvt->shadow_ctx_notifier_block[i]);
Zhi Wange4734052016-05-01 07:42:16 -0400700 }
701 return 0;
702err:
703 intel_gvt_clean_workload_scheduler(gvt);
704 kfree(param);
705 param = NULL;
706 return ret;
707}
708
709void intel_vgpu_clean_gvt_context(struct intel_vgpu *vgpu)
710{
Chris Wilson5f09a9c2017-06-20 12:05:46 +0100711 i915_gem_context_put(vgpu->shadow_ctx);
Zhi Wange4734052016-05-01 07:42:16 -0400712}
713
714int intel_vgpu_init_gvt_context(struct intel_vgpu *vgpu)
715{
716 atomic_set(&vgpu->running_workload_num, 0);
717
718 vgpu->shadow_ctx = i915_gem_context_create_gvt(
719 &vgpu->gvt->dev_priv->drm);
720 if (IS_ERR(vgpu->shadow_ctx))
721 return PTR_ERR(vgpu->shadow_ctx);
722
723 vgpu->shadow_ctx->engine[RCS].initialised = true;
724
Kechen Lu9dfb8e52017-08-10 07:41:36 +0800725 bitmap_zero(vgpu->shadow_ctx_desc_updated, I915_NUM_ENGINES);
726
Zhi Wange4734052016-05-01 07:42:16 -0400727 return 0;
728}