drm/i915: Force clean compilation with -Werror
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_csr.c
CommitLineData
eb805623
DV
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 */
24#include <linux/firmware.h>
25#include "i915_drv.h"
26#include "i915_reg.h"
27
aa9145c4
AM
28/**
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
bf546f81 44#define I915_CSR_SKL "i915/skl_dmc_ver1.bin"
18c237c0 45#define I915_CSR_BXT "i915/bxt_dmc_ver1.bin"
eb805623 46
cbfc2d26
CW
47#define FIRMWARE_URL "https://01.org/linuxgraphics/intel-linux-graphics-firmwares"
48
eb805623 49MODULE_FIRMWARE(I915_CSR_SKL);
18c237c0 50MODULE_FIRMWARE(I915_CSR_BXT);
eb805623 51
9c5308ea
MK
52#define SKL_CSR_VERSION_REQUIRED CSR_VERSION(1, 23)
53
eb805623
DV
54#define CSR_MAX_FW_SIZE 0x2FFF
55#define CSR_DEFAULT_FW_OFFSET 0xFFFFFFFF
eb805623
DV
56
57struct intel_css_header {
58 /* 0x09 for DMC */
59 uint32_t module_type;
60
61 /* Includes the DMC specific header in dwords */
62 uint32_t header_len;
63
64 /* always value would be 0x10000 */
65 uint32_t header_ver;
66
67 /* Not used */
68 uint32_t module_id;
69
70 /* Not used */
71 uint32_t module_vendor;
72
73 /* in YYYYMMDD format */
74 uint32_t date;
75
76 /* Size in dwords (CSS_Headerlen + PackageHeaderLen + dmc FWsLen)/4 */
77 uint32_t size;
78
79 /* Not used */
80 uint32_t key_size;
81
82 /* Not used */
83 uint32_t modulus_size;
84
85 /* Not used */
86 uint32_t exponent_size;
87
88 /* Not used */
89 uint32_t reserved1[12];
90
91 /* Major Minor */
92 uint32_t version;
93
94 /* Not used */
95 uint32_t reserved2[8];
96
97 /* Not used */
98 uint32_t kernel_header_info;
99} __packed;
100
101struct intel_fw_info {
102 uint16_t reserved1;
103
104 /* Stepping (A, B, C, ..., *). * is a wildcard */
105 char stepping;
106
107 /* Sub-stepping (0, 1, ..., *). * is a wildcard */
108 char substepping;
109
110 uint32_t offset;
111 uint32_t reserved2;
112} __packed;
113
114struct intel_package_header {
115 /* DMC container header length in dwords */
116 unsigned char header_len;
117
118 /* always value would be 0x01 */
119 unsigned char header_ver;
120
121 unsigned char reserved[10];
122
123 /* Number of valid entries in the FWInfo array below */
124 uint32_t num_entries;
125
126 struct intel_fw_info fw_info[20];
127} __packed;
128
129struct intel_dmc_header {
130 /* always value would be 0x40403E3E */
131 uint32_t signature;
132
133 /* DMC binary header length */
134 unsigned char header_len;
135
136 /* 0x01 */
137 unsigned char header_ver;
138
139 /* Reserved */
140 uint16_t dmcc_ver;
141
142 /* Major, Minor */
143 uint32_t project;
144
145 /* Firmware program size (excluding header) in dwords */
146 uint32_t fw_size;
147
148 /* Major Minor version */
149 uint32_t fw_version;
150
151 /* Number of valid MMIO cycles present. */
152 uint32_t mmio_count;
153
154 /* MMIO address */
155 uint32_t mmioaddr[8];
156
157 /* MMIO data */
158 uint32_t mmiodata[8];
159
160 /* FW filename */
161 unsigned char dfile[32];
162
163 uint32_t reserved1[2];
164} __packed;
165
166struct stepping_info {
167 char stepping;
168 char substepping;
169};
170
a25c9f00
RV
171/*
172 * Kabylake derivated from Skylake H0, so SKL H0
173 * is the right firmware for KBL A0 (revid 0).
174 */
175static const struct stepping_info kbl_stepping_info[] = {
176 {'H', '0'}, {'I', '0'}
177};
178
eb805623 179static const struct stepping_info skl_stepping_info[] = {
84cb00ec
JN
180 {'A', '0'}, {'B', '0'}, {'C', '0'},
181 {'D', '0'}, {'E', '0'}, {'F', '0'},
a41c8882
MM
182 {'G', '0'}, {'H', '0'}, {'I', '0'},
183 {'J', '0'}, {'K', '0'}
eb805623
DV
184};
185
b9cd5bfd 186static const struct stepping_info bxt_stepping_info[] = {
cff765fb
AM
187 {'A', '0'}, {'A', '1'}, {'A', '2'},
188 {'B', '0'}, {'B', '1'}, {'B', '2'}
189};
190
1bb4308e
CW
191static const struct stepping_info no_stepping_info = { '*', '*' };
192
193static const struct stepping_info *
194intel_get_stepping_info(struct drm_i915_private *dev_priv)
eb805623 195{
b1a14c6e
JN
196 const struct stepping_info *si;
197 unsigned int size;
198
1bb4308e 199 if (IS_KABYLAKE(dev_priv)) {
a25c9f00
RV
200 size = ARRAY_SIZE(kbl_stepping_info);
201 si = kbl_stepping_info;
1bb4308e 202 } else if (IS_SKYLAKE(dev_priv)) {
b1a14c6e
JN
203 size = ARRAY_SIZE(skl_stepping_info);
204 si = skl_stepping_info;
1bb4308e 205 } else if (IS_BROXTON(dev_priv)) {
b1a14c6e
JN
206 size = ARRAY_SIZE(bxt_stepping_info);
207 si = bxt_stepping_info;
208 } else {
1bb4308e 209 size = 0;
b1a14c6e 210 }
eb805623 211
1bb4308e
CW
212 if (INTEL_REVID(dev_priv) < size)
213 return si + INTEL_REVID(dev_priv);
b1a14c6e 214
1bb4308e 215 return &no_stepping_info;
eb805623
DV
216}
217
2abc525b
ID
218static void gen9_set_dc_state_debugmask(struct drm_i915_private *dev_priv)
219{
220 uint32_t val, mask;
221
222 mask = DC_STATE_DEBUG_MASK_MEMORY_UP;
223
224 if (IS_BROXTON(dev_priv))
225 mask |= DC_STATE_DEBUG_MASK_CORES;
226
227 /* The below bit doesn't need to be cleared ever afterwards */
228 val = I915_READ(DC_STATE_DEBUG);
229 if ((val & mask) != mask) {
230 val |= mask;
231 I915_WRITE(DC_STATE_DEBUG, val);
232 POSTING_READ(DC_STATE_DEBUG);
233 }
234}
235
aa9145c4
AM
236/**
237 * intel_csr_load_program() - write the firmware from memory to register.
f4448375 238 * @dev_priv: i915 drm device.
aa9145c4
AM
239 *
240 * CSR firmware is read from a .bin file and kept in internal memory one time.
241 * Everytime display comes back from low power state this function is called to
242 * copy the firmware from internal memory to registers.
243 */
2abc525b 244void intel_csr_load_program(struct drm_i915_private *dev_priv)
eb805623 245{
a7f749f9 246 u32 *payload = dev_priv->csr.dmc_payload;
eb805623
DV
247 uint32_t i, fw_size;
248
f4448375 249 if (!IS_GEN9(dev_priv)) {
eb805623 250 DRM_ERROR("No CSR support available for this platform\n");
2abc525b 251 return;
eb805623
DV
252 }
253
fc131bf2
PJ
254 if (!dev_priv->csr.dmc_payload) {
255 DRM_ERROR("Tried to program CSR with empty payload\n");
2abc525b 256 return;
fc131bf2 257 }
4b7ab5fc 258
eb805623
DV
259 fw_size = dev_priv->csr.dmc_fw_size;
260 for (i = 0; i < fw_size; i++)
d2aa5ae8 261 I915_WRITE(CSR_PROGRAM(i), payload[i]);
eb805623
DV
262
263 for (i = 0; i < dev_priv->csr.mmio_count; i++) {
264 I915_WRITE(dev_priv->csr.mmioaddr[i],
f98f70d9 265 dev_priv->csr.mmiodata[i]);
eb805623 266 }
832dba88
PJ
267
268 dev_priv->csr.dc_state = 0;
1e657ad7 269
2abc525b 270 gen9_set_dc_state_debugmask(dev_priv);
eb805623
DV
271}
272
6a6582bf
DV
273static uint32_t *parse_csr_fw(struct drm_i915_private *dev_priv,
274 const struct firmware *fw)
eb805623 275{
eb805623
DV
276 struct intel_css_header *css_header;
277 struct intel_package_header *package_header;
278 struct intel_dmc_header *dmc_header;
279 struct intel_csr *csr = &dev_priv->csr;
1bb4308e 280 const struct stepping_info *si = intel_get_stepping_info(dev_priv);
eb805623
DV
281 uint32_t dmc_offset = CSR_DEFAULT_FW_OFFSET, readcount = 0, nbytes;
282 uint32_t i;
a7f749f9 283 uint32_t *dmc_payload;
eb805623 284
9c5308ea 285 if (!fw)
6a6582bf 286 return NULL;
eb805623 287
eb805623
DV
288 /* Extract CSS Header information*/
289 css_header = (struct intel_css_header *)fw->data;
290 if (sizeof(struct intel_css_header) !=
f98f70d9 291 (css_header->header_len * 4)) {
eb805623 292 DRM_ERROR("Firmware has wrong CSS header length %u bytes\n",
f98f70d9 293 (css_header->header_len * 4));
6a6582bf 294 return NULL;
eb805623 295 }
b6e7d894
DL
296
297 csr->version = css_header->version;
298
1bb4308e 299 if ((IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) &&
8d7a1c4a 300 csr->version < SKL_CSR_VERSION_REQUIRED) {
9c5308ea
MK
301 DRM_INFO("Refusing to load old Skylake DMC firmware v%u.%u,"
302 " please upgrade to v%u.%u or later"
cbfc2d26 303 " [" FIRMWARE_URL "].\n",
9c5308ea
MK
304 CSR_VERSION_MAJOR(csr->version),
305 CSR_VERSION_MINOR(csr->version),
306 CSR_VERSION_MAJOR(SKL_CSR_VERSION_REQUIRED),
307 CSR_VERSION_MINOR(SKL_CSR_VERSION_REQUIRED));
6a6582bf 308 return NULL;
9c5308ea
MK
309 }
310
eb805623
DV
311 readcount += sizeof(struct intel_css_header);
312
313 /* Extract Package Header information*/
314 package_header = (struct intel_package_header *)
f98f70d9 315 &fw->data[readcount];
eb805623 316 if (sizeof(struct intel_package_header) !=
f98f70d9 317 (package_header->header_len * 4)) {
eb805623 318 DRM_ERROR("Firmware has wrong package header length %u bytes\n",
f98f70d9 319 (package_header->header_len * 4));
6a6582bf 320 return NULL;
eb805623
DV
321 }
322 readcount += sizeof(struct intel_package_header);
323
324 /* Search for dmc_offset to find firware binary. */
325 for (i = 0; i < package_header->num_entries; i++) {
326 if (package_header->fw_info[i].substepping == '*' &&
1bb4308e 327 si->stepping == package_header->fw_info[i].stepping) {
eb805623
DV
328 dmc_offset = package_header->fw_info[i].offset;
329 break;
1bb4308e
CW
330 } else if (si->stepping == package_header->fw_info[i].stepping &&
331 si->substepping == package_header->fw_info[i].substepping) {
eb805623
DV
332 dmc_offset = package_header->fw_info[i].offset;
333 break;
334 } else if (package_header->fw_info[i].stepping == '*' &&
f98f70d9 335 package_header->fw_info[i].substepping == '*')
eb805623
DV
336 dmc_offset = package_header->fw_info[i].offset;
337 }
338 if (dmc_offset == CSR_DEFAULT_FW_OFFSET) {
1bb4308e
CW
339 DRM_ERROR("Firmware not supported for %c stepping\n",
340 si->stepping);
6a6582bf 341 return NULL;
eb805623
DV
342 }
343 readcount += dmc_offset;
344
345 /* Extract dmc_header information. */
346 dmc_header = (struct intel_dmc_header *)&fw->data[readcount];
347 if (sizeof(struct intel_dmc_header) != (dmc_header->header_len)) {
348 DRM_ERROR("Firmware has wrong dmc header length %u bytes\n",
f98f70d9 349 (dmc_header->header_len));
6a6582bf 350 return NULL;
eb805623
DV
351 }
352 readcount += sizeof(struct intel_dmc_header);
353
354 /* Cache the dmc header info. */
355 if (dmc_header->mmio_count > ARRAY_SIZE(csr->mmioaddr)) {
356 DRM_ERROR("Firmware has wrong mmio count %u\n",
f98f70d9 357 dmc_header->mmio_count);
6a6582bf 358 return NULL;
eb805623
DV
359 }
360 csr->mmio_count = dmc_header->mmio_count;
361 for (i = 0; i < dmc_header->mmio_count; i++) {
982b0b2d 362 if (dmc_header->mmioaddr[i] < CSR_MMIO_START_RANGE ||
f98f70d9 363 dmc_header->mmioaddr[i] > CSR_MMIO_END_RANGE) {
eb805623 364 DRM_ERROR(" Firmware has wrong mmio address 0x%x\n",
f98f70d9 365 dmc_header->mmioaddr[i]);
6a6582bf 366 return NULL;
eb805623 367 }
f0f59a00 368 csr->mmioaddr[i] = _MMIO(dmc_header->mmioaddr[i]);
eb805623
DV
369 csr->mmiodata[i] = dmc_header->mmiodata[i];
370 }
371
372 /* fw_size is in dwords, so multiplied by 4 to convert into bytes. */
373 nbytes = dmc_header->fw_size * 4;
374 if (nbytes > CSR_MAX_FW_SIZE) {
375 DRM_ERROR("CSR firmware too big (%u) bytes\n", nbytes);
6a6582bf 376 return NULL;
eb805623
DV
377 }
378 csr->dmc_fw_size = dmc_header->fw_size;
379
6a6582bf
DV
380 dmc_payload = kmalloc(nbytes, GFP_KERNEL);
381 if (!dmc_payload) {
eb805623 382 DRM_ERROR("Memory allocation failed for dmc payload\n");
6a6582bf 383 return NULL;
eb805623
DV
384 }
385
1bb4308e 386 return memcpy(dmc_payload, &fw->data[readcount], nbytes);
6a6582bf
DV
387}
388
8144ac59 389static void csr_load_work_fn(struct work_struct *work)
6a6582bf 390{
8144ac59
DV
391 struct drm_i915_private *dev_priv;
392 struct intel_csr *csr;
393 const struct firmware *fw;
394 int ret;
395
396 dev_priv = container_of(work, typeof(*dev_priv), csr.work);
397 csr = &dev_priv->csr;
6a6582bf 398
8144ac59
DV
399 ret = request_firmware(&fw, dev_priv->csr.fw_path,
400 &dev_priv->dev->pdev->dev);
2abc525b
ID
401 if (fw)
402 dev_priv->csr.dmc_payload = parse_csr_fw(dev_priv, fw);
6a6582bf 403
6a6582bf 404 if (dev_priv->csr.dmc_payload) {
2abc525b
ID
405 intel_csr_load_program(dev_priv);
406
01a6908c 407 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
9c5308ea
MK
408
409 DRM_INFO("Finished loading %s (v%u.%u)\n",
410 dev_priv->csr.fw_path,
411 CSR_VERSION_MAJOR(csr->version),
412 CSR_VERSION_MINOR(csr->version));
413 } else {
cbfc2d26
CW
414 dev_notice(dev_priv->dev->dev,
415 "Failed to load DMC firmware"
416 " [" FIRMWARE_URL "],"
417 " disabling runtime power management.\n");
9c5308ea
MK
418 }
419
eb805623
DV
420 release_firmware(fw);
421}
422
aa9145c4
AM
423/**
424 * intel_csr_ucode_init() - initialize the firmware loading.
f4448375 425 * @dev_priv: i915 drm device.
aa9145c4
AM
426 *
427 * This function is called at the time of loading the display driver to read
428 * firmware from a .bin file and copied into a internal memory.
429 */
f4448375 430void intel_csr_ucode_init(struct drm_i915_private *dev_priv)
eb805623 431{
eb805623 432 struct intel_csr *csr = &dev_priv->csr;
8144ac59
DV
433
434 INIT_WORK(&dev_priv->csr.work, csr_load_work_fn);
eb805623 435
f4448375 436 if (!HAS_CSR(dev_priv))
eb805623
DV
437 return;
438
8d7a1c4a 439 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
eb805623 440 csr->fw_path = I915_CSR_SKL;
18c237c0
AM
441 else if (IS_BROXTON(dev_priv))
442 csr->fw_path = I915_CSR_BXT;
eb805623
DV
443 else {
444 DRM_ERROR("Unexpected: no known CSR firmware for platform\n");
445 return;
446 }
447
abd41dc9
DL
448 DRM_DEBUG_KMS("Loading %s\n", csr->fw_path);
449
dc174300
SS
450 /*
451 * Obtain a runtime pm reference, until CSR is loaded,
452 * to avoid entering runtime-suspend.
453 */
01a6908c 454 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
dc174300 455
8144ac59 456 schedule_work(&dev_priv->csr.work);
eb805623
DV
457}
458
aa9145c4
AM
459/**
460 * intel_csr_ucode_fini() - unload the CSR firmware.
f4448375 461 * @dev_priv: i915 drm device.
aa9145c4
AM
462 *
463 * Firmmware unloading includes freeing the internal momory and reset the
464 * firmware loading status.
465 */
f4448375 466void intel_csr_ucode_fini(struct drm_i915_private *dev_priv)
eb805623 467{
f4448375 468 if (!HAS_CSR(dev_priv))
eb805623
DV
469 return;
470
15e72c1f
AM
471 flush_work(&dev_priv->csr.work);
472
eb805623
DV
473 kfree(dev_priv->csr.dmc_payload);
474}
This page took 0.111311 seconds and 5 git commands to generate.