blob: da9de47562b801f8227310ce5e49aa2a7162eacb [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.
Animesh Mannaaa9145c2015-05-13 22:13:29 +053035 */
36
Anusha Srivatsaaebfd1d2017-02-22 11:55:36 -080037#define I915_CSR_GLK "i915/glk_dmc_ver1_04.bin"
38#define GLK_CSR_VERSION_REQUIRED CSR_VERSION(1, 4)
Anusha Srivatsadbb28b52016-12-16 17:42:24 +020039
Anusha Srivatsacebfcea2017-06-09 15:26:10 -070040#define I915_CSR_CNL "i915/cnl_dmc_ver1_04.bin"
41#define CNL_CSR_VERSION_REQUIRED CSR_VERSION(1, 4)
42
Maarten Lankhorst536ab3c2016-08-15 15:09:27 +020043#define I915_CSR_KBL "i915/kbl_dmc_ver1_01.bin"
Rodrigo Vivi4922d492016-04-26 14:59:51 -070044MODULE_FIRMWARE(I915_CSR_KBL);
45#define KBL_CSR_VERSION_REQUIRED CSR_VERSION(1, 1)
46
Maarten Lankhorst536ab3c2016-08-15 15:09:27 +020047#define I915_CSR_SKL "i915/skl_dmc_ver1_26.bin"
Rodrigo Vivi4922d492016-04-26 14:59:51 -070048MODULE_FIRMWARE(I915_CSR_SKL);
Maarten Lankhorst536ab3c2016-08-15 15:09:27 +020049#define SKL_CSR_VERSION_REQUIRED CSR_VERSION(1, 26)
Rodrigo Vivi4922d492016-04-26 14:59:51 -070050
Maarten Lankhorst536ab3c2016-08-15 15:09:27 +020051#define I915_CSR_BXT "i915/bxt_dmc_ver1_07.bin"
Rodrigo Vivi4922d492016-04-26 14:59:51 -070052MODULE_FIRMWARE(I915_CSR_BXT);
53#define BXT_CSR_VERSION_REQUIRED CSR_VERSION(1, 7)
Daniel Vettereb805622015-05-04 14:58:44 +020054
Mika Kuoppala9c5308e2015-10-30 17:52:16 +020055
Daniel Vettereb805622015-05-04 14:58:44 +020056#define CSR_MAX_FW_SIZE 0x2FFF
57#define CSR_DEFAULT_FW_OFFSET 0xFFFFFFFF
Daniel Vettereb805622015-05-04 14:58:44 +020058
59struct intel_css_header {
60 /* 0x09 for DMC */
61 uint32_t module_type;
62
63 /* Includes the DMC specific header in dwords */
64 uint32_t header_len;
65
66 /* always value would be 0x10000 */
67 uint32_t header_ver;
68
69 /* Not used */
70 uint32_t module_id;
71
72 /* Not used */
73 uint32_t module_vendor;
74
75 /* in YYYYMMDD format */
76 uint32_t date;
77
78 /* Size in dwords (CSS_Headerlen + PackageHeaderLen + dmc FWsLen)/4 */
79 uint32_t size;
80
81 /* Not used */
82 uint32_t key_size;
83
84 /* Not used */
85 uint32_t modulus_size;
86
87 /* Not used */
88 uint32_t exponent_size;
89
90 /* Not used */
91 uint32_t reserved1[12];
92
93 /* Major Minor */
94 uint32_t version;
95
96 /* Not used */
97 uint32_t reserved2[8];
98
99 /* Not used */
100 uint32_t kernel_header_info;
101} __packed;
102
103struct intel_fw_info {
104 uint16_t reserved1;
105
106 /* Stepping (A, B, C, ..., *). * is a wildcard */
107 char stepping;
108
109 /* Sub-stepping (0, 1, ..., *). * is a wildcard */
110 char substepping;
111
112 uint32_t offset;
113 uint32_t reserved2;
114} __packed;
115
116struct intel_package_header {
117 /* DMC container header length in dwords */
118 unsigned char header_len;
119
120 /* always value would be 0x01 */
121 unsigned char header_ver;
122
123 unsigned char reserved[10];
124
125 /* Number of valid entries in the FWInfo array below */
126 uint32_t num_entries;
127
128 struct intel_fw_info fw_info[20];
129} __packed;
130
131struct intel_dmc_header {
132 /* always value would be 0x40403E3E */
133 uint32_t signature;
134
135 /* DMC binary header length */
136 unsigned char header_len;
137
138 /* 0x01 */
139 unsigned char header_ver;
140
141 /* Reserved */
142 uint16_t dmcc_ver;
143
144 /* Major, Minor */
145 uint32_t project;
146
147 /* Firmware program size (excluding header) in dwords */
148 uint32_t fw_size;
149
150 /* Major Minor version */
151 uint32_t fw_version;
152
153 /* Number of valid MMIO cycles present. */
154 uint32_t mmio_count;
155
156 /* MMIO address */
157 uint32_t mmioaddr[8];
158
159 /* MMIO data */
160 uint32_t mmiodata[8];
161
162 /* FW filename */
163 unsigned char dfile[32];
164
165 uint32_t reserved1[2];
166} __packed;
167
168struct stepping_info {
169 char stepping;
170 char substepping;
171};
172
173static const struct stepping_info skl_stepping_info[] = {
Jani Nikula84cb00e2015-10-20 15:38:31 +0300174 {'A', '0'}, {'B', '0'}, {'C', '0'},
175 {'D', '0'}, {'E', '0'}, {'F', '0'},
Mat Martineaua41c8882016-01-28 15:19:23 -0800176 {'G', '0'}, {'H', '0'}, {'I', '0'},
177 {'J', '0'}, {'K', '0'}
Daniel Vettereb805622015-05-04 14:58:44 +0200178};
179
Jani Nikulab9cd5bfd2015-10-20 15:38:32 +0300180static const struct stepping_info bxt_stepping_info[] = {
Animesh Mannacff765f2015-08-04 22:02:43 +0530181 {'A', '0'}, {'A', '1'}, {'A', '2'},
182 {'B', '0'}, {'B', '1'}, {'B', '2'}
183};
184
Chris Wilson1bb43082016-03-07 12:05:57 +0000185static const struct stepping_info no_stepping_info = { '*', '*' };
186
187static const struct stepping_info *
188intel_get_stepping_info(struct drm_i915_private *dev_priv)
Daniel Vettereb805622015-05-04 14:58:44 +0200189{
Jani Nikulab1a14c62015-10-20 15:38:33 +0300190 const struct stepping_info *si;
191 unsigned int size;
Daniel Vettereb805622015-05-04 14:58:44 +0200192
Anusha Srivatsa1c001642016-10-24 17:28:21 -0700193 if (IS_SKYLAKE(dev_priv)) {
Jani Nikulab1a14c62015-10-20 15:38:33 +0300194 size = ARRAY_SIZE(skl_stepping_info);
195 si = skl_stepping_info;
Chris Wilson1bb43082016-03-07 12:05:57 +0000196 } else if (IS_BROXTON(dev_priv)) {
Jani Nikulab1a14c62015-10-20 15:38:33 +0300197 size = ARRAY_SIZE(bxt_stepping_info);
198 si = bxt_stepping_info;
199 } else {
Chris Wilson1bb43082016-03-07 12:05:57 +0000200 size = 0;
Jani Nikulab1a14c62015-10-20 15:38:33 +0300201 }
202
Chris Wilson1bb43082016-03-07 12:05:57 +0000203 if (INTEL_REVID(dev_priv) < size)
204 return si + INTEL_REVID(dev_priv);
Jani Nikulab1a14c62015-10-20 15:38:33 +0300205
Chris Wilson1bb43082016-03-07 12:05:57 +0000206 return &no_stepping_info;
Daniel Vettereb805622015-05-04 14:58:44 +0200207}
208
Imre Deak2abc5252016-03-04 21:57:41 +0200209static void gen9_set_dc_state_debugmask(struct drm_i915_private *dev_priv)
210{
211 uint32_t val, mask;
212
213 mask = DC_STATE_DEBUG_MASK_MEMORY_UP;
214
Imre Deakb7208a32017-10-03 12:51:59 +0300215 if (IS_GEN9_LP(dev_priv))
Imre Deak2abc5252016-03-04 21:57:41 +0200216 mask |= DC_STATE_DEBUG_MASK_CORES;
217
218 /* The below bit doesn't need to be cleared ever afterwards */
219 val = I915_READ(DC_STATE_DEBUG);
220 if ((val & mask) != mask) {
221 val |= mask;
222 I915_WRITE(DC_STATE_DEBUG, val);
223 POSTING_READ(DC_STATE_DEBUG);
224 }
225}
226
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530227/**
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530228 * intel_csr_load_program() - write the firmware from memory to register.
Daniel Vetterf4448372015-10-28 23:59:02 +0200229 * @dev_priv: i915 drm device.
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530230 *
231 * CSR firmware is read from a .bin file and kept in internal memory one time.
232 * Everytime display comes back from low power state this function is called to
233 * copy the firmware from internal memory to registers.
234 */
Imre Deak2abc5252016-03-04 21:57:41 +0200235void intel_csr_load_program(struct drm_i915_private *dev_priv)
Daniel Vettereb805622015-05-04 14:58:44 +0200236{
Animesh Mannaa7f749f2015-08-03 21:55:32 +0530237 u32 *payload = dev_priv->csr.dmc_payload;
Daniel Vettereb805622015-05-04 14:58:44 +0200238 uint32_t i, fw_size;
239
Rodrigo Vivi1a7399a2017-06-09 15:26:11 -0700240 if (!HAS_CSR(dev_priv)) {
Daniel Vettereb805622015-05-04 14:58:44 +0200241 DRM_ERROR("No CSR support available for this platform\n");
Imre Deak2abc5252016-03-04 21:57:41 +0200242 return;
Daniel Vettereb805622015-05-04 14:58:44 +0200243 }
244
Patrik Jakobssonfc131bf2015-11-09 16:48:16 +0100245 if (!dev_priv->csr.dmc_payload) {
246 DRM_ERROR("Tried to program CSR with empty payload\n");
Imre Deak2abc5252016-03-04 21:57:41 +0200247 return;
Patrik Jakobssonfc131bf2015-11-09 16:48:16 +0100248 }
Animesh Manna4b7ab5f2015-08-26 01:36:05 +0530249
Daniel Vettereb805622015-05-04 14:58:44 +0200250 fw_size = dev_priv->csr.dmc_fw_size;
David Weinehalldff457d2017-09-05 16:10:50 +0300251 assert_rpm_wakelock_held(dev_priv);
252
253 preempt_disable();
254
Daniel Vettereb805622015-05-04 14:58:44 +0200255 for (i = 0; i < fw_size; i++)
David Weinehalldff457d2017-09-05 16:10:50 +0300256 I915_WRITE_FW(CSR_PROGRAM(i), payload[i]);
257
258 preempt_enable();
Daniel Vettereb805622015-05-04 14:58:44 +0200259
260 for (i = 0; i < dev_priv->csr.mmio_count; i++) {
261 I915_WRITE(dev_priv->csr.mmioaddr[i],
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200262 dev_priv->csr.mmiodata[i]);
Daniel Vettereb805622015-05-04 14:58:44 +0200263 }
Patrik Jakobsson832dba82016-02-18 17:21:11 +0200264
265 dev_priv->csr.dc_state = 0;
Mika Kuoppala1e657ad2016-02-18 17:21:14 +0200266
Imre Deak2abc5252016-03-04 21:57:41 +0200267 gen9_set_dc_state_debugmask(dev_priv);
Daniel Vettereb805622015-05-04 14:58:44 +0200268}
269
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200270static uint32_t *parse_csr_fw(struct drm_i915_private *dev_priv,
271 const struct firmware *fw)
Daniel Vettereb805622015-05-04 14:58:44 +0200272{
Daniel Vettereb805622015-05-04 14:58:44 +0200273 struct intel_css_header *css_header;
274 struct intel_package_header *package_header;
275 struct intel_dmc_header *dmc_header;
276 struct intel_csr *csr = &dev_priv->csr;
Chris Wilson1bb43082016-03-07 12:05:57 +0000277 const struct stepping_info *si = intel_get_stepping_info(dev_priv);
Daniel Vettereb805622015-05-04 14:58:44 +0200278 uint32_t dmc_offset = CSR_DEFAULT_FW_OFFSET, readcount = 0, nbytes;
279 uint32_t i;
Animesh Mannaa7f749f2015-08-03 21:55:32 +0530280 uint32_t *dmc_payload;
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200281 uint32_t required_version;
Daniel Vettereb805622015-05-04 14:58:44 +0200282
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200283 if (!fw)
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200284 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200285
Daniel Vettereb805622015-05-04 14:58:44 +0200286 /* Extract CSS Header information*/
287 css_header = (struct intel_css_header *)fw->data;
288 if (sizeof(struct intel_css_header) !=
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200289 (css_header->header_len * 4)) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000290 DRM_ERROR("DMC firmware has wrong CSS header length "
291 "(%u bytes)\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200292 (css_header->header_len * 4));
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200293 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200294 }
Damien Lespiaub6e7d892015-10-27 14:46:59 +0200295
296 csr->version = css_header->version;
297
Anusha Srivatsacebfcea2017-06-09 15:26:10 -0700298 if (IS_CANNONLAKE(dev_priv)) {
299 required_version = CNL_CSR_VERSION_REQUIRED;
300 } else if (IS_GEMINILAKE(dev_priv)) {
Anusha Srivatsadbb28b52016-12-16 17:42:24 +0200301 required_version = GLK_CSR_VERSION_REQUIRED;
Rodrigo Vivi84cd8432017-06-09 13:02:30 -0700302 } else if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv)) {
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200303 required_version = KBL_CSR_VERSION_REQUIRED;
Rodrigo Vivi4922d492016-04-26 14:59:51 -0700304 } else if (IS_SKYLAKE(dev_priv)) {
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200305 required_version = SKL_CSR_VERSION_REQUIRED;
Imre Deake7968532016-04-01 16:02:32 +0300306 } else if (IS_BROXTON(dev_priv)) {
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200307 required_version = BXT_CSR_VERSION_REQUIRED;
Imre Deake7968532016-04-01 16:02:32 +0300308 } else {
309 MISSING_CASE(INTEL_REVID(dev_priv));
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200310 required_version = 0;
Imre Deake7968532016-04-01 16:02:32 +0300311 }
312
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200313 if (csr->version != required_version) {
314 DRM_INFO("Refusing to load DMC firmware v%u.%u,"
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000315 " please use v%u.%u\n",
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200316 CSR_VERSION_MAJOR(csr->version),
317 CSR_VERSION_MINOR(csr->version),
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200318 CSR_VERSION_MAJOR(required_version),
319 CSR_VERSION_MINOR(required_version));
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200320 return NULL;
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200321 }
322
Daniel Vettereb805622015-05-04 14:58:44 +0200323 readcount += sizeof(struct intel_css_header);
324
325 /* Extract Package Header information*/
326 package_header = (struct intel_package_header *)
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200327 &fw->data[readcount];
Daniel Vettereb805622015-05-04 14:58:44 +0200328 if (sizeof(struct intel_package_header) !=
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200329 (package_header->header_len * 4)) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000330 DRM_ERROR("DMC firmware has wrong package header length "
331 "(%u bytes)\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200332 (package_header->header_len * 4));
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200333 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200334 }
335 readcount += sizeof(struct intel_package_header);
336
337 /* Search for dmc_offset to find firware binary. */
338 for (i = 0; i < package_header->num_entries; i++) {
339 if (package_header->fw_info[i].substepping == '*' &&
Chris Wilson1bb43082016-03-07 12:05:57 +0000340 si->stepping == package_header->fw_info[i].stepping) {
Daniel Vettereb805622015-05-04 14:58:44 +0200341 dmc_offset = package_header->fw_info[i].offset;
342 break;
Chris Wilson1bb43082016-03-07 12:05:57 +0000343 } else if (si->stepping == package_header->fw_info[i].stepping &&
344 si->substepping == package_header->fw_info[i].substepping) {
Daniel Vettereb805622015-05-04 14:58:44 +0200345 dmc_offset = package_header->fw_info[i].offset;
346 break;
347 } else if (package_header->fw_info[i].stepping == '*' &&
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200348 package_header->fw_info[i].substepping == '*')
Daniel Vettereb805622015-05-04 14:58:44 +0200349 dmc_offset = package_header->fw_info[i].offset;
350 }
351 if (dmc_offset == CSR_DEFAULT_FW_OFFSET) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000352 DRM_ERROR("DMC firmware not supported for %c stepping\n",
Chris Wilson1bb43082016-03-07 12:05:57 +0000353 si->stepping);
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200354 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200355 }
356 readcount += dmc_offset;
357
358 /* Extract dmc_header information. */
359 dmc_header = (struct intel_dmc_header *)&fw->data[readcount];
360 if (sizeof(struct intel_dmc_header) != (dmc_header->header_len)) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000361 DRM_ERROR("DMC firmware has wrong dmc header length "
362 "(%u bytes)\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200363 (dmc_header->header_len));
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200364 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200365 }
366 readcount += sizeof(struct intel_dmc_header);
367
368 /* Cache the dmc header info. */
369 if (dmc_header->mmio_count > ARRAY_SIZE(csr->mmioaddr)) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000370 DRM_ERROR("DMC firmware has wrong mmio count %u\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200371 dmc_header->mmio_count);
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200372 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200373 }
374 csr->mmio_count = dmc_header->mmio_count;
375 for (i = 0; i < dmc_header->mmio_count; i++) {
Takashi Iwai982b0b22015-09-09 16:52:09 +0200376 if (dmc_header->mmioaddr[i] < CSR_MMIO_START_RANGE ||
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200377 dmc_header->mmioaddr[i] > CSR_MMIO_END_RANGE) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000378 DRM_ERROR("DMC firmware has wrong mmio address 0x%x\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200379 dmc_header->mmioaddr[i]);
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200380 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200381 }
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200382 csr->mmioaddr[i] = _MMIO(dmc_header->mmioaddr[i]);
Daniel Vettereb805622015-05-04 14:58:44 +0200383 csr->mmiodata[i] = dmc_header->mmiodata[i];
384 }
385
386 /* fw_size is in dwords, so multiplied by 4 to convert into bytes. */
387 nbytes = dmc_header->fw_size * 4;
388 if (nbytes > CSR_MAX_FW_SIZE) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000389 DRM_ERROR("DMC firmware too big (%u bytes)\n", nbytes);
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200390 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200391 }
392 csr->dmc_fw_size = dmc_header->fw_size;
393
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200394 dmc_payload = kmalloc(nbytes, GFP_KERNEL);
395 if (!dmc_payload) {
Daniel Vettereb805622015-05-04 14:58:44 +0200396 DRM_ERROR("Memory allocation failed for dmc payload\n");
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200397 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200398 }
399
Chris Wilson1bb43082016-03-07 12:05:57 +0000400 return memcpy(dmc_payload, &fw->data[readcount], nbytes);
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200401}
402
Daniel Vetter8144ac52015-10-28 23:59:04 +0200403static void csr_load_work_fn(struct work_struct *work)
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200404{
Daniel Vetter8144ac52015-10-28 23:59:04 +0200405 struct drm_i915_private *dev_priv;
406 struct intel_csr *csr;
Jérémy Lefaure3aaa8ab2016-11-28 18:43:19 -0500407 const struct firmware *fw = NULL;
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200408
Daniel Vetter8144ac52015-10-28 23:59:04 +0200409 dev_priv = container_of(work, typeof(*dev_priv), csr.work);
410 csr = &dev_priv->csr;
411
Chris Wilsonec788282017-01-18 12:18:08 +0000412 request_firmware(&fw, dev_priv->csr.fw_path, &dev_priv->drm.pdev->dev);
Imre Deak2abc5252016-03-04 21:57:41 +0200413 if (fw)
414 dev_priv->csr.dmc_payload = parse_csr_fw(dev_priv, fw);
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200415
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200416 if (dev_priv->csr.dmc_payload) {
Imre Deak2abc5252016-03-04 21:57:41 +0200417 intel_csr_load_program(dev_priv);
418
Daniel Vetter01a69082015-10-28 23:58:56 +0200419 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200420
Mika Kuoppalab2251c02016-11-16 11:33:26 +0200421 DRM_INFO("Finished loading DMC firmware %s (v%u.%u)\n",
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200422 dev_priv->csr.fw_path,
423 CSR_VERSION_MAJOR(csr->version),
424 CSR_VERSION_MINOR(csr->version));
425 } else {
Chris Wilson91c8a322016-07-05 10:40:23 +0100426 dev_notice(dev_priv->drm.dev,
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000427 "Failed to load DMC firmware %s."
428 " Disabling runtime power management.\n",
429 csr->fw_path);
430 dev_notice(dev_priv->drm.dev, "DMC firmware homepage: %s",
431 INTEL_UC_FIRMWARE_URL);
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200432 }
433
Daniel Vettereb805622015-05-04 14:58:44 +0200434 release_firmware(fw);
435}
436
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530437/**
438 * intel_csr_ucode_init() - initialize the firmware loading.
Daniel Vetterf4448372015-10-28 23:59:02 +0200439 * @dev_priv: i915 drm device.
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530440 *
441 * This function is called at the time of loading the display driver to read
442 * firmware from a .bin file and copied into a internal memory.
443 */
Daniel Vetterf4448372015-10-28 23:59:02 +0200444void intel_csr_ucode_init(struct drm_i915_private *dev_priv)
Daniel Vettereb805622015-05-04 14:58:44 +0200445{
Daniel Vettereb805622015-05-04 14:58:44 +0200446 struct intel_csr *csr = &dev_priv->csr;
Daniel Vetter8144ac52015-10-28 23:59:04 +0200447
448 INIT_WORK(&dev_priv->csr.work, csr_load_work_fn);
Daniel Vettereb805622015-05-04 14:58:44 +0200449
Daniel Vetterf4448372015-10-28 23:59:02 +0200450 if (!HAS_CSR(dev_priv))
Daniel Vettereb805622015-05-04 14:58:44 +0200451 return;
452
Anusha Srivatsacebfcea2017-06-09 15:26:10 -0700453 if (IS_CANNONLAKE(dev_priv))
454 csr->fw_path = I915_CSR_CNL;
455 else if (IS_GEMINILAKE(dev_priv))
Anusha Srivatsadbb28b52016-12-16 17:42:24 +0200456 csr->fw_path = I915_CSR_GLK;
Rodrigo Vivi84cd8432017-06-09 13:02:30 -0700457 else if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv))
Rodrigo Vivi4922d492016-04-26 14:59:51 -0700458 csr->fw_path = I915_CSR_KBL;
459 else if (IS_SKYLAKE(dev_priv))
Daniel Vettereb805622015-05-04 14:58:44 +0200460 csr->fw_path = I915_CSR_SKL;
Animesh Manna18c237c2015-08-04 22:02:41 +0530461 else if (IS_BROXTON(dev_priv))
462 csr->fw_path = I915_CSR_BXT;
Daniel Vettereb805622015-05-04 14:58:44 +0200463 else {
464 DRM_ERROR("Unexpected: no known CSR firmware for platform\n");
465 return;
466 }
467
Damien Lespiauabd41dc2015-06-04 16:42:16 +0100468 DRM_DEBUG_KMS("Loading %s\n", csr->fw_path);
469
Suketu Shahdc174302015-04-17 19:46:16 +0530470 /*
471 * Obtain a runtime pm reference, until CSR is loaded,
472 * to avoid entering runtime-suspend.
473 */
Daniel Vetter01a69082015-10-28 23:58:56 +0200474 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
Suketu Shahdc174302015-04-17 19:46:16 +0530475
Daniel Vetter8144ac52015-10-28 23:59:04 +0200476 schedule_work(&dev_priv->csr.work);
Daniel Vettereb805622015-05-04 14:58:44 +0200477}
478
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530479/**
Imre Deakf74ed082016-04-18 14:48:21 +0300480 * intel_csr_ucode_suspend() - prepare CSR firmware before system suspend
481 * @dev_priv: i915 drm device
482 *
483 * Prepare the DMC firmware before entering system suspend. This includes
484 * flushing pending work items and releasing any resources acquired during
485 * init.
486 */
487void intel_csr_ucode_suspend(struct drm_i915_private *dev_priv)
488{
489 if (!HAS_CSR(dev_priv))
490 return;
491
492 flush_work(&dev_priv->csr.work);
493
494 /* Drop the reference held in case DMC isn't loaded. */
495 if (!dev_priv->csr.dmc_payload)
496 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
497}
498
499/**
500 * intel_csr_ucode_resume() - init CSR firmware during system resume
501 * @dev_priv: i915 drm device
502 *
503 * Reinitialize the DMC firmware during system resume, reacquiring any
504 * resources released in intel_csr_ucode_suspend().
505 */
506void intel_csr_ucode_resume(struct drm_i915_private *dev_priv)
507{
508 if (!HAS_CSR(dev_priv))
509 return;
510
511 /*
512 * Reacquire the reference to keep RPM disabled in case DMC isn't
513 * loaded.
514 */
515 if (!dev_priv->csr.dmc_payload)
516 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
517}
518
519/**
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530520 * intel_csr_ucode_fini() - unload the CSR firmware.
Daniel Vetterf4448372015-10-28 23:59:02 +0200521 * @dev_priv: i915 drm device.
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530522 *
Imre Deakf74ed082016-04-18 14:48:21 +0300523 * Firmmware unloading includes freeing the internal memory and reset the
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530524 * firmware loading status.
525 */
Daniel Vetterf4448372015-10-28 23:59:02 +0200526void intel_csr_ucode_fini(struct drm_i915_private *dev_priv)
Daniel Vettereb805622015-05-04 14:58:44 +0200527{
Daniel Vetterf4448372015-10-28 23:59:02 +0200528 if (!HAS_CSR(dev_priv))
Daniel Vettereb805622015-05-04 14:58:44 +0200529 return;
530
Imre Deakf74ed082016-04-18 14:48:21 +0300531 intel_csr_ucode_suspend(dev_priv);
Animesh Manna15e72c12015-10-28 23:59:05 +0200532
Daniel Vettereb805622015-05-04 14:58:44 +0200533 kfree(dev_priv->csr.dmc_payload);
534}