blob: 3c8eaae13732ac2f40220defc18442ff86e06c7b [file] [log] [blame]
Alex Dai33a732f2015-08-12 15:43:36 +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 * Authors:
24 * Vinit Azad <vinit.azad@intel.com>
25 * Ben Widawsky <ben@bwidawsk.net>
26 * Dave Gordon <david.s.gordon@intel.com>
27 * Alex Dai <yu.dai@intel.com>
28 */
29#include <linux/firmware.h>
30#include "i915_drv.h"
31#include "intel_guc.h"
32
33/**
Alex Daifeda33e2015-10-19 16:10:54 -070034 * DOC: GuC-specific firmware loader
Alex Dai33a732f2015-08-12 15:43:36 +010035 *
36 * intel_guc:
37 * Top level structure of guc. It handles firmware loading and manages client
38 * pool and doorbells. intel_guc owns a i915_guc_client to replace the legacy
39 * ExecList submission.
40 *
41 * Firmware versioning:
42 * The firmware build process will generate a version header file with major and
43 * minor version defined. The versions are built into CSS header of firmware.
44 * i915 kernel driver set the minimal firmware version required per platform.
45 * The firmware installation package will install (symbolic link) proper version
46 * of firmware.
47 *
48 * GuC address space:
49 * GuC does not allow any gfx GGTT address that falls into range [0, WOPCM_TOP),
50 * which is reserved for Boot ROM, SRAM and WOPCM. Currently this top address is
51 * 512K. In order to exclude 0-512K address space from GGTT, all gfx objects
52 * used by GuC is pinned with PIN_OFFSET_BIAS along with size of WOPCM.
53 *
54 * Firmware log:
55 * Firmware log is enabled by setting i915.guc_log_level to non-negative level.
56 * Log data is printed out via reading debugfs i915_guc_log_dump. Reading from
57 * i915_guc_load_status will print out firmware loading status and scratch
58 * registers value.
59 *
60 */
61
Tvrtko Ursulin5e334c12016-08-10 16:16:46 +010062#define SKL_FW_MAJOR 6
63#define SKL_FW_MINOR 1
64
65#define BXT_FW_MAJOR 8
66#define BXT_FW_MINOR 7
67
68#define KBL_FW_MAJOR 9
69#define KBL_FW_MINOR 14
70
71#define GUC_FW_PATH(platform, major, minor) \
72 "i915/" __stringify(platform) "_guc_ver" __stringify(major) "_" __stringify(minor) ".bin"
73
74#define I915_SKL_GUC_UCODE GUC_FW_PATH(skl, SKL_FW_MAJOR, SKL_FW_MINOR)
Alex Dai33a732f2015-08-12 15:43:36 +010075MODULE_FIRMWARE(I915_SKL_GUC_UCODE);
76
Tvrtko Ursulin5e334c12016-08-10 16:16:46 +010077#define I915_BXT_GUC_UCODE GUC_FW_PATH(bxt, BXT_FW_MAJOR, BXT_FW_MINOR)
Nick Hoath57bf5c82016-05-06 11:42:53 +010078MODULE_FIRMWARE(I915_BXT_GUC_UCODE);
79
Tvrtko Ursulin5e334c12016-08-10 16:16:46 +010080#define I915_KBL_GUC_UCODE GUC_FW_PATH(kbl, KBL_FW_MAJOR, KBL_FW_MINOR)
Peter Antoineff64cc12016-06-30 09:37:52 -070081MODULE_FIRMWARE(I915_KBL_GUC_UCODE);
82
Alex Dai33a732f2015-08-12 15:43:36 +010083/* User-friendly representation of an enum */
84const char *intel_guc_fw_status_repr(enum intel_guc_fw_status status)
85{
86 switch (status) {
87 case GUC_FIRMWARE_FAIL:
88 return "FAIL";
89 case GUC_FIRMWARE_NONE:
90 return "NONE";
91 case GUC_FIRMWARE_PENDING:
92 return "PENDING";
93 case GUC_FIRMWARE_SUCCESS:
94 return "SUCCESS";
95 default:
96 return "UNKNOWN!";
97 }
98};
99
Dave Gordon0c5664e2016-09-12 21:19:36 +0100100static void guc_interrupts_release(struct drm_i915_private *dev_priv)
Dave Gordon4df001d2015-08-12 15:43:42 +0100101{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000102 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +0530103 enum intel_engine_id id;
Dave Gordonb4ac5af2016-03-24 11:20:38 +0000104 int irqs;
Dave Gordon4df001d2015-08-12 15:43:42 +0100105
Dave Gordonfa7545a2016-06-24 15:57:57 +0100106 /* tell all command streamers NOT to forward interrupts or vblank to GuC */
Dave Gordon4df001d2015-08-12 15:43:42 +0100107 irqs = _MASKED_FIELD(GFX_FORWARD_VBLANK_MASK, GFX_FORWARD_VBLANK_NEVER);
108 irqs |= _MASKED_BIT_DISABLE(GFX_INTERRUPT_STEERING);
Akash Goel3b3f1652016-10-13 22:44:48 +0530109 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000110 I915_WRITE(RING_MODE_GEN7(engine), irqs);
Dave Gordon4df001d2015-08-12 15:43:42 +0100111
Dave Gordon4df001d2015-08-12 15:43:42 +0100112 /* route all GT interrupts to the host */
113 I915_WRITE(GUC_BCS_RCS_IER, 0);
114 I915_WRITE(GUC_VCS2_VCS1_IER, 0);
115 I915_WRITE(GUC_WD_VECS_IER, 0);
116}
117
Dave Gordon0c5664e2016-09-12 21:19:36 +0100118static void guc_interrupts_capture(struct drm_i915_private *dev_priv)
Dave Gordon4df001d2015-08-12 15:43:42 +0100119{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000120 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +0530121 enum intel_engine_id id;
Dave Gordonb4ac5af2016-03-24 11:20:38 +0000122 int irqs;
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +0530123 u32 tmp;
Dave Gordon4df001d2015-08-12 15:43:42 +0100124
Dave Gordonfa7545a2016-06-24 15:57:57 +0100125 /* tell all command streamers to forward interrupts (but not vblank) to GuC */
126 irqs = _MASKED_BIT_ENABLE(GFX_INTERRUPT_STEERING);
Akash Goel3b3f1652016-10-13 22:44:48 +0530127 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000128 I915_WRITE(RING_MODE_GEN7(engine), irqs);
Dave Gordon4df001d2015-08-12 15:43:42 +0100129
Dave Gordon4df001d2015-08-12 15:43:42 +0100130 /* route USER_INTERRUPT to Host, all others are sent to GuC. */
131 irqs = GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
132 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
133 /* These three registers have the same bit definitions */
134 I915_WRITE(GUC_BCS_RCS_IER, ~irqs);
135 I915_WRITE(GUC_VCS2_VCS1_IER, ~irqs);
136 I915_WRITE(GUC_WD_VECS_IER, ~irqs);
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +0530137
138 /*
Dave Gordonb20e3cf2016-09-12 21:19:35 +0100139 * The REDIRECT_TO_GUC bit of the PMINTRMSK register directs all
140 * (unmasked) PM interrupts to the GuC. All other bits of this
141 * register *disable* generation of a specific interrupt.
142 *
143 * 'pm_intr_keep' indicates bits that are NOT to be set when
144 * writing to the PM interrupt mask register, i.e. interrupts
145 * that must not be disabled.
146 *
147 * If the GuC is handling these interrupts, then we must not let
148 * the PM code disable ANY interrupt that the GuC is expecting.
149 * So for each ENABLED (0) bit in this register, we must SET the
150 * bit in pm_intr_keep so that it's left enabled for the GuC.
151 *
152 * OTOH the REDIRECT_TO_GUC bit is initially SET in pm_intr_keep
153 * (so interrupts go to the DISPLAY unit at first); but here we
154 * need to CLEAR that bit, which will result in the register bit
155 * being left SET!
156 */
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +0530157 tmp = I915_READ(GEN6_PMINTRMSK);
Dave Gordonb20e3cf2016-09-12 21:19:35 +0100158 if (tmp & GEN8_PMINTR_REDIRECT_TO_GUC) {
159 dev_priv->rps.pm_intr_keep |= ~tmp;
160 dev_priv->rps.pm_intr_keep &= ~GEN8_PMINTR_REDIRECT_TO_GUC;
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +0530161 }
Dave Gordon4df001d2015-08-12 15:43:42 +0100162}
163
Alex Dai33a732f2015-08-12 15:43:36 +0100164static u32 get_gttype(struct drm_i915_private *dev_priv)
165{
166 /* XXX: GT type based on PCI device ID? field seems unused by fw */
167 return 0;
168}
169
170static u32 get_core_family(struct drm_i915_private *dev_priv)
171{
Dave Gordonfc32de92016-08-18 18:17:24 +0100172 u32 gen = INTEL_GEN(dev_priv);
173
174 switch (gen) {
Alex Dai33a732f2015-08-12 15:43:36 +0100175 case 9:
176 return GFXCORE_FAMILY_GEN9;
177
178 default:
Dave Gordonfc32de92016-08-18 18:17:24 +0100179 WARN(1, "GEN%d does not support GuC operation!\n", gen);
Alex Dai33a732f2015-08-12 15:43:36 +0100180 return GFXCORE_FAMILY_UNKNOWN;
181 }
182}
183
Dave Gordon0c5664e2016-09-12 21:19:36 +0100184/*
185 * Initialise the GuC parameter block before starting the firmware
186 * transfer. These parameters are read by the firmware on startup
187 * and cannot be changed thereafter.
188 */
189static void guc_params_init(struct drm_i915_private *dev_priv)
Alex Dai33a732f2015-08-12 15:43:36 +0100190{
191 struct intel_guc *guc = &dev_priv->guc;
192 u32 params[GUC_CTL_MAX_DWORDS];
193 int i;
194
195 memset(&params, 0, sizeof(params));
196
197 params[GUC_CTL_DEVICE_INFO] |=
198 (get_gttype(dev_priv) << GUC_CTL_GTTYPE_SHIFT) |
199 (get_core_family(dev_priv) << GUC_CTL_COREFAMILY_SHIFT);
200
201 /*
202 * GuC ARAT increment is 10 ns. GuC default scheduler quantum is one
203 * second. This ARAR is calculated by:
204 * Scheduler-Quantum-in-ns / ARAT-increment-in-ns = 1000000000 / 10
205 */
206 params[GUC_CTL_ARAT_HIGH] = 0;
207 params[GUC_CTL_ARAT_LOW] = 100000000;
208
209 params[GUC_CTL_WA] |= GUC_CTL_WA_UK_BY_DRIVER;
210
211 params[GUC_CTL_FEATURE] |= GUC_CTL_DISABLE_SCHEDULER |
212 GUC_CTL_VCS2_ENABLED;
213
214 if (i915.guc_log_level >= 0) {
215 params[GUC_CTL_LOG_PARAMS] = guc->log_flags;
216 params[GUC_CTL_DEBUG] =
217 i915.guc_log_level << GUC_LOG_VERBOSITY_SHIFT;
218 }
219
Chris Wilson8b797af2016-08-15 10:48:51 +0100220 if (guc->ads_vma) {
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100221 u32 ads = i915_ggtt_offset(guc->ads_vma) >> PAGE_SHIFT;
Alex Daib6a5cd72015-12-18 12:00:12 -0800222 params[GUC_CTL_DEBUG] |= ads << GUC_ADS_ADDR_SHIFT;
223 params[GUC_CTL_DEBUG] |= GUC_ADS_ENABLED;
224 }
225
Alex Daibac427f2015-08-12 15:43:39 +0100226 /* If GuC submission is enabled, set up additional parameters here */
227 if (i915.enable_guc_submission) {
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100228 u32 pgs = i915_ggtt_offset(dev_priv->guc.ctx_pool_vma);
Alex Daibac427f2015-08-12 15:43:39 +0100229 u32 ctx_in_16 = GUC_MAX_GPU_CONTEXTS / 16;
230
231 pgs >>= PAGE_SHIFT;
232 params[GUC_CTL_CTXINFO] = (pgs << GUC_CTL_BASE_ADDR_SHIFT) |
233 (ctx_in_16 << GUC_CTL_CTXNUM_IN16_SHIFT);
234
235 params[GUC_CTL_FEATURE] |= GUC_CTL_KERNEL_SUBMISSIONS;
236
237 /* Unmask this bit to enable the GuC's internal scheduler */
238 params[GUC_CTL_FEATURE] &= ~GUC_CTL_DISABLE_SCHEDULER;
239 }
240
Alex Dai33a732f2015-08-12 15:43:36 +0100241 I915_WRITE(SOFT_SCRATCH(0), 0);
242
243 for (i = 0; i < GUC_CTL_MAX_DWORDS; i++)
244 I915_WRITE(SOFT_SCRATCH(1 + i), params[i]);
245}
246
247/*
248 * Read the GuC status register (GUC_STATUS) and store it in the
249 * specified location; then return a boolean indicating whether
250 * the value matches either of two values representing completion
251 * of the GuC boot process.
252 *
Tvrtko Ursulin36894e82016-02-11 10:27:31 +0000253 * This is used for polling the GuC status in a wait_for()
Alex Dai33a732f2015-08-12 15:43:36 +0100254 * loop below.
255 */
256static inline bool guc_ucode_response(struct drm_i915_private *dev_priv,
257 u32 *status)
258{
259 u32 val = I915_READ(GUC_STATUS);
Alex Dai0d44d3f2015-09-22 13:48:40 -0700260 u32 uk_val = val & GS_UKERNEL_MASK;
Alex Dai33a732f2015-08-12 15:43:36 +0100261 *status = val;
Alex Dai0d44d3f2015-09-22 13:48:40 -0700262 return (uk_val == GS_UKERNEL_READY ||
263 ((val & GS_MIA_CORE_STATE) && uk_val == GS_UKERNEL_LAPIC_DONE));
Alex Dai33a732f2015-08-12 15:43:36 +0100264}
265
266/*
267 * Transfer the firmware image to RAM for execution by the microcontroller.
268 *
Alex Dai33a732f2015-08-12 15:43:36 +0100269 * Architecturally, the DMA engine is bidirectional, and can potentially even
270 * transfer between GTT locations. This functionality is left out of the API
271 * for now as there is no need for it.
272 *
273 * Note that GuC needs the CSS header plus uKernel code to be copied by the
274 * DMA engine in one operation, whereas the RSA signature is loaded via MMIO.
275 */
Chris Wilson058d88c2016-08-15 10:49:06 +0100276static int guc_ucode_xfer_dma(struct drm_i915_private *dev_priv,
277 struct i915_vma *vma)
Alex Dai33a732f2015-08-12 15:43:36 +0100278{
279 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
Alex Dai33a732f2015-08-12 15:43:36 +0100280 unsigned long offset;
Chris Wilson058d88c2016-08-15 10:49:06 +0100281 struct sg_table *sg = vma->pages;
Alex Daifeda33e2015-10-19 16:10:54 -0700282 u32 status, rsa[UOS_RSA_SCRATCH_MAX_COUNT];
Alex Dai33a732f2015-08-12 15:43:36 +0100283 int i, ret = 0;
284
Alex Daifeda33e2015-10-19 16:10:54 -0700285 /* where RSA signature starts */
286 offset = guc_fw->rsa_offset;
Alex Dai33a732f2015-08-12 15:43:36 +0100287
288 /* Copy RSA signature from the fw image to HW for verification */
Alex Daifeda33e2015-10-19 16:10:54 -0700289 sg_pcopy_to_buffer(sg->sgl, sg->nents, rsa, sizeof(rsa), offset);
290 for (i = 0; i < UOS_RSA_SCRATCH_MAX_COUNT; i++)
Ville Syrjäläab9cc552015-09-18 20:03:24 +0300291 I915_WRITE(UOS_RSA_SCRATCH(i), rsa[i]);
Alex Dai33a732f2015-08-12 15:43:36 +0100292
Alex Daifeda33e2015-10-19 16:10:54 -0700293 /* The header plus uCode will be copied to WOPCM via DMA, excluding any
294 * other components */
295 I915_WRITE(DMA_COPY_SIZE, guc_fw->header_size + guc_fw->ucode_size);
296
Alex Dai33a732f2015-08-12 15:43:36 +0100297 /* Set the source address for the new blob */
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100298 offset = i915_ggtt_offset(vma) + guc_fw->header_offset;
Alex Dai33a732f2015-08-12 15:43:36 +0100299 I915_WRITE(DMA_ADDR_0_LOW, lower_32_bits(offset));
300 I915_WRITE(DMA_ADDR_0_HIGH, upper_32_bits(offset) & 0xFFFF);
301
302 /*
303 * Set the DMA destination. Current uCode expects the code to be
304 * loaded at 8k; locations below this are used for the stack.
305 */
306 I915_WRITE(DMA_ADDR_1_LOW, 0x2000);
307 I915_WRITE(DMA_ADDR_1_HIGH, DMA_ADDRESS_SPACE_WOPCM);
308
309 /* Finally start the DMA */
310 I915_WRITE(DMA_CTRL, _MASKED_BIT_ENABLE(UOS_MOVE | START_DMA));
311
312 /*
Tvrtko Ursulin36894e82016-02-11 10:27:31 +0000313 * Wait for the DMA to complete & the GuC to start up.
Alex Dai33a732f2015-08-12 15:43:36 +0100314 * NB: Docs recommend not using the interrupt for completion.
315 * Measurements indicate this should take no more than 20ms, so a
316 * timeout here indicates that the GuC has failed and is unusable.
317 * (Higher levels of the driver will attempt to fall back to
318 * execlist mode if this happens.)
319 */
Tvrtko Ursulin36894e82016-02-11 10:27:31 +0000320 ret = wait_for(guc_ucode_response(dev_priv, &status), 100);
Alex Dai33a732f2015-08-12 15:43:36 +0100321
322 DRM_DEBUG_DRIVER("DMA status 0x%x, GuC status 0x%x\n",
323 I915_READ(DMA_CTRL), status);
324
325 if ((status & GS_BOOTROM_MASK) == GS_BOOTROM_RSA_FAILED) {
326 DRM_ERROR("GuC firmware signature verification failed\n");
327 ret = -ENOEXEC;
328 }
329
330 DRM_DEBUG_DRIVER("returning %d\n", ret);
331
332 return ret;
333}
334
Peter Antoine74aa1562016-05-17 15:12:45 +0100335static u32 guc_wopcm_size(struct drm_i915_private *dev_priv)
336{
337 u32 wopcm_size = GUC_WOPCM_TOP;
338
339 /* On BXT, the top of WOPCM is reserved for RC6 context */
340 if (IS_BROXTON(dev_priv))
341 wopcm_size -= BXT_GUC_WOPCM_RC6_RESERVED;
342
343 return wopcm_size;
344}
345
Alex Dai33a732f2015-08-12 15:43:36 +0100346/*
347 * Load the GuC firmware blob into the MinuteIA.
348 */
349static int guc_ucode_xfer(struct drm_i915_private *dev_priv)
350{
351 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
Chris Wilson058d88c2016-08-15 10:49:06 +0100352 struct i915_vma *vma;
Alex Dai33a732f2015-08-12 15:43:36 +0100353 int ret;
354
355 ret = i915_gem_object_set_to_gtt_domain(guc_fw->guc_fw_obj, false);
356 if (ret) {
357 DRM_DEBUG_DRIVER("set-domain failed %d\n", ret);
358 return ret;
359 }
360
Chris Wilson058d88c2016-08-15 10:49:06 +0100361 vma = i915_gem_object_ggtt_pin(guc_fw->guc_fw_obj, NULL, 0, 0, 0);
362 if (IS_ERR(vma)) {
363 DRM_DEBUG_DRIVER("pin failed %d\n", (int)PTR_ERR(vma));
364 return PTR_ERR(vma);
Alex Dai33a732f2015-08-12 15:43:36 +0100365 }
366
367 /* Invalidate GuC TLB to let GuC take the latest updates to GTT. */
368 I915_WRITE(GEN8_GTCR, GEN8_GTCR_INVALIDATE);
369
370 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
371
372 /* init WOPCM */
Peter Antoine74aa1562016-05-17 15:12:45 +0100373 I915_WRITE(GUC_WOPCM_SIZE, guc_wopcm_size(dev_priv));
Alex Dai33a732f2015-08-12 15:43:36 +0100374 I915_WRITE(DMA_GUC_WOPCM_OFFSET, GUC_WOPCM_OFFSET_VALUE);
375
376 /* Enable MIA caching. GuC clock gating is disabled. */
377 I915_WRITE(GUC_SHIM_CONTROL, GUC_SHIM_CONTROL_VALUE);
378
Jani Nikulaa117f372016-09-16 16:59:44 +0300379 /* WaDisableMinuteIaClockGating:bxt */
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100380 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1)) {
Nick Hoathb970b482015-09-08 10:31:53 +0100381 I915_WRITE(GUC_SHIM_CONTROL, (I915_READ(GUC_SHIM_CONTROL) &
382 ~GUC_ENABLE_MIA_CLOCK_GATING));
383 }
384
Jani Nikula4ff40a42016-09-26 15:07:51 +0300385 /* WaC6DisallowByGfxPause:bxt */
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100386 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_B0))
Tim Gore65fe29e2016-07-20 11:00:25 +0100387 I915_WRITE(GEN6_GFXPAUSE, 0x30FFF);
Alex Dai33a732f2015-08-12 15:43:36 +0100388
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100389 if (IS_BROXTON(dev_priv))
Alex Dai33a732f2015-08-12 15:43:36 +0100390 I915_WRITE(GEN9LP_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
391 else
392 I915_WRITE(GEN9_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
393
Tvrtko Ursulin5db94012016-10-13 11:03:10 +0100394 if (IS_GEN9(dev_priv)) {
Alex Dai33a732f2015-08-12 15:43:36 +0100395 /* DOP Clock Gating Enable for GuC clocks */
396 I915_WRITE(GEN7_MISCCPCTL, (GEN8_DOP_CLOCK_GATE_GUC_ENABLE |
397 I915_READ(GEN7_MISCCPCTL)));
398
Dave Gordon0c5664e2016-09-12 21:19:36 +0100399 /* allows for 5us (in 10ns units) before GT can go to RC6 */
Alex Dai33a732f2015-08-12 15:43:36 +0100400 I915_WRITE(GUC_ARAT_C6DIS, 0x1FF);
401 }
402
Dave Gordon0c5664e2016-09-12 21:19:36 +0100403 guc_params_init(dev_priv);
Alex Dai33a732f2015-08-12 15:43:36 +0100404
Chris Wilson058d88c2016-08-15 10:49:06 +0100405 ret = guc_ucode_xfer_dma(dev_priv, vma);
Alex Dai33a732f2015-08-12 15:43:36 +0100406
407 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
408
409 /*
410 * We keep the object pages for reuse during resume. But we can unpin it
411 * now that DMA has completed, so it doesn't continue to take up space.
412 */
Chris Wilson058d88c2016-08-15 10:49:06 +0100413 i915_vma_unpin(vma);
Alex Dai33a732f2015-08-12 15:43:36 +0100414
415 return ret;
416}
417
Dave Gordon0c5664e2016-09-12 21:19:36 +0100418static int guc_hw_reset(struct drm_i915_private *dev_priv)
Arun Siluvery6b332fa2016-04-04 18:50:56 +0100419{
420 int ret;
421 u32 guc_status;
422
423 ret = intel_guc_reset(dev_priv);
424 if (ret) {
425 DRM_ERROR("GuC reset failed, ret = %d\n", ret);
426 return ret;
427 }
428
429 guc_status = I915_READ(GUC_STATUS);
430 WARN(!(guc_status & GS_MIA_IN_RESET),
431 "GuC status: 0x%x, MIA core expected to be in reset\n", guc_status);
432
433 return ret;
434}
435
Alex Dai33a732f2015-08-12 15:43:36 +0100436/**
Dave Gordonf09d6752016-05-13 15:36:29 +0100437 * intel_guc_setup() - finish preparing the GuC for activity
Alex Dai33a732f2015-08-12 15:43:36 +0100438 * @dev: drm device
439 *
440 * Called from gem_init_hw() during driver loading and also after a GPU reset.
441 *
Dave Gordonf09d6752016-05-13 15:36:29 +0100442 * The main action required here it to load the GuC uCode into the device.
Alex Dai33a732f2015-08-12 15:43:36 +0100443 * The firmware image should have already been fetched into memory by the
Dave Gordonf09d6752016-05-13 15:36:29 +0100444 * earlier call to intel_guc_init(), so here we need only check that worked,
445 * and then transfer the image to the h/w.
Alex Dai33a732f2015-08-12 15:43:36 +0100446 *
447 * Return: non-zero code on error
448 */
Dave Gordonf09d6752016-05-13 15:36:29 +0100449int intel_guc_setup(struct drm_device *dev)
Alex Dai33a732f2015-08-12 15:43:36 +0100450{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100451 struct drm_i915_private *dev_priv = to_i915(dev);
Alex Dai33a732f2015-08-12 15:43:36 +0100452 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
Dave Gordonfce91f22016-05-20 11:42:42 +0100453 const char *fw_path = guc_fw->guc_fw_path;
454 int retries, ret, err;
Alex Dai33a732f2015-08-12 15:43:36 +0100455
Dave Gordonfce91f22016-05-20 11:42:42 +0100456 DRM_DEBUG_DRIVER("GuC fw status: path %s, fetch %s, load %s\n",
457 fw_path,
458 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status),
459 intel_guc_fw_status_repr(guc_fw->guc_fw_load_status));
460
461 /* Loading forbidden, or no firmware to load? */
462 if (!i915.enable_guc_loading) {
463 err = 0;
464 goto fail;
Dave Gordone556f7c2016-06-07 09:14:49 +0100465 } else if (fw_path == NULL) {
466 /* Device is known to have no uCode (e.g. no GuC) */
467 err = -ENXIO;
468 goto fail;
469 } else if (*fw_path == '\0') {
470 /* Device has a GuC but we don't know what f/w to load? */
Dave Gordonfc32de92016-08-18 18:17:24 +0100471 WARN(1, "No GuC firmware known for this platform!\n");
Dave Gordonfce91f22016-05-20 11:42:42 +0100472 err = -ENODEV;
473 goto fail;
474 }
475
476 /* Fetch failed, or already fetched but failed to load? */
477 if (guc_fw->guc_fw_fetch_status != GUC_FIRMWARE_SUCCESS) {
478 err = -EIO;
479 goto fail;
480 } else if (guc_fw->guc_fw_load_status == GUC_FIRMWARE_FAIL) {
481 err = -ENOEXEC;
482 goto fail;
483 }
484
Dave Gordon0c5664e2016-09-12 21:19:36 +0100485 guc_interrupts_release(dev_priv);
Dave Gordonfce91f22016-05-20 11:42:42 +0100486
487 guc_fw->guc_fw_load_status = GUC_FIRMWARE_PENDING;
Daniel Vetter9f9e5392015-10-23 11:10:59 +0200488
Alex Dai33a732f2015-08-12 15:43:36 +0100489 DRM_DEBUG_DRIVER("GuC fw status: fetch %s, load %s\n",
490 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status),
491 intel_guc_fw_status_repr(guc_fw->guc_fw_load_status));
492
Dave Gordonbeffa512016-06-10 18:29:26 +0100493 err = i915_guc_submission_init(dev_priv);
Alex Daibac427f2015-08-12 15:43:39 +0100494 if (err)
495 goto fail;
496
Arun Siluvery6b332fa2016-04-04 18:50:56 +0100497 /*
498 * WaEnableuKernelHeaderValidFix:skl,bxt
499 * For BXT, this is only upto B0 but below WA is required for later
500 * steppings also so this is extended as well.
501 */
502 /* WaEnableGuCBootHashCheckNotSet:skl,bxt */
Dave Gordond7617012016-04-04 18:50:57 +0100503 for (retries = 3; ; ) {
504 /*
505 * Always reset the GuC just before (re)loading, so
506 * that the state and timing are fairly predictable
507 */
Dave Gordon0c5664e2016-09-12 21:19:36 +0100508 err = guc_hw_reset(dev_priv);
Dave Gordonfc32de92016-08-18 18:17:24 +0100509 if (err)
Arun Siluvery6b332fa2016-04-04 18:50:56 +0100510 goto fail;
Dave Gordond7617012016-04-04 18:50:57 +0100511
512 err = guc_ucode_xfer(dev_priv);
513 if (!err)
514 break;
515
516 if (--retries == 0)
517 goto fail;
518
Dave Gordonfce91f22016-05-20 11:42:42 +0100519 DRM_INFO("GuC fw load failed: %d; will reset and "
520 "retry %d more time(s)\n", err, retries);
Arun Siluvery6b332fa2016-04-04 18:50:56 +0100521 }
Alex Dai33a732f2015-08-12 15:43:36 +0100522
523 guc_fw->guc_fw_load_status = GUC_FIRMWARE_SUCCESS;
524
525 DRM_DEBUG_DRIVER("GuC fw status: fetch %s, load %s\n",
526 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status),
527 intel_guc_fw_status_repr(guc_fw->guc_fw_load_status));
528
Dave Gordon44a28b12015-08-12 15:43:41 +0100529 if (i915.enable_guc_submission) {
Dave Gordonbeffa512016-06-10 18:29:26 +0100530 err = i915_guc_submission_enable(dev_priv);
Dave Gordon44a28b12015-08-12 15:43:41 +0100531 if (err)
532 goto fail;
Dave Gordon0c5664e2016-09-12 21:19:36 +0100533 guc_interrupts_capture(dev_priv);
Dave Gordon44a28b12015-08-12 15:43:41 +0100534 }
535
Alex Dai33a732f2015-08-12 15:43:36 +0100536 return 0;
537
538fail:
539 if (guc_fw->guc_fw_load_status == GUC_FIRMWARE_PENDING)
540 guc_fw->guc_fw_load_status = GUC_FIRMWARE_FAIL;
541
Dave Gordon0c5664e2016-09-12 21:19:36 +0100542 guc_interrupts_release(dev_priv);
Dave Gordonbeffa512016-06-10 18:29:26 +0100543 i915_guc_submission_disable(dev_priv);
544 i915_guc_submission_fini(dev_priv);
Dave Gordon44a28b12015-08-12 15:43:41 +0100545
Dave Gordonfce91f22016-05-20 11:42:42 +0100546 /*
547 * We've failed to load the firmware :(
548 *
549 * Decide whether to disable GuC submission and fall back to
550 * execlist mode, and whether to hide the error by returning
551 * zero or to return -EIO, which the caller will treat as a
552 * nonfatal error (i.e. it doesn't prevent driver load, but
553 * marks the GPU as wedged until reset).
554 */
555 if (i915.enable_guc_loading > 1) {
556 ret = -EIO;
557 } else if (i915.enable_guc_submission > 1) {
558 ret = -EIO;
559 } else {
560 ret = 0;
561 }
562
Dave Gordon4e50f792016-06-10 17:21:25 +0100563 if (err == 0 && !HAS_GUC_UCODE(dev))
564 ; /* Don't mention the GuC! */
565 else if (err == 0)
Dave Gordonfce91f22016-05-20 11:42:42 +0100566 DRM_INFO("GuC firmware load skipped\n");
Dave Gordon4e50f792016-06-10 17:21:25 +0100567 else if (ret != -EIO)
Dave Gordonfc32de92016-08-18 18:17:24 +0100568 DRM_NOTE("GuC firmware load failed: %d\n", err);
Dave Gordon4e50f792016-06-10 17:21:25 +0100569 else
Dave Gordonfc32de92016-08-18 18:17:24 +0100570 DRM_WARN("GuC firmware load failed: %d\n", err);
Dave Gordonfce91f22016-05-20 11:42:42 +0100571
572 if (i915.enable_guc_submission) {
573 if (fw_path == NULL)
574 DRM_INFO("GuC submission without firmware not supported\n");
575 if (ret == 0)
Dave Gordonfc32de92016-08-18 18:17:24 +0100576 DRM_NOTE("Falling back from GuC submission to execlist mode\n");
Dave Gordonfce91f22016-05-20 11:42:42 +0100577 else
578 DRM_ERROR("GuC init failed: %d\n", ret);
579 }
580 i915.enable_guc_submission = 0;
581
582 return ret;
Alex Dai33a732f2015-08-12 15:43:36 +0100583}
584
585static void guc_fw_fetch(struct drm_device *dev, struct intel_guc_fw *guc_fw)
586{
David Weinehall52a05c32016-08-22 13:32:44 +0300587 struct pci_dev *pdev = dev->pdev;
Alex Dai33a732f2015-08-12 15:43:36 +0100588 struct drm_i915_gem_object *obj;
589 const struct firmware *fw;
Alex Daifeda33e2015-10-19 16:10:54 -0700590 struct guc_css_header *css;
591 size_t size;
Alex Dai33a732f2015-08-12 15:43:36 +0100592 int err;
593
594 DRM_DEBUG_DRIVER("before requesting firmware: GuC fw fetch status %s\n",
595 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status));
596
David Weinehall52a05c32016-08-22 13:32:44 +0300597 err = request_firmware(&fw, guc_fw->guc_fw_path, &pdev->dev);
Alex Dai33a732f2015-08-12 15:43:36 +0100598 if (err)
599 goto fail;
600 if (!fw)
601 goto fail;
602
603 DRM_DEBUG_DRIVER("fetch GuC fw from %s succeeded, fw %p\n",
604 guc_fw->guc_fw_path, fw);
Alex Dai33a732f2015-08-12 15:43:36 +0100605
Alex Daifeda33e2015-10-19 16:10:54 -0700606 /* Check the size of the blob before examining buffer contents */
607 if (fw->size < sizeof(struct guc_css_header)) {
Dave Gordonfc32de92016-08-18 18:17:24 +0100608 DRM_NOTE("Firmware header is missing\n");
Alex Dai33a732f2015-08-12 15:43:36 +0100609 goto fail;
Alex Daifeda33e2015-10-19 16:10:54 -0700610 }
611
612 css = (struct guc_css_header *)fw->data;
613
614 /* Firmware bits always start from header */
615 guc_fw->header_offset = 0;
616 guc_fw->header_size = (css->header_size_dw - css->modulus_size_dw -
617 css->key_size_dw - css->exponent_size_dw) * sizeof(u32);
618
619 if (guc_fw->header_size != sizeof(struct guc_css_header)) {
Dave Gordonfc32de92016-08-18 18:17:24 +0100620 DRM_NOTE("CSS header definition mismatch\n");
Alex Daifeda33e2015-10-19 16:10:54 -0700621 goto fail;
622 }
623
624 /* then, uCode */
625 guc_fw->ucode_offset = guc_fw->header_offset + guc_fw->header_size;
626 guc_fw->ucode_size = (css->size_dw - css->header_size_dw) * sizeof(u32);
627
628 /* now RSA */
629 if (css->key_size_dw != UOS_RSA_SCRATCH_MAX_COUNT) {
Dave Gordonfc32de92016-08-18 18:17:24 +0100630 DRM_NOTE("RSA key size is bad\n");
Alex Daifeda33e2015-10-19 16:10:54 -0700631 goto fail;
632 }
633 guc_fw->rsa_offset = guc_fw->ucode_offset + guc_fw->ucode_size;
634 guc_fw->rsa_size = css->key_size_dw * sizeof(u32);
635
636 /* At least, it should have header, uCode and RSA. Size of all three. */
637 size = guc_fw->header_size + guc_fw->ucode_size + guc_fw->rsa_size;
638 if (fw->size < size) {
Dave Gordonfc32de92016-08-18 18:17:24 +0100639 DRM_NOTE("Missing firmware components\n");
Alex Daifeda33e2015-10-19 16:10:54 -0700640 goto fail;
641 }
642
643 /* Header and uCode will be loaded to WOPCM. Size of the two. */
644 size = guc_fw->header_size + guc_fw->ucode_size;
Dave Gordonf19ec8c2016-07-04 11:34:37 +0100645 if (size > guc_wopcm_size(to_i915(dev))) {
Dave Gordonfc32de92016-08-18 18:17:24 +0100646 DRM_NOTE("Firmware is too large to fit in WOPCM\n");
Alex Daifeda33e2015-10-19 16:10:54 -0700647 goto fail;
648 }
Alex Dai33a732f2015-08-12 15:43:36 +0100649
650 /*
651 * The GuC firmware image has the version number embedded at a well-known
652 * offset within the firmware blob; note that major / minor version are
653 * TWO bytes each (i.e. u16), although all pointers and offsets are defined
654 * in terms of bytes (u8).
655 */
Alex Daifeda33e2015-10-19 16:10:54 -0700656 guc_fw->guc_fw_major_found = css->guc_sw_version >> 16;
657 guc_fw->guc_fw_minor_found = css->guc_sw_version & 0xFFFF;
Alex Dai33a732f2015-08-12 15:43:36 +0100658
659 if (guc_fw->guc_fw_major_found != guc_fw->guc_fw_major_wanted ||
660 guc_fw->guc_fw_minor_found < guc_fw->guc_fw_minor_wanted) {
Dave Gordonfc32de92016-08-18 18:17:24 +0100661 DRM_NOTE("GuC firmware version %d.%d, required %d.%d\n",
Alex Dai33a732f2015-08-12 15:43:36 +0100662 guc_fw->guc_fw_major_found, guc_fw->guc_fw_minor_found,
663 guc_fw->guc_fw_major_wanted, guc_fw->guc_fw_minor_wanted);
664 err = -ENOEXEC;
665 goto fail;
666 }
667
668 DRM_DEBUG_DRIVER("firmware version %d.%d OK (minimum %d.%d)\n",
669 guc_fw->guc_fw_major_found, guc_fw->guc_fw_minor_found,
670 guc_fw->guc_fw_major_wanted, guc_fw->guc_fw_minor_wanted);
671
Daniel Stonebf248ca2015-11-03 21:42:31 +0000672 mutex_lock(&dev->struct_mutex);
Alex Dai33a732f2015-08-12 15:43:36 +0100673 obj = i915_gem_object_create_from_data(dev, fw->data, fw->size);
Daniel Stonebf248ca2015-11-03 21:42:31 +0000674 mutex_unlock(&dev->struct_mutex);
Alex Dai33a732f2015-08-12 15:43:36 +0100675 if (IS_ERR_OR_NULL(obj)) {
676 err = obj ? PTR_ERR(obj) : -ENOMEM;
677 goto fail;
678 }
679
680 guc_fw->guc_fw_obj = obj;
681 guc_fw->guc_fw_size = fw->size;
682
683 DRM_DEBUG_DRIVER("GuC fw fetch status SUCCESS, obj %p\n",
684 guc_fw->guc_fw_obj);
685
686 release_firmware(fw);
687 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_SUCCESS;
688 return;
689
690fail:
Dave Gordonfc32de92016-08-18 18:17:24 +0100691 DRM_WARN("Failed to fetch valid GuC firmware from %s (error %d)\n",
692 guc_fw->guc_fw_path, err);
Alex Dai33a732f2015-08-12 15:43:36 +0100693 DRM_DEBUG_DRIVER("GuC fw fetch status FAIL; err %d, fw %p, obj %p\n",
694 err, fw, guc_fw->guc_fw_obj);
Alex Dai33a732f2015-08-12 15:43:36 +0100695
Alex Daia9d8ada2016-01-13 11:01:50 -0800696 mutex_lock(&dev->struct_mutex);
Alex Dai33a732f2015-08-12 15:43:36 +0100697 obj = guc_fw->guc_fw_obj;
698 if (obj)
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100699 i915_gem_object_put(obj);
Alex Dai33a732f2015-08-12 15:43:36 +0100700 guc_fw->guc_fw_obj = NULL;
Alex Daia9d8ada2016-01-13 11:01:50 -0800701 mutex_unlock(&dev->struct_mutex);
Alex Dai33a732f2015-08-12 15:43:36 +0100702
703 release_firmware(fw); /* OK even if fw is NULL */
704 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_FAIL;
705}
706
707/**
Dave Gordonf09d6752016-05-13 15:36:29 +0100708 * intel_guc_init() - define parameters and fetch firmware
Alex Dai33a732f2015-08-12 15:43:36 +0100709 * @dev: drm device
710 *
711 * Called early during driver load, but after GEM is initialised.
Alex Dai33a732f2015-08-12 15:43:36 +0100712 *
713 * The firmware will be transferred to the GuC's memory later,
Dave Gordonf09d6752016-05-13 15:36:29 +0100714 * when intel_guc_setup() is called.
Alex Dai33a732f2015-08-12 15:43:36 +0100715 */
Dave Gordonf09d6752016-05-13 15:36:29 +0100716void intel_guc_init(struct drm_device *dev)
Alex Dai33a732f2015-08-12 15:43:36 +0100717{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100718 struct drm_i915_private *dev_priv = to_i915(dev);
Alex Dai33a732f2015-08-12 15:43:36 +0100719 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
720 const char *fw_path;
721
Anusha Srivatsa21e33022016-10-14 16:47:05 -0700722 if (!HAS_GUC(dev)) {
723 i915.enable_guc_loading = 0;
724 i915.enable_guc_submission = 0;
725 } else {
726 /* A negative value means "use platform default" */
727 if (i915.enable_guc_loading < 0)
728 i915.enable_guc_loading = HAS_GUC_UCODE(dev);
729 if (i915.enable_guc_submission < 0)
730 i915.enable_guc_submission = HAS_GUC_SCHED(dev);
731 }
Alex Dai33a732f2015-08-12 15:43:36 +0100732
733 if (!HAS_GUC_UCODE(dev)) {
734 fw_path = NULL;
Tvrtko Ursulind9486e62016-10-13 11:03:03 +0100735 } else if (IS_SKYLAKE(dev_priv)) {
Alex Dai33a732f2015-08-12 15:43:36 +0100736 fw_path = I915_SKL_GUC_UCODE;
Tvrtko Ursulin5e334c12016-08-10 16:16:46 +0100737 guc_fw->guc_fw_major_wanted = SKL_FW_MAJOR;
738 guc_fw->guc_fw_minor_wanted = SKL_FW_MINOR;
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +0100739 } else if (IS_BROXTON(dev_priv)) {
Nick Hoath57bf5c82016-05-06 11:42:53 +0100740 fw_path = I915_BXT_GUC_UCODE;
Tvrtko Ursulin5e334c12016-08-10 16:16:46 +0100741 guc_fw->guc_fw_major_wanted = BXT_FW_MAJOR;
742 guc_fw->guc_fw_minor_wanted = BXT_FW_MINOR;
Tvrtko Ursulin08537232016-10-13 11:03:02 +0100743 } else if (IS_KABYLAKE(dev_priv)) {
Peter Antoineff64cc12016-06-30 09:37:52 -0700744 fw_path = I915_KBL_GUC_UCODE;
Tvrtko Ursulin5e334c12016-08-10 16:16:46 +0100745 guc_fw->guc_fw_major_wanted = KBL_FW_MAJOR;
746 guc_fw->guc_fw_minor_wanted = KBL_FW_MINOR;
Alex Dai33a732f2015-08-12 15:43:36 +0100747 } else {
Alex Dai33a732f2015-08-12 15:43:36 +0100748 fw_path = ""; /* unknown device */
749 }
750
751 guc_fw->guc_dev = dev;
752 guc_fw->guc_fw_path = fw_path;
753 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_NONE;
754 guc_fw->guc_fw_load_status = GUC_FIRMWARE_NONE;
755
Dave Gordonfce91f22016-05-20 11:42:42 +0100756 /* Early (and silent) return if GuC loading is disabled */
757 if (!i915.enable_guc_loading)
758 return;
Alex Dai33a732f2015-08-12 15:43:36 +0100759 if (fw_path == NULL)
760 return;
Dave Gordonfce91f22016-05-20 11:42:42 +0100761 if (*fw_path == '\0')
Alex Dai33a732f2015-08-12 15:43:36 +0100762 return;
Alex Dai33a732f2015-08-12 15:43:36 +0100763
764 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_PENDING;
765 DRM_DEBUG_DRIVER("GuC firmware pending, path %s\n", fw_path);
766 guc_fw_fetch(dev, guc_fw);
767 /* status must now be FAIL or SUCCESS */
768}
769
770/**
Dave Gordonf09d6752016-05-13 15:36:29 +0100771 * intel_guc_fini() - clean up all allocated resources
Alex Dai33a732f2015-08-12 15:43:36 +0100772 * @dev: drm device
773 */
Dave Gordonf09d6752016-05-13 15:36:29 +0100774void intel_guc_fini(struct drm_device *dev)
Alex Dai33a732f2015-08-12 15:43:36 +0100775{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100776 struct drm_i915_private *dev_priv = to_i915(dev);
Alex Dai33a732f2015-08-12 15:43:36 +0100777 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
778
Alex Daia9d8ada2016-01-13 11:01:50 -0800779 mutex_lock(&dev->struct_mutex);
Dave Gordon0c5664e2016-09-12 21:19:36 +0100780 guc_interrupts_release(dev_priv);
Dave Gordonbeffa512016-06-10 18:29:26 +0100781 i915_guc_submission_disable(dev_priv);
782 i915_guc_submission_fini(dev_priv);
Alex Daibac427f2015-08-12 15:43:39 +0100783
Alex Dai33a732f2015-08-12 15:43:36 +0100784 if (guc_fw->guc_fw_obj)
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100785 i915_gem_object_put(guc_fw->guc_fw_obj);
Alex Dai33a732f2015-08-12 15:43:36 +0100786 guc_fw->guc_fw_obj = NULL;
Daniel Stonebf248ca2015-11-03 21:42:31 +0000787 mutex_unlock(&dev->struct_mutex);
Alex Dai33a732f2015-08-12 15:43:36 +0100788
789 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_NONE;
790}