]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - drivers/gpu/drm/i915/gvt/scheduler.h
Merge branch 'drm-next-5.1' of git://people.freedesktop.org/~agd5f/linux into drm...
[thirdparty/kernel/stable.git] / drivers / gpu / drm / i915 / gvt / scheduler.h
CommitLineData
28c4c6ca
ZW
1/*
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.
e4734057
ZW
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 *
28c4c6ca
ZW
34 */
35
36#ifndef _GVT_SCHEDULER_H_
37#define _GVT_SCHEDULER_H_
38
39struct intel_gvt_workload_scheduler {
e4734057
ZW
40 struct intel_vgpu *current_vgpu;
41 struct intel_vgpu *next_vgpu;
42 struct intel_vgpu_workload *current_workload[I915_NUM_ENGINES];
43 bool need_reschedule;
44
0e86cc9c
CD
45 spinlock_t mmio_context_lock;
46 /* can be null when owner is host */
47 struct intel_vgpu *engine_owner[I915_NUM_ENGINES];
48
e4734057
ZW
49 wait_queue_head_t workload_complete_wq;
50 struct task_struct *thread[I915_NUM_ENGINES];
51 wait_queue_head_t waitq[I915_NUM_ENGINES];
4b63960e
ZW
52
53 void *sched_data;
54 struct intel_gvt_sched_policy_ops *sched_ops;
28c4c6ca
ZW
55};
56
be1da707
ZW
57#define INDIRECT_CTX_ADDR_MASK 0xffffffc0
58#define INDIRECT_CTX_SIZE_MASK 0x3f
59struct shadow_indirect_ctx {
60 struct drm_i915_gem_object *obj;
61 unsigned long guest_gma;
62 unsigned long shadow_gma;
63 void *shadow_va;
2e679d48 64 u32 size;
be1da707
ZW
65};
66
67#define PER_CTX_ADDR_MASK 0xfffff000
68struct shadow_per_ctx {
69 unsigned long guest_gma;
70 unsigned long shadow_gma;
8f63fc2b 71 unsigned valid;
be1da707
ZW
72};
73
74struct intel_shadow_wa_ctx {
be1da707
ZW
75 struct shadow_indirect_ctx indirect_ctx;
76 struct shadow_per_ctx per_ctx;
77
78};
79
28c4c6ca
ZW
80struct intel_vgpu_workload {
81 struct intel_vgpu *vgpu;
82 int ring_id;
e61e0f51 83 struct i915_request *req;
28c4c6ca
ZW
84 /* if this workload has been dispatched to i915? */
85 bool dispatched;
86 int status;
87
88 struct intel_vgpu_mm *shadow_mm;
89
90 /* different submission model may need different handler */
91 int (*prepare)(struct intel_vgpu_workload *);
92 int (*complete)(struct intel_vgpu_workload *);
93 struct list_head list;
94
be1da707
ZW
95 DECLARE_BITMAP(pending_events, INTEL_GVT_EVENT_MAX);
96 void *shadow_ring_buffer_va;
97
28c4c6ca
ZW
98 /* execlist context information */
99 struct execlist_ctx_descriptor_format ctx_desc;
100 struct execlist_ring_context *ring_context;
be1da707 101 unsigned long rb_head, rb_tail, rb_ctl, rb_start, rb_len;
e4734057 102 bool restore_inhibit;
28c4c6ca
ZW
103 struct intel_vgpu_elsp_dwords elsp_dwords;
104 bool emulate_schedule_in;
105 atomic_t shadow_ctx_active;
106 wait_queue_head_t shadow_ctx_status_wq;
107 u64 ring_context_gpa;
be1da707
ZW
108
109 /* shadow batch buffer */
110 struct list_head shadow_bb;
111 struct intel_shadow_wa_ctx wa_ctx;
fa3dd623
MH
112
113 /* oa registers */
114 u32 oactxctrl;
115 u32 flex_mmio[7];
be1da707
ZW
116};
117
f52c380a 118struct intel_vgpu_shadow_bb {
be1da707
ZW
119 struct list_head list;
120 struct drm_i915_gem_object *obj;
f52c380a 121 struct i915_vma *vma;
be1da707 122 void *va;
62f0a11e 123 u32 *bb_start_cmd_va;
f52c380a
ZW
124 unsigned int clflush;
125 bool accessing;
ef75c685 126 unsigned long bb_offset;
96bebe39 127 bool ppgtt;
28c4c6ca
ZW
128};
129
130#define workload_q_head(vgpu, ring_id) \
1406a14b 131 (&(vgpu->submission.workload_q_head[ring_id]))
28c4c6ca 132
59a716c6 133void intel_vgpu_queue_workload(struct intel_vgpu_workload *workload);
e4734057
ZW
134
135int intel_gvt_init_workload_scheduler(struct intel_gvt *gvt);
136
137void intel_gvt_clean_workload_scheduler(struct intel_gvt *gvt);
138
139void intel_gvt_wait_vgpu_idle(struct intel_vgpu *vgpu);
140
874b6a91 141int intel_vgpu_setup_submission(struct intel_vgpu *vgpu);
e4734057 142
06bb372f
ZW
143void intel_vgpu_reset_submission(struct intel_vgpu *vgpu,
144 unsigned long engine_mask);
145
874b6a91 146void intel_vgpu_clean_submission(struct intel_vgpu *vgpu);
28c4c6ca 147
ad1d3636 148int intel_vgpu_select_submission_ops(struct intel_vgpu *vgpu,
7569a06d 149 unsigned long engine_mask,
ad1d3636
ZW
150 unsigned int interface);
151
152extern const struct intel_vgpu_submission_ops
153intel_vgpu_execlist_submission_ops;
154
21527a8d 155struct intel_vgpu_workload *
6d763035
ZW
156intel_vgpu_create_workload(struct intel_vgpu *vgpu, int ring_id,
157 struct execlist_ctx_descriptor_format *desc);
21527a8d
ZW
158
159void intel_vgpu_destroy_workload(struct intel_vgpu_workload *workload);
160
f9090d4c
HY
161void intel_vgpu_clean_workloads(struct intel_vgpu *vgpu,
162 unsigned long engine_mask);
163
28c4c6ca 164#endif