blob: 438e8f32abdea98cfc6b944808ed9ec5b83e78fe [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{
86 mutex_init(&dev_priv->guc.send_mutex);
87}
88
Arkadiusz Hiler29ad6a32017-03-14 15:28:09 +010089void intel_uc_init_fw(struct drm_i915_private *dev_priv)
90{
Arkadiusz Hilerb551f612017-03-14 15:28:13 +010091 if (dev_priv->huc.fw.path)
92 intel_uc_prepare_fw(dev_priv, &dev_priv->huc.fw);
Arkadiusz Hilerd2be9f22017-03-14 15:28:10 +010093
Arkadiusz Hilerb551f612017-03-14 15:28:13 +010094 if (dev_priv->guc.fw.path)
95 intel_uc_prepare_fw(dev_priv, &dev_priv->guc.fw);
Arkadiusz Hiler29ad6a32017-03-14 15:28:09 +010096}
97
Oscar Mateo3950bf32017-03-22 10:39:46 -070098void intel_uc_fini_fw(struct drm_i915_private *dev_priv)
99{
100 struct intel_uc_fw *guc_fw = &dev_priv->guc.fw;
101 struct intel_uc_fw *huc_fw = &dev_priv->huc.fw;
102 struct drm_i915_gem_object *obj;
103
104 obj = fetch_and_zero(&guc_fw->obj);
105 if (obj)
106 i915_gem_object_put(obj);
107
108 guc_fw->fetch_status = INTEL_UC_FIRMWARE_NONE;
109
110 obj = fetch_and_zero(&huc_fw->obj);
111 if (obj)
112 i915_gem_object_put(obj);
113
114 huc_fw->fetch_status = INTEL_UC_FIRMWARE_NONE;
115}
116
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +0100117int intel_uc_init_hw(struct drm_i915_private *dev_priv)
118{
119 int ret, attempts;
120
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +0100121 gen9_reset_guc_interrupts(dev_priv);
122
123 /* We need to notify the guc whenever we change the GGTT */
124 i915_ggtt_enable_guc(dev_priv);
125
Oscar Mateo3950bf32017-03-22 10:39:46 -0700126 /*
127 * This is stuff we need to have available at fw load time
128 * if we are planning to enable submission later
129 */
130 ret = i915_guc_submission_init(dev_priv);
131 if (ret)
132 goto err_guc;
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +0100133
134 /* WaEnableuKernelHeaderValidFix:skl */
135 /* WaEnableGuCBootHashCheckNotSet:skl,bxt,kbl */
136 if (IS_GEN9(dev_priv))
137 attempts = 3;
138 else
139 attempts = 1;
140
141 while (attempts--) {
142 /*
143 * Always reset the GuC just before (re)loading, so
144 * that the state and timing are fairly predictable
145 */
146 ret = __intel_uc_reset_hw(dev_priv);
147 if (ret)
148 goto err_submission;
149
150 intel_huc_init_hw(&dev_priv->huc);
151 ret = intel_guc_init_hw(&dev_priv->guc);
152 if (ret == 0 || ret != -EAGAIN)
153 break;
154
155 DRM_DEBUG_DRIVER("GuC fw load failed: %d; will reset and "
156 "retry %d more time(s)\n", ret, attempts);
157 }
158
159 /* Did we succeded or run out of retries? */
160 if (ret)
161 goto err_submission;
162
163 intel_guc_auth_huc(dev_priv);
164 if (i915.enable_guc_submission) {
165 if (i915.guc_log_level >= 0)
166 gen9_enable_guc_interrupts(dev_priv);
167
168 ret = i915_guc_submission_enable(dev_priv);
169 if (ret)
Oscar Mateo3950bf32017-03-22 10:39:46 -0700170 goto err_interrupts;
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +0100171 }
172
173 return 0;
174
175 /*
176 * We've failed to load the firmware :(
177 *
178 * Decide whether to disable GuC submission and fall back to
179 * execlist mode, and whether to hide the error by returning
180 * zero or to return -EIO, which the caller will treat as a
181 * nonfatal error (i.e. it doesn't prevent driver load, but
182 * marks the GPU as wedged until reset).
183 */
Oscar Mateo3950bf32017-03-22 10:39:46 -0700184err_interrupts:
185 gen9_disable_guc_interrupts(dev_priv);
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +0100186err_submission:
Oscar Mateo3950bf32017-03-22 10:39:46 -0700187 i915_guc_submission_fini(dev_priv);
188err_guc:
Arkadiusz Hiler6cd5a722017-03-14 15:28:11 +0100189 i915_ggtt_disable_guc(dev_priv);
190
191 DRM_ERROR("GuC init failed\n");
192 if (i915.enable_guc_loading > 1 || i915.enable_guc_submission > 1)
193 ret = -EIO;
194 else
195 ret = 0;
196
197 if (i915.enable_guc_submission) {
198 i915.enable_guc_submission = 0;
199 DRM_NOTE("Falling back from GuC submission to execlist mode\n");
200 }
201
202 return ret;
203}
204
Oscar Mateo3950bf32017-03-22 10:39:46 -0700205void intel_uc_fini_hw(struct drm_i915_private *dev_priv)
206{
207 if (i915.enable_guc_submission) {
208 i915_guc_submission_disable(dev_priv);
209 gen9_disable_guc_interrupts(dev_priv);
210 }
211 i915_guc_submission_fini(dev_priv);
212 i915_ggtt_disable_guc(dev_priv);
213}
214
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100215/*
216 * Read GuC command/status register (SOFT_SCRATCH_0)
217 * Return true if it contains a response rather than a command
218 */
Michal Wajdeczkobae3fdc2016-12-20 11:55:31 +0000219static bool intel_guc_recv(struct intel_guc *guc, u32 *status)
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100220{
Michal Wajdeczkobae3fdc2016-12-20 11:55:31 +0000221 struct drm_i915_private *dev_priv = guc_to_i915(guc);
222
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100223 u32 val = I915_READ(SOFT_SCRATCH(0));
224 *status = val;
225 return INTEL_GUC_RECV_IS_RESPONSE(val);
226}
227
228int intel_guc_send(struct intel_guc *guc, const u32 *action, u32 len)
229{
230 struct drm_i915_private *dev_priv = guc_to_i915(guc);
231 u32 status;
232 int i;
233 int ret;
234
235 if (WARN_ON(len < 1 || len > 15))
236 return -EINVAL;
237
238 mutex_lock(&guc->send_mutex);
239 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
240
241 dev_priv->guc.action_count += 1;
242 dev_priv->guc.action_cmd = action[0];
243
244 for (i = 0; i < len; i++)
245 I915_WRITE(SOFT_SCRATCH(i), action[i]);
246
247 POSTING_READ(SOFT_SCRATCH(i - 1));
248
249 I915_WRITE(GUC_SEND_INTERRUPT, GUC_SEND_TRIGGER);
250
251 /*
252 * Fast commands should complete in less than 10us, so sample quickly
253 * up to that length of time, then switch to a slower sleep-wait loop.
254 * No inte_guc_send command should ever take longer than 10ms.
255 */
Michal Wajdeczkobae3fdc2016-12-20 11:55:31 +0000256 ret = wait_for_us(intel_guc_recv(guc, &status), 10);
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100257 if (ret)
Michal Wajdeczkobae3fdc2016-12-20 11:55:31 +0000258 ret = wait_for(intel_guc_recv(guc, &status), 10);
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100259 if (status != INTEL_GUC_STATUS_SUCCESS) {
260 /*
261 * Either the GuC explicitly returned an error (which
262 * we convert to -EIO here) or no response at all was
263 * received within the timeout limit (-ETIMEDOUT)
264 */
265 if (ret != -ETIMEDOUT)
266 ret = -EIO;
267
268 DRM_WARN("INTEL_GUC_SEND: Action 0x%X failed;"
269 " ret=%d status=0x%08X response=0x%08X\n",
270 action[0], ret, status, I915_READ(SOFT_SCRATCH(15)));
271
272 dev_priv->guc.action_fail += 1;
273 dev_priv->guc.action_err = ret;
274 }
275 dev_priv->guc.action_status = status;
276
277 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
278 mutex_unlock(&guc->send_mutex);
279
280 return ret;
281}
282
283int intel_guc_sample_forcewake(struct intel_guc *guc)
284{
285 struct drm_i915_private *dev_priv = guc_to_i915(guc);
286 u32 action[2];
287
288 action[0] = INTEL_GUC_ACTION_SAMPLE_FORCEWAKE;
289 /* WaRsDisableCoarsePowerGating:skl,bxt */
290 if (!intel_enable_rc6() || NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
291 action[1] = 0;
292 else
293 /* bit 0 and 1 are for Render and Media domain separately */
294 action[1] = GUC_FORCEWAKE_RENDER | GUC_FORCEWAKE_MEDIA;
295
296 return intel_guc_send(guc, action, ARRAY_SIZE(action));
297}
298
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100299void intel_uc_prepare_fw(struct drm_i915_private *dev_priv,
300 struct intel_uc_fw *uc_fw)
301{
302 struct pci_dev *pdev = dev_priv->drm.pdev;
303 struct drm_i915_gem_object *obj;
304 const struct firmware *fw = NULL;
305 struct uc_css_header *css;
306 size_t size;
307 int err;
308
Arkadiusz Hiler8fc2a4e2017-03-14 15:28:12 +0100309 uc_fw->fetch_status = INTEL_UC_FIRMWARE_PENDING;
310
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100311 DRM_DEBUG_DRIVER("before requesting firmware: uC fw fetch status %s\n",
Arkadiusz Hiler8fc2a4e2017-03-14 15:28:12 +0100312 intel_uc_fw_status_repr(uc_fw->fetch_status));
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100313
314 err = request_firmware(&fw, uc_fw->path, &pdev->dev);
315 if (err)
316 goto fail;
317 if (!fw)
318 goto fail;
319
320 DRM_DEBUG_DRIVER("fetch uC fw from %s succeeded, fw %p\n",
321 uc_fw->path, fw);
322
323 /* Check the size of the blob before examining buffer contents */
324 if (fw->size < sizeof(struct uc_css_header)) {
325 DRM_NOTE("Firmware header is missing\n");
326 goto fail;
327 }
328
329 css = (struct uc_css_header *)fw->data;
330
331 /* Firmware bits always start from header */
332 uc_fw->header_offset = 0;
333 uc_fw->header_size = (css->header_size_dw - css->modulus_size_dw -
334 css->key_size_dw - css->exponent_size_dw) * sizeof(u32);
335
336 if (uc_fw->header_size != sizeof(struct uc_css_header)) {
337 DRM_NOTE("CSS header definition mismatch\n");
338 goto fail;
339 }
340
341 /* then, uCode */
342 uc_fw->ucode_offset = uc_fw->header_offset + uc_fw->header_size;
343 uc_fw->ucode_size = (css->size_dw - css->header_size_dw) * sizeof(u32);
344
345 /* now RSA */
346 if (css->key_size_dw != UOS_RSA_SCRATCH_MAX_COUNT) {
347 DRM_NOTE("RSA key size is bad\n");
348 goto fail;
349 }
350 uc_fw->rsa_offset = uc_fw->ucode_offset + uc_fw->ucode_size;
351 uc_fw->rsa_size = css->key_size_dw * sizeof(u32);
352
353 /* At least, it should have header, uCode and RSA. Size of all three. */
354 size = uc_fw->header_size + uc_fw->ucode_size + uc_fw->rsa_size;
355 if (fw->size < size) {
356 DRM_NOTE("Missing firmware components\n");
357 goto fail;
358 }
359
360 /*
361 * The GuC firmware image has the version number embedded at a
362 * well-known offset within the firmware blob; note that major / minor
363 * version are TWO bytes each (i.e. u16), although all pointers and
364 * offsets are defined in terms of bytes (u8).
365 */
Arkadiusz Hiler6833b822017-03-15 14:34:15 +0100366 switch (uc_fw->type) {
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100367 case INTEL_UC_FW_TYPE_GUC:
368 /* Header and uCode will be loaded to WOPCM. Size of the two. */
369 size = uc_fw->header_size + uc_fw->ucode_size;
370
371 /* Top 32k of WOPCM is reserved (8K stack + 24k RC6 context). */
372 if (size > intel_guc_wopcm_size(dev_priv)) {
373 DRM_ERROR("Firmware is too large to fit in WOPCM\n");
374 goto fail;
375 }
376 uc_fw->major_ver_found = css->guc.sw_version >> 16;
377 uc_fw->minor_ver_found = css->guc.sw_version & 0xFFFF;
378 break;
379
380 case INTEL_UC_FW_TYPE_HUC:
381 uc_fw->major_ver_found = css->huc.sw_version >> 16;
382 uc_fw->minor_ver_found = css->huc.sw_version & 0xFFFF;
383 break;
384
385 default:
Arkadiusz Hiler6833b822017-03-15 14:34:15 +0100386 DRM_ERROR("Unknown firmware type %d\n", uc_fw->type);
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100387 err = -ENOEXEC;
388 goto fail;
389 }
390
Arkadiusz Hilerb3420dd2017-03-14 15:28:14 +0100391 if (uc_fw->major_ver_wanted == 0 && uc_fw->minor_ver_wanted == 0) {
392 DRM_NOTE("Skipping uC firmware version check\n");
393 } else if (uc_fw->major_ver_found != uc_fw->major_ver_wanted ||
394 uc_fw->minor_ver_found < uc_fw->minor_ver_wanted) {
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100395 DRM_NOTE("uC firmware version %d.%d, required %d.%d\n",
396 uc_fw->major_ver_found, uc_fw->minor_ver_found,
397 uc_fw->major_ver_wanted, uc_fw->minor_ver_wanted);
398 err = -ENOEXEC;
399 goto fail;
400 }
401
402 DRM_DEBUG_DRIVER("firmware version %d.%d OK (minimum %d.%d)\n",
403 uc_fw->major_ver_found, uc_fw->minor_ver_found,
404 uc_fw->major_ver_wanted, uc_fw->minor_ver_wanted);
405
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100406 obj = i915_gem_object_create_from_data(dev_priv, fw->data, fw->size);
Chris Wilsonf3ddd2c2017-03-17 20:53:17 +0000407 if (IS_ERR(obj)) {
408 err = PTR_ERR(obj);
Arkadiusz Hiler4c0fed72017-03-14 15:28:08 +0100409 goto fail;
410 }
411
412 uc_fw->obj = obj;
413 uc_fw->size = fw->size;
414
415 DRM_DEBUG_DRIVER("uC fw fetch status SUCCESS, obj %p\n",
416 uc_fw->obj);
417
418 release_firmware(fw);
419 uc_fw->fetch_status = INTEL_UC_FIRMWARE_SUCCESS;
420 return;
421
422fail:
423 DRM_WARN("Failed to fetch valid uC firmware from %s (error %d)\n",
424 uc_fw->path, err);
425 DRM_DEBUG_DRIVER("uC fw fetch status FAIL; err %d, fw %p, obj %p\n",
426 err, fw, uc_fw->obj);
427
428 release_firmware(fw); /* OK even if fw is NULL */
429 uc_fw->fetch_status = INTEL_UC_FIRMWARE_FAIL;
430}