blob: f84c267728fdaa2959c0a1512fc6978b15dcfa61 [file] [log] [blame]
Alex Daibac427f2015-08-12 15:43:39 +01001/*
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 */
Alex Daibac427f2015-08-12 15:43:39 +010024
Michal Wajdeczko9f436c42017-10-04 18:13:40 +000025#include <linux/circ_buf.h>
Chris Wilson31de7352017-03-16 12:56:18 +000026#include <trace/events/dma_fence.h>
27
Michal Wajdeczko9f436c42017-10-04 18:13:40 +000028#include "i915_guc_submission.h"
29#include "i915_drv.h"
30
Alex Daibac427f2015-08-12 15:43:39 +010031/**
Alex Daifeda33e2015-10-19 16:10:54 -070032 * DOC: GuC-based command submission
Dave Gordon44a28b12015-08-12 15:43:41 +010033 *
Oscar Mateo0d768122017-03-22 10:39:50 -070034 * GuC client:
35 * A i915_guc_client refers to a submission path through GuC. Currently, there
36 * is only one of these (the execbuf_client) and this one is charged with all
37 * submissions to the GuC. This struct is the owner of a doorbell, a process
38 * descriptor and a workqueue (all of them inside a single gem object that
39 * contains all required pages for these elements).
Dave Gordon44a28b12015-08-12 15:43:41 +010040 *
Oscar Mateob09935a2017-03-22 10:39:53 -070041 * GuC stage descriptor:
Oscar Mateo0d768122017-03-22 10:39:50 -070042 * During initialization, the driver allocates a static pool of 1024 such
43 * descriptors, and shares them with the GuC.
44 * Currently, there exists a 1:1 mapping between a i915_guc_client and a
Oscar Mateob09935a2017-03-22 10:39:53 -070045 * guc_stage_desc (via the client's stage_id), so effectively only one
46 * gets used. This stage descriptor lets the GuC know about the doorbell,
47 * workqueue and process descriptor. Theoretically, it also lets the GuC
48 * know about our HW contexts (context ID, etc...), but we actually
Oscar Mateo0d768122017-03-22 10:39:50 -070049 * employ a kind of submission where the GuC uses the LRCA sent via the work
Oscar Mateob09935a2017-03-22 10:39:53 -070050 * item instead (the single guc_stage_desc associated to execbuf client
Oscar Mateo0d768122017-03-22 10:39:50 -070051 * contains information about the default kernel context only, but this is
52 * essentially unused). This is called a "proxy" submission.
Dave Gordon44a28b12015-08-12 15:43:41 +010053 *
54 * The Scratch registers:
55 * There are 16 MMIO-based registers start from 0xC180. The kernel driver writes
56 * a value to the action register (SOFT_SCRATCH_0) along with any data. It then
57 * triggers an interrupt on the GuC via another register write (0xC4C8).
58 * Firmware writes a success/fail code back to the action register after
59 * processes the request. The kernel driver polls waiting for this update and
60 * then proceeds.
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +010061 * See intel_guc_send()
Dave Gordon44a28b12015-08-12 15:43:41 +010062 *
63 * Doorbells:
64 * Doorbells are interrupts to uKernel. A doorbell is a single cache line (QW)
65 * mapped into process space.
66 *
67 * Work Items:
68 * There are several types of work items that the host may place into a
69 * workqueue, each with its own requirements and limitations. Currently only
70 * WQ_TYPE_INORDER is needed to support legacy submission via GuC, which
71 * represents in-order queue. The kernel driver packs ring tail pointer and an
72 * ELSP context descriptor dword into Work Item.
Dave Gordon7a9347f2016-09-12 21:19:37 +010073 * See guc_wq_item_append()
Dave Gordon44a28b12015-08-12 15:43:41 +010074 *
Oscar Mateo0704df22017-03-22 10:39:47 -070075 * ADS:
76 * The Additional Data Struct (ADS) has pointers for different buffers used by
77 * the GuC. One single gem object contains the ADS struct itself (guc_ads), the
78 * scheduling policies (guc_policies), a structure describing a collection of
79 * register sets (guc_mmio_reg_state) and some extra pages for the GuC to save
80 * its internal state for sleep.
81 *
Dave Gordon44a28b12015-08-12 15:43:41 +010082 */
83
Joonas Lahtinenabddffd2017-03-22 10:39:44 -070084static inline bool is_high_priority(struct i915_guc_client* client)
85{
Oscar Mateob09935a2017-03-22 10:39:53 -070086 return client->priority <= GUC_CLIENT_PRIORITY_HIGH;
Joonas Lahtinenabddffd2017-03-22 10:39:44 -070087}
88
89static int __reserve_doorbell(struct i915_guc_client *client)
90{
91 unsigned long offset;
92 unsigned long end;
93 u16 id;
94
95 GEM_BUG_ON(client->doorbell_id != GUC_DOORBELL_INVALID);
96
97 /*
98 * The bitmap tracks which doorbell registers are currently in use.
99 * It is split into two halves; the first half is used for normal
100 * priority contexts, the second half for high-priority ones.
101 */
102 offset = 0;
103 end = GUC_NUM_DOORBELLS/2;
104 if (is_high_priority(client)) {
105 offset = end;
106 end += offset;
107 }
108
Michel Thierry7f1ea2a2017-05-30 17:05:46 -0700109 id = find_next_zero_bit(client->guc->doorbell_bitmap, end, offset);
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700110 if (id == end)
111 return -ENOSPC;
112
113 __set_bit(id, client->guc->doorbell_bitmap);
114 client->doorbell_id = id;
115 DRM_DEBUG_DRIVER("client %u (high prio=%s) reserved doorbell: %d\n",
Oscar Mateob09935a2017-03-22 10:39:53 -0700116 client->stage_id, yesno(is_high_priority(client)),
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700117 id);
118 return 0;
119}
120
121static void __unreserve_doorbell(struct i915_guc_client *client)
122{
123 GEM_BUG_ON(client->doorbell_id == GUC_DOORBELL_INVALID);
124
125 __clear_bit(client->doorbell_id, client->guc->doorbell_bitmap);
126 client->doorbell_id = GUC_DOORBELL_INVALID;
127}
128
Dave Gordon44a28b12015-08-12 15:43:41 +0100129/*
Dave Gordon44a28b12015-08-12 15:43:41 +0100130 * Tell the GuC to allocate or deallocate a specific doorbell
131 */
132
Oscar Mateob09935a2017-03-22 10:39:53 -0700133static int __guc_allocate_doorbell(struct intel_guc *guc, u32 stage_id)
Dave Gordon44a28b12015-08-12 15:43:41 +0100134{
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100135 u32 action[] = {
136 INTEL_GUC_ACTION_ALLOCATE_DOORBELL,
Oscar Mateob09935a2017-03-22 10:39:53 -0700137 stage_id
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100138 };
Dave Gordon44a28b12015-08-12 15:43:41 +0100139
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100140 return intel_guc_send(guc, action, ARRAY_SIZE(action));
Dave Gordon44a28b12015-08-12 15:43:41 +0100141}
142
Oscar Mateob09935a2017-03-22 10:39:53 -0700143static int __guc_deallocate_doorbell(struct intel_guc *guc, u32 stage_id)
Dave Gordon44a28b12015-08-12 15:43:41 +0100144{
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100145 u32 action[] = {
146 INTEL_GUC_ACTION_DEALLOCATE_DOORBELL,
Oscar Mateob09935a2017-03-22 10:39:53 -0700147 stage_id
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100148 };
Dave Gordon44a28b12015-08-12 15:43:41 +0100149
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100150 return intel_guc_send(guc, action, ARRAY_SIZE(action));
Sagar Arun Kamble685534e2016-10-12 21:54:41 +0530151}
152
Oscar Mateob09935a2017-03-22 10:39:53 -0700153static struct guc_stage_desc *__get_stage_desc(struct i915_guc_client *client)
Oscar Mateo73b05532017-03-22 10:39:45 -0700154{
Oscar Mateob09935a2017-03-22 10:39:53 -0700155 struct guc_stage_desc *base = client->guc->stage_desc_pool_vaddr;
Oscar Mateo73b05532017-03-22 10:39:45 -0700156
Oscar Mateob09935a2017-03-22 10:39:53 -0700157 return &base[client->stage_id];
Oscar Mateo73b05532017-03-22 10:39:45 -0700158}
159
Dave Gordon44a28b12015-08-12 15:43:41 +0100160/*
161 * Initialise, update, or clear doorbell data shared with the GuC
162 *
163 * These functions modify shared data and so need access to the mapped
164 * client object which contains the page being used for the doorbell
165 */
166
Oscar Mateo397fce82017-03-22 10:39:52 -0700167static void __update_doorbell_desc(struct i915_guc_client *client, u16 new_id)
Dave Gordon44a28b12015-08-12 15:43:41 +0100168{
Oscar Mateob09935a2017-03-22 10:39:53 -0700169 struct guc_stage_desc *desc;
Dave Gordon44a28b12015-08-12 15:43:41 +0100170
Dave Gordona6674292016-06-13 17:57:32 +0100171 /* Update the GuC's idea of the doorbell ID */
Oscar Mateob09935a2017-03-22 10:39:53 -0700172 desc = __get_stage_desc(client);
Oscar Mateo73b05532017-03-22 10:39:45 -0700173 desc->db_id = new_id;
Dave Gordona6674292016-06-13 17:57:32 +0100174}
175
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700176static struct guc_doorbell_info *__get_doorbell(struct i915_guc_client *client)
Dave Gordon44a28b12015-08-12 15:43:41 +0100177{
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700178 return client->vaddr + client->doorbell_offset;
179}
180
181static bool has_doorbell(struct i915_guc_client *client)
182{
183 if (client->doorbell_id == GUC_DOORBELL_INVALID)
184 return false;
185
186 return test_bit(client->doorbell_id, client->guc->doorbell_bitmap);
187}
188
189static int __create_doorbell(struct i915_guc_client *client)
190{
191 struct guc_doorbell_info *doorbell;
192 int err;
193
194 doorbell = __get_doorbell(client);
195 doorbell->db_status = GUC_DOORBELL_ENABLED;
Michał Winiarski59db36c2017-09-14 12:51:23 +0200196 doorbell->cookie = 0;
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700197
Oscar Mateob09935a2017-03-22 10:39:53 -0700198 err = __guc_allocate_doorbell(client->guc, client->stage_id);
Michał Winiarski59db36c2017-09-14 12:51:23 +0200199 if (err)
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700200 doorbell->db_status = GUC_DOORBELL_DISABLED;
Michał Winiarski59db36c2017-09-14 12:51:23 +0200201
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700202 return err;
203}
204
205static int __destroy_doorbell(struct i915_guc_client *client)
206{
Oscar Mateoed2ec71f2017-03-22 10:39:51 -0700207 struct drm_i915_private *dev_priv = guc_to_i915(client->guc);
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700208 struct guc_doorbell_info *doorbell;
Oscar Mateoed2ec71f2017-03-22 10:39:51 -0700209 u16 db_id = client->doorbell_id;
210
211 GEM_BUG_ON(db_id >= GUC_DOORBELL_INVALID);
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700212
213 doorbell = __get_doorbell(client);
214 doorbell->db_status = GUC_DOORBELL_DISABLED;
215 doorbell->cookie = 0;
216
Oscar Mateoed2ec71f2017-03-22 10:39:51 -0700217 /* Doorbell release flow requires that we wait for GEN8_DRB_VALID bit
218 * to go to zero after updating db_status before we call the GuC to
219 * release the doorbell */
220 if (wait_for_us(!(I915_READ(GEN8_DRBREGL(db_id)) & GEN8_DRB_VALID), 10))
221 WARN_ONCE(true, "Doorbell never became invalid after disable\n");
222
Oscar Mateob09935a2017-03-22 10:39:53 -0700223 return __guc_deallocate_doorbell(client->guc, client->stage_id);
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700224}
225
Oscar Mateo397fce82017-03-22 10:39:52 -0700226static int create_doorbell(struct i915_guc_client *client)
227{
228 int ret;
229
230 ret = __reserve_doorbell(client);
231 if (ret)
232 return ret;
233
234 __update_doorbell_desc(client, client->doorbell_id);
235
236 ret = __create_doorbell(client);
237 if (ret)
238 goto err;
239
240 return 0;
241
242err:
243 __update_doorbell_desc(client, GUC_DOORBELL_INVALID);
244 __unreserve_doorbell(client);
245 return ret;
246}
247
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700248static int destroy_doorbell(struct i915_guc_client *client)
249{
250 int err;
251
252 GEM_BUG_ON(!has_doorbell(client));
Dave Gordon44a28b12015-08-12 15:43:41 +0100253
Dave Gordon44a28b12015-08-12 15:43:41 +0100254 /* XXX: wait for any interrupts */
255 /* XXX: wait for workqueue to drain */
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700256
257 err = __destroy_doorbell(client);
258 if (err)
259 return err;
260
261 __update_doorbell_desc(client, GUC_DOORBELL_INVALID);
262
263 __unreserve_doorbell(client);
264
265 return 0;
Dave Gordon44a28b12015-08-12 15:43:41 +0100266}
267
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700268static unsigned long __select_cacheline(struct intel_guc* guc)
Dave Gordonf10d69a2016-06-13 17:57:33 +0100269{
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700270 unsigned long offset;
Dave Gordon44a28b12015-08-12 15:43:41 +0100271
Dave Gordon44a28b12015-08-12 15:43:41 +0100272 /* Doorbell uses a single cache line within a page */
273 offset = offset_in_page(guc->db_cacheline);
274
275 /* Moving to next cache line to reduce contention */
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700276 guc->db_cacheline += cache_line_size();
Dave Gordon44a28b12015-08-12 15:43:41 +0100277
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700278 DRM_DEBUG_DRIVER("reserved cacheline 0x%lx, next 0x%x, linesize %u\n",
279 offset, guc->db_cacheline, cache_line_size());
Dave Gordon44a28b12015-08-12 15:43:41 +0100280 return offset;
281}
282
Chris Wilsonbd00e732017-03-23 23:00:00 +0000283static inline struct guc_process_desc *
284__get_process_desc(struct i915_guc_client *client)
285{
286 return client->vaddr + client->proc_desc_offset;
287}
288
Dave Gordon44a28b12015-08-12 15:43:41 +0100289/*
290 * Initialise the process descriptor shared with the GuC firmware.
291 */
Dave Gordon7a9347f2016-09-12 21:19:37 +0100292static void guc_proc_desc_init(struct intel_guc *guc,
Dave Gordon44a28b12015-08-12 15:43:41 +0100293 struct i915_guc_client *client)
294{
295 struct guc_process_desc *desc;
Dave Gordon44a28b12015-08-12 15:43:41 +0100296
Chris Wilsonbd00e732017-03-23 23:00:00 +0000297 desc = memset(__get_process_desc(client), 0, sizeof(*desc));
Dave Gordon44a28b12015-08-12 15:43:41 +0100298
299 /*
300 * XXX: pDoorbell and WQVBaseAddress are pointers in process address
301 * space for ring3 clients (set them as in mmap_ioctl) or kernel
302 * space for kernel clients (map on demand instead? May make debug
303 * easier to have it mapped).
304 */
305 desc->wq_base_addr = 0;
306 desc->db_base_addr = 0;
307
Oscar Mateob09935a2017-03-22 10:39:53 -0700308 desc->stage_id = client->stage_id;
Michał Winiarskia529a1c2017-09-18 11:25:35 +0200309 desc->wq_size_bytes = GUC_WQ_SIZE;
Dave Gordon44a28b12015-08-12 15:43:41 +0100310 desc->wq_status = WQ_STATUS_ACTIVE;
311 desc->priority = client->priority;
Dave Gordon44a28b12015-08-12 15:43:41 +0100312}
313
314/*
Oscar Mateob09935a2017-03-22 10:39:53 -0700315 * Initialise/clear the stage descriptor shared with the GuC firmware.
Dave Gordon44a28b12015-08-12 15:43:41 +0100316 *
317 * This descriptor tells the GuC where (in GGTT space) to find the important
318 * data structures relating to this client (doorbell, process descriptor,
319 * write queue, etc).
320 */
Oscar Mateob09935a2017-03-22 10:39:53 -0700321static void guc_stage_desc_init(struct intel_guc *guc,
322 struct i915_guc_client *client)
Dave Gordon44a28b12015-08-12 15:43:41 +0100323{
Alex Dai397097b2016-01-23 11:58:14 -0800324 struct drm_i915_private *dev_priv = guc_to_i915(guc);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000325 struct intel_engine_cs *engine;
Chris Wilsone2efd132016-05-24 14:53:34 +0100326 struct i915_gem_context *ctx = client->owner;
Oscar Mateob09935a2017-03-22 10:39:53 -0700327 struct guc_stage_desc *desc;
Chris Wilsonbafb0fc2016-08-27 08:54:01 +0100328 unsigned int tmp;
Dave Gordon86e06cc2016-04-19 16:08:36 +0100329 u32 gfx_addr;
Dave Gordon44a28b12015-08-12 15:43:41 +0100330
Oscar Mateob09935a2017-03-22 10:39:53 -0700331 desc = __get_stage_desc(client);
Oscar Mateo73b05532017-03-22 10:39:45 -0700332 memset(desc, 0, sizeof(*desc));
Dave Gordon44a28b12015-08-12 15:43:41 +0100333
Oscar Mateob09935a2017-03-22 10:39:53 -0700334 desc->attribute = GUC_STAGE_DESC_ATTR_ACTIVE | GUC_STAGE_DESC_ATTR_KERNEL;
335 desc->stage_id = client->stage_id;
Oscar Mateo73b05532017-03-22 10:39:45 -0700336 desc->priority = client->priority;
337 desc->db_id = client->doorbell_id;
Dave Gordon44a28b12015-08-12 15:43:41 +0100338
Chris Wilsonbafb0fc2016-08-27 08:54:01 +0100339 for_each_engine_masked(engine, dev_priv, client->engines, tmp) {
Chris Wilson9021ad02016-05-24 14:53:37 +0100340 struct intel_context *ce = &ctx->engine[engine->id];
Joonas Lahtinenfaf65482017-10-06 11:49:40 +0300341 u32 guc_engine_id = engine->guc_id;
Oscar Mateo73b05532017-03-22 10:39:45 -0700342 struct guc_execlist_context *lrc = &desc->lrc[guc_engine_id];
Alex Daid1675192015-08-12 15:43:43 +0100343
344 /* TODO: We have a design issue to be solved here. Only when we
345 * receive the first batch, we know which engine is used by the
346 * user. But here GuC expects the lrc and ring to be pinned. It
347 * is not an issue for default context, which is the only one
348 * for now who owns a GuC client. But for future owner of GuC
349 * client, need to make sure lrc is pinned prior to enter here.
350 */
Chris Wilson9021ad02016-05-24 14:53:37 +0100351 if (!ce->state)
Alex Daid1675192015-08-12 15:43:43 +0100352 break; /* XXX: continue? */
353
Oscar Mateo0d768122017-03-22 10:39:50 -0700354 /*
Oscar Mateob09935a2017-03-22 10:39:53 -0700355 * XXX: When this is a GUC_STAGE_DESC_ATTR_KERNEL client (proxy
Oscar Mateo0d768122017-03-22 10:39:50 -0700356 * submission or, in other words, not using a direct submission
357 * model) the KMD's LRCA is not used for any work submission.
358 * Instead, the GuC uses the LRCA of the user mode context (see
359 * guc_wq_item_append below).
360 */
Chris Wilson9021ad02016-05-24 14:53:37 +0100361 lrc->context_desc = lower_32_bits(ce->lrc_desc);
Alex Daid1675192015-08-12 15:43:43 +0100362
363 /* The state page is after PPHWSP */
Oscar Mateo0d768122017-03-22 10:39:50 -0700364 lrc->ring_lrca =
Chris Wilson4741da92016-12-24 19:31:46 +0000365 guc_ggtt_offset(ce->state) + LRC_STATE_PN * PAGE_SIZE;
Oscar Mateob09935a2017-03-22 10:39:53 -0700366
367 /* XXX: In direct submission, the GuC wants the HW context id
368 * here. In proxy submission, it wants the stage id */
369 lrc->context_id = (client->stage_id << GUC_ELC_CTXID_OFFSET) |
Dave Gordonc18468c2016-08-09 15:19:22 +0100370 (guc_engine_id << GUC_ELC_ENGINE_OFFSET);
Alex Daid1675192015-08-12 15:43:43 +0100371
Chris Wilson4741da92016-12-24 19:31:46 +0000372 lrc->ring_begin = guc_ggtt_offset(ce->ring->vma);
Chris Wilson57e88532016-08-15 10:48:57 +0100373 lrc->ring_end = lrc->ring_begin + ce->ring->size - 1;
374 lrc->ring_next_free_location = lrc->ring_begin;
Alex Daid1675192015-08-12 15:43:43 +0100375 lrc->ring_current_tail_pointer_value = 0;
376
Oscar Mateo73b05532017-03-22 10:39:45 -0700377 desc->engines_used |= (1 << guc_engine_id);
Alex Daid1675192015-08-12 15:43:43 +0100378 }
379
Dave Gordone02757d2016-08-09 15:19:21 +0100380 DRM_DEBUG_DRIVER("Host engines 0x%x => GuC engines used 0x%x\n",
Oscar Mateo73b05532017-03-22 10:39:45 -0700381 client->engines, desc->engines_used);
382 WARN_ON(desc->engines_used == 0);
Alex Daid1675192015-08-12 15:43:43 +0100383
Dave Gordon44a28b12015-08-12 15:43:41 +0100384 /*
Dave Gordon86e06cc2016-04-19 16:08:36 +0100385 * The doorbell, process descriptor, and workqueue are all parts
386 * of the client object, which the GuC will reference via the GGTT
Dave Gordon44a28b12015-08-12 15:43:41 +0100387 */
Chris Wilson4741da92016-12-24 19:31:46 +0000388 gfx_addr = guc_ggtt_offset(client->vma);
Oscar Mateo73b05532017-03-22 10:39:45 -0700389 desc->db_trigger_phy = sg_dma_address(client->vma->pages->sgl) +
Dave Gordon86e06cc2016-04-19 16:08:36 +0100390 client->doorbell_offset;
Michal Wajdeczkobb8920f2017-10-06 13:08:44 +0000391 desc->db_trigger_cpu = ptr_to_u64(__get_doorbell(client));
Oscar Mateo73b05532017-03-22 10:39:45 -0700392 desc->db_trigger_uk = gfx_addr + client->doorbell_offset;
393 desc->process_desc = gfx_addr + client->proc_desc_offset;
Michał Winiarskia529a1c2017-09-18 11:25:35 +0200394 desc->wq_addr = gfx_addr + GUC_DB_SIZE;
395 desc->wq_size = GUC_WQ_SIZE;
Dave Gordon44a28b12015-08-12 15:43:41 +0100396
Michal Wajdeczkobb8920f2017-10-06 13:08:44 +0000397 desc->desc_private = ptr_to_u64(client);
Dave Gordon44a28b12015-08-12 15:43:41 +0100398}
399
Oscar Mateob09935a2017-03-22 10:39:53 -0700400static void guc_stage_desc_fini(struct intel_guc *guc,
401 struct i915_guc_client *client)
Dave Gordon44a28b12015-08-12 15:43:41 +0100402{
Oscar Mateob09935a2017-03-22 10:39:53 -0700403 struct guc_stage_desc *desc;
Dave Gordon44a28b12015-08-12 15:43:41 +0100404
Oscar Mateob09935a2017-03-22 10:39:53 -0700405 desc = __get_stage_desc(client);
Oscar Mateo73b05532017-03-22 10:39:45 -0700406 memset(desc, 0, sizeof(*desc));
Dave Gordon44a28b12015-08-12 15:43:41 +0100407}
408
Dave Gordon7a9347f2016-09-12 21:19:37 +0100409/* Construct a Work Item and append it to the GuC's Work Queue */
Michal Wajdeczko776594d2016-12-15 19:53:21 +0000410static void guc_wq_item_append(struct i915_guc_client *client,
Dave Gordon7a9347f2016-09-12 21:19:37 +0100411 struct drm_i915_gem_request *rq)
Dave Gordon44a28b12015-08-12 15:43:41 +0100412{
Dave Gordon0a31afb2016-05-13 15:36:34 +0100413 /* wqi_len is in DWords, and does not include the one-word header */
414 const size_t wqi_size = sizeof(struct guc_wq_item);
Oscar Mateoada8c412017-09-12 14:36:37 -0700415 const u32 wqi_len = wqi_size / sizeof(u32) - 1;
Dave Gordonc18468c2016-08-09 15:19:22 +0100416 struct intel_engine_cs *engine = rq->engine;
Oscar Mateoada8c412017-09-12 14:36:37 -0700417 struct i915_gem_context *ctx = rq->ctx;
Chris Wilsonbd00e732017-03-23 23:00:00 +0000418 struct guc_process_desc *desc = __get_process_desc(client);
Dave Gordon44a28b12015-08-12 15:43:41 +0100419 struct guc_wq_item *wqi;
Michał Winiarskia529a1c2017-09-18 11:25:35 +0200420 u32 ring_tail, wq_off;
Dave Gordon44a28b12015-08-12 15:43:41 +0100421
Michał Winiarskia529a1c2017-09-18 11:25:35 +0200422 lockdep_assert_held(&client->wq_lock);
Dave Gordon0a31afb2016-05-13 15:36:34 +0100423
Michał Winiarskia529a1c2017-09-18 11:25:35 +0200424 ring_tail = intel_ring_set_tail(rq->ring, rq->tail) / sizeof(u64);
425 GEM_BUG_ON(ring_tail > WQ_RING_TAIL_MAX);
Dave Gordon44a28b12015-08-12 15:43:41 +0100426
427 /* For now workqueue item is 4 DWs; workqueue buffer is 2 pages. So we
428 * should not have the case where structure wqi is across page, neither
429 * wrapped to the beginning. This simplifies the implementation below.
430 *
431 * XXX: if not the case, we need save data to a temp wqi and copy it to
432 * workqueue buffer dw by dw.
433 */
Dave Gordon0a31afb2016-05-13 15:36:34 +0100434 BUILD_BUG_ON(wqi_size != 16);
Dave Gordon44a28b12015-08-12 15:43:41 +0100435
Michał Winiarskia529a1c2017-09-18 11:25:35 +0200436 /* Free space is guaranteed. */
437 wq_off = READ_ONCE(desc->tail);
438 GEM_BUG_ON(CIRC_SPACE(wq_off, READ_ONCE(desc->head),
439 GUC_WQ_SIZE) < wqi_size);
Chris Wilsondadd4812016-09-09 14:11:57 +0100440 GEM_BUG_ON(wq_off & (wqi_size - 1));
Dave Gordon0a31afb2016-05-13 15:36:34 +0100441
442 /* WQ starts from the page after doorbell / process_desc */
Michal Wajdeczko776594d2016-12-15 19:53:21 +0000443 wqi = client->vaddr + wq_off + GUC_DB_SIZE;
Dave Gordon44a28b12015-08-12 15:43:41 +0100444
Dave Gordon0a31afb2016-05-13 15:36:34 +0100445 /* Now fill in the 4-word work queue item */
Dave Gordon44a28b12015-08-12 15:43:41 +0100446 wqi->header = WQ_TYPE_INORDER |
Oscar Mateoada8c412017-09-12 14:36:37 -0700447 (wqi_len << WQ_LEN_SHIFT) |
448 (engine->guc_id << WQ_TARGET_SHIFT) |
449 WQ_NO_WCFLUSH_WAIT;
Dave Gordon44a28b12015-08-12 15:43:41 +0100450
Oscar Mateoada8c412017-09-12 14:36:37 -0700451 wqi->context_desc = lower_32_bits(intel_lr_context_descriptor(ctx, engine));
Dave Gordon44a28b12015-08-12 15:43:41 +0100452
Michał Winiarskia529a1c2017-09-18 11:25:35 +0200453 wqi->submit_element_info = ring_tail << WQ_RING_TAIL_SHIFT;
Chris Wilson65e47602016-10-28 13:58:49 +0100454 wqi->fence_id = rq->global_seqno;
Michał Winiarskia529a1c2017-09-18 11:25:35 +0200455
456 /* Postincrement WQ tail for next time. */
457 WRITE_ONCE(desc->tail, (wq_off + wqi_size) & (GUC_WQ_SIZE - 1));
Dave Gordon44a28b12015-08-12 15:43:41 +0100458}
459
Oscar Mateo397fce82017-03-22 10:39:52 -0700460static void guc_reset_wq(struct i915_guc_client *client)
461{
Chris Wilsonbd00e732017-03-23 23:00:00 +0000462 struct guc_process_desc *desc = __get_process_desc(client);
Oscar Mateo397fce82017-03-22 10:39:52 -0700463
464 desc->head = 0;
465 desc->tail = 0;
Oscar Mateo397fce82017-03-22 10:39:52 -0700466}
467
Michał Winiarski59db36c2017-09-14 12:51:23 +0200468static void guc_ring_doorbell(struct i915_guc_client *client)
Dave Gordon10d2c3e2016-06-13 17:57:31 +0100469{
Michał Winiarski59db36c2017-09-14 12:51:23 +0200470 struct guc_doorbell_info *db;
471 u32 cookie;
Dave Gordon10d2c3e2016-06-13 17:57:31 +0100472
Michał Winiarskia529a1c2017-09-18 11:25:35 +0200473 lockdep_assert_held(&client->wq_lock);
Dave Gordon10d2c3e2016-06-13 17:57:31 +0100474
Dave Gordon10d2c3e2016-06-13 17:57:31 +0100475 /* pointer of current doorbell cacheline */
Michał Winiarski59db36c2017-09-14 12:51:23 +0200476 db = __get_doorbell(client);
Dave Gordon10d2c3e2016-06-13 17:57:31 +0100477
Michał Winiarski59db36c2017-09-14 12:51:23 +0200478 /* we're not expecting the doorbell cookie to change behind our back */
479 cookie = READ_ONCE(db->cookie);
480 WARN_ON_ONCE(xchg(&db->cookie, cookie + 1) != cookie);
Dave Gordon10d2c3e2016-06-13 17:57:31 +0100481
Michał Winiarski59db36c2017-09-14 12:51:23 +0200482 /* XXX: doorbell was lost and need to acquire it again */
483 GEM_BUG_ON(db->db_status != GUC_DOORBELL_ENABLED);
Dave Gordon10d2c3e2016-06-13 17:57:31 +0100484}
485
Dave Gordon44a28b12015-08-12 15:43:41 +0100486/**
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200487 * i915_guc_submit() - Submit commands through GuC
488 * @engine: engine associated with the commands
Dave Gordon7c2c2702016-05-13 15:36:32 +0100489 *
490 * The only error here arises if the doorbell hardware isn't functioning
491 * as expected, which really shouln't happen.
Dave Gordon44a28b12015-08-12 15:43:41 +0100492 */
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200493static void i915_guc_submit(struct intel_engine_cs *engine)
Dave Gordon44a28b12015-08-12 15:43:41 +0100494{
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200495 struct drm_i915_private *dev_priv = engine->i915;
496 struct intel_guc *guc = &dev_priv->guc;
Dave Gordon7c2c2702016-05-13 15:36:32 +0100497 struct i915_guc_client *client = guc->execbuf_client;
Mika Kuoppalab620e872017-09-22 15:43:03 +0300498 struct intel_engine_execlists * const execlists = &engine->execlists;
499 struct execlist_port *port = execlists->port;
500 const unsigned int engine_id = engine->id;
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200501 unsigned int n;
Dave Gordon44a28b12015-08-12 15:43:41 +0100502
Mika Kuoppaladc2279e2017-10-10 14:48:57 +0300503 for (n = 0; n < execlists_num_ports(execlists); n++) {
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200504 struct drm_i915_gem_request *rq;
505 unsigned int count;
Akash Goeled4596ea2016-10-25 22:05:23 +0530506
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200507 rq = port_unpack(&port[n], &count);
508 if (rq && count == 0) {
509 port_set(&port[n], port_pack(rq, ++count));
Chris Wilson0c335182017-02-28 11:28:03 +0000510
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200511 if (i915_vma_is_map_and_fenceable(rq->ring->vma))
512 POSTING_READ_FW(GUC_STATUS);
Dave Gordon44a28b12015-08-12 15:43:41 +0100513
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200514 spin_lock(&client->wq_lock);
Dave Gordon0a31afb2016-05-13 15:36:34 +0100515
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200516 guc_wq_item_append(client, rq);
Michał Winiarski59db36c2017-09-14 12:51:23 +0200517 guc_ring_doorbell(client);
Dave Gordon44a28b12015-08-12 15:43:41 +0100518
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200519 client->submissions[engine_id] += 1;
520
521 spin_unlock(&client->wq_lock);
522 }
523 }
Chris Wilson34ba5a82016-11-29 12:10:24 +0000524}
525
Chris Wilson31de7352017-03-16 12:56:18 +0000526static void nested_enable_signaling(struct drm_i915_gem_request *rq)
527{
528 /* If we use dma_fence_enable_sw_signaling() directly, lockdep
529 * detects an ordering issue between the fence lockclass and the
530 * global_timeline. This circular dependency can only occur via 2
531 * different fences (but same fence lockclass), so we use the nesting
532 * annotation here to prevent the warn, equivalent to the nesting
533 * inside i915_gem_request_submit() for when we also enable the
534 * signaler.
535 */
536
537 if (test_and_set_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT,
538 &rq->fence.flags))
539 return;
540
541 GEM_BUG_ON(test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &rq->fence.flags));
542 trace_dma_fence_enable_signal(&rq->fence);
543
544 spin_lock_nested(&rq->lock, SINGLE_DEPTH_NESTING);
Chris Wilsonf7b02a52017-04-26 09:06:59 +0100545 intel_engine_enable_signaling(rq, true);
Chris Wilson31de7352017-03-16 12:56:18 +0000546 spin_unlock(&rq->lock);
547}
548
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100549static void port_assign(struct execlist_port *port,
550 struct drm_i915_gem_request *rq)
551{
552 GEM_BUG_ON(rq == port_request(port));
553
554 if (port_isset(port))
555 i915_gem_request_put(port_request(port));
556
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200557 port_set(port, port_pack(i915_gem_request_get(rq), port_count(port)));
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100558 nested_enable_signaling(rq);
559}
560
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200561static void i915_guc_dequeue(struct intel_engine_cs *engine)
Chris Wilson31de7352017-03-16 12:56:18 +0000562{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300563 struct intel_engine_execlists * const execlists = &engine->execlists;
564 struct execlist_port *port = execlists->port;
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200565 struct drm_i915_gem_request *last = NULL;
Mika Kuoppala76e70082017-09-22 15:43:07 +0300566 const struct execlist_port * const last_port =
567 &execlists->port[execlists->port_mask];
Chris Wilson31de7352017-03-16 12:56:18 +0000568 bool submit = false;
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200569 struct rb_node *rb;
570
571 if (port_isset(port))
572 port++;
Chris Wilson31de7352017-03-16 12:56:18 +0000573
Tvrtko Ursulin9f7886d2017-03-21 10:55:11 +0000574 spin_lock_irq(&engine->timeline->lock);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300575 rb = execlists->first;
576 GEM_BUG_ON(rb_first(&execlists->queue) != rb);
Chris Wilson31de7352017-03-16 12:56:18 +0000577 while (rb) {
Chris Wilson6c067572017-05-17 13:10:03 +0100578 struct i915_priolist *p = rb_entry(rb, typeof(*p), node);
579 struct drm_i915_gem_request *rq, *rn;
Chris Wilson31de7352017-03-16 12:56:18 +0000580
Chris Wilson6c067572017-05-17 13:10:03 +0100581 list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) {
582 if (last && rq->ctx != last->ctx) {
Mika Kuoppala76e70082017-09-22 15:43:07 +0300583 if (port == last_port) {
Chris Wilson6c067572017-05-17 13:10:03 +0100584 __list_del_many(&p->requests,
585 &rq->priotree.link);
586 goto done;
587 }
Chris Wilson31de7352017-03-16 12:56:18 +0000588
Michał Winiarskif63078a2017-05-23 12:23:59 +0200589 if (submit)
590 port_assign(port, last);
Chris Wilson6c067572017-05-17 13:10:03 +0100591 port++;
592 }
593
594 INIT_LIST_HEAD(&rq->priotree.link);
595 rq->priotree.priority = INT_MAX;
596
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200597 __i915_gem_request_submit(rq);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300598 trace_i915_gem_request_in(rq, port_index(port, execlists));
Chris Wilson6c067572017-05-17 13:10:03 +0100599 last = rq;
600 submit = true;
Chris Wilson31de7352017-03-16 12:56:18 +0000601 }
602
603 rb = rb_next(rb);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300604 rb_erase(&p->node, &execlists->queue);
Chris Wilson6c067572017-05-17 13:10:03 +0100605 INIT_LIST_HEAD(&p->requests);
606 if (p->priority != I915_PRIORITY_NORMAL)
Chris Wilsonc5cf9a92017-05-17 13:10:04 +0100607 kmem_cache_free(engine->i915->priorities, p);
Chris Wilson31de7352017-03-16 12:56:18 +0000608 }
Chris Wilson6c067572017-05-17 13:10:03 +0100609done:
Mika Kuoppalab620e872017-09-22 15:43:03 +0300610 execlists->first = rb;
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200611 if (submit) {
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100612 port_assign(port, last);
Chris Wilson4a118ec2017-10-23 22:32:36 +0100613 execlists_set_active(execlists, EXECLISTS_ACTIVE_USER);
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200614 i915_guc_submit(engine);
615 }
Tvrtko Ursulin9f7886d2017-03-21 10:55:11 +0000616 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson31de7352017-03-16 12:56:18 +0000617}
618
619static void i915_guc_irq_handler(unsigned long data)
620{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300621 struct intel_engine_cs * const engine = (struct intel_engine_cs *)data;
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300622 struct intel_engine_execlists * const execlists = &engine->execlists;
623 struct execlist_port *port = execlists->port;
Mika Kuoppala76e70082017-09-22 15:43:07 +0300624 const struct execlist_port * const last_port =
625 &execlists->port[execlists->port_mask];
Chris Wilson31de7352017-03-16 12:56:18 +0000626 struct drm_i915_gem_request *rq;
Chris Wilson31de7352017-03-16 12:56:18 +0000627
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200628 rq = port_request(&port[0]);
629 while (rq && i915_gem_request_completed(rq)) {
630 trace_i915_gem_request_out(rq);
631 i915_gem_request_put(rq);
632
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300633 execlists_port_complete(execlists, port);
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200634
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100635 rq = port_request(&port[0]);
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200636 }
Chris Wilson4a118ec2017-10-23 22:32:36 +0100637 if (!rq)
638 execlists_clear_active(execlists, EXECLISTS_ACTIVE_USER);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100639
Mika Kuoppala76e70082017-09-22 15:43:07 +0300640 if (!port_isset(last_port))
Michał Winiarski85e2fe62017-09-14 10:32:13 +0200641 i915_guc_dequeue(engine);
Chris Wilson31de7352017-03-16 12:56:18 +0000642}
643
Dave Gordon44a28b12015-08-12 15:43:41 +0100644/*
645 * Everything below here is concerned with setup & teardown, and is
646 * therefore not part of the somewhat time-critical batch-submission
647 * path of i915_guc_submit() above.
648 */
649
Dave Gordon84b7f882016-08-09 15:19:20 +0100650/* Check that a doorbell register is in the expected state */
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700651static bool doorbell_ok(struct intel_guc *guc, u16 db_id)
Dave Gordon84b7f882016-08-09 15:19:20 +0100652{
653 struct drm_i915_private *dev_priv = guc_to_i915(guc);
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700654 u32 drbregl;
655 bool valid;
Dave Gordon84b7f882016-08-09 15:19:20 +0100656
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700657 GEM_BUG_ON(db_id >= GUC_DOORBELL_INVALID);
658
659 drbregl = I915_READ(GEN8_DRBREGL(db_id));
660 valid = drbregl & GEN8_DRB_VALID;
661
662 if (test_bit(db_id, guc->doorbell_bitmap) == valid)
Dave Gordon84b7f882016-08-09 15:19:20 +0100663 return true;
664
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700665 DRM_DEBUG_DRIVER("Doorbell %d has unexpected state (0x%x): valid=%s\n",
666 db_id, drbregl, yesno(valid));
Dave Gordon84b7f882016-08-09 15:19:20 +0100667
668 return false;
669}
670
Dave Gordon4d757872016-06-13 17:57:34 +0100671/*
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700672 * If the GuC thinks that the doorbell is unassigned (e.g. because we reset and
673 * reloaded the GuC FW) we can use this function to tell the GuC to reassign the
674 * doorbell to the rightful owner.
675 */
676static int __reset_doorbell(struct i915_guc_client* client, u16 db_id)
677{
678 int err;
679
Oscar Mateo397fce82017-03-22 10:39:52 -0700680 __update_doorbell_desc(client, db_id);
681 err = __create_doorbell(client);
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700682 if (!err)
683 err = __destroy_doorbell(client);
684
685 return err;
686}
687
688/*
Oscar Mateo397fce82017-03-22 10:39:52 -0700689 * Set up & tear down each unused doorbell in turn, to ensure that all doorbell
690 * HW is (re)initialised. For that end, we might have to borrow the first
691 * client. Also, tell GuC about all the doorbells in use by all clients.
692 * We do this because the KMD, the GuC and the doorbell HW can easily go out of
693 * sync (e.g. we can reset the GuC, but not the doorbel HW).
Dave Gordon4d757872016-06-13 17:57:34 +0100694 */
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700695static int guc_init_doorbell_hw(struct intel_guc *guc)
Dave Gordon4d757872016-06-13 17:57:34 +0100696{
Dave Gordon4d757872016-06-13 17:57:34 +0100697 struct i915_guc_client *client = guc->execbuf_client;
Oscar Mateo397fce82017-03-22 10:39:52 -0700698 bool recreate_first_client = false;
699 u16 db_id;
700 int ret;
Dave Gordon4d757872016-06-13 17:57:34 +0100701
Oscar Mateo397fce82017-03-22 10:39:52 -0700702 /* For unused doorbells, make sure they are disabled */
703 for_each_clear_bit(db_id, guc->doorbell_bitmap, GUC_NUM_DOORBELLS) {
704 if (doorbell_ok(guc, db_id))
Dave Gordon8888cd02016-08-09 15:19:19 +0100705 continue;
706
Oscar Mateo397fce82017-03-22 10:39:52 -0700707 if (has_doorbell(client)) {
708 /* Borrow execbuf_client (we will recreate it later) */
709 destroy_doorbell(client);
710 recreate_first_client = true;
711 }
712
713 ret = __reset_doorbell(client, db_id);
714 WARN(ret, "Doorbell %u reset failed, err %d\n", db_id, ret);
Dave Gordon4d757872016-06-13 17:57:34 +0100715 }
716
Oscar Mateo397fce82017-03-22 10:39:52 -0700717 if (recreate_first_client) {
718 ret = __reserve_doorbell(client);
719 if (unlikely(ret)) {
720 DRM_ERROR("Couldn't re-reserve first client db: %d\n", ret);
721 return ret;
722 }
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700723
Oscar Mateo397fce82017-03-22 10:39:52 -0700724 __update_doorbell_desc(client, client->doorbell_id);
725 }
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700726
Oscar Mateo397fce82017-03-22 10:39:52 -0700727 /* Now for every client (and not only execbuf_client) make sure their
728 * doorbells are known by the GuC */
729 //for (client = client_list; client != NULL; client = client->next)
730 {
731 ret = __create_doorbell(client);
732 if (ret) {
733 DRM_ERROR("Couldn't recreate client %u doorbell: %d\n",
Oscar Mateob09935a2017-03-22 10:39:53 -0700734 client->stage_id, ret);
Oscar Mateo397fce82017-03-22 10:39:52 -0700735 return ret;
736 }
737 }
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700738
Oscar Mateo397fce82017-03-22 10:39:52 -0700739 /* Read back & verify all (used & unused) doorbell registers */
740 for (db_id = 0; db_id < GUC_NUM_DOORBELLS; ++db_id)
741 WARN_ON(!doorbell_ok(guc, db_id));
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700742
743 return 0;
Dave Gordon4d757872016-06-13 17:57:34 +0100744}
745
Dave Gordon44a28b12015-08-12 15:43:41 +0100746/**
747 * guc_client_alloc() - Allocate an i915_guc_client
Dave Gordon0daf5562016-06-10 18:29:25 +0100748 * @dev_priv: driver private data structure
Chris Wilsonceae5312016-08-17 13:42:42 +0100749 * @engines: The set of engines to enable for this client
Dave Gordon44a28b12015-08-12 15:43:41 +0100750 * @priority: four levels priority _CRITICAL, _HIGH, _NORMAL and _LOW
751 * The kernel client to replace ExecList submission is created with
752 * NORMAL priority. Priority of a client for scheduler can be HIGH,
753 * while a preemption context can use CRITICAL.
Alex Daifeda33e2015-10-19 16:10:54 -0700754 * @ctx: the context that owns the client (we use the default render
755 * context)
Dave Gordon44a28b12015-08-12 15:43:41 +0100756 *
Dave Gordon0d92a6a2016-04-19 16:08:34 +0100757 * Return: An i915_guc_client object if success, else NULL.
Dave Gordon44a28b12015-08-12 15:43:41 +0100758 */
Dave Gordon0daf5562016-06-10 18:29:25 +0100759static struct i915_guc_client *
760guc_client_alloc(struct drm_i915_private *dev_priv,
Joonas Lahtinenfaf65482017-10-06 11:49:40 +0300761 u32 engines,
762 u32 priority,
Dave Gordon0daf5562016-06-10 18:29:25 +0100763 struct i915_gem_context *ctx)
Dave Gordon44a28b12015-08-12 15:43:41 +0100764{
765 struct i915_guc_client *client;
Dave Gordon44a28b12015-08-12 15:43:41 +0100766 struct intel_guc *guc = &dev_priv->guc;
Chris Wilson8b797af2016-08-15 10:48:51 +0100767 struct i915_vma *vma;
Chris Wilson72aa0d82016-11-02 17:50:47 +0000768 void *vaddr;
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700769 int ret;
Dave Gordon44a28b12015-08-12 15:43:41 +0100770
771 client = kzalloc(sizeof(*client), GFP_KERNEL);
772 if (!client)
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700773 return ERR_PTR(-ENOMEM);
Dave Gordon44a28b12015-08-12 15:43:41 +0100774
Dave Gordon44a28b12015-08-12 15:43:41 +0100775 client->guc = guc;
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700776 client->owner = ctx;
Dave Gordone02757d2016-08-09 15:19:21 +0100777 client->engines = engines;
778 client->priority = priority;
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700779 client->doorbell_id = GUC_DOORBELL_INVALID;
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700780 spin_lock_init(&client->wq_lock);
Dave Gordon44a28b12015-08-12 15:43:41 +0100781
Oscar Mateob09935a2017-03-22 10:39:53 -0700782 ret = ida_simple_get(&guc->stage_ids, 0, GUC_MAX_STAGE_DESCRIPTORS,
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700783 GFP_KERNEL);
784 if (ret < 0)
785 goto err_client;
786
Oscar Mateob09935a2017-03-22 10:39:53 -0700787 client->stage_id = ret;
Dave Gordon44a28b12015-08-12 15:43:41 +0100788
789 /* The first page is doorbell/proc_desc. Two followed pages are wq. */
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000790 vma = intel_guc_allocate_vma(guc, GUC_DB_SIZE + GUC_WQ_SIZE);
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700791 if (IS_ERR(vma)) {
792 ret = PTR_ERR(vma);
793 goto err_id;
794 }
Dave Gordon44a28b12015-08-12 15:43:41 +0100795
Dave Gordon0d92a6a2016-04-19 16:08:34 +0100796 /* We'll keep just the first (doorbell/proc) page permanently kmap'd. */
Chris Wilson8b797af2016-08-15 10:48:51 +0100797 client->vma = vma;
Chris Wilson72aa0d82016-11-02 17:50:47 +0000798
799 vaddr = i915_gem_object_pin_map(vma->obj, I915_MAP_WB);
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700800 if (IS_ERR(vaddr)) {
801 ret = PTR_ERR(vaddr);
802 goto err_vma;
803 }
Chris Wilson72aa0d82016-11-02 17:50:47 +0000804 client->vaddr = vaddr;
Chris Wilsondadd4812016-09-09 14:11:57 +0100805
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700806 client->doorbell_offset = __select_cacheline(guc);
Dave Gordon44a28b12015-08-12 15:43:41 +0100807
808 /*
809 * Since the doorbell only requires a single cacheline, we can save
810 * space by putting the application process descriptor in the same
811 * page. Use the half of the page that doesn't include the doorbell.
812 */
813 if (client->doorbell_offset >= (GUC_DB_SIZE / 2))
814 client->proc_desc_offset = 0;
815 else
816 client->proc_desc_offset = (GUC_DB_SIZE / 2);
817
Dave Gordon7a9347f2016-09-12 21:19:37 +0100818 guc_proc_desc_init(guc, client);
Oscar Mateob09935a2017-03-22 10:39:53 -0700819 guc_stage_desc_init(guc, client);
Chris Wilson4d357af2016-11-29 12:10:23 +0000820
Oscar Mateo397fce82017-03-22 10:39:52 -0700821 ret = create_doorbell(client);
822 if (ret)
823 goto err_vaddr;
Dave Gordon44a28b12015-08-12 15:43:41 +0100824
Oscar Mateob09935a2017-03-22 10:39:53 -0700825 DRM_DEBUG_DRIVER("new priority %u client %p for engine(s) 0x%x: stage_id %u\n",
826 priority, client, client->engines, client->stage_id);
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700827 DRM_DEBUG_DRIVER("doorbell id %u, cacheline offset 0x%lx\n",
828 client->doorbell_id, client->doorbell_offset);
Dave Gordon44a28b12015-08-12 15:43:41 +0100829
830 return client;
Oscar Mateo397fce82017-03-22 10:39:52 -0700831
832err_vaddr:
833 i915_gem_object_unpin_map(client->vma->obj);
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700834err_vma:
835 i915_vma_unpin_and_release(&client->vma);
836err_id:
Oscar Mateob09935a2017-03-22 10:39:53 -0700837 ida_simple_remove(&guc->stage_ids, client->stage_id);
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700838err_client:
839 kfree(client);
Joonas Lahtinenabddffd2017-03-22 10:39:44 -0700840 return ERR_PTR(ret);
Dave Gordon44a28b12015-08-12 15:43:41 +0100841}
842
Oscar Mateo397fce82017-03-22 10:39:52 -0700843static void guc_client_free(struct i915_guc_client *client)
844{
845 /*
846 * XXX: wait for any outstanding submissions before freeing memory.
847 * Be sure to drop any locks
848 */
849
850 /* FIXME: in many cases, by the time we get here the GuC has been
851 * reset, so we cannot destroy the doorbell properly. Ignore the
852 * error message for now */
853 destroy_doorbell(client);
Oscar Mateob09935a2017-03-22 10:39:53 -0700854 guc_stage_desc_fini(client->guc, client);
Oscar Mateo397fce82017-03-22 10:39:52 -0700855 i915_gem_object_unpin_map(client->vma->obj);
856 i915_vma_unpin_and_release(&client->vma);
Oscar Mateob09935a2017-03-22 10:39:53 -0700857 ida_simple_remove(&client->guc->stage_ids, client->stage_id);
Oscar Mateo397fce82017-03-22 10:39:52 -0700858 kfree(client);
859}
860
Oscar Mateoe9eb8032017-09-12 14:36:35 -0700861static void guc_policy_init(struct guc_policy *policy)
862{
863 policy->execution_quantum = POLICY_DEFAULT_EXECUTION_QUANTUM_US;
864 policy->preemption_time = POLICY_DEFAULT_PREEMPTION_TIME_US;
865 policy->fault_time = POLICY_DEFAULT_FAULT_TIME_US;
866 policy->policy_flags = 0;
867}
868
Dave Gordon7a9347f2016-09-12 21:19:37 +0100869static void guc_policies_init(struct guc_policies *policies)
Alex Dai463704d2015-12-18 12:00:10 -0800870{
871 struct guc_policy *policy;
872 u32 p, i;
873
Oscar Mateoe9eb8032017-09-12 14:36:35 -0700874 policies->dpc_promote_time = POLICY_DEFAULT_DPC_PROMOTE_TIME_US;
Alex Dai463704d2015-12-18 12:00:10 -0800875 policies->max_num_work_items = POLICY_MAX_NUM_WI;
876
Oscar Mateob09935a2017-03-22 10:39:53 -0700877 for (p = 0; p < GUC_CLIENT_PRIORITY_NUM; p++) {
Alex Dai397097b2016-01-23 11:58:14 -0800878 for (i = GUC_RENDER_ENGINE; i < GUC_MAX_ENGINES_NUM; i++) {
Alex Dai463704d2015-12-18 12:00:10 -0800879 policy = &policies->policy[p][i];
880
Oscar Mateoe9eb8032017-09-12 14:36:35 -0700881 guc_policy_init(policy);
Alex Dai463704d2015-12-18 12:00:10 -0800882 }
883 }
884
885 policies->is_valid = 1;
886}
887
Michel Thierrya922c0c2017-09-13 09:56:01 +0100888/*
889 * The first 80 dwords of the register state context, containing the
890 * execlists and ppgtt registers.
891 */
892#define LR_HW_CONTEXT_SIZE (80 * sizeof(u32))
893
Oscar Mateo0704df22017-03-22 10:39:47 -0700894static int guc_ads_create(struct intel_guc *guc)
Alex Dai68371a92015-12-18 12:00:09 -0800895{
896 struct drm_i915_private *dev_priv = guc_to_i915(guc);
Chris Wilson8b797af2016-08-15 10:48:51 +0100897 struct i915_vma *vma;
Michal Wajdeczko16f11f42017-03-14 13:33:09 +0000898 struct page *page;
899 /* The ads obj includes the struct itself and buffers passed to GuC */
900 struct {
901 struct guc_ads ads;
902 struct guc_policies policies;
903 struct guc_mmio_reg_state reg_state;
904 u8 reg_state_buffer[GUC_S3_SAVE_SPACE_PAGES * PAGE_SIZE];
905 } __packed *blob;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000906 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +0530907 enum intel_engine_id id;
Michel Thierrya922c0c2017-09-13 09:56:01 +0100908 const u32 skipped_offset = LRC_HEADER_PAGES * PAGE_SIZE;
909 const u32 skipped_size = LRC_PPHWSP_SZ * PAGE_SIZE + LR_HW_CONTEXT_SIZE;
Michal Wajdeczko16f11f42017-03-14 13:33:09 +0000910 u32 base;
Alex Dai68371a92015-12-18 12:00:09 -0800911
Oscar Mateo3950bf32017-03-22 10:39:46 -0700912 GEM_BUG_ON(guc->ads_vma);
Alex Dai68371a92015-12-18 12:00:09 -0800913
Oscar Mateo3950bf32017-03-22 10:39:46 -0700914 vma = intel_guc_allocate_vma(guc, PAGE_ALIGN(sizeof(*blob)));
915 if (IS_ERR(vma))
916 return PTR_ERR(vma);
917
918 guc->ads_vma = vma;
Alex Dai68371a92015-12-18 12:00:09 -0800919
Chris Wilson8b797af2016-08-15 10:48:51 +0100920 page = i915_vma_first_page(vma);
Michal Wajdeczko16f11f42017-03-14 13:33:09 +0000921 blob = kmap(page);
922
923 /* GuC scheduling policies */
924 guc_policies_init(&blob->policies);
925
926 /* MMIO reg state */
927 for_each_engine(engine, dev_priv, id) {
Oscar Mateo35815ea2017-03-22 10:39:54 -0700928 blob->reg_state.white_list[engine->guc_id].mmio_start =
Michal Wajdeczko16f11f42017-03-14 13:33:09 +0000929 engine->mmio_base + GUC_MMIO_WHITE_LIST_START;
930
931 /* Nothing to be saved or restored for now. */
Oscar Mateo35815ea2017-03-22 10:39:54 -0700932 blob->reg_state.white_list[engine->guc_id].count = 0;
Michal Wajdeczko16f11f42017-03-14 13:33:09 +0000933 }
Alex Dai68371a92015-12-18 12:00:09 -0800934
935 /*
936 * The GuC requires a "Golden Context" when it reinitialises
937 * engines after a reset. Here we use the Render ring default
938 * context, which must already exist and be pinned in the GGTT,
939 * so its address won't change after we've told the GuC where
Michel Thierrya922c0c2017-09-13 09:56:01 +0100940 * to find it. Note that we have to skip our header (1 page),
941 * because our GuC shared data is there.
Alex Dai68371a92015-12-18 12:00:09 -0800942 */
Michal Wajdeczko16f11f42017-03-14 13:33:09 +0000943 blob->ads.golden_context_lrca =
Michel Thierrya922c0c2017-09-13 09:56:01 +0100944 guc_ggtt_offset(dev_priv->kernel_context->engine[RCS].state) + skipped_offset;
Alex Dai68371a92015-12-18 12:00:09 -0800945
Michel Thierrya922c0c2017-09-13 09:56:01 +0100946 /*
947 * The GuC expects us to exclude the portion of the context image that
948 * it skips from the size it is to read. It starts reading from after
949 * the execlist context (so skipping the first page [PPHWSP] and 80
950 * dwords). Weird guc is weird.
951 */
Akash Goel3b3f1652016-10-13 22:44:48 +0530952 for_each_engine(engine, dev_priv, id)
Michel Thierrya922c0c2017-09-13 09:56:01 +0100953 blob->ads.eng_state_size[engine->guc_id] = engine->context_size - skipped_size;
Alex Dai68371a92015-12-18 12:00:09 -0800954
Michal Wajdeczko16f11f42017-03-14 13:33:09 +0000955 base = guc_ggtt_offset(vma);
956 blob->ads.scheduler_policies = base + ptr_offset(blob, policies);
957 blob->ads.reg_state_buffer = base + ptr_offset(blob, reg_state_buffer);
958 blob->ads.reg_state_addr = base + ptr_offset(blob, reg_state);
Alex Dai5c148e02015-12-18 12:00:11 -0800959
Alex Dai68371a92015-12-18 12:00:09 -0800960 kunmap(page);
Oscar Mateo3950bf32017-03-22 10:39:46 -0700961
962 return 0;
963}
964
Oscar Mateo0704df22017-03-22 10:39:47 -0700965static void guc_ads_destroy(struct intel_guc *guc)
Oscar Mateo3950bf32017-03-22 10:39:46 -0700966{
967 i915_vma_unpin_and_release(&guc->ads_vma);
Alex Dai68371a92015-12-18 12:00:09 -0800968}
969
Alex Daibac427f2015-08-12 15:43:39 +0100970/*
Oscar Mateo397fce82017-03-22 10:39:52 -0700971 * Set up the memory resources to be shared with the GuC (via the GGTT)
972 * at firmware loading time.
Alex Daibac427f2015-08-12 15:43:39 +0100973 */
Dave Gordonbeffa512016-06-10 18:29:26 +0100974int i915_guc_submission_init(struct drm_i915_private *dev_priv)
Alex Daibac427f2015-08-12 15:43:39 +0100975{
Alex Daibac427f2015-08-12 15:43:39 +0100976 struct intel_guc *guc = &dev_priv->guc;
Chris Wilson8b797af2016-08-15 10:48:51 +0100977 struct i915_vma *vma;
Oscar Mateo73b05532017-03-22 10:39:45 -0700978 void *vaddr;
Oscar Mateo3950bf32017-03-22 10:39:46 -0700979 int ret;
Alex Daibac427f2015-08-12 15:43:39 +0100980
Oscar Mateob09935a2017-03-22 10:39:53 -0700981 if (guc->stage_desc_pool)
Oscar Mateo3950bf32017-03-22 10:39:46 -0700982 return 0;
Alex Daibac427f2015-08-12 15:43:39 +0100983
Oscar Mateob09935a2017-03-22 10:39:53 -0700984 vma = intel_guc_allocate_vma(guc,
985 PAGE_ALIGN(sizeof(struct guc_stage_desc) *
986 GUC_MAX_STAGE_DESCRIPTORS));
Chris Wilson8b797af2016-08-15 10:48:51 +0100987 if (IS_ERR(vma))
988 return PTR_ERR(vma);
Alex Daibac427f2015-08-12 15:43:39 +0100989
Oscar Mateob09935a2017-03-22 10:39:53 -0700990 guc->stage_desc_pool = vma;
Oscar Mateo73b05532017-03-22 10:39:45 -0700991
Oscar Mateob09935a2017-03-22 10:39:53 -0700992 vaddr = i915_gem_object_pin_map(guc->stage_desc_pool->obj, I915_MAP_WB);
Oscar Mateo3950bf32017-03-22 10:39:46 -0700993 if (IS_ERR(vaddr)) {
994 ret = PTR_ERR(vaddr);
995 goto err_vma;
996 }
Oscar Mateo73b05532017-03-22 10:39:45 -0700997
Oscar Mateob09935a2017-03-22 10:39:53 -0700998 guc->stage_desc_pool_vaddr = vaddr;
Oscar Mateo73b05532017-03-22 10:39:45 -0700999
Oscar Mateo3950bf32017-03-22 10:39:46 -07001000 ret = intel_guc_log_create(guc);
1001 if (ret < 0)
1002 goto err_vaddr;
1003
Oscar Mateo0704df22017-03-22 10:39:47 -07001004 ret = guc_ads_create(guc);
Oscar Mateo3950bf32017-03-22 10:39:46 -07001005 if (ret < 0)
1006 goto err_log;
1007
Oscar Mateob09935a2017-03-22 10:39:53 -07001008 ida_init(&guc->stage_ids);
Alex Dai68371a92015-12-18 12:00:09 -08001009
Alex Daibac427f2015-08-12 15:43:39 +01001010 return 0;
Chris Wilson4d357af2016-11-29 12:10:23 +00001011
Oscar Mateo3950bf32017-03-22 10:39:46 -07001012err_log:
1013 intel_guc_log_destroy(guc);
1014err_vaddr:
Oscar Mateob09935a2017-03-22 10:39:53 -07001015 i915_gem_object_unpin_map(guc->stage_desc_pool->obj);
Oscar Mateo3950bf32017-03-22 10:39:46 -07001016err_vma:
Oscar Mateob09935a2017-03-22 10:39:53 -07001017 i915_vma_unpin_and_release(&guc->stage_desc_pool);
Oscar Mateo3950bf32017-03-22 10:39:46 -07001018 return ret;
1019}
1020
1021void i915_guc_submission_fini(struct drm_i915_private *dev_priv)
1022{
1023 struct intel_guc *guc = &dev_priv->guc;
1024
Oscar Mateob09935a2017-03-22 10:39:53 -07001025 ida_destroy(&guc->stage_ids);
Oscar Mateo0704df22017-03-22 10:39:47 -07001026 guc_ads_destroy(guc);
Oscar Mateo3950bf32017-03-22 10:39:46 -07001027 intel_guc_log_destroy(guc);
Oscar Mateob09935a2017-03-22 10:39:53 -07001028 i915_gem_object_unpin_map(guc->stage_desc_pool->obj);
1029 i915_vma_unpin_and_release(&guc->stage_desc_pool);
Chris Wilson4d357af2016-11-29 12:10:23 +00001030}
1031
Tvrtko Ursulincbf4b772017-03-09 13:20:04 +00001032static void guc_interrupts_capture(struct drm_i915_private *dev_priv)
1033{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01001034 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Tvrtko Ursulincbf4b772017-03-09 13:20:04 +00001035 struct intel_engine_cs *engine;
1036 enum intel_engine_id id;
1037 int irqs;
1038
1039 /* tell all command streamers to forward interrupts (but not vblank) to GuC */
1040 irqs = _MASKED_BIT_ENABLE(GFX_INTERRUPT_STEERING);
1041 for_each_engine(engine, dev_priv, id)
1042 I915_WRITE(RING_MODE_GEN7(engine), irqs);
1043
1044 /* route USER_INTERRUPT to Host, all others are sent to GuC. */
1045 irqs = GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
1046 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
1047 /* These three registers have the same bit definitions */
1048 I915_WRITE(GUC_BCS_RCS_IER, ~irqs);
1049 I915_WRITE(GUC_VCS2_VCS1_IER, ~irqs);
1050 I915_WRITE(GUC_WD_VECS_IER, ~irqs);
Sagar Arun Kamble1f3b1fd2017-03-11 08:07:01 +05301051
1052 /*
1053 * The REDIRECT_TO_GUC bit of the PMINTRMSK register directs all
1054 * (unmasked) PM interrupts to the GuC. All other bits of this
1055 * register *disable* generation of a specific interrupt.
1056 *
1057 * 'pm_intrmsk_mbz' indicates bits that are NOT to be set when
1058 * writing to the PM interrupt mask register, i.e. interrupts
1059 * that must not be disabled.
1060 *
1061 * If the GuC is handling these interrupts, then we must not let
1062 * the PM code disable ANY interrupt that the GuC is expecting.
1063 * So for each ENABLED (0) bit in this register, we must SET the
1064 * bit in pm_intrmsk_mbz so that it's left enabled for the GuC.
1065 * GuC needs ARAT expired interrupt unmasked hence it is set in
1066 * pm_intrmsk_mbz.
1067 *
1068 * Here we CLEAR REDIRECT_TO_GUC bit in pm_intrmsk_mbz, which will
1069 * result in the register bit being left SET!
1070 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01001071 rps->pm_intrmsk_mbz |= ARAT_EXPIRED_INTRMSK;
1072 rps->pm_intrmsk_mbz &= ~GEN8_PMINTR_DISABLE_REDIRECT_TO_GUC;
Tvrtko Ursulincbf4b772017-03-09 13:20:04 +00001073}
1074
Oscar Mateo618ef002017-03-22 10:39:55 -07001075static void guc_interrupts_release(struct drm_i915_private *dev_priv)
1076{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01001077 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Oscar Mateo618ef002017-03-22 10:39:55 -07001078 struct intel_engine_cs *engine;
1079 enum intel_engine_id id;
1080 int irqs;
1081
1082 /*
1083 * tell all command streamers NOT to forward interrupts or vblank
1084 * to GuC.
1085 */
1086 irqs = _MASKED_FIELD(GFX_FORWARD_VBLANK_MASK, GFX_FORWARD_VBLANK_NEVER);
1087 irqs |= _MASKED_BIT_DISABLE(GFX_INTERRUPT_STEERING);
1088 for_each_engine(engine, dev_priv, id)
1089 I915_WRITE(RING_MODE_GEN7(engine), irqs);
1090
1091 /* route all GT interrupts to the host */
1092 I915_WRITE(GUC_BCS_RCS_IER, 0);
1093 I915_WRITE(GUC_VCS2_VCS1_IER, 0);
1094 I915_WRITE(GUC_WD_VECS_IER, 0);
1095
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01001096 rps->pm_intrmsk_mbz |= GEN8_PMINTR_DISABLE_REDIRECT_TO_GUC;
1097 rps->pm_intrmsk_mbz &= ~ARAT_EXPIRED_INTRMSK;
Oscar Mateo618ef002017-03-22 10:39:55 -07001098}
1099
Dave Gordonbeffa512016-06-10 18:29:26 +01001100int i915_guc_submission_enable(struct drm_i915_private *dev_priv)
Dave Gordon44a28b12015-08-12 15:43:41 +01001101{
Dave Gordon44a28b12015-08-12 15:43:41 +01001102 struct intel_guc *guc = &dev_priv->guc;
Chris Wilson4d357af2016-11-29 12:10:23 +00001103 struct i915_guc_client *client = guc->execbuf_client;
Chris Wilsonddd66c52016-08-02 22:50:31 +01001104 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05301105 enum intel_engine_id id;
Joonas Lahtinenabddffd2017-03-22 10:39:44 -07001106 int err;
Dave Gordon44a28b12015-08-12 15:43:41 +01001107
Michał Winiarski85e2fe62017-09-14 10:32:13 +02001108 /*
1109 * We're using GuC work items for submitting work through GuC. Since
1110 * we're coalescing multiple requests from a single context into a
1111 * single work item prior to assigning it to execlist_port, we can
1112 * never have more work items than the total number of ports (for all
1113 * engines). The GuC firmware is controlling the HEAD of work queue,
1114 * and it is guaranteed that it will remove the work item from the
1115 * queue before our request is completed.
1116 */
Mika Kuoppalab620e872017-09-22 15:43:03 +03001117 BUILD_BUG_ON(ARRAY_SIZE(engine->execlists.port) *
Michał Winiarski85e2fe62017-09-14 10:32:13 +02001118 sizeof(struct guc_wq_item) *
1119 I915_NUM_ENGINES > GUC_WQ_SIZE);
1120
Oscar Mateo397fce82017-03-22 10:39:52 -07001121 if (!client) {
1122 client = guc_client_alloc(dev_priv,
1123 INTEL_INFO(dev_priv)->ring_mask,
Oscar Mateob09935a2017-03-22 10:39:53 -07001124 GUC_CLIENT_PRIORITY_KMD_NORMAL,
Oscar Mateo397fce82017-03-22 10:39:52 -07001125 dev_priv->kernel_context);
1126 if (IS_ERR(client)) {
1127 DRM_ERROR("Failed to create GuC client for execbuf!\n");
1128 return PTR_ERR(client);
1129 }
1130
1131 guc->execbuf_client = client;
1132 }
Dave Gordon44a28b12015-08-12 15:43:41 +01001133
Joonas Lahtinenabddffd2017-03-22 10:39:44 -07001134 err = intel_guc_sample_forcewake(guc);
1135 if (err)
Oscar Mateo397fce82017-03-22 10:39:52 -07001136 goto err_execbuf_client;
Chris Wilson4d357af2016-11-29 12:10:23 +00001137
1138 guc_reset_wq(client);
Oscar Mateo397fce82017-03-22 10:39:52 -07001139
Joonas Lahtinenabddffd2017-03-22 10:39:44 -07001140 err = guc_init_doorbell_hw(guc);
1141 if (err)
Oscar Mateo397fce82017-03-22 10:39:52 -07001142 goto err_execbuf_client;
Alex Daif5d3c3e2015-08-18 14:34:47 -07001143
Chris Wilsonddd66c52016-08-02 22:50:31 +01001144 /* Take over from manual control of ELSP (execlists) */
Tvrtko Ursulincbf4b772017-03-09 13:20:04 +00001145 guc_interrupts_capture(dev_priv);
1146
Tvrtko Ursulincbf4b772017-03-09 13:20:04 +00001147 for_each_engine(engine, dev_priv, id) {
Mika Kuoppalab620e872017-09-22 15:43:03 +03001148 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson31de7352017-03-16 12:56:18 +00001149 /* The tasklet was initialised by execlists, and may be in
1150 * a state of flux (across a reset) and so we just want to
1151 * take over the callback without changing any other state
1152 * in the tasklet.
1153 */
Mika Kuoppalab620e872017-09-22 15:43:03 +03001154 execlists->irq_tasklet.func = i915_guc_irq_handler;
Chris Wilson31de7352017-03-16 12:56:18 +00001155 clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
Mika Kuoppalab620e872017-09-22 15:43:03 +03001156 tasklet_schedule(&execlists->irq_tasklet);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001157 }
1158
Dave Gordon44a28b12015-08-12 15:43:41 +01001159 return 0;
Oscar Mateo397fce82017-03-22 10:39:52 -07001160
1161err_execbuf_client:
1162 guc_client_free(guc->execbuf_client);
1163 guc->execbuf_client = NULL;
1164 return err;
Dave Gordon44a28b12015-08-12 15:43:41 +01001165}
1166
Dave Gordonbeffa512016-06-10 18:29:26 +01001167void i915_guc_submission_disable(struct drm_i915_private *dev_priv)
Dave Gordon44a28b12015-08-12 15:43:41 +01001168{
Dave Gordon44a28b12015-08-12 15:43:41 +01001169 struct intel_guc *guc = &dev_priv->guc;
1170
Sagar Arun Kamble7762ebb2017-03-11 08:06:59 +05301171 guc_interrupts_release(dev_priv);
1172
Chris Wilsonddd66c52016-08-02 22:50:31 +01001173 /* Revert back to manual ELSP submission */
Chris Wilsonff44ad52017-03-16 17:13:03 +00001174 intel_engines_reset_default_submission(dev_priv);
Oscar Mateo397fce82017-03-22 10:39:52 -07001175
1176 guc_client_free(guc->execbuf_client);
1177 guc->execbuf_client = NULL;
Dave Gordon44a28b12015-08-12 15:43:41 +01001178}