Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 1 | /* |
| 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" |
Arkadiusz Hiler | 8c4f24f | 2016-11-25 18:59:33 +0100 | [diff] [blame] | 31 | #include "intel_uc.h" |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 32 | |
| 33 | /** |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 34 | * DOC: GuC-specific firmware loader |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 35 | * |
| 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 | |
Tvrtko Ursulin | 5e334c1 | 2016-08-10 16:16:46 +0100 | [diff] [blame] | 62 | #define SKL_FW_MAJOR 6 |
| 63 | #define SKL_FW_MINOR 1 |
| 64 | |
| 65 | #define BXT_FW_MAJOR 8 |
| 66 | #define BXT_FW_MINOR 7 |
| 67 | |
| 68 | #define KBL_FW_MAJOR 9 |
| 69 | #define KBL_FW_MINOR 14 |
| 70 | |
| 71 | #define GUC_FW_PATH(platform, major, minor) \ |
| 72 | "i915/" __stringify(platform) "_guc_ver" __stringify(major) "_" __stringify(minor) ".bin" |
| 73 | |
| 74 | #define I915_SKL_GUC_UCODE GUC_FW_PATH(skl, SKL_FW_MAJOR, SKL_FW_MINOR) |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 75 | MODULE_FIRMWARE(I915_SKL_GUC_UCODE); |
| 76 | |
Tvrtko Ursulin | 5e334c1 | 2016-08-10 16:16:46 +0100 | [diff] [blame] | 77 | #define I915_BXT_GUC_UCODE GUC_FW_PATH(bxt, BXT_FW_MAJOR, BXT_FW_MINOR) |
Nick Hoath | 57bf5c8 | 2016-05-06 11:42:53 +0100 | [diff] [blame] | 78 | MODULE_FIRMWARE(I915_BXT_GUC_UCODE); |
| 79 | |
Tvrtko Ursulin | 5e334c1 | 2016-08-10 16:16:46 +0100 | [diff] [blame] | 80 | #define I915_KBL_GUC_UCODE GUC_FW_PATH(kbl, KBL_FW_MAJOR, KBL_FW_MINOR) |
Peter Antoine | ff64cc1 | 2016-06-30 09:37:52 -0700 | [diff] [blame] | 81 | MODULE_FIRMWARE(I915_KBL_GUC_UCODE); |
| 82 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 83 | /* User-friendly representation of an enum */ |
| 84 | const char *intel_guc_fw_status_repr(enum intel_guc_fw_status status) |
| 85 | { |
| 86 | switch (status) { |
| 87 | case GUC_FIRMWARE_FAIL: |
| 88 | return "FAIL"; |
| 89 | case GUC_FIRMWARE_NONE: |
| 90 | return "NONE"; |
| 91 | case GUC_FIRMWARE_PENDING: |
| 92 | return "PENDING"; |
| 93 | case GUC_FIRMWARE_SUCCESS: |
| 94 | return "SUCCESS"; |
| 95 | default: |
| 96 | return "UNKNOWN!"; |
| 97 | } |
| 98 | }; |
| 99 | |
Dave Gordon | 0c5664e | 2016-09-12 21:19:36 +0100 | [diff] [blame] | 100 | static void guc_interrupts_release(struct drm_i915_private *dev_priv) |
Dave Gordon | 4df001d | 2015-08-12 15:43:42 +0100 | [diff] [blame] | 101 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 102 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 103 | enum intel_engine_id id; |
Dave Gordon | b4ac5af | 2016-03-24 11:20:38 +0000 | [diff] [blame] | 104 | int irqs; |
Dave Gordon | 4df001d | 2015-08-12 15:43:42 +0100 | [diff] [blame] | 105 | |
Dave Gordon | fa7545a | 2016-06-24 15:57:57 +0100 | [diff] [blame] | 106 | /* tell all command streamers NOT to forward interrupts or vblank to GuC */ |
Dave Gordon | 4df001d | 2015-08-12 15:43:42 +0100 | [diff] [blame] | 107 | irqs = _MASKED_FIELD(GFX_FORWARD_VBLANK_MASK, GFX_FORWARD_VBLANK_NEVER); |
| 108 | irqs |= _MASKED_BIT_DISABLE(GFX_INTERRUPT_STEERING); |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 109 | for_each_engine(engine, dev_priv, id) |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 110 | I915_WRITE(RING_MODE_GEN7(engine), irqs); |
Dave Gordon | 4df001d | 2015-08-12 15:43:42 +0100 | [diff] [blame] | 111 | |
Dave Gordon | 4df001d | 2015-08-12 15:43:42 +0100 | [diff] [blame] | 112 | /* route all GT interrupts to the host */ |
| 113 | I915_WRITE(GUC_BCS_RCS_IER, 0); |
| 114 | I915_WRITE(GUC_VCS2_VCS1_IER, 0); |
| 115 | I915_WRITE(GUC_WD_VECS_IER, 0); |
| 116 | } |
| 117 | |
Dave Gordon | 0c5664e | 2016-09-12 21:19:36 +0100 | [diff] [blame] | 118 | static void guc_interrupts_capture(struct drm_i915_private *dev_priv) |
Dave Gordon | 4df001d | 2015-08-12 15:43:42 +0100 | [diff] [blame] | 119 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 120 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 121 | enum intel_engine_id id; |
Dave Gordon | b4ac5af | 2016-03-24 11:20:38 +0000 | [diff] [blame] | 122 | int irqs; |
Sagar Arun Kamble | 1800ad2 | 2016-05-31 13:58:27 +0530 | [diff] [blame] | 123 | u32 tmp; |
Dave Gordon | 4df001d | 2015-08-12 15:43:42 +0100 | [diff] [blame] | 124 | |
Dave Gordon | fa7545a | 2016-06-24 15:57:57 +0100 | [diff] [blame] | 125 | /* tell all command streamers to forward interrupts (but not vblank) to GuC */ |
| 126 | irqs = _MASKED_BIT_ENABLE(GFX_INTERRUPT_STEERING); |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 127 | for_each_engine(engine, dev_priv, id) |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 128 | I915_WRITE(RING_MODE_GEN7(engine), irqs); |
Dave Gordon | 4df001d | 2015-08-12 15:43:42 +0100 | [diff] [blame] | 129 | |
Dave Gordon | 4df001d | 2015-08-12 15:43:42 +0100 | [diff] [blame] | 130 | /* route USER_INTERRUPT to Host, all others are sent to GuC. */ |
| 131 | irqs = GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT | |
| 132 | GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT; |
| 133 | /* These three registers have the same bit definitions */ |
| 134 | I915_WRITE(GUC_BCS_RCS_IER, ~irqs); |
| 135 | I915_WRITE(GUC_VCS2_VCS1_IER, ~irqs); |
| 136 | I915_WRITE(GUC_WD_VECS_IER, ~irqs); |
Sagar Arun Kamble | 1800ad2 | 2016-05-31 13:58:27 +0530 | [diff] [blame] | 137 | |
| 138 | /* |
Dave Gordon | b20e3cf | 2016-09-12 21:19:35 +0100 | [diff] [blame] | 139 | * The REDIRECT_TO_GUC bit of the PMINTRMSK register directs all |
| 140 | * (unmasked) PM interrupts to the GuC. All other bits of this |
| 141 | * register *disable* generation of a specific interrupt. |
| 142 | * |
| 143 | * 'pm_intr_keep' indicates bits that are NOT to be set when |
| 144 | * writing to the PM interrupt mask register, i.e. interrupts |
| 145 | * that must not be disabled. |
| 146 | * |
| 147 | * If the GuC is handling these interrupts, then we must not let |
| 148 | * the PM code disable ANY interrupt that the GuC is expecting. |
| 149 | * So for each ENABLED (0) bit in this register, we must SET the |
| 150 | * bit in pm_intr_keep so that it's left enabled for the GuC. |
| 151 | * |
| 152 | * OTOH the REDIRECT_TO_GUC bit is initially SET in pm_intr_keep |
| 153 | * (so interrupts go to the DISPLAY unit at first); but here we |
| 154 | * need to CLEAR that bit, which will result in the register bit |
| 155 | * being left SET! |
| 156 | */ |
Sagar Arun Kamble | 1800ad2 | 2016-05-31 13:58:27 +0530 | [diff] [blame] | 157 | tmp = I915_READ(GEN6_PMINTRMSK); |
Dave Gordon | b20e3cf | 2016-09-12 21:19:35 +0100 | [diff] [blame] | 158 | if (tmp & GEN8_PMINTR_REDIRECT_TO_GUC) { |
| 159 | dev_priv->rps.pm_intr_keep |= ~tmp; |
| 160 | dev_priv->rps.pm_intr_keep &= ~GEN8_PMINTR_REDIRECT_TO_GUC; |
Sagar Arun Kamble | 1800ad2 | 2016-05-31 13:58:27 +0530 | [diff] [blame] | 161 | } |
Dave Gordon | 4df001d | 2015-08-12 15:43:42 +0100 | [diff] [blame] | 162 | } |
| 163 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 164 | static u32 get_gttype(struct drm_i915_private *dev_priv) |
| 165 | { |
| 166 | /* XXX: GT type based on PCI device ID? field seems unused by fw */ |
| 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | static u32 get_core_family(struct drm_i915_private *dev_priv) |
| 171 | { |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 172 | u32 gen = INTEL_GEN(dev_priv); |
| 173 | |
| 174 | switch (gen) { |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 175 | case 9: |
| 176 | return GFXCORE_FAMILY_GEN9; |
| 177 | |
| 178 | default: |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 179 | WARN(1, "GEN%d does not support GuC operation!\n", gen); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 180 | return GFXCORE_FAMILY_UNKNOWN; |
| 181 | } |
| 182 | } |
| 183 | |
Dave Gordon | 0c5664e | 2016-09-12 21:19:36 +0100 | [diff] [blame] | 184 | /* |
| 185 | * Initialise the GuC parameter block before starting the firmware |
| 186 | * transfer. These parameters are read by the firmware on startup |
| 187 | * and cannot be changed thereafter. |
| 188 | */ |
| 189 | static void guc_params_init(struct drm_i915_private *dev_priv) |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 190 | { |
| 191 | struct intel_guc *guc = &dev_priv->guc; |
| 192 | u32 params[GUC_CTL_MAX_DWORDS]; |
| 193 | int i; |
| 194 | |
| 195 | memset(¶ms, 0, sizeof(params)); |
| 196 | |
| 197 | params[GUC_CTL_DEVICE_INFO] |= |
| 198 | (get_gttype(dev_priv) << GUC_CTL_GTTYPE_SHIFT) | |
| 199 | (get_core_family(dev_priv) << GUC_CTL_COREFAMILY_SHIFT); |
| 200 | |
| 201 | /* |
| 202 | * GuC ARAT increment is 10 ns. GuC default scheduler quantum is one |
| 203 | * second. This ARAR is calculated by: |
| 204 | * Scheduler-Quantum-in-ns / ARAT-increment-in-ns = 1000000000 / 10 |
| 205 | */ |
| 206 | params[GUC_CTL_ARAT_HIGH] = 0; |
| 207 | params[GUC_CTL_ARAT_LOW] = 100000000; |
| 208 | |
| 209 | params[GUC_CTL_WA] |= GUC_CTL_WA_UK_BY_DRIVER; |
| 210 | |
| 211 | params[GUC_CTL_FEATURE] |= GUC_CTL_DISABLE_SCHEDULER | |
| 212 | GUC_CTL_VCS2_ENABLED; |
| 213 | |
Akash Goel | d6b40b4 | 2016-10-12 21:54:29 +0530 | [diff] [blame] | 214 | params[GUC_CTL_LOG_PARAMS] = guc->log.flags; |
Sagar Arun Kamble | b1e3710 | 2016-10-12 21:54:27 +0530 | [diff] [blame] | 215 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 216 | if (i915.guc_log_level >= 0) { |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 217 | params[GUC_CTL_DEBUG] = |
| 218 | i915.guc_log_level << GUC_LOG_VERBOSITY_SHIFT; |
Sagar Arun Kamble | b1e3710 | 2016-10-12 21:54:27 +0530 | [diff] [blame] | 219 | } else |
| 220 | params[GUC_CTL_DEBUG] = GUC_LOG_DISABLED; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 221 | |
Chris Wilson | 8b797af | 2016-08-15 10:48:51 +0100 | [diff] [blame] | 222 | if (guc->ads_vma) { |
Chris Wilson | bde13eb | 2016-08-15 10:49:07 +0100 | [diff] [blame] | 223 | u32 ads = i915_ggtt_offset(guc->ads_vma) >> PAGE_SHIFT; |
Alex Dai | b6a5cd7 | 2015-12-18 12:00:12 -0800 | [diff] [blame] | 224 | params[GUC_CTL_DEBUG] |= ads << GUC_ADS_ADDR_SHIFT; |
| 225 | params[GUC_CTL_DEBUG] |= GUC_ADS_ENABLED; |
| 226 | } |
| 227 | |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 228 | /* If GuC submission is enabled, set up additional parameters here */ |
| 229 | if (i915.enable_guc_submission) { |
Chris Wilson | bde13eb | 2016-08-15 10:49:07 +0100 | [diff] [blame] | 230 | u32 pgs = i915_ggtt_offset(dev_priv->guc.ctx_pool_vma); |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 231 | u32 ctx_in_16 = GUC_MAX_GPU_CONTEXTS / 16; |
| 232 | |
| 233 | pgs >>= PAGE_SHIFT; |
| 234 | params[GUC_CTL_CTXINFO] = (pgs << GUC_CTL_BASE_ADDR_SHIFT) | |
| 235 | (ctx_in_16 << GUC_CTL_CTXNUM_IN16_SHIFT); |
| 236 | |
| 237 | params[GUC_CTL_FEATURE] |= GUC_CTL_KERNEL_SUBMISSIONS; |
| 238 | |
| 239 | /* Unmask this bit to enable the GuC's internal scheduler */ |
| 240 | params[GUC_CTL_FEATURE] &= ~GUC_CTL_DISABLE_SCHEDULER; |
| 241 | } |
| 242 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 243 | I915_WRITE(SOFT_SCRATCH(0), 0); |
| 244 | |
| 245 | for (i = 0; i < GUC_CTL_MAX_DWORDS; i++) |
| 246 | I915_WRITE(SOFT_SCRATCH(1 + i), params[i]); |
| 247 | } |
| 248 | |
| 249 | /* |
| 250 | * Read the GuC status register (GUC_STATUS) and store it in the |
| 251 | * specified location; then return a boolean indicating whether |
| 252 | * the value matches either of two values representing completion |
| 253 | * of the GuC boot process. |
| 254 | * |
Tvrtko Ursulin | 36894e8 | 2016-02-11 10:27:31 +0000 | [diff] [blame] | 255 | * This is used for polling the GuC status in a wait_for() |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 256 | * loop below. |
| 257 | */ |
| 258 | static inline bool guc_ucode_response(struct drm_i915_private *dev_priv, |
| 259 | u32 *status) |
| 260 | { |
| 261 | u32 val = I915_READ(GUC_STATUS); |
Alex Dai | 0d44d3f | 2015-09-22 13:48:40 -0700 | [diff] [blame] | 262 | u32 uk_val = val & GS_UKERNEL_MASK; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 263 | *status = val; |
Alex Dai | 0d44d3f | 2015-09-22 13:48:40 -0700 | [diff] [blame] | 264 | return (uk_val == GS_UKERNEL_READY || |
| 265 | ((val & GS_MIA_CORE_STATE) && uk_val == GS_UKERNEL_LAPIC_DONE)); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | /* |
| 269 | * Transfer the firmware image to RAM for execution by the microcontroller. |
| 270 | * |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 271 | * Architecturally, the DMA engine is bidirectional, and can potentially even |
| 272 | * transfer between GTT locations. This functionality is left out of the API |
| 273 | * for now as there is no need for it. |
| 274 | * |
| 275 | * Note that GuC needs the CSS header plus uKernel code to be copied by the |
| 276 | * DMA engine in one operation, whereas the RSA signature is loaded via MMIO. |
| 277 | */ |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 278 | static int guc_ucode_xfer_dma(struct drm_i915_private *dev_priv, |
| 279 | struct i915_vma *vma) |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 280 | { |
| 281 | struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 282 | unsigned long offset; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 283 | struct sg_table *sg = vma->pages; |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 284 | u32 status, rsa[UOS_RSA_SCRATCH_MAX_COUNT]; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 285 | int i, ret = 0; |
| 286 | |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 287 | /* where RSA signature starts */ |
| 288 | offset = guc_fw->rsa_offset; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 289 | |
| 290 | /* Copy RSA signature from the fw image to HW for verification */ |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 291 | sg_pcopy_to_buffer(sg->sgl, sg->nents, rsa, sizeof(rsa), offset); |
| 292 | for (i = 0; i < UOS_RSA_SCRATCH_MAX_COUNT; i++) |
Ville Syrjälä | ab9cc55 | 2015-09-18 20:03:24 +0300 | [diff] [blame] | 293 | I915_WRITE(UOS_RSA_SCRATCH(i), rsa[i]); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 294 | |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 295 | /* The header plus uCode will be copied to WOPCM via DMA, excluding any |
| 296 | * other components */ |
| 297 | I915_WRITE(DMA_COPY_SIZE, guc_fw->header_size + guc_fw->ucode_size); |
| 298 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 299 | /* Set the source address for the new blob */ |
Chris Wilson | bde13eb | 2016-08-15 10:49:07 +0100 | [diff] [blame] | 300 | offset = i915_ggtt_offset(vma) + guc_fw->header_offset; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 301 | I915_WRITE(DMA_ADDR_0_LOW, lower_32_bits(offset)); |
| 302 | I915_WRITE(DMA_ADDR_0_HIGH, upper_32_bits(offset) & 0xFFFF); |
| 303 | |
| 304 | /* |
| 305 | * Set the DMA destination. Current uCode expects the code to be |
| 306 | * loaded at 8k; locations below this are used for the stack. |
| 307 | */ |
| 308 | I915_WRITE(DMA_ADDR_1_LOW, 0x2000); |
| 309 | I915_WRITE(DMA_ADDR_1_HIGH, DMA_ADDRESS_SPACE_WOPCM); |
| 310 | |
| 311 | /* Finally start the DMA */ |
| 312 | I915_WRITE(DMA_CTRL, _MASKED_BIT_ENABLE(UOS_MOVE | START_DMA)); |
| 313 | |
| 314 | /* |
Tvrtko Ursulin | 36894e8 | 2016-02-11 10:27:31 +0000 | [diff] [blame] | 315 | * Wait for the DMA to complete & the GuC to start up. |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 316 | * NB: Docs recommend not using the interrupt for completion. |
| 317 | * Measurements indicate this should take no more than 20ms, so a |
| 318 | * timeout here indicates that the GuC has failed and is unusable. |
| 319 | * (Higher levels of the driver will attempt to fall back to |
| 320 | * execlist mode if this happens.) |
| 321 | */ |
Tvrtko Ursulin | 36894e8 | 2016-02-11 10:27:31 +0000 | [diff] [blame] | 322 | ret = wait_for(guc_ucode_response(dev_priv, &status), 100); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 323 | |
| 324 | DRM_DEBUG_DRIVER("DMA status 0x%x, GuC status 0x%x\n", |
| 325 | I915_READ(DMA_CTRL), status); |
| 326 | |
| 327 | if ((status & GS_BOOTROM_MASK) == GS_BOOTROM_RSA_FAILED) { |
| 328 | DRM_ERROR("GuC firmware signature verification failed\n"); |
| 329 | ret = -ENOEXEC; |
| 330 | } |
| 331 | |
| 332 | DRM_DEBUG_DRIVER("returning %d\n", ret); |
| 333 | |
| 334 | return ret; |
| 335 | } |
| 336 | |
Peter Antoine | 74aa156ba | 2016-05-17 15:12:45 +0100 | [diff] [blame] | 337 | static u32 guc_wopcm_size(struct drm_i915_private *dev_priv) |
| 338 | { |
| 339 | u32 wopcm_size = GUC_WOPCM_TOP; |
| 340 | |
| 341 | /* On BXT, the top of WOPCM is reserved for RC6 context */ |
| 342 | if (IS_BROXTON(dev_priv)) |
| 343 | wopcm_size -= BXT_GUC_WOPCM_RC6_RESERVED; |
| 344 | |
| 345 | return wopcm_size; |
| 346 | } |
| 347 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 348 | /* |
| 349 | * Load the GuC firmware blob into the MinuteIA. |
| 350 | */ |
| 351 | static int guc_ucode_xfer(struct drm_i915_private *dev_priv) |
| 352 | { |
| 353 | struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 354 | struct i915_vma *vma; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 355 | int ret; |
| 356 | |
| 357 | ret = i915_gem_object_set_to_gtt_domain(guc_fw->guc_fw_obj, false); |
| 358 | if (ret) { |
| 359 | DRM_DEBUG_DRIVER("set-domain failed %d\n", ret); |
| 360 | return ret; |
| 361 | } |
| 362 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 363 | vma = i915_gem_object_ggtt_pin(guc_fw->guc_fw_obj, NULL, 0, 0, 0); |
| 364 | if (IS_ERR(vma)) { |
| 365 | DRM_DEBUG_DRIVER("pin failed %d\n", (int)PTR_ERR(vma)); |
| 366 | return PTR_ERR(vma); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | /* Invalidate GuC TLB to let GuC take the latest updates to GTT. */ |
| 370 | I915_WRITE(GEN8_GTCR, GEN8_GTCR_INVALIDATE); |
| 371 | |
| 372 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
| 373 | |
| 374 | /* init WOPCM */ |
Peter Antoine | 74aa156ba | 2016-05-17 15:12:45 +0100 | [diff] [blame] | 375 | I915_WRITE(GUC_WOPCM_SIZE, guc_wopcm_size(dev_priv)); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 376 | I915_WRITE(DMA_GUC_WOPCM_OFFSET, GUC_WOPCM_OFFSET_VALUE); |
| 377 | |
| 378 | /* Enable MIA caching. GuC clock gating is disabled. */ |
| 379 | I915_WRITE(GUC_SHIM_CONTROL, GUC_SHIM_CONTROL_VALUE); |
| 380 | |
Jani Nikula | a117f37 | 2016-09-16 16:59:44 +0300 | [diff] [blame] | 381 | /* WaDisableMinuteIaClockGating:bxt */ |
Tvrtko Ursulin | e2d214a | 2016-10-13 11:03:04 +0100 | [diff] [blame] | 382 | if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1)) { |
Nick Hoath | b970b48 | 2015-09-08 10:31:53 +0100 | [diff] [blame] | 383 | I915_WRITE(GUC_SHIM_CONTROL, (I915_READ(GUC_SHIM_CONTROL) & |
| 384 | ~GUC_ENABLE_MIA_CLOCK_GATING)); |
| 385 | } |
| 386 | |
Jani Nikula | 4ff40a4 | 2016-09-26 15:07:51 +0300 | [diff] [blame] | 387 | /* WaC6DisallowByGfxPause:bxt */ |
Tvrtko Ursulin | e2d214a | 2016-10-13 11:03:04 +0100 | [diff] [blame] | 388 | if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_B0)) |
Tim Gore | 65fe29e | 2016-07-20 11:00:25 +0100 | [diff] [blame] | 389 | I915_WRITE(GEN6_GFXPAUSE, 0x30FFF); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 390 | |
Tvrtko Ursulin | e2d214a | 2016-10-13 11:03:04 +0100 | [diff] [blame] | 391 | if (IS_BROXTON(dev_priv)) |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 392 | I915_WRITE(GEN9LP_GT_PM_CONFIG, GT_DOORBELL_ENABLE); |
| 393 | else |
| 394 | I915_WRITE(GEN9_GT_PM_CONFIG, GT_DOORBELL_ENABLE); |
| 395 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 396 | if (IS_GEN9(dev_priv)) { |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 397 | /* DOP Clock Gating Enable for GuC clocks */ |
| 398 | I915_WRITE(GEN7_MISCCPCTL, (GEN8_DOP_CLOCK_GATE_GUC_ENABLE | |
| 399 | I915_READ(GEN7_MISCCPCTL))); |
| 400 | |
Dave Gordon | 0c5664e | 2016-09-12 21:19:36 +0100 | [diff] [blame] | 401 | /* allows for 5us (in 10ns units) before GT can go to RC6 */ |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 402 | I915_WRITE(GUC_ARAT_C6DIS, 0x1FF); |
| 403 | } |
| 404 | |
Dave Gordon | 0c5664e | 2016-09-12 21:19:36 +0100 | [diff] [blame] | 405 | guc_params_init(dev_priv); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 406 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 407 | ret = guc_ucode_xfer_dma(dev_priv, vma); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 408 | |
| 409 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
| 410 | |
| 411 | /* |
| 412 | * We keep the object pages for reuse during resume. But we can unpin it |
| 413 | * now that DMA has completed, so it doesn't continue to take up space. |
| 414 | */ |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 415 | i915_vma_unpin(vma); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 416 | |
| 417 | return ret; |
| 418 | } |
| 419 | |
Dave Gordon | 0c5664e | 2016-09-12 21:19:36 +0100 | [diff] [blame] | 420 | static int guc_hw_reset(struct drm_i915_private *dev_priv) |
Arun Siluvery | 6b332fa | 2016-04-04 18:50:56 +0100 | [diff] [blame] | 421 | { |
| 422 | int ret; |
| 423 | u32 guc_status; |
| 424 | |
| 425 | ret = intel_guc_reset(dev_priv); |
| 426 | if (ret) { |
| 427 | DRM_ERROR("GuC reset failed, ret = %d\n", ret); |
| 428 | return ret; |
| 429 | } |
| 430 | |
| 431 | guc_status = I915_READ(GUC_STATUS); |
| 432 | WARN(!(guc_status & GS_MIA_IN_RESET), |
| 433 | "GuC status: 0x%x, MIA core expected to be in reset\n", guc_status); |
| 434 | |
| 435 | return ret; |
| 436 | } |
| 437 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 438 | /** |
Dave Gordon | f09d675 | 2016-05-13 15:36:29 +0100 | [diff] [blame] | 439 | * intel_guc_setup() - finish preparing the GuC for activity |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 440 | * @dev: drm device |
| 441 | * |
| 442 | * Called from gem_init_hw() during driver loading and also after a GPU reset. |
| 443 | * |
Dave Gordon | f09d675 | 2016-05-13 15:36:29 +0100 | [diff] [blame] | 444 | * The main action required here it to load the GuC uCode into the device. |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 445 | * The firmware image should have already been fetched into memory by the |
Dave Gordon | f09d675 | 2016-05-13 15:36:29 +0100 | [diff] [blame] | 446 | * earlier call to intel_guc_init(), so here we need only check that worked, |
| 447 | * and then transfer the image to the h/w. |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 448 | * |
| 449 | * Return: non-zero code on error |
| 450 | */ |
Dave Gordon | f09d675 | 2016-05-13 15:36:29 +0100 | [diff] [blame] | 451 | int intel_guc_setup(struct drm_device *dev) |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 452 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 453 | struct drm_i915_private *dev_priv = to_i915(dev); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 454 | struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw; |
Dave Gordon | fce91f2 | 2016-05-20 11:42:42 +0100 | [diff] [blame] | 455 | const char *fw_path = guc_fw->guc_fw_path; |
| 456 | int retries, ret, err; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 457 | |
Dave Gordon | fce91f2 | 2016-05-20 11:42:42 +0100 | [diff] [blame] | 458 | DRM_DEBUG_DRIVER("GuC fw status: path %s, fetch %s, load %s\n", |
| 459 | fw_path, |
| 460 | intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status), |
| 461 | intel_guc_fw_status_repr(guc_fw->guc_fw_load_status)); |
| 462 | |
| 463 | /* Loading forbidden, or no firmware to load? */ |
| 464 | if (!i915.enable_guc_loading) { |
| 465 | err = 0; |
| 466 | goto fail; |
Dave Gordon | e556f7c | 2016-06-07 09:14:49 +0100 | [diff] [blame] | 467 | } else if (fw_path == NULL) { |
| 468 | /* Device is known to have no uCode (e.g. no GuC) */ |
| 469 | err = -ENXIO; |
| 470 | goto fail; |
| 471 | } else if (*fw_path == '\0') { |
| 472 | /* Device has a GuC but we don't know what f/w to load? */ |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 473 | WARN(1, "No GuC firmware known for this platform!\n"); |
Dave Gordon | fce91f2 | 2016-05-20 11:42:42 +0100 | [diff] [blame] | 474 | err = -ENODEV; |
| 475 | goto fail; |
| 476 | } |
| 477 | |
| 478 | /* Fetch failed, or already fetched but failed to load? */ |
| 479 | if (guc_fw->guc_fw_fetch_status != GUC_FIRMWARE_SUCCESS) { |
| 480 | err = -EIO; |
| 481 | goto fail; |
| 482 | } else if (guc_fw->guc_fw_load_status == GUC_FIRMWARE_FAIL) { |
| 483 | err = -ENOEXEC; |
| 484 | goto fail; |
| 485 | } |
| 486 | |
Dave Gordon | 0c5664e | 2016-09-12 21:19:36 +0100 | [diff] [blame] | 487 | guc_interrupts_release(dev_priv); |
Sagar Arun Kamble | 26705e2 | 2016-10-12 21:54:31 +0530 | [diff] [blame] | 488 | gen9_reset_guc_interrupts(dev_priv); |
Dave Gordon | fce91f2 | 2016-05-20 11:42:42 +0100 | [diff] [blame] | 489 | |
| 490 | guc_fw->guc_fw_load_status = GUC_FIRMWARE_PENDING; |
Daniel Vetter | 9f9e539 | 2015-10-23 11:10:59 +0200 | [diff] [blame] | 491 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 492 | DRM_DEBUG_DRIVER("GuC fw status: fetch %s, load %s\n", |
| 493 | intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status), |
| 494 | intel_guc_fw_status_repr(guc_fw->guc_fw_load_status)); |
| 495 | |
Dave Gordon | beffa51 | 2016-06-10 18:29:26 +0100 | [diff] [blame] | 496 | err = i915_guc_submission_init(dev_priv); |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 497 | if (err) |
| 498 | goto fail; |
| 499 | |
Arun Siluvery | 6b332fa | 2016-04-04 18:50:56 +0100 | [diff] [blame] | 500 | /* |
| 501 | * WaEnableuKernelHeaderValidFix:skl,bxt |
| 502 | * For BXT, this is only upto B0 but below WA is required for later |
| 503 | * steppings also so this is extended as well. |
| 504 | */ |
| 505 | /* WaEnableGuCBootHashCheckNotSet:skl,bxt */ |
Dave Gordon | d761701 | 2016-04-04 18:50:57 +0100 | [diff] [blame] | 506 | for (retries = 3; ; ) { |
| 507 | /* |
| 508 | * Always reset the GuC just before (re)loading, so |
| 509 | * that the state and timing are fairly predictable |
| 510 | */ |
Dave Gordon | 0c5664e | 2016-09-12 21:19:36 +0100 | [diff] [blame] | 511 | err = guc_hw_reset(dev_priv); |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 512 | if (err) |
Arun Siluvery | 6b332fa | 2016-04-04 18:50:56 +0100 | [diff] [blame] | 513 | goto fail; |
Dave Gordon | d761701 | 2016-04-04 18:50:57 +0100 | [diff] [blame] | 514 | |
| 515 | err = guc_ucode_xfer(dev_priv); |
| 516 | if (!err) |
| 517 | break; |
| 518 | |
| 519 | if (--retries == 0) |
| 520 | goto fail; |
| 521 | |
Dave Gordon | fce91f2 | 2016-05-20 11:42:42 +0100 | [diff] [blame] | 522 | DRM_INFO("GuC fw load failed: %d; will reset and " |
| 523 | "retry %d more time(s)\n", err, retries); |
Arun Siluvery | 6b332fa | 2016-04-04 18:50:56 +0100 | [diff] [blame] | 524 | } |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 525 | |
| 526 | guc_fw->guc_fw_load_status = GUC_FIRMWARE_SUCCESS; |
| 527 | |
| 528 | DRM_DEBUG_DRIVER("GuC fw status: fetch %s, load %s\n", |
| 529 | intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status), |
| 530 | intel_guc_fw_status_repr(guc_fw->guc_fw_load_status)); |
| 531 | |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 532 | if (i915.enable_guc_submission) { |
Sagar Arun Kamble | 26705e2 | 2016-10-12 21:54:31 +0530 | [diff] [blame] | 533 | if (i915.guc_log_level >= 0) |
| 534 | gen9_enable_guc_interrupts(dev_priv); |
| 535 | |
Dave Gordon | beffa51 | 2016-06-10 18:29:26 +0100 | [diff] [blame] | 536 | err = i915_guc_submission_enable(dev_priv); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 537 | if (err) |
| 538 | goto fail; |
Dave Gordon | 0c5664e | 2016-09-12 21:19:36 +0100 | [diff] [blame] | 539 | guc_interrupts_capture(dev_priv); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 540 | } |
| 541 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 542 | return 0; |
| 543 | |
| 544 | fail: |
| 545 | if (guc_fw->guc_fw_load_status == GUC_FIRMWARE_PENDING) |
| 546 | guc_fw->guc_fw_load_status = GUC_FIRMWARE_FAIL; |
| 547 | |
Dave Gordon | 0c5664e | 2016-09-12 21:19:36 +0100 | [diff] [blame] | 548 | guc_interrupts_release(dev_priv); |
Dave Gordon | beffa51 | 2016-06-10 18:29:26 +0100 | [diff] [blame] | 549 | i915_guc_submission_disable(dev_priv); |
| 550 | i915_guc_submission_fini(dev_priv); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 551 | |
Dave Gordon | fce91f2 | 2016-05-20 11:42:42 +0100 | [diff] [blame] | 552 | /* |
| 553 | * We've failed to load the firmware :( |
| 554 | * |
| 555 | * Decide whether to disable GuC submission and fall back to |
| 556 | * execlist mode, and whether to hide the error by returning |
| 557 | * zero or to return -EIO, which the caller will treat as a |
| 558 | * nonfatal error (i.e. it doesn't prevent driver load, but |
| 559 | * marks the GPU as wedged until reset). |
| 560 | */ |
| 561 | if (i915.enable_guc_loading > 1) { |
| 562 | ret = -EIO; |
| 563 | } else if (i915.enable_guc_submission > 1) { |
| 564 | ret = -EIO; |
| 565 | } else { |
| 566 | ret = 0; |
| 567 | } |
| 568 | |
Tvrtko Ursulin | 4805fe8 | 2016-11-04 14:42:46 +0000 | [diff] [blame] | 569 | if (err == 0 && !HAS_GUC_UCODE(dev_priv)) |
Dave Gordon | 4e50f79 | 2016-06-10 17:21:25 +0100 | [diff] [blame] | 570 | ; /* Don't mention the GuC! */ |
| 571 | else if (err == 0) |
Dave Gordon | fce91f2 | 2016-05-20 11:42:42 +0100 | [diff] [blame] | 572 | DRM_INFO("GuC firmware load skipped\n"); |
Dave Gordon | 4e50f79 | 2016-06-10 17:21:25 +0100 | [diff] [blame] | 573 | else if (ret != -EIO) |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 574 | DRM_NOTE("GuC firmware load failed: %d\n", err); |
Dave Gordon | 4e50f79 | 2016-06-10 17:21:25 +0100 | [diff] [blame] | 575 | else |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 576 | DRM_WARN("GuC firmware load failed: %d\n", err); |
Dave Gordon | fce91f2 | 2016-05-20 11:42:42 +0100 | [diff] [blame] | 577 | |
| 578 | if (i915.enable_guc_submission) { |
| 579 | if (fw_path == NULL) |
| 580 | DRM_INFO("GuC submission without firmware not supported\n"); |
| 581 | if (ret == 0) |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 582 | DRM_NOTE("Falling back from GuC submission to execlist mode\n"); |
Dave Gordon | fce91f2 | 2016-05-20 11:42:42 +0100 | [diff] [blame] | 583 | else |
| 584 | DRM_ERROR("GuC init failed: %d\n", ret); |
| 585 | } |
| 586 | i915.enable_guc_submission = 0; |
| 587 | |
| 588 | return ret; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 589 | } |
| 590 | |
| 591 | static void guc_fw_fetch(struct drm_device *dev, struct intel_guc_fw *guc_fw) |
| 592 | { |
Tvrtko Ursulin | 12d79d7 | 2016-12-01 14:16:37 +0000 | [diff] [blame^] | 593 | struct drm_i915_private *dev_priv = to_i915(dev); |
David Weinehall | 52a05c3 | 2016-08-22 13:32:44 +0300 | [diff] [blame] | 594 | struct pci_dev *pdev = dev->pdev; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 595 | struct drm_i915_gem_object *obj; |
Jérémy Lefaure | 3aaa8ab | 2016-11-28 18:43:19 -0500 | [diff] [blame] | 596 | const struct firmware *fw = NULL; |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 597 | struct guc_css_header *css; |
| 598 | size_t size; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 599 | int err; |
| 600 | |
| 601 | DRM_DEBUG_DRIVER("before requesting firmware: GuC fw fetch status %s\n", |
| 602 | intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status)); |
| 603 | |
David Weinehall | 52a05c3 | 2016-08-22 13:32:44 +0300 | [diff] [blame] | 604 | err = request_firmware(&fw, guc_fw->guc_fw_path, &pdev->dev); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 605 | if (err) |
| 606 | goto fail; |
| 607 | if (!fw) |
| 608 | goto fail; |
| 609 | |
| 610 | DRM_DEBUG_DRIVER("fetch GuC fw from %s succeeded, fw %p\n", |
| 611 | guc_fw->guc_fw_path, fw); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 612 | |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 613 | /* Check the size of the blob before examining buffer contents */ |
| 614 | if (fw->size < sizeof(struct guc_css_header)) { |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 615 | DRM_NOTE("Firmware header is missing\n"); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 616 | goto fail; |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 617 | } |
| 618 | |
| 619 | css = (struct guc_css_header *)fw->data; |
| 620 | |
| 621 | /* Firmware bits always start from header */ |
| 622 | guc_fw->header_offset = 0; |
| 623 | guc_fw->header_size = (css->header_size_dw - css->modulus_size_dw - |
| 624 | css->key_size_dw - css->exponent_size_dw) * sizeof(u32); |
| 625 | |
| 626 | if (guc_fw->header_size != sizeof(struct guc_css_header)) { |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 627 | DRM_NOTE("CSS header definition mismatch\n"); |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 628 | goto fail; |
| 629 | } |
| 630 | |
| 631 | /* then, uCode */ |
| 632 | guc_fw->ucode_offset = guc_fw->header_offset + guc_fw->header_size; |
| 633 | guc_fw->ucode_size = (css->size_dw - css->header_size_dw) * sizeof(u32); |
| 634 | |
| 635 | /* now RSA */ |
| 636 | if (css->key_size_dw != UOS_RSA_SCRATCH_MAX_COUNT) { |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 637 | DRM_NOTE("RSA key size is bad\n"); |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 638 | goto fail; |
| 639 | } |
| 640 | guc_fw->rsa_offset = guc_fw->ucode_offset + guc_fw->ucode_size; |
| 641 | guc_fw->rsa_size = css->key_size_dw * sizeof(u32); |
| 642 | |
| 643 | /* At least, it should have header, uCode and RSA. Size of all three. */ |
| 644 | size = guc_fw->header_size + guc_fw->ucode_size + guc_fw->rsa_size; |
| 645 | if (fw->size < size) { |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 646 | DRM_NOTE("Missing firmware components\n"); |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 647 | goto fail; |
| 648 | } |
| 649 | |
| 650 | /* Header and uCode will be loaded to WOPCM. Size of the two. */ |
| 651 | size = guc_fw->header_size + guc_fw->ucode_size; |
Tvrtko Ursulin | 12d79d7 | 2016-12-01 14:16:37 +0000 | [diff] [blame^] | 652 | if (size > guc_wopcm_size(dev_priv)) { |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 653 | DRM_NOTE("Firmware is too large to fit in WOPCM\n"); |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 654 | goto fail; |
| 655 | } |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 656 | |
| 657 | /* |
| 658 | * The GuC firmware image has the version number embedded at a well-known |
| 659 | * offset within the firmware blob; note that major / minor version are |
| 660 | * TWO bytes each (i.e. u16), although all pointers and offsets are defined |
| 661 | * in terms of bytes (u8). |
| 662 | */ |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 663 | guc_fw->guc_fw_major_found = css->guc_sw_version >> 16; |
| 664 | guc_fw->guc_fw_minor_found = css->guc_sw_version & 0xFFFF; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 665 | |
| 666 | if (guc_fw->guc_fw_major_found != guc_fw->guc_fw_major_wanted || |
| 667 | guc_fw->guc_fw_minor_found < guc_fw->guc_fw_minor_wanted) { |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 668 | DRM_NOTE("GuC firmware version %d.%d, required %d.%d\n", |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 669 | guc_fw->guc_fw_major_found, guc_fw->guc_fw_minor_found, |
| 670 | guc_fw->guc_fw_major_wanted, guc_fw->guc_fw_minor_wanted); |
| 671 | err = -ENOEXEC; |
| 672 | goto fail; |
| 673 | } |
| 674 | |
| 675 | DRM_DEBUG_DRIVER("firmware version %d.%d OK (minimum %d.%d)\n", |
| 676 | guc_fw->guc_fw_major_found, guc_fw->guc_fw_minor_found, |
| 677 | guc_fw->guc_fw_major_wanted, guc_fw->guc_fw_minor_wanted); |
| 678 | |
Daniel Stone | bf248ca | 2015-11-03 21:42:31 +0000 | [diff] [blame] | 679 | mutex_lock(&dev->struct_mutex); |
Tvrtko Ursulin | 12d79d7 | 2016-12-01 14:16:37 +0000 | [diff] [blame^] | 680 | obj = i915_gem_object_create_from_data(dev_priv, fw->data, fw->size); |
Daniel Stone | bf248ca | 2015-11-03 21:42:31 +0000 | [diff] [blame] | 681 | mutex_unlock(&dev->struct_mutex); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 682 | if (IS_ERR_OR_NULL(obj)) { |
| 683 | err = obj ? PTR_ERR(obj) : -ENOMEM; |
| 684 | goto fail; |
| 685 | } |
| 686 | |
| 687 | guc_fw->guc_fw_obj = obj; |
| 688 | guc_fw->guc_fw_size = fw->size; |
| 689 | |
| 690 | DRM_DEBUG_DRIVER("GuC fw fetch status SUCCESS, obj %p\n", |
| 691 | guc_fw->guc_fw_obj); |
| 692 | |
| 693 | release_firmware(fw); |
| 694 | guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_SUCCESS; |
| 695 | return; |
| 696 | |
| 697 | fail: |
Dave Gordon | fc32de9 | 2016-08-18 18:17:24 +0100 | [diff] [blame] | 698 | DRM_WARN("Failed to fetch valid GuC firmware from %s (error %d)\n", |
| 699 | guc_fw->guc_fw_path, err); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 700 | DRM_DEBUG_DRIVER("GuC fw fetch status FAIL; err %d, fw %p, obj %p\n", |
| 701 | err, fw, guc_fw->guc_fw_obj); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 702 | |
Alex Dai | a9d8ada | 2016-01-13 11:01:50 -0800 | [diff] [blame] | 703 | mutex_lock(&dev->struct_mutex); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 704 | obj = guc_fw->guc_fw_obj; |
| 705 | if (obj) |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 706 | i915_gem_object_put(obj); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 707 | guc_fw->guc_fw_obj = NULL; |
Alex Dai | a9d8ada | 2016-01-13 11:01:50 -0800 | [diff] [blame] | 708 | mutex_unlock(&dev->struct_mutex); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 709 | |
| 710 | release_firmware(fw); /* OK even if fw is NULL */ |
| 711 | guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_FAIL; |
| 712 | } |
| 713 | |
| 714 | /** |
Dave Gordon | f09d675 | 2016-05-13 15:36:29 +0100 | [diff] [blame] | 715 | * intel_guc_init() - define parameters and fetch firmware |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 716 | * @dev: drm device |
| 717 | * |
| 718 | * Called early during driver load, but after GEM is initialised. |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 719 | * |
| 720 | * The firmware will be transferred to the GuC's memory later, |
Dave Gordon | f09d675 | 2016-05-13 15:36:29 +0100 | [diff] [blame] | 721 | * when intel_guc_setup() is called. |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 722 | */ |
Dave Gordon | f09d675 | 2016-05-13 15:36:29 +0100 | [diff] [blame] | 723 | void intel_guc_init(struct drm_device *dev) |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 724 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 725 | struct drm_i915_private *dev_priv = to_i915(dev); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 726 | struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw; |
| 727 | const char *fw_path; |
| 728 | |
Tvrtko Ursulin | 4805fe8 | 2016-11-04 14:42:46 +0000 | [diff] [blame] | 729 | if (!HAS_GUC(dev_priv)) { |
Anusha Srivatsa | 21e3302 | 2016-10-14 16:47:05 -0700 | [diff] [blame] | 730 | i915.enable_guc_loading = 0; |
| 731 | i915.enable_guc_submission = 0; |
| 732 | } else { |
| 733 | /* A negative value means "use platform default" */ |
| 734 | if (i915.enable_guc_loading < 0) |
Tvrtko Ursulin | 4805fe8 | 2016-11-04 14:42:46 +0000 | [diff] [blame] | 735 | i915.enable_guc_loading = HAS_GUC_UCODE(dev_priv); |
Anusha Srivatsa | 21e3302 | 2016-10-14 16:47:05 -0700 | [diff] [blame] | 736 | if (i915.enable_guc_submission < 0) |
Tvrtko Ursulin | 4805fe8 | 2016-11-04 14:42:46 +0000 | [diff] [blame] | 737 | i915.enable_guc_submission = HAS_GUC_SCHED(dev_priv); |
Anusha Srivatsa | 21e3302 | 2016-10-14 16:47:05 -0700 | [diff] [blame] | 738 | } |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 739 | |
Tvrtko Ursulin | 4805fe8 | 2016-11-04 14:42:46 +0000 | [diff] [blame] | 740 | if (!HAS_GUC_UCODE(dev_priv)) { |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 741 | fw_path = NULL; |
Tvrtko Ursulin | d9486e6 | 2016-10-13 11:03:03 +0100 | [diff] [blame] | 742 | } else if (IS_SKYLAKE(dev_priv)) { |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 743 | fw_path = I915_SKL_GUC_UCODE; |
Tvrtko Ursulin | 5e334c1 | 2016-08-10 16:16:46 +0100 | [diff] [blame] | 744 | guc_fw->guc_fw_major_wanted = SKL_FW_MAJOR; |
| 745 | guc_fw->guc_fw_minor_wanted = SKL_FW_MINOR; |
Tvrtko Ursulin | e2d214a | 2016-10-13 11:03:04 +0100 | [diff] [blame] | 746 | } else if (IS_BROXTON(dev_priv)) { |
Nick Hoath | 57bf5c8 | 2016-05-06 11:42:53 +0100 | [diff] [blame] | 747 | fw_path = I915_BXT_GUC_UCODE; |
Tvrtko Ursulin | 5e334c1 | 2016-08-10 16:16:46 +0100 | [diff] [blame] | 748 | guc_fw->guc_fw_major_wanted = BXT_FW_MAJOR; |
| 749 | guc_fw->guc_fw_minor_wanted = BXT_FW_MINOR; |
Tvrtko Ursulin | 0853723 | 2016-10-13 11:03:02 +0100 | [diff] [blame] | 750 | } else if (IS_KABYLAKE(dev_priv)) { |
Peter Antoine | ff64cc1 | 2016-06-30 09:37:52 -0700 | [diff] [blame] | 751 | fw_path = I915_KBL_GUC_UCODE; |
Tvrtko Ursulin | 5e334c1 | 2016-08-10 16:16:46 +0100 | [diff] [blame] | 752 | guc_fw->guc_fw_major_wanted = KBL_FW_MAJOR; |
| 753 | guc_fw->guc_fw_minor_wanted = KBL_FW_MINOR; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 754 | } else { |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 755 | fw_path = ""; /* unknown device */ |
| 756 | } |
| 757 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 758 | guc_fw->guc_fw_path = fw_path; |
| 759 | guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_NONE; |
| 760 | guc_fw->guc_fw_load_status = GUC_FIRMWARE_NONE; |
| 761 | |
Dave Gordon | fce91f2 | 2016-05-20 11:42:42 +0100 | [diff] [blame] | 762 | /* Early (and silent) return if GuC loading is disabled */ |
| 763 | if (!i915.enable_guc_loading) |
| 764 | return; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 765 | if (fw_path == NULL) |
| 766 | return; |
Dave Gordon | fce91f2 | 2016-05-20 11:42:42 +0100 | [diff] [blame] | 767 | if (*fw_path == '\0') |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 768 | return; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 769 | |
| 770 | guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_PENDING; |
| 771 | DRM_DEBUG_DRIVER("GuC firmware pending, path %s\n", fw_path); |
| 772 | guc_fw_fetch(dev, guc_fw); |
| 773 | /* status must now be FAIL or SUCCESS */ |
| 774 | } |
| 775 | |
| 776 | /** |
Dave Gordon | f09d675 | 2016-05-13 15:36:29 +0100 | [diff] [blame] | 777 | * intel_guc_fini() - clean up all allocated resources |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 778 | * @dev: drm device |
| 779 | */ |
Dave Gordon | f09d675 | 2016-05-13 15:36:29 +0100 | [diff] [blame] | 780 | void intel_guc_fini(struct drm_device *dev) |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 781 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 782 | struct drm_i915_private *dev_priv = to_i915(dev); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 783 | struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw; |
| 784 | |
Alex Dai | a9d8ada | 2016-01-13 11:01:50 -0800 | [diff] [blame] | 785 | mutex_lock(&dev->struct_mutex); |
Dave Gordon | 0c5664e | 2016-09-12 21:19:36 +0100 | [diff] [blame] | 786 | guc_interrupts_release(dev_priv); |
Dave Gordon | beffa51 | 2016-06-10 18:29:26 +0100 | [diff] [blame] | 787 | i915_guc_submission_disable(dev_priv); |
| 788 | i915_guc_submission_fini(dev_priv); |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 789 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 790 | if (guc_fw->guc_fw_obj) |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 791 | i915_gem_object_put(guc_fw->guc_fw_obj); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 792 | guc_fw->guc_fw_obj = NULL; |
Daniel Stone | bf248ca | 2015-11-03 21:42:31 +0000 | [diff] [blame] | 793 | mutex_unlock(&dev->struct_mutex); |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 794 | |
| 795 | guc_fw->guc_fw_fetch_status = GUC_FIRMWARE_NONE; |
| 796 | } |