intel_uc.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  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. #include "i915_drv.h"
  25. #include "intel_uc.h"
  26. void intel_uc_init_early(struct drm_i915_private *dev_priv)
  27. {
  28. mutex_init(&dev_priv->guc.send_mutex);
  29. }
  30. /*
  31. * Read GuC command/status register (SOFT_SCRATCH_0)
  32. * Return true if it contains a response rather than a command
  33. */
  34. static bool intel_guc_recv(struct intel_guc *guc, u32 *status)
  35. {
  36. struct drm_i915_private *dev_priv = guc_to_i915(guc);
  37. u32 val = I915_READ(SOFT_SCRATCH(0));
  38. *status = val;
  39. return INTEL_GUC_RECV_IS_RESPONSE(val);
  40. }
  41. int intel_guc_send(struct intel_guc *guc, const u32 *action, u32 len)
  42. {
  43. struct drm_i915_private *dev_priv = guc_to_i915(guc);
  44. u32 status;
  45. int i;
  46. int ret;
  47. if (WARN_ON(len < 1 || len > 15))
  48. return -EINVAL;
  49. mutex_lock(&guc->send_mutex);
  50. intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
  51. dev_priv->guc.action_count += 1;
  52. dev_priv->guc.action_cmd = action[0];
  53. for (i = 0; i < len; i++)
  54. I915_WRITE(SOFT_SCRATCH(i), action[i]);
  55. POSTING_READ(SOFT_SCRATCH(i - 1));
  56. I915_WRITE(GUC_SEND_INTERRUPT, GUC_SEND_TRIGGER);
  57. /*
  58. * Fast commands should complete in less than 10us, so sample quickly
  59. * up to that length of time, then switch to a slower sleep-wait loop.
  60. * No inte_guc_send command should ever take longer than 10ms.
  61. */
  62. ret = wait_for_us(intel_guc_recv(guc, &status), 10);
  63. if (ret)
  64. ret = wait_for(intel_guc_recv(guc, &status), 10);
  65. if (status != INTEL_GUC_STATUS_SUCCESS) {
  66. /*
  67. * Either the GuC explicitly returned an error (which
  68. * we convert to -EIO here) or no response at all was
  69. * received within the timeout limit (-ETIMEDOUT)
  70. */
  71. if (ret != -ETIMEDOUT)
  72. ret = -EIO;
  73. DRM_WARN("INTEL_GUC_SEND: Action 0x%X failed;"
  74. " ret=%d status=0x%08X response=0x%08X\n",
  75. action[0], ret, status, I915_READ(SOFT_SCRATCH(15)));
  76. dev_priv->guc.action_fail += 1;
  77. dev_priv->guc.action_err = ret;
  78. }
  79. dev_priv->guc.action_status = status;
  80. intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
  81. mutex_unlock(&guc->send_mutex);
  82. return ret;
  83. }
  84. int intel_guc_sample_forcewake(struct intel_guc *guc)
  85. {
  86. struct drm_i915_private *dev_priv = guc_to_i915(guc);
  87. u32 action[2];
  88. action[0] = INTEL_GUC_ACTION_SAMPLE_FORCEWAKE;
  89. /* WaRsDisableCoarsePowerGating:skl,bxt */
  90. if (!intel_enable_rc6() || NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
  91. action[1] = 0;
  92. else
  93. /* bit 0 and 1 are for Render and Media domain separately */
  94. action[1] = GUC_FORCEWAKE_RENDER | GUC_FORCEWAKE_MEDIA;
  95. return intel_guc_send(guc, action, ARRAY_SIZE(action));
  96. }