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
	if (!HAS_GT_UC(i915)) {
84
		guc_fw->fetch_status = INTEL_UC_FIRMWARE_NOT_SUPPORTED;
85
		return;
86 87 88
	}

	guc_fw->fetch_status = INTEL_UC_FIRMWARE_NOT_STARTED;
89 90

	if (i915_modparams.guc_firmware_path) {
91 92 93
		guc_fw->path = i915_modparams.guc_firmware_path;
		guc_fw->major_ver_wanted = 0;
		guc_fw->minor_ver_wanted = 0;
94 95 96 97
	} 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;
98 99 100 101
	} 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;
102 103 104 105 106 107 108 109 110 111 112 113
	} 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;
114
	}
115 116 117 118 119 120 121 122 123 124 125
}

/**
 * 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;
126

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

131
static void guc_prepare_xfer(struct intel_guc *guc)
132
{
133 134 135 136 137 138 139 140
	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;
141

142
	/* Must program this register before loading the ucode with DMA */
143 144 145 146
	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);
147
	else
148
		intel_uncore_write(uncore, GEN9_GT_PM_CONFIG, GT_DOORBELL_ENABLE);
149

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

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

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

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

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

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

/*
 * 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.
 */
192
static inline bool guc_ready(struct intel_uncore *uncore, u32 *status)
193
{
194
	u32 val = intel_uncore_read(uncore, GUC_STATUS);
195 196 197 198 199 200 201
	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));
}

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

207
	/*
208
	 * Wait for the GuC to start up.
209 210 211
	 * 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.
212 213
	 * (Higher levels of the driver may decide to reset the GuC and
	 * attempt the ucode load again if this happens.)
214
	 */
215
	ret = wait_for(guc_ready(uncore, &status), 100);
216
	DRM_DEBUG_DRIVER("GuC status %#x\n", status);
217 218 219 220 221 222

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

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

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

235 236 237
	return ret;
}

238 239 240 241 242 243 244
/*
 * 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.
 */
245
static int guc_xfer_ucode(struct intel_guc *guc)
246
{
247
	struct intel_uncore *uncore = guc_to_gt(guc)->uncore;
248 249 250 251 252 253 254
	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
	 */
255 256
	intel_uncore_write(uncore, DMA_COPY_SIZE,
			   guc_fw->header_size + guc_fw->ucode_size);
257 258

	/* Set the source address for the new blob */
259
	offset = intel_uc_fw_ggtt_offset(guc_fw) + guc_fw->header_offset;
260 261
	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);
262 263 264 265 266

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

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

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

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

287
	intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL);
288

289
	guc_prepare_xfer(guc);
290

291 292 293 294 295
	/*
	 * 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.
	 */
296
	guc_xfer_rsa(guc);
297

298
	ret = guc_xfer_ucode(guc);
299

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

	return ret;
}

/**
306
 * intel_guc_fw_upload() - load GuC uCode to device
307
 * @guc: intel_guc structure
308
 *
309 310
 * Called from intel_uc_init_hw() during driver load, resume from sleep and
 * after a GPU reset.
311
 *
312 313
 * 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.
314 315 316
 *
 * Return:	non-zero code on error
 */
317
int intel_guc_fw_upload(struct intel_guc *guc)
318
{
319
	return intel_uc_fw_upload(&guc->fw, guc_fw_xfer);
320
}