blob: 3b0932942857f612a1164a38db21b21c907bcf4c [file] [log] [blame]
Alex Dai33a732f2015-08-12 15:43:36 +01001/*
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 */
Michal Wajdeczkoe8668bb2017-10-16 14:47:14 +000029
30#include "intel_guc_fw.h"
Alex Dai33a732f2015-08-12 15:43:36 +010031#include "i915_drv.h"
Alex Dai33a732f2015-08-12 15:43:36 +010032
Sagar Arun Kamble580b9d02017-11-29 21:49:09 +053033#define SKL_FW_MAJOR 9
34#define SKL_FW_MINOR 33
Tvrtko Ursulin5e334c12016-08-10 16:16:46 +010035
Sagar Arun Kambled416ac72017-11-29 21:49:10 +053036#define BXT_FW_MAJOR 9
37#define BXT_FW_MINOR 29
Tvrtko Ursulin5e334c12016-08-10 16:16:46 +010038
39#define KBL_FW_MAJOR 9
Sagar Arun Kamblecc440852017-11-29 21:49:11 +053040#define KBL_FW_MINOR 39
Tvrtko Ursulin5e334c12016-08-10 16:16:46 +010041
42#define GUC_FW_PATH(platform, major, minor) \
43 "i915/" __stringify(platform) "_guc_ver" __stringify(major) "_" __stringify(minor) ".bin"
44
45#define I915_SKL_GUC_UCODE GUC_FW_PATH(skl, SKL_FW_MAJOR, SKL_FW_MINOR)
Alex Dai33a732f2015-08-12 15:43:36 +010046MODULE_FIRMWARE(I915_SKL_GUC_UCODE);
47
Tvrtko Ursulin5e334c12016-08-10 16:16:46 +010048#define I915_BXT_GUC_UCODE GUC_FW_PATH(bxt, BXT_FW_MAJOR, BXT_FW_MINOR)
Nick Hoath57bf5c82016-05-06 11:42:53 +010049MODULE_FIRMWARE(I915_BXT_GUC_UCODE);
50
Tvrtko Ursulin5e334c12016-08-10 16:16:46 +010051#define I915_KBL_GUC_UCODE GUC_FW_PATH(kbl, KBL_FW_MAJOR, KBL_FW_MINOR)
Peter Antoineff64cc12016-06-30 09:37:52 -070052MODULE_FIRMWARE(I915_KBL_GUC_UCODE);
53
Michal Wajdeczko0dd940c2017-12-06 13:53:11 +000054static void guc_fw_select(struct intel_uc_fw *guc_fw)
Michal Wajdeczkocd5a9172017-10-16 14:47:15 +000055{
Michal Wajdeczko0dd940c2017-12-06 13:53:11 +000056 struct intel_guc *guc = container_of(guc_fw, struct intel_guc, fw);
Michal Wajdeczkocd5a9172017-10-16 14:47:15 +000057 struct drm_i915_private *dev_priv = guc_to_i915(guc);
58
Michal Wajdeczko0dd940c2017-12-06 13:53:11 +000059 GEM_BUG_ON(guc_fw->type != INTEL_UC_FW_TYPE_GUC);
60
61 if (!HAS_GUC(dev_priv))
62 return;
Michal Wajdeczkocd5a9172017-10-16 14:47:15 +000063
64 if (i915_modparams.guc_firmware_path) {
Michal Wajdeczko0dd940c2017-12-06 13:53:11 +000065 guc_fw->path = i915_modparams.guc_firmware_path;
66 guc_fw->major_ver_wanted = 0;
67 guc_fw->minor_ver_wanted = 0;
Michal Wajdeczkocd5a9172017-10-16 14:47:15 +000068 } else if (IS_SKYLAKE(dev_priv)) {
Michal Wajdeczko0dd940c2017-12-06 13:53:11 +000069 guc_fw->path = I915_SKL_GUC_UCODE;
70 guc_fw->major_ver_wanted = SKL_FW_MAJOR;
71 guc_fw->minor_ver_wanted = SKL_FW_MINOR;
Michal Wajdeczkocd5a9172017-10-16 14:47:15 +000072 } else if (IS_BROXTON(dev_priv)) {
Michal Wajdeczko0dd940c2017-12-06 13:53:11 +000073 guc_fw->path = I915_BXT_GUC_UCODE;
74 guc_fw->major_ver_wanted = BXT_FW_MAJOR;
75 guc_fw->minor_ver_wanted = BXT_FW_MINOR;
Michal Wajdeczkocd5a9172017-10-16 14:47:15 +000076 } else if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv)) {
Michal Wajdeczko0dd940c2017-12-06 13:53:11 +000077 guc_fw->path = I915_KBL_GUC_UCODE;
78 guc_fw->major_ver_wanted = KBL_FW_MAJOR;
79 guc_fw->minor_ver_wanted = KBL_FW_MINOR;
Michal Wajdeczkocd5a9172017-10-16 14:47:15 +000080 } else {
Michal Wajdeczko0dd940c2017-12-06 13:53:11 +000081 DRM_WARN("%s: No firmware known for this platform!\n",
82 intel_uc_fw_type_repr(guc_fw->type));
Michal Wajdeczkocd5a9172017-10-16 14:47:15 +000083 }
Michal Wajdeczko0dd940c2017-12-06 13:53:11 +000084}
Michal Wajdeczkocd5a9172017-10-16 14:47:15 +000085
Michal Wajdeczko0dd940c2017-12-06 13:53:11 +000086/**
87 * intel_guc_fw_init_early() - initializes GuC firmware struct
88 * @guc: intel_guc struct
89 *
90 * On platforms with GuC selects firmware for uploading
91 */
92void intel_guc_fw_init_early(struct intel_guc *guc)
93{
94 struct intel_uc_fw *guc_fw = &guc->fw;
95
96 intel_uc_fw_init(guc_fw, INTEL_UC_FW_TYPE_GUC);
97 guc_fw_select(guc_fw);
Michal Wajdeczkocd5a9172017-10-16 14:47:15 +000098}
99
Michal Wajdeczko2ceddb12017-11-03 15:18:12 +0000100static void guc_prepare_xfer(struct intel_guc *guc)
Alex Dai33a732f2015-08-12 15:43:36 +0100101{
Michal Wajdeczko4502e9e2017-10-16 14:47:21 +0000102 struct drm_i915_private *dev_priv = guc_to_i915(guc);
Alex Dai33a732f2015-08-12 15:43:36 +0100103
Michal Wajdeczkob814b072017-11-03 15:18:15 +0000104 /* Must program this register before loading the ucode with DMA */
105 I915_WRITE(GUC_SHIM_CONTROL, GUC_DISABLE_SRAM_INIT_TO_ZEROES |
106 GUC_ENABLE_READ_CACHE_LOGIC |
107 GUC_ENABLE_MIA_CACHING |
108 GUC_ENABLE_READ_CACHE_FOR_SRAM_DATA |
109 GUC_ENABLE_READ_CACHE_FOR_WOPCM_DATA |
110 GUC_ENABLE_MIA_CLOCK_GATING);
Alex Dai33a732f2015-08-12 15:43:36 +0100111
Michel Thierry254e0932017-01-09 16:51:35 +0200112 if (IS_GEN9_LP(dev_priv))
Alex Dai33a732f2015-08-12 15:43:36 +0100113 I915_WRITE(GEN9LP_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
114 else
115 I915_WRITE(GEN9_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
116
Tvrtko Ursulin5db94012016-10-13 11:03:10 +0100117 if (IS_GEN9(dev_priv)) {
Alex Dai33a732f2015-08-12 15:43:36 +0100118 /* DOP Clock Gating Enable for GuC clocks */
119 I915_WRITE(GEN7_MISCCPCTL, (GEN8_DOP_CLOCK_GATE_GUC_ENABLE |
120 I915_READ(GEN7_MISCCPCTL)));
121
Dave Gordon0c5664e2016-09-12 21:19:36 +0100122 /* allows for 5us (in 10ns units) before GT can go to RC6 */
Alex Dai33a732f2015-08-12 15:43:36 +0100123 I915_WRITE(GUC_ARAT_C6DIS, 0x1FF);
124 }
Michal Wajdeczko2ceddb12017-11-03 15:18:12 +0000125}
Alex Dai33a732f2015-08-12 15:43:36 +0100126
Michal Wajdeczko2ceddb12017-11-03 15:18:12 +0000127/* Copy RSA signature from the fw image to HW for verification */
128static int guc_xfer_rsa(struct intel_guc *guc, struct i915_vma *vma)
129{
130 struct drm_i915_private *dev_priv = guc_to_i915(guc);
131 struct intel_uc_fw *guc_fw = &guc->fw;
132 struct sg_table *sg = vma->pages;
Michal Wajdeczko53fa54a2017-11-24 17:02:39 +0000133 u32 rsa[UOS_RSA_SCRATCH_COUNT];
Michal Wajdeczko2ceddb12017-11-03 15:18:12 +0000134 int i;
135
136 if (sg_pcopy_to_buffer(sg->sgl, sg->nents, rsa, sizeof(rsa),
137 guc_fw->rsa_offset) != sizeof(rsa))
138 return -EINVAL;
139
Michal Wajdeczko53fa54a2017-11-24 17:02:39 +0000140 for (i = 0; i < UOS_RSA_SCRATCH_COUNT; i++)
Michal Wajdeczko2ceddb12017-11-03 15:18:12 +0000141 I915_WRITE(UOS_RSA_SCRATCH(i), rsa[i]);
142
143 return 0;
144}
145
146/*
147 * Transfer the firmware image to RAM for execution by the microcontroller.
148 *
149 * Architecturally, the DMA engine is bidirectional, and can potentially even
150 * transfer between GTT locations. This functionality is left out of the API
151 * for now as there is no need for it.
152 */
153static int guc_xfer_ucode(struct intel_guc *guc, struct i915_vma *vma)
154{
155 struct drm_i915_private *dev_priv = guc_to_i915(guc);
156 struct intel_uc_fw *guc_fw = &guc->fw;
157 unsigned long offset;
Michal Wajdeczkoa86af232017-11-03 15:18:13 +0000158 u32 status;
159 int ret;
Michal Wajdeczko2ceddb12017-11-03 15:18:12 +0000160
161 /*
162 * The header plus uCode will be copied to WOPCM via DMA, excluding any
163 * other components
164 */
165 I915_WRITE(DMA_COPY_SIZE, guc_fw->header_size + guc_fw->ucode_size);
166
167 /* Set the source address for the new blob */
168 offset = guc_ggtt_offset(vma) + guc_fw->header_offset;
169 I915_WRITE(DMA_ADDR_0_LOW, lower_32_bits(offset));
170 I915_WRITE(DMA_ADDR_0_HIGH, upper_32_bits(offset) & 0xFFFF);
171
172 /*
173 * Set the DMA destination. Current uCode expects the code to be
174 * loaded at 8k; locations below this are used for the stack.
175 */
176 I915_WRITE(DMA_ADDR_1_LOW, 0x2000);
177 I915_WRITE(DMA_ADDR_1_HIGH, DMA_ADDRESS_SPACE_WOPCM);
178
179 /* Finally start the DMA */
180 I915_WRITE(DMA_CTRL, _MASKED_BIT_ENABLE(UOS_MOVE | START_DMA));
181
Michal Wajdeczkoa86af232017-11-03 15:18:13 +0000182 /* Wait for DMA to finish */
183 ret = __intel_wait_for_register_fw(dev_priv, DMA_CTRL, START_DMA, 0,
184 2, 100, &status);
185 DRM_DEBUG_DRIVER("GuC DMA status %#x\n", status);
186
187 return ret;
Michal Wajdeczko2ceddb12017-11-03 15:18:12 +0000188}
189
190/*
191 * Read the GuC status register (GUC_STATUS) and store it in the
192 * specified location; then return a boolean indicating whether
193 * the value matches either of two values representing completion
194 * of the GuC boot process.
195 *
196 * This is used for polling the GuC status in a wait_for()
197 * loop below.
198 */
199static inline bool guc_ready(struct intel_guc *guc, u32 *status)
200{
201 struct drm_i915_private *dev_priv = guc_to_i915(guc);
202 u32 val = I915_READ(GUC_STATUS);
203 u32 uk_val = val & GS_UKERNEL_MASK;
204
205 *status = val;
206 return (uk_val == GS_UKERNEL_READY) ||
207 ((val & GS_MIA_CORE_STATE) && (uk_val == GS_UKERNEL_LAPIC_DONE));
208}
209
210static int guc_wait_ucode(struct intel_guc *guc)
211{
212 u32 status;
213 int ret;
214
215 /*
216 * Wait for the GuC to start up.
217 * NB: Docs recommend not using the interrupt for completion.
218 * Measurements indicate this should take no more than 20ms, so a
219 * timeout here indicates that the GuC has failed and is unusable.
220 * (Higher levels of the driver will attempt to fall back to
221 * execlist mode if this happens.)
222 */
223 ret = wait_for(guc_ready(guc, &status), 100);
224 DRM_DEBUG_DRIVER("GuC status %#x\n", status);
225
226 if ((status & GS_BOOTROM_MASK) == GS_BOOTROM_RSA_FAILED) {
227 DRM_ERROR("GuC firmware signature verification failed\n");
228 ret = -ENOEXEC;
229 }
230
231 return ret;
232}
233
234/*
235 * Load the GuC firmware blob into the MinuteIA.
236 */
237static int guc_fw_xfer(struct intel_uc_fw *guc_fw, struct i915_vma *vma)
238{
239 struct intel_guc *guc = container_of(guc_fw, struct intel_guc, fw);
240 struct drm_i915_private *dev_priv = guc_to_i915(guc);
241 int ret;
242
243 GEM_BUG_ON(guc_fw->type != INTEL_UC_FW_TYPE_GUC);
244
245 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
246
247 guc_prepare_xfer(guc);
248
249 /*
250 * Note that GuC needs the CSS header plus uKernel code to be copied
251 * by the DMA engine in one operation, whereas the RSA signature is
252 * loaded via MMIO.
253 */
254 ret = guc_xfer_rsa(guc, vma);
255 if (ret)
256 DRM_WARN("GuC firmware signature xfer error %d\n", ret);
257
258 ret = guc_xfer_ucode(guc, vma);
259 if (ret)
260 DRM_WARN("GuC firmware code xfer error %d\n", ret);
261
262 ret = guc_wait_ucode(guc);
263 if (ret)
264 DRM_ERROR("GuC firmware xfer error %d\n", ret);
Alex Dai33a732f2015-08-12 15:43:36 +0100265
266 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
267
Alex Dai33a732f2015-08-12 15:43:36 +0100268 return ret;
269}
270
271/**
Michal Wajdeczkoe8668bb2017-10-16 14:47:14 +0000272 * intel_guc_fw_upload() - finish preparing the GuC for activity
Arkadiusz Hiler882d1db2017-03-14 15:28:07 +0100273 * @guc: intel_guc structure
Alex Dai33a732f2015-08-12 15:43:36 +0100274 *
Arkadiusz Hiler882d1db2017-03-14 15:28:07 +0100275 * Called during driver loading and also after a GPU reset.
Alex Dai33a732f2015-08-12 15:43:36 +0100276 *
Dave Gordonf09d6752016-05-13 15:36:29 +0100277 * The main action required here it to load the GuC uCode into the device.
Alex Dai33a732f2015-08-12 15:43:36 +0100278 * The firmware image should have already been fetched into memory by the
Arkadiusz Hiler882d1db2017-03-14 15:28:07 +0100279 * earlier call to intel_guc_init(), so here we need only check that
280 * worked, and then transfer the image to the h/w.
Alex Dai33a732f2015-08-12 15:43:36 +0100281 *
282 * Return: non-zero code on error
283 */
Michal Wajdeczkoe8668bb2017-10-16 14:47:14 +0000284int intel_guc_fw_upload(struct intel_guc *guc)
Alex Dai33a732f2015-08-12 15:43:36 +0100285{
Michal Wajdeczko2ceddb12017-11-03 15:18:12 +0000286 return intel_uc_fw_upload(&guc->fw, guc_fw_xfer);
Alex Dai33a732f2015-08-12 15:43:36 +0100287}