intel_guc_fw.c 9.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * Copyright © 2014 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.
 *
 * Authors:
 *    Vinit Azad <vinit.azad@intel.com>
 *    Ben Widawsky <ben@bwidawsk.net>
 *    Dave Gordon <david.s.gordon@intel.com>
 *    Alex Dai <yu.dai@intel.com>
 */
29

30
#include "gt/intel_gt.h"
31
#include "intel_guc_fw.h"
32 33
#include "i915_drv.h"

34 35 36 37 38 39 40 41
#define __MAKE_GUC_FW_PATH(KEY) \
	"i915/" \
	__stringify(KEY##_GUC_FW_PREFIX) "_guc_" \
	__stringify(KEY##_GUC_FW_MAJOR) "." \
	__stringify(KEY##_GUC_FW_MINOR) "." \
	__stringify(KEY##_GUC_FW_PATCH) ".bin"

#define SKL_GUC_FW_PREFIX skl
42
#define SKL_GUC_FW_MAJOR 33
43
#define SKL_GUC_FW_MINOR 0
44
#define SKL_GUC_FW_PATCH 0
45 46 47 48
#define SKL_GUC_FIRMWARE_PATH __MAKE_GUC_FW_PATH(SKL)
MODULE_FIRMWARE(SKL_GUC_FIRMWARE_PATH);

#define BXT_GUC_FW_PREFIX bxt
49
#define BXT_GUC_FW_MAJOR 33
50
#define BXT_GUC_FW_MINOR 0
51
#define BXT_GUC_FW_PATCH 0
52 53 54 55
#define BXT_GUC_FIRMWARE_PATH __MAKE_GUC_FW_PATH(BXT)
MODULE_FIRMWARE(BXT_GUC_FIRMWARE_PATH);

#define KBL_GUC_FW_PREFIX kbl
56
#define KBL_GUC_FW_MAJOR 33
57
#define KBL_GUC_FW_MINOR 0
58
#define KBL_GUC_FW_PATCH 0
59 60
#define KBL_GUC_FIRMWARE_PATH __MAKE_GUC_FW_PATH(KBL)
MODULE_FIRMWARE(KBL_GUC_FIRMWARE_PATH);
61

62
#define GLK_GUC_FW_PREFIX glk
63
#define GLK_GUC_FW_MAJOR 33
64
#define GLK_GUC_FW_MINOR 0
65
#define GLK_GUC_FW_PATCH 0
66 67 68
#define GLK_GUC_FIRMWARE_PATH __MAKE_GUC_FW_PATH(GLK)
MODULE_FIRMWARE(GLK_GUC_FIRMWARE_PATH);

69
#define ICL_GUC_FW_PREFIX icl
70
#define ICL_GUC_FW_MAJOR 33
71
#define ICL_GUC_FW_MINOR 0
72
#define ICL_GUC_FW_PATCH 0
73 74 75
#define ICL_GUC_FIRMWARE_PATH __MAKE_GUC_FW_PATH(ICL)
MODULE_FIRMWARE(ICL_GUC_FIRMWARE_PATH);

76
static void guc_fw_select(struct intel_uc_fw *guc_fw)
77
{
78
	struct intel_guc *guc = container_of(guc_fw, struct intel_guc, fw);
79
	struct drm_i915_private *i915 = guc_to_gt(guc)->i915;
80

81 82
	GEM_BUG_ON(guc_fw->type != INTEL_UC_FW_TYPE_GUC);

83
	guc_fw->fetch_status = INTEL_UC_FIRMWARE_NOT_SUPPORTED;
84

85 86
	if (!HAS_GT_UC(i915))
		return;
87 88

	if (i915_modparams.guc_firmware_path) {
89 90 91
		guc_fw->path = i915_modparams.guc_firmware_path;
		guc_fw->major_ver_wanted = 0;
		guc_fw->minor_ver_wanted = 0;
92 93 94 95
	} else if (IS_ICELAKE(i915)) {
		guc_fw->path = ICL_GUC_FIRMWARE_PATH;
		guc_fw->major_ver_wanted = ICL_GUC_FW_MAJOR;
		guc_fw->minor_ver_wanted = ICL_GUC_FW_MINOR;
96 97 98 99
	} else if (IS_GEMINILAKE(i915)) {
		guc_fw->path = GLK_GUC_FIRMWARE_PATH;
		guc_fw->major_ver_wanted = GLK_GUC_FW_MAJOR;
		guc_fw->minor_ver_wanted = GLK_GUC_FW_MINOR;
100 101 102 103 104 105 106 107 108 109 110 111
	} else if (IS_KABYLAKE(i915) || IS_COFFEELAKE(i915)) {
		guc_fw->path = KBL_GUC_FIRMWARE_PATH;
		guc_fw->major_ver_wanted = KBL_GUC_FW_MAJOR;
		guc_fw->minor_ver_wanted = KBL_GUC_FW_MINOR;
	} else if (IS_BROXTON(i915)) {
		guc_fw->path = BXT_GUC_FIRMWARE_PATH;
		guc_fw->major_ver_wanted = BXT_GUC_FW_MAJOR;
		guc_fw->minor_ver_wanted = BXT_GUC_FW_MINOR;
	} else if (IS_SKYLAKE(i915)) {
		guc_fw->path = SKL_GUC_FIRMWARE_PATH;
		guc_fw->major_ver_wanted = SKL_GUC_FW_MAJOR;
		guc_fw->minor_ver_wanted = SKL_GUC_FW_MINOR;
112
	}
113 114 115

	if (guc_fw->path)
		guc_fw->fetch_status = INTEL_UC_FIRMWARE_NOT_STARTED;
116 117 118 119 120 121 122 123 124 125 126
}

/**
 * intel_guc_fw_init_early() - initializes GuC firmware struct
 * @guc: intel_guc struct
 *
 * On platforms with GuC selects firmware for uploading
 */
void intel_guc_fw_init_early(struct intel_guc *guc)
{
	struct intel_uc_fw *guc_fw = &guc->fw;
127

128
	intel_uc_fw_init_early(guc_fw, INTEL_UC_FW_TYPE_GUC);
129
	guc_fw_select(guc_fw);
130 131
}

132
static void guc_prepare_xfer(struct intel_guc *guc)
133
{
134 135 136 137 138 139 140 141
	struct intel_gt *gt = guc_to_gt(guc);
	struct intel_uncore *uncore = gt->uncore;
	u32 shim_flags = GUC_DISABLE_SRAM_INIT_TO_ZEROES |
			 GUC_ENABLE_READ_CACHE_LOGIC |
			 GUC_ENABLE_MIA_CACHING |
			 GUC_ENABLE_READ_CACHE_FOR_SRAM_DATA |
			 GUC_ENABLE_READ_CACHE_FOR_WOPCM_DATA |
			 GUC_ENABLE_MIA_CLOCK_GATING;
142

143
	/* Must program this register before loading the ucode with DMA */
144 145 146 147
	intel_uncore_write(uncore, GUC_SHIM_CONTROL, shim_flags);

	if (IS_GEN9_LP(gt->i915))
		intel_uncore_write(uncore, GEN9LP_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
148
	else
149
		intel_uncore_write(uncore, GEN9_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
150

151
	if (IS_GEN(gt->i915, 9)) {
152
		/* DOP Clock Gating Enable for GuC clocks */
153 154
		intel_uncore_rmw(uncore, GEN7_MISCCPCTL,
				 0, GEN8_DOP_CLOCK_GATE_GUC_ENABLE);
155 156

		/* allows for 5us (in 10ns units) before GT can go to RC6 */
157
		intel_uncore_write(uncore, GUC_ARAT_C6DIS, 0x1FF);
158 159 160 161
	}
}

/* Copy RSA signature from the fw image to HW for verification */
162
static void guc_xfer_rsa(struct intel_guc *guc)
163
{
164
	struct intel_uncore *uncore = guc_to_gt(guc)->uncore;
165 166
	struct intel_uc_fw *fw = &guc->fw;
	struct sg_table *pages = fw->obj->mm.pages;
167
	u32 rsa[UOS_RSA_SCRATCH_COUNT];
168 169
	int i;

170 171
	sg_pcopy_to_buffer(pages->sgl, pages->nents,
			   rsa, sizeof(rsa), fw->rsa_offset);
172

173
	for (i = 0; i < UOS_RSA_SCRATCH_COUNT; i++)
174
		intel_uncore_write(uncore, UOS_RSA_SCRATCH(i), rsa[i]);
175 176
}

177
static bool guc_xfer_completed(struct intel_uncore *uncore, u32 *status)
178
{
179
	/* Did we complete the xfer? */
180
	*status = intel_uncore_read(uncore, DMA_CTRL);
181
	return !(*status & START_DMA);
182 183 184 185 186 187 188 189 190 191 192
}

/*
 * Read the GuC status register (GUC_STATUS) and store it in the
 * specified location; then return a boolean indicating whether
 * the value matches either of two values representing completion
 * of the GuC boot process.
 *
 * This is used for polling the GuC status in a wait_for()
 * loop below.
 */
193
static inline bool guc_ready(struct intel_uncore *uncore, u32 *status)
194
{
195
	u32 val = intel_uncore_read(uncore, GUC_STATUS);
196 197 198 199 200 201 202
	u32 uk_val = val & GS_UKERNEL_MASK;

	*status = val;
	return (uk_val == GS_UKERNEL_READY) ||
		((val & GS_MIA_CORE_STATE) && (uk_val == GS_UKERNEL_LAPIC_DONE));
}

203
static int guc_wait_ucode(struct intel_uncore *uncore)
204 205 206 207
{
	u32 status;
	int ret;

208
	/*
209
	 * Wait for the GuC to start up.
210 211 212
	 * NB: Docs recommend not using the interrupt for completion.
	 * Measurements indicate this should take no more than 20ms, so a
	 * timeout here indicates that the GuC has failed and is unusable.
213 214
	 * (Higher levels of the driver may decide to reset the GuC and
	 * attempt the ucode load again if this happens.)
215
	 */
216
	ret = wait_for(guc_ready(uncore, &status), 100);
217
	DRM_DEBUG_DRIVER("GuC status %#x\n", status);
218 219 220 221 222 223

	if ((status & GS_BOOTROM_MASK) == GS_BOOTROM_RSA_FAILED) {
		DRM_ERROR("GuC firmware signature verification failed\n");
		ret = -ENOEXEC;
	}

224 225
	if ((status & GS_UKERNEL_MASK) == GS_UKERNEL_EXCEPTION) {
		DRM_ERROR("GuC firmware exception. EIP: %#x\n",
226
			  intel_uncore_read(uncore, SOFT_SCRATCH(13)));
227 228 229
		ret = -ENXIO;
	}

230
	if (ret == 0 && !guc_xfer_completed(uncore, &status)) {
231 232 233 234 235
		DRM_ERROR("GuC is ready, but the xfer %08x is incomplete\n",
			  status);
		ret = -ENXIO;
	}

236 237 238
	return ret;
}

239 240 241 242 243 244 245
/*
 * Transfer the firmware image to RAM for execution by the microcontroller.
 *
 * Architecturally, the DMA engine is bidirectional, and can potentially even
 * transfer between GTT locations. This functionality is left out of the API
 * for now as there is no need for it.
 */
246
static int guc_xfer_ucode(struct intel_guc *guc)
247
{
248
	struct intel_uncore *uncore = guc_to_gt(guc)->uncore;
249 250 251 252 253 254 255
	struct intel_uc_fw *guc_fw = &guc->fw;
	unsigned long offset;

	/*
	 * The header plus uCode will be copied to WOPCM via DMA, excluding any
	 * other components
	 */
256 257
	intel_uncore_write(uncore, DMA_COPY_SIZE,
			   guc_fw->header_size + guc_fw->ucode_size);
258 259

	/* Set the source address for the new blob */
260
	offset = intel_uc_fw_ggtt_offset(guc_fw) + guc_fw->header_offset;
261 262
	intel_uncore_write(uncore, DMA_ADDR_0_LOW, lower_32_bits(offset));
	intel_uncore_write(uncore, DMA_ADDR_0_HIGH, upper_32_bits(offset) & 0xFFFF);
263 264 265 266 267

	/*
	 * Set the DMA destination. Current uCode expects the code to be
	 * loaded at 8k; locations below this are used for the stack.
	 */
268 269
	intel_uncore_write(uncore, DMA_ADDR_1_LOW, 0x2000);
	intel_uncore_write(uncore, DMA_ADDR_1_HIGH, DMA_ADDRESS_SPACE_WOPCM);
270 271

	/* Finally start the DMA */
272 273
	intel_uncore_write(uncore, DMA_CTRL,
			   _MASKED_BIT_ENABLE(UOS_MOVE | START_DMA));
274

275
	return guc_wait_ucode(uncore);
276
}
277 278 279
/*
 * Load the GuC firmware blob into the MinuteIA.
 */
280
static int guc_fw_xfer(struct intel_uc_fw *guc_fw)
281
{
282
	struct intel_guc *guc = container_of(guc_fw, struct intel_guc, fw);
283
	struct intel_uncore *uncore = guc_to_gt(guc)->uncore;
284 285
	int ret;

286
	GEM_BUG_ON(guc_fw->type != INTEL_UC_FW_TYPE_GUC);
287

288
	intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
289

290
	guc_prepare_xfer(guc);
291

292 293 294 295 296
	/*
	 * Note that GuC needs the CSS header plus uKernel code to be copied
	 * by the DMA engine in one operation, whereas the RSA signature is
	 * loaded via MMIO.
	 */
297
	guc_xfer_rsa(guc);
298

299
	ret = guc_xfer_ucode(guc);
300

301
	intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL);
302 303 304 305 306

	return ret;
}

/**
307
 * intel_guc_fw_upload() - load GuC uCode to device
308
 * @guc: intel_guc structure
309
 *
310 311
 * Called from intel_uc_init_hw() during driver load, resume from sleep and
 * after a GPU reset.
312
 *
313 314
 * The firmware image should have already been fetched into memory, so only
 * check that fetch succeeded, and then transfer the image to the h/w.
315 316 317
 *
 * Return:	non-zero code on error
 */
318
int intel_guc_fw_upload(struct intel_guc *guc)
319
{
320
	return intel_uc_fw_upload(&guc->fw, guc_fw_xfer);
321
}