drm/i915: Type safe register read/write
[linux-2.6-block.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
DV
46
47MODULE_FIRMWARE(I915_CSR_SKL);
18c237c0 48MODULE_FIRMWARE(I915_CSR_BXT);
eb805623 49
9c5308ea
MK
50#define SKL_CSR_VERSION_REQUIRED CSR_VERSION(1, 23)
51
eb805623
DV
52#define CSR_MAX_FW_SIZE 0x2FFF
53#define CSR_DEFAULT_FW_OFFSET 0xFFFFFFFF
eb805623
DV
54
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[] = {
84cb00ec
JN
170 {'A', '0'}, {'B', '0'}, {'C', '0'},
171 {'D', '0'}, {'E', '0'}, {'F', '0'},
172 {'G', '0'}, {'H', '0'}, {'I', '0'}
eb805623
DV
173};
174
b9cd5bfd 175static const struct stepping_info bxt_stepping_info[] = {
cff765fb
AM
176 {'A', '0'}, {'A', '1'}, {'A', '2'},
177 {'B', '0'}, {'B', '1'}, {'B', '2'}
178};
179
b1a14c6e 180static const struct stepping_info *intel_get_stepping_info(struct drm_device *dev)
eb805623 181{
b1a14c6e
JN
182 const struct stepping_info *si;
183 unsigned int size;
184
185 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 }
eb805623 194
b1a14c6e
JN
195 if (INTEL_REVID(dev) < size)
196 return si + INTEL_REVID(dev);
197
198 return NULL;
eb805623
DV
199}
200
aa9145c4
AM
201/**
202 * intel_csr_load_program() - write the firmware from memory to register.
f4448375 203 * @dev_priv: i915 drm device.
aa9145c4
AM
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 */
f4448375 209void intel_csr_load_program(struct drm_i915_private *dev_priv)
eb805623 210{
a7f749f9 211 u32 *payload = dev_priv->csr.dmc_payload;
eb805623
DV
212 uint32_t i, fw_size;
213
f4448375 214 if (!IS_GEN9(dev_priv)) {
eb805623
DV
215 DRM_ERROR("No CSR support available for this platform\n");
216 return;
217 }
218
fc131bf2
PJ
219 if (!dev_priv->csr.dmc_payload) {
220 DRM_ERROR("Tried to program CSR with empty payload\n");
4b7ab5fc 221 return;
fc131bf2 222 }
4b7ab5fc 223
eb805623
DV
224 fw_size = dev_priv->csr.dmc_fw_size;
225 for (i = 0; i < fw_size; i++)
d2aa5ae8 226 I915_WRITE(CSR_PROGRAM(i), payload[i]);
eb805623
DV
227
228 for (i = 0; i < dev_priv->csr.mmio_count; i++) {
229 I915_WRITE(dev_priv->csr.mmioaddr[i],
f98f70d9 230 dev_priv->csr.mmiodata[i]);
eb805623 231 }
eb805623
DV
232}
233
6a6582bf
DV
234static uint32_t *parse_csr_fw(struct drm_i915_private *dev_priv,
235 const struct firmware *fw)
eb805623 236{
eb805623
DV
237 struct drm_device *dev = dev_priv->dev;
238 struct intel_css_header *css_header;
239 struct intel_package_header *package_header;
240 struct intel_dmc_header *dmc_header;
241 struct intel_csr *csr = &dev_priv->csr;
b1a14c6e
JN
242 const struct stepping_info *stepping_info = intel_get_stepping_info(dev);
243 char stepping, substepping;
eb805623
DV
244 uint32_t dmc_offset = CSR_DEFAULT_FW_OFFSET, readcount = 0, nbytes;
245 uint32_t i;
a7f749f9 246 uint32_t *dmc_payload;
eb805623 247
9c5308ea 248 if (!fw)
6a6582bf 249 return NULL;
eb805623 250
b1a14c6e 251 if (!stepping_info) {
eb805623 252 DRM_ERROR("Unknown stepping info, firmware loading failed\n");
6a6582bf 253 return NULL;
eb805623
DV
254 }
255
b1a14c6e
JN
256 stepping = stepping_info->stepping;
257 substepping = stepping_info->substepping;
258
eb805623
DV
259 /* Extract CSS Header information*/
260 css_header = (struct intel_css_header *)fw->data;
261 if (sizeof(struct intel_css_header) !=
f98f70d9 262 (css_header->header_len * 4)) {
eb805623 263 DRM_ERROR("Firmware has wrong CSS header length %u bytes\n",
f98f70d9 264 (css_header->header_len * 4));
6a6582bf 265 return NULL;
eb805623 266 }
b6e7d894
DL
267
268 csr->version = css_header->version;
269
9c5308ea
MK
270 if (IS_SKYLAKE(dev) && csr->version < SKL_CSR_VERSION_REQUIRED) {
271 DRM_INFO("Refusing to load old Skylake DMC firmware v%u.%u,"
272 " please upgrade to v%u.%u or later"
273 " [https://01.org/linuxgraphics/intel-linux-graphics-firmwares].\n",
274 CSR_VERSION_MAJOR(csr->version),
275 CSR_VERSION_MINOR(csr->version),
276 CSR_VERSION_MAJOR(SKL_CSR_VERSION_REQUIRED),
277 CSR_VERSION_MINOR(SKL_CSR_VERSION_REQUIRED));
6a6582bf 278 return NULL;
9c5308ea
MK
279 }
280
eb805623
DV
281 readcount += sizeof(struct intel_css_header);
282
283 /* Extract Package Header information*/
284 package_header = (struct intel_package_header *)
f98f70d9 285 &fw->data[readcount];
eb805623 286 if (sizeof(struct intel_package_header) !=
f98f70d9 287 (package_header->header_len * 4)) {
eb805623 288 DRM_ERROR("Firmware has wrong package header length %u bytes\n",
f98f70d9 289 (package_header->header_len * 4));
6a6582bf 290 return NULL;
eb805623
DV
291 }
292 readcount += sizeof(struct intel_package_header);
293
294 /* Search for dmc_offset to find firware binary. */
295 for (i = 0; i < package_header->num_entries; i++) {
296 if (package_header->fw_info[i].substepping == '*' &&
f98f70d9 297 stepping == package_header->fw_info[i].stepping) {
eb805623
DV
298 dmc_offset = package_header->fw_info[i].offset;
299 break;
300 } else if (stepping == package_header->fw_info[i].stepping &&
301 substepping == package_header->fw_info[i].substepping) {
302 dmc_offset = package_header->fw_info[i].offset;
303 break;
304 } else if (package_header->fw_info[i].stepping == '*' &&
f98f70d9 305 package_header->fw_info[i].substepping == '*')
eb805623
DV
306 dmc_offset = package_header->fw_info[i].offset;
307 }
308 if (dmc_offset == CSR_DEFAULT_FW_OFFSET) {
309 DRM_ERROR("Firmware not supported for %c stepping\n", stepping);
6a6582bf 310 return NULL;
eb805623
DV
311 }
312 readcount += dmc_offset;
313
314 /* Extract dmc_header information. */
315 dmc_header = (struct intel_dmc_header *)&fw->data[readcount];
316 if (sizeof(struct intel_dmc_header) != (dmc_header->header_len)) {
317 DRM_ERROR("Firmware has wrong dmc header length %u bytes\n",
f98f70d9 318 (dmc_header->header_len));
6a6582bf 319 return NULL;
eb805623
DV
320 }
321 readcount += sizeof(struct intel_dmc_header);
322
323 /* Cache the dmc header info. */
324 if (dmc_header->mmio_count > ARRAY_SIZE(csr->mmioaddr)) {
325 DRM_ERROR("Firmware has wrong mmio count %u\n",
f98f70d9 326 dmc_header->mmio_count);
6a6582bf 327 return NULL;
eb805623
DV
328 }
329 csr->mmio_count = dmc_header->mmio_count;
330 for (i = 0; i < dmc_header->mmio_count; i++) {
982b0b2d 331 if (dmc_header->mmioaddr[i] < CSR_MMIO_START_RANGE ||
f98f70d9 332 dmc_header->mmioaddr[i] > CSR_MMIO_END_RANGE) {
eb805623 333 DRM_ERROR(" Firmware has wrong mmio address 0x%x\n",
f98f70d9 334 dmc_header->mmioaddr[i]);
6a6582bf 335 return NULL;
eb805623 336 }
f0f59a00 337 csr->mmioaddr[i] = _MMIO(dmc_header->mmioaddr[i]);
eb805623
DV
338 csr->mmiodata[i] = dmc_header->mmiodata[i];
339 }
340
341 /* fw_size is in dwords, so multiplied by 4 to convert into bytes. */
342 nbytes = dmc_header->fw_size * 4;
343 if (nbytes > CSR_MAX_FW_SIZE) {
344 DRM_ERROR("CSR firmware too big (%u) bytes\n", nbytes);
6a6582bf 345 return NULL;
eb805623
DV
346 }
347 csr->dmc_fw_size = dmc_header->fw_size;
348
6a6582bf
DV
349 dmc_payload = kmalloc(nbytes, GFP_KERNEL);
350 if (!dmc_payload) {
eb805623 351 DRM_ERROR("Memory allocation failed for dmc payload\n");
6a6582bf 352 return NULL;
eb805623
DV
353 }
354
a7f749f9 355 memcpy(dmc_payload, &fw->data[readcount], nbytes);
eb805623 356
6a6582bf
DV
357 return dmc_payload;
358}
359
8144ac59 360static void csr_load_work_fn(struct work_struct *work)
6a6582bf 361{
8144ac59
DV
362 struct drm_i915_private *dev_priv;
363 struct intel_csr *csr;
364 const struct firmware *fw;
365 int ret;
366
367 dev_priv = container_of(work, typeof(*dev_priv), csr.work);
368 csr = &dev_priv->csr;
6a6582bf 369
8144ac59
DV
370 ret = request_firmware(&fw, dev_priv->csr.fw_path,
371 &dev_priv->dev->pdev->dev);
6a6582bf
DV
372 if (!fw)
373 goto out;
374
375 dev_priv->csr.dmc_payload = parse_csr_fw(dev_priv, fw);
376 if (!dev_priv->csr.dmc_payload)
377 goto out;
378
eb805623 379 /* load csr program during system boot, as needed for DC states */
f4448375 380 intel_csr_load_program(dev_priv);
dc174300 381
eb805623 382out:
6a6582bf 383 if (dev_priv->csr.dmc_payload) {
01a6908c 384 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
9c5308ea
MK
385
386 DRM_INFO("Finished loading %s (v%u.%u)\n",
387 dev_priv->csr.fw_path,
388 CSR_VERSION_MAJOR(csr->version),
389 CSR_VERSION_MINOR(csr->version));
390 } else {
c729ed88 391 DRM_ERROR("Failed to load DMC firmware, disabling rpm\n");
9c5308ea
MK
392 }
393
eb805623
DV
394 release_firmware(fw);
395}
396
aa9145c4
AM
397/**
398 * intel_csr_ucode_init() - initialize the firmware loading.
f4448375 399 * @dev_priv: i915 drm device.
aa9145c4
AM
400 *
401 * This function is called at the time of loading the display driver to read
402 * firmware from a .bin file and copied into a internal memory.
403 */
f4448375 404void intel_csr_ucode_init(struct drm_i915_private *dev_priv)
eb805623 405{
eb805623 406 struct intel_csr *csr = &dev_priv->csr;
8144ac59
DV
407
408 INIT_WORK(&dev_priv->csr.work, csr_load_work_fn);
eb805623 409
f4448375 410 if (!HAS_CSR(dev_priv))
eb805623
DV
411 return;
412
f4448375 413 if (IS_SKYLAKE(dev_priv))
eb805623 414 csr->fw_path = I915_CSR_SKL;
18c237c0
AM
415 else if (IS_BROXTON(dev_priv))
416 csr->fw_path = I915_CSR_BXT;
eb805623
DV
417 else {
418 DRM_ERROR("Unexpected: no known CSR firmware for platform\n");
419 return;
420 }
421
abd41dc9
DL
422 DRM_DEBUG_KMS("Loading %s\n", csr->fw_path);
423
dc174300
SS
424 /*
425 * Obtain a runtime pm reference, until CSR is loaded,
426 * to avoid entering runtime-suspend.
427 */
01a6908c 428 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
dc174300 429
8144ac59 430 schedule_work(&dev_priv->csr.work);
eb805623
DV
431}
432
aa9145c4
AM
433/**
434 * intel_csr_ucode_fini() - unload the CSR firmware.
f4448375 435 * @dev_priv: i915 drm device.
aa9145c4
AM
436 *
437 * Firmmware unloading includes freeing the internal momory and reset the
438 * firmware loading status.
439 */
f4448375 440void intel_csr_ucode_fini(struct drm_i915_private *dev_priv)
eb805623 441{
f4448375 442 if (!HAS_CSR(dev_priv))
eb805623
DV
443 return;
444
15e72c1f
AM
445 flush_work(&dev_priv->csr.work);
446
eb805623
DV
447 kfree(dev_priv->csr.dmc_payload);
448}