2016-11-26 01:59:35 +08:00
|
|
|
/*
|
|
|
|
* Copyright © 2016 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "i915_drv.h"
|
|
|
|
#include "intel_uc.h"
|
2017-03-14 22:28:08 +08:00
|
|
|
#include <linux/firmware.h>
|
2016-11-26 01:59:35 +08:00
|
|
|
|
2017-03-14 22:28:11 +08:00
|
|
|
/* Reset GuC providing us with fresh state for both GuC and HuC.
|
|
|
|
*/
|
|
|
|
static int __intel_uc_reset_hw(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
u32 guc_status;
|
|
|
|
|
|
|
|
ret = intel_guc_reset(dev_priv);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("GuC reset failed, ret = %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
guc_status = I915_READ(GUC_STATUS);
|
|
|
|
WARN(!(guc_status & GS_MIA_IN_RESET),
|
|
|
|
"GuC status: 0x%x, MIA core expected to be in reset\n",
|
|
|
|
guc_status);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-03-14 22:28:10 +08:00
|
|
|
void intel_uc_sanitize_options(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
if (!HAS_GUC(dev_priv)) {
|
2017-09-20 03:38:44 +08:00
|
|
|
if (i915_modparams.enable_guc_loading > 0 ||
|
|
|
|
i915_modparams.enable_guc_submission > 0)
|
2017-03-15 21:37:41 +08:00
|
|
|
DRM_INFO("Ignoring GuC options, no hardware\n");
|
2017-03-14 22:28:10 +08:00
|
|
|
|
2017-09-20 03:38:44 +08:00
|
|
|
i915_modparams.enable_guc_loading = 0;
|
|
|
|
i915_modparams.enable_guc_submission = 0;
|
2017-03-15 21:37:41 +08:00
|
|
|
return;
|
2017-03-14 22:28:10 +08:00
|
|
|
}
|
2017-03-14 22:28:13 +08:00
|
|
|
|
2017-03-15 21:37:41 +08:00
|
|
|
/* A negative value means "use platform default" */
|
2017-09-20 03:38:44 +08:00
|
|
|
if (i915_modparams.enable_guc_loading < 0)
|
|
|
|
i915_modparams.enable_guc_loading = HAS_GUC_UCODE(dev_priv);
|
2017-03-15 21:37:41 +08:00
|
|
|
|
|
|
|
/* Verify firmware version */
|
2017-09-20 03:38:44 +08:00
|
|
|
if (i915_modparams.enable_guc_loading) {
|
2017-03-14 22:28:13 +08:00
|
|
|
if (HAS_HUC_UCODE(dev_priv))
|
|
|
|
intel_huc_select_fw(&dev_priv->huc);
|
|
|
|
|
|
|
|
if (intel_guc_select_fw(&dev_priv->guc))
|
2017-09-20 03:38:44 +08:00
|
|
|
i915_modparams.enable_guc_loading = 0;
|
2017-03-14 22:28:13 +08:00
|
|
|
}
|
2017-03-15 21:37:41 +08:00
|
|
|
|
|
|
|
/* Can't enable guc submission without guc loaded */
|
2017-09-20 03:38:44 +08:00
|
|
|
if (!i915_modparams.enable_guc_loading)
|
|
|
|
i915_modparams.enable_guc_submission = 0;
|
2017-03-15 21:37:41 +08:00
|
|
|
|
|
|
|
/* A negative value means "use platform default" */
|
2017-09-20 03:38:44 +08:00
|
|
|
if (i915_modparams.enable_guc_submission < 0)
|
|
|
|
i915_modparams.enable_guc_submission = HAS_GUC_SCHED(dev_priv);
|
2017-03-14 22:28:10 +08:00
|
|
|
}
|
|
|
|
|
2017-08-10 05:26:03 +08:00
|
|
|
static void gen8_guc_raise_irq(struct intel_guc *guc)
|
2017-05-10 20:59:26 +08:00
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = guc_to_i915(guc);
|
|
|
|
|
|
|
|
I915_WRITE(GUC_SEND_INTERRUPT, GUC_SEND_TRIGGER);
|
|
|
|
}
|
|
|
|
|
2017-10-04 23:33:27 +08:00
|
|
|
static void guc_init_early(struct intel_guc *guc)
|
2016-11-26 01:59:36 +08:00
|
|
|
{
|
2017-05-26 19:13:25 +08:00
|
|
|
intel_guc_ct_init_early(&guc->ct);
|
|
|
|
|
2017-03-23 01:39:49 +08:00
|
|
|
mutex_init(&guc->send_mutex);
|
2017-05-02 18:32:42 +08:00
|
|
|
guc->send = intel_guc_send_nop;
|
2017-08-10 05:26:03 +08:00
|
|
|
guc->notify = gen8_guc_raise_irq;
|
2016-11-26 01:59:36 +08:00
|
|
|
}
|
|
|
|
|
2017-10-04 23:33:27 +08:00
|
|
|
void intel_uc_init_early(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
guc_init_early(&dev_priv->guc);
|
|
|
|
}
|
|
|
|
|
2017-03-14 22:28:09 +08:00
|
|
|
void intel_uc_init_fw(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
2017-10-04 23:33:25 +08:00
|
|
|
intel_uc_fw_fetch(dev_priv, &dev_priv->huc.fw);
|
|
|
|
intel_uc_fw_fetch(dev_priv, &dev_priv->guc.fw);
|
2017-03-14 22:28:09 +08:00
|
|
|
}
|
|
|
|
|
2017-03-23 01:39:46 +08:00
|
|
|
void intel_uc_fini_fw(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
2017-10-04 23:33:25 +08:00
|
|
|
intel_uc_fw_fini(&dev_priv->guc.fw);
|
|
|
|
intel_uc_fw_fini(&dev_priv->huc.fw);
|
2017-03-23 01:39:46 +08:00
|
|
|
}
|
|
|
|
|
2017-05-10 20:59:27 +08:00
|
|
|
static inline i915_reg_t guc_send_reg(struct intel_guc *guc, u32 i)
|
|
|
|
{
|
|
|
|
GEM_BUG_ON(!guc->send_regs.base);
|
|
|
|
GEM_BUG_ON(!guc->send_regs.count);
|
|
|
|
GEM_BUG_ON(i >= guc->send_regs.count);
|
|
|
|
|
|
|
|
return _MMIO(guc->send_regs.base + 4 * i);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void guc_init_send_regs(struct intel_guc *guc)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = guc_to_i915(guc);
|
|
|
|
enum forcewake_domains fw_domains = 0;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
guc->send_regs.base = i915_mmio_reg_offset(SOFT_SCRATCH(0));
|
|
|
|
guc->send_regs.count = SOFT_SCRATCH_COUNT - 1;
|
|
|
|
|
|
|
|
for (i = 0; i < guc->send_regs.count; i++) {
|
|
|
|
fw_domains |= intel_uncore_forcewake_for_reg(dev_priv,
|
|
|
|
guc_send_reg(guc, i),
|
|
|
|
FW_REG_READ | FW_REG_WRITE);
|
|
|
|
}
|
|
|
|
guc->send_regs.fw_domains = fw_domains;
|
|
|
|
}
|
|
|
|
|
2017-10-04 23:33:24 +08:00
|
|
|
/**
|
|
|
|
* intel_uc_init_mmio - setup uC MMIO access
|
|
|
|
*
|
|
|
|
* @dev_priv: device private
|
|
|
|
*
|
|
|
|
* Setup minimal state necessary for MMIO accesses later in the
|
|
|
|
* initialization sequence.
|
|
|
|
*/
|
|
|
|
void intel_uc_init_mmio(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
guc_init_send_regs(&dev_priv->guc);
|
|
|
|
}
|
|
|
|
|
2017-05-23 01:50:28 +08:00
|
|
|
static void guc_capture_load_err_log(struct intel_guc *guc)
|
|
|
|
{
|
2017-09-20 03:38:44 +08:00
|
|
|
if (!guc->log.vma || i915_modparams.guc_log_level < 0)
|
2017-05-23 01:50:28 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!guc->load_err_log)
|
|
|
|
guc->load_err_log = i915_gem_object_get(guc->log.vma->obj);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void guc_free_load_err_log(struct intel_guc *guc)
|
|
|
|
{
|
|
|
|
if (guc->load_err_log)
|
|
|
|
i915_gem_object_put(guc->load_err_log);
|
|
|
|
}
|
|
|
|
|
2017-05-02 18:32:42 +08:00
|
|
|
static int guc_enable_communication(struct intel_guc *guc)
|
|
|
|
{
|
2017-05-26 19:13:25 +08:00
|
|
|
struct drm_i915_private *dev_priv = guc_to_i915(guc);
|
|
|
|
|
|
|
|
if (HAS_GUC_CT(dev_priv))
|
|
|
|
return intel_guc_enable_ct(guc);
|
|
|
|
|
2017-05-02 18:32:42 +08:00
|
|
|
guc->send = intel_guc_send_mmio;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void guc_disable_communication(struct intel_guc *guc)
|
|
|
|
{
|
2017-05-26 19:13:25 +08:00
|
|
|
struct drm_i915_private *dev_priv = guc_to_i915(guc);
|
|
|
|
|
|
|
|
if (HAS_GUC_CT(dev_priv))
|
|
|
|
intel_guc_disable_ct(guc);
|
|
|
|
|
2017-05-02 18:32:42 +08:00
|
|
|
guc->send = intel_guc_send_nop;
|
|
|
|
}
|
|
|
|
|
2017-09-26 15:17:16 +08:00
|
|
|
/**
|
|
|
|
* intel_guc_auth_huc() - Send action to GuC to authenticate HuC ucode
|
|
|
|
* @guc: intel_guc structure
|
|
|
|
* @rsa_offset: rsa offset w.r.t ggtt base of huc vma
|
|
|
|
*
|
|
|
|
* Triggers a HuC firmware authentication request to the GuC via intel_guc_send
|
|
|
|
* INTEL_GUC_ACTION_AUTHENTICATE_HUC interface. This function is invoked by
|
|
|
|
* intel_huc_auth().
|
|
|
|
*
|
|
|
|
* Return: non-zero code on error
|
|
|
|
*/
|
|
|
|
int intel_guc_auth_huc(struct intel_guc *guc, u32 rsa_offset)
|
|
|
|
{
|
|
|
|
u32 action[] = {
|
|
|
|
INTEL_GUC_ACTION_AUTHENTICATE_HUC,
|
|
|
|
rsa_offset
|
|
|
|
};
|
|
|
|
|
|
|
|
return intel_guc_send(guc, action, ARRAY_SIZE(action));
|
|
|
|
}
|
|
|
|
|
2017-03-14 22:28:11 +08:00
|
|
|
int intel_uc_init_hw(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
2017-05-02 18:32:42 +08:00
|
|
|
struct intel_guc *guc = &dev_priv->guc;
|
2017-03-14 22:28:11 +08:00
|
|
|
int ret, attempts;
|
|
|
|
|
2017-09-20 03:38:44 +08:00
|
|
|
if (!i915_modparams.enable_guc_loading)
|
2017-03-29 00:53:47 +08:00
|
|
|
return 0;
|
|
|
|
|
2017-05-02 18:32:42 +08:00
|
|
|
guc_disable_communication(guc);
|
2017-03-14 22:28:11 +08:00
|
|
|
gen9_reset_guc_interrupts(dev_priv);
|
|
|
|
|
|
|
|
/* We need to notify the guc whenever we change the GGTT */
|
|
|
|
i915_ggtt_enable_guc(dev_priv);
|
|
|
|
|
2017-09-20 03:38:44 +08:00
|
|
|
if (i915_modparams.enable_guc_submission) {
|
2017-03-23 01:39:52 +08:00
|
|
|
/*
|
|
|
|
* This is stuff we need to have available at fw load time
|
|
|
|
* if we are planning to enable submission later
|
|
|
|
*/
|
|
|
|
ret = i915_guc_submission_init(dev_priv);
|
|
|
|
if (ret)
|
|
|
|
goto err_guc;
|
|
|
|
}
|
2017-03-14 22:28:11 +08:00
|
|
|
|
2017-04-07 08:18:52 +08:00
|
|
|
/* init WOPCM */
|
|
|
|
I915_WRITE(GUC_WOPCM_SIZE, intel_guc_wopcm_size(dev_priv));
|
|
|
|
I915_WRITE(DMA_GUC_WOPCM_OFFSET,
|
|
|
|
GUC_WOPCM_OFFSET_VALUE | HUC_LOADING_AGENT_GUC);
|
|
|
|
|
2017-03-14 22:28:11 +08:00
|
|
|
/* WaEnableuKernelHeaderValidFix:skl */
|
|
|
|
/* WaEnableGuCBootHashCheckNotSet:skl,bxt,kbl */
|
|
|
|
if (IS_GEN9(dev_priv))
|
|
|
|
attempts = 3;
|
|
|
|
else
|
|
|
|
attempts = 1;
|
|
|
|
|
|
|
|
while (attempts--) {
|
|
|
|
/*
|
|
|
|
* Always reset the GuC just before (re)loading, so
|
|
|
|
* that the state and timing are fairly predictable
|
|
|
|
*/
|
|
|
|
ret = __intel_uc_reset_hw(dev_priv);
|
|
|
|
if (ret)
|
|
|
|
goto err_submission;
|
|
|
|
|
|
|
|
intel_huc_init_hw(&dev_priv->huc);
|
|
|
|
ret = intel_guc_init_hw(&dev_priv->guc);
|
|
|
|
if (ret == 0 || ret != -EAGAIN)
|
|
|
|
break;
|
|
|
|
|
|
|
|
DRM_DEBUG_DRIVER("GuC fw load failed: %d; will reset and "
|
|
|
|
"retry %d more time(s)\n", ret, attempts);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Did we succeded or run out of retries? */
|
|
|
|
if (ret)
|
2017-05-23 01:50:28 +08:00
|
|
|
goto err_log_capture;
|
2017-03-14 22:28:11 +08:00
|
|
|
|
2017-05-02 18:32:42 +08:00
|
|
|
ret = guc_enable_communication(guc);
|
|
|
|
if (ret)
|
2017-05-23 01:50:28 +08:00
|
|
|
goto err_log_capture;
|
2017-05-02 18:32:42 +08:00
|
|
|
|
2017-09-26 15:17:16 +08:00
|
|
|
intel_huc_auth(&dev_priv->huc);
|
2017-09-20 03:38:44 +08:00
|
|
|
if (i915_modparams.enable_guc_submission) {
|
|
|
|
if (i915_modparams.guc_log_level >= 0)
|
2017-03-14 22:28:11 +08:00
|
|
|
gen9_enable_guc_interrupts(dev_priv);
|
|
|
|
|
|
|
|
ret = i915_guc_submission_enable(dev_priv);
|
|
|
|
if (ret)
|
2017-03-23 01:39:46 +08:00
|
|
|
goto err_interrupts;
|
2017-03-14 22:28:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We've failed to load the firmware :(
|
|
|
|
*
|
|
|
|
* Decide whether to disable GuC submission and fall back to
|
|
|
|
* execlist mode, and whether to hide the error by returning
|
|
|
|
* zero or to return -EIO, which the caller will treat as a
|
|
|
|
* nonfatal error (i.e. it doesn't prevent driver load, but
|
|
|
|
* marks the GPU as wedged until reset).
|
|
|
|
*/
|
2017-03-23 01:39:46 +08:00
|
|
|
err_interrupts:
|
2017-05-02 18:32:42 +08:00
|
|
|
guc_disable_communication(guc);
|
2017-03-23 01:39:46 +08:00
|
|
|
gen9_disable_guc_interrupts(dev_priv);
|
2017-05-23 01:50:28 +08:00
|
|
|
err_log_capture:
|
|
|
|
guc_capture_load_err_log(guc);
|
2017-03-14 22:28:11 +08:00
|
|
|
err_submission:
|
2017-09-20 03:38:44 +08:00
|
|
|
if (i915_modparams.enable_guc_submission)
|
2017-03-23 01:39:52 +08:00
|
|
|
i915_guc_submission_fini(dev_priv);
|
2017-03-23 01:39:46 +08:00
|
|
|
err_guc:
|
2017-03-14 22:28:11 +08:00
|
|
|
i915_ggtt_disable_guc(dev_priv);
|
|
|
|
|
|
|
|
DRM_ERROR("GuC init failed\n");
|
2017-09-20 03:38:44 +08:00
|
|
|
if (i915_modparams.enable_guc_loading > 1 ||
|
|
|
|
i915_modparams.enable_guc_submission > 1)
|
2017-03-14 22:28:11 +08:00
|
|
|
ret = -EIO;
|
|
|
|
else
|
|
|
|
ret = 0;
|
|
|
|
|
2017-09-20 03:38:44 +08:00
|
|
|
if (i915_modparams.enable_guc_submission) {
|
|
|
|
i915_modparams.enable_guc_submission = 0;
|
2017-03-14 22:28:11 +08:00
|
|
|
DRM_NOTE("Falling back from GuC submission to execlist mode\n");
|
|
|
|
}
|
|
|
|
|
2017-09-20 03:38:44 +08:00
|
|
|
i915_modparams.enable_guc_loading = 0;
|
2017-06-06 01:12:51 +08:00
|
|
|
DRM_NOTE("GuC firmware loading disabled\n");
|
|
|
|
|
2017-03-14 22:28:11 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-03-23 01:39:46 +08:00
|
|
|
void intel_uc_fini_hw(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
2017-06-06 01:12:51 +08:00
|
|
|
guc_free_load_err_log(&dev_priv->guc);
|
|
|
|
|
2017-09-20 03:38:44 +08:00
|
|
|
if (!i915_modparams.enable_guc_loading)
|
2017-03-29 00:53:47 +08:00
|
|
|
return;
|
|
|
|
|
2017-09-20 03:38:44 +08:00
|
|
|
if (i915_modparams.enable_guc_submission)
|
2017-03-23 01:39:46 +08:00
|
|
|
i915_guc_submission_disable(dev_priv);
|
2017-05-26 19:13:24 +08:00
|
|
|
|
|
|
|
guc_disable_communication(&dev_priv->guc);
|
|
|
|
|
2017-09-20 03:38:44 +08:00
|
|
|
if (i915_modparams.enable_guc_submission) {
|
2017-03-23 01:39:46 +08:00
|
|
|
gen9_disable_guc_interrupts(dev_priv);
|
2017-03-23 01:39:52 +08:00
|
|
|
i915_guc_submission_fini(dev_priv);
|
2017-03-23 01:39:46 +08:00
|
|
|
}
|
2017-05-26 19:13:24 +08:00
|
|
|
|
2017-03-23 01:39:46 +08:00
|
|
|
i915_ggtt_disable_guc(dev_priv);
|
|
|
|
}
|
|
|
|
|
2017-05-02 18:32:42 +08:00
|
|
|
int intel_guc_send_nop(struct intel_guc *guc, const u32 *action, u32 len)
|
|
|
|
{
|
|
|
|
WARN(1, "Unexpected send: action=%#x\n", *action);
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2017-03-23 01:39:49 +08:00
|
|
|
/*
|
|
|
|
* This function implements the MMIO based host to GuC interface.
|
|
|
|
*/
|
|
|
|
int intel_guc_send_mmio(struct intel_guc *guc, const u32 *action, u32 len)
|
2016-11-26 01:59:35 +08:00
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = guc_to_i915(guc);
|
|
|
|
u32 status;
|
|
|
|
int i;
|
|
|
|
int ret;
|
|
|
|
|
2017-05-10 20:59:27 +08:00
|
|
|
GEM_BUG_ON(!len);
|
|
|
|
GEM_BUG_ON(len > guc->send_regs.count);
|
2016-11-26 01:59:35 +08:00
|
|
|
|
2017-05-26 19:13:25 +08:00
|
|
|
/* If CT is available, we expect to use MMIO only during init/fini */
|
|
|
|
GEM_BUG_ON(HAS_GUC_CT(dev_priv) &&
|
|
|
|
*action != INTEL_GUC_ACTION_REGISTER_COMMAND_TRANSPORT_BUFFER &&
|
|
|
|
*action != INTEL_GUC_ACTION_DEREGISTER_COMMAND_TRANSPORT_BUFFER);
|
|
|
|
|
2016-11-26 01:59:35 +08:00
|
|
|
mutex_lock(&guc->send_mutex);
|
2017-05-10 20:59:27 +08:00
|
|
|
intel_uncore_forcewake_get(dev_priv, guc->send_regs.fw_domains);
|
2016-11-26 01:59:35 +08:00
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
2017-05-10 20:59:27 +08:00
|
|
|
I915_WRITE(guc_send_reg(guc, i), action[i]);
|
2016-11-26 01:59:35 +08:00
|
|
|
|
2017-05-10 20:59:27 +08:00
|
|
|
POSTING_READ(guc_send_reg(guc, i - 1));
|
2016-11-26 01:59:35 +08:00
|
|
|
|
2017-05-10 20:59:26 +08:00
|
|
|
intel_guc_notify(guc);
|
2016-11-26 01:59:35 +08:00
|
|
|
|
|
|
|
/*
|
2017-04-08 00:01:45 +08:00
|
|
|
* No GuC command should ever take longer than 10ms.
|
|
|
|
* Fast commands should still complete in 10us.
|
2016-11-26 01:59:35 +08:00
|
|
|
*/
|
2017-04-08 00:01:45 +08:00
|
|
|
ret = __intel_wait_for_register_fw(dev_priv,
|
2017-05-10 20:59:27 +08:00
|
|
|
guc_send_reg(guc, 0),
|
2017-04-08 00:01:45 +08:00
|
|
|
INTEL_GUC_RECV_MASK,
|
|
|
|
INTEL_GUC_RECV_MASK,
|
|
|
|
10, 10, &status);
|
2016-11-26 01:59:35 +08:00
|
|
|
if (status != INTEL_GUC_STATUS_SUCCESS) {
|
|
|
|
/*
|
|
|
|
* Either the GuC explicitly returned an error (which
|
|
|
|
* we convert to -EIO here) or no response at all was
|
|
|
|
* received within the timeout limit (-ETIMEDOUT)
|
|
|
|
*/
|
|
|
|
if (ret != -ETIMEDOUT)
|
|
|
|
ret = -EIO;
|
|
|
|
|
|
|
|
DRM_WARN("INTEL_GUC_SEND: Action 0x%X failed;"
|
|
|
|
" ret=%d status=0x%08X response=0x%08X\n",
|
|
|
|
action[0], ret, status, I915_READ(SOFT_SCRATCH(15)));
|
|
|
|
}
|
|
|
|
|
2017-05-10 20:59:27 +08:00
|
|
|
intel_uncore_forcewake_put(dev_priv, guc->send_regs.fw_domains);
|
2016-11-26 01:59:35 +08:00
|
|
|
mutex_unlock(&guc->send_mutex);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int intel_guc_sample_forcewake(struct intel_guc *guc)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = guc_to_i915(guc);
|
|
|
|
u32 action[2];
|
|
|
|
|
|
|
|
action[0] = INTEL_GUC_ACTION_SAMPLE_FORCEWAKE;
|
|
|
|
/* WaRsDisableCoarsePowerGating:skl,bxt */
|
|
|
|
if (!intel_enable_rc6() || NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
|
|
|
|
action[1] = 0;
|
|
|
|
else
|
|
|
|
/* bit 0 and 1 are for Render and Media domain separately */
|
|
|
|
action[1] = GUC_FORCEWAKE_RENDER | GUC_FORCEWAKE_MEDIA;
|
|
|
|
|
|
|
|
return intel_guc_send(guc, action, ARRAY_SIZE(action));
|
|
|
|
}
|