blob: f9550ea46c26093c2865e1001de046be5a425eb8 [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"
Ian W MORRISONb6079902018-04-11 14:42:13 +100038MODULE_FIRMWARE(I915_CSR_GLK);
Anusha Srivatsaaebfd1d2017-02-22 11:55:36 -080039#define GLK_CSR_VERSION_REQUIRED CSR_VERSION(1, 4)
Anusha Srivatsadbb28b52016-12-16 17:42:24 +020040
Anusha Srivatsafe9a9da2018-01-04 15:51:42 -080041#define I915_CSR_CNL "i915/cnl_dmc_ver1_07.bin"
42MODULE_FIRMWARE(I915_CSR_CNL);
43#define CNL_CSR_VERSION_REQUIRED CSR_VERSION(1, 7)
Anusha Srivatsacebfcea2017-06-09 15:26:10 -070044
Anusha Srivatsa4f0aa1f2017-11-09 10:51:43 -080045#define I915_CSR_KBL "i915/kbl_dmc_ver1_04.bin"
Rodrigo Vivi4922d492016-04-26 14:59:51 -070046MODULE_FIRMWARE(I915_CSR_KBL);
Anusha Srivatsa4f0aa1f2017-11-09 10:51:43 -080047#define KBL_CSR_VERSION_REQUIRED CSR_VERSION(1, 4)
Rodrigo Vivi4922d492016-04-26 14:59:51 -070048
Anusha Srivatsa39ccc982017-11-09 17:18:32 -080049#define I915_CSR_SKL "i915/skl_dmc_ver1_27.bin"
Rodrigo Vivi4922d492016-04-26 14:59:51 -070050MODULE_FIRMWARE(I915_CSR_SKL);
Anusha Srivatsa39ccc982017-11-09 17:18:32 -080051#define SKL_CSR_VERSION_REQUIRED CSR_VERSION(1, 27)
Rodrigo Vivi4922d492016-04-26 14:59:51 -070052
Maarten Lankhorst536ab3c2016-08-15 15:09:27 +020053#define I915_CSR_BXT "i915/bxt_dmc_ver1_07.bin"
Rodrigo Vivi4922d492016-04-26 14:59:51 -070054MODULE_FIRMWARE(I915_CSR_BXT);
55#define BXT_CSR_VERSION_REQUIRED CSR_VERSION(1, 7)
Daniel Vettereb805622015-05-04 14:58:44 +020056
Mika Kuoppala9c5308e2015-10-30 17:52:16 +020057
Daniel Vettereb805622015-05-04 14:58:44 +020058#define CSR_MAX_FW_SIZE 0x2FFF
59#define CSR_DEFAULT_FW_OFFSET 0xFFFFFFFF
Daniel Vettereb805622015-05-04 14:58:44 +020060
61struct intel_css_header {
62 /* 0x09 for DMC */
63 uint32_t module_type;
64
65 /* Includes the DMC specific header in dwords */
66 uint32_t header_len;
67
68 /* always value would be 0x10000 */
69 uint32_t header_ver;
70
71 /* Not used */
72 uint32_t module_id;
73
74 /* Not used */
75 uint32_t module_vendor;
76
77 /* in YYYYMMDD format */
78 uint32_t date;
79
80 /* Size in dwords (CSS_Headerlen + PackageHeaderLen + dmc FWsLen)/4 */
81 uint32_t size;
82
83 /* Not used */
84 uint32_t key_size;
85
86 /* Not used */
87 uint32_t modulus_size;
88
89 /* Not used */
90 uint32_t exponent_size;
91
92 /* Not used */
93 uint32_t reserved1[12];
94
95 /* Major Minor */
96 uint32_t version;
97
98 /* Not used */
99 uint32_t reserved2[8];
100
101 /* Not used */
102 uint32_t kernel_header_info;
103} __packed;
104
105struct intel_fw_info {
106 uint16_t reserved1;
107
108 /* Stepping (A, B, C, ..., *). * is a wildcard */
109 char stepping;
110
111 /* Sub-stepping (0, 1, ..., *). * is a wildcard */
112 char substepping;
113
114 uint32_t offset;
115 uint32_t reserved2;
116} __packed;
117
118struct intel_package_header {
119 /* DMC container header length in dwords */
120 unsigned char header_len;
121
122 /* always value would be 0x01 */
123 unsigned char header_ver;
124
125 unsigned char reserved[10];
126
127 /* Number of valid entries in the FWInfo array below */
128 uint32_t num_entries;
129
130 struct intel_fw_info fw_info[20];
131} __packed;
132
133struct intel_dmc_header {
134 /* always value would be 0x40403E3E */
135 uint32_t signature;
136
137 /* DMC binary header length */
138 unsigned char header_len;
139
140 /* 0x01 */
141 unsigned char header_ver;
142
143 /* Reserved */
144 uint16_t dmcc_ver;
145
146 /* Major, Minor */
147 uint32_t project;
148
149 /* Firmware program size (excluding header) in dwords */
150 uint32_t fw_size;
151
152 /* Major Minor version */
153 uint32_t fw_version;
154
155 /* Number of valid MMIO cycles present. */
156 uint32_t mmio_count;
157
158 /* MMIO address */
159 uint32_t mmioaddr[8];
160
161 /* MMIO data */
162 uint32_t mmiodata[8];
163
164 /* FW filename */
165 unsigned char dfile[32];
166
167 uint32_t reserved1[2];
168} __packed;
169
170struct stepping_info {
171 char stepping;
172 char substepping;
173};
174
175static const struct stepping_info skl_stepping_info[] = {
Jani Nikula84cb00e2015-10-20 15:38:31 +0300176 {'A', '0'}, {'B', '0'}, {'C', '0'},
177 {'D', '0'}, {'E', '0'}, {'F', '0'},
Mat Martineaua41c8882016-01-28 15:19:23 -0800178 {'G', '0'}, {'H', '0'}, {'I', '0'},
179 {'J', '0'}, {'K', '0'}
Daniel Vettereb805622015-05-04 14:58:44 +0200180};
181
Jani Nikulab9cd5bfd2015-10-20 15:38:32 +0300182static const struct stepping_info bxt_stepping_info[] = {
Animesh Mannacff765f2015-08-04 22:02:43 +0530183 {'A', '0'}, {'A', '1'}, {'A', '2'},
184 {'B', '0'}, {'B', '1'}, {'B', '2'}
185};
186
Chris Wilson1bb43082016-03-07 12:05:57 +0000187static const struct stepping_info no_stepping_info = { '*', '*' };
188
189static const struct stepping_info *
190intel_get_stepping_info(struct drm_i915_private *dev_priv)
Daniel Vettereb805622015-05-04 14:58:44 +0200191{
Jani Nikulab1a14c62015-10-20 15:38:33 +0300192 const struct stepping_info *si;
193 unsigned int size;
Daniel Vettereb805622015-05-04 14:58:44 +0200194
Anusha Srivatsa1c001642016-10-24 17:28:21 -0700195 if (IS_SKYLAKE(dev_priv)) {
Jani Nikulab1a14c62015-10-20 15:38:33 +0300196 size = ARRAY_SIZE(skl_stepping_info);
197 si = skl_stepping_info;
Chris Wilson1bb43082016-03-07 12:05:57 +0000198 } else if (IS_BROXTON(dev_priv)) {
Jani Nikulab1a14c62015-10-20 15:38:33 +0300199 size = ARRAY_SIZE(bxt_stepping_info);
200 si = bxt_stepping_info;
201 } else {
Chris Wilson1bb43082016-03-07 12:05:57 +0000202 size = 0;
Chris Wilson2f59f1b2017-11-07 14:53:34 +0000203 si = NULL;
Jani Nikulab1a14c62015-10-20 15:38:33 +0300204 }
205
Chris Wilson1bb43082016-03-07 12:05:57 +0000206 if (INTEL_REVID(dev_priv) < size)
207 return si + INTEL_REVID(dev_priv);
Jani Nikulab1a14c62015-10-20 15:38:33 +0300208
Chris Wilson1bb43082016-03-07 12:05:57 +0000209 return &no_stepping_info;
Daniel Vettereb805622015-05-04 14:58:44 +0200210}
211
Imre Deak2abc5252016-03-04 21:57:41 +0200212static void gen9_set_dc_state_debugmask(struct drm_i915_private *dev_priv)
213{
214 uint32_t val, mask;
215
216 mask = DC_STATE_DEBUG_MASK_MEMORY_UP;
217
Imre Deakb7208a32017-10-03 12:51:59 +0300218 if (IS_GEN9_LP(dev_priv))
Imre Deak2abc5252016-03-04 21:57:41 +0200219 mask |= DC_STATE_DEBUG_MASK_CORES;
220
221 /* The below bit doesn't need to be cleared ever afterwards */
222 val = I915_READ(DC_STATE_DEBUG);
223 if ((val & mask) != mask) {
224 val |= mask;
225 I915_WRITE(DC_STATE_DEBUG, val);
226 POSTING_READ(DC_STATE_DEBUG);
227 }
228}
229
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530230/**
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530231 * intel_csr_load_program() - write the firmware from memory to register.
Daniel Vetterf4448372015-10-28 23:59:02 +0200232 * @dev_priv: i915 drm device.
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530233 *
234 * CSR firmware is read from a .bin file and kept in internal memory one time.
235 * Everytime display comes back from low power state this function is called to
236 * copy the firmware from internal memory to registers.
237 */
Imre Deak2abc5252016-03-04 21:57:41 +0200238void intel_csr_load_program(struct drm_i915_private *dev_priv)
Daniel Vettereb805622015-05-04 14:58:44 +0200239{
Animesh Mannaa7f749f2015-08-03 21:55:32 +0530240 u32 *payload = dev_priv->csr.dmc_payload;
Daniel Vettereb805622015-05-04 14:58:44 +0200241 uint32_t i, fw_size;
242
Rodrigo Vivi1a7399a2017-06-09 15:26:11 -0700243 if (!HAS_CSR(dev_priv)) {
Daniel Vettereb805622015-05-04 14:58:44 +0200244 DRM_ERROR("No CSR support available for this platform\n");
Imre Deak2abc5252016-03-04 21:57:41 +0200245 return;
Daniel Vettereb805622015-05-04 14:58:44 +0200246 }
247
Patrik Jakobssonfc131bf2015-11-09 16:48:16 +0100248 if (!dev_priv->csr.dmc_payload) {
249 DRM_ERROR("Tried to program CSR with empty payload\n");
Imre Deak2abc5252016-03-04 21:57:41 +0200250 return;
Patrik Jakobssonfc131bf2015-11-09 16:48:16 +0100251 }
Animesh Manna4b7ab5f2015-08-26 01:36:05 +0530252
Daniel Vettereb805622015-05-04 14:58:44 +0200253 fw_size = dev_priv->csr.dmc_fw_size;
David Weinehalldff457d2017-09-05 16:10:50 +0300254 assert_rpm_wakelock_held(dev_priv);
255
256 preempt_disable();
257
Daniel Vettereb805622015-05-04 14:58:44 +0200258 for (i = 0; i < fw_size; i++)
David Weinehalldff457d2017-09-05 16:10:50 +0300259 I915_WRITE_FW(CSR_PROGRAM(i), payload[i]);
260
261 preempt_enable();
Daniel Vettereb805622015-05-04 14:58:44 +0200262
263 for (i = 0; i < dev_priv->csr.mmio_count; i++) {
264 I915_WRITE(dev_priv->csr.mmioaddr[i],
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200265 dev_priv->csr.mmiodata[i]);
Daniel Vettereb805622015-05-04 14:58:44 +0200266 }
Patrik Jakobsson832dba82016-02-18 17:21:11 +0200267
268 dev_priv->csr.dc_state = 0;
Mika Kuoppala1e657ad2016-02-18 17:21:14 +0200269
Imre Deak2abc5252016-03-04 21:57:41 +0200270 gen9_set_dc_state_debugmask(dev_priv);
Daniel Vettereb805622015-05-04 14:58:44 +0200271}
272
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200273static uint32_t *parse_csr_fw(struct drm_i915_private *dev_priv,
274 const struct firmware *fw)
Daniel Vettereb805622015-05-04 14:58:44 +0200275{
Daniel Vettereb805622015-05-04 14:58:44 +0200276 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;
Chris Wilson1bb43082016-03-07 12:05:57 +0000280 const struct stepping_info *si = intel_get_stepping_info(dev_priv);
Daniel Vettereb805622015-05-04 14:58:44 +0200281 uint32_t dmc_offset = CSR_DEFAULT_FW_OFFSET, readcount = 0, nbytes;
282 uint32_t i;
Animesh Mannaa7f749f2015-08-03 21:55:32 +0530283 uint32_t *dmc_payload;
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200284 uint32_t required_version;
Daniel Vettereb805622015-05-04 14:58:44 +0200285
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200286 if (!fw)
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200287 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200288
Daniel Vettereb805622015-05-04 14:58:44 +0200289 /* Extract CSS Header information*/
290 css_header = (struct intel_css_header *)fw->data;
291 if (sizeof(struct intel_css_header) !=
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200292 (css_header->header_len * 4)) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000293 DRM_ERROR("DMC firmware has wrong CSS header length "
294 "(%u bytes)\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200295 (css_header->header_len * 4));
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200296 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200297 }
Damien Lespiaub6e7d892015-10-27 14:46:59 +0200298
299 csr->version = css_header->version;
300
Anusha Srivatsacebfcea2017-06-09 15:26:10 -0700301 if (IS_CANNONLAKE(dev_priv)) {
302 required_version = CNL_CSR_VERSION_REQUIRED;
303 } else if (IS_GEMINILAKE(dev_priv)) {
Anusha Srivatsadbb28b52016-12-16 17:42:24 +0200304 required_version = GLK_CSR_VERSION_REQUIRED;
Rodrigo Vivi84cd8432017-06-09 13:02:30 -0700305 } else if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv)) {
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200306 required_version = KBL_CSR_VERSION_REQUIRED;
Rodrigo Vivi4922d492016-04-26 14:59:51 -0700307 } else if (IS_SKYLAKE(dev_priv)) {
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200308 required_version = SKL_CSR_VERSION_REQUIRED;
Imre Deake7968532016-04-01 16:02:32 +0300309 } else if (IS_BROXTON(dev_priv)) {
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200310 required_version = BXT_CSR_VERSION_REQUIRED;
Imre Deake7968532016-04-01 16:02:32 +0300311 } else {
312 MISSING_CASE(INTEL_REVID(dev_priv));
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200313 required_version = 0;
Imre Deake7968532016-04-01 16:02:32 +0300314 }
315
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200316 if (csr->version != required_version) {
317 DRM_INFO("Refusing to load DMC firmware v%u.%u,"
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000318 " please use v%u.%u\n",
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200319 CSR_VERSION_MAJOR(csr->version),
320 CSR_VERSION_MINOR(csr->version),
Patrik Jakobsson4aa7fb92016-05-16 11:30:57 +0200321 CSR_VERSION_MAJOR(required_version),
322 CSR_VERSION_MINOR(required_version));
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200323 return NULL;
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200324 }
325
Daniel Vettereb805622015-05-04 14:58:44 +0200326 readcount += sizeof(struct intel_css_header);
327
328 /* Extract Package Header information*/
329 package_header = (struct intel_package_header *)
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200330 &fw->data[readcount];
Daniel Vettereb805622015-05-04 14:58:44 +0200331 if (sizeof(struct intel_package_header) !=
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200332 (package_header->header_len * 4)) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000333 DRM_ERROR("DMC firmware has wrong package header length "
334 "(%u bytes)\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200335 (package_header->header_len * 4));
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200336 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200337 }
338 readcount += sizeof(struct intel_package_header);
339
340 /* Search for dmc_offset to find firware binary. */
341 for (i = 0; i < package_header->num_entries; i++) {
342 if (package_header->fw_info[i].substepping == '*' &&
Chris Wilson1bb43082016-03-07 12:05:57 +0000343 si->stepping == package_header->fw_info[i].stepping) {
Daniel Vettereb805622015-05-04 14:58:44 +0200344 dmc_offset = package_header->fw_info[i].offset;
345 break;
Chris Wilson1bb43082016-03-07 12:05:57 +0000346 } else if (si->stepping == package_header->fw_info[i].stepping &&
347 si->substepping == package_header->fw_info[i].substepping) {
Daniel Vettereb805622015-05-04 14:58:44 +0200348 dmc_offset = package_header->fw_info[i].offset;
349 break;
350 } else if (package_header->fw_info[i].stepping == '*' &&
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200351 package_header->fw_info[i].substepping == '*')
Daniel Vettereb805622015-05-04 14:58:44 +0200352 dmc_offset = package_header->fw_info[i].offset;
353 }
354 if (dmc_offset == CSR_DEFAULT_FW_OFFSET) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000355 DRM_ERROR("DMC firmware not supported for %c stepping\n",
Chris Wilson1bb43082016-03-07 12:05:57 +0000356 si->stepping);
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200357 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200358 }
359 readcount += dmc_offset;
360
361 /* Extract dmc_header information. */
362 dmc_header = (struct intel_dmc_header *)&fw->data[readcount];
363 if (sizeof(struct intel_dmc_header) != (dmc_header->header_len)) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000364 DRM_ERROR("DMC firmware has wrong dmc header length "
365 "(%u bytes)\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200366 (dmc_header->header_len));
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200367 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200368 }
369 readcount += sizeof(struct intel_dmc_header);
370
371 /* Cache the dmc header info. */
372 if (dmc_header->mmio_count > ARRAY_SIZE(csr->mmioaddr)) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000373 DRM_ERROR("DMC firmware has wrong mmio count %u\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200374 dmc_header->mmio_count);
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200375 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200376 }
377 csr->mmio_count = dmc_header->mmio_count;
378 for (i = 0; i < dmc_header->mmio_count; i++) {
Takashi Iwai982b0b22015-09-09 16:52:09 +0200379 if (dmc_header->mmioaddr[i] < CSR_MMIO_START_RANGE ||
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200380 dmc_header->mmioaddr[i] > CSR_MMIO_END_RANGE) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000381 DRM_ERROR("DMC firmware has wrong mmio address 0x%x\n",
Daniel Vetterf98f70d2015-10-28 23:58:59 +0200382 dmc_header->mmioaddr[i]);
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200383 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200384 }
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200385 csr->mmioaddr[i] = _MMIO(dmc_header->mmioaddr[i]);
Daniel Vettereb805622015-05-04 14:58:44 +0200386 csr->mmiodata[i] = dmc_header->mmiodata[i];
387 }
388
389 /* fw_size is in dwords, so multiplied by 4 to convert into bytes. */
390 nbytes = dmc_header->fw_size * 4;
391 if (nbytes > CSR_MAX_FW_SIZE) {
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000392 DRM_ERROR("DMC firmware too big (%u bytes)\n", nbytes);
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200393 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200394 }
395 csr->dmc_fw_size = dmc_header->fw_size;
396
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200397 dmc_payload = kmalloc(nbytes, GFP_KERNEL);
398 if (!dmc_payload) {
Daniel Vettereb805622015-05-04 14:58:44 +0200399 DRM_ERROR("Memory allocation failed for dmc payload\n");
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200400 return NULL;
Daniel Vettereb805622015-05-04 14:58:44 +0200401 }
402
Chris Wilson1bb43082016-03-07 12:05:57 +0000403 return memcpy(dmc_payload, &fw->data[readcount], nbytes);
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200404}
405
Daniel Vetter8144ac52015-10-28 23:59:04 +0200406static void csr_load_work_fn(struct work_struct *work)
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200407{
Daniel Vetter8144ac52015-10-28 23:59:04 +0200408 struct drm_i915_private *dev_priv;
409 struct intel_csr *csr;
Jérémy Lefaure3aaa8ab2016-11-28 18:43:19 -0500410 const struct firmware *fw = NULL;
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200411
Daniel Vetter8144ac52015-10-28 23:59:04 +0200412 dev_priv = container_of(work, typeof(*dev_priv), csr.work);
413 csr = &dev_priv->csr;
414
Chris Wilsonec788282017-01-18 12:18:08 +0000415 request_firmware(&fw, dev_priv->csr.fw_path, &dev_priv->drm.pdev->dev);
Imre Deak2abc5252016-03-04 21:57:41 +0200416 if (fw)
417 dev_priv->csr.dmc_payload = parse_csr_fw(dev_priv, fw);
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200418
Daniel Vetter6a6582b2015-11-12 17:11:29 +0200419 if (dev_priv->csr.dmc_payload) {
Imre Deak2abc5252016-03-04 21:57:41 +0200420 intel_csr_load_program(dev_priv);
421
Daniel Vetter01a69082015-10-28 23:58:56 +0200422 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200423
Mika Kuoppalab2251c02016-11-16 11:33:26 +0200424 DRM_INFO("Finished loading DMC firmware %s (v%u.%u)\n",
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200425 dev_priv->csr.fw_path,
426 CSR_VERSION_MAJOR(csr->version),
427 CSR_VERSION_MINOR(csr->version));
428 } else {
Chris Wilson91c8a322016-07-05 10:40:23 +0100429 dev_notice(dev_priv->drm.dev,
Michal Wajdeczkof1e86ce2017-10-16 14:47:20 +0000430 "Failed to load DMC firmware %s."
431 " Disabling runtime power management.\n",
432 csr->fw_path);
433 dev_notice(dev_priv->drm.dev, "DMC firmware homepage: %s",
434 INTEL_UC_FIRMWARE_URL);
Mika Kuoppala9c5308e2015-10-30 17:52:16 +0200435 }
436
Daniel Vettereb805622015-05-04 14:58:44 +0200437 release_firmware(fw);
438}
439
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530440/**
441 * intel_csr_ucode_init() - initialize the firmware loading.
Daniel Vetterf4448372015-10-28 23:59:02 +0200442 * @dev_priv: i915 drm device.
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530443 *
444 * This function is called at the time of loading the display driver to read
445 * firmware from a .bin file and copied into a internal memory.
446 */
Daniel Vetterf4448372015-10-28 23:59:02 +0200447void intel_csr_ucode_init(struct drm_i915_private *dev_priv)
Daniel Vettereb805622015-05-04 14:58:44 +0200448{
Daniel Vettereb805622015-05-04 14:58:44 +0200449 struct intel_csr *csr = &dev_priv->csr;
Daniel Vetter8144ac52015-10-28 23:59:04 +0200450
451 INIT_WORK(&dev_priv->csr.work, csr_load_work_fn);
Daniel Vettereb805622015-05-04 14:58:44 +0200452
Daniel Vetterf4448372015-10-28 23:59:02 +0200453 if (!HAS_CSR(dev_priv))
Daniel Vettereb805622015-05-04 14:58:44 +0200454 return;
455
Anusha Srivatsacebfcea2017-06-09 15:26:10 -0700456 if (IS_CANNONLAKE(dev_priv))
457 csr->fw_path = I915_CSR_CNL;
458 else if (IS_GEMINILAKE(dev_priv))
Anusha Srivatsadbb28b52016-12-16 17:42:24 +0200459 csr->fw_path = I915_CSR_GLK;
Rodrigo Vivi84cd8432017-06-09 13:02:30 -0700460 else if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv))
Rodrigo Vivi4922d492016-04-26 14:59:51 -0700461 csr->fw_path = I915_CSR_KBL;
462 else if (IS_SKYLAKE(dev_priv))
Daniel Vettereb805622015-05-04 14:58:44 +0200463 csr->fw_path = I915_CSR_SKL;
Animesh Manna18c237c2015-08-04 22:02:41 +0530464 else if (IS_BROXTON(dev_priv))
465 csr->fw_path = I915_CSR_BXT;
Daniel Vettereb805622015-05-04 14:58:44 +0200466 else {
467 DRM_ERROR("Unexpected: no known CSR firmware for platform\n");
468 return;
469 }
470
Damien Lespiauabd41dc2015-06-04 16:42:16 +0100471 DRM_DEBUG_KMS("Loading %s\n", csr->fw_path);
472
Suketu Shahdc174302015-04-17 19:46:16 +0530473 /*
474 * Obtain a runtime pm reference, until CSR is loaded,
475 * to avoid entering runtime-suspend.
476 */
Daniel Vetter01a69082015-10-28 23:58:56 +0200477 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
Suketu Shahdc174302015-04-17 19:46:16 +0530478
Daniel Vetter8144ac52015-10-28 23:59:04 +0200479 schedule_work(&dev_priv->csr.work);
Daniel Vettereb805622015-05-04 14:58:44 +0200480}
481
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530482/**
Imre Deakf74ed082016-04-18 14:48:21 +0300483 * intel_csr_ucode_suspend() - prepare CSR firmware before system suspend
484 * @dev_priv: i915 drm device
485 *
486 * Prepare the DMC firmware before entering system suspend. This includes
487 * flushing pending work items and releasing any resources acquired during
488 * init.
489 */
490void intel_csr_ucode_suspend(struct drm_i915_private *dev_priv)
491{
492 if (!HAS_CSR(dev_priv))
493 return;
494
495 flush_work(&dev_priv->csr.work);
496
497 /* Drop the reference held in case DMC isn't loaded. */
498 if (!dev_priv->csr.dmc_payload)
499 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
500}
501
502/**
503 * intel_csr_ucode_resume() - init CSR firmware during system resume
504 * @dev_priv: i915 drm device
505 *
506 * Reinitialize the DMC firmware during system resume, reacquiring any
507 * resources released in intel_csr_ucode_suspend().
508 */
509void intel_csr_ucode_resume(struct drm_i915_private *dev_priv)
510{
511 if (!HAS_CSR(dev_priv))
512 return;
513
514 /*
515 * Reacquire the reference to keep RPM disabled in case DMC isn't
516 * loaded.
517 */
518 if (!dev_priv->csr.dmc_payload)
519 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
520}
521
522/**
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530523 * intel_csr_ucode_fini() - unload the CSR firmware.
Daniel Vetterf4448372015-10-28 23:59:02 +0200524 * @dev_priv: i915 drm device.
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530525 *
Imre Deakf74ed082016-04-18 14:48:21 +0300526 * Firmmware unloading includes freeing the internal memory and reset the
Animesh Mannaaa9145c2015-05-13 22:13:29 +0530527 * firmware loading status.
528 */
Daniel Vetterf4448372015-10-28 23:59:02 +0200529void intel_csr_ucode_fini(struct drm_i915_private *dev_priv)
Daniel Vettereb805622015-05-04 14:58:44 +0200530{
Daniel Vetterf4448372015-10-28 23:59:02 +0200531 if (!HAS_CSR(dev_priv))
Daniel Vettereb805622015-05-04 14:58:44 +0200532 return;
533
Imre Deakf74ed082016-04-18 14:48:21 +0300534 intel_csr_ucode_suspend(dev_priv);
Animesh Manna15e72c12015-10-28 23:59:05 +0200535
Daniel Vettereb805622015-05-04 14:58:44 +0200536 kfree(dev_priv->csr.dmc_payload);
537}