blob: 4bd2747d9c921dd796e69b05ee6a0ab3ce37dbfe [file] [log] [blame]
Daniel Vettereb805622015-05-04 14:58:44 +02001/*
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 */
24#include <linux/firmware.h>
25#include "i915_drv.h"
26#include "i915_reg.h"
27
Animesh Mannaaa9145c2015-05-13 22:13:29 +053028/**
29 * DOC: csr support for dmc
30 *
31 * Display Context Save and Restore (CSR) firmware support added from gen9
32 * onwards to drive newly added DMC (Display microcontroller) in display
33 * engine to save and restore the state of display engine when it enter into
34 * low-power state and comes back to normal.
35 *
36 * Firmware loading status will be one of the below states: FW_UNINITIALIZED,
37 * FW_LOADED, FW_FAILED.
38 *
39 * Once the firmware is written into the registers status will be moved from
40 * FW_UNINITIALIZED to FW_LOADED and for any erroneous condition status will
41 * be moved to FW_FAILED.
42 */
43
Rodrigo Vivibf546f82015-06-03 16:50:19 -070044#define I915_CSR_SKL "i915/skl_dmc_ver1.bin"
Animesh Manna18c237c2015-08-04 22:02:41 +053045#define I915_CSR_BXT "i915/bxt_dmc_ver1.bin"
Daniel Vettereb805622015-05-04 14:58:44 +020046
47MODULE_FIRMWARE(I915_CSR_SKL);
Animesh Manna18c237c2015-08-04 22:02:41 +053048MODULE_FIRMWARE(I915_CSR_BXT);
Daniel Vettereb805622015-05-04 14:58:44 +020049
Mika Kuoppala9c5308e2015-10-30 17:52:16 +020050#define SKL_CSR_VERSION_REQUIRED CSR_VERSION(1, 23)
51
Daniel Vettereb805622015-05-04 14:58:44 +020052#define CSR_MAX_FW_SIZE 0x2FFF
53#define CSR_DEFAULT_FW_OFFSET 0xFFFFFFFF
Daniel Vettereb805622015-05-04 14:58:44 +020054
55struct intel_css_header {
56 /* 0x09 for DMC */
57 uint32_t module_type;
58
59 /* Includes the DMC specific header in dwords */
60 uint32_t header_len;
61
62 /* always value would be 0x10000 */
63 uint32_t header_ver;
64
65 /* Not used */
66 uint32_t module_id;
67
68 /* Not used */
69 uint32_t module_vendor;
70
71 /* in YYYYMMDD format */
72 uint32_t date;
73
74 /* Size in dwords (CSS_Headerlen + PackageHeaderLen + dmc FWsLen)/4 */
75 uint32_t size;
76
77 /* Not used */
78 uint32_t key_size;
79
80 /* Not used */
81 uint32_t modulus_size;
82
83 /* Not used */
84 uint32_t exponent_size;
85
86 /* Not used */
87 uint32_t reserved1[12];
88
89 /* Major Minor */
90 uint32_t version;
91
92 /* Not used */
93 uint32_t reserved2[8];
94
95 /* Not used */
96 uint32_t kernel_header_info;
97} __packed;
98
99struct intel_fw_info {
100 uint16_t reserved1;
101
102 /* Stepping (A, B, C, ..., *). * is a wildcard */
103 char stepping;
104
105 /* Sub-stepping (0, 1, ..., *). * is a wildcard */
106 char substepping;
107
108 uint32_t offset;
109 uint32_t reserved2;
110} __packed;
111
112struct intel_package_header {
113 /* DMC container header length in dwords */
114 unsigned char header_len;
115
116 /* always value would be 0x01 */
117 unsigned char header_ver;
118
119 unsigned char reserved[10];
120
121 /* Number of valid entries in the FWInfo array below */
122 uint32_t num_entries;
123
124 struct intel_fw_info fw_info[20];
125} __packed;
126
127struct intel_dmc_header {
128 /* always value would be 0x40403E3E */
129 uint32_t signature;
130
131 /* DMC binary header length */
132 unsigned char header_len;
133
134 /* 0x01 */
135 unsigned char header_ver;
136
137 /* Reserved */
138 uint16_t dmcc_ver;
139
140 /* Major, Minor */
141 uint32_t project;
142
143 /* Firmware program size (excluding header) in dwords */
144 uint32_t fw_size;
145
146 /* Major Minor version */
147 uint32_t fw_version;
148
149 /* Number of valid MMIO cycles present. */
150 uint32_t mmio_count;
151
152 /* MMIO address */
153 uint32_t mmioaddr[8];
154
155 /* MMIO data */
156 uint32_t mmiodata[8];
157
158 /* FW filename */
159 unsigned char dfile[32];
160
161 uint32_t reserved1[2];
162} __packed;
163
164struct stepping_info {
165 char stepping;
166 char substepping;
167};
168
169static const struct stepping_info skl_stepping_info[] = {
Jani Nikula84cb00e2015-10-20 15:38:31 +0300170 {'A', '0'}, {'B', '0'}, {'C', '0'},
171 {'D', '0'}, {'E', '0'}, {'F', '0'},
172 {'G', '0'}, {'H', '0'}, {'I', '0'}
Daniel Vettereb805622015-05-04 14:58:44 +0200173};
174
Jani Nikulab9cd5bf2015-10-20 15:38:32 +0300175static const struct stepping_info bxt_stepping_info[] = {
Animesh Mannacff765f2015-08-04 22:02:43 +0530176 {'A', '0'}, {'A', '1'}, {'A', '2'},
177 {'B', '0'}, {'B', '1'}, {'B', '2'}
178};
179
Jani Nikulab1a14c62015-10-20 15:38:33 +0300180static const struct stepping_info *intel_get_stepping_info(struct drm_device *dev)
Daniel Vettereb805622015-05-04 14:58:44 +0200181{
Jani Nikulab1a14c62015-10-20 15:38:33 +0300182 const struct stepping_info *si;
183 unsigned int size;
Daniel Vettereb805622015-05-04 14:58:44 +0200184
Jani Nikulab1a14c62015-10-20 15:38:33 +0300185 if (IS_SKYLAKE(dev)) {
186 size = ARRAY_SIZE(skl_stepping_info);
187 si = skl_stepping_info;
188 } else if (IS_BROXTON(dev)) {
189 size = ARRAY_SIZE(bxt_stepping_info);
190 si = bxt_stepping_info;
191 } else {
192 return NULL;
193 }
194
195 if (INTEL_REVID(dev) < size)
196 return si + INTEL_REVID(dev);
197
198 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200199}
200
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530201/**
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530202 * intel_csr_load_program() - write the firmware from memory to register.
203 * @dev: drm device.
204 *
205 * CSR firmware is read from a .bin file and kept in internal memory one time.
206 * Everytime display comes back from low power state this function is called to
207 * copy the firmware from internal memory to registers.
208 */
Daniel Vettereb805622015-05-04 14:58:44 +0200209void intel_csr_load_program(struct drm_device *dev)
210{
211 struct drm_i915_private *dev_priv = dev->dev_private;
Animesh Mannaa7f749f2015-08-03 21:55:32 +0530212 u32 *payload = dev_priv->csr.dmc_payload;
Daniel Vettereb805622015-05-04 14:58:44 +0200213 uint32_t i, fw_size;
214
215 if (!IS_GEN9(dev)) {
216 DRM_ERROR("No CSR support available for this platform\n");
217 return;
218 }
219
Animesh Manna4b7ab5f2015-08-26 01:36:05 +0530220 /*
221 * FIXME: Firmware gets lost on S3/S4, but not when entering system
222 * standby or suspend-to-idle (which is just like forced runtime pm).
223 * Unfortunately the ACPI subsystem doesn't yet give us a way to
224 * differentiate this, hence figure it out with this hack.
225 */
226 if (I915_READ(CSR_PROGRAM(0)))
227 return;
228
Daniel Vettereb805622015-05-04 14:58:44 +0200229 fw_size = dev_priv->csr.dmc_fw_size;
230 for (i = 0; i < fw_size; i++)
Ville Syrjäläd2aa5ae2015-09-18 20:03:23 +0300231 I915_WRITE(CSR_PROGRAM(i), payload[i]);
Daniel Vettereb805622015-05-04 14:58:44 +0200232
233 for (i = 0; i < dev_priv->csr.mmio_count; i++) {
234 I915_WRITE(dev_priv->csr.mmioaddr[i],
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200235 dev_priv->csr.mmiodata[i]);
Daniel Vettereb805622015-05-04 14:58:44 +0200236 }
Daniel Vettereb805622015-05-04 14:58:44 +0200237}
238
239static void finish_csr_load(const struct firmware *fw, void *context)
240{
241 struct drm_i915_private *dev_priv = context;
242 struct drm_device *dev = dev_priv->dev;
243 struct intel_css_header *css_header;
244 struct intel_package_header *package_header;
245 struct intel_dmc_header *dmc_header;
246 struct intel_csr *csr = &dev_priv->csr;
Jani Nikulab1a14c62015-10-20 15:38:33 +0300247 const struct stepping_info *stepping_info = intel_get_stepping_info(dev);
248 char stepping, substepping;
Daniel Vettereb805622015-05-04 14:58:44 +0200249 uint32_t dmc_offset = CSR_DEFAULT_FW_OFFSET, readcount = 0, nbytes;
250 uint32_t i;
Animesh Mannaa7f749f2015-08-03 21:55:32 +0530251 uint32_t *dmc_payload;
Suketu Shahdc174302015-04-17 19:46:16 +0530252 bool fw_loaded = false;
Daniel Vettereb805622015-05-04 14:58:44 +0200253
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200254 if (!fw)
Daniel Vettereb805622015-05-04 14:58:44 +0200255 goto out;
Daniel Vettereb805622015-05-04 14:58:44 +0200256
Jani Nikulab1a14c62015-10-20 15:38:33 +0300257 if (!stepping_info) {
Daniel Vettereb805622015-05-04 14:58:44 +0200258 DRM_ERROR("Unknown stepping info, firmware loading failed\n");
259 goto out;
260 }
261
Jani Nikulab1a14c62015-10-20 15:38:33 +0300262 stepping = stepping_info->stepping;
263 substepping = stepping_info->substepping;
264
Daniel Vettereb805622015-05-04 14:58:44 +0200265 /* Extract CSS Header information*/
266 css_header = (struct intel_css_header *)fw->data;
267 if (sizeof(struct intel_css_header) !=
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200268 (css_header->header_len * 4)) {
Daniel Vettereb805622015-05-04 14:58:44 +0200269 DRM_ERROR("Firmware has wrong CSS header length %u bytes\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200270 (css_header->header_len * 4));
Daniel Vettereb805622015-05-04 14:58:44 +0200271 goto out;
272 }
Damien Lespiaub6e7d892015-10-27 14:46:59 +0200273
274 csr->version = css_header->version;
275
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200276 if (IS_SKYLAKE(dev) && csr->version < SKL_CSR_VERSION_REQUIRED) {
277 DRM_INFO("Refusing to load old Skylake DMC firmware v%u.%u,"
278 " please upgrade to v%u.%u or later"
279 " [https://01.org/linuxgraphics/intel-linux-graphics-firmwares].\n",
280 CSR_VERSION_MAJOR(csr->version),
281 CSR_VERSION_MINOR(csr->version),
282 CSR_VERSION_MAJOR(SKL_CSR_VERSION_REQUIRED),
283 CSR_VERSION_MINOR(SKL_CSR_VERSION_REQUIRED));
284 goto out;
285 }
286
Daniel Vettereb805622015-05-04 14:58:44 +0200287 readcount += sizeof(struct intel_css_header);
288
289 /* Extract Package Header information*/
290 package_header = (struct intel_package_header *)
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200291 &fw->data[readcount];
Daniel Vettereb805622015-05-04 14:58:44 +0200292 if (sizeof(struct intel_package_header) !=
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200293 (package_header->header_len * 4)) {
Daniel Vettereb805622015-05-04 14:58:44 +0200294 DRM_ERROR("Firmware has wrong package header length %u bytes\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200295 (package_header->header_len * 4));
Daniel Vettereb805622015-05-04 14:58:44 +0200296 goto out;
297 }
298 readcount += sizeof(struct intel_package_header);
299
300 /* Search for dmc_offset to find firware binary. */
301 for (i = 0; i < package_header->num_entries; i++) {
302 if (package_header->fw_info[i].substepping == '*' &&
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200303 stepping == package_header->fw_info[i].stepping) {
Daniel Vettereb805622015-05-04 14:58:44 +0200304 dmc_offset = package_header->fw_info[i].offset;
305 break;
306 } else if (stepping == package_header->fw_info[i].stepping &&
307 substepping == package_header->fw_info[i].substepping) {
308 dmc_offset = package_header->fw_info[i].offset;
309 break;
310 } else if (package_header->fw_info[i].stepping == '*' &&
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200311 package_header->fw_info[i].substepping == '*')
Daniel Vettereb805622015-05-04 14:58:44 +0200312 dmc_offset = package_header->fw_info[i].offset;
313 }
314 if (dmc_offset == CSR_DEFAULT_FW_OFFSET) {
315 DRM_ERROR("Firmware not supported for %c stepping\n", stepping);
316 goto out;
317 }
318 readcount += dmc_offset;
319
320 /* Extract dmc_header information. */
321 dmc_header = (struct intel_dmc_header *)&fw->data[readcount];
322 if (sizeof(struct intel_dmc_header) != (dmc_header->header_len)) {
323 DRM_ERROR("Firmware has wrong dmc header length %u bytes\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200324 (dmc_header->header_len));
Daniel Vettereb805622015-05-04 14:58:44 +0200325 goto out;
326 }
327 readcount += sizeof(struct intel_dmc_header);
328
329 /* Cache the dmc header info. */
330 if (dmc_header->mmio_count > ARRAY_SIZE(csr->mmioaddr)) {
331 DRM_ERROR("Firmware has wrong mmio count %u\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200332 dmc_header->mmio_count);
Daniel Vettereb805622015-05-04 14:58:44 +0200333 goto out;
334 }
335 csr->mmio_count = dmc_header->mmio_count;
336 for (i = 0; i < dmc_header->mmio_count; i++) {
Takashi Iwai982b0b22015-09-09 16:52:09 +0200337 if (dmc_header->mmioaddr[i] < CSR_MMIO_START_RANGE ||
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200338 dmc_header->mmioaddr[i] > CSR_MMIO_END_RANGE) {
Daniel Vettereb805622015-05-04 14:58:44 +0200339 DRM_ERROR(" Firmware has wrong mmio address 0x%x\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200340 dmc_header->mmioaddr[i]);
Daniel Vettereb805622015-05-04 14:58:44 +0200341 goto out;
342 }
343 csr->mmioaddr[i] = dmc_header->mmioaddr[i];
344 csr->mmiodata[i] = dmc_header->mmiodata[i];
345 }
346
347 /* fw_size is in dwords, so multiplied by 4 to convert into bytes. */
348 nbytes = dmc_header->fw_size * 4;
349 if (nbytes > CSR_MAX_FW_SIZE) {
350 DRM_ERROR("CSR firmware too big (%u) bytes\n", nbytes);
351 goto out;
352 }
353 csr->dmc_fw_size = dmc_header->fw_size;
354
355 csr->dmc_payload = kmalloc(nbytes, GFP_KERNEL);
356 if (!csr->dmc_payload) {
357 DRM_ERROR("Memory allocation failed for dmc payload\n");
358 goto out;
359 }
360
361 dmc_payload = csr->dmc_payload;
Animesh Mannaa7f749f2015-08-03 21:55:32 +0530362 memcpy(dmc_payload, &fw->data[readcount], nbytes);
Daniel Vettereb805622015-05-04 14:58:44 +0200363
364 /* load csr program during system boot, as needed for DC states */
365 intel_csr_load_program(dev);
Suketu Shahdc174302015-04-17 19:46:16 +0530366 fw_loaded = true;
367
Daniel Vettereb805622015-05-04 14:58:44 +0200368out:
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200369 if (fw_loaded) {
Daniel Vetter01a69082015-10-28 23:58:56 +0200370 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200371
372 DRM_INFO("Finished loading %s (v%u.%u)\n",
373 dev_priv->csr.fw_path,
374 CSR_VERSION_MAJOR(csr->version),
375 CSR_VERSION_MINOR(csr->version));
376 } else {
Daniel Vetterc729ed82015-10-28 23:59:00 +0200377 DRM_ERROR("Failed to load DMC firmware, disabling rpm\n");
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200378 }
379
Daniel Vettereb805622015-05-04 14:58:44 +0200380 release_firmware(fw);
381}
382
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530383/**
384 * intel_csr_ucode_init() - initialize the firmware loading.
385 * @dev: drm device.
386 *
387 * This function is called at the time of loading the display driver to read
388 * firmware from a .bin file and copied into a internal memory.
389 */
Daniel Vettereb805622015-05-04 14:58:44 +0200390void intel_csr_ucode_init(struct drm_device *dev)
391{
392 struct drm_i915_private *dev_priv = dev->dev_private;
393 struct intel_csr *csr = &dev_priv->csr;
394 int ret;
395
396 if (!HAS_CSR(dev))
397 return;
398
399 if (IS_SKYLAKE(dev))
400 csr->fw_path = I915_CSR_SKL;
Animesh Manna18c237c2015-08-04 22:02:41 +0530401 else if (IS_BROXTON(dev_priv))
402 csr->fw_path = I915_CSR_BXT;
Daniel Vettereb805622015-05-04 14:58:44 +0200403 else {
404 DRM_ERROR("Unexpected: no known CSR firmware for platform\n");
405 return;
406 }
407
Damien Lespiauabd41dc2015-06-04 16:42:16 +0100408 DRM_DEBUG_KMS("Loading %s\n", csr->fw_path);
409
Suketu Shahdc174302015-04-17 19:46:16 +0530410 /*
411 * Obtain a runtime pm reference, until CSR is loaded,
412 * to avoid entering runtime-suspend.
413 */
Daniel Vetter01a69082015-10-28 23:58:56 +0200414 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
Suketu Shahdc174302015-04-17 19:46:16 +0530415
Daniel Vettereb805622015-05-04 14:58:44 +0200416 /* CSR supported for platform, load firmware */
417 ret = request_firmware_nowait(THIS_MODULE, true, csr->fw_path,
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200418 &dev_priv->dev->pdev->dev,
419 GFP_KERNEL, dev_priv,
420 finish_csr_load);
Daniel Vetterc729ed82015-10-28 23:59:00 +0200421
Daniel Vetter414b7992015-11-12 17:10:37 +0200422 if (ret)
Daniel Vetterc729ed82015-10-28 23:59:00 +0200423 DRM_ERROR("Failed to load DMC firmware, disabling rpm (%d)\n",
424 ret);
Daniel Vettereb805622015-05-04 14:58:44 +0200425}
426
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530427/**
428 * intel_csr_ucode_fini() - unload the CSR firmware.
429 * @dev: drm device.
430 *
431 * Firmmware unloading includes freeing the internal momory and reset the
432 * firmware loading status.
433 */
Daniel Vettereb805622015-05-04 14:58:44 +0200434void intel_csr_ucode_fini(struct drm_device *dev)
435{
436 struct drm_i915_private *dev_priv = dev->dev_private;
437
438 if (!HAS_CSR(dev))
439 return;
440
Daniel Vettereb805622015-05-04 14:58:44 +0200441 kfree(dev_priv->csr.dmc_payload);
442}