]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/i915/intel_guc_loader.c
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / i915 / intel_guc_loader.c
CommitLineData
33a732f4
AD
1/*
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/**
feda33ef 34 * DOC: GuC-specific firmware loader
33a732f4
AD
35 *
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
5e334c19
TU
62#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)
33a732f4
AD
75MODULE_FIRMWARE(I915_SKL_GUC_UCODE);
76
5e334c19 77#define I915_BXT_GUC_UCODE GUC_FW_PATH(bxt, BXT_FW_MAJOR, BXT_FW_MINOR)
57bf5c81
NH
78MODULE_FIRMWARE(I915_BXT_GUC_UCODE);
79
5e334c19 80#define I915_KBL_GUC_UCODE GUC_FW_PATH(kbl, KBL_FW_MAJOR, KBL_FW_MINOR)
ff64cc16
PA
81MODULE_FIRMWARE(I915_KBL_GUC_UCODE);
82
33a732f4
AD
83/* 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
0c5664e4 100static void guc_interrupts_release(struct drm_i915_private *dev_priv)
4df001d3 101{
e2f80391 102 struct intel_engine_cs *engine;
3b3f1650 103 enum intel_engine_id id;
b4ac5afc 104 int irqs;
4df001d3 105
fa7545a4 106 /* tell all command streamers NOT to forward interrupts or vblank to GuC */
4df001d3
DG
107 irqs = _MASKED_FIELD(GFX_FORWARD_VBLANK_MASK, GFX_FORWARD_VBLANK_NEVER);
108 irqs |= _MASKED_BIT_DISABLE(GFX_INTERRUPT_STEERING);
3b3f1650 109 for_each_engine(engine, dev_priv, id)
e2f80391 110 I915_WRITE(RING_MODE_GEN7(engine), irqs);
4df001d3 111
4df001d3
DG
112 /* 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
0c5664e4 118static void guc_interrupts_capture(struct drm_i915_private *dev_priv)
4df001d3 119{
e2f80391 120 struct intel_engine_cs *engine;
3b3f1650 121 enum intel_engine_id id;
b4ac5afc 122 int irqs;
1800ad25 123 u32 tmp;
4df001d3 124
fa7545a4
DG
125 /* tell all command streamers to forward interrupts (but not vblank) to GuC */
126 irqs = _MASKED_BIT_ENABLE(GFX_INTERRUPT_STEERING);
3b3f1650 127 for_each_engine(engine, dev_priv, id)
e2f80391 128 I915_WRITE(RING_MODE_GEN7(engine), irqs);
4df001d3 129
4df001d3
DG
130 /* 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);
1800ad25
SAK
137
138 /*
b20e3cfe
DG
139 * 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 */
1800ad25 157 tmp = I915_READ(GEN6_PMINTRMSK);
b20e3cfe
DG
158 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;
1800ad25 161 }
4df001d3
DG
162}
163
33a732f4
AD
164static 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{
fc32de93
DG
172 u32 gen = INTEL_GEN(dev_priv);
173
174 switch (gen) {
33a732f4
AD
175 case 9:
176 return GFXCORE_FAMILY_GEN9;
177
178 default:
fc32de93 179 WARN(1, "GEN%d does not support GuC operation!\n", gen);
33a732f4
AD
180 return GFXCORE_FAMILY_UNKNOWN;
181 }
182}
183
0c5664e4
DG
184/*
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)
33a732f4
AD
190{
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
8b797af1 220 if (guc->ads_vma) {
bde13ebd 221 u32 ads = i915_ggtt_offset(guc->ads_vma) >> PAGE_SHIFT;
b6a5cd7e
AD
222 params[GUC_CTL_DEBUG] |= ads << GUC_ADS_ADDR_SHIFT;
223 params[GUC_CTL_DEBUG] |= GUC_ADS_ENABLED;
224 }
225
bac427f8
AD
226 /* If GuC submission is enabled, set up additional parameters here */
227 if (i915.enable_guc_submission) {
bde13ebd 228 u32 pgs = i915_ggtt_offset(dev_priv->guc.ctx_pool_vma);
bac427f8
AD
229 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
33a732f4
AD
241 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 *
36894e8b 253 * This is used for polling the GuC status in a wait_for()
33a732f4
AD
254 * 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);
0d44d3fa 260 u32 uk_val = val & GS_UKERNEL_MASK;
33a732f4 261 *status = val;
0d44d3fa
AD
262 return (uk_val == GS_UKERNEL_READY ||
263 ((val & GS_MIA_CORE_STATE) && uk_val == GS_UKERNEL_LAPIC_DONE));
33a732f4
AD
264}
265
266/*
267 * Transfer the firmware image to RAM for execution by the microcontroller.
268 *
33a732f4
AD
269 * 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 */
058d88c4
CW
276static int guc_ucode_xfer_dma(struct drm_i915_private *dev_priv,
277 struct i915_vma *vma)
33a732f4
AD
278{
279 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
33a732f4 280 unsigned long offset;
058d88c4 281 struct sg_table *sg = vma->pages;
feda33ef 282 u32 status, rsa[UOS_RSA_SCRATCH_MAX_COUNT];
33a732f4
AD
283 int i, ret = 0;
284
feda33ef
AD
285 /* where RSA signature starts */
286 offset = guc_fw->rsa_offset;
33a732f4
AD
287
288 /* Copy RSA signature from the fw image to HW for verification */
feda33ef
AD
289 sg_pcopy_to_buffer(sg->sgl, sg->nents, rsa, sizeof(rsa), offset);
290 for (i = 0; i < UOS_RSA_SCRATCH_MAX_COUNT; i++)
ab9cc558 291 I915_WRITE(UOS_RSA_SCRATCH(i), rsa[i]);
33a732f4 292
feda33ef
AD
293 /* 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
33a732f4 297 /* Set the source address for the new blob */
bde13ebd 298 offset = i915_ggtt_offset(vma) + guc_fw->header_offset;
33a732f4
AD
299 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 /*
36894e8b 313 * Wait for the DMA to complete & the GuC to start up.
33a732f4
AD
314 * 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 */
36894e8b 320 ret = wait_for(guc_ucode_response(dev_priv, &status), 100);
33a732f4
AD
321
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
74aa156b
PA
335static 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
33a732f4
AD
346/*
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;
91c8a326 352 struct drm_device *dev = &dev_priv->drm;
058d88c4 353 struct i915_vma *vma;
33a732f4
AD
354 int ret;
355
356 ret = i915_gem_object_set_to_gtt_domain(guc_fw->guc_fw_obj, false);
357 if (ret) {
358 DRM_DEBUG_DRIVER("set-domain failed %d\n", ret);
359 return ret;
360 }
361
058d88c4
CW
362 vma = i915_gem_object_ggtt_pin(guc_fw->guc_fw_obj, NULL, 0, 0, 0);
363 if (IS_ERR(vma)) {
364 DRM_DEBUG_DRIVER("pin failed %d\n", (int)PTR_ERR(vma));
365 return PTR_ERR(vma);
33a732f4
AD
366 }
367
368 /* Invalidate GuC TLB to let GuC take the latest updates to GTT. */
369 I915_WRITE(GEN8_GTCR, GEN8_GTCR_INVALIDATE);
370
371 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
372
373 /* init WOPCM */
74aa156b 374 I915_WRITE(GUC_WOPCM_SIZE, guc_wopcm_size(dev_priv));
33a732f4
AD
375 I915_WRITE(DMA_GUC_WOPCM_OFFSET, GUC_WOPCM_OFFSET_VALUE);
376
377 /* Enable MIA caching. GuC clock gating is disabled. */
378 I915_WRITE(GUC_SHIM_CONTROL, GUC_SHIM_CONTROL_VALUE);
379
a117f378
JN
380 /* WaDisableMinuteIaClockGating:bxt */
381 if (IS_BXT_REVID(dev, 0, BXT_REVID_A1)) {
b970b486
NH
382 I915_WRITE(GUC_SHIM_CONTROL, (I915_READ(GUC_SHIM_CONTROL) &
383 ~GUC_ENABLE_MIA_CLOCK_GATING));
384 }
385
4ff40a41 386 /* WaC6DisallowByGfxPause:bxt */
0d0b8dcf 387 if (IS_BXT_REVID(dev, 0, BXT_REVID_B0))
65fe29ee 388 I915_WRITE(GEN6_GFXPAUSE, 0x30FFF);
33a732f4
AD
389
390 if (IS_BROXTON(dev))
391 I915_WRITE(GEN9LP_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
392 else
393 I915_WRITE(GEN9_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
394
395 if (IS_GEN9(dev)) {
396 /* DOP Clock Gating Enable for GuC clocks */
397 I915_WRITE(GEN7_MISCCPCTL, (GEN8_DOP_CLOCK_GATE_GUC_ENABLE |
398 I915_READ(GEN7_MISCCPCTL)));
399
0c5664e4 400 /* allows for 5us (in 10ns units) before GT can go to RC6 */
33a732f4
AD
401 I915_WRITE(GUC_ARAT_C6DIS, 0x1FF);
402 }
403
0c5664e4 404 guc_params_init(dev_priv);
33a732f4 405
058d88c4 406 ret = guc_ucode_xfer_dma(dev_priv, vma);
33a732f4
AD
407
408 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
409
410 /*
411 * We keep the object pages for reuse during resume. But we can unpin it
412 * now that DMA has completed, so it doesn't continue to take up space.
413 */
058d88c4 414 i915_vma_unpin(vma);
33a732f4
AD
415
416 return ret;
417}
418
0c5664e4 419static int guc_hw_reset(struct drm_i915_private *dev_priv)
6b332fa2
AS
420{
421 int ret;
422 u32 guc_status;
423
424 ret = intel_guc_reset(dev_priv);
425 if (ret) {
426 DRM_ERROR("GuC reset failed, ret = %d\n", ret);
427 return ret;
428 }
429
430 guc_status = I915_READ(GUC_STATUS);
431 WARN(!(guc_status & GS_MIA_IN_RESET),
432 "GuC status: 0x%x, MIA core expected to be in reset\n", guc_status);
433
434 return ret;
435}
436
33a732f4 437/**
f09d675f 438 * intel_guc_setup() - finish preparing the GuC for activity
33a732f4
AD
439 * @dev: drm device
440 *
441 * Called from gem_init_hw() during driver loading and also after a GPU reset.
442 *
f09d675f 443 * The main action required here it to load the GuC uCode into the device.
33a732f4 444 * The firmware image should have already been fetched into memory by the
f09d675f
DG
445 * earlier call to intel_guc_init(), so here we need only check that worked,
446 * and then transfer the image to the h/w.
33a732f4
AD
447 *
448 * Return: non-zero code on error
449 */
f09d675f 450int intel_guc_setup(struct drm_device *dev)
33a732f4 451{
fac5e23e 452 struct drm_i915_private *dev_priv = to_i915(dev);
33a732f4 453 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
fce91f22
DG
454 const char *fw_path = guc_fw->guc_fw_path;
455 int retries, ret, err;
33a732f4 456
fce91f22
DG
457 DRM_DEBUG_DRIVER("GuC fw status: path %s, fetch %s, load %s\n",
458 fw_path,
33a732f4
AD
459 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status),
460 intel_guc_fw_status_repr(guc_fw->guc_fw_load_status));
461
fce91f22
DG
462 /* Loading forbidden, or no firmware to load? */
463 if (!i915.enable_guc_loading) {
464 err = 0;
465 goto fail;
e556f7c1
DG
466 } else if (fw_path == NULL) {
467 /* Device is known to have no uCode (e.g. no GuC) */
468 err = -ENXIO;
469 goto fail;
470 } else if (*fw_path == '\0') {
471 /* Device has a GuC but we don't know what f/w to load? */
fc32de93 472 WARN(1, "No GuC firmware known for this platform!\n");
fce91f22
DG
473 err = -ENODEV;
474 goto fail;
475 }
33a732f4 476
fce91f22
DG
477 /* Fetch failed, or already fetched but failed to load? */
478 if (guc_fw->guc_fw_fetch_status != GUC_FIRMWARE_SUCCESS) {
33a732f4
AD
479 err = -EIO;
480 goto fail;
fce91f22
DG
481 } else if (guc_fw->guc_fw_load_status == GUC_FIRMWARE_FAIL) {
482 err = -ENOEXEC;
33a732f4 483 goto fail;
33a732f4
AD
484 }
485
0c5664e4 486 guc_interrupts_release(dev_priv);
fce91f22
DG
487
488 guc_fw->guc_fw_load_status = GUC_FIRMWARE_PENDING;
489
490 DRM_DEBUG_DRIVER("GuC fw status: fetch %s, load %s\n",
491 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status),
492 intel_guc_fw_status_repr(guc_fw->guc_fw_load_status));
493
beffa517 494 err = i915_guc_submission_init(dev_priv);
bac427f8
AD
495 if (err)
496 goto fail;
497
6b332fa2
AS
498 /*
499 * WaEnableuKernelHeaderValidFix:skl,bxt
500 * For BXT, this is only upto B0 but below WA is required for later
501 * steppings also so this is extended as well.
502 */
503 /* WaEnableGuCBootHashCheckNotSet:skl,bxt */
d761701c
DG
504 for (retries = 3; ; ) {
505 /*
506 * Always reset the GuC just before (re)loading, so
507 * that the state and timing are fairly predictable
508 */
0c5664e4 509 err = guc_hw_reset(dev_priv);
fc32de93 510 if (err)
6b332fa2 511 goto fail;
d761701c
DG
512
513 err = guc_ucode_xfer(dev_priv);
514 if (!err)
515 break;
516
517 if (--retries == 0)
518 goto fail;
519
fce91f22
DG
520 DRM_INFO("GuC fw load failed: %d; will reset and "
521 "retry %d more time(s)\n", err, retries);
6b332fa2 522 }
33a732f4
AD
523
524 guc_fw->guc_fw_load_status = GUC_FIRMWARE_SUCCESS;
525
526 DRM_DEBUG_DRIVER("GuC fw status: fetch %s, load %s\n",
527 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status),
528 intel_guc_fw_status_repr(guc_fw->guc_fw_load_status));
529
44a28b1d 530 if (i915.enable_guc_submission) {
beffa517 531 err = i915_guc_submission_enable(dev_priv);
44a28b1d
DG
532 if (err)
533 goto fail;
0c5664e4 534 guc_interrupts_capture(dev_priv);
44a28b1d
DG
535 }
536
33a732f4
AD
537 return 0;
538
539fail:
540 if (guc_fw->guc_fw_load_status == GUC_FIRMWARE_PENDING)
541 guc_fw->guc_fw_load_status = GUC_FIRMWARE_FAIL;
542
0c5664e4 543 guc_interrupts_release(dev_priv);
beffa517
DG
544 i915_guc_submission_disable(dev_priv);
545 i915_guc_submission_fini(dev_priv);
44a28b1d 546
fce91f22
DG
547 /*
548 * We've failed to load the firmware :(
549 *
550 * Decide whether to disable GuC submission and fall back to
551 * execlist mode, and whether to hide the error by returning
552 * zero or to return -EIO, which the caller will treat as a
553 * nonfatal error (i.e. it doesn't prevent driver load, but
554 * marks the GPU as wedged until reset).
555 */
556 if (i915.enable_guc_loading > 1) {
557 ret = -EIO;
558 } else if (i915.enable_guc_submission > 1) {
559 ret = -EIO;
560 } else {
561 ret = 0;
562 }
563
4e50f796
DG
564 if (err == 0 && !HAS_GUC_UCODE(dev))
565 ; /* Don't mention the GuC! */
566 else if (err == 0)
fce91f22 567 DRM_INFO("GuC firmware load skipped\n");
4e50f796 568 else if (ret != -EIO)
fc32de93 569 DRM_NOTE("GuC firmware load failed: %d\n", err);
4e50f796 570 else
fc32de93 571 DRM_WARN("GuC firmware load failed: %d\n", err);
fce91f22
DG
572
573 if (i915.enable_guc_submission) {
574 if (fw_path == NULL)
575 DRM_INFO("GuC submission without firmware not supported\n");
576 if (ret == 0)
fc32de93 577 DRM_NOTE("Falling back from GuC submission to execlist mode\n");
fce91f22
DG
578 else
579 DRM_ERROR("GuC init failed: %d\n", ret);
580 }
581 i915.enable_guc_submission = 0;
582
583 return ret;
33a732f4
AD
584}
585
586static void guc_fw_fetch(struct drm_device *dev, struct intel_guc_fw *guc_fw)
587{
52a05c30 588 struct pci_dev *pdev = dev->pdev;
33a732f4
AD
589 struct drm_i915_gem_object *obj;
590 const struct firmware *fw;
feda33ef
AD
591 struct guc_css_header *css;
592 size_t size;
33a732f4
AD
593 int err;
594
595 DRM_DEBUG_DRIVER("before requesting firmware: GuC fw fetch status %s\n",
596 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status));
597
52a05c30 598 err = request_firmware(&fw, guc_fw->guc_fw_path, &pdev->dev);
33a732f4
AD
599 if (err)
600 goto fail;
601 if (!fw)
602 goto fail;
603
604 DRM_DEBUG_DRIVER("fetch GuC fw from %s succeeded, fw %p\n",
605 guc_fw->guc_fw_path, fw);
33a732f4 606
feda33ef
AD
607 /* Check the size of the blob before examining buffer contents */
608 if (fw->size < sizeof(struct guc_css_header)) {
fc32de93 609 DRM_NOTE("Firmware header is missing\n");
33a732f4 610 goto fail;
feda33ef
AD
611 }
612
613 css = (struct guc_css_header *)fw->data;
614
615 /* Firmware bits always start from header */
616 guc_fw->header_offset = 0;
617 guc_fw->header_size = (css->header_size_dw - css->modulus_size_dw -
618 css->key_size_dw - css->exponent_size_dw) * sizeof(u32);
619
620 if (guc_fw->header_size != sizeof(struct guc_css_header)) {
fc32de93 621 DRM_NOTE("CSS header definition mismatch\n");
feda33ef
AD
622 goto fail;
623 }
624
625 /* then, uCode */
626 guc_fw->ucode_offset = guc_fw->header_offset + guc_fw->header_size;
627 guc_fw->ucode_size = (css->size_dw - css->header_size_dw) * sizeof(u32);
628
629 /* now RSA */
630 if (css->key_size_dw != UOS_RSA_SCRATCH_MAX_COUNT) {
fc32de93 631 DRM_NOTE("RSA key size is bad\n");
feda33ef
AD
632 goto fail;
633 }
634 guc_fw->rsa_offset = guc_fw->ucode_offset + guc_fw->ucode_size;
635 guc_fw->rsa_size = css->key_size_dw * sizeof(u32);
636
637 /* At least, it should have header, uCode and RSA. Size of all three. */
638 size = guc_fw->header_size + guc_fw->ucode_size + guc_fw->rsa_size;
639 if (fw->size < size) {
fc32de93 640 DRM_NOTE("Missing firmware components\n");
feda33ef
AD
641 goto fail;
642 }
643
644 /* Header and uCode will be loaded to WOPCM. Size of the two. */
645 size = guc_fw->header_size + guc_fw->ucode_size;
f19ec8cb 646 if (size > guc_wopcm_size(to_i915(dev))) {
fc32de93 647 DRM_NOTE("Firmware is too large to fit in WOPCM\n");
feda33ef
AD
648 goto fail;
649 }
33a732f4
AD
650
651 /*
652 * The GuC firmware image has the version number embedded at a well-known
653 * offset within the firmware blob; note that major / minor version are
654 * TWO bytes each (i.e. u16), although all pointers and offsets are defined
655 * in terms of bytes (u8).
656 */
feda33ef
AD
657 guc_fw->guc_fw_major_found = css->guc_sw_version >> 16;
658 guc_fw->guc_fw_minor_found = css->guc_sw_version & 0xFFFF;
33a732f4
AD
659
660 if (guc_fw->guc_fw_major_found != guc_fw->guc_fw_major_wanted ||
661 guc_fw->guc_fw_minor_found < guc_fw->guc_fw_minor_wanted) {
fc32de93 662 DRM_NOTE("GuC firmware version %d.%d, required %d.%d\n",
33a732f4
AD
663 guc_fw->guc_fw_major_found, guc_fw->guc_fw_minor_found,
664 guc_fw->guc_fw_major_wanted, guc_fw->guc_fw_minor_wanted);
665 err = -ENOEXEC;
666 goto fail;
667 }
668
669 DRM_DEBUG_DRIVER("firmware version %d.%d OK (minimum %d.%d)\n",
670 guc_fw->guc_fw_major_found, guc_fw->guc_fw_minor_found,
671 guc_fw->guc_fw_major_wanted, guc_fw->guc_fw_minor_wanted);
672
bf248ca1 673 mutex_lock(&dev->struct_mutex);
33a732f4 674 obj = i915_gem_object_create_from_data(dev, fw->data, fw->size);
bf248ca1 675 mutex_unlock(&dev->struct_mutex);
33a732f4
AD
676 if (IS_ERR_OR_NULL(obj)) {
677 err = obj ? PTR_ERR(obj) : -ENOMEM;
678 goto fail;
679 }
680
681 guc_fw->guc_fw_obj = obj;
682 guc_fw->guc_fw_size = fw->size;
683
684 DRM_DEBUG_DRIVER("GuC fw fetch status SUCCESS, obj %p\n",
685 guc_fw->guc_fw_obj);
686
687 release_firmware(fw);
688 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_SUCCESS;
689 return;
690
691fail:
fc32de93
DG
692 DRM_WARN("Failed to fetch valid GuC firmware from %s (error %d)\n",
693 guc_fw->guc_fw_path, err);
33a732f4
AD
694 DRM_DEBUG_DRIVER("GuC fw fetch status FAIL; err %d, fw %p, obj %p\n",
695 err, fw, guc_fw->guc_fw_obj);
33a732f4 696
a9d8adad 697 mutex_lock(&dev->struct_mutex);
33a732f4
AD
698 obj = guc_fw->guc_fw_obj;
699 if (obj)
f8c417cd 700 i915_gem_object_put(obj);
33a732f4 701 guc_fw->guc_fw_obj = NULL;
a9d8adad 702 mutex_unlock(&dev->struct_mutex);
33a732f4
AD
703
704 release_firmware(fw); /* OK even if fw is NULL */
705 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_FAIL;
706}
707
708/**
f09d675f 709 * intel_guc_init() - define parameters and fetch firmware
33a732f4
AD
710 * @dev: drm device
711 *
712 * Called early during driver load, but after GEM is initialised.
33a732f4
AD
713 *
714 * The firmware will be transferred to the GuC's memory later,
f09d675f 715 * when intel_guc_setup() is called.
33a732f4 716 */
f09d675f 717void intel_guc_init(struct drm_device *dev)
33a732f4 718{
fac5e23e 719 struct drm_i915_private *dev_priv = to_i915(dev);
33a732f4
AD
720 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
721 const char *fw_path;
722
fce91f22
DG
723 /* A negative value means "use platform default" */
724 if (i915.enable_guc_loading < 0)
725 i915.enable_guc_loading = HAS_GUC_UCODE(dev);
726 if (i915.enable_guc_submission < 0)
727 i915.enable_guc_submission = HAS_GUC_SCHED(dev);
33a732f4
AD
728
729 if (!HAS_GUC_UCODE(dev)) {
730 fw_path = NULL;
731 } else if (IS_SKYLAKE(dev)) {
732 fw_path = I915_SKL_GUC_UCODE;
5e334c19
TU
733 guc_fw->guc_fw_major_wanted = SKL_FW_MAJOR;
734 guc_fw->guc_fw_minor_wanted = SKL_FW_MINOR;
57bf5c81
NH
735 } else if (IS_BROXTON(dev)) {
736 fw_path = I915_BXT_GUC_UCODE;
5e334c19
TU
737 guc_fw->guc_fw_major_wanted = BXT_FW_MAJOR;
738 guc_fw->guc_fw_minor_wanted = BXT_FW_MINOR;
ff64cc16
PA
739 } else if (IS_KABYLAKE(dev)) {
740 fw_path = I915_KBL_GUC_UCODE;
5e334c19
TU
741 guc_fw->guc_fw_major_wanted = KBL_FW_MAJOR;
742 guc_fw->guc_fw_minor_wanted = KBL_FW_MINOR;
33a732f4 743 } else {
33a732f4
AD
744 fw_path = ""; /* unknown device */
745 }
746
747 guc_fw->guc_dev = dev;
748 guc_fw->guc_fw_path = fw_path;
749 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_NONE;
750 guc_fw->guc_fw_load_status = GUC_FIRMWARE_NONE;
751
fce91f22
DG
752 /* Early (and silent) return if GuC loading is disabled */
753 if (!i915.enable_guc_loading)
754 return;
33a732f4
AD
755 if (fw_path == NULL)
756 return;
fce91f22 757 if (*fw_path == '\0')
33a732f4 758 return;
33a732f4
AD
759
760 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_PENDING;
761 DRM_DEBUG_DRIVER("GuC firmware pending, path %s\n", fw_path);
762 guc_fw_fetch(dev, guc_fw);
763 /* status must now be FAIL or SUCCESS */
764}
765
766/**
f09d675f 767 * intel_guc_fini() - clean up all allocated resources
33a732f4
AD
768 * @dev: drm device
769 */
f09d675f 770void intel_guc_fini(struct drm_device *dev)
33a732f4 771{
fac5e23e 772 struct drm_i915_private *dev_priv = to_i915(dev);
33a732f4
AD
773 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
774
a9d8adad 775 mutex_lock(&dev->struct_mutex);
0c5664e4 776 guc_interrupts_release(dev_priv);
beffa517
DG
777 i915_guc_submission_disable(dev_priv);
778 i915_guc_submission_fini(dev_priv);
bac427f8 779
33a732f4 780 if (guc_fw->guc_fw_obj)
f8c417cd 781 i915_gem_object_put(guc_fw->guc_fw_obj);
33a732f4 782 guc_fw->guc_fw_obj = NULL;
bf248ca1 783 mutex_unlock(&dev->struct_mutex);
33a732f4
AD
784
785 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_NONE;
786}