blob: b883efd35e3f16d7928d502437c3d737732d2198 [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
Tom O'Rourke4d3ba7e2016-05-06 11:42:52 +010062#define I915_SKL_GUC_UCODE "i915/skl_guc_ver6_1.bin"
Alex Dai33a732f2015-08-12 15:43:36 +010063MODULE_FIRMWARE(I915_SKL_GUC_UCODE);
64
Nick Hoath57bf5c82016-05-06 11:42:53 +010065#define I915_BXT_GUC_UCODE "i915/bxt_guc_ver8_7.bin"
66MODULE_FIRMWARE(I915_BXT_GUC_UCODE);
67
Peter Antoineff64cc12016-06-30 09:37:52 -070068#define I915_KBL_GUC_UCODE "i915/kbl_guc_ver9_14.bin"
69MODULE_FIRMWARE(I915_KBL_GUC_UCODE);
70
Alex Dai33a732f2015-08-12 15:43:36 +010071/* User-friendly representation of an enum */
72const char *intel_guc_fw_status_repr(enum intel_guc_fw_status status)
73{
74 switch (status) {
75 case GUC_FIRMWARE_FAIL:
76 return "FAIL";
77 case GUC_FIRMWARE_NONE:
78 return "NONE";
79 case GUC_FIRMWARE_PENDING:
80 return "PENDING";
81 case GUC_FIRMWARE_SUCCESS:
82 return "SUCCESS";
83 default:
84 return "UNKNOWN!";
85 }
86};
87
Dave Gordon4df001d2015-08-12 15:43:42 +010088static void direct_interrupts_to_host(struct drm_i915_private *dev_priv)
89{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +000090 struct intel_engine_cs *engine;
Dave Gordonb4ac5af2016-03-24 11:20:38 +000091 int irqs;
Dave Gordon4df001d2015-08-12 15:43:42 +010092
Dave Gordonfa7545a2016-06-24 15:57:57 +010093 /* tell all command streamers NOT to forward interrupts or vblank to GuC */
Dave Gordon4df001d2015-08-12 15:43:42 +010094 irqs = _MASKED_FIELD(GFX_FORWARD_VBLANK_MASK, GFX_FORWARD_VBLANK_NEVER);
95 irqs |= _MASKED_BIT_DISABLE(GFX_INTERRUPT_STEERING);
Dave Gordonb4ac5af2016-03-24 11:20:38 +000096 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +000097 I915_WRITE(RING_MODE_GEN7(engine), irqs);
Dave Gordon4df001d2015-08-12 15:43:42 +010098
Dave Gordon4df001d2015-08-12 15:43:42 +010099 /* route all GT interrupts to the host */
100 I915_WRITE(GUC_BCS_RCS_IER, 0);
101 I915_WRITE(GUC_VCS2_VCS1_IER, 0);
102 I915_WRITE(GUC_WD_VECS_IER, 0);
103}
104
105static void direct_interrupts_to_guc(struct drm_i915_private *dev_priv)
106{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000107 struct intel_engine_cs *engine;
Dave Gordonb4ac5af2016-03-24 11:20:38 +0000108 int irqs;
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +0530109 u32 tmp;
Dave Gordon4df001d2015-08-12 15:43:42 +0100110
Dave Gordonfa7545a2016-06-24 15:57:57 +0100111 /* tell all command streamers to forward interrupts (but not vblank) to GuC */
112 irqs = _MASKED_BIT_ENABLE(GFX_INTERRUPT_STEERING);
Dave Gordonb4ac5af2016-03-24 11:20:38 +0000113 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000114 I915_WRITE(RING_MODE_GEN7(engine), irqs);
Dave Gordon4df001d2015-08-12 15:43:42 +0100115
Dave Gordon4df001d2015-08-12 15:43:42 +0100116 /* route USER_INTERRUPT to Host, all others are sent to GuC. */
117 irqs = GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
118 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
119 /* These three registers have the same bit definitions */
120 I915_WRITE(GUC_BCS_RCS_IER, ~irqs);
121 I915_WRITE(GUC_VCS2_VCS1_IER, ~irqs);
122 I915_WRITE(GUC_WD_VECS_IER, ~irqs);
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +0530123
124 /*
125 * If GuC has routed PM interrupts to itself, don't keep it.
126 * and keep other interrupts those are unmasked by GuC.
127 */
128 tmp = I915_READ(GEN6_PMINTRMSK);
129 if (tmp & GEN8_PMINTR_REDIRECT_TO_NON_DISP) {
130 dev_priv->rps.pm_intr_keep |= ~(tmp & ~GEN8_PMINTR_REDIRECT_TO_NON_DISP);
131 dev_priv->rps.pm_intr_keep &= ~GEN8_PMINTR_REDIRECT_TO_NON_DISP;
132 }
Dave Gordon4df001d2015-08-12 15:43:42 +0100133}
134
Alex Dai33a732f2015-08-12 15:43:36 +0100135static u32 get_gttype(struct drm_i915_private *dev_priv)
136{
137 /* XXX: GT type based on PCI device ID? field seems unused by fw */
138 return 0;
139}
140
141static u32 get_core_family(struct drm_i915_private *dev_priv)
142{
143 switch (INTEL_INFO(dev_priv)->gen) {
144 case 9:
145 return GFXCORE_FAMILY_GEN9;
146
147 default:
148 DRM_ERROR("GUC: unsupported core family\n");
149 return GFXCORE_FAMILY_UNKNOWN;
150 }
151}
152
153static void set_guc_init_params(struct drm_i915_private *dev_priv)
154{
155 struct intel_guc *guc = &dev_priv->guc;
156 u32 params[GUC_CTL_MAX_DWORDS];
157 int i;
158
159 memset(&params, 0, sizeof(params));
160
161 params[GUC_CTL_DEVICE_INFO] |=
162 (get_gttype(dev_priv) << GUC_CTL_GTTYPE_SHIFT) |
163 (get_core_family(dev_priv) << GUC_CTL_COREFAMILY_SHIFT);
164
165 /*
166 * GuC ARAT increment is 10 ns. GuC default scheduler quantum is one
167 * second. This ARAR is calculated by:
168 * Scheduler-Quantum-in-ns / ARAT-increment-in-ns = 1000000000 / 10
169 */
170 params[GUC_CTL_ARAT_HIGH] = 0;
171 params[GUC_CTL_ARAT_LOW] = 100000000;
172
173 params[GUC_CTL_WA] |= GUC_CTL_WA_UK_BY_DRIVER;
174
175 params[GUC_CTL_FEATURE] |= GUC_CTL_DISABLE_SCHEDULER |
176 GUC_CTL_VCS2_ENABLED;
177
178 if (i915.guc_log_level >= 0) {
179 params[GUC_CTL_LOG_PARAMS] = guc->log_flags;
180 params[GUC_CTL_DEBUG] =
181 i915.guc_log_level << GUC_LOG_VERBOSITY_SHIFT;
182 }
183
Alex Daib6a5cd72015-12-18 12:00:12 -0800184 if (guc->ads_obj) {
185 u32 ads = (u32)i915_gem_obj_ggtt_offset(guc->ads_obj)
186 >> PAGE_SHIFT;
187 params[GUC_CTL_DEBUG] |= ads << GUC_ADS_ADDR_SHIFT;
188 params[GUC_CTL_DEBUG] |= GUC_ADS_ENABLED;
189 }
190
Alex Daibac427f2015-08-12 15:43:39 +0100191 /* If GuC submission is enabled, set up additional parameters here */
192 if (i915.enable_guc_submission) {
193 u32 pgs = i915_gem_obj_ggtt_offset(dev_priv->guc.ctx_pool_obj);
194 u32 ctx_in_16 = GUC_MAX_GPU_CONTEXTS / 16;
195
196 pgs >>= PAGE_SHIFT;
197 params[GUC_CTL_CTXINFO] = (pgs << GUC_CTL_BASE_ADDR_SHIFT) |
198 (ctx_in_16 << GUC_CTL_CTXNUM_IN16_SHIFT);
199
200 params[GUC_CTL_FEATURE] |= GUC_CTL_KERNEL_SUBMISSIONS;
201
202 /* Unmask this bit to enable the GuC's internal scheduler */
203 params[GUC_CTL_FEATURE] &= ~GUC_CTL_DISABLE_SCHEDULER;
204 }
205
Alex Dai33a732f2015-08-12 15:43:36 +0100206 I915_WRITE(SOFT_SCRATCH(0), 0);
207
208 for (i = 0; i < GUC_CTL_MAX_DWORDS; i++)
209 I915_WRITE(SOFT_SCRATCH(1 + i), params[i]);
210}
211
212/*
213 * Read the GuC status register (GUC_STATUS) and store it in the
214 * specified location; then return a boolean indicating whether
215 * the value matches either of two values representing completion
216 * of the GuC boot process.
217 *
Tvrtko Ursulin36894e82016-02-11 10:27:31 +0000218 * This is used for polling the GuC status in a wait_for()
Alex Dai33a732f2015-08-12 15:43:36 +0100219 * loop below.
220 */
221static inline bool guc_ucode_response(struct drm_i915_private *dev_priv,
222 u32 *status)
223{
224 u32 val = I915_READ(GUC_STATUS);
Alex Dai0d44d3f2015-09-22 13:48:40 -0700225 u32 uk_val = val & GS_UKERNEL_MASK;
Alex Dai33a732f2015-08-12 15:43:36 +0100226 *status = val;
Alex Dai0d44d3f2015-09-22 13:48:40 -0700227 return (uk_val == GS_UKERNEL_READY ||
228 ((val & GS_MIA_CORE_STATE) && uk_val == GS_UKERNEL_LAPIC_DONE));
Alex Dai33a732f2015-08-12 15:43:36 +0100229}
230
231/*
232 * Transfer the firmware image to RAM for execution by the microcontroller.
233 *
Alex Dai33a732f2015-08-12 15:43:36 +0100234 * Architecturally, the DMA engine is bidirectional, and can potentially even
235 * transfer between GTT locations. This functionality is left out of the API
236 * for now as there is no need for it.
237 *
238 * Note that GuC needs the CSS header plus uKernel code to be copied by the
239 * DMA engine in one operation, whereas the RSA signature is loaded via MMIO.
240 */
Alex Dai33a732f2015-08-12 15:43:36 +0100241static int guc_ucode_xfer_dma(struct drm_i915_private *dev_priv)
242{
243 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
244 struct drm_i915_gem_object *fw_obj = guc_fw->guc_fw_obj;
245 unsigned long offset;
246 struct sg_table *sg = fw_obj->pages;
Alex Daifeda33e2015-10-19 16:10:54 -0700247 u32 status, rsa[UOS_RSA_SCRATCH_MAX_COUNT];
Alex Dai33a732f2015-08-12 15:43:36 +0100248 int i, ret = 0;
249
Alex Daifeda33e2015-10-19 16:10:54 -0700250 /* where RSA signature starts */
251 offset = guc_fw->rsa_offset;
Alex Dai33a732f2015-08-12 15:43:36 +0100252
253 /* Copy RSA signature from the fw image to HW for verification */
Alex Daifeda33e2015-10-19 16:10:54 -0700254 sg_pcopy_to_buffer(sg->sgl, sg->nents, rsa, sizeof(rsa), offset);
255 for (i = 0; i < UOS_RSA_SCRATCH_MAX_COUNT; i++)
Ville Syrjäläab9cc552015-09-18 20:03:24 +0300256 I915_WRITE(UOS_RSA_SCRATCH(i), rsa[i]);
Alex Dai33a732f2015-08-12 15:43:36 +0100257
Alex Daifeda33e2015-10-19 16:10:54 -0700258 /* The header plus uCode will be copied to WOPCM via DMA, excluding any
259 * other components */
260 I915_WRITE(DMA_COPY_SIZE, guc_fw->header_size + guc_fw->ucode_size);
261
Alex Dai33a732f2015-08-12 15:43:36 +0100262 /* Set the source address for the new blob */
Alex Daifeda33e2015-10-19 16:10:54 -0700263 offset = i915_gem_obj_ggtt_offset(fw_obj) + guc_fw->header_offset;
Alex Dai33a732f2015-08-12 15:43:36 +0100264 I915_WRITE(DMA_ADDR_0_LOW, lower_32_bits(offset));
265 I915_WRITE(DMA_ADDR_0_HIGH, upper_32_bits(offset) & 0xFFFF);
266
267 /*
268 * Set the DMA destination. Current uCode expects the code to be
269 * loaded at 8k; locations below this are used for the stack.
270 */
271 I915_WRITE(DMA_ADDR_1_LOW, 0x2000);
272 I915_WRITE(DMA_ADDR_1_HIGH, DMA_ADDRESS_SPACE_WOPCM);
273
274 /* Finally start the DMA */
275 I915_WRITE(DMA_CTRL, _MASKED_BIT_ENABLE(UOS_MOVE | START_DMA));
276
277 /*
Tvrtko Ursulin36894e82016-02-11 10:27:31 +0000278 * Wait for the DMA to complete & the GuC to start up.
Alex Dai33a732f2015-08-12 15:43:36 +0100279 * NB: Docs recommend not using the interrupt for completion.
280 * Measurements indicate this should take no more than 20ms, so a
281 * timeout here indicates that the GuC has failed and is unusable.
282 * (Higher levels of the driver will attempt to fall back to
283 * execlist mode if this happens.)
284 */
Tvrtko Ursulin36894e82016-02-11 10:27:31 +0000285 ret = wait_for(guc_ucode_response(dev_priv, &status), 100);
Alex Dai33a732f2015-08-12 15:43:36 +0100286
287 DRM_DEBUG_DRIVER("DMA status 0x%x, GuC status 0x%x\n",
288 I915_READ(DMA_CTRL), status);
289
290 if ((status & GS_BOOTROM_MASK) == GS_BOOTROM_RSA_FAILED) {
291 DRM_ERROR("GuC firmware signature verification failed\n");
292 ret = -ENOEXEC;
293 }
294
295 DRM_DEBUG_DRIVER("returning %d\n", ret);
296
297 return ret;
298}
299
Peter Antoine74aa1562016-05-17 15:12:45 +0100300static u32 guc_wopcm_size(struct drm_i915_private *dev_priv)
301{
302 u32 wopcm_size = GUC_WOPCM_TOP;
303
304 /* On BXT, the top of WOPCM is reserved for RC6 context */
305 if (IS_BROXTON(dev_priv))
306 wopcm_size -= BXT_GUC_WOPCM_RC6_RESERVED;
307
308 return wopcm_size;
309}
310
Alex Dai33a732f2015-08-12 15:43:36 +0100311/*
312 * Load the GuC firmware blob into the MinuteIA.
313 */
314static int guc_ucode_xfer(struct drm_i915_private *dev_priv)
315{
316 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
Chris Wilson91c8a322016-07-05 10:40:23 +0100317 struct drm_device *dev = &dev_priv->drm;
Alex Dai33a732f2015-08-12 15:43:36 +0100318 int ret;
319
320 ret = i915_gem_object_set_to_gtt_domain(guc_fw->guc_fw_obj, false);
321 if (ret) {
322 DRM_DEBUG_DRIVER("set-domain failed %d\n", ret);
323 return ret;
324 }
325
326 ret = i915_gem_obj_ggtt_pin(guc_fw->guc_fw_obj, 0, 0);
327 if (ret) {
328 DRM_DEBUG_DRIVER("pin failed %d\n", ret);
329 return ret;
330 }
331
332 /* Invalidate GuC TLB to let GuC take the latest updates to GTT. */
333 I915_WRITE(GEN8_GTCR, GEN8_GTCR_INVALIDATE);
334
335 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
336
337 /* init WOPCM */
Peter Antoine74aa1562016-05-17 15:12:45 +0100338 I915_WRITE(GUC_WOPCM_SIZE, guc_wopcm_size(dev_priv));
Alex Dai33a732f2015-08-12 15:43:36 +0100339 I915_WRITE(DMA_GUC_WOPCM_OFFSET, GUC_WOPCM_OFFSET_VALUE);
340
341 /* Enable MIA caching. GuC clock gating is disabled. */
342 I915_WRITE(GUC_SHIM_CONTROL, GUC_SHIM_CONTROL_VALUE);
343
Nick Hoathb970b482015-09-08 10:31:53 +0100344 /* WaDisableMinuteIaClockGating:skl,bxt */
Jani Nikulae87a0052015-10-20 15:22:02 +0300345 if (IS_SKL_REVID(dev, 0, SKL_REVID_B0) ||
Tim Gorecbdc12a2015-10-26 10:48:58 +0000346 IS_BXT_REVID(dev, 0, BXT_REVID_A1)) {
Nick Hoathb970b482015-09-08 10:31:53 +0100347 I915_WRITE(GUC_SHIM_CONTROL, (I915_READ(GUC_SHIM_CONTROL) &
348 ~GUC_ENABLE_MIA_CLOCK_GATING));
349 }
350
Alex Dai33a732f2015-08-12 15:43:36 +0100351 /* WaC6DisallowByGfxPause*/
Tim Gore65fe29e2016-07-20 11:00:25 +0100352 if (IS_SKL_REVID(dev, 0, SKL_REVID_C0) ||
353 IS_BXT_REVID(dev, 0, BXT_REVID_B0))
354 I915_WRITE(GEN6_GFXPAUSE, 0x30FFF);
Alex Dai33a732f2015-08-12 15:43:36 +0100355
356 if (IS_BROXTON(dev))
357 I915_WRITE(GEN9LP_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
358 else
359 I915_WRITE(GEN9_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
360
361 if (IS_GEN9(dev)) {
362 /* DOP Clock Gating Enable for GuC clocks */
363 I915_WRITE(GEN7_MISCCPCTL, (GEN8_DOP_CLOCK_GATE_GUC_ENABLE |
364 I915_READ(GEN7_MISCCPCTL)));
365
366 /* allows for 5us before GT can go to RC6 */
367 I915_WRITE(GUC_ARAT_C6DIS, 0x1FF);
368 }
369
370 set_guc_init_params(dev_priv);
371
372 ret = guc_ucode_xfer_dma(dev_priv);
373
374 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
375
376 /*
377 * We keep the object pages for reuse during resume. But we can unpin it
378 * now that DMA has completed, so it doesn't continue to take up space.
379 */
380 i915_gem_object_ggtt_unpin(guc_fw->guc_fw_obj);
381
382 return ret;
383}
384
Arun Siluvery6b332fa2016-04-04 18:50:56 +0100385static int i915_reset_guc(struct drm_i915_private *dev_priv)
386{
387 int ret;
388 u32 guc_status;
389
390 ret = intel_guc_reset(dev_priv);
391 if (ret) {
392 DRM_ERROR("GuC reset failed, ret = %d\n", ret);
393 return ret;
394 }
395
396 guc_status = I915_READ(GUC_STATUS);
397 WARN(!(guc_status & GS_MIA_IN_RESET),
398 "GuC status: 0x%x, MIA core expected to be in reset\n", guc_status);
399
400 return ret;
401}
402
Alex Dai33a732f2015-08-12 15:43:36 +0100403/**
Dave Gordonf09d6752016-05-13 15:36:29 +0100404 * intel_guc_setup() - finish preparing the GuC for activity
Alex Dai33a732f2015-08-12 15:43:36 +0100405 * @dev: drm device
406 *
407 * Called from gem_init_hw() during driver loading and also after a GPU reset.
408 *
Dave Gordonf09d6752016-05-13 15:36:29 +0100409 * The main action required here it to load the GuC uCode into the device.
Alex Dai33a732f2015-08-12 15:43:36 +0100410 * The firmware image should have already been fetched into memory by the
Dave Gordonf09d6752016-05-13 15:36:29 +0100411 * earlier call to intel_guc_init(), so here we need only check that worked,
412 * and then transfer the image to the h/w.
Alex Dai33a732f2015-08-12 15:43:36 +0100413 *
414 * Return: non-zero code on error
415 */
Dave Gordonf09d6752016-05-13 15:36:29 +0100416int intel_guc_setup(struct drm_device *dev)
Alex Dai33a732f2015-08-12 15:43:36 +0100417{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100418 struct drm_i915_private *dev_priv = to_i915(dev);
Alex Dai33a732f2015-08-12 15:43:36 +0100419 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
Dave Gordonfce91f22016-05-20 11:42:42 +0100420 const char *fw_path = guc_fw->guc_fw_path;
421 int retries, ret, err;
Alex Dai33a732f2015-08-12 15:43:36 +0100422
Dave Gordonfce91f22016-05-20 11:42:42 +0100423 DRM_DEBUG_DRIVER("GuC fw status: path %s, fetch %s, load %s\n",
424 fw_path,
425 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status),
426 intel_guc_fw_status_repr(guc_fw->guc_fw_load_status));
427
428 /* Loading forbidden, or no firmware to load? */
429 if (!i915.enable_guc_loading) {
430 err = 0;
431 goto fail;
Dave Gordone556f7c2016-06-07 09:14:49 +0100432 } else if (fw_path == NULL) {
433 /* Device is known to have no uCode (e.g. no GuC) */
434 err = -ENXIO;
435 goto fail;
436 } else if (*fw_path == '\0') {
437 /* Device has a GuC but we don't know what f/w to load? */
438 DRM_INFO("No GuC firmware known for this platform\n");
Dave Gordonfce91f22016-05-20 11:42:42 +0100439 err = -ENODEV;
440 goto fail;
441 }
442
443 /* Fetch failed, or already fetched but failed to load? */
444 if (guc_fw->guc_fw_fetch_status != GUC_FIRMWARE_SUCCESS) {
445 err = -EIO;
446 goto fail;
447 } else if (guc_fw->guc_fw_load_status == GUC_FIRMWARE_FAIL) {
448 err = -ENOEXEC;
449 goto fail;
450 }
451
452 direct_interrupts_to_host(dev_priv);
453
454 guc_fw->guc_fw_load_status = GUC_FIRMWARE_PENDING;
Daniel Vetter9f9e5392015-10-23 11:10:59 +0200455
Alex Dai33a732f2015-08-12 15:43:36 +0100456 DRM_DEBUG_DRIVER("GuC fw status: fetch %s, load %s\n",
457 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status),
458 intel_guc_fw_status_repr(guc_fw->guc_fw_load_status));
459
Dave Gordonbeffa512016-06-10 18:29:26 +0100460 err = i915_guc_submission_init(dev_priv);
Alex Daibac427f2015-08-12 15:43:39 +0100461 if (err)
462 goto fail;
463
Arun Siluvery6b332fa2016-04-04 18:50:56 +0100464 /*
465 * WaEnableuKernelHeaderValidFix:skl,bxt
466 * For BXT, this is only upto B0 but below WA is required for later
467 * steppings also so this is extended as well.
468 */
469 /* WaEnableGuCBootHashCheckNotSet:skl,bxt */
Dave Gordond7617012016-04-04 18:50:57 +0100470 for (retries = 3; ; ) {
471 /*
472 * Always reset the GuC just before (re)loading, so
473 * that the state and timing are fairly predictable
474 */
475 err = i915_reset_guc(dev_priv);
Arun Siluvery6b332fa2016-04-04 18:50:56 +0100476 if (err) {
Dave Gordonfce91f22016-05-20 11:42:42 +0100477 DRM_ERROR("GuC reset failed: %d\n", err);
Arun Siluvery6b332fa2016-04-04 18:50:56 +0100478 goto fail;
479 }
Dave Gordond7617012016-04-04 18:50:57 +0100480
481 err = guc_ucode_xfer(dev_priv);
482 if (!err)
483 break;
484
485 if (--retries == 0)
486 goto fail;
487
Dave Gordonfce91f22016-05-20 11:42:42 +0100488 DRM_INFO("GuC fw load failed: %d; will reset and "
489 "retry %d more time(s)\n", err, retries);
Arun Siluvery6b332fa2016-04-04 18:50:56 +0100490 }
Alex Dai33a732f2015-08-12 15:43:36 +0100491
492 guc_fw->guc_fw_load_status = GUC_FIRMWARE_SUCCESS;
493
494 DRM_DEBUG_DRIVER("GuC fw status: fetch %s, load %s\n",
495 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status),
496 intel_guc_fw_status_repr(guc_fw->guc_fw_load_status));
497
Dave Gordon44a28b12015-08-12 15:43:41 +0100498 if (i915.enable_guc_submission) {
Dave Gordonbeffa512016-06-10 18:29:26 +0100499 err = i915_guc_submission_enable(dev_priv);
Dave Gordon44a28b12015-08-12 15:43:41 +0100500 if (err)
501 goto fail;
Dave Gordon4df001d2015-08-12 15:43:42 +0100502 direct_interrupts_to_guc(dev_priv);
Dave Gordon44a28b12015-08-12 15:43:41 +0100503 }
504
Alex Dai33a732f2015-08-12 15:43:36 +0100505 return 0;
506
507fail:
508 if (guc_fw->guc_fw_load_status == GUC_FIRMWARE_PENDING)
509 guc_fw->guc_fw_load_status = GUC_FIRMWARE_FAIL;
510
Dave Gordon4df001d2015-08-12 15:43:42 +0100511 direct_interrupts_to_host(dev_priv);
Dave Gordonbeffa512016-06-10 18:29:26 +0100512 i915_guc_submission_disable(dev_priv);
513 i915_guc_submission_fini(dev_priv);
Dave Gordon44a28b12015-08-12 15:43:41 +0100514
Dave Gordonfce91f22016-05-20 11:42:42 +0100515 /*
516 * We've failed to load the firmware :(
517 *
518 * Decide whether to disable GuC submission and fall back to
519 * execlist mode, and whether to hide the error by returning
520 * zero or to return -EIO, which the caller will treat as a
521 * nonfatal error (i.e. it doesn't prevent driver load, but
522 * marks the GPU as wedged until reset).
523 */
524 if (i915.enable_guc_loading > 1) {
525 ret = -EIO;
526 } else if (i915.enable_guc_submission > 1) {
527 ret = -EIO;
528 } else {
529 ret = 0;
530 }
531
Dave Gordon4e50f792016-06-10 17:21:25 +0100532 if (err == 0 && !HAS_GUC_UCODE(dev))
533 ; /* Don't mention the GuC! */
534 else if (err == 0)
Dave Gordonfce91f22016-05-20 11:42:42 +0100535 DRM_INFO("GuC firmware load skipped\n");
Dave Gordon4e50f792016-06-10 17:21:25 +0100536 else if (ret != -EIO)
Dave Gordonfce91f22016-05-20 11:42:42 +0100537 DRM_INFO("GuC firmware load failed: %d\n", err);
Dave Gordon4e50f792016-06-10 17:21:25 +0100538 else
539 DRM_ERROR("GuC firmware load failed: %d\n", err);
Dave Gordonfce91f22016-05-20 11:42:42 +0100540
541 if (i915.enable_guc_submission) {
542 if (fw_path == NULL)
543 DRM_INFO("GuC submission without firmware not supported\n");
544 if (ret == 0)
Dave Gordone556f7c2016-06-07 09:14:49 +0100545 DRM_INFO("Falling back from GuC submission to execlist mode\n");
Dave Gordonfce91f22016-05-20 11:42:42 +0100546 else
547 DRM_ERROR("GuC init failed: %d\n", ret);
548 }
549 i915.enable_guc_submission = 0;
550
551 return ret;
Alex Dai33a732f2015-08-12 15:43:36 +0100552}
553
554static void guc_fw_fetch(struct drm_device *dev, struct intel_guc_fw *guc_fw)
555{
556 struct drm_i915_gem_object *obj;
557 const struct firmware *fw;
Alex Daifeda33e2015-10-19 16:10:54 -0700558 struct guc_css_header *css;
559 size_t size;
Alex Dai33a732f2015-08-12 15:43:36 +0100560 int err;
561
562 DRM_DEBUG_DRIVER("before requesting firmware: GuC fw fetch status %s\n",
563 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status));
564
565 err = request_firmware(&fw, guc_fw->guc_fw_path, &dev->pdev->dev);
566 if (err)
567 goto fail;
568 if (!fw)
569 goto fail;
570
571 DRM_DEBUG_DRIVER("fetch GuC fw from %s succeeded, fw %p\n",
572 guc_fw->guc_fw_path, fw);
Alex Dai33a732f2015-08-12 15:43:36 +0100573
Alex Daifeda33e2015-10-19 16:10:54 -0700574 /* Check the size of the blob before examining buffer contents */
575 if (fw->size < sizeof(struct guc_css_header)) {
576 DRM_ERROR("Firmware header is missing\n");
Alex Dai33a732f2015-08-12 15:43:36 +0100577 goto fail;
Alex Daifeda33e2015-10-19 16:10:54 -0700578 }
579
580 css = (struct guc_css_header *)fw->data;
581
582 /* Firmware bits always start from header */
583 guc_fw->header_offset = 0;
584 guc_fw->header_size = (css->header_size_dw - css->modulus_size_dw -
585 css->key_size_dw - css->exponent_size_dw) * sizeof(u32);
586
587 if (guc_fw->header_size != sizeof(struct guc_css_header)) {
588 DRM_ERROR("CSS header definition mismatch\n");
589 goto fail;
590 }
591
592 /* then, uCode */
593 guc_fw->ucode_offset = guc_fw->header_offset + guc_fw->header_size;
594 guc_fw->ucode_size = (css->size_dw - css->header_size_dw) * sizeof(u32);
595
596 /* now RSA */
597 if (css->key_size_dw != UOS_RSA_SCRATCH_MAX_COUNT) {
598 DRM_ERROR("RSA key size is bad\n");
599 goto fail;
600 }
601 guc_fw->rsa_offset = guc_fw->ucode_offset + guc_fw->ucode_size;
602 guc_fw->rsa_size = css->key_size_dw * sizeof(u32);
603
604 /* At least, it should have header, uCode and RSA. Size of all three. */
605 size = guc_fw->header_size + guc_fw->ucode_size + guc_fw->rsa_size;
606 if (fw->size < size) {
607 DRM_ERROR("Missing firmware components\n");
608 goto fail;
609 }
610
611 /* Header and uCode will be loaded to WOPCM. Size of the two. */
612 size = guc_fw->header_size + guc_fw->ucode_size;
Dave Gordonf19ec8c2016-07-04 11:34:37 +0100613 if (size > guc_wopcm_size(to_i915(dev))) {
Alex Daifeda33e2015-10-19 16:10:54 -0700614 DRM_ERROR("Firmware is too large to fit in WOPCM\n");
615 goto fail;
616 }
Alex Dai33a732f2015-08-12 15:43:36 +0100617
618 /*
619 * The GuC firmware image has the version number embedded at a well-known
620 * offset within the firmware blob; note that major / minor version are
621 * TWO bytes each (i.e. u16), although all pointers and offsets are defined
622 * in terms of bytes (u8).
623 */
Alex Daifeda33e2015-10-19 16:10:54 -0700624 guc_fw->guc_fw_major_found = css->guc_sw_version >> 16;
625 guc_fw->guc_fw_minor_found = css->guc_sw_version & 0xFFFF;
Alex Dai33a732f2015-08-12 15:43:36 +0100626
627 if (guc_fw->guc_fw_major_found != guc_fw->guc_fw_major_wanted ||
628 guc_fw->guc_fw_minor_found < guc_fw->guc_fw_minor_wanted) {
629 DRM_ERROR("GuC firmware version %d.%d, required %d.%d\n",
630 guc_fw->guc_fw_major_found, guc_fw->guc_fw_minor_found,
631 guc_fw->guc_fw_major_wanted, guc_fw->guc_fw_minor_wanted);
632 err = -ENOEXEC;
633 goto fail;
634 }
635
636 DRM_DEBUG_DRIVER("firmware version %d.%d OK (minimum %d.%d)\n",
637 guc_fw->guc_fw_major_found, guc_fw->guc_fw_minor_found,
638 guc_fw->guc_fw_major_wanted, guc_fw->guc_fw_minor_wanted);
639
Daniel Stonebf248ca2015-11-03 21:42:31 +0000640 mutex_lock(&dev->struct_mutex);
Alex Dai33a732f2015-08-12 15:43:36 +0100641 obj = i915_gem_object_create_from_data(dev, fw->data, fw->size);
Daniel Stonebf248ca2015-11-03 21:42:31 +0000642 mutex_unlock(&dev->struct_mutex);
Alex Dai33a732f2015-08-12 15:43:36 +0100643 if (IS_ERR_OR_NULL(obj)) {
644 err = obj ? PTR_ERR(obj) : -ENOMEM;
645 goto fail;
646 }
647
648 guc_fw->guc_fw_obj = obj;
649 guc_fw->guc_fw_size = fw->size;
650
651 DRM_DEBUG_DRIVER("GuC fw fetch status SUCCESS, obj %p\n",
652 guc_fw->guc_fw_obj);
653
654 release_firmware(fw);
655 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_SUCCESS;
656 return;
657
658fail:
659 DRM_DEBUG_DRIVER("GuC fw fetch status FAIL; err %d, fw %p, obj %p\n",
660 err, fw, guc_fw->guc_fw_obj);
661 DRM_ERROR("Failed to fetch GuC firmware from %s (error %d)\n",
662 guc_fw->guc_fw_path, err);
663
Alex Daia9d8ada2016-01-13 11:01:50 -0800664 mutex_lock(&dev->struct_mutex);
Alex Dai33a732f2015-08-12 15:43:36 +0100665 obj = guc_fw->guc_fw_obj;
666 if (obj)
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100667 i915_gem_object_put(obj);
Alex Dai33a732f2015-08-12 15:43:36 +0100668 guc_fw->guc_fw_obj = NULL;
Alex Daia9d8ada2016-01-13 11:01:50 -0800669 mutex_unlock(&dev->struct_mutex);
Alex Dai33a732f2015-08-12 15:43:36 +0100670
671 release_firmware(fw); /* OK even if fw is NULL */
672 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_FAIL;
673}
674
675/**
Dave Gordonf09d6752016-05-13 15:36:29 +0100676 * intel_guc_init() - define parameters and fetch firmware
Alex Dai33a732f2015-08-12 15:43:36 +0100677 * @dev: drm device
678 *
679 * Called early during driver load, but after GEM is initialised.
Alex Dai33a732f2015-08-12 15:43:36 +0100680 *
681 * The firmware will be transferred to the GuC's memory later,
Dave Gordonf09d6752016-05-13 15:36:29 +0100682 * when intel_guc_setup() is called.
Alex Dai33a732f2015-08-12 15:43:36 +0100683 */
Dave Gordonf09d6752016-05-13 15:36:29 +0100684void intel_guc_init(struct drm_device *dev)
Alex Dai33a732f2015-08-12 15:43:36 +0100685{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100686 struct drm_i915_private *dev_priv = to_i915(dev);
Alex Dai33a732f2015-08-12 15:43:36 +0100687 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
688 const char *fw_path;
689
Dave Gordonfce91f22016-05-20 11:42:42 +0100690 /* A negative value means "use platform default" */
691 if (i915.enable_guc_loading < 0)
692 i915.enable_guc_loading = HAS_GUC_UCODE(dev);
693 if (i915.enable_guc_submission < 0)
694 i915.enable_guc_submission = HAS_GUC_SCHED(dev);
Alex Dai33a732f2015-08-12 15:43:36 +0100695
696 if (!HAS_GUC_UCODE(dev)) {
697 fw_path = NULL;
698 } else if (IS_SKYLAKE(dev)) {
699 fw_path = I915_SKL_GUC_UCODE;
Alex Daiab65cce2016-03-16 15:24:13 -0700700 guc_fw->guc_fw_major_wanted = 6;
701 guc_fw->guc_fw_minor_wanted = 1;
Nick Hoath57bf5c82016-05-06 11:42:53 +0100702 } else if (IS_BROXTON(dev)) {
703 fw_path = I915_BXT_GUC_UCODE;
704 guc_fw->guc_fw_major_wanted = 8;
705 guc_fw->guc_fw_minor_wanted = 7;
Peter Antoineff64cc12016-06-30 09:37:52 -0700706 } else if (IS_KABYLAKE(dev)) {
707 fw_path = I915_KBL_GUC_UCODE;
708 guc_fw->guc_fw_major_wanted = 9;
709 guc_fw->guc_fw_minor_wanted = 14;
Alex Dai33a732f2015-08-12 15:43:36 +0100710 } else {
Alex Dai33a732f2015-08-12 15:43:36 +0100711 fw_path = ""; /* unknown device */
712 }
713
714 guc_fw->guc_dev = dev;
715 guc_fw->guc_fw_path = fw_path;
716 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_NONE;
717 guc_fw->guc_fw_load_status = GUC_FIRMWARE_NONE;
718
Dave Gordonfce91f22016-05-20 11:42:42 +0100719 /* Early (and silent) return if GuC loading is disabled */
720 if (!i915.enable_guc_loading)
721 return;
Alex Dai33a732f2015-08-12 15:43:36 +0100722 if (fw_path == NULL)
723 return;
Dave Gordonfce91f22016-05-20 11:42:42 +0100724 if (*fw_path == '\0')
Alex Dai33a732f2015-08-12 15:43:36 +0100725 return;
Alex Dai33a732f2015-08-12 15:43:36 +0100726
727 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_PENDING;
728 DRM_DEBUG_DRIVER("GuC firmware pending, path %s\n", fw_path);
729 guc_fw_fetch(dev, guc_fw);
730 /* status must now be FAIL or SUCCESS */
731}
732
733/**
Dave Gordonf09d6752016-05-13 15:36:29 +0100734 * intel_guc_fini() - clean up all allocated resources
Alex Dai33a732f2015-08-12 15:43:36 +0100735 * @dev: drm device
736 */
Dave Gordonf09d6752016-05-13 15:36:29 +0100737void intel_guc_fini(struct drm_device *dev)
Alex Dai33a732f2015-08-12 15:43:36 +0100738{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100739 struct drm_i915_private *dev_priv = to_i915(dev);
Alex Dai33a732f2015-08-12 15:43:36 +0100740 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
741
Alex Daia9d8ada2016-01-13 11:01:50 -0800742 mutex_lock(&dev->struct_mutex);
Dave Gordon4df001d2015-08-12 15:43:42 +0100743 direct_interrupts_to_host(dev_priv);
Dave Gordonbeffa512016-06-10 18:29:26 +0100744 i915_guc_submission_disable(dev_priv);
745 i915_guc_submission_fini(dev_priv);
Alex Daibac427f2015-08-12 15:43:39 +0100746
Alex Dai33a732f2015-08-12 15:43:36 +0100747 if (guc_fw->guc_fw_obj)
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100748 i915_gem_object_put(guc_fw->guc_fw_obj);
Alex Dai33a732f2015-08-12 15:43:36 +0100749 guc_fw->guc_fw_obj = NULL;
Daniel Stonebf248ca2015-11-03 21:42:31 +0000750 mutex_unlock(&dev->struct_mutex);
Alex Dai33a732f2015-08-12 15:43:36 +0100751
752 guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_NONE;
753}