blob: 7e6e70054d6ae5450cb38e1ced9e84f60e38335a [file] [log] [blame]
Eugeni Dodonov85208be2012-04-16 22:20:34 -03001/*
2 * Copyright © 2012 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 * Authors:
24 * Eugeni Dodonov <eugeni.dodonov@intel.com>
25 *
26 */
27
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -030028#include <linux/cpufreq.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030029#include "i915_drv.h"
30#include "intel_drv.h"
Daniel Vettereb48eb02012-04-26 23:28:12 +020031#include "../../../platform/x86/intel_ips.h"
32#include <linux/module.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030033
Ben Widawskydc39fff2013-10-18 12:32:07 -070034/**
35 * RC6 is a special power stage which allows the GPU to enter an very
36 * low-voltage mode when idle, using down to 0V while at this stage. This
37 * stage is entered automatically when the GPU is idle when RC6 support is
38 * enabled, and as soon as new workload arises GPU wakes up automatically as well.
39 *
40 * There are different RC6 modes available in Intel GPU, which differentiate
41 * among each other with the latency required to enter and leave RC6 and
42 * voltage consumed by the GPU in different states.
43 *
44 * The combination of the following flags define which states GPU is allowed
45 * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
46 * RC6pp is deepest RC6. Their support by hardware varies according to the
47 * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
48 * which brings the most power savings; deeper states save more power, but
49 * require higher latency to switch to and wake up.
50 */
51#define INTEL_RC6_ENABLE (1<<0)
52#define INTEL_RC6p_ENABLE (1<<1)
53#define INTEL_RC6pp_ENABLE (1<<2)
54
Imre Deaka82abe42015-03-27 14:00:04 +020055static void bxt_init_clock_gating(struct drm_device *dev)
56{
Imre Deak32608ca2015-03-11 11:10:27 +020057 struct drm_i915_private *dev_priv = dev->dev_private;
58
Nick Hoatha7546152015-06-29 14:07:32 +010059 /* WaDisableSDEUnitClockGating:bxt */
60 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
61 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
62
Imre Deak32608ca2015-03-11 11:10:27 +020063 /*
64 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +020065 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +020066 */
Imre Deak32608ca2015-03-11 11:10:27 +020067 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +020068 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7a2015-12-01 10:23:52 +020069
70 /*
71 * Wa: Backlight PWM may stop in the asserted state, causing backlight
72 * to stay fully on.
73 */
74 if (IS_BXT_REVID(dev_priv, BXT_REVID_B0, REVID_FOREVER))
75 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
76 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +020077}
78
Daniel Vetterc921aba2012-04-26 23:28:17 +020079static void i915_pineview_get_mem_freq(struct drm_device *dev)
80{
Jani Nikula50227e12014-03-31 14:27:21 +030081 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +020082 u32 tmp;
83
84 tmp = I915_READ(CLKCFG);
85
86 switch (tmp & CLKCFG_FSB_MASK) {
87 case CLKCFG_FSB_533:
88 dev_priv->fsb_freq = 533; /* 133*4 */
89 break;
90 case CLKCFG_FSB_800:
91 dev_priv->fsb_freq = 800; /* 200*4 */
92 break;
93 case CLKCFG_FSB_667:
94 dev_priv->fsb_freq = 667; /* 167*4 */
95 break;
96 case CLKCFG_FSB_400:
97 dev_priv->fsb_freq = 400; /* 100*4 */
98 break;
99 }
100
101 switch (tmp & CLKCFG_MEM_MASK) {
102 case CLKCFG_MEM_533:
103 dev_priv->mem_freq = 533;
104 break;
105 case CLKCFG_MEM_667:
106 dev_priv->mem_freq = 667;
107 break;
108 case CLKCFG_MEM_800:
109 dev_priv->mem_freq = 800;
110 break;
111 }
112
113 /* detect pineview DDR3 setting */
114 tmp = I915_READ(CSHRDDR3CTL);
115 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
116}
117
118static void i915_ironlake_get_mem_freq(struct drm_device *dev)
119{
Jani Nikula50227e12014-03-31 14:27:21 +0300120 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200121 u16 ddrpll, csipll;
122
123 ddrpll = I915_READ16(DDRMPLL1);
124 csipll = I915_READ16(CSIPLL0);
125
126 switch (ddrpll & 0xff) {
127 case 0xc:
128 dev_priv->mem_freq = 800;
129 break;
130 case 0x10:
131 dev_priv->mem_freq = 1066;
132 break;
133 case 0x14:
134 dev_priv->mem_freq = 1333;
135 break;
136 case 0x18:
137 dev_priv->mem_freq = 1600;
138 break;
139 default:
140 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
141 ddrpll & 0xff);
142 dev_priv->mem_freq = 0;
143 break;
144 }
145
Daniel Vetter20e4d402012-08-08 23:35:39 +0200146 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200147
148 switch (csipll & 0x3ff) {
149 case 0x00c:
150 dev_priv->fsb_freq = 3200;
151 break;
152 case 0x00e:
153 dev_priv->fsb_freq = 3733;
154 break;
155 case 0x010:
156 dev_priv->fsb_freq = 4266;
157 break;
158 case 0x012:
159 dev_priv->fsb_freq = 4800;
160 break;
161 case 0x014:
162 dev_priv->fsb_freq = 5333;
163 break;
164 case 0x016:
165 dev_priv->fsb_freq = 5866;
166 break;
167 case 0x018:
168 dev_priv->fsb_freq = 6400;
169 break;
170 default:
171 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
172 csipll & 0x3ff);
173 dev_priv->fsb_freq = 0;
174 break;
175 }
176
177 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200178 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200179 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200180 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200181 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200182 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200183 }
184}
185
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300186static const struct cxsr_latency cxsr_latency_table[] = {
187 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
188 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
189 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
190 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
191 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
192
193 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
194 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
195 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
196 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
197 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
198
199 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
200 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
201 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
202 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
203 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
204
205 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
206 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
207 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
208 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
209 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
210
211 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
212 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
213 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
214 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
215 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
216
217 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
218 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
219 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
220 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
221 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
222};
223
Daniel Vetter63c62272012-04-21 23:17:55 +0200224static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300225 int is_ddr3,
226 int fsb,
227 int mem)
228{
229 const struct cxsr_latency *latency;
230 int i;
231
232 if (fsb == 0 || mem == 0)
233 return NULL;
234
235 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
236 latency = &cxsr_latency_table[i];
237 if (is_desktop == latency->is_desktop &&
238 is_ddr3 == latency->is_ddr3 &&
239 fsb == latency->fsb_freq && mem == latency->mem_freq)
240 return latency;
241 }
242
243 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
244
245 return NULL;
246}
247
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200248static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
249{
250 u32 val;
251
252 mutex_lock(&dev_priv->rps.hw_lock);
253
254 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
255 if (enable)
256 val &= ~FORCE_DDR_HIGH_FREQ;
257 else
258 val |= FORCE_DDR_HIGH_FREQ;
259 val &= ~FORCE_DDR_LOW_FREQ;
260 val |= FORCE_DDR_FREQ_REQ_ACK;
261 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
262
263 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
264 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
265 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
266
267 mutex_unlock(&dev_priv->rps.hw_lock);
268}
269
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200270static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
271{
272 u32 val;
273
274 mutex_lock(&dev_priv->rps.hw_lock);
275
276 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
277 if (enable)
278 val |= DSP_MAXFIFO_PM5_ENABLE;
279 else
280 val &= ~DSP_MAXFIFO_PM5_ENABLE;
281 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
282
283 mutex_unlock(&dev_priv->rps.hw_lock);
284}
285
Ville Syrjäläf4998962015-03-10 17:02:21 +0200286#define FW_WM(value, plane) \
287 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
288
Imre Deak5209b1f2014-07-01 12:36:17 +0300289void intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300290{
Imre Deak5209b1f2014-07-01 12:36:17 +0300291 struct drm_device *dev = dev_priv->dev;
292 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300293
Wayne Boyer666a4532015-12-09 12:29:35 -0800294 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Imre Deak5209b1f2014-07-01 12:36:17 +0300295 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300296 POSTING_READ(FW_BLC_SELF_VLV);
Ville Syrjälä852eb002015-06-24 22:00:07 +0300297 dev_priv->wm.vlv.cxsr = enable;
Imre Deak5209b1f2014-07-01 12:36:17 +0300298 } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) {
299 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300300 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300301 } else if (IS_PINEVIEW(dev)) {
302 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
303 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
304 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300305 POSTING_READ(DSPFW3);
Imre Deak5209b1f2014-07-01 12:36:17 +0300306 } else if (IS_I945G(dev) || IS_I945GM(dev)) {
307 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
308 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
309 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300310 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300311 } else if (IS_I915GM(dev)) {
312 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
313 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
314 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300315 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300316 } else {
317 return;
318 }
319
320 DRM_DEBUG_KMS("memory self-refresh is %s\n",
321 enable ? "enabled" : "disabled");
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300322}
323
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200324
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300325/*
326 * Latency for FIFO fetches is dependent on several factors:
327 * - memory configuration (speed, channels)
328 * - chipset
329 * - current MCH state
330 * It can be fairly high in some situations, so here we assume a fairly
331 * pessimal value. It's a tradeoff between extra memory fetches (if we
332 * set this value too high, the FIFO will fetch frequently to stay full)
333 * and power consumption (set it too low to save power and we might see
334 * FIFO underruns and display "flicker").
335 *
336 * A value of 5us seems to be a good balance; safe for very low end
337 * platforms but not overly aggressive on lower latency configs.
338 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100339static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300340
Ville Syrjäläb5004722015-03-05 21:19:47 +0200341#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
342 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
343
344static int vlv_get_fifo_size(struct drm_device *dev,
345 enum pipe pipe, int plane)
346{
347 struct drm_i915_private *dev_priv = dev->dev_private;
348 int sprite0_start, sprite1_start, size;
349
350 switch (pipe) {
351 uint32_t dsparb, dsparb2, dsparb3;
352 case PIPE_A:
353 dsparb = I915_READ(DSPARB);
354 dsparb2 = I915_READ(DSPARB2);
355 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
356 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
357 break;
358 case PIPE_B:
359 dsparb = I915_READ(DSPARB);
360 dsparb2 = I915_READ(DSPARB2);
361 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
362 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
363 break;
364 case PIPE_C:
365 dsparb2 = I915_READ(DSPARB2);
366 dsparb3 = I915_READ(DSPARB3);
367 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
368 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
369 break;
370 default:
371 return 0;
372 }
373
374 switch (plane) {
375 case 0:
376 size = sprite0_start;
377 break;
378 case 1:
379 size = sprite1_start - sprite0_start;
380 break;
381 case 2:
382 size = 512 - 1 - sprite1_start;
383 break;
384 default:
385 return 0;
386 }
387
388 DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n",
389 pipe_name(pipe), plane == 0 ? "primary" : "sprite",
390 plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1),
391 size);
392
393 return size;
394}
395
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300396static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300397{
398 struct drm_i915_private *dev_priv = dev->dev_private;
399 uint32_t dsparb = I915_READ(DSPARB);
400 int size;
401
402 size = dsparb & 0x7f;
403 if (plane)
404 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
405
406 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
407 plane ? "B" : "A", size);
408
409 return size;
410}
411
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200412static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300413{
414 struct drm_i915_private *dev_priv = dev->dev_private;
415 uint32_t dsparb = I915_READ(DSPARB);
416 int size;
417
418 size = dsparb & 0x1ff;
419 if (plane)
420 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
421 size >>= 1; /* Convert to cachelines */
422
423 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
424 plane ? "B" : "A", size);
425
426 return size;
427}
428
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300429static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300430{
431 struct drm_i915_private *dev_priv = dev->dev_private;
432 uint32_t dsparb = I915_READ(DSPARB);
433 int size;
434
435 size = dsparb & 0x7f;
436 size >>= 2; /* Convert to cachelines */
437
438 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
439 plane ? "B" : "A",
440 size);
441
442 return size;
443}
444
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300445/* Pineview has different values for various configs */
446static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300447 .fifo_size = PINEVIEW_DISPLAY_FIFO,
448 .max_wm = PINEVIEW_MAX_WM,
449 .default_wm = PINEVIEW_DFT_WM,
450 .guard_size = PINEVIEW_GUARD_WM,
451 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300452};
453static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300454 .fifo_size = PINEVIEW_DISPLAY_FIFO,
455 .max_wm = PINEVIEW_MAX_WM,
456 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
457 .guard_size = PINEVIEW_GUARD_WM,
458 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300459};
460static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300461 .fifo_size = PINEVIEW_CURSOR_FIFO,
462 .max_wm = PINEVIEW_CURSOR_MAX_WM,
463 .default_wm = PINEVIEW_CURSOR_DFT_WM,
464 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
465 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300466};
467static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300468 .fifo_size = PINEVIEW_CURSOR_FIFO,
469 .max_wm = PINEVIEW_CURSOR_MAX_WM,
470 .default_wm = PINEVIEW_CURSOR_DFT_WM,
471 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
472 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300473};
474static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300475 .fifo_size = G4X_FIFO_SIZE,
476 .max_wm = G4X_MAX_WM,
477 .default_wm = G4X_MAX_WM,
478 .guard_size = 2,
479 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300480};
481static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300482 .fifo_size = I965_CURSOR_FIFO,
483 .max_wm = I965_CURSOR_MAX_WM,
484 .default_wm = I965_CURSOR_DFT_WM,
485 .guard_size = 2,
486 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300487};
488static const struct intel_watermark_params valleyview_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300489 .fifo_size = VALLEYVIEW_FIFO_SIZE,
490 .max_wm = VALLEYVIEW_MAX_WM,
491 .default_wm = VALLEYVIEW_MAX_WM,
492 .guard_size = 2,
493 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300494};
495static const struct intel_watermark_params valleyview_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300496 .fifo_size = I965_CURSOR_FIFO,
497 .max_wm = VALLEYVIEW_CURSOR_MAX_WM,
498 .default_wm = I965_CURSOR_DFT_WM,
499 .guard_size = 2,
500 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300501};
502static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300503 .fifo_size = I965_CURSOR_FIFO,
504 .max_wm = I965_CURSOR_MAX_WM,
505 .default_wm = I965_CURSOR_DFT_WM,
506 .guard_size = 2,
507 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300508};
509static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300510 .fifo_size = I945_FIFO_SIZE,
511 .max_wm = I915_MAX_WM,
512 .default_wm = 1,
513 .guard_size = 2,
514 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300515};
516static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300517 .fifo_size = I915_FIFO_SIZE,
518 .max_wm = I915_MAX_WM,
519 .default_wm = 1,
520 .guard_size = 2,
521 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300522};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300523static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300524 .fifo_size = I855GM_FIFO_SIZE,
525 .max_wm = I915_MAX_WM,
526 .default_wm = 1,
527 .guard_size = 2,
528 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300529};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300530static const struct intel_watermark_params i830_bc_wm_info = {
531 .fifo_size = I855GM_FIFO_SIZE,
532 .max_wm = I915_MAX_WM/2,
533 .default_wm = 1,
534 .guard_size = 2,
535 .cacheline_size = I830_FIFO_LINE_SIZE,
536};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200537static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300538 .fifo_size = I830_FIFO_SIZE,
539 .max_wm = I915_MAX_WM,
540 .default_wm = 1,
541 .guard_size = 2,
542 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300543};
544
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300545/**
546 * intel_calculate_wm - calculate watermark level
547 * @clock_in_khz: pixel clock
548 * @wm: chip FIFO params
549 * @pixel_size: display pixel size
550 * @latency_ns: memory latency for the platform
551 *
552 * Calculate the watermark level (the level at which the display plane will
553 * start fetching from memory again). Each chip has a different display
554 * FIFO size and allocation, so the caller needs to figure that out and pass
555 * in the correct intel_watermark_params structure.
556 *
557 * As the pixel clock runs, the FIFO will be drained at a rate that depends
558 * on the pixel size. When it reaches the watermark level, it'll start
559 * fetching FIFO line sized based chunks from memory until the FIFO fills
560 * past the watermark point. If the FIFO drains completely, a FIFO underrun
561 * will occur, and a display engine hang could result.
562 */
563static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
564 const struct intel_watermark_params *wm,
565 int fifo_size,
566 int pixel_size,
567 unsigned long latency_ns)
568{
569 long entries_required, wm_size;
570
571 /*
572 * Note: we need to make sure we don't overflow for various clock &
573 * latency values.
574 * clocks go from a few thousand to several hundred thousand.
575 * latency is usually a few thousand
576 */
577 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
578 1000;
579 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
580
581 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
582
583 wm_size = fifo_size - (entries_required + wm->guard_size);
584
585 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
586
587 /* Don't promote wm_size to unsigned... */
588 if (wm_size > (long)wm->max_wm)
589 wm_size = wm->max_wm;
590 if (wm_size <= 0)
591 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300592
593 /*
594 * Bspec seems to indicate that the value shouldn't be lower than
595 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
596 * Lets go for 8 which is the burst size since certain platforms
597 * already use a hardcoded 8 (which is what the spec says should be
598 * done).
599 */
600 if (wm_size <= 8)
601 wm_size = 8;
602
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300603 return wm_size;
604}
605
606static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
607{
608 struct drm_crtc *crtc, *enabled = NULL;
609
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100610 for_each_crtc(dev, crtc) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000611 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300612 if (enabled)
613 return NULL;
614 enabled = crtc;
615 }
616 }
617
618 return enabled;
619}
620
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300621static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300622{
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300623 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300624 struct drm_i915_private *dev_priv = dev->dev_private;
625 struct drm_crtc *crtc;
626 const struct cxsr_latency *latency;
627 u32 reg;
628 unsigned long wm;
629
630 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
631 dev_priv->fsb_freq, dev_priv->mem_freq);
632 if (!latency) {
633 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300634 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300635 return;
636 }
637
638 crtc = single_enabled_crtc(dev);
639 if (crtc) {
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300640 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -0800641 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300642 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300643
644 /* Display SR */
645 wm = intel_calculate_wm(clock, &pineview_display_wm,
646 pineview_display_wm.fifo_size,
647 pixel_size, latency->display_sr);
648 reg = I915_READ(DSPFW1);
649 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200650 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300651 I915_WRITE(DSPFW1, reg);
652 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
653
654 /* cursor SR */
655 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
656 pineview_display_wm.fifo_size,
657 pixel_size, latency->cursor_sr);
658 reg = I915_READ(DSPFW3);
659 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200660 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300661 I915_WRITE(DSPFW3, reg);
662
663 /* Display HPLL off SR */
664 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
665 pineview_display_hplloff_wm.fifo_size,
666 pixel_size, latency->display_hpll_disable);
667 reg = I915_READ(DSPFW3);
668 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200669 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300670 I915_WRITE(DSPFW3, reg);
671
672 /* cursor HPLL off SR */
673 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
674 pineview_display_hplloff_wm.fifo_size,
675 pixel_size, latency->cursor_hpll_disable);
676 reg = I915_READ(DSPFW3);
677 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200678 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300679 I915_WRITE(DSPFW3, reg);
680 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
681
Imre Deak5209b1f2014-07-01 12:36:17 +0300682 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300683 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300684 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300685 }
686}
687
688static bool g4x_compute_wm0(struct drm_device *dev,
689 int plane,
690 const struct intel_watermark_params *display,
691 int display_latency_ns,
692 const struct intel_watermark_params *cursor,
693 int cursor_latency_ns,
694 int *plane_wm,
695 int *cursor_wm)
696{
697 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300698 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300699 int htotal, hdisplay, clock, pixel_size;
700 int line_time_us, line_count;
701 int entries, tlb_miss;
702
703 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +0000704 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300705 *cursor_wm = cursor->guard_size;
706 *plane_wm = display->guard_size;
707 return false;
708 }
709
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200710 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100711 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800712 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200713 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800714 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300715
716 /* Use the small buffer method to calculate plane watermark */
717 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
718 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
719 if (tlb_miss > 0)
720 entries += tlb_miss;
721 entries = DIV_ROUND_UP(entries, display->cacheline_size);
722 *plane_wm = entries + display->guard_size;
723 if (*plane_wm > (int)display->max_wm)
724 *plane_wm = display->max_wm;
725
726 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200727 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300728 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Matt Roper3dd512f2015-02-27 10:12:00 -0800729 entries = line_count * crtc->cursor->state->crtc_w * pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300730 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
731 if (tlb_miss > 0)
732 entries += tlb_miss;
733 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
734 *cursor_wm = entries + cursor->guard_size;
735 if (*cursor_wm > (int)cursor->max_wm)
736 *cursor_wm = (int)cursor->max_wm;
737
738 return true;
739}
740
741/*
742 * Check the wm result.
743 *
744 * If any calculated watermark values is larger than the maximum value that
745 * can be programmed into the associated watermark register, that watermark
746 * must be disabled.
747 */
748static bool g4x_check_srwm(struct drm_device *dev,
749 int display_wm, int cursor_wm,
750 const struct intel_watermark_params *display,
751 const struct intel_watermark_params *cursor)
752{
753 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
754 display_wm, cursor_wm);
755
756 if (display_wm > display->max_wm) {
757 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
758 display_wm, display->max_wm);
759 return false;
760 }
761
762 if (cursor_wm > cursor->max_wm) {
763 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
764 cursor_wm, cursor->max_wm);
765 return false;
766 }
767
768 if (!(display_wm || cursor_wm)) {
769 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
770 return false;
771 }
772
773 return true;
774}
775
776static bool g4x_compute_srwm(struct drm_device *dev,
777 int plane,
778 int latency_ns,
779 const struct intel_watermark_params *display,
780 const struct intel_watermark_params *cursor,
781 int *display_wm, int *cursor_wm)
782{
783 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300784 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300785 int hdisplay, htotal, pixel_size, clock;
786 unsigned long line_time_us;
787 int line_count, line_size;
788 int small, large;
789 int entries;
790
791 if (!latency_ns) {
792 *display_wm = *cursor_wm = 0;
793 return false;
794 }
795
796 crtc = intel_get_crtc_for_plane(dev, plane);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200797 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100798 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800799 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200800 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800801 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300802
Ville Syrjälä922044c2014-02-14 14:18:57 +0200803 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300804 line_count = (latency_ns / line_time_us + 1000) / 1000;
805 line_size = hdisplay * pixel_size;
806
807 /* Use the minimum of the small and large buffer method for primary */
808 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
809 large = line_count * line_size;
810
811 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
812 *display_wm = entries + display->guard_size;
813
814 /* calculate the self-refresh watermark for display cursor */
Matt Roper3dd512f2015-02-27 10:12:00 -0800815 entries = line_count * pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300816 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
817 *cursor_wm = entries + cursor->guard_size;
818
819 return g4x_check_srwm(dev,
820 *display_wm, *cursor_wm,
821 display, cursor);
822}
823
Ville Syrjälä15665972015-03-10 16:16:28 +0200824#define FW_WM_VLV(value, plane) \
825 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
826
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200827static void vlv_write_wm_values(struct intel_crtc *crtc,
828 const struct vlv_wm_values *wm)
829{
830 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
831 enum pipe pipe = crtc->pipe;
832
833 I915_WRITE(VLV_DDL(pipe),
834 (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) |
835 (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) |
836 (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) |
837 (wm->ddl[pipe].primary << DDL_PLANE_SHIFT));
838
Ville Syrjäläae801522015-03-05 21:19:49 +0200839 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200840 FW_WM(wm->sr.plane, SR) |
841 FW_WM(wm->pipe[PIPE_B].cursor, CURSORB) |
842 FW_WM_VLV(wm->pipe[PIPE_B].primary, PLANEB) |
843 FW_WM_VLV(wm->pipe[PIPE_A].primary, PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200844 I915_WRITE(DSPFW2,
Ville Syrjälä15665972015-03-10 16:16:28 +0200845 FW_WM_VLV(wm->pipe[PIPE_A].sprite[1], SPRITEB) |
846 FW_WM(wm->pipe[PIPE_A].cursor, CURSORA) |
847 FW_WM_VLV(wm->pipe[PIPE_A].sprite[0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200848 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200849 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200850
851 if (IS_CHERRYVIEW(dev_priv)) {
852 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200853 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
854 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200855 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200856 FW_WM_VLV(wm->pipe[PIPE_C].sprite[1], SPRITEF) |
857 FW_WM_VLV(wm->pipe[PIPE_C].sprite[0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200858 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200859 FW_WM_VLV(wm->pipe[PIPE_C].primary, PLANEC) |
860 FW_WM(wm->pipe[PIPE_C].cursor, CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200861 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200862 FW_WM(wm->sr.plane >> 9, SR_HI) |
863 FW_WM(wm->pipe[PIPE_C].sprite[1] >> 8, SPRITEF_HI) |
864 FW_WM(wm->pipe[PIPE_C].sprite[0] >> 8, SPRITEE_HI) |
865 FW_WM(wm->pipe[PIPE_C].primary >> 8, PLANEC_HI) |
866 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
867 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
868 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
869 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
870 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
871 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200872 } else {
873 I915_WRITE(DSPFW7,
Ville Syrjälä15665972015-03-10 16:16:28 +0200874 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
875 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200876 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200877 FW_WM(wm->sr.plane >> 9, SR_HI) |
878 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
879 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
880 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
881 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
882 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
883 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200884 }
885
Ville Syrjälä2cb389b2015-06-24 22:00:10 +0300886 /* zero (unused) WM1 watermarks */
887 I915_WRITE(DSPFW4, 0);
888 I915_WRITE(DSPFW5, 0);
889 I915_WRITE(DSPFW6, 0);
890 I915_WRITE(DSPHOWM1, 0);
891
Ville Syrjäläae801522015-03-05 21:19:49 +0200892 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200893}
894
Ville Syrjälä15665972015-03-10 16:16:28 +0200895#undef FW_WM_VLV
896
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300897enum vlv_wm_level {
898 VLV_WM_LEVEL_PM2,
899 VLV_WM_LEVEL_PM5,
900 VLV_WM_LEVEL_DDR_DVFS,
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300901};
902
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300903/* latency must be in 0.1us units. */
904static unsigned int vlv_wm_method2(unsigned int pixel_rate,
905 unsigned int pipe_htotal,
906 unsigned int horiz_pixels,
907 unsigned int bytes_per_pixel,
908 unsigned int latency)
909{
910 unsigned int ret;
911
912 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
913 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
914 ret = DIV_ROUND_UP(ret, 64);
915
916 return ret;
917}
918
919static void vlv_setup_wm_latency(struct drm_device *dev)
920{
921 struct drm_i915_private *dev_priv = dev->dev_private;
922
923 /* all latencies in usec */
924 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
925
Ville Syrjälä58590c12015-09-08 21:05:12 +0300926 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
927
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300928 if (IS_CHERRYVIEW(dev_priv)) {
929 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
930 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300931
932 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300933 }
934}
935
936static uint16_t vlv_compute_wm_level(struct intel_plane *plane,
937 struct intel_crtc *crtc,
938 const struct intel_plane_state *state,
939 int level)
940{
941 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
942 int clock, htotal, pixel_size, width, wm;
943
944 if (dev_priv->wm.pri_latency[level] == 0)
945 return USHRT_MAX;
946
947 if (!state->visible)
948 return 0;
949
950 pixel_size = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
951 clock = crtc->config->base.adjusted_mode.crtc_clock;
952 htotal = crtc->config->base.adjusted_mode.crtc_htotal;
953 width = crtc->config->pipe_src_w;
954 if (WARN_ON(htotal == 0))
955 htotal = 1;
956
957 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
958 /*
959 * FIXME the formula gives values that are
960 * too big for the cursor FIFO, and hence we
961 * would never be able to use cursors. For
962 * now just hardcode the watermark.
963 */
964 wm = 63;
965 } else {
966 wm = vlv_wm_method2(clock, htotal, width, pixel_size,
967 dev_priv->wm.pri_latency[level] * 10);
968 }
969
970 return min_t(int, wm, USHRT_MAX);
971}
972
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +0300973static void vlv_compute_fifo(struct intel_crtc *crtc)
974{
975 struct drm_device *dev = crtc->base.dev;
976 struct vlv_wm_state *wm_state = &crtc->wm_state;
977 struct intel_plane *plane;
978 unsigned int total_rate = 0;
979 const int fifo_size = 512 - 1;
980 int fifo_extra, fifo_left = fifo_size;
981
982 for_each_intel_plane_on_crtc(dev, crtc, plane) {
983 struct intel_plane_state *state =
984 to_intel_plane_state(plane->base.state);
985
986 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
987 continue;
988
989 if (state->visible) {
990 wm_state->num_active_planes++;
991 total_rate += drm_format_plane_cpp(state->base.fb->pixel_format, 0);
992 }
993 }
994
995 for_each_intel_plane_on_crtc(dev, crtc, plane) {
996 struct intel_plane_state *state =
997 to_intel_plane_state(plane->base.state);
998 unsigned int rate;
999
1000 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1001 plane->wm.fifo_size = 63;
1002 continue;
1003 }
1004
1005 if (!state->visible) {
1006 plane->wm.fifo_size = 0;
1007 continue;
1008 }
1009
1010 rate = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1011 plane->wm.fifo_size = fifo_size * rate / total_rate;
1012 fifo_left -= plane->wm.fifo_size;
1013 }
1014
1015 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1016
1017 /* spread the remainder evenly */
1018 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1019 int plane_extra;
1020
1021 if (fifo_left == 0)
1022 break;
1023
1024 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1025 continue;
1026
1027 /* give it all to the first plane if none are active */
1028 if (plane->wm.fifo_size == 0 &&
1029 wm_state->num_active_planes)
1030 continue;
1031
1032 plane_extra = min(fifo_extra, fifo_left);
1033 plane->wm.fifo_size += plane_extra;
1034 fifo_left -= plane_extra;
1035 }
1036
1037 WARN_ON(fifo_left != 0);
1038}
1039
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001040static void vlv_invert_wms(struct intel_crtc *crtc)
1041{
1042 struct vlv_wm_state *wm_state = &crtc->wm_state;
1043 int level;
1044
1045 for (level = 0; level < wm_state->num_levels; level++) {
1046 struct drm_device *dev = crtc->base.dev;
1047 const int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1048 struct intel_plane *plane;
1049
1050 wm_state->sr[level].plane = sr_fifo_size - wm_state->sr[level].plane;
1051 wm_state->sr[level].cursor = 63 - wm_state->sr[level].cursor;
1052
1053 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1054 switch (plane->base.type) {
1055 int sprite;
1056 case DRM_PLANE_TYPE_CURSOR:
1057 wm_state->wm[level].cursor = plane->wm.fifo_size -
1058 wm_state->wm[level].cursor;
1059 break;
1060 case DRM_PLANE_TYPE_PRIMARY:
1061 wm_state->wm[level].primary = plane->wm.fifo_size -
1062 wm_state->wm[level].primary;
1063 break;
1064 case DRM_PLANE_TYPE_OVERLAY:
1065 sprite = plane->plane;
1066 wm_state->wm[level].sprite[sprite] = plane->wm.fifo_size -
1067 wm_state->wm[level].sprite[sprite];
1068 break;
1069 }
1070 }
1071 }
1072}
1073
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001074static void vlv_compute_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001075{
1076 struct drm_device *dev = crtc->base.dev;
1077 struct vlv_wm_state *wm_state = &crtc->wm_state;
1078 struct intel_plane *plane;
1079 int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1080 int level;
1081
1082 memset(wm_state, 0, sizeof(*wm_state));
1083
Ville Syrjälä852eb002015-06-24 22:00:07 +03001084 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001085 wm_state->num_levels = to_i915(dev)->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001086
1087 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001088
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001089 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001090
1091 if (wm_state->num_active_planes != 1)
1092 wm_state->cxsr = false;
1093
1094 if (wm_state->cxsr) {
1095 for (level = 0; level < wm_state->num_levels; level++) {
1096 wm_state->sr[level].plane = sr_fifo_size;
1097 wm_state->sr[level].cursor = 63;
1098 }
1099 }
1100
1101 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1102 struct intel_plane_state *state =
1103 to_intel_plane_state(plane->base.state);
1104
1105 if (!state->visible)
1106 continue;
1107
1108 /* normal watermarks */
1109 for (level = 0; level < wm_state->num_levels; level++) {
1110 int wm = vlv_compute_wm_level(plane, crtc, state, level);
1111 int max_wm = plane->base.type == DRM_PLANE_TYPE_CURSOR ? 63 : 511;
1112
1113 /* hack */
1114 if (WARN_ON(level == 0 && wm > max_wm))
1115 wm = max_wm;
1116
1117 if (wm > plane->wm.fifo_size)
1118 break;
1119
1120 switch (plane->base.type) {
1121 int sprite;
1122 case DRM_PLANE_TYPE_CURSOR:
1123 wm_state->wm[level].cursor = wm;
1124 break;
1125 case DRM_PLANE_TYPE_PRIMARY:
1126 wm_state->wm[level].primary = wm;
1127 break;
1128 case DRM_PLANE_TYPE_OVERLAY:
1129 sprite = plane->plane;
1130 wm_state->wm[level].sprite[sprite] = wm;
1131 break;
1132 }
1133 }
1134
1135 wm_state->num_levels = level;
1136
1137 if (!wm_state->cxsr)
1138 continue;
1139
1140 /* maxfifo watermarks */
1141 switch (plane->base.type) {
1142 int sprite, level;
1143 case DRM_PLANE_TYPE_CURSOR:
1144 for (level = 0; level < wm_state->num_levels; level++)
1145 wm_state->sr[level].cursor =
Thomas Daniel5a37ed02015-10-23 14:55:38 +01001146 wm_state->wm[level].cursor;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001147 break;
1148 case DRM_PLANE_TYPE_PRIMARY:
1149 for (level = 0; level < wm_state->num_levels; level++)
1150 wm_state->sr[level].plane =
1151 min(wm_state->sr[level].plane,
1152 wm_state->wm[level].primary);
1153 break;
1154 case DRM_PLANE_TYPE_OVERLAY:
1155 sprite = plane->plane;
1156 for (level = 0; level < wm_state->num_levels; level++)
1157 wm_state->sr[level].plane =
1158 min(wm_state->sr[level].plane,
1159 wm_state->wm[level].sprite[sprite]);
1160 break;
1161 }
1162 }
1163
1164 /* clear any (partially) filled invalid levels */
Ville Syrjälä58590c12015-09-08 21:05:12 +03001165 for (level = wm_state->num_levels; level < to_i915(dev)->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001166 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1167 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1168 }
1169
1170 vlv_invert_wms(crtc);
1171}
1172
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001173#define VLV_FIFO(plane, value) \
1174 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1175
1176static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1177{
1178 struct drm_device *dev = crtc->base.dev;
1179 struct drm_i915_private *dev_priv = to_i915(dev);
1180 struct intel_plane *plane;
1181 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1182
1183 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1184 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1185 WARN_ON(plane->wm.fifo_size != 63);
1186 continue;
1187 }
1188
1189 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
1190 sprite0_start = plane->wm.fifo_size;
1191 else if (plane->plane == 0)
1192 sprite1_start = sprite0_start + plane->wm.fifo_size;
1193 else
1194 fifo_size = sprite1_start + plane->wm.fifo_size;
1195 }
1196
1197 WARN_ON(fifo_size != 512 - 1);
1198
1199 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1200 pipe_name(crtc->pipe), sprite0_start,
1201 sprite1_start, fifo_size);
1202
1203 switch (crtc->pipe) {
1204 uint32_t dsparb, dsparb2, dsparb3;
1205 case PIPE_A:
1206 dsparb = I915_READ(DSPARB);
1207 dsparb2 = I915_READ(DSPARB2);
1208
1209 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1210 VLV_FIFO(SPRITEB, 0xff));
1211 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1212 VLV_FIFO(SPRITEB, sprite1_start));
1213
1214 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1215 VLV_FIFO(SPRITEB_HI, 0x1));
1216 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1217 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1218
1219 I915_WRITE(DSPARB, dsparb);
1220 I915_WRITE(DSPARB2, dsparb2);
1221 break;
1222 case PIPE_B:
1223 dsparb = I915_READ(DSPARB);
1224 dsparb2 = I915_READ(DSPARB2);
1225
1226 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1227 VLV_FIFO(SPRITED, 0xff));
1228 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1229 VLV_FIFO(SPRITED, sprite1_start));
1230
1231 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1232 VLV_FIFO(SPRITED_HI, 0xff));
1233 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1234 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1235
1236 I915_WRITE(DSPARB, dsparb);
1237 I915_WRITE(DSPARB2, dsparb2);
1238 break;
1239 case PIPE_C:
1240 dsparb3 = I915_READ(DSPARB3);
1241 dsparb2 = I915_READ(DSPARB2);
1242
1243 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1244 VLV_FIFO(SPRITEF, 0xff));
1245 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1246 VLV_FIFO(SPRITEF, sprite1_start));
1247
1248 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1249 VLV_FIFO(SPRITEF_HI, 0xff));
1250 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1251 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1252
1253 I915_WRITE(DSPARB3, dsparb3);
1254 I915_WRITE(DSPARB2, dsparb2);
1255 break;
1256 default:
1257 break;
1258 }
1259}
1260
1261#undef VLV_FIFO
1262
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001263static void vlv_merge_wm(struct drm_device *dev,
1264 struct vlv_wm_values *wm)
1265{
1266 struct intel_crtc *crtc;
1267 int num_active_crtcs = 0;
1268
Ville Syrjälä58590c12015-09-08 21:05:12 +03001269 wm->level = to_i915(dev)->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001270 wm->cxsr = true;
1271
1272 for_each_intel_crtc(dev, crtc) {
1273 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1274
1275 if (!crtc->active)
1276 continue;
1277
1278 if (!wm_state->cxsr)
1279 wm->cxsr = false;
1280
1281 num_active_crtcs++;
1282 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1283 }
1284
1285 if (num_active_crtcs != 1)
1286 wm->cxsr = false;
1287
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001288 if (num_active_crtcs > 1)
1289 wm->level = VLV_WM_LEVEL_PM2;
1290
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001291 for_each_intel_crtc(dev, crtc) {
1292 struct vlv_wm_state *wm_state = &crtc->wm_state;
1293 enum pipe pipe = crtc->pipe;
1294
1295 if (!crtc->active)
1296 continue;
1297
1298 wm->pipe[pipe] = wm_state->wm[wm->level];
1299 if (wm->cxsr)
1300 wm->sr = wm_state->sr[wm->level];
1301
1302 wm->ddl[pipe].primary = DDL_PRECISION_HIGH | 2;
1303 wm->ddl[pipe].sprite[0] = DDL_PRECISION_HIGH | 2;
1304 wm->ddl[pipe].sprite[1] = DDL_PRECISION_HIGH | 2;
1305 wm->ddl[pipe].cursor = DDL_PRECISION_HIGH | 2;
1306 }
1307}
1308
1309static void vlv_update_wm(struct drm_crtc *crtc)
1310{
1311 struct drm_device *dev = crtc->dev;
1312 struct drm_i915_private *dev_priv = dev->dev_private;
1313 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1314 enum pipe pipe = intel_crtc->pipe;
1315 struct vlv_wm_values wm = {};
1316
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001317 vlv_compute_wm(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001318 vlv_merge_wm(dev, &wm);
1319
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001320 if (memcmp(&dev_priv->wm.vlv, &wm, sizeof(wm)) == 0) {
1321 /* FIXME should be part of crtc atomic commit */
1322 vlv_pipe_set_fifo_size(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001323 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001324 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001325
1326 if (wm.level < VLV_WM_LEVEL_DDR_DVFS &&
1327 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_DDR_DVFS)
1328 chv_set_memory_dvfs(dev_priv, false);
1329
1330 if (wm.level < VLV_WM_LEVEL_PM5 &&
1331 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_PM5)
1332 chv_set_memory_pm5(dev_priv, false);
1333
Ville Syrjälä852eb002015-06-24 22:00:07 +03001334 if (!wm.cxsr && dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001335 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001336
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001337 /* FIXME should be part of crtc atomic commit */
1338 vlv_pipe_set_fifo_size(intel_crtc);
1339
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001340 vlv_write_wm_values(intel_crtc, &wm);
1341
1342 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1343 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
1344 pipe_name(pipe), wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1345 wm.pipe[pipe].sprite[0], wm.pipe[pipe].sprite[1],
1346 wm.sr.plane, wm.sr.cursor, wm.level, wm.cxsr);
1347
Ville Syrjälä852eb002015-06-24 22:00:07 +03001348 if (wm.cxsr && !dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001349 intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001350
1351 if (wm.level >= VLV_WM_LEVEL_PM5 &&
1352 dev_priv->wm.vlv.level < VLV_WM_LEVEL_PM5)
1353 chv_set_memory_pm5(dev_priv, true);
1354
1355 if (wm.level >= VLV_WM_LEVEL_DDR_DVFS &&
1356 dev_priv->wm.vlv.level < VLV_WM_LEVEL_DDR_DVFS)
1357 chv_set_memory_dvfs(dev_priv, true);
1358
1359 dev_priv->wm.vlv = wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001360}
1361
Ville Syrjäläae801522015-03-05 21:19:49 +02001362#define single_plane_enabled(mask) is_power_of_2(mask)
1363
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001364static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001365{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001366 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001367 static const int sr_latency_ns = 12000;
1368 struct drm_i915_private *dev_priv = dev->dev_private;
1369 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1370 int plane_sr, cursor_sr;
1371 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001372 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001373
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001374 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001375 &g4x_wm_info, pessimal_latency_ns,
1376 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001377 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001378 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001379
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001380 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001381 &g4x_wm_info, pessimal_latency_ns,
1382 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001383 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001384 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001385
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001386 if (single_plane_enabled(enabled) &&
1387 g4x_compute_srwm(dev, ffs(enabled) - 1,
1388 sr_latency_ns,
1389 &g4x_wm_info,
1390 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001391 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001392 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001393 } else {
Imre Deak98584252014-06-13 14:54:20 +03001394 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001395 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001396 plane_sr = cursor_sr = 0;
1397 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001398
Ville Syrjäläa5043452014-06-28 02:04:18 +03001399 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1400 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001401 planea_wm, cursora_wm,
1402 planeb_wm, cursorb_wm,
1403 plane_sr, cursor_sr);
1404
1405 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001406 FW_WM(plane_sr, SR) |
1407 FW_WM(cursorb_wm, CURSORB) |
1408 FW_WM(planeb_wm, PLANEB) |
1409 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001410 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001411 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001412 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001413 /* HPLL off in SR has some issues on G4x... disable it */
1414 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001415 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001416 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001417
1418 if (cxsr_enabled)
1419 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001420}
1421
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001422static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001423{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001424 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001425 struct drm_i915_private *dev_priv = dev->dev_private;
1426 struct drm_crtc *crtc;
1427 int srwm = 1;
1428 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001429 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001430
1431 /* Calc sr entries for one plane configs */
1432 crtc = single_enabled_crtc(dev);
1433 if (crtc) {
1434 /* self-refresh has much higher latency */
1435 static const int sr_latency_ns = 12000;
Ville Syrjälä124abe02015-09-08 13:40:45 +03001436 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001437 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001438 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001439 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001440 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001441 unsigned long line_time_us;
1442 int entries;
1443
Ville Syrjälä922044c2014-02-14 14:18:57 +02001444 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001445
1446 /* Use ns/us then divide to preserve precision */
1447 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1448 pixel_size * hdisplay;
1449 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1450 srwm = I965_FIFO_SIZE - entries;
1451 if (srwm < 0)
1452 srwm = 1;
1453 srwm &= 0x1ff;
1454 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1455 entries, srwm);
1456
1457 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Matt Roper3dd512f2015-02-27 10:12:00 -08001458 pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001459 entries = DIV_ROUND_UP(entries,
1460 i965_cursor_wm_info.cacheline_size);
1461 cursor_sr = i965_cursor_wm_info.fifo_size -
1462 (entries + i965_cursor_wm_info.guard_size);
1463
1464 if (cursor_sr > i965_cursor_wm_info.max_wm)
1465 cursor_sr = i965_cursor_wm_info.max_wm;
1466
1467 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1468 "cursor %d\n", srwm, cursor_sr);
1469
Imre Deak98584252014-06-13 14:54:20 +03001470 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001471 } else {
Imre Deak98584252014-06-13 14:54:20 +03001472 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001473 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001474 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001475 }
1476
1477 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1478 srwm);
1479
1480 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001481 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1482 FW_WM(8, CURSORB) |
1483 FW_WM(8, PLANEB) |
1484 FW_WM(8, PLANEA));
1485 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1486 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001487 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001488 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001489
1490 if (cxsr_enabled)
1491 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001492}
1493
Ville Syrjäläf4998962015-03-10 17:02:21 +02001494#undef FW_WM
1495
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001496static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001497{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001498 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001499 struct drm_i915_private *dev_priv = dev->dev_private;
1500 const struct intel_watermark_params *wm_info;
1501 uint32_t fwater_lo;
1502 uint32_t fwater_hi;
1503 int cwm, srwm = 1;
1504 int fifo_size;
1505 int planea_wm, planeb_wm;
1506 struct drm_crtc *crtc, *enabled = NULL;
1507
1508 if (IS_I945GM(dev))
1509 wm_info = &i945_wm_info;
1510 else if (!IS_GEN2(dev))
1511 wm_info = &i915_wm_info;
1512 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001513 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001514
1515 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1516 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001517 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001518 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001519 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001520 if (IS_GEN2(dev))
1521 cpp = 4;
1522
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001523 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001524 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001525 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001526 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001527 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001528 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001529 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001530 if (planea_wm > (long)wm_info->max_wm)
1531 planea_wm = wm_info->max_wm;
1532 }
1533
1534 if (IS_GEN2(dev))
1535 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001536
1537 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1538 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001539 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001540 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001541 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001542 if (IS_GEN2(dev))
1543 cpp = 4;
1544
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001545 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001546 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001547 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001548 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001549 if (enabled == NULL)
1550 enabled = crtc;
1551 else
1552 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001553 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001554 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001555 if (planeb_wm > (long)wm_info->max_wm)
1556 planeb_wm = wm_info->max_wm;
1557 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001558
1559 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1560
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001561 if (IS_I915GM(dev) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001562 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001563
Matt Roper59bea882015-02-27 10:12:01 -08001564 obj = intel_fb_obj(enabled->primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001565
1566 /* self-refresh seems busted with untiled */
Matt Roper2ff8fde2014-07-08 07:50:07 -07001567 if (obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001568 enabled = NULL;
1569 }
1570
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001571 /*
1572 * Overlay gets an aggressive default since video jitter is bad.
1573 */
1574 cwm = 2;
1575
1576 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001577 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001578
1579 /* Calc sr entries for one plane configs */
1580 if (HAS_FW_BLC(dev) && enabled) {
1581 /* self-refresh has much higher latency */
1582 static const int sr_latency_ns = 6000;
Ville Syrjälä124abe02015-09-08 13:40:45 +03001583 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(enabled)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001584 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001585 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001586 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001587 int pixel_size = enabled->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001588 unsigned long line_time_us;
1589 int entries;
1590
Ville Syrjälä922044c2014-02-14 14:18:57 +02001591 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001592
1593 /* Use ns/us then divide to preserve precision */
1594 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1595 pixel_size * hdisplay;
1596 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1597 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1598 srwm = wm_info->fifo_size - entries;
1599 if (srwm < 0)
1600 srwm = 1;
1601
1602 if (IS_I945G(dev) || IS_I945GM(dev))
1603 I915_WRITE(FW_BLC_SELF,
1604 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1605 else if (IS_I915GM(dev))
1606 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1607 }
1608
1609 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1610 planea_wm, planeb_wm, cwm, srwm);
1611
1612 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1613 fwater_hi = (cwm & 0x1f);
1614
1615 /* Set request length to 8 cachelines per fetch */
1616 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1617 fwater_hi = fwater_hi | (1 << 8);
1618
1619 I915_WRITE(FW_BLC, fwater_lo);
1620 I915_WRITE(FW_BLC2, fwater_hi);
1621
Imre Deak5209b1f2014-07-01 12:36:17 +03001622 if (enabled)
1623 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001624}
1625
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001626static void i845_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001627{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001628 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001629 struct drm_i915_private *dev_priv = dev->dev_private;
1630 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001631 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001632 uint32_t fwater_lo;
1633 int planea_wm;
1634
1635 crtc = single_enabled_crtc(dev);
1636 if (crtc == NULL)
1637 return;
1638
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001639 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001640 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001641 &i845_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001642 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001643 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001644 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1645 fwater_lo |= (3<<8) | planea_wm;
1646
1647 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1648
1649 I915_WRITE(FW_BLC, fwater_lo);
1650}
1651
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001652uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001653{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001654 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001655
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001656 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001657
1658 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1659 * adjust the pixel_rate here. */
1660
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001661 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001662 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001663 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001664
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001665 pipe_w = pipe_config->pipe_src_w;
1666 pipe_h = pipe_config->pipe_src_h;
1667
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001668 pfit_w = (pfit_size >> 16) & 0xFFFF;
1669 pfit_h = pfit_size & 0xFFFF;
1670 if (pipe_w < pfit_w)
1671 pipe_w = pfit_w;
1672 if (pipe_h < pfit_h)
1673 pipe_h = pfit_h;
1674
Matt Roper15126882015-12-03 11:37:40 -08001675 if (WARN_ON(!pfit_w || !pfit_h))
1676 return pixel_rate;
1677
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001678 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1679 pfit_w * pfit_h);
1680 }
1681
1682 return pixel_rate;
1683}
1684
Ville Syrjälä37126462013-08-01 16:18:55 +03001685/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001686static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001687 uint32_t latency)
1688{
1689 uint64_t ret;
1690
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001691 if (WARN(latency == 0, "Latency value missing\n"))
1692 return UINT_MAX;
1693
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001694 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
1695 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1696
1697 return ret;
1698}
1699
Ville Syrjälä37126462013-08-01 16:18:55 +03001700/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001701static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001702 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
1703 uint32_t latency)
1704{
1705 uint32_t ret;
1706
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001707 if (WARN(latency == 0, "Latency value missing\n"))
1708 return UINT_MAX;
Matt Roper15126882015-12-03 11:37:40 -08001709 if (WARN_ON(!pipe_htotal))
1710 return UINT_MAX;
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001711
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001712 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
1713 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
1714 ret = DIV_ROUND_UP(ret, 64) + 2;
1715 return ret;
1716}
1717
Ville Syrjälä23297042013-07-05 11:57:17 +03001718static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001719 uint8_t bytes_per_pixel)
1720{
Matt Roper15126882015-12-03 11:37:40 -08001721 /*
1722 * Neither of these should be possible since this function shouldn't be
1723 * called if the CRTC is off or the plane is invisible. But let's be
1724 * extra paranoid to avoid a potential divide-by-zero if we screw up
1725 * elsewhere in the driver.
1726 */
1727 if (WARN_ON(!bytes_per_pixel))
1728 return 0;
1729 if (WARN_ON(!horiz_pixels))
1730 return 0;
1731
Paulo Zanonicca32e92013-05-31 11:45:06 -03001732 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
1733}
1734
Imre Deak820c1982013-12-17 14:46:36 +02001735struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001736 uint16_t pri;
1737 uint16_t spr;
1738 uint16_t cur;
1739 uint16_t fbc;
1740};
1741
Ville Syrjälä37126462013-08-01 16:18:55 +03001742/*
1743 * For both WM_PIPE and WM_LP.
1744 * mem_value must be in 0.1us units.
1745 */
Matt Roper7221fc32015-09-24 15:53:08 -07001746static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001747 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001748 uint32_t mem_value,
1749 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001750{
Matt Roper43d59ed2015-09-24 15:53:07 -07001751 int bpp = pstate->base.fb ? pstate->base.fb->bits_per_pixel / 8 : 0;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001752 uint32_t method1, method2;
1753
Matt Roper7221fc32015-09-24 15:53:08 -07001754 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001755 return 0;
1756
Matt Roper7221fc32015-09-24 15:53:08 -07001757 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), bpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001758
1759 if (!is_lp)
1760 return method1;
1761
Matt Roper7221fc32015-09-24 15:53:08 -07001762 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1763 cstate->base.adjusted_mode.crtc_htotal,
Matt Roper43d59ed2015-09-24 15:53:07 -07001764 drm_rect_width(&pstate->dst),
1765 bpp,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001766 mem_value);
1767
1768 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001769}
1770
Ville Syrjälä37126462013-08-01 16:18:55 +03001771/*
1772 * For both WM_PIPE and WM_LP.
1773 * mem_value must be in 0.1us units.
1774 */
Matt Roper7221fc32015-09-24 15:53:08 -07001775static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001776 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001777 uint32_t mem_value)
1778{
Matt Roper43d59ed2015-09-24 15:53:07 -07001779 int bpp = pstate->base.fb ? pstate->base.fb->bits_per_pixel / 8 : 0;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001780 uint32_t method1, method2;
1781
Matt Roper7221fc32015-09-24 15:53:08 -07001782 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001783 return 0;
1784
Matt Roper7221fc32015-09-24 15:53:08 -07001785 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), bpp, mem_value);
1786 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1787 cstate->base.adjusted_mode.crtc_htotal,
Matt Roper43d59ed2015-09-24 15:53:07 -07001788 drm_rect_width(&pstate->dst),
1789 bpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001790 mem_value);
1791 return min(method1, method2);
1792}
1793
Ville Syrjälä37126462013-08-01 16:18:55 +03001794/*
1795 * For both WM_PIPE and WM_LP.
1796 * mem_value must be in 0.1us units.
1797 */
Matt Roper7221fc32015-09-24 15:53:08 -07001798static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001799 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001800 uint32_t mem_value)
1801{
Matt Roper43d59ed2015-09-24 15:53:07 -07001802 int bpp = pstate->base.fb ? pstate->base.fb->bits_per_pixel / 8 : 0;
1803
Matt Roper7221fc32015-09-24 15:53:08 -07001804 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001805 return 0;
1806
Matt Roper7221fc32015-09-24 15:53:08 -07001807 return ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1808 cstate->base.adjusted_mode.crtc_htotal,
Matt Roper43d59ed2015-09-24 15:53:07 -07001809 drm_rect_width(&pstate->dst),
1810 bpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001811 mem_value);
1812}
1813
Paulo Zanonicca32e92013-05-31 11:45:06 -03001814/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07001815static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001816 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001817 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001818{
Matt Roper43d59ed2015-09-24 15:53:07 -07001819 int bpp = pstate->base.fb ? pstate->base.fb->bits_per_pixel / 8 : 0;
1820
Matt Roper7221fc32015-09-24 15:53:08 -07001821 if (!cstate->base.active || !pstate->visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001822 return 0;
1823
Matt Roper43d59ed2015-09-24 15:53:07 -07001824 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->dst), bpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001825}
1826
Ville Syrjälä158ae642013-08-07 13:28:19 +03001827static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1828{
Ville Syrjälä416f4722013-11-02 21:07:46 -07001829 if (INTEL_INFO(dev)->gen >= 8)
1830 return 3072;
1831 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001832 return 768;
1833 else
1834 return 512;
1835}
1836
Ville Syrjälä4e975082014-03-07 18:32:11 +02001837static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1838 int level, bool is_sprite)
1839{
1840 if (INTEL_INFO(dev)->gen >= 8)
1841 /* BDW primary/sprite plane watermarks */
1842 return level == 0 ? 255 : 2047;
1843 else if (INTEL_INFO(dev)->gen >= 7)
1844 /* IVB/HSW primary/sprite plane watermarks */
1845 return level == 0 ? 127 : 1023;
1846 else if (!is_sprite)
1847 /* ILK/SNB primary plane watermarks */
1848 return level == 0 ? 127 : 511;
1849 else
1850 /* ILK/SNB sprite plane watermarks */
1851 return level == 0 ? 63 : 255;
1852}
1853
1854static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1855 int level)
1856{
1857 if (INTEL_INFO(dev)->gen >= 7)
1858 return level == 0 ? 63 : 255;
1859 else
1860 return level == 0 ? 31 : 63;
1861}
1862
1863static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1864{
1865 if (INTEL_INFO(dev)->gen >= 8)
1866 return 31;
1867 else
1868 return 15;
1869}
1870
Ville Syrjälä158ae642013-08-07 13:28:19 +03001871/* Calculate the maximum primary/sprite plane watermark */
1872static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1873 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001874 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001875 enum intel_ddb_partitioning ddb_partitioning,
1876 bool is_sprite)
1877{
1878 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001879
1880 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001881 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001882 return 0;
1883
1884 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001885 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001886 fifo_size /= INTEL_INFO(dev)->num_pipes;
1887
1888 /*
1889 * For some reason the non self refresh
1890 * FIFO size is only half of the self
1891 * refresh FIFO size on ILK/SNB.
1892 */
1893 if (INTEL_INFO(dev)->gen <= 6)
1894 fifo_size /= 2;
1895 }
1896
Ville Syrjälä240264f2013-08-07 13:29:12 +03001897 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001898 /* level 0 is always calculated with 1:1 split */
1899 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1900 if (is_sprite)
1901 fifo_size *= 5;
1902 fifo_size /= 6;
1903 } else {
1904 fifo_size /= 2;
1905 }
1906 }
1907
1908 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001909 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001910}
1911
1912/* Calculate the maximum cursor plane watermark */
1913static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001914 int level,
1915 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001916{
1917 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001918 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001919 return 64;
1920
1921 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001922 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001923}
1924
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001925static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001926 int level,
1927 const struct intel_wm_config *config,
1928 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001929 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001930{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001931 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1932 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1933 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02001934 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001935}
1936
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001937static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
1938 int level,
1939 struct ilk_wm_maximums *max)
1940{
1941 max->pri = ilk_plane_wm_reg_max(dev, level, false);
1942 max->spr = ilk_plane_wm_reg_max(dev, level, true);
1943 max->cur = ilk_cursor_wm_reg_max(dev, level);
1944 max->fbc = ilk_fbc_wm_reg_max(dev);
1945}
1946
Ville Syrjäläd9395652013-10-09 19:18:10 +03001947static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001948 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001949 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001950{
1951 bool ret;
1952
1953 /* already determined to be invalid? */
1954 if (!result->enable)
1955 return false;
1956
1957 result->enable = result->pri_val <= max->pri &&
1958 result->spr_val <= max->spr &&
1959 result->cur_val <= max->cur;
1960
1961 ret = result->enable;
1962
1963 /*
1964 * HACK until we can pre-compute everything,
1965 * and thus fail gracefully if LP0 watermarks
1966 * are exceeded...
1967 */
1968 if (level == 0 && !result->enable) {
1969 if (result->pri_val > max->pri)
1970 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
1971 level, result->pri_val, max->pri);
1972 if (result->spr_val > max->spr)
1973 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
1974 level, result->spr_val, max->spr);
1975 if (result->cur_val > max->cur)
1976 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
1977 level, result->cur_val, max->cur);
1978
1979 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
1980 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
1981 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
1982 result->enable = true;
1983 }
1984
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001985 return ret;
1986}
1987
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001988static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07001989 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03001990 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07001991 struct intel_crtc_state *cstate,
Matt Roper86c8bbb2015-09-24 15:53:16 -07001992 struct intel_plane_state *pristate,
1993 struct intel_plane_state *sprstate,
1994 struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03001995 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03001996{
1997 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
1998 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
1999 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2000
2001 /* WM1+ latency values stored in 0.5us units */
2002 if (level > 0) {
2003 pri_latency *= 5;
2004 spr_latency *= 5;
2005 cur_latency *= 5;
2006 }
2007
Matt Roper86c8bbb2015-09-24 15:53:16 -07002008 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2009 pri_latency, level);
2010 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2011 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2012 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002013 result->enable = true;
2014}
2015
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002016static uint32_t
Matt Roperee91a152015-12-03 11:37:39 -08002017hsw_compute_linetime_wm(struct drm_device *dev,
2018 struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002019{
2020 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperee91a152015-12-03 11:37:39 -08002021 const struct drm_display_mode *adjusted_mode =
2022 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002023 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002024
Matt Roperee91a152015-12-03 11:37:39 -08002025 if (!cstate->base.active)
2026 return 0;
2027 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2028 return 0;
2029 if (WARN_ON(dev_priv->cdclk_freq == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002030 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002031
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002032 /* The WM are computed with base on how long it takes to fill a single
2033 * row at the given clock rate, multiplied by 8.
2034 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002035 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2036 adjusted_mode->crtc_clock);
2037 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjälä05024da2015-06-03 15:45:08 +03002038 dev_priv->cdclk_freq);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002039
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002040 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2041 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002042}
2043
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002044static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002045{
2046 struct drm_i915_private *dev_priv = dev->dev_private;
2047
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002048 if (IS_GEN9(dev)) {
2049 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002050 int ret, i;
Vandana Kannan367294b2014-11-04 17:06:46 +00002051 int level, max_level = ilk_wm_max_level(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002052
2053 /* read the first set of memory latencies[0:3] */
2054 val = 0; /* data0 to be programmed to 0 for first set */
2055 mutex_lock(&dev_priv->rps.hw_lock);
2056 ret = sandybridge_pcode_read(dev_priv,
2057 GEN9_PCODE_READ_MEM_LATENCY,
2058 &val);
2059 mutex_unlock(&dev_priv->rps.hw_lock);
2060
2061 if (ret) {
2062 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2063 return;
2064 }
2065
2066 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2067 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2068 GEN9_MEM_LATENCY_LEVEL_MASK;
2069 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2070 GEN9_MEM_LATENCY_LEVEL_MASK;
2071 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2072 GEN9_MEM_LATENCY_LEVEL_MASK;
2073
2074 /* read the second set of memory latencies[4:7] */
2075 val = 1; /* data0 to be programmed to 1 for second set */
2076 mutex_lock(&dev_priv->rps.hw_lock);
2077 ret = sandybridge_pcode_read(dev_priv,
2078 GEN9_PCODE_READ_MEM_LATENCY,
2079 &val);
2080 mutex_unlock(&dev_priv->rps.hw_lock);
2081 if (ret) {
2082 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2083 return;
2084 }
2085
2086 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2087 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2088 GEN9_MEM_LATENCY_LEVEL_MASK;
2089 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2090 GEN9_MEM_LATENCY_LEVEL_MASK;
2091 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2092 GEN9_MEM_LATENCY_LEVEL_MASK;
2093
Vandana Kannan367294b2014-11-04 17:06:46 +00002094 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00002095 * WaWmMemoryReadLatency:skl
2096 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002097 * punit doesn't take into account the read latency so we need
2098 * to add 2us to the various latency levels we retrieve from
2099 * the punit.
2100 * - W0 is a bit special in that it's the only level that
2101 * can't be disabled if we want to have display working, so
2102 * we always add 2us there.
2103 * - For levels >=1, punit returns 0us latency when they are
2104 * disabled, so we respect that and don't add 2us then
Vandana Kannan4f947382014-11-04 17:06:47 +00002105 *
2106 * Additionally, if a level n (n > 1) has a 0us latency, all
2107 * levels m (m >= n) need to be disabled. We make sure to
2108 * sanitize the values out of the punit to satisfy this
2109 * requirement.
Vandana Kannan367294b2014-11-04 17:06:46 +00002110 */
2111 wm[0] += 2;
2112 for (level = 1; level <= max_level; level++)
2113 if (wm[level] != 0)
2114 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002115 else {
2116 for (i = level + 1; i <= max_level; i++)
2117 wm[i] = 0;
Vandana Kannan367294b2014-11-04 17:06:46 +00002118
Vandana Kannan4f947382014-11-04 17:06:47 +00002119 break;
2120 }
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002121 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002122 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2123
2124 wm[0] = (sskpd >> 56) & 0xFF;
2125 if (wm[0] == 0)
2126 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002127 wm[1] = (sskpd >> 4) & 0xFF;
2128 wm[2] = (sskpd >> 12) & 0xFF;
2129 wm[3] = (sskpd >> 20) & 0x1FF;
2130 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002131 } else if (INTEL_INFO(dev)->gen >= 6) {
2132 uint32_t sskpd = I915_READ(MCH_SSKPD);
2133
2134 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2135 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2136 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2137 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002138 } else if (INTEL_INFO(dev)->gen >= 5) {
2139 uint32_t mltr = I915_READ(MLTR_ILK);
2140
2141 /* ILK primary LP0 latency is 700 ns */
2142 wm[0] = 7;
2143 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2144 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002145 }
2146}
2147
Ville Syrjälä53615a52013-08-01 16:18:50 +03002148static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2149{
2150 /* ILK sprite LP0 latency is 1300 ns */
2151 if (INTEL_INFO(dev)->gen == 5)
2152 wm[0] = 13;
2153}
2154
2155static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2156{
2157 /* ILK cursor LP0 latency is 1300 ns */
2158 if (INTEL_INFO(dev)->gen == 5)
2159 wm[0] = 13;
2160
2161 /* WaDoubleCursorLP3Latency:ivb */
2162 if (IS_IVYBRIDGE(dev))
2163 wm[3] *= 2;
2164}
2165
Damien Lespiau546c81f2014-05-13 15:30:26 +01002166int ilk_wm_max_level(const struct drm_device *dev)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002167{
2168 /* how many WM levels are we expecting */
Damien Lespiaub6e742f2015-05-09 02:05:55 +01002169 if (INTEL_INFO(dev)->gen >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002170 return 7;
2171 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002172 return 4;
2173 else if (INTEL_INFO(dev)->gen >= 6)
2174 return 3;
2175 else
2176 return 2;
2177}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002178
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002179static void intel_print_wm_latency(struct drm_device *dev,
2180 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002181 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002182{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002183 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002184
2185 for (level = 0; level <= max_level; level++) {
2186 unsigned int latency = wm[level];
2187
2188 if (latency == 0) {
2189 DRM_ERROR("%s WM%d latency not provided\n",
2190 name, level);
2191 continue;
2192 }
2193
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002194 /*
2195 * - latencies are in us on gen9.
2196 * - before then, WM1+ latency values are in 0.5us units
2197 */
2198 if (IS_GEN9(dev))
2199 latency *= 10;
2200 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002201 latency *= 5;
2202
2203 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2204 name, level, wm[level],
2205 latency / 10, latency % 10);
2206 }
2207}
2208
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002209static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2210 uint16_t wm[5], uint16_t min)
2211{
2212 int level, max_level = ilk_wm_max_level(dev_priv->dev);
2213
2214 if (wm[0] >= min)
2215 return false;
2216
2217 wm[0] = max(wm[0], min);
2218 for (level = 1; level <= max_level; level++)
2219 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2220
2221 return true;
2222}
2223
2224static void snb_wm_latency_quirk(struct drm_device *dev)
2225{
2226 struct drm_i915_private *dev_priv = dev->dev_private;
2227 bool changed;
2228
2229 /*
2230 * The BIOS provided WM memory latency values are often
2231 * inadequate for high resolution displays. Adjust them.
2232 */
2233 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2234 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2235 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2236
2237 if (!changed)
2238 return;
2239
2240 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
2241 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2242 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2243 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
2244}
2245
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002246static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002247{
2248 struct drm_i915_private *dev_priv = dev->dev_private;
2249
2250 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2251
2252 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2253 sizeof(dev_priv->wm.pri_latency));
2254 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2255 sizeof(dev_priv->wm.pri_latency));
2256
2257 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2258 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002259
2260 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2261 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2262 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002263
2264 if (IS_GEN6(dev))
2265 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002266}
2267
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002268static void skl_setup_wm_latency(struct drm_device *dev)
2269{
2270 struct drm_i915_private *dev_priv = dev->dev_private;
2271
2272 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
2273 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
2274}
2275
Matt Roper396e33a2016-01-06 11:34:30 -08002276static bool ilk_validate_pipe_wm(struct drm_device *dev,
2277 struct intel_pipe_wm *pipe_wm)
2278{
2279 /* LP0 watermark maximums depend on this pipe alone */
2280 const struct intel_wm_config config = {
2281 .num_pipes_active = 1,
2282 .sprites_enabled = pipe_wm->sprites_enabled,
2283 .sprites_scaled = pipe_wm->sprites_scaled,
2284 };
2285 struct ilk_wm_maximums max;
2286
2287 /* LP0 watermarks always use 1/2 DDB partitioning */
2288 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2289
2290 /* At least LP0 must be valid */
2291 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
2292 DRM_DEBUG_KMS("LP0 watermark invalid\n");
2293 return false;
2294 }
2295
2296 return true;
2297}
2298
Matt Roper261a27d2015-10-08 15:28:25 -07002299/* Compute new watermarks for the pipe */
Matt Roper86c8bbb2015-09-24 15:53:16 -07002300static int ilk_compute_pipe_wm(struct intel_crtc *intel_crtc,
2301 struct drm_atomic_state *state)
Matt Roper261a27d2015-10-08 15:28:25 -07002302{
Matt Roper86c8bbb2015-09-24 15:53:16 -07002303 struct intel_pipe_wm *pipe_wm;
2304 struct drm_device *dev = intel_crtc->base.dev;
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002305 const struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002306 struct intel_crtc_state *cstate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002307 struct intel_plane *intel_plane;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002308 struct drm_plane_state *ps;
2309 struct intel_plane_state *pristate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002310 struct intel_plane_state *sprstate = NULL;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002311 struct intel_plane_state *curstate = NULL;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002312 int level, max_level = ilk_wm_max_level(dev);
Imre Deak820c1982013-12-17 14:46:36 +02002313 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002314
Matt Roper86c8bbb2015-09-24 15:53:16 -07002315 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
2316 if (IS_ERR(cstate))
2317 return PTR_ERR(cstate);
2318
2319 pipe_wm = &cstate->wm.optimal.ilk;
Ville Syrjäläf1ecaf82016-01-14 14:53:34 +02002320 memset(pipe_wm, 0, sizeof(*pipe_wm));
Matt Roper86c8bbb2015-09-24 15:53:16 -07002321
Matt Roper43d59ed2015-09-24 15:53:07 -07002322 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07002323 ps = drm_atomic_get_plane_state(state,
2324 &intel_plane->base);
2325 if (IS_ERR(ps))
2326 return PTR_ERR(ps);
2327
2328 if (intel_plane->base.type == DRM_PLANE_TYPE_PRIMARY)
2329 pristate = to_intel_plane_state(ps);
2330 else if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY)
2331 sprstate = to_intel_plane_state(ps);
2332 else if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
2333 curstate = to_intel_plane_state(ps);
Matt Roper43d59ed2015-09-24 15:53:07 -07002334 }
2335
Matt Roper396e33a2016-01-06 11:34:30 -08002336 pipe_wm->pipe_enabled = cstate->base.active;
2337 pipe_wm->sprites_enabled = sprstate->visible;
2338 pipe_wm->sprites_scaled = sprstate->visible &&
Matt Roper43d59ed2015-09-24 15:53:07 -07002339 (drm_rect_width(&sprstate->dst) != drm_rect_width(&sprstate->src) >> 16 ||
2340 drm_rect_height(&sprstate->dst) != drm_rect_height(&sprstate->src) >> 16);
2341
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002342 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Matt Roper43d59ed2015-09-24 15:53:07 -07002343 if (INTEL_INFO(dev)->gen <= 6 && sprstate->visible)
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002344 max_level = 1;
2345
2346 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Roper396e33a2016-01-06 11:34:30 -08002347 if (pipe_wm->sprites_scaled)
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002348 max_level = 0;
2349
Matt Roper86c8bbb2015-09-24 15:53:16 -07002350 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
2351 pristate, sprstate, curstate, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002352
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002353 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Matt Roperee91a152015-12-03 11:37:39 -08002354 pipe_wm->linetime = hsw_compute_linetime_wm(dev, cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002355
Matt Roper396e33a2016-01-06 11:34:30 -08002356 if (!ilk_validate_pipe_wm(dev, pipe_wm))
2357 return false;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002358
2359 ilk_compute_wm_reg_maximums(dev, 1, &max);
2360
2361 for (level = 1; level <= max_level; level++) {
2362 struct intel_wm_level wm = {};
2363
Matt Roper86c8bbb2015-09-24 15:53:16 -07002364 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
2365 pristate, sprstate, curstate, &wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002366
2367 /*
2368 * Disable any watermark level that exceeds the
2369 * register maximums since such watermarks are
2370 * always invalid.
2371 */
2372 if (!ilk_validate_wm_level(level, &max, &wm))
2373 break;
2374
2375 pipe_wm->wm[level] = wm;
2376 }
2377
Matt Roper86c8bbb2015-09-24 15:53:16 -07002378 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002379}
2380
2381/*
Matt Roper396e33a2016-01-06 11:34:30 -08002382 * Build a set of 'intermediate' watermark values that satisfy both the old
2383 * state and the new state. These can be programmed to the hardware
2384 * immediately.
2385 */
2386static int ilk_compute_intermediate_wm(struct drm_device *dev,
2387 struct intel_crtc *intel_crtc,
2388 struct intel_crtc_state *newstate)
2389{
2390 struct intel_pipe_wm *a = &newstate->wm.intermediate;
2391 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
2392 int level, max_level = ilk_wm_max_level(dev);
2393
2394 /*
2395 * Start with the final, target watermarks, then combine with the
2396 * currently active watermarks to get values that are safe both before
2397 * and after the vblank.
2398 */
2399 *a = newstate->wm.optimal.ilk;
2400 a->pipe_enabled |= b->pipe_enabled;
2401 a->sprites_enabled |= b->sprites_enabled;
2402 a->sprites_scaled |= b->sprites_scaled;
2403
2404 for (level = 0; level <= max_level; level++) {
2405 struct intel_wm_level *a_wm = &a->wm[level];
2406 const struct intel_wm_level *b_wm = &b->wm[level];
2407
2408 a_wm->enable &= b_wm->enable;
2409 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
2410 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
2411 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
2412 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
2413 }
2414
2415 /*
2416 * We need to make sure that these merged watermark values are
2417 * actually a valid configuration themselves. If they're not,
2418 * there's no safe way to transition from the old state to
2419 * the new state, so we need to fail the atomic transaction.
2420 */
2421 if (!ilk_validate_pipe_wm(dev, a))
2422 return -EINVAL;
2423
2424 /*
2425 * If our intermediate WM are identical to the final WM, then we can
2426 * omit the post-vblank programming; only update if it's different.
2427 */
2428 if (memcmp(a, &newstate->wm.optimal.ilk, sizeof(*a)) != 0)
2429 newstate->wm.need_postvbl_update = false;
2430
2431 return 0;
2432}
2433
2434/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002435 * Merge the watermarks from all active pipes for a specific level.
2436 */
2437static void ilk_merge_wm_level(struct drm_device *dev,
2438 int level,
2439 struct intel_wm_level *ret_wm)
2440{
2441 const struct intel_crtc *intel_crtc;
2442
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002443 ret_wm->enable = true;
2444
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002445 for_each_intel_crtc(dev, intel_crtc) {
Matt Roper396e33a2016-01-06 11:34:30 -08002446 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002447 const struct intel_wm_level *wm = &active->wm[level];
2448
2449 if (!active->pipe_enabled)
2450 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002451
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002452 /*
2453 * The watermark values may have been used in the past,
2454 * so we must maintain them in the registers for some
2455 * time even if the level is now disabled.
2456 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002457 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002458 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002459
2460 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2461 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2462 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2463 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2464 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002465}
2466
2467/*
2468 * Merge all low power watermarks for all active pipes.
2469 */
2470static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002471 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002472 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002473 struct intel_pipe_wm *merged)
2474{
Paulo Zanoni7733b492015-07-07 15:26:04 -03002475 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002476 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002477 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002478
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002479 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2480 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2481 config->num_pipes_active > 1)
2482 return;
2483
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002484 /* ILK: FBC WM must be disabled always */
2485 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002486
2487 /* merge each WM1+ level */
2488 for (level = 1; level <= max_level; level++) {
2489 struct intel_wm_level *wm = &merged->wm[level];
2490
2491 ilk_merge_wm_level(dev, level, wm);
2492
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002493 if (level > last_enabled_level)
2494 wm->enable = false;
2495 else if (!ilk_validate_wm_level(level, max, wm))
2496 /* make sure all following levels get disabled */
2497 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002498
2499 /*
2500 * The spec says it is preferred to disable
2501 * FBC WMs instead of disabling a WM level.
2502 */
2503 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002504 if (wm->enable)
2505 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002506 wm->fbc_val = 0;
2507 }
2508 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002509
2510 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2511 /*
2512 * FIXME this is racy. FBC might get enabled later.
2513 * What we should check here is whether FBC can be
2514 * enabled sometime later.
2515 */
Paulo Zanoni7733b492015-07-07 15:26:04 -03002516 if (IS_GEN5(dev) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03002517 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002518 for (level = 2; level <= max_level; level++) {
2519 struct intel_wm_level *wm = &merged->wm[level];
2520
2521 wm->enable = false;
2522 }
2523 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002524}
2525
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002526static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2527{
2528 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2529 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2530}
2531
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002532/* The value we need to program into the WM_LPx latency field */
2533static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2534{
2535 struct drm_i915_private *dev_priv = dev->dev_private;
2536
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002537 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002538 return 2 * level;
2539 else
2540 return dev_priv->wm.pri_latency[level];
2541}
2542
Imre Deak820c1982013-12-17 14:46:36 +02002543static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002544 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002545 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002546 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002547{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002548 struct intel_crtc *intel_crtc;
2549 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002550
Ville Syrjälä0362c782013-10-09 19:17:57 +03002551 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002552 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002553
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002554 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002555 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002556 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002557
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002558 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002559
Ville Syrjälä0362c782013-10-09 19:17:57 +03002560 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002561
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002562 /*
2563 * Maintain the watermark values even if the level is
2564 * disabled. Doing otherwise could cause underruns.
2565 */
2566 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002567 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002568 (r->pri_val << WM1_LP_SR_SHIFT) |
2569 r->cur_val;
2570
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002571 if (r->enable)
2572 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2573
Ville Syrjälä416f4722013-11-02 21:07:46 -07002574 if (INTEL_INFO(dev)->gen >= 8)
2575 results->wm_lp[wm_lp - 1] |=
2576 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2577 else
2578 results->wm_lp[wm_lp - 1] |=
2579 r->fbc_val << WM1_LP_FBC_SHIFT;
2580
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002581 /*
2582 * Always set WM1S_LP_EN when spr_val != 0, even if the
2583 * level is disabled. Doing otherwise could cause underruns.
2584 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002585 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2586 WARN_ON(wm_lp != 1);
2587 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2588 } else
2589 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002590 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002591
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002592 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002593 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002594 enum pipe pipe = intel_crtc->pipe;
Matt Roper396e33a2016-01-06 11:34:30 -08002595 const struct intel_wm_level *r =
2596 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002597
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002598 if (WARN_ON(!r->enable))
2599 continue;
2600
Matt Roper396e33a2016-01-06 11:34:30 -08002601 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002602
2603 results->wm_pipe[pipe] =
2604 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2605 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2606 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002607 }
2608}
2609
Paulo Zanoni861f3382013-05-31 10:19:21 -03002610/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2611 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002612static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002613 struct intel_pipe_wm *r1,
2614 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002615{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002616 int level, max_level = ilk_wm_max_level(dev);
2617 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002618
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002619 for (level = 1; level <= max_level; level++) {
2620 if (r1->wm[level].enable)
2621 level1 = level;
2622 if (r2->wm[level].enable)
2623 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002624 }
2625
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002626 if (level1 == level2) {
2627 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002628 return r2;
2629 else
2630 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002631 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002632 return r1;
2633 } else {
2634 return r2;
2635 }
2636}
2637
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002638/* dirty bits used to track which watermarks need changes */
2639#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2640#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2641#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2642#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2643#define WM_DIRTY_FBC (1 << 24)
2644#define WM_DIRTY_DDB (1 << 25)
2645
Damien Lespiau055e3932014-08-18 13:49:10 +01002646static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002647 const struct ilk_wm_values *old,
2648 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002649{
2650 unsigned int dirty = 0;
2651 enum pipe pipe;
2652 int wm_lp;
2653
Damien Lespiau055e3932014-08-18 13:49:10 +01002654 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002655 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2656 dirty |= WM_DIRTY_LINETIME(pipe);
2657 /* Must disable LP1+ watermarks too */
2658 dirty |= WM_DIRTY_LP_ALL;
2659 }
2660
2661 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2662 dirty |= WM_DIRTY_PIPE(pipe);
2663 /* Must disable LP1+ watermarks too */
2664 dirty |= WM_DIRTY_LP_ALL;
2665 }
2666 }
2667
2668 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2669 dirty |= WM_DIRTY_FBC;
2670 /* Must disable LP1+ watermarks too */
2671 dirty |= WM_DIRTY_LP_ALL;
2672 }
2673
2674 if (old->partitioning != new->partitioning) {
2675 dirty |= WM_DIRTY_DDB;
2676 /* Must disable LP1+ watermarks too */
2677 dirty |= WM_DIRTY_LP_ALL;
2678 }
2679
2680 /* LP1+ watermarks already deemed dirty, no need to continue */
2681 if (dirty & WM_DIRTY_LP_ALL)
2682 return dirty;
2683
2684 /* Find the lowest numbered LP1+ watermark in need of an update... */
2685 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2686 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2687 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2688 break;
2689 }
2690
2691 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2692 for (; wm_lp <= 3; wm_lp++)
2693 dirty |= WM_DIRTY_LP(wm_lp);
2694
2695 return dirty;
2696}
2697
Ville Syrjälä8553c182013-12-05 15:51:39 +02002698static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2699 unsigned int dirty)
2700{
Imre Deak820c1982013-12-17 14:46:36 +02002701 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002702 bool changed = false;
2703
2704 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2705 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2706 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2707 changed = true;
2708 }
2709 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2710 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2711 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2712 changed = true;
2713 }
2714 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2715 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2716 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2717 changed = true;
2718 }
2719
2720 /*
2721 * Don't touch WM1S_LP_EN here.
2722 * Doing so could cause underruns.
2723 */
2724
2725 return changed;
2726}
2727
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002728/*
2729 * The spec says we shouldn't write when we don't need, because every write
2730 * causes WMs to be re-evaluated, expending some power.
2731 */
Imre Deak820c1982013-12-17 14:46:36 +02002732static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2733 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002734{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002735 struct drm_device *dev = dev_priv->dev;
Imre Deak820c1982013-12-17 14:46:36 +02002736 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002737 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002738 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002739
Damien Lespiau055e3932014-08-18 13:49:10 +01002740 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002741 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002742 return;
2743
Ville Syrjälä8553c182013-12-05 15:51:39 +02002744 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002745
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002746 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002747 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002748 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002749 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002750 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002751 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2752
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002753 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002754 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002755 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002756 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002757 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002758 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2759
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002760 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002761 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002762 val = I915_READ(WM_MISC);
2763 if (results->partitioning == INTEL_DDB_PART_1_2)
2764 val &= ~WM_MISC_DATA_PARTITION_5_6;
2765 else
2766 val |= WM_MISC_DATA_PARTITION_5_6;
2767 I915_WRITE(WM_MISC, val);
2768 } else {
2769 val = I915_READ(DISP_ARB_CTL2);
2770 if (results->partitioning == INTEL_DDB_PART_1_2)
2771 val &= ~DISP_DATA_PARTITION_5_6;
2772 else
2773 val |= DISP_DATA_PARTITION_5_6;
2774 I915_WRITE(DISP_ARB_CTL2, val);
2775 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002776 }
2777
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002778 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002779 val = I915_READ(DISP_ARB_CTL);
2780 if (results->enable_fbc_wm)
2781 val &= ~DISP_FBC_WM_DIS;
2782 else
2783 val |= DISP_FBC_WM_DIS;
2784 I915_WRITE(DISP_ARB_CTL, val);
2785 }
2786
Imre Deak954911e2013-12-17 14:46:34 +02002787 if (dirty & WM_DIRTY_LP(1) &&
2788 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2789 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2790
2791 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002792 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2793 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2794 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2795 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2796 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002797
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002798 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002799 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002800 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002801 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002802 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002803 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002804
2805 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002806}
2807
Matt Roper396e33a2016-01-06 11:34:30 -08002808bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02002809{
2810 struct drm_i915_private *dev_priv = dev->dev_private;
2811
2812 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2813}
2814
Damien Lespiaub9cec072014-11-04 17:06:43 +00002815/*
2816 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
2817 * different active planes.
2818 */
2819
2820#define SKL_DDB_SIZE 896 /* in blocks */
Damien Lespiau43d735a2015-03-17 11:39:34 +02002821#define BXT_DDB_SIZE 512
Damien Lespiaub9cec072014-11-04 17:06:43 +00002822
Matt Roper024c9042015-09-24 15:53:11 -07002823/*
2824 * Return the index of a plane in the SKL DDB and wm result arrays. Primary
2825 * plane is always in slot 0, cursor is always in slot I915_MAX_PLANES-1, and
2826 * other universal planes are in indices 1..n. Note that this may leave unused
2827 * indices between the top "sprite" plane and the cursor.
2828 */
2829static int
2830skl_wm_plane_id(const struct intel_plane *plane)
2831{
2832 switch (plane->base.type) {
2833 case DRM_PLANE_TYPE_PRIMARY:
2834 return 0;
2835 case DRM_PLANE_TYPE_CURSOR:
2836 return PLANE_CURSOR;
2837 case DRM_PLANE_TYPE_OVERLAY:
2838 return plane->plane + 1;
2839 default:
2840 MISSING_CASE(plane->base.type);
2841 return plane->plane;
2842 }
2843}
2844
Damien Lespiaub9cec072014-11-04 17:06:43 +00002845static void
2846skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07002847 const struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00002848 const struct intel_wm_config *config,
Damien Lespiaub9cec072014-11-04 17:06:43 +00002849 struct skl_ddb_entry *alloc /* out */)
2850{
Matt Roper024c9042015-09-24 15:53:11 -07002851 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002852 struct drm_crtc *crtc;
2853 unsigned int pipe_size, ddb_size;
2854 int nth_active_pipe;
2855
Matt Roper024c9042015-09-24 15:53:11 -07002856 if (!cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00002857 alloc->start = 0;
2858 alloc->end = 0;
2859 return;
2860 }
2861
Damien Lespiau43d735a2015-03-17 11:39:34 +02002862 if (IS_BROXTON(dev))
2863 ddb_size = BXT_DDB_SIZE;
2864 else
2865 ddb_size = SKL_DDB_SIZE;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002866
2867 ddb_size -= 4; /* 4 blocks for bypass path allocation */
2868
2869 nth_active_pipe = 0;
2870 for_each_crtc(dev, crtc) {
Matt Roper3ef00282015-03-09 10:19:24 -07002871 if (!to_intel_crtc(crtc)->active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002872 continue;
2873
2874 if (crtc == for_crtc)
2875 break;
2876
2877 nth_active_pipe++;
2878 }
2879
2880 pipe_size = ddb_size / config->num_pipes_active;
2881 alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active;
Damien Lespiau16160e32014-11-04 17:06:53 +00002882 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002883}
2884
2885static unsigned int skl_cursor_allocation(const struct intel_wm_config *config)
2886{
2887 if (config->num_pipes_active == 1)
2888 return 32;
2889
2890 return 8;
2891}
2892
Damien Lespiaua269c582014-11-04 17:06:49 +00002893static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
2894{
2895 entry->start = reg & 0x3ff;
2896 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00002897 if (entry->end)
2898 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00002899}
2900
Damien Lespiau08db6652014-11-04 17:06:52 +00002901void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2902 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00002903{
Damien Lespiaua269c582014-11-04 17:06:49 +00002904 enum pipe pipe;
2905 int plane;
2906 u32 val;
2907
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02002908 memset(ddb, 0, sizeof(*ddb));
2909
Damien Lespiaua269c582014-11-04 17:06:49 +00002910 for_each_pipe(dev_priv, pipe) {
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02002911 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PIPE(pipe)))
2912 continue;
2913
Damien Lespiaudd740782015-02-28 14:54:08 +00002914 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00002915 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
2916 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
2917 val);
2918 }
2919
2920 val = I915_READ(CUR_BUF_CFG(pipe));
Matt Roper4969d332015-09-24 15:53:10 -07002921 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][PLANE_CURSOR],
2922 val);
Damien Lespiaua269c582014-11-04 17:06:49 +00002923 }
2924}
2925
Damien Lespiaub9cec072014-11-04 17:06:43 +00002926static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07002927skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
2928 const struct drm_plane_state *pstate,
2929 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002930{
Matt Roper024c9042015-09-24 15:53:11 -07002931 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
2932 struct drm_framebuffer *fb = pstate->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002933
2934 /* for planar format */
Matt Roper024c9042015-09-24 15:53:11 -07002935 if (fb->pixel_format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002936 if (y) /* y-plane data rate */
Matt Roper024c9042015-09-24 15:53:11 -07002937 return intel_crtc->config->pipe_src_w *
2938 intel_crtc->config->pipe_src_h *
2939 drm_format_plane_cpp(fb->pixel_format, 0);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002940 else /* uv-plane data rate */
Matt Roper024c9042015-09-24 15:53:11 -07002941 return (intel_crtc->config->pipe_src_w/2) *
2942 (intel_crtc->config->pipe_src_h/2) *
2943 drm_format_plane_cpp(fb->pixel_format, 1);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002944 }
2945
2946 /* for packed formats */
Matt Roper024c9042015-09-24 15:53:11 -07002947 return intel_crtc->config->pipe_src_w *
2948 intel_crtc->config->pipe_src_h *
2949 drm_format_plane_cpp(fb->pixel_format, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002950}
2951
2952/*
2953 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
2954 * a 8192x4096@32bpp framebuffer:
2955 * 3 * 4096 * 8192 * 4 < 2^32
2956 */
2957static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07002958skl_get_total_relative_data_rate(const struct intel_crtc_state *cstate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002959{
Matt Roper024c9042015-09-24 15:53:11 -07002960 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
2961 struct drm_device *dev = intel_crtc->base.dev;
2962 const struct intel_plane *intel_plane;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002963 unsigned int total_data_rate = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002964
Matt Roper024c9042015-09-24 15:53:11 -07002965 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
2966 const struct drm_plane_state *pstate = intel_plane->base.state;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002967
Matt Roper024c9042015-09-24 15:53:11 -07002968 if (pstate->fb == NULL)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002969 continue;
2970
Matt Roper024c9042015-09-24 15:53:11 -07002971 if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
2972 continue;
2973
2974 /* packed/uv */
2975 total_data_rate += skl_plane_relative_data_rate(cstate,
2976 pstate,
2977 0);
2978
2979 if (pstate->fb->pixel_format == DRM_FORMAT_NV12)
2980 /* y-plane */
2981 total_data_rate += skl_plane_relative_data_rate(cstate,
2982 pstate,
2983 1);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002984 }
2985
2986 return total_data_rate;
2987}
2988
2989static void
Matt Roper024c9042015-09-24 15:53:11 -07002990skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00002991 struct skl_ddb_allocation *ddb /* out */)
2992{
Matt Roper024c9042015-09-24 15:53:11 -07002993 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002994 struct drm_device *dev = crtc->dev;
Matt Roperaa363132015-09-24 15:53:18 -07002995 struct drm_i915_private *dev_priv = to_i915(dev);
2996 struct intel_wm_config *config = &dev_priv->wm.config;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002997 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper024c9042015-09-24 15:53:11 -07002998 struct intel_plane *intel_plane;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002999 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003000 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003001 uint16_t alloc_size, start, cursor_blocks;
Damien Lespiau80958152015-02-09 13:35:10 +00003002 uint16_t minimum[I915_MAX_PLANES];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003003 uint16_t y_minimum[I915_MAX_PLANES];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003004 unsigned int total_data_rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003005
Matt Roper024c9042015-09-24 15:53:11 -07003006 skl_ddb_get_pipe_allocation_limits(dev, cstate, config, alloc);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003007 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003008 if (alloc_size == 0) {
3009 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roper4969d332015-09-24 15:53:10 -07003010 memset(&ddb->plane[pipe][PLANE_CURSOR], 0,
3011 sizeof(ddb->plane[pipe][PLANE_CURSOR]));
Damien Lespiaub9cec072014-11-04 17:06:43 +00003012 return;
3013 }
3014
3015 cursor_blocks = skl_cursor_allocation(config);
Matt Roper4969d332015-09-24 15:53:10 -07003016 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - cursor_blocks;
3017 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003018
3019 alloc_size -= cursor_blocks;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003020 alloc->end -= cursor_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003021
Damien Lespiau80958152015-02-09 13:35:10 +00003022 /* 1. Allocate the mininum required blocks for each active plane */
Matt Roper024c9042015-09-24 15:53:11 -07003023 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
3024 struct drm_plane *plane = &intel_plane->base;
3025 struct drm_framebuffer *fb = plane->state->fb;
3026 int id = skl_wm_plane_id(intel_plane);
Damien Lespiau80958152015-02-09 13:35:10 +00003027
Matt Roper024c9042015-09-24 15:53:11 -07003028 if (fb == NULL)
3029 continue;
3030 if (plane->type == DRM_PLANE_TYPE_CURSOR)
Damien Lespiau80958152015-02-09 13:35:10 +00003031 continue;
3032
Matt Roper024c9042015-09-24 15:53:11 -07003033 minimum[id] = 8;
3034 alloc_size -= minimum[id];
3035 y_minimum[id] = (fb->pixel_format == DRM_FORMAT_NV12) ? 8 : 0;
3036 alloc_size -= y_minimum[id];
Damien Lespiau80958152015-02-09 13:35:10 +00003037 }
3038
Damien Lespiaub9cec072014-11-04 17:06:43 +00003039 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003040 * 2. Distribute the remaining space in proportion to the amount of
3041 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003042 *
3043 * FIXME: we may not allocate every single block here.
3044 */
Matt Roper024c9042015-09-24 15:53:11 -07003045 total_data_rate = skl_get_total_relative_data_rate(cstate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003046
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003047 start = alloc->start;
Matt Roper024c9042015-09-24 15:53:11 -07003048 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
3049 struct drm_plane *plane = &intel_plane->base;
3050 struct drm_plane_state *pstate = intel_plane->base.state;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003051 unsigned int data_rate, y_data_rate;
3052 uint16_t plane_blocks, y_plane_blocks = 0;
Matt Roper024c9042015-09-24 15:53:11 -07003053 int id = skl_wm_plane_id(intel_plane);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003054
Matt Roper024c9042015-09-24 15:53:11 -07003055 if (pstate->fb == NULL)
3056 continue;
3057 if (plane->type == DRM_PLANE_TYPE_CURSOR)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003058 continue;
3059
Matt Roper024c9042015-09-24 15:53:11 -07003060 data_rate = skl_plane_relative_data_rate(cstate, pstate, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003061
3062 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003063 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003064 * promote the expression to 64 bits to avoid overflowing, the
3065 * result is < available as data_rate / total_data_rate < 1
3066 */
Matt Roper024c9042015-09-24 15:53:11 -07003067 plane_blocks = minimum[id];
Damien Lespiau80958152015-02-09 13:35:10 +00003068 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3069 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003070
Matt Roper024c9042015-09-24 15:53:11 -07003071 ddb->plane[pipe][id].start = start;
3072 ddb->plane[pipe][id].end = start + plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003073
3074 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003075
3076 /*
3077 * allocation for y_plane part of planar format:
3078 */
Matt Roper024c9042015-09-24 15:53:11 -07003079 if (pstate->fb->pixel_format == DRM_FORMAT_NV12) {
3080 y_data_rate = skl_plane_relative_data_rate(cstate,
3081 pstate,
3082 1);
3083 y_plane_blocks = y_minimum[id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003084 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3085 total_data_rate);
3086
Matt Roper024c9042015-09-24 15:53:11 -07003087 ddb->y_plane[pipe][id].start = start;
3088 ddb->y_plane[pipe][id].end = start + y_plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003089
3090 start += y_plane_blocks;
3091 }
3092
Damien Lespiaub9cec072014-11-04 17:06:43 +00003093 }
3094
3095}
3096
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02003097static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003098{
3099 /* TODO: Take into account the scalers once we support them */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02003100 return config->base.adjusted_mode.crtc_clock;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003101}
3102
3103/*
3104 * The max latency should be 257 (max the punit can code is 255 and we add 2us
3105 * for the read latency) and bytes_per_pixel should always be <= 8, so that
3106 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3107 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3108*/
3109static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
3110 uint32_t latency)
3111{
3112 uint32_t wm_intermediate_val, ret;
3113
3114 if (latency == 0)
3115 return UINT_MAX;
3116
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003117 wm_intermediate_val = latency * pixel_rate * bytes_per_pixel / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003118 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
3119
3120 return ret;
3121}
3122
3123static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
3124 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003125 uint64_t tiling, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003126{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003127 uint32_t ret;
3128 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3129 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003130
3131 if (latency == 0)
3132 return UINT_MAX;
3133
3134 plane_bytes_per_line = horiz_pixels * bytes_per_pixel;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003135
3136 if (tiling == I915_FORMAT_MOD_Y_TILED ||
3137 tiling == I915_FORMAT_MOD_Yf_TILED) {
3138 plane_bytes_per_line *= 4;
3139 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3140 plane_blocks_per_line /= 4;
3141 } else {
3142 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3143 }
3144
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003145 wm_intermediate_val = latency * pixel_rate;
3146 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003147 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003148
3149 return ret;
3150}
3151
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003152static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb,
3153 const struct intel_crtc *intel_crtc)
3154{
3155 struct drm_device *dev = intel_crtc->base.dev;
3156 struct drm_i915_private *dev_priv = dev->dev_private;
3157 const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003158
Kumar, Maheshe6d90022015-10-23 09:41:34 -07003159 /*
3160 * If ddb allocation of pipes changed, it may require recalculation of
3161 * watermarks
3162 */
3163 if (memcmp(new_ddb->pipe, cur_ddb->pipe, sizeof(new_ddb->pipe)))
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003164 return true;
3165
3166 return false;
3167}
3168
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003169static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
Matt Roper024c9042015-09-24 15:53:11 -07003170 struct intel_crtc_state *cstate,
3171 struct intel_plane *intel_plane,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003172 uint16_t ddb_allocation,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003173 int level,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003174 uint16_t *out_blocks, /* out */
3175 uint8_t *out_lines /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003176{
Matt Roper024c9042015-09-24 15:53:11 -07003177 struct drm_plane *plane = &intel_plane->base;
3178 struct drm_framebuffer *fb = plane->state->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003179 uint32_t latency = dev_priv->wm.skl_latency[level];
3180 uint32_t method1, method2;
3181 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3182 uint32_t res_blocks, res_lines;
3183 uint32_t selected_result;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003184 uint8_t bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003185
Matt Roper024c9042015-09-24 15:53:11 -07003186 if (latency == 0 || !cstate->base.active || !fb)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003187 return false;
3188
Matt Roper024c9042015-09-24 15:53:11 -07003189 bytes_per_pixel = drm_format_plane_cpp(fb->pixel_format, 0);
3190 method1 = skl_wm_method1(skl_pipe_pixel_rate(cstate),
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003191 bytes_per_pixel,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003192 latency);
Matt Roper024c9042015-09-24 15:53:11 -07003193 method2 = skl_wm_method2(skl_pipe_pixel_rate(cstate),
3194 cstate->base.adjusted_mode.crtc_htotal,
3195 cstate->pipe_src_w,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003196 bytes_per_pixel,
Matt Roper024c9042015-09-24 15:53:11 -07003197 fb->modifier[0],
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003198 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003199
Matt Roper024c9042015-09-24 15:53:11 -07003200 plane_bytes_per_line = cstate->pipe_src_w * bytes_per_pixel;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003201 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003202
Matt Roper024c9042015-09-24 15:53:11 -07003203 if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED ||
3204 fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003205 uint32_t min_scanlines = 4;
3206 uint32_t y_tile_minimum;
Matt Roper024c9042015-09-24 15:53:11 -07003207 if (intel_rotation_90_or_270(plane->state->rotation)) {
3208 int bpp = (fb->pixel_format == DRM_FORMAT_NV12) ?
3209 drm_format_plane_cpp(fb->pixel_format, 1) :
3210 drm_format_plane_cpp(fb->pixel_format, 0);
3211
3212 switch (bpp) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003213 case 1:
3214 min_scanlines = 16;
3215 break;
3216 case 2:
3217 min_scanlines = 8;
3218 break;
3219 case 8:
3220 WARN(1, "Unsupported pixel depth for rotation");
kbuild test robot2f0b5792015-03-26 22:30:21 +08003221 }
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003222 }
3223 y_tile_minimum = plane_blocks_per_line * min_scanlines;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003224 selected_result = max(method2, y_tile_minimum);
3225 } else {
3226 if ((ddb_allocation / plane_blocks_per_line) >= 1)
3227 selected_result = min(method1, method2);
3228 else
3229 selected_result = method1;
3230 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003231
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003232 res_blocks = selected_result + 1;
3233 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003234
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003235 if (level >= 1 && level <= 7) {
Matt Roper024c9042015-09-24 15:53:11 -07003236 if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED ||
3237 fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED)
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003238 res_lines += 4;
3239 else
3240 res_blocks++;
3241 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003242
3243 if (res_blocks >= ddb_allocation || res_lines > 31)
Damien Lespiaue6d66172014-11-04 17:06:55 +00003244 return false;
3245
3246 *out_blocks = res_blocks;
3247 *out_lines = res_lines;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003248
3249 return true;
3250}
3251
3252static void skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3253 struct skl_ddb_allocation *ddb,
Matt Roper024c9042015-09-24 15:53:11 -07003254 struct intel_crtc_state *cstate,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003255 int level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003256 struct skl_wm_level *result)
3257{
Matt Roper024c9042015-09-24 15:53:11 -07003258 struct drm_device *dev = dev_priv->dev;
3259 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
3260 struct intel_plane *intel_plane;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003261 uint16_t ddb_blocks;
Matt Roper024c9042015-09-24 15:53:11 -07003262 enum pipe pipe = intel_crtc->pipe;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003263
Matt Roper024c9042015-09-24 15:53:11 -07003264 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
3265 int i = skl_wm_plane_id(intel_plane);
3266
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003267 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
3268
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003269 result->plane_en[i] = skl_compute_plane_wm(dev_priv,
Matt Roper024c9042015-09-24 15:53:11 -07003270 cstate,
3271 intel_plane,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003272 ddb_blocks,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003273 level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003274 &result->plane_res_b[i],
3275 &result->plane_res_l[i]);
3276 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003277}
3278
Damien Lespiau407b50f2014-11-04 17:06:57 +00003279static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07003280skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003281{
Matt Roper024c9042015-09-24 15:53:11 -07003282 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003283 return 0;
3284
Matt Roper024c9042015-09-24 15:53:11 -07003285 if (WARN_ON(skl_pipe_pixel_rate(cstate) == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003286 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003287
Matt Roper024c9042015-09-24 15:53:11 -07003288 return DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal * 1000,
3289 skl_pipe_pixel_rate(cstate));
Damien Lespiau407b50f2014-11-04 17:06:57 +00003290}
3291
Matt Roper024c9042015-09-24 15:53:11 -07003292static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003293 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003294{
Matt Roper024c9042015-09-24 15:53:11 -07003295 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiau9414f562014-11-04 17:06:58 +00003296 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper024c9042015-09-24 15:53:11 -07003297 struct intel_plane *intel_plane;
Damien Lespiau9414f562014-11-04 17:06:58 +00003298
Matt Roper024c9042015-09-24 15:53:11 -07003299 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003300 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003301
3302 /* Until we know more, just disable transition WMs */
Matt Roper024c9042015-09-24 15:53:11 -07003303 for_each_intel_plane_on_crtc(crtc->dev, intel_crtc, intel_plane) {
3304 int i = skl_wm_plane_id(intel_plane);
3305
Damien Lespiau9414f562014-11-04 17:06:58 +00003306 trans_wm->plane_en[i] = false;
Matt Roper024c9042015-09-24 15:53:11 -07003307 }
Damien Lespiau407b50f2014-11-04 17:06:57 +00003308}
3309
Matt Roper024c9042015-09-24 15:53:11 -07003310static void skl_compute_pipe_wm(struct intel_crtc_state *cstate,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003311 struct skl_ddb_allocation *ddb,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003312 struct skl_pipe_wm *pipe_wm)
3313{
Matt Roper024c9042015-09-24 15:53:11 -07003314 struct drm_device *dev = cstate->base.crtc->dev;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003315 const struct drm_i915_private *dev_priv = dev->dev_private;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003316 int level, max_level = ilk_wm_max_level(dev);
3317
3318 for (level = 0; level <= max_level; level++) {
Matt Roper024c9042015-09-24 15:53:11 -07003319 skl_compute_wm_level(dev_priv, ddb, cstate,
3320 level, &pipe_wm->wm[level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003321 }
Matt Roper024c9042015-09-24 15:53:11 -07003322 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003323
Matt Roper024c9042015-09-24 15:53:11 -07003324 skl_compute_transition_wm(cstate, &pipe_wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003325}
3326
3327static void skl_compute_wm_results(struct drm_device *dev,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003328 struct skl_pipe_wm *p_wm,
3329 struct skl_wm_values *r,
3330 struct intel_crtc *intel_crtc)
3331{
3332 int level, max_level = ilk_wm_max_level(dev);
3333 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau9414f562014-11-04 17:06:58 +00003334 uint32_t temp;
3335 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003336
3337 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003338 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3339 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003340
3341 temp |= p_wm->wm[level].plane_res_l[i] <<
3342 PLANE_WM_LINES_SHIFT;
3343 temp |= p_wm->wm[level].plane_res_b[i];
3344 if (p_wm->wm[level].plane_en[i])
3345 temp |= PLANE_WM_EN;
3346
3347 r->plane[pipe][i][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003348 }
3349
3350 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003351
Matt Roper4969d332015-09-24 15:53:10 -07003352 temp |= p_wm->wm[level].plane_res_l[PLANE_CURSOR] << PLANE_WM_LINES_SHIFT;
3353 temp |= p_wm->wm[level].plane_res_b[PLANE_CURSOR];
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003354
Matt Roper4969d332015-09-24 15:53:10 -07003355 if (p_wm->wm[level].plane_en[PLANE_CURSOR])
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003356 temp |= PLANE_WM_EN;
3357
Matt Roper4969d332015-09-24 15:53:10 -07003358 r->plane[pipe][PLANE_CURSOR][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003359
3360 }
3361
Damien Lespiau9414f562014-11-04 17:06:58 +00003362 /* transition WMs */
3363 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3364 temp = 0;
3365 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
3366 temp |= p_wm->trans_wm.plane_res_b[i];
3367 if (p_wm->trans_wm.plane_en[i])
3368 temp |= PLANE_WM_EN;
3369
3370 r->plane_trans[pipe][i] = temp;
3371 }
3372
3373 temp = 0;
Matt Roper4969d332015-09-24 15:53:10 -07003374 temp |= p_wm->trans_wm.plane_res_l[PLANE_CURSOR] << PLANE_WM_LINES_SHIFT;
3375 temp |= p_wm->trans_wm.plane_res_b[PLANE_CURSOR];
3376 if (p_wm->trans_wm.plane_en[PLANE_CURSOR])
Damien Lespiau9414f562014-11-04 17:06:58 +00003377 temp |= PLANE_WM_EN;
3378
Matt Roper4969d332015-09-24 15:53:10 -07003379 r->plane_trans[pipe][PLANE_CURSOR] = temp;
Damien Lespiau9414f562014-11-04 17:06:58 +00003380
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003381 r->wm_linetime[pipe] = p_wm->linetime;
3382}
3383
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003384static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
3385 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00003386 const struct skl_ddb_entry *entry)
3387{
3388 if (entry->end)
3389 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3390 else
3391 I915_WRITE(reg, 0);
3392}
3393
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003394static void skl_write_wm_values(struct drm_i915_private *dev_priv,
3395 const struct skl_wm_values *new)
3396{
3397 struct drm_device *dev = dev_priv->dev;
3398 struct intel_crtc *crtc;
3399
Jani Nikula19c80542015-12-16 12:48:16 +02003400 for_each_intel_crtc(dev, crtc) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003401 int i, level, max_level = ilk_wm_max_level(dev);
3402 enum pipe pipe = crtc->pipe;
3403
Damien Lespiau5d374d92014-11-04 17:07:00 +00003404 if (!new->dirty[pipe])
3405 continue;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003406
Damien Lespiau5d374d92014-11-04 17:07:00 +00003407 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
3408
3409 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003410 for (i = 0; i < intel_num_planes(crtc); i++)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003411 I915_WRITE(PLANE_WM(pipe, i, level),
3412 new->plane[pipe][i][level]);
3413 I915_WRITE(CUR_WM(pipe, level),
Matt Roper4969d332015-09-24 15:53:10 -07003414 new->plane[pipe][PLANE_CURSOR][level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003415 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003416 for (i = 0; i < intel_num_planes(crtc); i++)
3417 I915_WRITE(PLANE_WM_TRANS(pipe, i),
3418 new->plane_trans[pipe][i]);
Matt Roper4969d332015-09-24 15:53:10 -07003419 I915_WRITE(CUR_WM_TRANS(pipe),
3420 new->plane_trans[pipe][PLANE_CURSOR]);
Damien Lespiau5d374d92014-11-04 17:07:00 +00003421
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003422 for (i = 0; i < intel_num_planes(crtc); i++) {
Damien Lespiau5d374d92014-11-04 17:07:00 +00003423 skl_ddb_entry_write(dev_priv,
3424 PLANE_BUF_CFG(pipe, i),
3425 &new->ddb.plane[pipe][i]);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003426 skl_ddb_entry_write(dev_priv,
3427 PLANE_NV12_BUF_CFG(pipe, i),
3428 &new->ddb.y_plane[pipe][i]);
3429 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003430
3431 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
Matt Roper4969d332015-09-24 15:53:10 -07003432 &new->ddb.plane[pipe][PLANE_CURSOR]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003433 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003434}
3435
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003436/*
3437 * When setting up a new DDB allocation arrangement, we need to correctly
3438 * sequence the times at which the new allocations for the pipes are taken into
3439 * account or we'll have pipes fetching from space previously allocated to
3440 * another pipe.
3441 *
3442 * Roughly the sequence looks like:
3443 * 1. re-allocate the pipe(s) with the allocation being reduced and not
3444 * overlapping with a previous light-up pipe (another way to put it is:
3445 * pipes with their new allocation strickly included into their old ones).
3446 * 2. re-allocate the other pipes that get their allocation reduced
3447 * 3. allocate the pipes having their allocation increased
3448 *
3449 * Steps 1. and 2. are here to take care of the following case:
3450 * - Initially DDB looks like this:
3451 * | B | C |
3452 * - enable pipe A.
3453 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
3454 * allocation
3455 * | A | B | C |
3456 *
3457 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
3458 */
3459
Damien Lespiaud21b7952014-11-04 17:07:03 +00003460static void
3461skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003462{
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003463 int plane;
3464
Damien Lespiaud21b7952014-11-04 17:07:03 +00003465 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
3466
Damien Lespiaudd740782015-02-28 14:54:08 +00003467 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003468 I915_WRITE(PLANE_SURF(pipe, plane),
3469 I915_READ(PLANE_SURF(pipe, plane)));
3470 }
3471 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3472}
3473
3474static bool
3475skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
3476 const struct skl_ddb_allocation *new,
3477 enum pipe pipe)
3478{
3479 uint16_t old_size, new_size;
3480
3481 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
3482 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
3483
3484 return old_size != new_size &&
3485 new->pipe[pipe].start >= old->pipe[pipe].start &&
3486 new->pipe[pipe].end <= old->pipe[pipe].end;
3487}
3488
3489static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
3490 struct skl_wm_values *new_values)
3491{
3492 struct drm_device *dev = dev_priv->dev;
3493 struct skl_ddb_allocation *cur_ddb, *new_ddb;
Ville Syrjäläc929cb42015-04-02 18:28:07 +03003494 bool reallocated[I915_MAX_PIPES] = {};
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003495 struct intel_crtc *crtc;
3496 enum pipe pipe;
3497
3498 new_ddb = &new_values->ddb;
3499 cur_ddb = &dev_priv->wm.skl_hw.ddb;
3500
3501 /*
3502 * First pass: flush the pipes with the new allocation contained into
3503 * the old space.
3504 *
3505 * We'll wait for the vblank on those pipes to ensure we can safely
3506 * re-allocate the freed space without this pipe fetching from it.
3507 */
3508 for_each_intel_crtc(dev, crtc) {
3509 if (!crtc->active)
3510 continue;
3511
3512 pipe = crtc->pipe;
3513
3514 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
3515 continue;
3516
Damien Lespiaud21b7952014-11-04 17:07:03 +00003517 skl_wm_flush_pipe(dev_priv, pipe, 1);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003518 intel_wait_for_vblank(dev, pipe);
3519
3520 reallocated[pipe] = true;
3521 }
3522
3523
3524 /*
3525 * Second pass: flush the pipes that are having their allocation
3526 * reduced, but overlapping with a previous allocation.
3527 *
3528 * Here as well we need to wait for the vblank to make sure the freed
3529 * space is not used anymore.
3530 */
3531 for_each_intel_crtc(dev, crtc) {
3532 if (!crtc->active)
3533 continue;
3534
3535 pipe = crtc->pipe;
3536
3537 if (reallocated[pipe])
3538 continue;
3539
3540 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3541 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
Damien Lespiaud21b7952014-11-04 17:07:03 +00003542 skl_wm_flush_pipe(dev_priv, pipe, 2);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003543 intel_wait_for_vblank(dev, pipe);
Sonika Jindald9d8e6b2014-12-11 17:58:15 +05303544 reallocated[pipe] = true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003545 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003546 }
3547
3548 /*
3549 * Third pass: flush the pipes that got more space allocated.
3550 *
3551 * We don't need to actively wait for the update here, next vblank
3552 * will just get more DDB space with the correct WM values.
3553 */
3554 for_each_intel_crtc(dev, crtc) {
3555 if (!crtc->active)
3556 continue;
3557
3558 pipe = crtc->pipe;
3559
3560 /*
3561 * At this point, only the pipes more space than before are
3562 * left to re-allocate.
3563 */
3564 if (reallocated[pipe])
3565 continue;
3566
Damien Lespiaud21b7952014-11-04 17:07:03 +00003567 skl_wm_flush_pipe(dev_priv, pipe, 3);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003568 }
3569}
3570
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003571static bool skl_update_pipe_wm(struct drm_crtc *crtc,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003572 struct skl_ddb_allocation *ddb, /* out */
3573 struct skl_pipe_wm *pipe_wm /* out */)
3574{
3575 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper024c9042015-09-24 15:53:11 -07003576 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003577
Matt Roperaa363132015-09-24 15:53:18 -07003578 skl_allocate_pipe_ddb(cstate, ddb);
Matt Roper024c9042015-09-24 15:53:11 -07003579 skl_compute_pipe_wm(cstate, ddb, pipe_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003580
Matt Roper4e0963c2015-09-24 15:53:15 -07003581 if (!memcmp(&intel_crtc->wm.active.skl, pipe_wm, sizeof(*pipe_wm)))
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003582 return false;
3583
Matt Roper4e0963c2015-09-24 15:53:15 -07003584 intel_crtc->wm.active.skl = *pipe_wm;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003585
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003586 return true;
3587}
3588
3589static void skl_update_other_pipe_wm(struct drm_device *dev,
3590 struct drm_crtc *crtc,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003591 struct skl_wm_values *r)
3592{
3593 struct intel_crtc *intel_crtc;
3594 struct intel_crtc *this_crtc = to_intel_crtc(crtc);
3595
3596 /*
3597 * If the WM update hasn't changed the allocation for this_crtc (the
3598 * crtc we are currently computing the new WM values for), other
3599 * enabled crtcs will keep the same allocation and we don't need to
3600 * recompute anything for them.
3601 */
3602 if (!skl_ddb_allocation_changed(&r->ddb, this_crtc))
3603 return;
3604
3605 /*
3606 * Otherwise, because of this_crtc being freshly enabled/disabled, the
3607 * other active pipes need new DDB allocation and WM values.
3608 */
Jani Nikula19c80542015-12-16 12:48:16 +02003609 for_each_intel_crtc(dev, intel_crtc) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003610 struct skl_pipe_wm pipe_wm = {};
3611 bool wm_changed;
3612
3613 if (this_crtc->pipe == intel_crtc->pipe)
3614 continue;
3615
3616 if (!intel_crtc->active)
3617 continue;
3618
Matt Roperaa363132015-09-24 15:53:18 -07003619 wm_changed = skl_update_pipe_wm(&intel_crtc->base,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003620 &r->ddb, &pipe_wm);
3621
3622 /*
3623 * If we end up re-computing the other pipe WM values, it's
3624 * because it was really needed, so we expect the WM values to
3625 * be different.
3626 */
3627 WARN_ON(!wm_changed);
3628
Matt Roper024c9042015-09-24 15:53:11 -07003629 skl_compute_wm_results(dev, &pipe_wm, r, intel_crtc);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003630 r->dirty[intel_crtc->pipe] = true;
3631 }
3632}
3633
Bob Paauweadda50b2015-07-21 10:42:53 -07003634static void skl_clear_wm(struct skl_wm_values *watermarks, enum pipe pipe)
3635{
3636 watermarks->wm_linetime[pipe] = 0;
3637 memset(watermarks->plane[pipe], 0,
3638 sizeof(uint32_t) * 8 * I915_MAX_PLANES);
Bob Paauweadda50b2015-07-21 10:42:53 -07003639 memset(watermarks->plane_trans[pipe],
3640 0, sizeof(uint32_t) * I915_MAX_PLANES);
Matt Roper4969d332015-09-24 15:53:10 -07003641 watermarks->plane_trans[pipe][PLANE_CURSOR] = 0;
Bob Paauweadda50b2015-07-21 10:42:53 -07003642
3643 /* Clear ddb entries for pipe */
3644 memset(&watermarks->ddb.pipe[pipe], 0, sizeof(struct skl_ddb_entry));
3645 memset(&watermarks->ddb.plane[pipe], 0,
3646 sizeof(struct skl_ddb_entry) * I915_MAX_PLANES);
3647 memset(&watermarks->ddb.y_plane[pipe], 0,
3648 sizeof(struct skl_ddb_entry) * I915_MAX_PLANES);
Matt Roper4969d332015-09-24 15:53:10 -07003649 memset(&watermarks->ddb.plane[pipe][PLANE_CURSOR], 0,
3650 sizeof(struct skl_ddb_entry));
Bob Paauweadda50b2015-07-21 10:42:53 -07003651
3652}
3653
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003654static void skl_update_wm(struct drm_crtc *crtc)
3655{
3656 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3657 struct drm_device *dev = crtc->dev;
3658 struct drm_i915_private *dev_priv = dev->dev_private;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003659 struct skl_wm_values *results = &dev_priv->wm.skl_results;
Matt Roper4e0963c2015-09-24 15:53:15 -07003660 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
3661 struct skl_pipe_wm *pipe_wm = &cstate->wm.optimal.skl;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003662
Bob Paauweadda50b2015-07-21 10:42:53 -07003663
3664 /* Clear all dirty flags */
3665 memset(results->dirty, 0, sizeof(bool) * I915_MAX_PIPES);
3666
3667 skl_clear_wm(results, intel_crtc->pipe);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003668
Matt Roperaa363132015-09-24 15:53:18 -07003669 if (!skl_update_pipe_wm(crtc, &results->ddb, pipe_wm))
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003670 return;
3671
Matt Roper4e0963c2015-09-24 15:53:15 -07003672 skl_compute_wm_results(dev, pipe_wm, results, intel_crtc);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003673 results->dirty[intel_crtc->pipe] = true;
3674
Matt Roperaa363132015-09-24 15:53:18 -07003675 skl_update_other_pipe_wm(dev, crtc, results);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003676 skl_write_wm_values(dev_priv, results);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003677 skl_flush_wm_values(dev_priv, results);
Damien Lespiau53b0deb2014-11-04 17:06:48 +00003678
3679 /* store the new configuration */
3680 dev_priv->wm.skl_hw = *results;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003681}
3682
Ville Syrjäläd8905652016-01-14 14:53:35 +02003683static void ilk_compute_wm_config(struct drm_device *dev,
3684 struct intel_wm_config *config)
3685{
3686 struct intel_crtc *crtc;
3687
3688 /* Compute the currently _active_ config */
3689 for_each_intel_crtc(dev, crtc) {
3690 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
3691
3692 if (!wm->pipe_enabled)
3693 continue;
3694
3695 config->sprites_enabled |= wm->sprites_enabled;
3696 config->sprites_scaled |= wm->sprites_scaled;
3697 config->num_pipes_active++;
3698 }
3699}
3700
Matt Roper396e33a2016-01-06 11:34:30 -08003701static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003702{
Matt Roper396e33a2016-01-06 11:34:30 -08003703 struct drm_device *dev = dev_priv->dev;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07003704 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02003705 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02003706 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02003707 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003708 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07003709
Ville Syrjäläd8905652016-01-14 14:53:35 +02003710 ilk_compute_wm_config(dev, &config);
3711
3712 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
3713 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03003714
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003715 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03003716 if (INTEL_INFO(dev)->gen >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02003717 config.num_pipes_active == 1 && config.sprites_enabled) {
3718 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
3719 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003720
Imre Deak820c1982013-12-17 14:46:36 +02003721 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003722 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003723 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003724 }
3725
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003726 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003727 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003728
Imre Deak820c1982013-12-17 14:46:36 +02003729 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003730
Imre Deak820c1982013-12-17 14:46:36 +02003731 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003732}
3733
Matt Roper396e33a2016-01-06 11:34:30 -08003734static void ilk_initial_watermarks(struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07003735{
Matt Roper396e33a2016-01-06 11:34:30 -08003736 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
3737 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07003738
Matt Roper396e33a2016-01-06 11:34:30 -08003739 mutex_lock(&dev_priv->wm.wm_mutex);
3740 intel_crtc->wm.active.ilk = cstate->wm.intermediate;
3741 ilk_program_watermarks(dev_priv);
3742 mutex_unlock(&dev_priv->wm.wm_mutex);
3743}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07003744
Matt Roper396e33a2016-01-06 11:34:30 -08003745static void ilk_optimize_watermarks(struct intel_crtc_state *cstate)
3746{
3747 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
3748 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
3749
3750 mutex_lock(&dev_priv->wm.wm_mutex);
3751 if (cstate->wm.need_postvbl_update) {
3752 intel_crtc->wm.active.ilk = cstate->wm.optimal.ilk;
3753 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07003754 }
Matt Roper396e33a2016-01-06 11:34:30 -08003755 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07003756}
3757
Pradeep Bhat30789992014-11-04 17:06:45 +00003758static void skl_pipe_wm_active_state(uint32_t val,
3759 struct skl_pipe_wm *active,
3760 bool is_transwm,
3761 bool is_cursor,
3762 int i,
3763 int level)
3764{
3765 bool is_enabled = (val & PLANE_WM_EN) != 0;
3766
3767 if (!is_transwm) {
3768 if (!is_cursor) {
3769 active->wm[level].plane_en[i] = is_enabled;
3770 active->wm[level].plane_res_b[i] =
3771 val & PLANE_WM_BLOCKS_MASK;
3772 active->wm[level].plane_res_l[i] =
3773 (val >> PLANE_WM_LINES_SHIFT) &
3774 PLANE_WM_LINES_MASK;
3775 } else {
Matt Roper4969d332015-09-24 15:53:10 -07003776 active->wm[level].plane_en[PLANE_CURSOR] = is_enabled;
3777 active->wm[level].plane_res_b[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003778 val & PLANE_WM_BLOCKS_MASK;
Matt Roper4969d332015-09-24 15:53:10 -07003779 active->wm[level].plane_res_l[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003780 (val >> PLANE_WM_LINES_SHIFT) &
3781 PLANE_WM_LINES_MASK;
3782 }
3783 } else {
3784 if (!is_cursor) {
3785 active->trans_wm.plane_en[i] = is_enabled;
3786 active->trans_wm.plane_res_b[i] =
3787 val & PLANE_WM_BLOCKS_MASK;
3788 active->trans_wm.plane_res_l[i] =
3789 (val >> PLANE_WM_LINES_SHIFT) &
3790 PLANE_WM_LINES_MASK;
3791 } else {
Matt Roper4969d332015-09-24 15:53:10 -07003792 active->trans_wm.plane_en[PLANE_CURSOR] = is_enabled;
3793 active->trans_wm.plane_res_b[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003794 val & PLANE_WM_BLOCKS_MASK;
Matt Roper4969d332015-09-24 15:53:10 -07003795 active->trans_wm.plane_res_l[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003796 (val >> PLANE_WM_LINES_SHIFT) &
3797 PLANE_WM_LINES_MASK;
3798 }
3799 }
3800}
3801
3802static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3803{
3804 struct drm_device *dev = crtc->dev;
3805 struct drm_i915_private *dev_priv = dev->dev_private;
3806 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
3807 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07003808 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
3809 struct skl_pipe_wm *active = &cstate->wm.optimal.skl;
Pradeep Bhat30789992014-11-04 17:06:45 +00003810 enum pipe pipe = intel_crtc->pipe;
3811 int level, i, max_level;
3812 uint32_t temp;
3813
3814 max_level = ilk_wm_max_level(dev);
3815
3816 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3817
3818 for (level = 0; level <= max_level; level++) {
3819 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3820 hw->plane[pipe][i][level] =
3821 I915_READ(PLANE_WM(pipe, i, level));
Matt Roper4969d332015-09-24 15:53:10 -07003822 hw->plane[pipe][PLANE_CURSOR][level] = I915_READ(CUR_WM(pipe, level));
Pradeep Bhat30789992014-11-04 17:06:45 +00003823 }
3824
3825 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3826 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
Matt Roper4969d332015-09-24 15:53:10 -07003827 hw->plane_trans[pipe][PLANE_CURSOR] = I915_READ(CUR_WM_TRANS(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00003828
Matt Roper3ef00282015-03-09 10:19:24 -07003829 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00003830 return;
3831
3832 hw->dirty[pipe] = true;
3833
3834 active->linetime = hw->wm_linetime[pipe];
3835
3836 for (level = 0; level <= max_level; level++) {
3837 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3838 temp = hw->plane[pipe][i][level];
3839 skl_pipe_wm_active_state(temp, active, false,
3840 false, i, level);
3841 }
Matt Roper4969d332015-09-24 15:53:10 -07003842 temp = hw->plane[pipe][PLANE_CURSOR][level];
Pradeep Bhat30789992014-11-04 17:06:45 +00003843 skl_pipe_wm_active_state(temp, active, false, true, i, level);
3844 }
3845
3846 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3847 temp = hw->plane_trans[pipe][i];
3848 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
3849 }
3850
Matt Roper4969d332015-09-24 15:53:10 -07003851 temp = hw->plane_trans[pipe][PLANE_CURSOR];
Pradeep Bhat30789992014-11-04 17:06:45 +00003852 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
Matt Roper4e0963c2015-09-24 15:53:15 -07003853
3854 intel_crtc->wm.active.skl = *active;
Pradeep Bhat30789992014-11-04 17:06:45 +00003855}
3856
3857void skl_wm_get_hw_state(struct drm_device *dev)
3858{
Damien Lespiaua269c582014-11-04 17:06:49 +00003859 struct drm_i915_private *dev_priv = dev->dev_private;
3860 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00003861 struct drm_crtc *crtc;
3862
Damien Lespiaua269c582014-11-04 17:06:49 +00003863 skl_ddb_get_hw_state(dev_priv, ddb);
Pradeep Bhat30789992014-11-04 17:06:45 +00003864 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3865 skl_pipe_wm_get_hw_state(crtc);
3866}
3867
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003868static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3869{
3870 struct drm_device *dev = crtc->dev;
3871 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003872 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003873 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07003874 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
3875 struct intel_pipe_wm *active = &cstate->wm.optimal.ilk;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003876 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003877 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003878 [PIPE_A] = WM0_PIPEA_ILK,
3879 [PIPE_B] = WM0_PIPEB_ILK,
3880 [PIPE_C] = WM0_PIPEC_IVB,
3881 };
3882
3883 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003884 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02003885 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003886
Matt Roper3ef00282015-03-09 10:19:24 -07003887 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003888
3889 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003890 u32 tmp = hw->wm_pipe[pipe];
3891
3892 /*
3893 * For active pipes LP0 watermark is marked as
3894 * enabled, and LP1+ watermaks as disabled since
3895 * we can't really reverse compute them in case
3896 * multiple pipes are active.
3897 */
3898 active->wm[0].enable = true;
3899 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3900 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3901 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3902 active->linetime = hw->wm_linetime[pipe];
3903 } else {
3904 int level, max_level = ilk_wm_max_level(dev);
3905
3906 /*
3907 * For inactive pipes, all watermark levels
3908 * should be marked as enabled but zeroed,
3909 * which is what we'd compute them to.
3910 */
3911 for (level = 0; level <= max_level; level++)
3912 active->wm[level].enable = true;
3913 }
Matt Roper4e0963c2015-09-24 15:53:15 -07003914
3915 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003916}
3917
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03003918#define _FW_WM(value, plane) \
3919 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
3920#define _FW_WM_VLV(value, plane) \
3921 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
3922
3923static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
3924 struct vlv_wm_values *wm)
3925{
3926 enum pipe pipe;
3927 uint32_t tmp;
3928
3929 for_each_pipe(dev_priv, pipe) {
3930 tmp = I915_READ(VLV_DDL(pipe));
3931
3932 wm->ddl[pipe].primary =
3933 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3934 wm->ddl[pipe].cursor =
3935 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3936 wm->ddl[pipe].sprite[0] =
3937 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3938 wm->ddl[pipe].sprite[1] =
3939 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3940 }
3941
3942 tmp = I915_READ(DSPFW1);
3943 wm->sr.plane = _FW_WM(tmp, SR);
3944 wm->pipe[PIPE_B].cursor = _FW_WM(tmp, CURSORB);
3945 wm->pipe[PIPE_B].primary = _FW_WM_VLV(tmp, PLANEB);
3946 wm->pipe[PIPE_A].primary = _FW_WM_VLV(tmp, PLANEA);
3947
3948 tmp = I915_READ(DSPFW2);
3949 wm->pipe[PIPE_A].sprite[1] = _FW_WM_VLV(tmp, SPRITEB);
3950 wm->pipe[PIPE_A].cursor = _FW_WM(tmp, CURSORA);
3951 wm->pipe[PIPE_A].sprite[0] = _FW_WM_VLV(tmp, SPRITEA);
3952
3953 tmp = I915_READ(DSPFW3);
3954 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
3955
3956 if (IS_CHERRYVIEW(dev_priv)) {
3957 tmp = I915_READ(DSPFW7_CHV);
3958 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
3959 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
3960
3961 tmp = I915_READ(DSPFW8_CHV);
3962 wm->pipe[PIPE_C].sprite[1] = _FW_WM_VLV(tmp, SPRITEF);
3963 wm->pipe[PIPE_C].sprite[0] = _FW_WM_VLV(tmp, SPRITEE);
3964
3965 tmp = I915_READ(DSPFW9_CHV);
3966 wm->pipe[PIPE_C].primary = _FW_WM_VLV(tmp, PLANEC);
3967 wm->pipe[PIPE_C].cursor = _FW_WM(tmp, CURSORC);
3968
3969 tmp = I915_READ(DSPHOWM);
3970 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
3971 wm->pipe[PIPE_C].sprite[1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
3972 wm->pipe[PIPE_C].sprite[0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
3973 wm->pipe[PIPE_C].primary |= _FW_WM(tmp, PLANEC_HI) << 8;
3974 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
3975 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
3976 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
3977 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
3978 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
3979 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
3980 } else {
3981 tmp = I915_READ(DSPFW7);
3982 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
3983 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
3984
3985 tmp = I915_READ(DSPHOWM);
3986 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
3987 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
3988 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
3989 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
3990 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
3991 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
3992 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
3993 }
3994}
3995
3996#undef _FW_WM
3997#undef _FW_WM_VLV
3998
3999void vlv_wm_get_hw_state(struct drm_device *dev)
4000{
4001 struct drm_i915_private *dev_priv = to_i915(dev);
4002 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4003 struct intel_plane *plane;
4004 enum pipe pipe;
4005 u32 val;
4006
4007 vlv_read_wm_values(dev_priv, wm);
4008
4009 for_each_intel_plane(dev, plane) {
4010 switch (plane->base.type) {
4011 int sprite;
4012 case DRM_PLANE_TYPE_CURSOR:
4013 plane->wm.fifo_size = 63;
4014 break;
4015 case DRM_PLANE_TYPE_PRIMARY:
4016 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, 0);
4017 break;
4018 case DRM_PLANE_TYPE_OVERLAY:
4019 sprite = plane->plane;
4020 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, sprite + 1);
4021 break;
4022 }
4023 }
4024
4025 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4026 wm->level = VLV_WM_LEVEL_PM2;
4027
4028 if (IS_CHERRYVIEW(dev_priv)) {
4029 mutex_lock(&dev_priv->rps.hw_lock);
4030
4031 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4032 if (val & DSP_MAXFIFO_PM5_ENABLE)
4033 wm->level = VLV_WM_LEVEL_PM5;
4034
Ville Syrjälä58590c12015-09-08 21:05:12 +03004035 /*
4036 * If DDR DVFS is disabled in the BIOS, Punit
4037 * will never ack the request. So if that happens
4038 * assume we don't have to enable/disable DDR DVFS
4039 * dynamically. To test that just set the REQ_ACK
4040 * bit to poke the Punit, but don't change the
4041 * HIGH/LOW bits so that we don't actually change
4042 * the current state.
4043 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004044 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004045 val |= FORCE_DDR_FREQ_REQ_ACK;
4046 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4047
4048 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4049 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4050 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4051 "assuming DDR DVFS is disabled\n");
4052 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4053 } else {
4054 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4055 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4056 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4057 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004058
4059 mutex_unlock(&dev_priv->rps.hw_lock);
4060 }
4061
4062 for_each_pipe(dev_priv, pipe)
4063 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
4064 pipe_name(pipe), wm->pipe[pipe].primary, wm->pipe[pipe].cursor,
4065 wm->pipe[pipe].sprite[0], wm->pipe[pipe].sprite[1]);
4066
4067 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4068 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4069}
4070
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004071void ilk_wm_get_hw_state(struct drm_device *dev)
4072{
4073 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02004074 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004075 struct drm_crtc *crtc;
4076
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004077 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004078 ilk_pipe_wm_get_hw_state(crtc);
4079
4080 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4081 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4082 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4083
4084 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004085 if (INTEL_INFO(dev)->gen >= 7) {
4086 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4087 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4088 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004089
Ville Syrjäläa42a5712014-01-07 16:14:08 +02004090 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004091 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4092 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
4093 else if (IS_IVYBRIDGE(dev))
4094 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4095 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004096
4097 hw->enable_fbc_wm =
4098 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4099}
4100
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004101/**
4102 * intel_update_watermarks - update FIFO watermark values based on current modes
4103 *
4104 * Calculate watermark values for the various WM regs based on current mode
4105 * and plane configuration.
4106 *
4107 * There are several cases to deal with here:
4108 * - normal (i.e. non-self-refresh)
4109 * - self-refresh (SR) mode
4110 * - lines are large relative to FIFO size (buffer can hold up to 2)
4111 * - lines are small relative to FIFO size (buffer can hold more than 2
4112 * lines), so need to account for TLB latency
4113 *
4114 * The normal calculation is:
4115 * watermark = dotclock * bytes per pixel * latency
4116 * where latency is platform & configuration dependent (we assume pessimal
4117 * values here).
4118 *
4119 * The SR calculation is:
4120 * watermark = (trunc(latency/line time)+1) * surface width *
4121 * bytes per pixel
4122 * where
4123 * line time = htotal / dotclock
4124 * surface width = hdisplay for normal plane and 64 for cursor
4125 * and latency is assumed to be high, as above.
4126 *
4127 * The final value programmed to the register should always be rounded up,
4128 * and include an extra 2 entries to account for clock crossings.
4129 *
4130 * We don't use the sprite, so we can ignore that. And on Crestline we have
4131 * to set the non-SR watermarks to 8.
4132 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004133void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004134{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004135 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004136
4137 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004138 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004139}
4140
Jani Nikulae2828912016-01-18 09:19:47 +02004141/*
Daniel Vetter92703882012-08-09 16:46:01 +02004142 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004143 */
4144DEFINE_SPINLOCK(mchdev_lock);
4145
4146/* Global for IPS driver to get at the current i915 device. Protected by
4147 * mchdev_lock. */
4148static struct drm_i915_private *i915_mch_dev;
4149
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004150bool ironlake_set_drps(struct drm_device *dev, u8 val)
4151{
4152 struct drm_i915_private *dev_priv = dev->dev_private;
4153 u16 rgvswctl;
4154
Daniel Vetter92703882012-08-09 16:46:01 +02004155 assert_spin_locked(&mchdev_lock);
4156
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004157 rgvswctl = I915_READ16(MEMSWCTL);
4158 if (rgvswctl & MEMCTL_CMD_STS) {
4159 DRM_DEBUG("gpu busy, RCS change rejected\n");
4160 return false; /* still busy with another command */
4161 }
4162
4163 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4164 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4165 I915_WRITE16(MEMSWCTL, rgvswctl);
4166 POSTING_READ16(MEMSWCTL);
4167
4168 rgvswctl |= MEMCTL_CMD_STS;
4169 I915_WRITE16(MEMSWCTL, rgvswctl);
4170
4171 return true;
4172}
4173
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004174static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004175{
4176 struct drm_i915_private *dev_priv = dev->dev_private;
4177 u32 rgvmodectl = I915_READ(MEMMODECTL);
4178 u8 fmax, fmin, fstart, vstart;
4179
Daniel Vetter92703882012-08-09 16:46:01 +02004180 spin_lock_irq(&mchdev_lock);
4181
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004182 /* Enable temp reporting */
4183 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4184 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4185
4186 /* 100ms RC evaluation intervals */
4187 I915_WRITE(RCUPEI, 100000);
4188 I915_WRITE(RCDNEI, 100000);
4189
4190 /* Set max/min thresholds to 90ms and 80ms respectively */
4191 I915_WRITE(RCBMAXAVG, 90000);
4192 I915_WRITE(RCBMINAVG, 80000);
4193
4194 I915_WRITE(MEMIHYST, 1);
4195
4196 /* Set up min, max, and cur for interrupt handling */
4197 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4198 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4199 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4200 MEMMODE_FSTART_SHIFT;
4201
Ville Syrjälä616847e2015-09-18 20:03:19 +03004202 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004203 PXVFREQ_PX_SHIFT;
4204
Daniel Vetter20e4d402012-08-08 23:35:39 +02004205 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4206 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004207
Daniel Vetter20e4d402012-08-08 23:35:39 +02004208 dev_priv->ips.max_delay = fstart;
4209 dev_priv->ips.min_delay = fmin;
4210 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004211
4212 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4213 fmax, fmin, fstart);
4214
4215 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4216
4217 /*
4218 * Interrupts will be enabled in ironlake_irq_postinstall
4219 */
4220
4221 I915_WRITE(VIDSTART, vstart);
4222 POSTING_READ(VIDSTART);
4223
4224 rgvmodectl |= MEMMODE_SWMODE_EN;
4225 I915_WRITE(MEMMODECTL, rgvmodectl);
4226
Daniel Vetter92703882012-08-09 16:46:01 +02004227 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004228 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004229 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004230
4231 ironlake_set_drps(dev, fstart);
4232
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004233 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4234 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004235 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004236 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004237 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004238
4239 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004240}
4241
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004242static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004243{
4244 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02004245 u16 rgvswctl;
4246
4247 spin_lock_irq(&mchdev_lock);
4248
4249 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004250
4251 /* Ack interrupts, disable EFC interrupt */
4252 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4253 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4254 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4255 I915_WRITE(DEIIR, DE_PCU_EVENT);
4256 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4257
4258 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004259 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004260 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004261 rgvswctl |= MEMCTL_CMD_STS;
4262 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004263 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004264
Daniel Vetter92703882012-08-09 16:46:01 +02004265 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004266}
4267
Daniel Vetteracbe9472012-07-26 11:50:05 +02004268/* There's a funny hw issue where the hw returns all 0 when reading from
4269 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4270 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4271 * all limits and the gpu stuck at whatever frequency it is at atm).
4272 */
Akash Goel74ef1172015-03-06 11:07:19 +05304273static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004274{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004275 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004276
Daniel Vetter20b46e52012-07-26 11:16:14 +02004277 /* Only set the down limit when we've reached the lowest level to avoid
4278 * getting more interrupts, otherwise leave this clear. This prevents a
4279 * race in the hw when coming out of rc6: There's a tiny window where
4280 * the hw runs at the minimal clock before selecting the desired
4281 * frequency, if the down threshold expires in that window we will not
4282 * receive a down interrupt. */
Akash Goel74ef1172015-03-06 11:07:19 +05304283 if (IS_GEN9(dev_priv->dev)) {
4284 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4285 if (val <= dev_priv->rps.min_freq_softlimit)
4286 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4287 } else {
4288 limits = dev_priv->rps.max_freq_softlimit << 24;
4289 if (val <= dev_priv->rps.min_freq_softlimit)
4290 limits |= dev_priv->rps.min_freq_softlimit << 16;
4291 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004292
4293 return limits;
4294}
4295
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004296static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4297{
4298 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304299 u32 threshold_up = 0, threshold_down = 0; /* in % */
4300 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004301
4302 new_power = dev_priv->rps.power;
4303 switch (dev_priv->rps.power) {
4304 case LOW_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004305 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004306 new_power = BETWEEN;
4307 break;
4308
4309 case BETWEEN:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004310 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004311 new_power = LOW_POWER;
Ben Widawskyb39fb292014-03-19 18:31:11 -07004312 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004313 new_power = HIGH_POWER;
4314 break;
4315
4316 case HIGH_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004317 if (val < (dev_priv->rps.rp1_freq + dev_priv->rps.rp0_freq) >> 1 && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004318 new_power = BETWEEN;
4319 break;
4320 }
4321 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004322 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004323 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004324 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004325 new_power = HIGH_POWER;
4326 if (new_power == dev_priv->rps.power)
4327 return;
4328
4329 /* Note the units here are not exactly 1us, but 1280ns. */
4330 switch (new_power) {
4331 case LOW_POWER:
4332 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304333 ei_up = 16000;
4334 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004335
4336 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304337 ei_down = 32000;
4338 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004339 break;
4340
4341 case BETWEEN:
4342 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304343 ei_up = 13000;
4344 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004345
4346 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304347 ei_down = 32000;
4348 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004349 break;
4350
4351 case HIGH_POWER:
4352 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304353 ei_up = 10000;
4354 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004355
4356 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304357 ei_down = 32000;
4358 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004359 break;
4360 }
4361
Akash Goel8a586432015-03-06 11:07:18 +05304362 I915_WRITE(GEN6_RP_UP_EI,
4363 GT_INTERVAL_FROM_US(dev_priv, ei_up));
4364 I915_WRITE(GEN6_RP_UP_THRESHOLD,
4365 GT_INTERVAL_FROM_US(dev_priv, (ei_up * threshold_up / 100)));
4366
4367 I915_WRITE(GEN6_RP_DOWN_EI,
4368 GT_INTERVAL_FROM_US(dev_priv, ei_down));
4369 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
4370 GT_INTERVAL_FROM_US(dev_priv, (ei_down * threshold_down / 100)));
4371
4372 I915_WRITE(GEN6_RP_CONTROL,
4373 GEN6_RP_MEDIA_TURBO |
4374 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4375 GEN6_RP_MEDIA_IS_GFX |
4376 GEN6_RP_ENABLE |
4377 GEN6_RP_UP_BUSY_AVG |
4378 GEN6_RP_DOWN_IDLE_AVG);
4379
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004380 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004381 dev_priv->rps.up_threshold = threshold_up;
4382 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004383 dev_priv->rps.last_adj = 0;
4384}
4385
Chris Wilson2876ce72014-03-28 08:03:34 +00004386static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4387{
4388 u32 mask = 0;
4389
4390 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004391 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004392 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004393 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004394
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004395 mask &= dev_priv->pm_rps_events;
4396
Imre Deak59d02a12014-12-19 19:33:26 +02004397 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004398}
4399
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004400/* gen6_set_rps is called to update the frequency request, but should also be
4401 * called when the range (min_delay and max_delay) is modified so that we can
4402 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004403static void gen6_set_rps(struct drm_device *dev, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004404{
4405 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004406
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304407 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
Jani Nikulae87a0052015-10-20 15:22:02 +03004408 if (IS_BXT_REVID(dev, 0, BXT_REVID_A1))
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304409 return;
4410
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004411 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004412 WARN_ON(val > dev_priv->rps.max_freq);
4413 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004414
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004415 /* min/max delay may still have been modified so be sure to
4416 * write the limits value.
4417 */
4418 if (val != dev_priv->rps.cur_freq) {
4419 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004420
Akash Goel57041952015-03-06 11:07:17 +05304421 if (IS_GEN9(dev))
4422 I915_WRITE(GEN6_RPNSWREQ,
4423 GEN9_FREQUENCY(val));
4424 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004425 I915_WRITE(GEN6_RPNSWREQ,
4426 HSW_FREQUENCY(val));
4427 else
4428 I915_WRITE(GEN6_RPNSWREQ,
4429 GEN6_FREQUENCY(val) |
4430 GEN6_OFFSET(0) |
4431 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004432 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004433
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004434 /* Make sure we continue to get interrupts
4435 * until we hit the minimum or maximum frequencies.
4436 */
Akash Goel74ef1172015-03-06 11:07:19 +05304437 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004438 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004439
Ben Widawskyd5570a72012-09-07 19:43:41 -07004440 POSTING_READ(GEN6_RPNSWREQ);
4441
Ben Widawskyb39fb292014-03-19 18:31:11 -07004442 dev_priv->rps.cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02004443 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004444}
4445
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004446static void valleyview_set_rps(struct drm_device *dev, u8 val)
4447{
4448 struct drm_i915_private *dev_priv = dev->dev_private;
4449
4450 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004451 WARN_ON(val > dev_priv->rps.max_freq);
4452 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004453
4454 if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1),
4455 "Odd GPU freq value\n"))
4456 val &= ~1;
4457
Deepak Scd25dd52015-07-10 18:31:40 +05304458 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4459
Chris Wilson8fb55192015-04-07 16:20:28 +01004460 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004461 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004462 if (!IS_CHERRYVIEW(dev_priv))
4463 gen6_set_rps_thresholds(dev_priv, val);
4464 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004465
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004466 dev_priv->rps.cur_freq = val;
4467 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4468}
4469
Deepak Sa7f6e232015-05-09 18:04:44 +05304470/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304471 *
4472 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304473 * 1. Forcewake Media well.
4474 * 2. Request idle freq.
4475 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304476*/
4477static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4478{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004479 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304480
Chris Wilsonaed242f2015-03-18 09:48:21 +00004481 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304482 return;
4483
Deepak Sa7f6e232015-05-09 18:04:44 +05304484 /* Wake up the media well, as that takes a lot less
4485 * power than the Render well. */
4486 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
4487 valleyview_set_rps(dev_priv->dev, val);
4488 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05304489}
4490
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004491void gen6_rps_busy(struct drm_i915_private *dev_priv)
4492{
4493 mutex_lock(&dev_priv->rps.hw_lock);
4494 if (dev_priv->rps.enabled) {
4495 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4496 gen6_rps_reset_ei(dev_priv);
4497 I915_WRITE(GEN6_PMINTRMSK,
4498 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
4499 }
4500 mutex_unlock(&dev_priv->rps.hw_lock);
4501}
4502
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004503void gen6_rps_idle(struct drm_i915_private *dev_priv)
4504{
Damien Lespiau691bb712013-12-12 14:36:36 +00004505 struct drm_device *dev = dev_priv->dev;
4506
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004507 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004508 if (dev_priv->rps.enabled) {
Wayne Boyer666a4532015-12-09 12:29:35 -08004509 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Deepak S76c3552f2014-01-30 23:08:16 +05304510 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004511 else
Chris Wilsonaed242f2015-03-18 09:48:21 +00004512 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004513 dev_priv->rps.last_adj = 0;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004514 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004515 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004516 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004517
Chris Wilson8d3afd72015-05-21 21:01:47 +01004518 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004519 while (!list_empty(&dev_priv->rps.clients))
4520 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004521 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004522}
4523
Chris Wilson1854d5c2015-04-07 16:20:32 +01004524void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01004525 struct intel_rps_client *rps,
4526 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004527{
Chris Wilson8d3afd72015-05-21 21:01:47 +01004528 /* This is intentionally racy! We peek at the state here, then
4529 * validate inside the RPS worker.
4530 */
4531 if (!(dev_priv->mm.busy &&
4532 dev_priv->rps.enabled &&
4533 dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit))
4534 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004535
Chris Wilsone61b9952015-04-27 13:41:24 +01004536 /* Force a RPS boost (and don't count it against the client) if
4537 * the GPU is severely congested.
4538 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004539 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01004540 rps = NULL;
4541
Chris Wilson8d3afd72015-05-21 21:01:47 +01004542 spin_lock(&dev_priv->rps.client_lock);
4543 if (rps == NULL || list_empty(&rps->link)) {
4544 spin_lock_irq(&dev_priv->irq_lock);
4545 if (dev_priv->rps.interrupts_enabled) {
4546 dev_priv->rps.client_boost = true;
4547 queue_work(dev_priv->wq, &dev_priv->rps.work);
4548 }
4549 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004550
Chris Wilson2e1b8732015-04-27 13:41:22 +01004551 if (rps != NULL) {
4552 list_add(&rps->link, &dev_priv->rps.clients);
4553 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01004554 } else
4555 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01004556 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004557 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004558}
4559
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004560void intel_set_rps(struct drm_device *dev, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004561{
Wayne Boyer666a4532015-12-09 12:29:35 -08004562 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004563 valleyview_set_rps(dev, val);
4564 else
4565 gen6_set_rps(dev, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004566}
4567
Zhe Wang20e49362014-11-04 17:07:05 +00004568static void gen9_disable_rps(struct drm_device *dev)
4569{
4570 struct drm_i915_private *dev_priv = dev->dev_private;
4571
4572 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004573 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004574}
4575
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004576static void gen6_disable_rps(struct drm_device *dev)
4577{
4578 struct drm_i915_private *dev_priv = dev->dev_private;
4579
4580 I915_WRITE(GEN6_RC_CONTROL, 0);
4581 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004582}
4583
Deepak S38807742014-05-23 21:00:15 +05304584static void cherryview_disable_rps(struct drm_device *dev)
4585{
4586 struct drm_i915_private *dev_priv = dev->dev_private;
4587
4588 I915_WRITE(GEN6_RC_CONTROL, 0);
4589}
4590
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004591static void valleyview_disable_rps(struct drm_device *dev)
4592{
4593 struct drm_i915_private *dev_priv = dev->dev_private;
4594
Deepak S98a2e5f2014-08-18 10:35:27 -07004595 /* we're doing forcewake before Disabling RC6,
4596 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02004597 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07004598
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004599 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004600
Mika Kuoppala59bad942015-01-16 11:34:40 +02004601 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004602}
4603
Ben Widawskydc39fff2013-10-18 12:32:07 -07004604static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
4605{
Wayne Boyer666a4532015-12-09 12:29:35 -08004606 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Imre Deak91ca6892014-04-14 20:24:25 +03004607 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
4608 mode = GEN6_RC_CTL_RC6_ENABLE;
4609 else
4610 mode = 0;
4611 }
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004612 if (HAS_RC6p(dev))
4613 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02004614 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
4615 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
4616 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004617
4618 else
4619 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02004620 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07004621}
4622
Imre Deake6069ca2014-04-18 16:01:02 +03004623static int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004624{
Daniel Vettere7d66d82015-06-15 23:23:54 +02004625 /* No RC6 before Ironlake and code is gone for ilk. */
4626 if (INTEL_INFO(dev)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03004627 return 0;
4628
Daniel Vetter456470e2012-08-08 23:35:40 +02004629 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03004630 if (enable_rc6 >= 0) {
4631 int mask;
4632
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004633 if (HAS_RC6p(dev))
Imre Deake6069ca2014-04-18 16:01:02 +03004634 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
4635 INTEL_RC6pp_ENABLE;
4636 else
4637 mask = INTEL_RC6_ENABLE;
4638
4639 if ((enable_rc6 & mask) != enable_rc6)
Daniel Vetter8dfd1f02014-08-04 11:15:56 +02004640 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
4641 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03004642
4643 return enable_rc6 & mask;
4644 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004645
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004646 if (IS_IVYBRIDGE(dev))
Ben Widawskycca84a12014-01-28 20:25:38 -08004647 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004648
4649 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004650}
4651
Imre Deake6069ca2014-04-18 16:01:02 +03004652int intel_enable_rc6(const struct drm_device *dev)
4653{
4654 return i915.enable_rc6;
4655}
4656
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004657static void gen6_init_rps_frequencies(struct drm_device *dev)
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004658{
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004659 struct drm_i915_private *dev_priv = dev->dev_private;
4660 uint32_t rp_state_cap;
4661 u32 ddcc_status = 0;
4662 int ret;
4663
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004664 /* All of these values are in units of 50MHz */
4665 dev_priv->rps.cur_freq = 0;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004666 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Bob Paauwe35040562015-06-25 14:54:07 -07004667 if (IS_BROXTON(dev)) {
4668 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
4669 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
4670 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4671 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
4672 } else {
4673 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
4674 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
4675 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4676 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
4677 }
4678
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004679 /* hw_max = RP0 until we check for overclocking */
4680 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
4681
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004682 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07004683 if (IS_HASWELL(dev) || IS_BROADWELL(dev) ||
4684 IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004685 ret = sandybridge_pcode_read(dev_priv,
4686 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
4687 &ddcc_status);
4688 if (0 == ret)
4689 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08004690 clamp_t(u8,
4691 ((ddcc_status >> 8) & 0xff),
4692 dev_priv->rps.min_freq,
4693 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004694 }
4695
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07004696 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Akash Goelc5e06882015-06-29 14:50:19 +05304697 /* Store the frequency values in 16.66 MHZ units, which is
4698 the natural hardware unit for SKL */
4699 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
4700 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
4701 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
4702 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
4703 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
4704 }
4705
Chris Wilsonaed242f2015-03-18 09:48:21 +00004706 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4707
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004708 /* Preserve min/max settings in case of re-init */
4709 if (dev_priv->rps.max_freq_softlimit == 0)
4710 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4711
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004712 if (dev_priv->rps.min_freq_softlimit == 0) {
4713 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4714 dev_priv->rps.min_freq_softlimit =
Ville Syrjälä813b5e62015-03-25 19:27:16 +02004715 max_t(int, dev_priv->rps.efficient_freq,
4716 intel_freq_opcode(dev_priv, 450));
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004717 else
4718 dev_priv->rps.min_freq_softlimit =
4719 dev_priv->rps.min_freq;
4720 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004721}
4722
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004723/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Zhe Wang20e49362014-11-04 17:07:05 +00004724static void gen9_enable_rps(struct drm_device *dev)
4725{
4726 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004727
4728 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4729
Damien Lespiauba1c5542015-01-16 18:07:26 +00004730 gen6_init_rps_frequencies(dev);
4731
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304732 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
Jani Nikulae87a0052015-10-20 15:22:02 +03004733 if (IS_BXT_REVID(dev, 0, BXT_REVID_A1)) {
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304734 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4735 return;
4736 }
4737
Akash Goel0beb0592015-03-06 11:07:20 +05304738 /* Program defaults and thresholds for RPS*/
4739 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4740 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004741
Akash Goel0beb0592015-03-06 11:07:20 +05304742 /* 1 second timeout*/
4743 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
4744 GT_INTERVAL_FROM_US(dev_priv, 1000000));
4745
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004746 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004747
Akash Goel0beb0592015-03-06 11:07:20 +05304748 /* Leaning on the below call to gen6_set_rps to program/setup the
4749 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
4750 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
4751 dev_priv->rps.power = HIGH_POWER; /* force a reset */
4752 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004753
4754 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4755}
4756
4757static void gen9_enable_rc6(struct drm_device *dev)
4758{
4759 struct drm_i915_private *dev_priv = dev->dev_private;
Zhe Wang20e49362014-11-04 17:07:05 +00004760 struct intel_engine_cs *ring;
4761 uint32_t rc6_mask = 0;
4762 int unused;
4763
4764 /* 1a: Software RC state - RC0 */
4765 I915_WRITE(GEN6_RC_STATE, 0);
4766
4767 /* 1b: Get forcewake during program sequence. Although the driver
4768 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004769 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004770
4771 /* 2a: Disable RC states. */
4772 I915_WRITE(GEN6_RC_CONTROL, 0);
4773
4774 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05304775
4776 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Mika Kuoppalae7674b82015-12-07 18:29:45 +02004777 if (IS_SKYLAKE(dev))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05304778 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
4779 else
4780 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00004781 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4782 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4783 for_each_ring(ring, dev_priv, unused)
4784 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05304785
4786 if (HAS_GUC_UCODE(dev))
4787 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
4788
Zhe Wang20e49362014-11-04 17:07:05 +00004789 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004790
Zhe Wang38c23522015-01-20 12:23:04 +00004791 /* 2c: Program Coarse Power Gating Policies. */
4792 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
4793 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
4794
Zhe Wang20e49362014-11-04 17:07:05 +00004795 /* 3a: Enable RC6 */
4796 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4797 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02004798 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05304799 /* WaRsUseTimeoutMode */
Jani Nikulae87a0052015-10-20 15:22:02 +03004800 if (IS_SKL_REVID(dev, 0, SKL_REVID_D0) ||
Tim Gorecbdc12a2015-10-26 10:48:58 +00004801 IS_BXT_REVID(dev, 0, BXT_REVID_A1)) {
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05304802 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05304803 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4804 GEN7_RC_CTL_TO_MODE |
4805 rc6_mask);
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05304806 } else {
4807 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05304808 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4809 GEN6_RC_CTL_EI_MODE(1) |
4810 rc6_mask);
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05304811 }
Zhe Wang20e49362014-11-04 17:07:05 +00004812
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304813 /*
4814 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05304815 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304816 */
Mika Kuoppala06e668a2015-12-16 19:18:37 +02004817 if (NEEDS_WaRsDisableCoarsePowerGating(dev))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05304818 I915_WRITE(GEN9_PG_ENABLE, 0);
4819 else
4820 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4821 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004822
Mika Kuoppala59bad942015-01-16 11:34:40 +02004823 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004824
4825}
4826
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004827static void gen8_enable_rps(struct drm_device *dev)
4828{
4829 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004830 struct intel_engine_cs *ring;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004831 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004832 int unused;
4833
4834 /* 1a: Software RC state - RC0 */
4835 I915_WRITE(GEN6_RC_STATE, 0);
4836
4837 /* 1c & 1d: Get forcewake during program sequence. Although the driver
4838 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004839 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004840
4841 /* 2a: Disable RC states. */
4842 I915_WRITE(GEN6_RC_CONTROL, 0);
4843
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004844 /* Initialize rps frequencies */
4845 gen6_init_rps_frequencies(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004846
4847 /* 2b: Program RC6 thresholds.*/
4848 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
4849 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4850 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4851 for_each_ring(ring, dev_priv, unused)
4852 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4853 I915_WRITE(GEN6_RC_SLEEP, 0);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004854 if (IS_BROADWELL(dev))
4855 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
4856 else
4857 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004858
4859 /* 3: Enable RC6 */
4860 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4861 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Ben Widawskyabbf9d22014-01-28 20:25:41 -08004862 intel_print_rc6_info(dev, rc6_mask);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004863 if (IS_BROADWELL(dev))
4864 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4865 GEN7_RC_CTL_TO_MODE |
4866 rc6_mask);
4867 else
4868 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4869 GEN6_RC_CTL_EI_MODE(1) |
4870 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004871
4872 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07004873 I915_WRITE(GEN6_RPNSWREQ,
4874 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
4875 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4876 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02004877 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
4878 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004879
Daniel Vetter7526ed72014-09-29 15:07:19 +02004880 /* Docs recommend 900MHz, and 300 MHz respectively */
4881 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
4882 dev_priv->rps.max_freq_softlimit << 24 |
4883 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004884
Daniel Vetter7526ed72014-09-29 15:07:19 +02004885 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
4886 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
4887 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
4888 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004889
Daniel Vetter7526ed72014-09-29 15:07:19 +02004890 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004891
4892 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02004893 I915_WRITE(GEN6_RP_CONTROL,
4894 GEN6_RP_MEDIA_TURBO |
4895 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4896 GEN6_RP_MEDIA_IS_GFX |
4897 GEN6_RP_ENABLE |
4898 GEN6_RP_UP_BUSY_AVG |
4899 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004900
Daniel Vetter7526ed72014-09-29 15:07:19 +02004901 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004902
Tom O'Rourkec7f31532014-11-19 14:21:54 -08004903 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004904 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004905
Mika Kuoppala59bad942015-01-16 11:34:40 +02004906 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004907}
4908
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004909static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004910{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004911 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004912 struct intel_engine_cs *ring;
Ben Widawskyd060c162014-03-19 18:31:08 -07004913 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004914 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004915 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07004916 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004917
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004918 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004919
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004920 /* Here begins a magic sequence of register writes to enable
4921 * auto-downclocking.
4922 *
4923 * Perhaps there might be some value in exposing these to
4924 * userspace...
4925 */
4926 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004927
4928 /* Clear the DBG now so we don't confuse earlier errors */
4929 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
4930 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
4931 I915_WRITE(GTFIFODBG, gtfifodbg);
4932 }
4933
Mika Kuoppala59bad942015-01-16 11:34:40 +02004934 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004935
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004936 /* Initialize rps frequencies */
4937 gen6_init_rps_frequencies(dev);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004938
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004939 /* disable the counters and set deterministic thresholds */
4940 I915_WRITE(GEN6_RC_CONTROL, 0);
4941
4942 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
4943 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
4944 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
4945 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4946 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4947
Chris Wilsonb4519512012-05-11 14:29:30 +01004948 for_each_ring(ring, dev_priv, i)
4949 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004950
4951 I915_WRITE(GEN6_RC_SLEEP, 0);
4952 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Daniel Vetter29c78f62013-11-16 16:04:26 +01004953 if (IS_IVYBRIDGE(dev))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07004954 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
4955 else
4956 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08004957 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004958 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
4959
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004960 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004961 rc6_mode = intel_enable_rc6(dev_priv->dev);
4962 if (rc6_mode & INTEL_RC6_ENABLE)
4963 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
4964
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004965 /* We don't use those on Haswell */
4966 if (!IS_HASWELL(dev)) {
4967 if (rc6_mode & INTEL_RC6p_ENABLE)
4968 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004969
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004970 if (rc6_mode & INTEL_RC6pp_ENABLE)
4971 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
4972 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004973
Ben Widawskydc39fff2013-10-18 12:32:07 -07004974 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004975
4976 I915_WRITE(GEN6_RC_CONTROL,
4977 rc6_mask |
4978 GEN6_RC_CTL_EI_MODE(1) |
4979 GEN6_RC_CTL_HW_ENABLE);
4980
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004981 /* Power down if completely idle for over 50ms */
4982 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004983 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004984
Ben Widawsky42c05262012-09-26 10:34:00 -07004985 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawskyd060c162014-03-19 18:31:08 -07004986 if (ret)
Ben Widawsky42c05262012-09-26 10:34:00 -07004987 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Ben Widawskyd060c162014-03-19 18:31:08 -07004988
4989 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
4990 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
4991 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskyb39fb292014-03-19 18:31:11 -07004992 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
Ben Widawskyd060c162014-03-19 18:31:08 -07004993 (pcu_mbox & 0xff) * 50);
Ben Widawskyb39fb292014-03-19 18:31:11 -07004994 dev_priv->rps.max_freq = pcu_mbox & 0xff;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004995 }
4996
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004997 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004998 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004999
Ben Widawsky31643d52012-09-26 10:34:01 -07005000 rc6vids = 0;
5001 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
5002 if (IS_GEN6(dev) && ret) {
5003 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
5004 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
5005 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5006 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5007 rc6vids &= 0xffff00;
5008 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5009 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5010 if (ret)
5011 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5012 }
5013
Mika Kuoppala59bad942015-01-16 11:34:40 +02005014 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005015}
5016
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005017static void __gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005018{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005019 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005020 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005021 unsigned int gpu_freq;
5022 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305023 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005024 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005025 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005026
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005027 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005028
Ben Widawskyeda79642013-10-07 17:15:48 -03005029 policy = cpufreq_cpu_get(0);
5030 if (policy) {
5031 max_ia_freq = policy->cpuinfo.max_freq;
5032 cpufreq_cpu_put(policy);
5033 } else {
5034 /*
5035 * Default to measured freq if none found, PCU will ensure we
5036 * don't go over
5037 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005038 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005039 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005040
5041 /* Convert from kHz to MHz */
5042 max_ia_freq /= 1000;
5043
Ben Widawsky153b4b952013-10-22 22:05:09 -07005044 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005045 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5046 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005047
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07005048 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305049 /* Convert GT frequency to 50 HZ units */
5050 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5051 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5052 } else {
5053 min_gpu_freq = dev_priv->rps.min_freq;
5054 max_gpu_freq = dev_priv->rps.max_freq;
5055 }
5056
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005057 /*
5058 * For each potential GPU frequency, load a ring frequency we'd like
5059 * to use for memory access. We do this by specifying the IA frequency
5060 * the PCU should use as a reference to determine the ring frequency.
5061 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305062 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5063 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005064 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005065
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07005066 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305067 /*
5068 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5069 * No floor required for ring frequency on SKL.
5070 */
5071 ring_freq = gpu_freq;
5072 } else if (INTEL_INFO(dev)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005073 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5074 ring_freq = max(min_ring_freq, gpu_freq);
5075 } else if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005076 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005077 ring_freq = max(min_ring_freq, ring_freq);
5078 /* leave ia_freq as the default, chosen by cpufreq */
5079 } else {
5080 /* On older processors, there is no separate ring
5081 * clock domain, so in order to boost the bandwidth
5082 * of the ring, we need to upclock the CPU (ia_freq).
5083 *
5084 * For GPU frequencies less than 750MHz,
5085 * just use the lowest ring freq.
5086 */
5087 if (gpu_freq < min_freq)
5088 ia_freq = 800;
5089 else
5090 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5091 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5092 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005093
Ben Widawsky42c05262012-09-26 10:34:00 -07005094 sandybridge_pcode_write(dev_priv,
5095 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005096 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5097 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5098 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005099 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005100}
5101
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005102void gen6_update_ring_freq(struct drm_device *dev)
5103{
5104 struct drm_i915_private *dev_priv = dev->dev_private;
5105
Akash Goel97d33082015-06-29 14:50:23 +05305106 if (!HAS_CORE_RING_FREQ(dev))
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005107 return;
5108
5109 mutex_lock(&dev_priv->rps.hw_lock);
5110 __gen6_update_ring_freq(dev);
5111 mutex_unlock(&dev_priv->rps.hw_lock);
5112}
5113
Ville Syrjälä03af2042014-06-28 02:03:53 +03005114static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305115{
Deepak S095acd52015-01-17 11:05:59 +05305116 struct drm_device *dev = dev_priv->dev;
Deepak S2b6b3a02014-05-27 15:59:30 +05305117 u32 val, rp0;
5118
Jani Nikula5b5929c2015-10-07 11:17:46 +03005119 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305120
Jani Nikula5b5929c2015-10-07 11:17:46 +03005121 switch (INTEL_INFO(dev)->eu_total) {
5122 case 8:
5123 /* (2 * 4) config */
5124 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5125 break;
5126 case 12:
5127 /* (2 * 6) config */
5128 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5129 break;
5130 case 16:
5131 /* (2 * 8) config */
5132 default:
5133 /* Setting (2 * 8) Min RP0 for any other combination */
5134 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5135 break;
Deepak S095acd52015-01-17 11:05:59 +05305136 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005137
5138 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5139
Deepak S2b6b3a02014-05-27 15:59:30 +05305140 return rp0;
5141}
5142
5143static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5144{
5145 u32 val, rpe;
5146
5147 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5148 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5149
5150 return rpe;
5151}
5152
Deepak S7707df42014-07-12 18:46:14 +05305153static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5154{
5155 u32 val, rp1;
5156
Jani Nikula5b5929c2015-10-07 11:17:46 +03005157 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5158 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5159
Deepak S7707df42014-07-12 18:46:14 +05305160 return rp1;
5161}
5162
Deepak Sf8f2b002014-07-10 13:16:21 +05305163static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5164{
5165 u32 val, rp1;
5166
5167 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5168
5169 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5170
5171 return rp1;
5172}
5173
Ville Syrjälä03af2042014-06-28 02:03:53 +03005174static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005175{
5176 u32 val, rp0;
5177
Jani Nikula64936252013-05-22 15:36:20 +03005178 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005179
5180 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5181 /* Clamp to max */
5182 rp0 = min_t(u32, rp0, 0xea);
5183
5184 return rp0;
5185}
5186
5187static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5188{
5189 u32 val, rpe;
5190
Jani Nikula64936252013-05-22 15:36:20 +03005191 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005192 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005193 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005194 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5195
5196 return rpe;
5197}
5198
Ville Syrjälä03af2042014-06-28 02:03:53 +03005199static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005200{
Imre Deak36146032014-12-04 18:39:35 +02005201 u32 val;
5202
5203 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
5204 /*
5205 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
5206 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
5207 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
5208 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
5209 * to make sure it matches what Punit accepts.
5210 */
5211 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005212}
5213
Imre Deakae484342014-03-31 15:10:44 +03005214/* Check that the pctx buffer wasn't move under us. */
5215static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5216{
5217 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5218
5219 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5220 dev_priv->vlv_pctx->stolen->start);
5221}
5222
Deepak S38807742014-05-23 21:00:15 +05305223
5224/* Check that the pcbr address is not empty. */
5225static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5226{
5227 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5228
5229 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5230}
5231
5232static void cherryview_setup_pctx(struct drm_device *dev)
5233{
5234 struct drm_i915_private *dev_priv = dev->dev_private;
5235 unsigned long pctx_paddr, paddr;
5236 struct i915_gtt *gtt = &dev_priv->gtt;
5237 u32 pcbr;
5238 int pctx_size = 32*1024;
5239
5240 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5241
5242 pcbr = I915_READ(VLV_PCBR);
5243 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005244 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305245 paddr = (dev_priv->mm.stolen_base +
5246 (gtt->stolen_size - pctx_size));
5247
5248 pctx_paddr = (paddr & (~4095));
5249 I915_WRITE(VLV_PCBR, pctx_paddr);
5250 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005251
5252 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305253}
5254
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005255static void valleyview_setup_pctx(struct drm_device *dev)
5256{
5257 struct drm_i915_private *dev_priv = dev->dev_private;
5258 struct drm_i915_gem_object *pctx;
5259 unsigned long pctx_paddr;
5260 u32 pcbr;
5261 int pctx_size = 24*1024;
5262
Imre Deak17b0c1f2014-02-11 21:39:06 +02005263 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5264
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005265 pcbr = I915_READ(VLV_PCBR);
5266 if (pcbr) {
5267 /* BIOS set it up already, grab the pre-alloc'd space */
5268 int pcbr_offset;
5269
5270 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
5271 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
5272 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005273 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005274 pctx_size);
5275 goto out;
5276 }
5277
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005278 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5279
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005280 /*
5281 * From the Gunit register HAS:
5282 * The Gfx driver is expected to program this register and ensure
5283 * proper allocation within Gfx stolen memory. For example, this
5284 * register should be programmed such than the PCBR range does not
5285 * overlap with other ranges, such as the frame buffer, protected
5286 * memory, or any other relevant ranges.
5287 */
5288 pctx = i915_gem_object_create_stolen(dev, pctx_size);
5289 if (!pctx) {
5290 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
5291 return;
5292 }
5293
5294 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5295 I915_WRITE(VLV_PCBR, pctx_paddr);
5296
5297out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005298 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005299 dev_priv->vlv_pctx = pctx;
5300}
5301
Imre Deakae484342014-03-31 15:10:44 +03005302static void valleyview_cleanup_pctx(struct drm_device *dev)
5303{
5304 struct drm_i915_private *dev_priv = dev->dev_private;
5305
5306 if (WARN_ON(!dev_priv->vlv_pctx))
5307 return;
5308
5309 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
5310 dev_priv->vlv_pctx = NULL;
5311}
5312
Imre Deak4e805192014-04-14 20:24:41 +03005313static void valleyview_init_gt_powersave(struct drm_device *dev)
5314{
5315 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005316 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005317
5318 valleyview_setup_pctx(dev);
5319
5320 mutex_lock(&dev_priv->rps.hw_lock);
5321
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005322 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5323 switch ((val >> 6) & 3) {
5324 case 0:
5325 case 1:
5326 dev_priv->mem_freq = 800;
5327 break;
5328 case 2:
5329 dev_priv->mem_freq = 1066;
5330 break;
5331 case 3:
5332 dev_priv->mem_freq = 1333;
5333 break;
5334 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005335 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005336
Imre Deak4e805192014-04-14 20:24:41 +03005337 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5338 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5339 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005340 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005341 dev_priv->rps.max_freq);
5342
5343 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5344 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005345 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005346 dev_priv->rps.efficient_freq);
5347
Deepak Sf8f2b002014-07-10 13:16:21 +05305348 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5349 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005350 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305351 dev_priv->rps.rp1_freq);
5352
Imre Deak4e805192014-04-14 20:24:41 +03005353 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5354 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005355 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005356 dev_priv->rps.min_freq);
5357
Chris Wilsonaed242f2015-03-18 09:48:21 +00005358 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5359
Imre Deak4e805192014-04-14 20:24:41 +03005360 /* Preserve min/max settings in case of re-init */
5361 if (dev_priv->rps.max_freq_softlimit == 0)
5362 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5363
5364 if (dev_priv->rps.min_freq_softlimit == 0)
5365 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5366
5367 mutex_unlock(&dev_priv->rps.hw_lock);
5368}
5369
Deepak S38807742014-05-23 21:00:15 +05305370static void cherryview_init_gt_powersave(struct drm_device *dev)
5371{
Deepak S2b6b3a02014-05-27 15:59:30 +05305372 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005373 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305374
Deepak S38807742014-05-23 21:00:15 +05305375 cherryview_setup_pctx(dev);
Deepak S2b6b3a02014-05-27 15:59:30 +05305376
5377 mutex_lock(&dev_priv->rps.hw_lock);
5378
Ville Syrjäläa5805162015-05-26 20:42:30 +03005379 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005380 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005381 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005382
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005383 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005384 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005385 dev_priv->mem_freq = 2000;
5386 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03005387 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005388 dev_priv->mem_freq = 1600;
5389 break;
5390 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005391 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005392
Deepak S2b6b3a02014-05-27 15:59:30 +05305393 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5394 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5395 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005396 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305397 dev_priv->rps.max_freq);
5398
5399 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5400 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005401 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305402 dev_priv->rps.efficient_freq);
5403
Deepak S7707df42014-07-12 18:46:14 +05305404 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5405 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005406 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305407 dev_priv->rps.rp1_freq);
5408
Deepak S5b7c91b2015-05-09 18:15:46 +05305409 /* PUnit validated range is only [RPe, RP0] */
5410 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305411 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005412 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305413 dev_priv->rps.min_freq);
5414
Ville Syrjälä1c147622014-08-18 14:42:43 +03005415 WARN_ONCE((dev_priv->rps.max_freq |
5416 dev_priv->rps.efficient_freq |
5417 dev_priv->rps.rp1_freq |
5418 dev_priv->rps.min_freq) & 1,
5419 "Odd GPU freq values\n");
5420
Chris Wilsonaed242f2015-03-18 09:48:21 +00005421 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5422
Deepak S2b6b3a02014-05-27 15:59:30 +05305423 /* Preserve min/max settings in case of re-init */
5424 if (dev_priv->rps.max_freq_softlimit == 0)
5425 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5426
5427 if (dev_priv->rps.min_freq_softlimit == 0)
5428 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5429
5430 mutex_unlock(&dev_priv->rps.hw_lock);
Deepak S38807742014-05-23 21:00:15 +05305431}
5432
Imre Deak4e805192014-04-14 20:24:41 +03005433static void valleyview_cleanup_gt_powersave(struct drm_device *dev)
5434{
5435 valleyview_cleanup_pctx(dev);
5436}
5437
Deepak S38807742014-05-23 21:00:15 +05305438static void cherryview_enable_rps(struct drm_device *dev)
5439{
5440 struct drm_i915_private *dev_priv = dev->dev_private;
5441 struct intel_engine_cs *ring;
Deepak S2b6b3a02014-05-27 15:59:30 +05305442 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305443 int i;
5444
5445 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5446
5447 gtfifodbg = I915_READ(GTFIFODBG);
5448 if (gtfifodbg) {
5449 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5450 gtfifodbg);
5451 I915_WRITE(GTFIFODBG, gtfifodbg);
5452 }
5453
5454 cherryview_check_pctx(dev_priv);
5455
5456 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5457 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005458 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305459
Ville Syrjälä160614a2015-01-19 13:50:47 +02005460 /* Disable RC states. */
5461 I915_WRITE(GEN6_RC_CONTROL, 0);
5462
Deepak S38807742014-05-23 21:00:15 +05305463 /* 2a: Program RC6 thresholds.*/
5464 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5465 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5466 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5467
5468 for_each_ring(ring, dev_priv, i)
5469 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5470 I915_WRITE(GEN6_RC_SLEEP, 0);
5471
Deepak Sf4f71c72015-03-28 15:23:35 +05305472 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
5473 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05305474
5475 /* allows RC6 residency counter to work */
5476 I915_WRITE(VLV_COUNTER_CONTROL,
5477 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5478 VLV_MEDIA_RC6_COUNT_EN |
5479 VLV_RENDER_RC6_COUNT_EN));
5480
5481 /* For now we assume BIOS is allocating and populating the PCBR */
5482 pcbr = I915_READ(VLV_PCBR);
5483
Deepak S38807742014-05-23 21:00:15 +05305484 /* 3: Enable RC6 */
5485 if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) &&
5486 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005487 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305488
5489 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5490
Deepak S2b6b3a02014-05-27 15:59:30 +05305491 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005492 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305493 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5494 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5495 I915_WRITE(GEN6_RP_UP_EI, 66000);
5496 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5497
5498 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5499
5500 /* 5: Enable RPS */
5501 I915_WRITE(GEN6_RP_CONTROL,
5502 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005503 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305504 GEN6_RP_ENABLE |
5505 GEN6_RP_UP_BUSY_AVG |
5506 GEN6_RP_DOWN_IDLE_AVG);
5507
Deepak S3ef62342015-04-29 08:36:24 +05305508 /* Setting Fixed Bias */
5509 val = VLV_OVERRIDE_EN |
5510 VLV_SOC_TDP_EN |
5511 CHV_BIAS_CPU_50_SOC_50;
5512 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5513
Deepak S2b6b3a02014-05-27 15:59:30 +05305514 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5515
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005516 /* RPS code assumes GPLL is used */
5517 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5518
Jani Nikula742f4912015-09-03 11:16:09 +03005519 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05305520 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5521
5522 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
5523 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005524 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305525 dev_priv->rps.cur_freq);
5526
5527 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005528 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305529 dev_priv->rps.efficient_freq);
5530
5531 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
5532
Mika Kuoppala59bad942015-01-16 11:34:40 +02005533 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305534}
5535
Jesse Barnes0a073b82013-04-17 15:54:58 -07005536static void valleyview_enable_rps(struct drm_device *dev)
5537{
5538 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005539 struct intel_engine_cs *ring;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07005540 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005541 int i;
5542
5543 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5544
Imre Deakae484342014-03-31 15:10:44 +03005545 valleyview_check_pctx(dev_priv);
5546
Jesse Barnes0a073b82013-04-17 15:54:58 -07005547 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07005548 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5549 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005550 I915_WRITE(GTFIFODBG, gtfifodbg);
5551 }
5552
Deepak Sc8d9a592013-11-23 14:55:42 +05305553 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005554 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005555
Ville Syrjälä160614a2015-01-19 13:50:47 +02005556 /* Disable RC states. */
5557 I915_WRITE(GEN6_RC_CONTROL, 0);
5558
Ville Syrjäläcad725f2015-01-19 13:50:48 +02005559 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005560 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5561 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5562 I915_WRITE(GEN6_RP_UP_EI, 66000);
5563 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5564
5565 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5566
5567 I915_WRITE(GEN6_RP_CONTROL,
5568 GEN6_RP_MEDIA_TURBO |
5569 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5570 GEN6_RP_MEDIA_IS_GFX |
5571 GEN6_RP_ENABLE |
5572 GEN6_RP_UP_BUSY_AVG |
5573 GEN6_RP_DOWN_IDLE_CONT);
5574
5575 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
5576 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5577 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5578
5579 for_each_ring(ring, dev_priv, i)
5580 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5581
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08005582 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005583
5584 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07005585 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04005586 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
5587 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07005588 VLV_MEDIA_RC6_COUNT_EN |
5589 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04005590
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005591 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08005592 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07005593
5594 intel_print_rc6_info(dev, rc6_mode);
5595
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005596 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005597
Deepak S3ef62342015-04-29 08:36:24 +05305598 /* Setting Fixed Bias */
5599 val = VLV_OVERRIDE_EN |
5600 VLV_SOC_TDP_EN |
5601 VLV_BIAS_CPU_125_SOC_875;
5602 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5603
Jani Nikula64936252013-05-22 15:36:20 +03005604 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005605
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005606 /* RPS code assumes GPLL is used */
5607 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5608
Jani Nikula742f4912015-09-03 11:16:09 +03005609 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07005610 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5611
Ben Widawskyb39fb292014-03-19 18:31:11 -07005612 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03005613 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005614 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005615 dev_priv->rps.cur_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005616
Ville Syrjälä73008b92013-06-25 19:21:01 +03005617 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005618 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005619 dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005620
Ben Widawskyb39fb292014-03-19 18:31:11 -07005621 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005622
Mika Kuoppala59bad942015-01-16 11:34:40 +02005623 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005624}
5625
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005626static unsigned long intel_pxfreq(u32 vidfreq)
5627{
5628 unsigned long freq;
5629 int div = (vidfreq & 0x3f0000) >> 16;
5630 int post = (vidfreq & 0x3000) >> 12;
5631 int pre = (vidfreq & 0x7);
5632
5633 if (!pre)
5634 return 0;
5635
5636 freq = ((div * 133333) / ((1<<post) * pre));
5637
5638 return freq;
5639}
5640
Daniel Vettereb48eb02012-04-26 23:28:12 +02005641static const struct cparams {
5642 u16 i;
5643 u16 t;
5644 u16 m;
5645 u16 c;
5646} cparams[] = {
5647 { 1, 1333, 301, 28664 },
5648 { 1, 1066, 294, 24460 },
5649 { 1, 800, 294, 25192 },
5650 { 0, 1333, 276, 27605 },
5651 { 0, 1066, 276, 27605 },
5652 { 0, 800, 231, 23784 },
5653};
5654
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005655static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005656{
5657 u64 total_count, diff, ret;
5658 u32 count1, count2, count3, m = 0, c = 0;
5659 unsigned long now = jiffies_to_msecs(jiffies), diff1;
5660 int i;
5661
Daniel Vetter02d71952012-08-09 16:44:54 +02005662 assert_spin_locked(&mchdev_lock);
5663
Daniel Vetter20e4d402012-08-08 23:35:39 +02005664 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005665
5666 /* Prevent division-by-zero if we are asking too fast.
5667 * Also, we don't get interesting results if we are polling
5668 * faster than once in 10ms, so just return the saved value
5669 * in such cases.
5670 */
5671 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02005672 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005673
5674 count1 = I915_READ(DMIEC);
5675 count2 = I915_READ(DDREC);
5676 count3 = I915_READ(CSIEC);
5677
5678 total_count = count1 + count2 + count3;
5679
5680 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02005681 if (total_count < dev_priv->ips.last_count1) {
5682 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005683 diff += total_count;
5684 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005685 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005686 }
5687
5688 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005689 if (cparams[i].i == dev_priv->ips.c_m &&
5690 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02005691 m = cparams[i].m;
5692 c = cparams[i].c;
5693 break;
5694 }
5695 }
5696
5697 diff = div_u64(diff, diff1);
5698 ret = ((m * diff) + c);
5699 ret = div_u64(ret, 10);
5700
Daniel Vetter20e4d402012-08-08 23:35:39 +02005701 dev_priv->ips.last_count1 = total_count;
5702 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005703
Daniel Vetter20e4d402012-08-08 23:35:39 +02005704 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005705
5706 return ret;
5707}
5708
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005709unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
5710{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005711 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005712 unsigned long val;
5713
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005714 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005715 return 0;
5716
5717 spin_lock_irq(&mchdev_lock);
5718
5719 val = __i915_chipset_val(dev_priv);
5720
5721 spin_unlock_irq(&mchdev_lock);
5722
5723 return val;
5724}
5725
Daniel Vettereb48eb02012-04-26 23:28:12 +02005726unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
5727{
5728 unsigned long m, x, b;
5729 u32 tsfs;
5730
5731 tsfs = I915_READ(TSFS);
5732
5733 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
5734 x = I915_READ8(TR1);
5735
5736 b = tsfs & TSFS_INTR_MASK;
5737
5738 return ((m * x) / 127) - b;
5739}
5740
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005741static int _pxvid_to_vd(u8 pxvid)
5742{
5743 if (pxvid == 0)
5744 return 0;
5745
5746 if (pxvid >= 8 && pxvid < 31)
5747 pxvid = 31;
5748
5749 return (pxvid + 2) * 125;
5750}
5751
5752static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005753{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005754 struct drm_device *dev = dev_priv->dev;
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005755 const int vd = _pxvid_to_vd(pxvid);
5756 const int vm = vd - 1125;
5757
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005758 if (INTEL_INFO(dev)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005759 return vm > 0 ? vm : 0;
5760
5761 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005762}
5763
Daniel Vetter02d71952012-08-09 16:44:54 +02005764static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005765{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005766 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005767 u32 count;
5768
Daniel Vetter02d71952012-08-09 16:44:54 +02005769 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005770
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005771 now = ktime_get_raw_ns();
5772 diffms = now - dev_priv->ips.last_time2;
5773 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005774
5775 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02005776 if (!diffms)
5777 return;
5778
5779 count = I915_READ(GFXEC);
5780
Daniel Vetter20e4d402012-08-08 23:35:39 +02005781 if (count < dev_priv->ips.last_count2) {
5782 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005783 diff += count;
5784 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005785 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005786 }
5787
Daniel Vetter20e4d402012-08-08 23:35:39 +02005788 dev_priv->ips.last_count2 = count;
5789 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005790
5791 /* More magic constants... */
5792 diff = diff * 1181;
5793 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005794 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005795}
5796
Daniel Vetter02d71952012-08-09 16:44:54 +02005797void i915_update_gfx_val(struct drm_i915_private *dev_priv)
5798{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005799 struct drm_device *dev = dev_priv->dev;
5800
5801 if (INTEL_INFO(dev)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02005802 return;
5803
Daniel Vetter92703882012-08-09 16:46:01 +02005804 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005805
5806 __i915_update_gfx_val(dev_priv);
5807
Daniel Vetter92703882012-08-09 16:46:01 +02005808 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005809}
5810
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005811static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005812{
5813 unsigned long t, corr, state1, corr2, state2;
5814 u32 pxvid, ext_v;
5815
Daniel Vetter02d71952012-08-09 16:44:54 +02005816 assert_spin_locked(&mchdev_lock);
5817
Ville Syrjälä616847e2015-09-18 20:03:19 +03005818 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02005819 pxvid = (pxvid >> 24) & 0x7f;
5820 ext_v = pvid_to_extvid(dev_priv, pxvid);
5821
5822 state1 = ext_v;
5823
5824 t = i915_mch_val(dev_priv);
5825
5826 /* Revel in the empirically derived constants */
5827
5828 /* Correction factor in 1/100000 units */
5829 if (t > 80)
5830 corr = ((t * 2349) + 135940);
5831 else if (t >= 50)
5832 corr = ((t * 964) + 29317);
5833 else /* < 50 */
5834 corr = ((t * 301) + 1004);
5835
5836 corr = corr * ((150142 * state1) / 10000 - 78642);
5837 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02005838 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005839
5840 state2 = (corr2 * state1) / 10000;
5841 state2 /= 100; /* convert to mW */
5842
Daniel Vetter02d71952012-08-09 16:44:54 +02005843 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005844
Daniel Vetter20e4d402012-08-08 23:35:39 +02005845 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005846}
5847
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005848unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
5849{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005850 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005851 unsigned long val;
5852
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005853 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005854 return 0;
5855
5856 spin_lock_irq(&mchdev_lock);
5857
5858 val = __i915_gfx_val(dev_priv);
5859
5860 spin_unlock_irq(&mchdev_lock);
5861
5862 return val;
5863}
5864
Daniel Vettereb48eb02012-04-26 23:28:12 +02005865/**
5866 * i915_read_mch_val - return value for IPS use
5867 *
5868 * Calculate and return a value for the IPS driver to use when deciding whether
5869 * we have thermal and power headroom to increase CPU or GPU power budget.
5870 */
5871unsigned long i915_read_mch_val(void)
5872{
5873 struct drm_i915_private *dev_priv;
5874 unsigned long chipset_val, graphics_val, ret = 0;
5875
Daniel Vetter92703882012-08-09 16:46:01 +02005876 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005877 if (!i915_mch_dev)
5878 goto out_unlock;
5879 dev_priv = i915_mch_dev;
5880
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005881 chipset_val = __i915_chipset_val(dev_priv);
5882 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005883
5884 ret = chipset_val + graphics_val;
5885
5886out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005887 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005888
5889 return ret;
5890}
5891EXPORT_SYMBOL_GPL(i915_read_mch_val);
5892
5893/**
5894 * i915_gpu_raise - raise GPU frequency limit
5895 *
5896 * Raise the limit; IPS indicates we have thermal headroom.
5897 */
5898bool i915_gpu_raise(void)
5899{
5900 struct drm_i915_private *dev_priv;
5901 bool ret = true;
5902
Daniel Vetter92703882012-08-09 16:46:01 +02005903 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005904 if (!i915_mch_dev) {
5905 ret = false;
5906 goto out_unlock;
5907 }
5908 dev_priv = i915_mch_dev;
5909
Daniel Vetter20e4d402012-08-08 23:35:39 +02005910 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
5911 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005912
5913out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005914 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005915
5916 return ret;
5917}
5918EXPORT_SYMBOL_GPL(i915_gpu_raise);
5919
5920/**
5921 * i915_gpu_lower - lower GPU frequency limit
5922 *
5923 * IPS indicates we're close to a thermal limit, so throttle back the GPU
5924 * frequency maximum.
5925 */
5926bool i915_gpu_lower(void)
5927{
5928 struct drm_i915_private *dev_priv;
5929 bool ret = true;
5930
Daniel Vetter92703882012-08-09 16:46:01 +02005931 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005932 if (!i915_mch_dev) {
5933 ret = false;
5934 goto out_unlock;
5935 }
5936 dev_priv = i915_mch_dev;
5937
Daniel Vetter20e4d402012-08-08 23:35:39 +02005938 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
5939 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005940
5941out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005942 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005943
5944 return ret;
5945}
5946EXPORT_SYMBOL_GPL(i915_gpu_lower);
5947
5948/**
5949 * i915_gpu_busy - indicate GPU business to IPS
5950 *
5951 * Tell the IPS driver whether or not the GPU is busy.
5952 */
5953bool i915_gpu_busy(void)
5954{
5955 struct drm_i915_private *dev_priv;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005956 struct intel_engine_cs *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005957 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01005958 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005959
Daniel Vetter92703882012-08-09 16:46:01 +02005960 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005961 if (!i915_mch_dev)
5962 goto out_unlock;
5963 dev_priv = i915_mch_dev;
5964
Chris Wilsonf047e392012-07-21 12:31:41 +01005965 for_each_ring(ring, dev_priv, i)
5966 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005967
5968out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005969 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005970
5971 return ret;
5972}
5973EXPORT_SYMBOL_GPL(i915_gpu_busy);
5974
5975/**
5976 * i915_gpu_turbo_disable - disable graphics turbo
5977 *
5978 * Disable graphics turbo by resetting the max frequency and setting the
5979 * current frequency to the default.
5980 */
5981bool i915_gpu_turbo_disable(void)
5982{
5983 struct drm_i915_private *dev_priv;
5984 bool ret = true;
5985
Daniel Vetter92703882012-08-09 16:46:01 +02005986 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005987 if (!i915_mch_dev) {
5988 ret = false;
5989 goto out_unlock;
5990 }
5991 dev_priv = i915_mch_dev;
5992
Daniel Vetter20e4d402012-08-08 23:35:39 +02005993 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005994
Daniel Vetter20e4d402012-08-08 23:35:39 +02005995 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02005996 ret = false;
5997
5998out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005999 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006000
6001 return ret;
6002}
6003EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6004
6005/**
6006 * Tells the intel_ips driver that the i915 driver is now loaded, if
6007 * IPS got loaded first.
6008 *
6009 * This awkward dance is so that neither module has to depend on the
6010 * other in order for IPS to do the appropriate communication of
6011 * GPU turbo limits to i915.
6012 */
6013static void
6014ips_ping_for_i915_load(void)
6015{
6016 void (*link)(void);
6017
6018 link = symbol_get(ips_link_to_i915_driver);
6019 if (link) {
6020 link();
6021 symbol_put(ips_link_to_i915_driver);
6022 }
6023}
6024
6025void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6026{
Daniel Vetter02d71952012-08-09 16:44:54 +02006027 /* We only register the i915 ips part with intel-ips once everything is
6028 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006029 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006030 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006031 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006032
6033 ips_ping_for_i915_load();
6034}
6035
6036void intel_gpu_ips_teardown(void)
6037{
Daniel Vetter92703882012-08-09 16:46:01 +02006038 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006039 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006040 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006041}
Deepak S76c3552f2014-01-30 23:08:16 +05306042
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006043static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006044{
6045 struct drm_i915_private *dev_priv = dev->dev_private;
6046 u32 lcfuse;
6047 u8 pxw[16];
6048 int i;
6049
6050 /* Disable to program */
6051 I915_WRITE(ECR, 0);
6052 POSTING_READ(ECR);
6053
6054 /* Program energy weights for various events */
6055 I915_WRITE(SDEW, 0x15040d00);
6056 I915_WRITE(CSIEW0, 0x007f0000);
6057 I915_WRITE(CSIEW1, 0x1e220004);
6058 I915_WRITE(CSIEW2, 0x04000004);
6059
6060 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006061 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006062 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006063 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006064
6065 /* Program P-state weights to account for frequency power adjustment */
6066 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006067 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006068 unsigned long freq = intel_pxfreq(pxvidfreq);
6069 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6070 PXVFREQ_PX_SHIFT;
6071 unsigned long val;
6072
6073 val = vid * vid;
6074 val *= (freq / 1000);
6075 val *= 255;
6076 val /= (127*127*900);
6077 if (val > 0xff)
6078 DRM_ERROR("bad pxval: %ld\n", val);
6079 pxw[i] = val;
6080 }
6081 /* Render standby states get 0 weight */
6082 pxw[14] = 0;
6083 pxw[15] = 0;
6084
6085 for (i = 0; i < 4; i++) {
6086 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6087 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006088 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006089 }
6090
6091 /* Adjust magic regs to magic values (more experimental results) */
6092 I915_WRITE(OGW0, 0);
6093 I915_WRITE(OGW1, 0);
6094 I915_WRITE(EG0, 0x00007f00);
6095 I915_WRITE(EG1, 0x0000000e);
6096 I915_WRITE(EG2, 0x000e0000);
6097 I915_WRITE(EG3, 0x68000300);
6098 I915_WRITE(EG4, 0x42000000);
6099 I915_WRITE(EG5, 0x00140031);
6100 I915_WRITE(EG6, 0);
6101 I915_WRITE(EG7, 0);
6102
6103 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006104 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006105
6106 /* Enable PMON + select events */
6107 I915_WRITE(ECR, 0x80000019);
6108
6109 lcfuse = I915_READ(LCFUSE02);
6110
Daniel Vetter20e4d402012-08-08 23:35:39 +02006111 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006112}
6113
Imre Deakae484342014-03-31 15:10:44 +03006114void intel_init_gt_powersave(struct drm_device *dev)
6115{
Imre Deakb268c692015-12-15 20:10:31 +02006116 struct drm_i915_private *dev_priv = dev->dev_private;
6117
Imre Deake6069ca2014-04-18 16:01:02 +03006118 i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6);
Imre Deakb268c692015-12-15 20:10:31 +02006119 /*
6120 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
6121 * requirement.
6122 */
6123 if (!i915.enable_rc6) {
6124 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
6125 intel_runtime_pm_get(dev_priv);
6126 }
Imre Deake6069ca2014-04-18 16:01:02 +03006127
Deepak S38807742014-05-23 21:00:15 +05306128 if (IS_CHERRYVIEW(dev))
6129 cherryview_init_gt_powersave(dev);
6130 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006131 valleyview_init_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006132}
6133
6134void intel_cleanup_gt_powersave(struct drm_device *dev)
6135{
Imre Deakb268c692015-12-15 20:10:31 +02006136 struct drm_i915_private *dev_priv = dev->dev_private;
6137
Deepak S38807742014-05-23 21:00:15 +05306138 if (IS_CHERRYVIEW(dev))
6139 return;
6140 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006141 valleyview_cleanup_gt_powersave(dev);
Imre Deakb268c692015-12-15 20:10:31 +02006142
6143 if (!i915.enable_rc6)
6144 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006145}
6146
Imre Deakdbea3ce2014-12-15 18:59:28 +02006147static void gen6_suspend_rps(struct drm_device *dev)
6148{
6149 struct drm_i915_private *dev_priv = dev->dev_private;
6150
6151 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
6152
Akash Goel4c2a8892015-03-06 11:07:24 +05306153 gen6_disable_rps_interrupts(dev);
Imre Deakdbea3ce2014-12-15 18:59:28 +02006154}
6155
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006156/**
6157 * intel_suspend_gt_powersave - suspend PM work and helper threads
6158 * @dev: drm device
6159 *
6160 * We don't want to disable RC6 or other features here, we just want
6161 * to make sure any work we've queued has finished and won't bother
6162 * us while we're suspended.
6163 */
6164void intel_suspend_gt_powersave(struct drm_device *dev)
6165{
6166 struct drm_i915_private *dev_priv = dev->dev_private;
6167
Imre Deakd4d70aa2014-11-19 15:30:04 +02006168 if (INTEL_INFO(dev)->gen < 6)
6169 return;
6170
Imre Deakdbea3ce2014-12-15 18:59:28 +02006171 gen6_suspend_rps(dev);
Deepak Sb47adc12014-06-20 20:03:02 +05306172
6173 /* Force GPU to min freq during suspend */
6174 gen6_rps_idle(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006175}
6176
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006177void intel_disable_gt_powersave(struct drm_device *dev)
6178{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006179 struct drm_i915_private *dev_priv = dev->dev_private;
6180
Daniel Vetter930ebb42012-06-29 23:32:16 +02006181 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006182 ironlake_disable_drps(dev);
Deepak S38807742014-05-23 21:00:15 +05306183 } else if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter10d8d362014-06-12 17:48:52 +02006184 intel_suspend_gt_powersave(dev);
Imre Deake4948372014-05-12 18:35:04 +03006185
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006186 mutex_lock(&dev_priv->rps.hw_lock);
Zhe Wang20e49362014-11-04 17:07:05 +00006187 if (INTEL_INFO(dev)->gen >= 9)
6188 gen9_disable_rps(dev);
6189 else if (IS_CHERRYVIEW(dev))
Deepak S38807742014-05-23 21:00:15 +05306190 cherryview_disable_rps(dev);
6191 else if (IS_VALLEYVIEW(dev))
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006192 valleyview_disable_rps(dev);
6193 else
6194 gen6_disable_rps(dev);
Imre Deake5347702014-11-19 15:30:02 +02006195
Chris Wilsonc0951f02013-10-10 21:58:50 +01006196 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006197 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02006198 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006199}
6200
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006201static void intel_gen6_powersave_work(struct work_struct *work)
6202{
6203 struct drm_i915_private *dev_priv =
6204 container_of(work, struct drm_i915_private,
6205 rps.delayed_resume_work.work);
6206 struct drm_device *dev = dev_priv->dev;
6207
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006208 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006209
Akash Goel4c2a8892015-03-06 11:07:24 +05306210 gen6_reset_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006211
Deepak S38807742014-05-23 21:00:15 +05306212 if (IS_CHERRYVIEW(dev)) {
6213 cherryview_enable_rps(dev);
6214 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -07006215 valleyview_enable_rps(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006216 } else if (INTEL_INFO(dev)->gen >= 9) {
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006217 gen9_enable_rc6(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006218 gen9_enable_rps(dev);
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07006219 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
Akash Goelcc017fb2015-06-29 14:50:21 +05306220 __gen6_update_ring_freq(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006221 } else if (IS_BROADWELL(dev)) {
6222 gen8_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006223 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006224 } else {
6225 gen6_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006226 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006227 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006228
6229 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6230 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6231
6232 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6233 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6234
Chris Wilsonc0951f02013-10-10 21:58:50 +01006235 dev_priv->rps.enabled = true;
Imre Deak3cc134e2014-11-19 15:30:03 +02006236
Akash Goel4c2a8892015-03-06 11:07:24 +05306237 gen6_enable_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006238
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006239 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deakc6df39b2014-04-14 20:24:29 +03006240
6241 intel_runtime_pm_put(dev_priv);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006242}
6243
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006244void intel_enable_gt_powersave(struct drm_device *dev)
6245{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006246 struct drm_i915_private *dev_priv = dev->dev_private;
6247
Yu Zhangf61018b2015-02-10 19:05:52 +08006248 /* Powersaving is controlled by the host when inside a VM */
6249 if (intel_vgpu_active(dev))
6250 return;
6251
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006252 if (IS_IRONLAKE_M(dev)) {
Imre Deakdc1d0132014-04-14 20:24:28 +03006253 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006254 ironlake_enable_drps(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006255 intel_init_emon(dev);
Imre Deakdc1d0132014-04-14 20:24:28 +03006256 mutex_unlock(&dev->struct_mutex);
Deepak S38807742014-05-23 21:00:15 +05306257 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006258 /*
6259 * PCU communication is slow and this doesn't need to be
6260 * done at any specific time, so do this out of our fast path
6261 * to make resume and init faster.
Imre Deakc6df39b2014-04-14 20:24:29 +03006262 *
6263 * We depend on the HW RC6 power context save/restore
6264 * mechanism when entering D3 through runtime PM suspend. So
6265 * disable RPM until RPS/RC6 is properly setup. We can only
6266 * get here via the driver load/system resume/runtime resume
6267 * paths, so the _noresume version is enough (and in case of
6268 * runtime resume it's necessary).
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006269 */
Imre Deakc6df39b2014-04-14 20:24:29 +03006270 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
6271 round_jiffies_up_relative(HZ)))
6272 intel_runtime_pm_get_noresume(dev_priv);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006273 }
6274}
6275
Imre Deakc6df39b2014-04-14 20:24:29 +03006276void intel_reset_gt_powersave(struct drm_device *dev)
6277{
6278 struct drm_i915_private *dev_priv = dev->dev_private;
6279
Imre Deakdbea3ce2014-12-15 18:59:28 +02006280 if (INTEL_INFO(dev)->gen < 6)
6281 return;
6282
6283 gen6_suspend_rps(dev);
Imre Deakc6df39b2014-04-14 20:24:29 +03006284 dev_priv->rps.enabled = false;
Imre Deakc6df39b2014-04-14 20:24:29 +03006285}
6286
Daniel Vetter3107bd42012-10-31 22:52:31 +01006287static void ibx_init_clock_gating(struct drm_device *dev)
6288{
6289 struct drm_i915_private *dev_priv = dev->dev_private;
6290
6291 /*
6292 * On Ibex Peak and Cougar Point, we need to disable clock
6293 * gating for the panel power sequencer or it will fail to
6294 * start up when no ports are active.
6295 */
6296 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6297}
6298
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006299static void g4x_disable_trickle_feed(struct drm_device *dev)
6300{
6301 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006302 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006303
Damien Lespiau055e3932014-08-18 13:49:10 +01006304 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006305 I915_WRITE(DSPCNTR(pipe),
6306 I915_READ(DSPCNTR(pipe)) |
6307 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006308
6309 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6310 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006311 }
6312}
6313
Ville Syrjälä017636c2013-12-05 15:51:37 +02006314static void ilk_init_lp_watermarks(struct drm_device *dev)
6315{
6316 struct drm_i915_private *dev_priv = dev->dev_private;
6317
6318 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6319 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6320 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6321
6322 /*
6323 * Don't touch WM1S_LP_EN here.
6324 * Doing so could cause underruns.
6325 */
6326}
6327
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006328static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006329{
6330 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006331 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006332
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006333 /*
6334 * Required for FBC
6335 * WaFbcDisableDpfcClockGating:ilk
6336 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006337 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6338 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6339 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006340
6341 I915_WRITE(PCH_3DCGDIS0,
6342 MARIUNIT_CLOCK_GATE_DISABLE |
6343 SVSMUNIT_CLOCK_GATE_DISABLE);
6344 I915_WRITE(PCH_3DCGDIS1,
6345 VFMUNIT_CLOCK_GATE_DISABLE);
6346
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006347 /*
6348 * According to the spec the following bits should be set in
6349 * order to enable memory self-refresh
6350 * The bit 22/21 of 0x42004
6351 * The bit 5 of 0x42020
6352 * The bit 15 of 0x45000
6353 */
6354 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6355 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6356 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006357 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006358 I915_WRITE(DISP_ARB_CTL,
6359 (I915_READ(DISP_ARB_CTL) |
6360 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006361
6362 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006363
6364 /*
6365 * Based on the document from hardware guys the following bits
6366 * should be set unconditionally in order to enable FBC.
6367 * The bit 22 of 0x42000
6368 * The bit 22 of 0x42004
6369 * The bit 7,8,9 of 0x42020.
6370 */
6371 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006372 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006373 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6374 I915_READ(ILK_DISPLAY_CHICKEN1) |
6375 ILK_FBCQ_DIS);
6376 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6377 I915_READ(ILK_DISPLAY_CHICKEN2) |
6378 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006379 }
6380
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006381 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6382
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006383 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6384 I915_READ(ILK_DISPLAY_CHICKEN2) |
6385 ILK_ELPIN_409_SELECT);
6386 I915_WRITE(_3D_CHICKEN2,
6387 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6388 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006389
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006390 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006391 I915_WRITE(CACHE_MODE_0,
6392 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006393
Akash Goel4e046322014-04-04 17:14:38 +05306394 /* WaDisable_RenderCache_OperationalFlush:ilk */
6395 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6396
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006397 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006398
Daniel Vetter3107bd42012-10-31 22:52:31 +01006399 ibx_init_clock_gating(dev);
6400}
6401
6402static void cpt_init_clock_gating(struct drm_device *dev)
6403{
6404 struct drm_i915_private *dev_priv = dev->dev_private;
6405 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006406 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006407
6408 /*
6409 * On Ibex Peak and Cougar Point, we need to disable clock
6410 * gating for the panel power sequencer or it will fail to
6411 * start up when no ports are active.
6412 */
Jesse Barnescd664072013-10-02 10:34:19 -07006413 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6414 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6415 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006416 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6417 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006418 /* The below fixes the weird display corruption, a few pixels shifted
6419 * downward, on (only) LVDS of some HP laptops with IVY.
6420 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006421 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006422 val = I915_READ(TRANS_CHICKEN2(pipe));
6423 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6424 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006425 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006426 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006427 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6428 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6429 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006430 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6431 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006432 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006433 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006434 I915_WRITE(TRANS_CHICKEN1(pipe),
6435 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6436 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006437}
6438
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006439static void gen6_check_mch_setup(struct drm_device *dev)
6440{
6441 struct drm_i915_private *dev_priv = dev->dev_private;
6442 uint32_t tmp;
6443
6444 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006445 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6446 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6447 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006448}
6449
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006450static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006451{
6452 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006453 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006454
Damien Lespiau231e54f2012-10-19 17:55:41 +01006455 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006456
6457 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6458 I915_READ(ILK_DISPLAY_CHICKEN2) |
6459 ILK_ELPIN_409_SELECT);
6460
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006461 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006462 I915_WRITE(_3D_CHICKEN,
6463 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6464
Akash Goel4e046322014-04-04 17:14:38 +05306465 /* WaDisable_RenderCache_OperationalFlush:snb */
6466 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6467
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006468 /*
6469 * BSpec recoomends 8x4 when MSAA is used,
6470 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006471 *
6472 * Note that PS/WM thread counts depend on the WIZ hashing
6473 * disable bit, which we don't touch here, but it's good
6474 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006475 */
6476 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006477 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006478
Ville Syrjälä017636c2013-12-05 15:51:37 +02006479 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006480
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006481 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006482 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006483
6484 I915_WRITE(GEN6_UCGCTL1,
6485 I915_READ(GEN6_UCGCTL1) |
6486 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6487 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6488
6489 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6490 * gating disable must be set. Failure to set it results in
6491 * flickering pixels due to Z write ordering failures after
6492 * some amount of runtime in the Mesa "fire" demo, and Unigine
6493 * Sanctuary and Tropics, and apparently anything else with
6494 * alpha test or pixel discard.
6495 *
6496 * According to the spec, bit 11 (RCCUNIT) must also be set,
6497 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006498 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006499 * WaDisableRCCUnitClockGating:snb
6500 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006501 */
6502 I915_WRITE(GEN6_UCGCTL2,
6503 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6504 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6505
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006506 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006507 I915_WRITE(_3D_CHICKEN3,
6508 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006509
6510 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006511 * Bspec says:
6512 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6513 * 3DSTATE_SF number of SF output attributes is more than 16."
6514 */
6515 I915_WRITE(_3D_CHICKEN3,
6516 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6517
6518 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006519 * According to the spec the following bits should be
6520 * set in order to enable memory self-refresh and fbc:
6521 * The bit21 and bit22 of 0x42000
6522 * The bit21 and bit22 of 0x42004
6523 * The bit5 and bit7 of 0x42020
6524 * The bit14 of 0x70180
6525 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006526 *
6527 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006528 */
6529 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6530 I915_READ(ILK_DISPLAY_CHICKEN1) |
6531 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6532 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6533 I915_READ(ILK_DISPLAY_CHICKEN2) |
6534 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006535 I915_WRITE(ILK_DSPCLK_GATE_D,
6536 I915_READ(ILK_DSPCLK_GATE_D) |
6537 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6538 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006539
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006540 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006541
Daniel Vetter3107bd42012-10-31 22:52:31 +01006542 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006543
6544 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006545}
6546
6547static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6548{
6549 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
6550
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006551 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006552 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006553 *
6554 * This actually overrides the dispatch
6555 * mode for all thread types.
6556 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006557 reg &= ~GEN7_FF_SCHED_MASK;
6558 reg |= GEN7_FF_TS_SCHED_HW;
6559 reg |= GEN7_FF_VS_SCHED_HW;
6560 reg |= GEN7_FF_DS_SCHED_HW;
6561
6562 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6563}
6564
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006565static void lpt_init_clock_gating(struct drm_device *dev)
6566{
6567 struct drm_i915_private *dev_priv = dev->dev_private;
6568
6569 /*
6570 * TODO: this bit should only be enabled when really needed, then
6571 * disabled when not needed anymore in order to save power.
6572 */
Ville Syrjäläc2699522015-08-27 23:55:59 +03006573 if (HAS_PCH_LPT_LP(dev))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006574 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6575 I915_READ(SOUTH_DSPCLK_GATE_D) |
6576 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006577
6578 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03006579 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
6580 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006581 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006582}
6583
Imre Deak7d708ee2013-04-17 14:04:50 +03006584static void lpt_suspend_hw(struct drm_device *dev)
6585{
6586 struct drm_i915_private *dev_priv = dev->dev_private;
6587
Ville Syrjäläc2699522015-08-27 23:55:59 +03006588 if (HAS_PCH_LPT_LP(dev)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03006589 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
6590
6591 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6592 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6593 }
6594}
6595
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006596static void broadwell_init_clock_gating(struct drm_device *dev)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006597{
6598 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00006599 enum pipe pipe;
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006600 uint32_t misccpctl;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006601
Ville Syrjälä7ad0dba2015-05-19 20:32:55 +03006602 ilk_init_lp_watermarks(dev);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006603
Ben Widawskyab57fff2013-12-12 15:28:04 -08006604 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006605 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006606
Ben Widawskyab57fff2013-12-12 15:28:04 -08006607 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006608 I915_WRITE(CHICKEN_PAR1_1,
6609 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6610
Ben Widawskyab57fff2013-12-12 15:28:04 -08006611 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006612 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006613 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006614 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006615 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006616 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006617
Ben Widawskyab57fff2013-12-12 15:28:04 -08006618 /* WaVSRefCountFullforceMissDisable:bdw */
6619 /* WaDSRefCountFullforceMissDisable:bdw */
6620 I915_WRITE(GEN7_FF_THREAD_MODE,
6621 I915_READ(GEN7_FF_THREAD_MODE) &
6622 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006623
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006624 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6625 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006626
6627 /* WaDisableSDEUnitClockGating:bdw */
6628 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6629 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006630
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006631 /*
6632 * WaProgramL3SqcReg1Default:bdw
6633 * WaTempDisableDOPClkGating:bdw
6634 */
6635 misccpctl = I915_READ(GEN7_MISCCPCTL);
6636 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6637 I915_WRITE(GEN8_L3SQCREG1, BDW_WA_L3SQCREG1_DEFAULT);
6638 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6639
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006640 /*
6641 * WaGttCachingOffByDefault:bdw
6642 * GTT cache may not work with big pages, so if those
6643 * are ever enabled GTT cache may need to be disabled.
6644 */
6645 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
6646
Paulo Zanoni89d6b2b2014-08-21 17:09:36 -03006647 lpt_init_clock_gating(dev);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006648}
6649
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006650static void haswell_init_clock_gating(struct drm_device *dev)
6651{
6652 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006653
Ville Syrjälä017636c2013-12-05 15:51:37 +02006654 ilk_init_lp_watermarks(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006655
Francisco Jerezf3fc4882013-10-02 15:53:16 -07006656 /* L3 caching of data atomics doesn't work -- disable it. */
6657 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6658 I915_WRITE(HSW_ROW_CHICKEN3,
6659 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6660
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006661 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006662 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6663 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6664 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6665
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02006666 /* WaVSRefCountFullforceMissDisable:hsw */
6667 I915_WRITE(GEN7_FF_THREAD_MODE,
6668 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006669
Akash Goel4e046322014-04-04 17:14:38 +05306670 /* WaDisable_RenderCache_OperationalFlush:hsw */
6671 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6672
Chia-I Wufe27c602014-01-28 13:29:33 +08006673 /* enable HiZ Raw Stall Optimization */
6674 I915_WRITE(CACHE_MODE_0_GEN7,
6675 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6676
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006677 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006678 I915_WRITE(CACHE_MODE_1,
6679 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006680
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006681 /*
6682 * BSpec recommends 8x4 when MSAA is used,
6683 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006684 *
6685 * Note that PS/WM thread counts depend on the WIZ hashing
6686 * disable bit, which we don't touch here, but it's good
6687 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006688 */
6689 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006690 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006691
Kenneth Graunke94411592014-12-31 16:23:00 -08006692 /* WaSampleCChickenBitEnable:hsw */
6693 I915_WRITE(HALF_SLICE_CHICKEN3,
6694 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
6695
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006696 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07006697 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
6698
Paulo Zanoni90a88642013-05-03 17:23:45 -03006699 /* WaRsPkgCStateDisplayPMReq:hsw */
6700 I915_WRITE(CHICKEN_PAR1_1,
6701 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006702
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006703 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006704}
6705
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006706static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006707{
6708 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07006709 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006710
Ville Syrjälä017636c2013-12-05 15:51:37 +02006711 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006712
Damien Lespiau231e54f2012-10-19 17:55:41 +01006713 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006714
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006715 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05006716 I915_WRITE(_3D_CHICKEN3,
6717 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6718
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006719 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006720 I915_WRITE(IVB_CHICKEN3,
6721 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6722 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6723
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006724 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07006725 if (IS_IVB_GT1(dev))
6726 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
6727 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006728
Akash Goel4e046322014-04-04 17:14:38 +05306729 /* WaDisable_RenderCache_OperationalFlush:ivb */
6730 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6731
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006732 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006733 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
6734 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
6735
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006736 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006737 I915_WRITE(GEN7_L3CNTLREG1,
6738 GEN7_WA_FOR_GEN7_L3_CONTROL);
6739 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07006740 GEN7_WA_L3_CHICKEN_MODE);
6741 if (IS_IVB_GT1(dev))
6742 I915_WRITE(GEN7_ROW_CHICKEN2,
6743 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006744 else {
6745 /* must write both registers */
6746 I915_WRITE(GEN7_ROW_CHICKEN2,
6747 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07006748 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
6749 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006750 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006751
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006752 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05006753 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6754 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6755
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02006756 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006757 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006758 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006759 */
6760 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02006761 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006762
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006763 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006764 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6765 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6766 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6767
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006768 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006769
6770 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02006771
Chris Wilson22721342014-03-04 09:41:43 +00006772 if (0) { /* causes HiZ corruption on ivb:gt1 */
6773 /* enable HiZ Raw Stall Optimization */
6774 I915_WRITE(CACHE_MODE_0_GEN7,
6775 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6776 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08006777
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006778 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02006779 I915_WRITE(CACHE_MODE_1,
6780 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07006781
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006782 /*
6783 * BSpec recommends 8x4 when MSAA is used,
6784 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006785 *
6786 * Note that PS/WM thread counts depend on the WIZ hashing
6787 * disable bit, which we don't touch here, but it's good
6788 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006789 */
6790 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006791 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006792
Ben Widawsky20848222012-05-04 18:58:59 -07006793 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
6794 snpcr &= ~GEN6_MBC_SNPCR_MASK;
6795 snpcr |= GEN6_MBC_SNPCR_MED;
6796 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006797
Ben Widawskyab5c6082013-04-05 13:12:41 -07006798 if (!HAS_PCH_NOP(dev))
6799 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006800
6801 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006802}
6803
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006804static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv)
6805{
6806 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6807
6808 /*
6809 * Disable trickle feed and enable pnd deadline calculation
6810 */
6811 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
6812 I915_WRITE(CBR1_VLV, 0);
6813}
6814
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006815static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006816{
6817 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006818
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006819 vlv_init_display_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006820
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006821 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05006822 I915_WRITE(_3D_CHICKEN3,
6823 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6824
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006825 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006826 I915_WRITE(IVB_CHICKEN3,
6827 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6828 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6829
Ville Syrjäläfad7d362014-01-22 21:32:39 +02006830 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006831 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07006832 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08006833 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
6834 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006835
Akash Goel4e046322014-04-04 17:14:38 +05306836 /* WaDisable_RenderCache_OperationalFlush:vlv */
6837 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6838
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006839 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05006840 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6841 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6842
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006843 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07006844 I915_WRITE(GEN7_ROW_CHICKEN2,
6845 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
6846
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006847 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006848 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6849 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6850 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6851
Ville Syrjälä46680e02014-01-22 21:33:01 +02006852 gen7_setup_fixed_func_scheduler(dev_priv);
6853
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006854 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006855 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006856 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006857 */
6858 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006859 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006860
Akash Goelc98f5062014-03-24 23:00:07 +05306861 /* WaDisableL3Bank2xClockGate:vlv
6862 * Disabling L3 clock gating- MMIO 940c[25] = 1
6863 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
6864 I915_WRITE(GEN7_UCGCTL4,
6865 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07006866
Ville Syrjäläafd58e72014-01-22 21:33:03 +02006867 /*
6868 * BSpec says this must be set, even though
6869 * WaDisable4x2SubspanOptimization isn't listed for VLV.
6870 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02006871 I915_WRITE(CACHE_MODE_1,
6872 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07006873
6874 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02006875 * BSpec recommends 8x4 when MSAA is used,
6876 * however in practice 16x4 seems fastest.
6877 *
6878 * Note that PS/WM thread counts depend on the WIZ hashing
6879 * disable bit, which we don't touch here, but it's good
6880 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
6881 */
6882 I915_WRITE(GEN7_GT_MODE,
6883 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
6884
6885 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02006886 * WaIncreaseL3CreditsForVLVB0:vlv
6887 * This is the hardware default actually.
6888 */
6889 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
6890
6891 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006892 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07006893 * Disable clock gating on th GCFG unit to prevent a delay
6894 * in the reporting of vblank events.
6895 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02006896 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006897}
6898
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006899static void cherryview_init_clock_gating(struct drm_device *dev)
6900{
6901 struct drm_i915_private *dev_priv = dev->dev_private;
6902
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006903 vlv_init_display_clock_gating(dev_priv);
Ville Syrjälädd811e72014-04-09 13:28:33 +03006904
Ville Syrjälä232ce332014-04-09 13:28:35 +03006905 /* WaVSRefCountFullforceMissDisable:chv */
6906 /* WaDSRefCountFullforceMissDisable:chv */
6907 I915_WRITE(GEN7_FF_THREAD_MODE,
6908 I915_READ(GEN7_FF_THREAD_MODE) &
6909 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03006910
6911 /* WaDisableSemaphoreAndSyncFlipWait:chv */
6912 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6913 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03006914
6915 /* WaDisableCSUnitClockGating:chv */
6916 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
6917 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03006918
6919 /* WaDisableSDEUnitClockGating:chv */
6920 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6921 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006922
6923 /*
6924 * GTT cache may not work with big pages, so if those
6925 * are ever enabled GTT cache may need to be disabled.
6926 */
6927 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006928}
6929
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006930static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006931{
6932 struct drm_i915_private *dev_priv = dev->dev_private;
6933 uint32_t dspclk_gate;
6934
6935 I915_WRITE(RENCLK_GATE_D1, 0);
6936 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6937 GS_UNIT_CLOCK_GATE_DISABLE |
6938 CL_UNIT_CLOCK_GATE_DISABLE);
6939 I915_WRITE(RAMCLK_GATE_D, 0);
6940 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6941 OVRUNIT_CLOCK_GATE_DISABLE |
6942 OVCUNIT_CLOCK_GATE_DISABLE;
6943 if (IS_GM45(dev))
6944 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
6945 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02006946
6947 /* WaDisableRenderCachePipelinedFlush */
6948 I915_WRITE(CACHE_MODE_0,
6949 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03006950
Akash Goel4e046322014-04-04 17:14:38 +05306951 /* WaDisable_RenderCache_OperationalFlush:g4x */
6952 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6953
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006954 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006955}
6956
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006957static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006958{
6959 struct drm_i915_private *dev_priv = dev->dev_private;
6960
6961 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
6962 I915_WRITE(RENCLK_GATE_D2, 0);
6963 I915_WRITE(DSPCLK_GATE_D, 0);
6964 I915_WRITE(RAMCLK_GATE_D, 0);
6965 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006966 I915_WRITE(MI_ARB_STATE,
6967 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306968
6969 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6970 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006971}
6972
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006973static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006974{
6975 struct drm_i915_private *dev_priv = dev->dev_private;
6976
6977 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
6978 I965_RCC_CLOCK_GATE_DISABLE |
6979 I965_RCPB_CLOCK_GATE_DISABLE |
6980 I965_ISC_CLOCK_GATE_DISABLE |
6981 I965_FBC_CLOCK_GATE_DISABLE);
6982 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006983 I915_WRITE(MI_ARB_STATE,
6984 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306985
6986 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6987 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006988}
6989
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006990static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006991{
6992 struct drm_i915_private *dev_priv = dev->dev_private;
6993 u32 dstate = I915_READ(D_STATE);
6994
6995 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
6996 DSTATE_DOT_CLOCK_GATING;
6997 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01006998
6999 if (IS_PINEVIEW(dev))
7000 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007001
7002 /* IIR "flip pending" means done if this bit is set */
7003 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007004
7005 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007006 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007007
7008 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7009 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007010
7011 I915_WRITE(MI_ARB_STATE,
7012 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007013}
7014
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007015static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007016{
7017 struct drm_i915_private *dev_priv = dev->dev_private;
7018
7019 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007020
7021 /* interrupts should cause a wake up from C3 */
7022 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7023 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007024
7025 I915_WRITE(MEM_MODE,
7026 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007027}
7028
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007029static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007030{
7031 struct drm_i915_private *dev_priv = dev->dev_private;
7032
7033 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03007034
7035 I915_WRITE(MEM_MODE,
7036 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7037 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007038}
7039
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007040void intel_init_clock_gating(struct drm_device *dev)
7041{
7042 struct drm_i915_private *dev_priv = dev->dev_private;
7043
Damien Lespiauc57e3552015-02-09 19:33:05 +00007044 if (dev_priv->display.init_clock_gating)
7045 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007046}
7047
Imre Deak7d708ee2013-04-17 14:04:50 +03007048void intel_suspend_hw(struct drm_device *dev)
7049{
7050 if (HAS_PCH_LPT(dev))
7051 lpt_suspend_hw(dev);
7052}
7053
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007054/* Set up chip specific power management-related functions */
7055void intel_init_pm(struct drm_device *dev)
7056{
7057 struct drm_i915_private *dev_priv = dev->dev_private;
7058
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007059 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007060
Daniel Vetterc921aba2012-04-26 23:28:17 +02007061 /* For cxsr */
7062 if (IS_PINEVIEW(dev))
7063 i915_pineview_get_mem_freq(dev);
7064 else if (IS_GEN5(dev))
7065 i915_ironlake_get_mem_freq(dev);
7066
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007067 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00007068 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00007069 skl_setup_wm_latency(dev);
7070
Imre Deaka82abe42015-03-27 14:00:04 +02007071 if (IS_BROXTON(dev))
7072 dev_priv->display.init_clock_gating =
7073 bxt_init_clock_gating;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00007074 dev_priv->display.update_wm = skl_update_wm;
Damien Lespiauc83155a2014-03-28 00:18:35 +05307075 } else if (HAS_PCH_SPLIT(dev)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00007076 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007077
Ville Syrjäläbd602542014-01-07 16:14:10 +02007078 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
7079 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
7080 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
7081 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007082 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Roper396e33a2016-01-06 11:34:30 -08007083 dev_priv->display.compute_intermediate_wm =
7084 ilk_compute_intermediate_wm;
7085 dev_priv->display.initial_watermarks =
7086 ilk_initial_watermarks;
7087 dev_priv->display.optimize_watermarks =
7088 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007089 } else {
7090 DRM_DEBUG_KMS("Failed to read display plane latency. "
7091 "Disable CxSR\n");
7092 }
7093
7094 if (IS_GEN5(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007095 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007096 else if (IS_GEN6(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007097 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007098 else if (IS_IVYBRIDGE(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007099 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007100 else if (IS_HASWELL(dev))
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007101 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007102 else if (INTEL_INFO(dev)->gen == 8)
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03007103 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007104 } else if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03007105 vlv_setup_wm_latency(dev);
7106
7107 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007108 dev_priv->display.init_clock_gating =
7109 cherryview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007110 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007111 vlv_setup_wm_latency(dev);
7112
7113 dev_priv->display.update_wm = vlv_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007114 dev_priv->display.init_clock_gating =
7115 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007116 } else if (IS_PINEVIEW(dev)) {
7117 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
7118 dev_priv->is_ddr3,
7119 dev_priv->fsb_freq,
7120 dev_priv->mem_freq)) {
7121 DRM_INFO("failed to find known CxSR latency "
7122 "(found ddr%s fsb freq %d, mem freq %d), "
7123 "disabling CxSR\n",
7124 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7125 dev_priv->fsb_freq, dev_priv->mem_freq);
7126 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007127 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007128 dev_priv->display.update_wm = NULL;
7129 } else
7130 dev_priv->display.update_wm = pineview_update_wm;
7131 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7132 } else if (IS_G4X(dev)) {
7133 dev_priv->display.update_wm = g4x_update_wm;
7134 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
7135 } else if (IS_GEN4(dev)) {
7136 dev_priv->display.update_wm = i965_update_wm;
7137 if (IS_CRESTLINE(dev))
7138 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
7139 else if (IS_BROADWATER(dev))
7140 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7141 } else if (IS_GEN3(dev)) {
7142 dev_priv->display.update_wm = i9xx_update_wm;
7143 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
7144 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007145 } else if (IS_GEN2(dev)) {
7146 if (INTEL_INFO(dev)->num_pipes == 1) {
7147 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007148 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007149 } else {
7150 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007151 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007152 }
7153
7154 if (IS_I85X(dev) || IS_I865G(dev))
7155 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7156 else
7157 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7158 } else {
7159 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007160 }
7161}
7162
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007163int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007164{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007165 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007166
7167 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7168 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7169 return -EAGAIN;
7170 }
7171
7172 I915_WRITE(GEN6_PCODE_DATA, *val);
Damien Lespiaudddab342014-11-13 17:51:50 +00007173 I915_WRITE(GEN6_PCODE_DATA1, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007174 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7175
7176 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7177 500)) {
7178 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7179 return -ETIMEDOUT;
7180 }
7181
7182 *val = I915_READ(GEN6_PCODE_DATA);
7183 I915_WRITE(GEN6_PCODE_DATA, 0);
7184
7185 return 0;
7186}
7187
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007188int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007189{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007190 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007191
7192 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7193 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7194 return -EAGAIN;
7195 }
7196
7197 I915_WRITE(GEN6_PCODE_DATA, val);
7198 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7199
7200 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7201 500)) {
7202 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7203 return -ETIMEDOUT;
7204 }
7205
7206 I915_WRITE(GEN6_PCODE_DATA, 0);
7207
7208 return 0;
7209}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007210
Ville Syrjälädd06f882014-11-10 22:55:12 +02007211static int vlv_gpu_freq_div(unsigned int czclk_freq)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007212{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007213 switch (czclk_freq) {
7214 case 200:
7215 return 10;
7216 case 267:
7217 return 12;
7218 case 320:
7219 case 333:
Ville Syrjälädd06f882014-11-10 22:55:12 +02007220 return 16;
Ville Syrjäläab3fb152014-11-10 22:55:15 +02007221 case 400:
7222 return 20;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007223 default:
7224 return -1;
7225 }
Ville Syrjälädd06f882014-11-10 22:55:12 +02007226}
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007227
Ville Syrjälädd06f882014-11-10 22:55:12 +02007228static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7229{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007230 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Ville Syrjälädd06f882014-11-10 22:55:12 +02007231
7232 div = vlv_gpu_freq_div(czclk_freq);
7233 if (div < 0)
7234 return div;
7235
7236 return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007237}
7238
Fengguang Wub55dd642014-07-12 11:21:39 +02007239static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007240{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007241 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007242
Ville Syrjälädd06f882014-11-10 22:55:12 +02007243 mul = vlv_gpu_freq_div(czclk_freq);
7244 if (mul < 0)
7245 return mul;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007246
Ville Syrjälädd06f882014-11-10 22:55:12 +02007247 return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007248}
7249
Fengguang Wub55dd642014-07-12 11:21:39 +02007250static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307251{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007252 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307253
Ville Syrjälädd06f882014-11-10 22:55:12 +02007254 div = vlv_gpu_freq_div(czclk_freq) / 2;
7255 if (div < 0)
7256 return div;
Deepak S22b1b2f2014-07-12 14:54:33 +05307257
Ville Syrjälädd06f882014-11-10 22:55:12 +02007258 return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307259}
7260
Fengguang Wub55dd642014-07-12 11:21:39 +02007261static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307262{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007263 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307264
Ville Syrjälädd06f882014-11-10 22:55:12 +02007265 mul = vlv_gpu_freq_div(czclk_freq) / 2;
7266 if (mul < 0)
7267 return mul;
Deepak S22b1b2f2014-07-12 14:54:33 +05307268
Ville Syrjälä1c147622014-08-18 14:42:43 +03007269 /* CHV needs even values */
Ville Syrjälädd06f882014-11-10 22:55:12 +02007270 return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307271}
7272
Ville Syrjälä616bc822015-01-23 21:04:25 +02007273int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7274{
Akash Goel80b6dda2015-03-06 11:07:15 +05307275 if (IS_GEN9(dev_priv->dev))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007276 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
7277 GEN9_FREQ_SCALER);
Akash Goel80b6dda2015-03-06 11:07:15 +05307278 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007279 return chv_gpu_freq(dev_priv, val);
7280 else if (IS_VALLEYVIEW(dev_priv->dev))
7281 return byt_gpu_freq(dev_priv, val);
7282 else
7283 return val * GT_FREQUENCY_MULTIPLIER;
7284}
7285
Ville Syrjälä616bc822015-01-23 21:04:25 +02007286int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7287{
Akash Goel80b6dda2015-03-06 11:07:15 +05307288 if (IS_GEN9(dev_priv->dev))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007289 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
7290 GT_FREQUENCY_MULTIPLIER);
Akash Goel80b6dda2015-03-06 11:07:15 +05307291 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007292 return chv_freq_opcode(dev_priv, val);
Deepak S22b1b2f2014-07-12 14:54:33 +05307293 else if (IS_VALLEYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007294 return byt_freq_opcode(dev_priv, val);
7295 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007296 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05307297}
7298
Chris Wilson6ad790c2015-04-07 16:20:31 +01007299struct request_boost {
7300 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02007301 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007302};
7303
7304static void __intel_rps_boost_work(struct work_struct *work)
7305{
7306 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01007307 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007308
Chris Wilsone61b9952015-04-27 13:41:24 +01007309 if (!i915_gem_request_completed(req, true))
7310 gen6_rps_boost(to_i915(req->ring->dev), NULL,
7311 req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007312
Chris Wilsone61b9952015-04-27 13:41:24 +01007313 i915_gem_request_unreference__unlocked(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007314 kfree(boost);
7315}
7316
7317void intel_queue_rps_boost_for_request(struct drm_device *dev,
Daniel Vettereed29a52015-05-21 14:21:25 +02007318 struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007319{
7320 struct request_boost *boost;
7321
Daniel Vettereed29a52015-05-21 14:21:25 +02007322 if (req == NULL || INTEL_INFO(dev)->gen < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007323 return;
7324
Chris Wilsone61b9952015-04-27 13:41:24 +01007325 if (i915_gem_request_completed(req, true))
7326 return;
7327
Chris Wilson6ad790c2015-04-07 16:20:31 +01007328 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
7329 if (boost == NULL)
7330 return;
7331
Daniel Vettereed29a52015-05-21 14:21:25 +02007332 i915_gem_request_reference(req);
7333 boost->req = req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007334
7335 INIT_WORK(&boost->work, __intel_rps_boost_work);
7336 queue_work(to_i915(dev)->wq, &boost->work);
7337}
7338
Daniel Vetterf742a552013-12-06 10:17:53 +01007339void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01007340{
7341 struct drm_i915_private *dev_priv = dev->dev_private;
7342
Daniel Vetterf742a552013-12-06 10:17:53 +01007343 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01007344 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01007345
Chris Wilson907b28c2013-07-19 20:36:52 +01007346 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
7347 intel_gen6_powersave_work);
Chris Wilson1854d5c2015-04-07 16:20:32 +01007348 INIT_LIST_HEAD(&dev_priv->rps.clients);
Chris Wilson2e1b8732015-04-27 13:41:22 +01007349 INIT_LIST_HEAD(&dev_priv->rps.semaphores.link);
7350 INIT_LIST_HEAD(&dev_priv->rps.mmioflips.link);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03007351
Paulo Zanoni33688d92014-03-07 20:08:19 -03007352 dev_priv->pm.suspended = false;
Imre Deak1f814da2015-12-16 02:52:19 +02007353 atomic_set(&dev_priv->pm.wakeref_count, 0);
Imre Deak2b19efe2015-12-15 20:10:37 +02007354 atomic_set(&dev_priv->pm.atomic_seq, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01007355}