blob: 0b8b2505a44a3ea1b0af6d1e5a0139541c57a6f8 [file] [log] [blame]
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +01001/*
2 * Copyright © 2016 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 */
24
25#include "i915_drv.h"
26#include "intel_uc.h"
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +010027#include <linux/firmware.h>
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +010028
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +010029/* Reset GuC providing us with fresh state for both GuC and HuC.
30 */
31static int __intel_uc_reset_hw(struct drm_i915_private *dev_priv)
32{
33 int ret;
34 u32 guc_status;
35
36 ret = intel_guc_reset(dev_priv);
37 if (ret) {
38 DRM_ERROR("GuC reset failed, ret = %d\n", ret);
39 return ret;
40 }
41
42 guc_status = I915_READ(GUC_STATUS);
43 WARN(!(guc_status & GS_MIA_IN_RESET),
44 "GuC status: 0x%x, MIA core expected to be in reset\n",
45 guc_status);
46
47 return ret;
48}
49
Arkadiusz Hilerd2be9f22017-03-14 15:28:10 +010050void intel_uc_sanitize_options(struct drm_i915_private *dev_priv)
51{
52 if (!HAS_GUC(dev_priv)) {
Michal Wajdeczkod4a70a12017-03-15 13:37:41 +000053 if (i915.enable_guc_loading > 0 ||
54 i915.enable_guc_submission > 0)
55 DRM_INFO("Ignoring GuC options, no hardware\n");
Arkadiusz Hilerd2be9f22017-03-14 15:28:10 +010056
57 i915.enable_guc_loading = 0;
58 i915.enable_guc_submission = 0;
Michal Wajdeczkod4a70a12017-03-15 13:37:41 +000059 return;
Arkadiusz Hilerd2be9f22017-03-14 15:28:10 +010060 }
Arkadiusz Hilerb551f612017-03-14 15:28:13 +010061
Michal Wajdeczkod4a70a12017-03-15 13:37:41 +000062 /* A negative value means "use platform default" */
63 if (i915.enable_guc_loading < 0)
64 i915.enable_guc_loading = HAS_GUC_UCODE(dev_priv);
65
66 /* Verify firmware version */
Arkadiusz Hilerb551f612017-03-14 15:28:13 +010067 if (i915.enable_guc_loading) {
68 if (HAS_HUC_UCODE(dev_priv))
69 intel_huc_select_fw(&dev_priv->huc);
70
71 if (intel_guc_select_fw(&dev_priv->guc))
72 i915.enable_guc_loading = 0;
73 }
Michal Wajdeczkod4a70a12017-03-15 13:37:41 +000074
75 /* Can't enable guc submission without guc loaded */
76 if (!i915.enable_guc_loading)
77 i915.enable_guc_submission = 0;
78
79 /* A negative value means "use platform default" */
80 if (i915.enable_guc_submission < 0)
81 i915.enable_guc_submission = HAS_GUC_SCHED(dev_priv);
Arkadiusz Hilerd2be9f22017-03-14 15:28:10 +010082}
83
Arkadiusz Hiler413e8fd2016-11-25 18:59:36 +010084void intel_uc_init_early(struct drm_i915_private *dev_priv)
85{
Oscar Mateo5e7cd372017-03-22 10:39:49 -070086 struct intel_guc *guc = &dev_priv->guc;
87
88 mutex_init(&guc->send_mutex);
89 guc->send = intel_guc_send_mmio;
Arkadiusz Hiler413e8fd2016-11-25 18:59:36 +010090}
91
Arkadiusz Hiler29ad6a32017-03-14 15:28:09 +010092void intel_uc_init_fw(struct drm_i915_private *dev_priv)
93{
Arkadiusz Hilerb551f612017-03-14 15:28:13 +010094 if (dev_priv->huc.fw.path)
95 intel_uc_prepare_fw(dev_priv, &dev_priv->huc.fw);
Arkadiusz Hilerd2be9f22017-03-14 15:28:10 +010096
Arkadiusz Hilerb551f612017-03-14 15:28:13 +010097 if (dev_priv->guc.fw.path)
98 intel_uc_prepare_fw(dev_priv, &dev_priv->guc.fw);
Arkadiusz Hiler29ad6a32017-03-14 15:28:09 +010099}
100
Oscar Mateo3950bf32017-03-22 10:39:46 -0700101void intel_uc_fini_fw(struct drm_i915_private *dev_priv)
102{
103 struct intel_uc_fw *guc_fw = &dev_priv->guc.fw;
104 struct intel_uc_fw *huc_fw = &dev_priv->huc.fw;
105 struct drm_i915_gem_object *obj;
106
107 obj = fetch_and_zero(&guc_fw->obj);
108 if (obj)
109 i915_gem_object_put(obj);
110
111 guc_fw->fetch_status = INTEL_UC_FIRMWARE_NONE;
112
113 obj = fetch_and_zero(&huc_fw->obj);
114 if (obj)
115 i915_gem_object_put(obj);
116
117 huc_fw->fetch_status = INTEL_UC_FIRMWARE_NONE;
118}
119
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +0100120int intel_uc_init_hw(struct drm_i915_private *dev_priv)
121{
122 int ret, attempts;
123
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +0100124 gen9_reset_guc_interrupts(dev_priv);
125
126 /* We need to notify the guc whenever we change the GGTT */
127 i915_ggtt_enable_guc(dev_priv);
128
Oscar Mateo3950bf32017-03-22 10:39:46 -0700129 /*
130 * This is stuff we need to have available at fw load time
131 * if we are planning to enable submission later
132 */
133 ret = i915_guc_submission_init(dev_priv);
134 if (ret)
135 goto err_guc;
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +0100136
137 /* WaEnableuKernelHeaderValidFix:skl */
138 /* WaEnableGuCBootHashCheckNotSet:skl,bxt,kbl */
139 if (IS_GEN9(dev_priv))
140 attempts = 3;
141 else
142 attempts = 1;
143
144 while (attempts--) {
145 /*
146 * Always reset the GuC just before (re)loading, so
147 * that the state and timing are fairly predictable
148 */
149 ret = __intel_uc_reset_hw(dev_priv);
150 if (ret)
151 goto err_submission;
152
153 intel_huc_init_hw(&dev_priv->huc);
154 ret = intel_guc_init_hw(&dev_priv->guc);
155 if (ret == 0 || ret != -EAGAIN)
156 break;
157
158 DRM_DEBUG_DRIVER("GuC fw load failed: %d; will reset and "
159 "retry %d more time(s)\n", ret, attempts);
160 }
161
162 /* Did we succeded or run out of retries? */
163 if (ret)
164 goto err_submission;
165
166 intel_guc_auth_huc(dev_priv);
167 if (i915.enable_guc_submission) {
168 if (i915.guc_log_level >= 0)
169 gen9_enable_guc_interrupts(dev_priv);
170
171 ret = i915_guc_submission_enable(dev_priv);
172 if (ret)
Oscar Mateo3950bf32017-03-22 10:39:46 -0700173 goto err_interrupts;
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +0100174 }
175
176 return 0;
177
178 /*
179 * We've failed to load the firmware :(
180 *
181 * Decide whether to disable GuC submission and fall back to
182 * execlist mode, and whether to hide the error by returning
183 * zero or to return -EIO, which the caller will treat as a
184 * nonfatal error (i.e. it doesn't prevent driver load, but
185 * marks the GPU as wedged until reset).
186 */
Oscar Mateo3950bf32017-03-22 10:39:46 -0700187err_interrupts:
188 gen9_disable_guc_interrupts(dev_priv);
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +0100189err_submission:
Oscar Mateo3950bf32017-03-22 10:39:46 -0700190 i915_guc_submission_fini(dev_priv);
191err_guc:
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +0100192 i915_ggtt_disable_guc(dev_priv);
193
194 DRM_ERROR("GuC init failed\n");
195 if (i915.enable_guc_loading > 1 || i915.enable_guc_submission > 1)
196 ret = -EIO;
197 else
198 ret = 0;
199
200 if (i915.enable_guc_submission) {
201 i915.enable_guc_submission = 0;
202 DRM_NOTE("Falling back from GuC submission to execlist mode\n");
203 }
204
205 return ret;
206}
207
Oscar Mateo3950bf32017-03-22 10:39:46 -0700208void intel_uc_fini_hw(struct drm_i915_private *dev_priv)
209{
210 if (i915.enable_guc_submission) {
211 i915_guc_submission_disable(dev_priv);
212 gen9_disable_guc_interrupts(dev_priv);
213 }
214 i915_guc_submission_fini(dev_priv);
215 i915_ggtt_disable_guc(dev_priv);
216}
217
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100218/*
219 * Read GuC command/status register (SOFT_SCRATCH_0)
220 * Return true if it contains a response rather than a command
221 */
Oscar Mateo5e7cd372017-03-22 10:39:49 -0700222static bool guc_recv(struct intel_guc *guc, u32 *status)
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100223{
Michal Wajdeczkobae3fdc2016-12-20 11:55:31 +0000224 struct drm_i915_private *dev_priv = guc_to_i915(guc);
225
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100226 u32 val = I915_READ(SOFT_SCRATCH(0));
227 *status = val;
228 return INTEL_GUC_RECV_IS_RESPONSE(val);
229}
230
Oscar Mateo5e7cd372017-03-22 10:39:49 -0700231/*
232 * This function implements the MMIO based host to GuC interface.
233 */
234int intel_guc_send_mmio(struct intel_guc *guc, const u32 *action, u32 len)
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100235{
236 struct drm_i915_private *dev_priv = guc_to_i915(guc);
237 u32 status;
238 int i;
239 int ret;
240
241 if (WARN_ON(len < 1 || len > 15))
242 return -EINVAL;
243
244 mutex_lock(&guc->send_mutex);
245 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
246
247 dev_priv->guc.action_count += 1;
248 dev_priv->guc.action_cmd = action[0];
249
250 for (i = 0; i < len; i++)
251 I915_WRITE(SOFT_SCRATCH(i), action[i]);
252
253 POSTING_READ(SOFT_SCRATCH(i - 1));
254
255 I915_WRITE(GUC_SEND_INTERRUPT, GUC_SEND_TRIGGER);
256
257 /*
258 * Fast commands should complete in less than 10us, so sample quickly
259 * up to that length of time, then switch to a slower sleep-wait loop.
260 * No inte_guc_send command should ever take longer than 10ms.
261 */
Oscar Mateo5e7cd372017-03-22 10:39:49 -0700262 ret = wait_for_us(guc_recv(guc, &status), 10);
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100263 if (ret)
Oscar Mateo5e7cd372017-03-22 10:39:49 -0700264 ret = wait_for(guc_recv(guc, &status), 10);
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100265 if (status != INTEL_GUC_STATUS_SUCCESS) {
266 /*
267 * Either the GuC explicitly returned an error (which
268 * we convert to -EIO here) or no response at all was
269 * received within the timeout limit (-ETIMEDOUT)
270 */
271 if (ret != -ETIMEDOUT)
272 ret = -EIO;
273
274 DRM_WARN("INTEL_GUC_SEND: Action 0x%X failed;"
275 " ret=%d status=0x%08X response=0x%08X\n",
276 action[0], ret, status, I915_READ(SOFT_SCRATCH(15)));
277
278 dev_priv->guc.action_fail += 1;
279 dev_priv->guc.action_err = ret;
280 }
281 dev_priv->guc.action_status = status;
282
283 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
284 mutex_unlock(&guc->send_mutex);
285
286 return ret;
287}
288
289int intel_guc_sample_forcewake(struct intel_guc *guc)
290{
291 struct drm_i915_private *dev_priv = guc_to_i915(guc);
292 u32 action[2];
293
294 action[0] = INTEL_GUC_ACTION_SAMPLE_FORCEWAKE;
295 /* WaRsDisableCoarsePowerGating:skl,bxt */
296 if (!intel_enable_rc6() || NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
297 action[1] = 0;
298 else
299 /* bit 0 and 1 are for Render and Media domain separately */
300 action[1] = GUC_FORCEWAKE_RENDER | GUC_FORCEWAKE_MEDIA;
301
302 return intel_guc_send(guc, action, ARRAY_SIZE(action));
303}
304
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100305void intel_uc_prepare_fw(struct drm_i915_private *dev_priv,
306 struct intel_uc_fw *uc_fw)
307{
308 struct pci_dev *pdev = dev_priv->drm.pdev;
309 struct drm_i915_gem_object *obj;
310 const struct firmware *fw = NULL;
311 struct uc_css_header *css;
312 size_t size;
313 int err;
314
Arkadiusz Hiler8fc2a4e2017-03-14 15:28:12 +0100315 uc_fw->fetch_status = INTEL_UC_FIRMWARE_PENDING;
316
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100317 DRM_DEBUG_DRIVER("before requesting firmware: uC fw fetch status %s\n",
Arkadiusz Hiler8fc2a4e2017-03-14 15:28:12 +0100318 intel_uc_fw_status_repr(uc_fw->fetch_status));
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100319
320 err = request_firmware(&fw, uc_fw->path, &pdev->dev);
321 if (err)
322 goto fail;
323 if (!fw)
324 goto fail;
325
326 DRM_DEBUG_DRIVER("fetch uC fw from %s succeeded, fw %p\n",
327 uc_fw->path, fw);
328
329 /* Check the size of the blob before examining buffer contents */
330 if (fw->size < sizeof(struct uc_css_header)) {
331 DRM_NOTE("Firmware header is missing\n");
332 goto fail;
333 }
334
335 css = (struct uc_css_header *)fw->data;
336
337 /* Firmware bits always start from header */
338 uc_fw->header_offset = 0;
339 uc_fw->header_size = (css->header_size_dw - css->modulus_size_dw -
340 css->key_size_dw - css->exponent_size_dw) * sizeof(u32);
341
342 if (uc_fw->header_size != sizeof(struct uc_css_header)) {
343 DRM_NOTE("CSS header definition mismatch\n");
344 goto fail;
345 }
346
347 /* then, uCode */
348 uc_fw->ucode_offset = uc_fw->header_offset + uc_fw->header_size;
349 uc_fw->ucode_size = (css->size_dw - css->header_size_dw) * sizeof(u32);
350
351 /* now RSA */
352 if (css->key_size_dw != UOS_RSA_SCRATCH_MAX_COUNT) {
353 DRM_NOTE("RSA key size is bad\n");
354 goto fail;
355 }
356 uc_fw->rsa_offset = uc_fw->ucode_offset + uc_fw->ucode_size;
357 uc_fw->rsa_size = css->key_size_dw * sizeof(u32);
358
359 /* At least, it should have header, uCode and RSA. Size of all three. */
360 size = uc_fw->header_size + uc_fw->ucode_size + uc_fw->rsa_size;
361 if (fw->size < size) {
362 DRM_NOTE("Missing firmware components\n");
363 goto fail;
364 }
365
366 /*
367 * The GuC firmware image has the version number embedded at a
368 * well-known offset within the firmware blob; note that major / minor
369 * version are TWO bytes each (i.e. u16), although all pointers and
370 * offsets are defined in terms of bytes (u8).
371 */
Arkadiusz Hiler6833b822017-03-15 14:34:15 +0100372 switch (uc_fw->type) {
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100373 case INTEL_UC_FW_TYPE_GUC:
374 /* Header and uCode will be loaded to WOPCM. Size of the two. */
375 size = uc_fw->header_size + uc_fw->ucode_size;
376
377 /* Top 32k of WOPCM is reserved (8K stack + 24k RC6 context). */
378 if (size > intel_guc_wopcm_size(dev_priv)) {
379 DRM_ERROR("Firmware is too large to fit in WOPCM\n");
380 goto fail;
381 }
382 uc_fw->major_ver_found = css->guc.sw_version >> 16;
383 uc_fw->minor_ver_found = css->guc.sw_version & 0xFFFF;
384 break;
385
386 case INTEL_UC_FW_TYPE_HUC:
387 uc_fw->major_ver_found = css->huc.sw_version >> 16;
388 uc_fw->minor_ver_found = css->huc.sw_version & 0xFFFF;
389 break;
390
391 default:
Arkadiusz Hiler6833b822017-03-15 14:34:15 +0100392 DRM_ERROR("Unknown firmware type %d\n", uc_fw->type);
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100393 err = -ENOEXEC;
394 goto fail;
395 }
396
Arkadiusz Hilerb3420dd2017-03-14 15:28:14 +0100397 if (uc_fw->major_ver_wanted == 0 && uc_fw->minor_ver_wanted == 0) {
398 DRM_NOTE("Skipping uC firmware version check\n");
399 } else if (uc_fw->major_ver_found != uc_fw->major_ver_wanted ||
400 uc_fw->minor_ver_found < uc_fw->minor_ver_wanted) {
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100401 DRM_NOTE("uC firmware version %d.%d, required %d.%d\n",
402 uc_fw->major_ver_found, uc_fw->minor_ver_found,
403 uc_fw->major_ver_wanted, uc_fw->minor_ver_wanted);
404 err = -ENOEXEC;
405 goto fail;
406 }
407
408 DRM_DEBUG_DRIVER("firmware version %d.%d OK (minimum %d.%d)\n",
409 uc_fw->major_ver_found, uc_fw->minor_ver_found,
410 uc_fw->major_ver_wanted, uc_fw->minor_ver_wanted);
411
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100412 obj = i915_gem_object_create_from_data(dev_priv, fw->data, fw->size);
Chris Wilsonf3ddd2c2017-03-17 20:53:17 +0000413 if (IS_ERR(obj)) {
414 err = PTR_ERR(obj);
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100415 goto fail;
416 }
417
418 uc_fw->obj = obj;
419 uc_fw->size = fw->size;
420
421 DRM_DEBUG_DRIVER("uC fw fetch status SUCCESS, obj %p\n",
422 uc_fw->obj);
423
424 release_firmware(fw);
425 uc_fw->fetch_status = INTEL_UC_FIRMWARE_SUCCESS;
426 return;
427
428fail:
429 DRM_WARN("Failed to fetch valid uC firmware from %s (error %d)\n",
430 uc_fw->path, err);
431 DRM_DEBUG_DRIVER("uC fw fetch status FAIL; err %d, fw %p, obj %p\n",
432 err, fw, uc_fw->obj);
433
434 release_firmware(fw); /* OK even if fw is NULL */
435 uc_fw->fetch_status = INTEL_UC_FIRMWARE_FAIL;
436}