blob: 80175a38a8755c279f407cdc9678fe216463b54b [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 Deaka82abe42015-03-27 14:00:04 +020069}
70
Daniel Vetterc921aba2012-04-26 23:28:17 +020071static void i915_pineview_get_mem_freq(struct drm_device *dev)
72{
Jani Nikula50227e12014-03-31 14:27:21 +030073 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +020074 u32 tmp;
75
76 tmp = I915_READ(CLKCFG);
77
78 switch (tmp & CLKCFG_FSB_MASK) {
79 case CLKCFG_FSB_533:
80 dev_priv->fsb_freq = 533; /* 133*4 */
81 break;
82 case CLKCFG_FSB_800:
83 dev_priv->fsb_freq = 800; /* 200*4 */
84 break;
85 case CLKCFG_FSB_667:
86 dev_priv->fsb_freq = 667; /* 167*4 */
87 break;
88 case CLKCFG_FSB_400:
89 dev_priv->fsb_freq = 400; /* 100*4 */
90 break;
91 }
92
93 switch (tmp & CLKCFG_MEM_MASK) {
94 case CLKCFG_MEM_533:
95 dev_priv->mem_freq = 533;
96 break;
97 case CLKCFG_MEM_667:
98 dev_priv->mem_freq = 667;
99 break;
100 case CLKCFG_MEM_800:
101 dev_priv->mem_freq = 800;
102 break;
103 }
104
105 /* detect pineview DDR3 setting */
106 tmp = I915_READ(CSHRDDR3CTL);
107 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
108}
109
110static void i915_ironlake_get_mem_freq(struct drm_device *dev)
111{
Jani Nikula50227e12014-03-31 14:27:21 +0300112 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200113 u16 ddrpll, csipll;
114
115 ddrpll = I915_READ16(DDRMPLL1);
116 csipll = I915_READ16(CSIPLL0);
117
118 switch (ddrpll & 0xff) {
119 case 0xc:
120 dev_priv->mem_freq = 800;
121 break;
122 case 0x10:
123 dev_priv->mem_freq = 1066;
124 break;
125 case 0x14:
126 dev_priv->mem_freq = 1333;
127 break;
128 case 0x18:
129 dev_priv->mem_freq = 1600;
130 break;
131 default:
132 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
133 ddrpll & 0xff);
134 dev_priv->mem_freq = 0;
135 break;
136 }
137
Daniel Vetter20e4d402012-08-08 23:35:39 +0200138 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200139
140 switch (csipll & 0x3ff) {
141 case 0x00c:
142 dev_priv->fsb_freq = 3200;
143 break;
144 case 0x00e:
145 dev_priv->fsb_freq = 3733;
146 break;
147 case 0x010:
148 dev_priv->fsb_freq = 4266;
149 break;
150 case 0x012:
151 dev_priv->fsb_freq = 4800;
152 break;
153 case 0x014:
154 dev_priv->fsb_freq = 5333;
155 break;
156 case 0x016:
157 dev_priv->fsb_freq = 5866;
158 break;
159 case 0x018:
160 dev_priv->fsb_freq = 6400;
161 break;
162 default:
163 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
164 csipll & 0x3ff);
165 dev_priv->fsb_freq = 0;
166 break;
167 }
168
169 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200170 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200171 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200172 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200173 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200174 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200175 }
176}
177
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300178static const struct cxsr_latency cxsr_latency_table[] = {
179 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
180 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
181 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
182 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
183 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
184
185 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
186 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
187 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
188 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
189 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
190
191 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
192 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
193 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
194 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
195 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
196
197 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
198 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
199 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
200 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
201 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
202
203 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
204 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
205 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
206 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
207 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
208
209 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
210 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
211 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
212 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
213 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
214};
215
Daniel Vetter63c62272012-04-21 23:17:55 +0200216static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300217 int is_ddr3,
218 int fsb,
219 int mem)
220{
221 const struct cxsr_latency *latency;
222 int i;
223
224 if (fsb == 0 || mem == 0)
225 return NULL;
226
227 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
228 latency = &cxsr_latency_table[i];
229 if (is_desktop == latency->is_desktop &&
230 is_ddr3 == latency->is_ddr3 &&
231 fsb == latency->fsb_freq && mem == latency->mem_freq)
232 return latency;
233 }
234
235 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
236
237 return NULL;
238}
239
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200240static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
241{
242 u32 val;
243
244 mutex_lock(&dev_priv->rps.hw_lock);
245
246 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
247 if (enable)
248 val &= ~FORCE_DDR_HIGH_FREQ;
249 else
250 val |= FORCE_DDR_HIGH_FREQ;
251 val &= ~FORCE_DDR_LOW_FREQ;
252 val |= FORCE_DDR_FREQ_REQ_ACK;
253 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
254
255 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
256 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
257 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
258
259 mutex_unlock(&dev_priv->rps.hw_lock);
260}
261
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200262static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
263{
264 u32 val;
265
266 mutex_lock(&dev_priv->rps.hw_lock);
267
268 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
269 if (enable)
270 val |= DSP_MAXFIFO_PM5_ENABLE;
271 else
272 val &= ~DSP_MAXFIFO_PM5_ENABLE;
273 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
274
275 mutex_unlock(&dev_priv->rps.hw_lock);
276}
277
Ville Syrjäläf4998962015-03-10 17:02:21 +0200278#define FW_WM(value, plane) \
279 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
280
Imre Deak5209b1f2014-07-01 12:36:17 +0300281void intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300282{
Imre Deak5209b1f2014-07-01 12:36:17 +0300283 struct drm_device *dev = dev_priv->dev;
284 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300285
Imre Deak5209b1f2014-07-01 12:36:17 +0300286 if (IS_VALLEYVIEW(dev)) {
287 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300288 POSTING_READ(FW_BLC_SELF_VLV);
Ville Syrjälä852eb002015-06-24 22:00:07 +0300289 dev_priv->wm.vlv.cxsr = enable;
Imre Deak5209b1f2014-07-01 12:36:17 +0300290 } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) {
291 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300292 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300293 } else if (IS_PINEVIEW(dev)) {
294 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
295 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
296 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300297 POSTING_READ(DSPFW3);
Imre Deak5209b1f2014-07-01 12:36:17 +0300298 } else if (IS_I945G(dev) || IS_I945GM(dev)) {
299 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
300 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
301 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300302 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300303 } else if (IS_I915GM(dev)) {
304 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
305 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
306 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300307 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300308 } else {
309 return;
310 }
311
312 DRM_DEBUG_KMS("memory self-refresh is %s\n",
313 enable ? "enabled" : "disabled");
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300314}
315
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200316
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300317/*
318 * Latency for FIFO fetches is dependent on several factors:
319 * - memory configuration (speed, channels)
320 * - chipset
321 * - current MCH state
322 * It can be fairly high in some situations, so here we assume a fairly
323 * pessimal value. It's a tradeoff between extra memory fetches (if we
324 * set this value too high, the FIFO will fetch frequently to stay full)
325 * and power consumption (set it too low to save power and we might see
326 * FIFO underruns and display "flicker").
327 *
328 * A value of 5us seems to be a good balance; safe for very low end
329 * platforms but not overly aggressive on lower latency configs.
330 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100331static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300332
Ville Syrjäläb5004722015-03-05 21:19:47 +0200333#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
334 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
335
336static int vlv_get_fifo_size(struct drm_device *dev,
337 enum pipe pipe, int plane)
338{
339 struct drm_i915_private *dev_priv = dev->dev_private;
340 int sprite0_start, sprite1_start, size;
341
342 switch (pipe) {
343 uint32_t dsparb, dsparb2, dsparb3;
344 case PIPE_A:
345 dsparb = I915_READ(DSPARB);
346 dsparb2 = I915_READ(DSPARB2);
347 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
348 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
349 break;
350 case PIPE_B:
351 dsparb = I915_READ(DSPARB);
352 dsparb2 = I915_READ(DSPARB2);
353 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
354 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
355 break;
356 case PIPE_C:
357 dsparb2 = I915_READ(DSPARB2);
358 dsparb3 = I915_READ(DSPARB3);
359 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
360 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
361 break;
362 default:
363 return 0;
364 }
365
366 switch (plane) {
367 case 0:
368 size = sprite0_start;
369 break;
370 case 1:
371 size = sprite1_start - sprite0_start;
372 break;
373 case 2:
374 size = 512 - 1 - sprite1_start;
375 break;
376 default:
377 return 0;
378 }
379
380 DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n",
381 pipe_name(pipe), plane == 0 ? "primary" : "sprite",
382 plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1),
383 size);
384
385 return size;
386}
387
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300388static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300389{
390 struct drm_i915_private *dev_priv = dev->dev_private;
391 uint32_t dsparb = I915_READ(DSPARB);
392 int size;
393
394 size = dsparb & 0x7f;
395 if (plane)
396 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
397
398 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
399 plane ? "B" : "A", size);
400
401 return size;
402}
403
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200404static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300405{
406 struct drm_i915_private *dev_priv = dev->dev_private;
407 uint32_t dsparb = I915_READ(DSPARB);
408 int size;
409
410 size = dsparb & 0x1ff;
411 if (plane)
412 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
413 size >>= 1; /* Convert to cachelines */
414
415 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
416 plane ? "B" : "A", size);
417
418 return size;
419}
420
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300421static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300422{
423 struct drm_i915_private *dev_priv = dev->dev_private;
424 uint32_t dsparb = I915_READ(DSPARB);
425 int size;
426
427 size = dsparb & 0x7f;
428 size >>= 2; /* Convert to cachelines */
429
430 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
431 plane ? "B" : "A",
432 size);
433
434 return size;
435}
436
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300437/* Pineview has different values for various configs */
438static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300439 .fifo_size = PINEVIEW_DISPLAY_FIFO,
440 .max_wm = PINEVIEW_MAX_WM,
441 .default_wm = PINEVIEW_DFT_WM,
442 .guard_size = PINEVIEW_GUARD_WM,
443 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300444};
445static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300446 .fifo_size = PINEVIEW_DISPLAY_FIFO,
447 .max_wm = PINEVIEW_MAX_WM,
448 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
449 .guard_size = PINEVIEW_GUARD_WM,
450 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300451};
452static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300453 .fifo_size = PINEVIEW_CURSOR_FIFO,
454 .max_wm = PINEVIEW_CURSOR_MAX_WM,
455 .default_wm = PINEVIEW_CURSOR_DFT_WM,
456 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
457 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300458};
459static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300460 .fifo_size = PINEVIEW_CURSOR_FIFO,
461 .max_wm = PINEVIEW_CURSOR_MAX_WM,
462 .default_wm = PINEVIEW_CURSOR_DFT_WM,
463 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
464 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300465};
466static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300467 .fifo_size = G4X_FIFO_SIZE,
468 .max_wm = G4X_MAX_WM,
469 .default_wm = G4X_MAX_WM,
470 .guard_size = 2,
471 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300472};
473static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300474 .fifo_size = I965_CURSOR_FIFO,
475 .max_wm = I965_CURSOR_MAX_WM,
476 .default_wm = I965_CURSOR_DFT_WM,
477 .guard_size = 2,
478 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300479};
480static const struct intel_watermark_params valleyview_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300481 .fifo_size = VALLEYVIEW_FIFO_SIZE,
482 .max_wm = VALLEYVIEW_MAX_WM,
483 .default_wm = VALLEYVIEW_MAX_WM,
484 .guard_size = 2,
485 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300486};
487static const struct intel_watermark_params valleyview_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300488 .fifo_size = I965_CURSOR_FIFO,
489 .max_wm = VALLEYVIEW_CURSOR_MAX_WM,
490 .default_wm = I965_CURSOR_DFT_WM,
491 .guard_size = 2,
492 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300493};
494static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300495 .fifo_size = I965_CURSOR_FIFO,
496 .max_wm = I965_CURSOR_MAX_WM,
497 .default_wm = I965_CURSOR_DFT_WM,
498 .guard_size = 2,
499 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300500};
501static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300502 .fifo_size = I945_FIFO_SIZE,
503 .max_wm = I915_MAX_WM,
504 .default_wm = 1,
505 .guard_size = 2,
506 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300507};
508static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300509 .fifo_size = I915_FIFO_SIZE,
510 .max_wm = I915_MAX_WM,
511 .default_wm = 1,
512 .guard_size = 2,
513 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300514};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300515static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300516 .fifo_size = I855GM_FIFO_SIZE,
517 .max_wm = I915_MAX_WM,
518 .default_wm = 1,
519 .guard_size = 2,
520 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300521};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300522static const struct intel_watermark_params i830_bc_wm_info = {
523 .fifo_size = I855GM_FIFO_SIZE,
524 .max_wm = I915_MAX_WM/2,
525 .default_wm = 1,
526 .guard_size = 2,
527 .cacheline_size = I830_FIFO_LINE_SIZE,
528};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200529static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300530 .fifo_size = I830_FIFO_SIZE,
531 .max_wm = I915_MAX_WM,
532 .default_wm = 1,
533 .guard_size = 2,
534 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300535};
536
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300537/**
538 * intel_calculate_wm - calculate watermark level
539 * @clock_in_khz: pixel clock
540 * @wm: chip FIFO params
541 * @pixel_size: display pixel size
542 * @latency_ns: memory latency for the platform
543 *
544 * Calculate the watermark level (the level at which the display plane will
545 * start fetching from memory again). Each chip has a different display
546 * FIFO size and allocation, so the caller needs to figure that out and pass
547 * in the correct intel_watermark_params structure.
548 *
549 * As the pixel clock runs, the FIFO will be drained at a rate that depends
550 * on the pixel size. When it reaches the watermark level, it'll start
551 * fetching FIFO line sized based chunks from memory until the FIFO fills
552 * past the watermark point. If the FIFO drains completely, a FIFO underrun
553 * will occur, and a display engine hang could result.
554 */
555static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
556 const struct intel_watermark_params *wm,
557 int fifo_size,
558 int pixel_size,
559 unsigned long latency_ns)
560{
561 long entries_required, wm_size;
562
563 /*
564 * Note: we need to make sure we don't overflow for various clock &
565 * latency values.
566 * clocks go from a few thousand to several hundred thousand.
567 * latency is usually a few thousand
568 */
569 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
570 1000;
571 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
572
573 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
574
575 wm_size = fifo_size - (entries_required + wm->guard_size);
576
577 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
578
579 /* Don't promote wm_size to unsigned... */
580 if (wm_size > (long)wm->max_wm)
581 wm_size = wm->max_wm;
582 if (wm_size <= 0)
583 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300584
585 /*
586 * Bspec seems to indicate that the value shouldn't be lower than
587 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
588 * Lets go for 8 which is the burst size since certain platforms
589 * already use a hardcoded 8 (which is what the spec says should be
590 * done).
591 */
592 if (wm_size <= 8)
593 wm_size = 8;
594
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300595 return wm_size;
596}
597
598static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
599{
600 struct drm_crtc *crtc, *enabled = NULL;
601
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100602 for_each_crtc(dev, crtc) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000603 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300604 if (enabled)
605 return NULL;
606 enabled = crtc;
607 }
608 }
609
610 return enabled;
611}
612
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300613static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300614{
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300615 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300616 struct drm_i915_private *dev_priv = dev->dev_private;
617 struct drm_crtc *crtc;
618 const struct cxsr_latency *latency;
619 u32 reg;
620 unsigned long wm;
621
622 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
623 dev_priv->fsb_freq, dev_priv->mem_freq);
624 if (!latency) {
625 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300626 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300627 return;
628 }
629
630 crtc = single_enabled_crtc(dev);
631 if (crtc) {
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300632 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -0800633 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300634 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300635
636 /* Display SR */
637 wm = intel_calculate_wm(clock, &pineview_display_wm,
638 pineview_display_wm.fifo_size,
639 pixel_size, latency->display_sr);
640 reg = I915_READ(DSPFW1);
641 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200642 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300643 I915_WRITE(DSPFW1, reg);
644 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
645
646 /* cursor SR */
647 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
648 pineview_display_wm.fifo_size,
649 pixel_size, latency->cursor_sr);
650 reg = I915_READ(DSPFW3);
651 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200652 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300653 I915_WRITE(DSPFW3, reg);
654
655 /* Display HPLL off SR */
656 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
657 pineview_display_hplloff_wm.fifo_size,
658 pixel_size, latency->display_hpll_disable);
659 reg = I915_READ(DSPFW3);
660 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200661 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300662 I915_WRITE(DSPFW3, reg);
663
664 /* cursor HPLL off SR */
665 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
666 pineview_display_hplloff_wm.fifo_size,
667 pixel_size, latency->cursor_hpll_disable);
668 reg = I915_READ(DSPFW3);
669 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200670 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300671 I915_WRITE(DSPFW3, reg);
672 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
673
Imre Deak5209b1f2014-07-01 12:36:17 +0300674 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300675 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300676 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300677 }
678}
679
680static bool g4x_compute_wm0(struct drm_device *dev,
681 int plane,
682 const struct intel_watermark_params *display,
683 int display_latency_ns,
684 const struct intel_watermark_params *cursor,
685 int cursor_latency_ns,
686 int *plane_wm,
687 int *cursor_wm)
688{
689 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300690 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300691 int htotal, hdisplay, clock, pixel_size;
692 int line_time_us, line_count;
693 int entries, tlb_miss;
694
695 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +0000696 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300697 *cursor_wm = cursor->guard_size;
698 *plane_wm = display->guard_size;
699 return false;
700 }
701
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200702 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100703 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800704 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200705 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800706 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300707
708 /* Use the small buffer method to calculate plane watermark */
709 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
710 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
711 if (tlb_miss > 0)
712 entries += tlb_miss;
713 entries = DIV_ROUND_UP(entries, display->cacheline_size);
714 *plane_wm = entries + display->guard_size;
715 if (*plane_wm > (int)display->max_wm)
716 *plane_wm = display->max_wm;
717
718 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200719 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300720 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Matt Roper3dd512f2015-02-27 10:12:00 -0800721 entries = line_count * crtc->cursor->state->crtc_w * pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300722 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
723 if (tlb_miss > 0)
724 entries += tlb_miss;
725 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
726 *cursor_wm = entries + cursor->guard_size;
727 if (*cursor_wm > (int)cursor->max_wm)
728 *cursor_wm = (int)cursor->max_wm;
729
730 return true;
731}
732
733/*
734 * Check the wm result.
735 *
736 * If any calculated watermark values is larger than the maximum value that
737 * can be programmed into the associated watermark register, that watermark
738 * must be disabled.
739 */
740static bool g4x_check_srwm(struct drm_device *dev,
741 int display_wm, int cursor_wm,
742 const struct intel_watermark_params *display,
743 const struct intel_watermark_params *cursor)
744{
745 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
746 display_wm, cursor_wm);
747
748 if (display_wm > display->max_wm) {
749 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
750 display_wm, display->max_wm);
751 return false;
752 }
753
754 if (cursor_wm > cursor->max_wm) {
755 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
756 cursor_wm, cursor->max_wm);
757 return false;
758 }
759
760 if (!(display_wm || cursor_wm)) {
761 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
762 return false;
763 }
764
765 return true;
766}
767
768static bool g4x_compute_srwm(struct drm_device *dev,
769 int plane,
770 int latency_ns,
771 const struct intel_watermark_params *display,
772 const struct intel_watermark_params *cursor,
773 int *display_wm, int *cursor_wm)
774{
775 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300776 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300777 int hdisplay, htotal, pixel_size, clock;
778 unsigned long line_time_us;
779 int line_count, line_size;
780 int small, large;
781 int entries;
782
783 if (!latency_ns) {
784 *display_wm = *cursor_wm = 0;
785 return false;
786 }
787
788 crtc = intel_get_crtc_for_plane(dev, plane);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200789 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100790 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800791 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200792 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800793 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300794
Ville Syrjälä922044c2014-02-14 14:18:57 +0200795 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300796 line_count = (latency_ns / line_time_us + 1000) / 1000;
797 line_size = hdisplay * pixel_size;
798
799 /* Use the minimum of the small and large buffer method for primary */
800 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
801 large = line_count * line_size;
802
803 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
804 *display_wm = entries + display->guard_size;
805
806 /* calculate the self-refresh watermark for display cursor */
Matt Roper3dd512f2015-02-27 10:12:00 -0800807 entries = line_count * pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300808 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
809 *cursor_wm = entries + cursor->guard_size;
810
811 return g4x_check_srwm(dev,
812 *display_wm, *cursor_wm,
813 display, cursor);
814}
815
Ville Syrjälä15665972015-03-10 16:16:28 +0200816#define FW_WM_VLV(value, plane) \
817 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
818
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200819static void vlv_write_wm_values(struct intel_crtc *crtc,
820 const struct vlv_wm_values *wm)
821{
822 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
823 enum pipe pipe = crtc->pipe;
824
825 I915_WRITE(VLV_DDL(pipe),
826 (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) |
827 (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) |
828 (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) |
829 (wm->ddl[pipe].primary << DDL_PLANE_SHIFT));
830
Ville Syrjäläae801522015-03-05 21:19:49 +0200831 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200832 FW_WM(wm->sr.plane, SR) |
833 FW_WM(wm->pipe[PIPE_B].cursor, CURSORB) |
834 FW_WM_VLV(wm->pipe[PIPE_B].primary, PLANEB) |
835 FW_WM_VLV(wm->pipe[PIPE_A].primary, PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200836 I915_WRITE(DSPFW2,
Ville Syrjälä15665972015-03-10 16:16:28 +0200837 FW_WM_VLV(wm->pipe[PIPE_A].sprite[1], SPRITEB) |
838 FW_WM(wm->pipe[PIPE_A].cursor, CURSORA) |
839 FW_WM_VLV(wm->pipe[PIPE_A].sprite[0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200840 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200841 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200842
843 if (IS_CHERRYVIEW(dev_priv)) {
844 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200845 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
846 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200847 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200848 FW_WM_VLV(wm->pipe[PIPE_C].sprite[1], SPRITEF) |
849 FW_WM_VLV(wm->pipe[PIPE_C].sprite[0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200850 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200851 FW_WM_VLV(wm->pipe[PIPE_C].primary, PLANEC) |
852 FW_WM(wm->pipe[PIPE_C].cursor, CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200853 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200854 FW_WM(wm->sr.plane >> 9, SR_HI) |
855 FW_WM(wm->pipe[PIPE_C].sprite[1] >> 8, SPRITEF_HI) |
856 FW_WM(wm->pipe[PIPE_C].sprite[0] >> 8, SPRITEE_HI) |
857 FW_WM(wm->pipe[PIPE_C].primary >> 8, PLANEC_HI) |
858 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
859 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
860 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
861 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
862 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
863 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200864 } else {
865 I915_WRITE(DSPFW7,
Ville Syrjälä15665972015-03-10 16:16:28 +0200866 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
867 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200868 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200869 FW_WM(wm->sr.plane >> 9, SR_HI) |
870 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
871 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
872 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
873 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
874 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
875 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200876 }
877
Ville Syrjälä2cb389b2015-06-24 22:00:10 +0300878 /* zero (unused) WM1 watermarks */
879 I915_WRITE(DSPFW4, 0);
880 I915_WRITE(DSPFW5, 0);
881 I915_WRITE(DSPFW6, 0);
882 I915_WRITE(DSPHOWM1, 0);
883
Ville Syrjäläae801522015-03-05 21:19:49 +0200884 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200885}
886
Ville Syrjälä15665972015-03-10 16:16:28 +0200887#undef FW_WM_VLV
888
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300889enum vlv_wm_level {
890 VLV_WM_LEVEL_PM2,
891 VLV_WM_LEVEL_PM5,
892 VLV_WM_LEVEL_DDR_DVFS,
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300893};
894
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300895/* latency must be in 0.1us units. */
896static unsigned int vlv_wm_method2(unsigned int pixel_rate,
897 unsigned int pipe_htotal,
898 unsigned int horiz_pixels,
899 unsigned int bytes_per_pixel,
900 unsigned int latency)
901{
902 unsigned int ret;
903
904 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
905 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
906 ret = DIV_ROUND_UP(ret, 64);
907
908 return ret;
909}
910
911static void vlv_setup_wm_latency(struct drm_device *dev)
912{
913 struct drm_i915_private *dev_priv = dev->dev_private;
914
915 /* all latencies in usec */
916 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
917
Ville Syrjälä58590c12015-09-08 21:05:12 +0300918 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
919
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300920 if (IS_CHERRYVIEW(dev_priv)) {
921 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
922 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300923
924 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300925 }
926}
927
928static uint16_t vlv_compute_wm_level(struct intel_plane *plane,
929 struct intel_crtc *crtc,
930 const struct intel_plane_state *state,
931 int level)
932{
933 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
934 int clock, htotal, pixel_size, width, wm;
935
936 if (dev_priv->wm.pri_latency[level] == 0)
937 return USHRT_MAX;
938
939 if (!state->visible)
940 return 0;
941
942 pixel_size = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
943 clock = crtc->config->base.adjusted_mode.crtc_clock;
944 htotal = crtc->config->base.adjusted_mode.crtc_htotal;
945 width = crtc->config->pipe_src_w;
946 if (WARN_ON(htotal == 0))
947 htotal = 1;
948
949 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
950 /*
951 * FIXME the formula gives values that are
952 * too big for the cursor FIFO, and hence we
953 * would never be able to use cursors. For
954 * now just hardcode the watermark.
955 */
956 wm = 63;
957 } else {
958 wm = vlv_wm_method2(clock, htotal, width, pixel_size,
959 dev_priv->wm.pri_latency[level] * 10);
960 }
961
962 return min_t(int, wm, USHRT_MAX);
963}
964
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +0300965static void vlv_compute_fifo(struct intel_crtc *crtc)
966{
967 struct drm_device *dev = crtc->base.dev;
968 struct vlv_wm_state *wm_state = &crtc->wm_state;
969 struct intel_plane *plane;
970 unsigned int total_rate = 0;
971 const int fifo_size = 512 - 1;
972 int fifo_extra, fifo_left = fifo_size;
973
974 for_each_intel_plane_on_crtc(dev, crtc, plane) {
975 struct intel_plane_state *state =
976 to_intel_plane_state(plane->base.state);
977
978 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
979 continue;
980
981 if (state->visible) {
982 wm_state->num_active_planes++;
983 total_rate += drm_format_plane_cpp(state->base.fb->pixel_format, 0);
984 }
985 }
986
987 for_each_intel_plane_on_crtc(dev, crtc, plane) {
988 struct intel_plane_state *state =
989 to_intel_plane_state(plane->base.state);
990 unsigned int rate;
991
992 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
993 plane->wm.fifo_size = 63;
994 continue;
995 }
996
997 if (!state->visible) {
998 plane->wm.fifo_size = 0;
999 continue;
1000 }
1001
1002 rate = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1003 plane->wm.fifo_size = fifo_size * rate / total_rate;
1004 fifo_left -= plane->wm.fifo_size;
1005 }
1006
1007 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1008
1009 /* spread the remainder evenly */
1010 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1011 int plane_extra;
1012
1013 if (fifo_left == 0)
1014 break;
1015
1016 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1017 continue;
1018
1019 /* give it all to the first plane if none are active */
1020 if (plane->wm.fifo_size == 0 &&
1021 wm_state->num_active_planes)
1022 continue;
1023
1024 plane_extra = min(fifo_extra, fifo_left);
1025 plane->wm.fifo_size += plane_extra;
1026 fifo_left -= plane_extra;
1027 }
1028
1029 WARN_ON(fifo_left != 0);
1030}
1031
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001032static void vlv_invert_wms(struct intel_crtc *crtc)
1033{
1034 struct vlv_wm_state *wm_state = &crtc->wm_state;
1035 int level;
1036
1037 for (level = 0; level < wm_state->num_levels; level++) {
1038 struct drm_device *dev = crtc->base.dev;
1039 const int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1040 struct intel_plane *plane;
1041
1042 wm_state->sr[level].plane = sr_fifo_size - wm_state->sr[level].plane;
1043 wm_state->sr[level].cursor = 63 - wm_state->sr[level].cursor;
1044
1045 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1046 switch (plane->base.type) {
1047 int sprite;
1048 case DRM_PLANE_TYPE_CURSOR:
1049 wm_state->wm[level].cursor = plane->wm.fifo_size -
1050 wm_state->wm[level].cursor;
1051 break;
1052 case DRM_PLANE_TYPE_PRIMARY:
1053 wm_state->wm[level].primary = plane->wm.fifo_size -
1054 wm_state->wm[level].primary;
1055 break;
1056 case DRM_PLANE_TYPE_OVERLAY:
1057 sprite = plane->plane;
1058 wm_state->wm[level].sprite[sprite] = plane->wm.fifo_size -
1059 wm_state->wm[level].sprite[sprite];
1060 break;
1061 }
1062 }
1063 }
1064}
1065
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001066static void vlv_compute_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001067{
1068 struct drm_device *dev = crtc->base.dev;
1069 struct vlv_wm_state *wm_state = &crtc->wm_state;
1070 struct intel_plane *plane;
1071 int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1072 int level;
1073
1074 memset(wm_state, 0, sizeof(*wm_state));
1075
Ville Syrjälä852eb002015-06-24 22:00:07 +03001076 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001077 wm_state->num_levels = to_i915(dev)->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001078
1079 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001080
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001081 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001082
1083 if (wm_state->num_active_planes != 1)
1084 wm_state->cxsr = false;
1085
1086 if (wm_state->cxsr) {
1087 for (level = 0; level < wm_state->num_levels; level++) {
1088 wm_state->sr[level].plane = sr_fifo_size;
1089 wm_state->sr[level].cursor = 63;
1090 }
1091 }
1092
1093 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1094 struct intel_plane_state *state =
1095 to_intel_plane_state(plane->base.state);
1096
1097 if (!state->visible)
1098 continue;
1099
1100 /* normal watermarks */
1101 for (level = 0; level < wm_state->num_levels; level++) {
1102 int wm = vlv_compute_wm_level(plane, crtc, state, level);
1103 int max_wm = plane->base.type == DRM_PLANE_TYPE_CURSOR ? 63 : 511;
1104
1105 /* hack */
1106 if (WARN_ON(level == 0 && wm > max_wm))
1107 wm = max_wm;
1108
1109 if (wm > plane->wm.fifo_size)
1110 break;
1111
1112 switch (plane->base.type) {
1113 int sprite;
1114 case DRM_PLANE_TYPE_CURSOR:
1115 wm_state->wm[level].cursor = wm;
1116 break;
1117 case DRM_PLANE_TYPE_PRIMARY:
1118 wm_state->wm[level].primary = wm;
1119 break;
1120 case DRM_PLANE_TYPE_OVERLAY:
1121 sprite = plane->plane;
1122 wm_state->wm[level].sprite[sprite] = wm;
1123 break;
1124 }
1125 }
1126
1127 wm_state->num_levels = level;
1128
1129 if (!wm_state->cxsr)
1130 continue;
1131
1132 /* maxfifo watermarks */
1133 switch (plane->base.type) {
1134 int sprite, level;
1135 case DRM_PLANE_TYPE_CURSOR:
1136 for (level = 0; level < wm_state->num_levels; level++)
1137 wm_state->sr[level].cursor =
Thomas Daniel5a37ed02015-10-23 14:55:38 +01001138 wm_state->wm[level].cursor;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001139 break;
1140 case DRM_PLANE_TYPE_PRIMARY:
1141 for (level = 0; level < wm_state->num_levels; level++)
1142 wm_state->sr[level].plane =
1143 min(wm_state->sr[level].plane,
1144 wm_state->wm[level].primary);
1145 break;
1146 case DRM_PLANE_TYPE_OVERLAY:
1147 sprite = plane->plane;
1148 for (level = 0; level < wm_state->num_levels; level++)
1149 wm_state->sr[level].plane =
1150 min(wm_state->sr[level].plane,
1151 wm_state->wm[level].sprite[sprite]);
1152 break;
1153 }
1154 }
1155
1156 /* clear any (partially) filled invalid levels */
Ville Syrjälä58590c12015-09-08 21:05:12 +03001157 for (level = wm_state->num_levels; level < to_i915(dev)->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001158 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1159 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1160 }
1161
1162 vlv_invert_wms(crtc);
1163}
1164
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001165#define VLV_FIFO(plane, value) \
1166 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1167
1168static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1169{
1170 struct drm_device *dev = crtc->base.dev;
1171 struct drm_i915_private *dev_priv = to_i915(dev);
1172 struct intel_plane *plane;
1173 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1174
1175 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1176 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1177 WARN_ON(plane->wm.fifo_size != 63);
1178 continue;
1179 }
1180
1181 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
1182 sprite0_start = plane->wm.fifo_size;
1183 else if (plane->plane == 0)
1184 sprite1_start = sprite0_start + plane->wm.fifo_size;
1185 else
1186 fifo_size = sprite1_start + plane->wm.fifo_size;
1187 }
1188
1189 WARN_ON(fifo_size != 512 - 1);
1190
1191 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1192 pipe_name(crtc->pipe), sprite0_start,
1193 sprite1_start, fifo_size);
1194
1195 switch (crtc->pipe) {
1196 uint32_t dsparb, dsparb2, dsparb3;
1197 case PIPE_A:
1198 dsparb = I915_READ(DSPARB);
1199 dsparb2 = I915_READ(DSPARB2);
1200
1201 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1202 VLV_FIFO(SPRITEB, 0xff));
1203 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1204 VLV_FIFO(SPRITEB, sprite1_start));
1205
1206 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1207 VLV_FIFO(SPRITEB_HI, 0x1));
1208 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1209 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1210
1211 I915_WRITE(DSPARB, dsparb);
1212 I915_WRITE(DSPARB2, dsparb2);
1213 break;
1214 case PIPE_B:
1215 dsparb = I915_READ(DSPARB);
1216 dsparb2 = I915_READ(DSPARB2);
1217
1218 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1219 VLV_FIFO(SPRITED, 0xff));
1220 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1221 VLV_FIFO(SPRITED, sprite1_start));
1222
1223 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1224 VLV_FIFO(SPRITED_HI, 0xff));
1225 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1226 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1227
1228 I915_WRITE(DSPARB, dsparb);
1229 I915_WRITE(DSPARB2, dsparb2);
1230 break;
1231 case PIPE_C:
1232 dsparb3 = I915_READ(DSPARB3);
1233 dsparb2 = I915_READ(DSPARB2);
1234
1235 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1236 VLV_FIFO(SPRITEF, 0xff));
1237 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1238 VLV_FIFO(SPRITEF, sprite1_start));
1239
1240 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1241 VLV_FIFO(SPRITEF_HI, 0xff));
1242 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1243 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1244
1245 I915_WRITE(DSPARB3, dsparb3);
1246 I915_WRITE(DSPARB2, dsparb2);
1247 break;
1248 default:
1249 break;
1250 }
1251}
1252
1253#undef VLV_FIFO
1254
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001255static void vlv_merge_wm(struct drm_device *dev,
1256 struct vlv_wm_values *wm)
1257{
1258 struct intel_crtc *crtc;
1259 int num_active_crtcs = 0;
1260
Ville Syrjälä58590c12015-09-08 21:05:12 +03001261 wm->level = to_i915(dev)->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001262 wm->cxsr = true;
1263
1264 for_each_intel_crtc(dev, crtc) {
1265 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1266
1267 if (!crtc->active)
1268 continue;
1269
1270 if (!wm_state->cxsr)
1271 wm->cxsr = false;
1272
1273 num_active_crtcs++;
1274 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1275 }
1276
1277 if (num_active_crtcs != 1)
1278 wm->cxsr = false;
1279
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001280 if (num_active_crtcs > 1)
1281 wm->level = VLV_WM_LEVEL_PM2;
1282
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001283 for_each_intel_crtc(dev, crtc) {
1284 struct vlv_wm_state *wm_state = &crtc->wm_state;
1285 enum pipe pipe = crtc->pipe;
1286
1287 if (!crtc->active)
1288 continue;
1289
1290 wm->pipe[pipe] = wm_state->wm[wm->level];
1291 if (wm->cxsr)
1292 wm->sr = wm_state->sr[wm->level];
1293
1294 wm->ddl[pipe].primary = DDL_PRECISION_HIGH | 2;
1295 wm->ddl[pipe].sprite[0] = DDL_PRECISION_HIGH | 2;
1296 wm->ddl[pipe].sprite[1] = DDL_PRECISION_HIGH | 2;
1297 wm->ddl[pipe].cursor = DDL_PRECISION_HIGH | 2;
1298 }
1299}
1300
1301static void vlv_update_wm(struct drm_crtc *crtc)
1302{
1303 struct drm_device *dev = crtc->dev;
1304 struct drm_i915_private *dev_priv = dev->dev_private;
1305 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1306 enum pipe pipe = intel_crtc->pipe;
1307 struct vlv_wm_values wm = {};
1308
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001309 vlv_compute_wm(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001310 vlv_merge_wm(dev, &wm);
1311
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001312 if (memcmp(&dev_priv->wm.vlv, &wm, sizeof(wm)) == 0) {
1313 /* FIXME should be part of crtc atomic commit */
1314 vlv_pipe_set_fifo_size(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001315 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001316 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001317
1318 if (wm.level < VLV_WM_LEVEL_DDR_DVFS &&
1319 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_DDR_DVFS)
1320 chv_set_memory_dvfs(dev_priv, false);
1321
1322 if (wm.level < VLV_WM_LEVEL_PM5 &&
1323 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_PM5)
1324 chv_set_memory_pm5(dev_priv, false);
1325
Ville Syrjälä852eb002015-06-24 22:00:07 +03001326 if (!wm.cxsr && dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001327 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001328
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001329 /* FIXME should be part of crtc atomic commit */
1330 vlv_pipe_set_fifo_size(intel_crtc);
1331
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001332 vlv_write_wm_values(intel_crtc, &wm);
1333
1334 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1335 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
1336 pipe_name(pipe), wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1337 wm.pipe[pipe].sprite[0], wm.pipe[pipe].sprite[1],
1338 wm.sr.plane, wm.sr.cursor, wm.level, wm.cxsr);
1339
Ville Syrjälä852eb002015-06-24 22:00:07 +03001340 if (wm.cxsr && !dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001341 intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001342
1343 if (wm.level >= VLV_WM_LEVEL_PM5 &&
1344 dev_priv->wm.vlv.level < VLV_WM_LEVEL_PM5)
1345 chv_set_memory_pm5(dev_priv, true);
1346
1347 if (wm.level >= VLV_WM_LEVEL_DDR_DVFS &&
1348 dev_priv->wm.vlv.level < VLV_WM_LEVEL_DDR_DVFS)
1349 chv_set_memory_dvfs(dev_priv, true);
1350
1351 dev_priv->wm.vlv = wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001352}
1353
Ville Syrjäläae801522015-03-05 21:19:49 +02001354#define single_plane_enabled(mask) is_power_of_2(mask)
1355
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001356static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001357{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001358 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001359 static const int sr_latency_ns = 12000;
1360 struct drm_i915_private *dev_priv = dev->dev_private;
1361 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1362 int plane_sr, cursor_sr;
1363 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001364 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001365
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001366 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001367 &g4x_wm_info, pessimal_latency_ns,
1368 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001369 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001370 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001371
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001372 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001373 &g4x_wm_info, pessimal_latency_ns,
1374 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001375 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001376 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001377
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001378 if (single_plane_enabled(enabled) &&
1379 g4x_compute_srwm(dev, ffs(enabled) - 1,
1380 sr_latency_ns,
1381 &g4x_wm_info,
1382 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001383 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001384 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001385 } else {
Imre Deak98584252014-06-13 14:54:20 +03001386 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001387 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001388 plane_sr = cursor_sr = 0;
1389 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001390
Ville Syrjäläa5043452014-06-28 02:04:18 +03001391 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1392 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001393 planea_wm, cursora_wm,
1394 planeb_wm, cursorb_wm,
1395 plane_sr, cursor_sr);
1396
1397 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001398 FW_WM(plane_sr, SR) |
1399 FW_WM(cursorb_wm, CURSORB) |
1400 FW_WM(planeb_wm, PLANEB) |
1401 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001402 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001403 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001404 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001405 /* HPLL off in SR has some issues on G4x... disable it */
1406 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001407 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001408 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001409
1410 if (cxsr_enabled)
1411 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001412}
1413
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001414static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001415{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001416 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001417 struct drm_i915_private *dev_priv = dev->dev_private;
1418 struct drm_crtc *crtc;
1419 int srwm = 1;
1420 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001421 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001422
1423 /* Calc sr entries for one plane configs */
1424 crtc = single_enabled_crtc(dev);
1425 if (crtc) {
1426 /* self-refresh has much higher latency */
1427 static const int sr_latency_ns = 12000;
Ville Syrjälä124abe02015-09-08 13:40:45 +03001428 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001429 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001430 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001431 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001432 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001433 unsigned long line_time_us;
1434 int entries;
1435
Ville Syrjälä922044c2014-02-14 14:18:57 +02001436 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001437
1438 /* Use ns/us then divide to preserve precision */
1439 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1440 pixel_size * hdisplay;
1441 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1442 srwm = I965_FIFO_SIZE - entries;
1443 if (srwm < 0)
1444 srwm = 1;
1445 srwm &= 0x1ff;
1446 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1447 entries, srwm);
1448
1449 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Matt Roper3dd512f2015-02-27 10:12:00 -08001450 pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001451 entries = DIV_ROUND_UP(entries,
1452 i965_cursor_wm_info.cacheline_size);
1453 cursor_sr = i965_cursor_wm_info.fifo_size -
1454 (entries + i965_cursor_wm_info.guard_size);
1455
1456 if (cursor_sr > i965_cursor_wm_info.max_wm)
1457 cursor_sr = i965_cursor_wm_info.max_wm;
1458
1459 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1460 "cursor %d\n", srwm, cursor_sr);
1461
Imre Deak98584252014-06-13 14:54:20 +03001462 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001463 } else {
Imre Deak98584252014-06-13 14:54:20 +03001464 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001465 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001466 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001467 }
1468
1469 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1470 srwm);
1471
1472 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001473 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1474 FW_WM(8, CURSORB) |
1475 FW_WM(8, PLANEB) |
1476 FW_WM(8, PLANEA));
1477 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1478 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001479 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001480 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001481
1482 if (cxsr_enabled)
1483 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001484}
1485
Ville Syrjäläf4998962015-03-10 17:02:21 +02001486#undef FW_WM
1487
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001488static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001489{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001490 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001491 struct drm_i915_private *dev_priv = dev->dev_private;
1492 const struct intel_watermark_params *wm_info;
1493 uint32_t fwater_lo;
1494 uint32_t fwater_hi;
1495 int cwm, srwm = 1;
1496 int fifo_size;
1497 int planea_wm, planeb_wm;
1498 struct drm_crtc *crtc, *enabled = NULL;
1499
1500 if (IS_I945GM(dev))
1501 wm_info = &i945_wm_info;
1502 else if (!IS_GEN2(dev))
1503 wm_info = &i915_wm_info;
1504 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001505 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001506
1507 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1508 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001509 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001510 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001511 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001512 if (IS_GEN2(dev))
1513 cpp = 4;
1514
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001515 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001516 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001517 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001518 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001519 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001520 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001521 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001522 if (planea_wm > (long)wm_info->max_wm)
1523 planea_wm = wm_info->max_wm;
1524 }
1525
1526 if (IS_GEN2(dev))
1527 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001528
1529 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1530 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001531 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001532 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001533 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001534 if (IS_GEN2(dev))
1535 cpp = 4;
1536
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001537 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001538 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001539 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001540 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001541 if (enabled == NULL)
1542 enabled = crtc;
1543 else
1544 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001545 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001546 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001547 if (planeb_wm > (long)wm_info->max_wm)
1548 planeb_wm = wm_info->max_wm;
1549 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001550
1551 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1552
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001553 if (IS_I915GM(dev) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001554 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001555
Matt Roper59bea882015-02-27 10:12:01 -08001556 obj = intel_fb_obj(enabled->primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001557
1558 /* self-refresh seems busted with untiled */
Matt Roper2ff8fde2014-07-08 07:50:07 -07001559 if (obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001560 enabled = NULL;
1561 }
1562
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001563 /*
1564 * Overlay gets an aggressive default since video jitter is bad.
1565 */
1566 cwm = 2;
1567
1568 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001569 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001570
1571 /* Calc sr entries for one plane configs */
1572 if (HAS_FW_BLC(dev) && enabled) {
1573 /* self-refresh has much higher latency */
1574 static const int sr_latency_ns = 6000;
Ville Syrjälä124abe02015-09-08 13:40:45 +03001575 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(enabled)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001576 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001577 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001578 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001579 int pixel_size = enabled->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001580 unsigned long line_time_us;
1581 int entries;
1582
Ville Syrjälä922044c2014-02-14 14:18:57 +02001583 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001584
1585 /* Use ns/us then divide to preserve precision */
1586 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1587 pixel_size * hdisplay;
1588 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1589 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1590 srwm = wm_info->fifo_size - entries;
1591 if (srwm < 0)
1592 srwm = 1;
1593
1594 if (IS_I945G(dev) || IS_I945GM(dev))
1595 I915_WRITE(FW_BLC_SELF,
1596 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1597 else if (IS_I915GM(dev))
1598 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1599 }
1600
1601 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1602 planea_wm, planeb_wm, cwm, srwm);
1603
1604 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1605 fwater_hi = (cwm & 0x1f);
1606
1607 /* Set request length to 8 cachelines per fetch */
1608 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1609 fwater_hi = fwater_hi | (1 << 8);
1610
1611 I915_WRITE(FW_BLC, fwater_lo);
1612 I915_WRITE(FW_BLC2, fwater_hi);
1613
Imre Deak5209b1f2014-07-01 12:36:17 +03001614 if (enabled)
1615 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001616}
1617
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001618static void i845_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001619{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001620 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001621 struct drm_i915_private *dev_priv = dev->dev_private;
1622 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001623 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001624 uint32_t fwater_lo;
1625 int planea_wm;
1626
1627 crtc = single_enabled_crtc(dev);
1628 if (crtc == NULL)
1629 return;
1630
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001631 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001632 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001633 &i845_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001634 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001635 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001636 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1637 fwater_lo |= (3<<8) | planea_wm;
1638
1639 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1640
1641 I915_WRITE(FW_BLC, fwater_lo);
1642}
1643
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001644uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001645{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001646 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001647
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001648 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001649
1650 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1651 * adjust the pixel_rate here. */
1652
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001653 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001654 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001655 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001656
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001657 pipe_w = pipe_config->pipe_src_w;
1658 pipe_h = pipe_config->pipe_src_h;
1659
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001660 pfit_w = (pfit_size >> 16) & 0xFFFF;
1661 pfit_h = pfit_size & 0xFFFF;
1662 if (pipe_w < pfit_w)
1663 pipe_w = pfit_w;
1664 if (pipe_h < pfit_h)
1665 pipe_h = pfit_h;
1666
1667 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1668 pfit_w * pfit_h);
1669 }
1670
1671 return pixel_rate;
1672}
1673
Ville Syrjälä37126462013-08-01 16:18:55 +03001674/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001675static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001676 uint32_t latency)
1677{
1678 uint64_t ret;
1679
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001680 if (WARN(latency == 0, "Latency value missing\n"))
1681 return UINT_MAX;
1682
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001683 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
1684 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1685
1686 return ret;
1687}
1688
Ville Syrjälä37126462013-08-01 16:18:55 +03001689/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001690static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001691 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
1692 uint32_t latency)
1693{
1694 uint32_t ret;
1695
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001696 if (WARN(latency == 0, "Latency value missing\n"))
1697 return UINT_MAX;
1698
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001699 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
1700 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
1701 ret = DIV_ROUND_UP(ret, 64) + 2;
1702 return ret;
1703}
1704
Ville Syrjälä23297042013-07-05 11:57:17 +03001705static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001706 uint8_t bytes_per_pixel)
1707{
1708 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
1709}
1710
Paulo Zanoni2791a162015-10-09 18:22:43 -03001711struct skl_pipe_wm_parameters {
1712 bool active;
1713 uint32_t pipe_htotal;
1714 uint32_t pixel_rate; /* in KHz */
1715 struct intel_plane_wm_parameters plane[I915_MAX_PLANES];
1716};
1717
Imre Deak820c1982013-12-17 14:46:36 +02001718struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001719 uint16_t pri;
1720 uint16_t spr;
1721 uint16_t cur;
1722 uint16_t fbc;
1723};
1724
Matt Roper261a27d2015-10-08 15:28:25 -07001725/* used in computing the new watermarks state */
1726struct intel_wm_config {
1727 unsigned int num_pipes_active;
1728 bool sprites_enabled;
1729 bool sprites_scaled;
1730};
1731
Ville Syrjälä37126462013-08-01 16:18:55 +03001732/*
1733 * For both WM_PIPE and WM_LP.
1734 * mem_value must be in 0.1us units.
1735 */
Matt Roper7221fc32015-09-24 15:53:08 -07001736static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001737 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001738 uint32_t mem_value,
1739 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001740{
Matt Roper43d59ed2015-09-24 15:53:07 -07001741 int bpp = pstate->base.fb ? pstate->base.fb->bits_per_pixel / 8 : 0;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001742 uint32_t method1, method2;
1743
Matt Roper7221fc32015-09-24 15:53:08 -07001744 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001745 return 0;
1746
Matt Roper7221fc32015-09-24 15:53:08 -07001747 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), bpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001748
1749 if (!is_lp)
1750 return method1;
1751
Matt Roper7221fc32015-09-24 15:53:08 -07001752 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1753 cstate->base.adjusted_mode.crtc_htotal,
Matt Roper43d59ed2015-09-24 15:53:07 -07001754 drm_rect_width(&pstate->dst),
1755 bpp,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001756 mem_value);
1757
1758 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001759}
1760
Ville Syrjälä37126462013-08-01 16:18:55 +03001761/*
1762 * For both WM_PIPE and WM_LP.
1763 * mem_value must be in 0.1us units.
1764 */
Matt Roper7221fc32015-09-24 15:53:08 -07001765static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001766 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001767 uint32_t mem_value)
1768{
Matt Roper43d59ed2015-09-24 15:53:07 -07001769 int bpp = pstate->base.fb ? pstate->base.fb->bits_per_pixel / 8 : 0;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001770 uint32_t method1, method2;
1771
Matt Roper7221fc32015-09-24 15:53:08 -07001772 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001773 return 0;
1774
Matt Roper7221fc32015-09-24 15:53:08 -07001775 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), bpp, mem_value);
1776 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1777 cstate->base.adjusted_mode.crtc_htotal,
Matt Roper43d59ed2015-09-24 15:53:07 -07001778 drm_rect_width(&pstate->dst),
1779 bpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001780 mem_value);
1781 return min(method1, method2);
1782}
1783
Ville Syrjälä37126462013-08-01 16:18:55 +03001784/*
1785 * For both WM_PIPE and WM_LP.
1786 * mem_value must be in 0.1us units.
1787 */
Matt Roper7221fc32015-09-24 15:53:08 -07001788static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001789 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001790 uint32_t mem_value)
1791{
Matt Roper43d59ed2015-09-24 15:53:07 -07001792 int bpp = pstate->base.fb ? pstate->base.fb->bits_per_pixel / 8 : 0;
1793
Matt Roper7221fc32015-09-24 15:53:08 -07001794 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001795 return 0;
1796
Matt Roper7221fc32015-09-24 15:53:08 -07001797 return ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1798 cstate->base.adjusted_mode.crtc_htotal,
Matt Roper43d59ed2015-09-24 15:53:07 -07001799 drm_rect_width(&pstate->dst),
1800 bpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001801 mem_value);
1802}
1803
Paulo Zanonicca32e92013-05-31 11:45:06 -03001804/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07001805static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001806 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001807 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001808{
Matt Roper43d59ed2015-09-24 15:53:07 -07001809 int bpp = pstate->base.fb ? pstate->base.fb->bits_per_pixel / 8 : 0;
1810
Matt Roper7221fc32015-09-24 15:53:08 -07001811 if (!cstate->base.active || !pstate->visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001812 return 0;
1813
Matt Roper43d59ed2015-09-24 15:53:07 -07001814 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->dst), bpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001815}
1816
Ville Syrjälä158ae642013-08-07 13:28:19 +03001817static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1818{
Ville Syrjälä416f4722013-11-02 21:07:46 -07001819 if (INTEL_INFO(dev)->gen >= 8)
1820 return 3072;
1821 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001822 return 768;
1823 else
1824 return 512;
1825}
1826
Ville Syrjälä4e975082014-03-07 18:32:11 +02001827static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1828 int level, bool is_sprite)
1829{
1830 if (INTEL_INFO(dev)->gen >= 8)
1831 /* BDW primary/sprite plane watermarks */
1832 return level == 0 ? 255 : 2047;
1833 else if (INTEL_INFO(dev)->gen >= 7)
1834 /* IVB/HSW primary/sprite plane watermarks */
1835 return level == 0 ? 127 : 1023;
1836 else if (!is_sprite)
1837 /* ILK/SNB primary plane watermarks */
1838 return level == 0 ? 127 : 511;
1839 else
1840 /* ILK/SNB sprite plane watermarks */
1841 return level == 0 ? 63 : 255;
1842}
1843
1844static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1845 int level)
1846{
1847 if (INTEL_INFO(dev)->gen >= 7)
1848 return level == 0 ? 63 : 255;
1849 else
1850 return level == 0 ? 31 : 63;
1851}
1852
1853static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1854{
1855 if (INTEL_INFO(dev)->gen >= 8)
1856 return 31;
1857 else
1858 return 15;
1859}
1860
Ville Syrjälä158ae642013-08-07 13:28:19 +03001861/* Calculate the maximum primary/sprite plane watermark */
1862static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1863 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001864 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001865 enum intel_ddb_partitioning ddb_partitioning,
1866 bool is_sprite)
1867{
1868 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001869
1870 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001871 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001872 return 0;
1873
1874 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001875 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001876 fifo_size /= INTEL_INFO(dev)->num_pipes;
1877
1878 /*
1879 * For some reason the non self refresh
1880 * FIFO size is only half of the self
1881 * refresh FIFO size on ILK/SNB.
1882 */
1883 if (INTEL_INFO(dev)->gen <= 6)
1884 fifo_size /= 2;
1885 }
1886
Ville Syrjälä240264f2013-08-07 13:29:12 +03001887 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001888 /* level 0 is always calculated with 1:1 split */
1889 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1890 if (is_sprite)
1891 fifo_size *= 5;
1892 fifo_size /= 6;
1893 } else {
1894 fifo_size /= 2;
1895 }
1896 }
1897
1898 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001899 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001900}
1901
1902/* Calculate the maximum cursor plane watermark */
1903static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001904 int level,
1905 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001906{
1907 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001908 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001909 return 64;
1910
1911 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001912 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001913}
1914
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001915static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001916 int level,
1917 const struct intel_wm_config *config,
1918 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001919 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001920{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001921 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1922 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1923 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02001924 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001925}
1926
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001927static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
1928 int level,
1929 struct ilk_wm_maximums *max)
1930{
1931 max->pri = ilk_plane_wm_reg_max(dev, level, false);
1932 max->spr = ilk_plane_wm_reg_max(dev, level, true);
1933 max->cur = ilk_cursor_wm_reg_max(dev, level);
1934 max->fbc = ilk_fbc_wm_reg_max(dev);
1935}
1936
Ville Syrjäläd9395652013-10-09 19:18:10 +03001937static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001938 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001939 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001940{
1941 bool ret;
1942
1943 /* already determined to be invalid? */
1944 if (!result->enable)
1945 return false;
1946
1947 result->enable = result->pri_val <= max->pri &&
1948 result->spr_val <= max->spr &&
1949 result->cur_val <= max->cur;
1950
1951 ret = result->enable;
1952
1953 /*
1954 * HACK until we can pre-compute everything,
1955 * and thus fail gracefully if LP0 watermarks
1956 * are exceeded...
1957 */
1958 if (level == 0 && !result->enable) {
1959 if (result->pri_val > max->pri)
1960 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
1961 level, result->pri_val, max->pri);
1962 if (result->spr_val > max->spr)
1963 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
1964 level, result->spr_val, max->spr);
1965 if (result->cur_val > max->cur)
1966 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
1967 level, result->cur_val, max->cur);
1968
1969 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
1970 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
1971 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
1972 result->enable = true;
1973 }
1974
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001975 return ret;
1976}
1977
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001978static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07001979 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03001980 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07001981 struct intel_crtc_state *cstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03001982 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03001983{
Matt Roper261a27d2015-10-08 15:28:25 -07001984 struct intel_plane *intel_plane;
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03001985 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
1986 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
1987 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
1988
1989 /* WM1+ latency values stored in 0.5us units */
1990 if (level > 0) {
1991 pri_latency *= 5;
1992 spr_latency *= 5;
1993 cur_latency *= 5;
1994 }
1995
Matt Roper261a27d2015-10-08 15:28:25 -07001996 for_each_intel_plane_on_crtc(dev_priv->dev, intel_crtc, intel_plane) {
1997 struct intel_plane_state *pstate =
1998 to_intel_plane_state(intel_plane->base.state);
1999
2000 switch (intel_plane->base.type) {
2001 case DRM_PLANE_TYPE_PRIMARY:
2002 result->pri_val = ilk_compute_pri_wm(cstate, pstate,
2003 pri_latency,
2004 level);
2005 result->fbc_val = ilk_compute_fbc_wm(cstate, pstate,
2006 result->pri_val);
2007 break;
2008 case DRM_PLANE_TYPE_OVERLAY:
2009 result->spr_val = ilk_compute_spr_wm(cstate, pstate,
2010 spr_latency);
2011 break;
2012 case DRM_PLANE_TYPE_CURSOR:
2013 result->cur_val = ilk_compute_cur_wm(cstate, pstate,
2014 cur_latency);
2015 break;
2016 }
2017 }
2018
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002019 result->enable = true;
2020}
2021
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002022static uint32_t
2023hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002024{
2025 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002026 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03002027 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002028 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002029
Matt Roper3ef00282015-03-09 10:19:24 -07002030 if (!intel_crtc->active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002031 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002032
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002033 /* The WM are computed with base on how long it takes to fill a single
2034 * row at the given clock rate, multiplied by 8.
2035 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002036 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2037 adjusted_mode->crtc_clock);
2038 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjälä05024da2015-06-03 15:45:08 +03002039 dev_priv->cdclk_freq);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002040
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002041 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2042 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002043}
2044
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002045static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002046{
2047 struct drm_i915_private *dev_priv = dev->dev_private;
2048
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002049 if (IS_GEN9(dev)) {
2050 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002051 int ret, i;
Vandana Kannan367294b2014-11-04 17:06:46 +00002052 int level, max_level = ilk_wm_max_level(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002053
2054 /* read the first set of memory latencies[0:3] */
2055 val = 0; /* data0 to be programmed to 0 for first set */
2056 mutex_lock(&dev_priv->rps.hw_lock);
2057 ret = sandybridge_pcode_read(dev_priv,
2058 GEN9_PCODE_READ_MEM_LATENCY,
2059 &val);
2060 mutex_unlock(&dev_priv->rps.hw_lock);
2061
2062 if (ret) {
2063 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2064 return;
2065 }
2066
2067 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2068 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2069 GEN9_MEM_LATENCY_LEVEL_MASK;
2070 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2071 GEN9_MEM_LATENCY_LEVEL_MASK;
2072 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2073 GEN9_MEM_LATENCY_LEVEL_MASK;
2074
2075 /* read the second set of memory latencies[4:7] */
2076 val = 1; /* data0 to be programmed to 1 for second set */
2077 mutex_lock(&dev_priv->rps.hw_lock);
2078 ret = sandybridge_pcode_read(dev_priv,
2079 GEN9_PCODE_READ_MEM_LATENCY,
2080 &val);
2081 mutex_unlock(&dev_priv->rps.hw_lock);
2082 if (ret) {
2083 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2084 return;
2085 }
2086
2087 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2088 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2089 GEN9_MEM_LATENCY_LEVEL_MASK;
2090 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2091 GEN9_MEM_LATENCY_LEVEL_MASK;
2092 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2093 GEN9_MEM_LATENCY_LEVEL_MASK;
2094
Vandana Kannan367294b2014-11-04 17:06:46 +00002095 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00002096 * WaWmMemoryReadLatency:skl
2097 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002098 * punit doesn't take into account the read latency so we need
2099 * to add 2us to the various latency levels we retrieve from
2100 * the punit.
2101 * - W0 is a bit special in that it's the only level that
2102 * can't be disabled if we want to have display working, so
2103 * we always add 2us there.
2104 * - For levels >=1, punit returns 0us latency when they are
2105 * disabled, so we respect that and don't add 2us then
Vandana Kannan4f947382014-11-04 17:06:47 +00002106 *
2107 * Additionally, if a level n (n > 1) has a 0us latency, all
2108 * levels m (m >= n) need to be disabled. We make sure to
2109 * sanitize the values out of the punit to satisfy this
2110 * requirement.
Vandana Kannan367294b2014-11-04 17:06:46 +00002111 */
2112 wm[0] += 2;
2113 for (level = 1; level <= max_level; level++)
2114 if (wm[level] != 0)
2115 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002116 else {
2117 for (i = level + 1; i <= max_level; i++)
2118 wm[i] = 0;
Vandana Kannan367294b2014-11-04 17:06:46 +00002119
Vandana Kannan4f947382014-11-04 17:06:47 +00002120 break;
2121 }
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002122 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002123 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2124
2125 wm[0] = (sskpd >> 56) & 0xFF;
2126 if (wm[0] == 0)
2127 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002128 wm[1] = (sskpd >> 4) & 0xFF;
2129 wm[2] = (sskpd >> 12) & 0xFF;
2130 wm[3] = (sskpd >> 20) & 0x1FF;
2131 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002132 } else if (INTEL_INFO(dev)->gen >= 6) {
2133 uint32_t sskpd = I915_READ(MCH_SSKPD);
2134
2135 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2136 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2137 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2138 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002139 } else if (INTEL_INFO(dev)->gen >= 5) {
2140 uint32_t mltr = I915_READ(MLTR_ILK);
2141
2142 /* ILK primary LP0 latency is 700 ns */
2143 wm[0] = 7;
2144 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2145 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002146 }
2147}
2148
Ville Syrjälä53615a52013-08-01 16:18:50 +03002149static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2150{
2151 /* ILK sprite LP0 latency is 1300 ns */
2152 if (INTEL_INFO(dev)->gen == 5)
2153 wm[0] = 13;
2154}
2155
2156static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2157{
2158 /* ILK cursor LP0 latency is 1300 ns */
2159 if (INTEL_INFO(dev)->gen == 5)
2160 wm[0] = 13;
2161
2162 /* WaDoubleCursorLP3Latency:ivb */
2163 if (IS_IVYBRIDGE(dev))
2164 wm[3] *= 2;
2165}
2166
Damien Lespiau546c81f2014-05-13 15:30:26 +01002167int ilk_wm_max_level(const struct drm_device *dev)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002168{
2169 /* how many WM levels are we expecting */
Damien Lespiaub6e742f2015-05-09 02:05:55 +01002170 if (INTEL_INFO(dev)->gen >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002171 return 7;
2172 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002173 return 4;
2174 else if (INTEL_INFO(dev)->gen >= 6)
2175 return 3;
2176 else
2177 return 2;
2178}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002179
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002180static void intel_print_wm_latency(struct drm_device *dev,
2181 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002182 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002183{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002184 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002185
2186 for (level = 0; level <= max_level; level++) {
2187 unsigned int latency = wm[level];
2188
2189 if (latency == 0) {
2190 DRM_ERROR("%s WM%d latency not provided\n",
2191 name, level);
2192 continue;
2193 }
2194
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002195 /*
2196 * - latencies are in us on gen9.
2197 * - before then, WM1+ latency values are in 0.5us units
2198 */
2199 if (IS_GEN9(dev))
2200 latency *= 10;
2201 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002202 latency *= 5;
2203
2204 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2205 name, level, wm[level],
2206 latency / 10, latency % 10);
2207 }
2208}
2209
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002210static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2211 uint16_t wm[5], uint16_t min)
2212{
2213 int level, max_level = ilk_wm_max_level(dev_priv->dev);
2214
2215 if (wm[0] >= min)
2216 return false;
2217
2218 wm[0] = max(wm[0], min);
2219 for (level = 1; level <= max_level; level++)
2220 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2221
2222 return true;
2223}
2224
2225static void snb_wm_latency_quirk(struct drm_device *dev)
2226{
2227 struct drm_i915_private *dev_priv = dev->dev_private;
2228 bool changed;
2229
2230 /*
2231 * The BIOS provided WM memory latency values are often
2232 * inadequate for high resolution displays. Adjust them.
2233 */
2234 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2235 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2236 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2237
2238 if (!changed)
2239 return;
2240
2241 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
2242 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2243 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2244 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
2245}
2246
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002247static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002248{
2249 struct drm_i915_private *dev_priv = dev->dev_private;
2250
2251 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2252
2253 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2254 sizeof(dev_priv->wm.pri_latency));
2255 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2256 sizeof(dev_priv->wm.pri_latency));
2257
2258 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2259 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002260
2261 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2262 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2263 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002264
2265 if (IS_GEN6(dev))
2266 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002267}
2268
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002269static void skl_setup_wm_latency(struct drm_device *dev)
2270{
2271 struct drm_i915_private *dev_priv = dev->dev_private;
2272
2273 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
2274 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
2275}
2276
Matt Roper261a27d2015-10-08 15:28:25 -07002277static void ilk_compute_wm_config(struct drm_device *dev,
2278 struct intel_wm_config *config)
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002279{
Matt Roper261a27d2015-10-08 15:28:25 -07002280 struct intel_crtc *intel_crtc;
2281
2282 /* Compute the currently _active_ config */
2283 for_each_intel_crtc(dev, intel_crtc) {
2284 const struct intel_pipe_wm *wm = &intel_crtc->wm.active;
2285
2286 if (!wm->pipe_enabled)
2287 continue;
2288
2289 config->sprites_enabled |= wm->sprites_enabled;
2290 config->sprites_scaled |= wm->sprites_scaled;
2291 config->num_pipes_active++;
2292 }
2293}
2294
2295/* Compute new watermarks for the pipe */
2296static bool intel_compute_pipe_wm(struct intel_crtc_state *cstate,
2297 struct intel_pipe_wm *pipe_wm)
2298{
2299 struct drm_crtc *crtc = cstate->base.crtc;
2300 struct drm_device *dev = crtc->dev;
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002301 const struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper261a27d2015-10-08 15:28:25 -07002302 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper43d59ed2015-09-24 15:53:07 -07002303 struct intel_plane *intel_plane;
2304 struct intel_plane_state *sprstate = NULL;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002305 int level, max_level = ilk_wm_max_level(dev);
2306 /* LP0 watermark maximums depend on this pipe alone */
2307 struct intel_wm_config config = {
2308 .num_pipes_active = 1,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002309 };
Imre Deak820c1982013-12-17 14:46:36 +02002310 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002311
Matt Roper43d59ed2015-09-24 15:53:07 -07002312 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Matt Roper261a27d2015-10-08 15:28:25 -07002313 if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY) {
2314 sprstate = to_intel_plane_state(intel_plane->base.state);
2315 break;
2316 }
Matt Roper43d59ed2015-09-24 15:53:07 -07002317 }
2318
2319 config.sprites_enabled = sprstate->visible;
2320 config.sprites_scaled = sprstate->visible &&
2321 (drm_rect_width(&sprstate->dst) != drm_rect_width(&sprstate->src) >> 16 ||
2322 drm_rect_height(&sprstate->dst) != drm_rect_height(&sprstate->src) >> 16);
2323
Matt Roper7221fc32015-09-24 15:53:08 -07002324 pipe_wm->pipe_enabled = cstate->base.active;
Matt Roper261a27d2015-10-08 15:28:25 -07002325 pipe_wm->sprites_enabled = sprstate->visible;
Matt Roper43d59ed2015-09-24 15:53:07 -07002326 pipe_wm->sprites_scaled = config.sprites_scaled;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002327
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002328 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Matt Roper43d59ed2015-09-24 15:53:07 -07002329 if (INTEL_INFO(dev)->gen <= 6 && sprstate->visible)
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002330 max_level = 1;
2331
2332 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Roper43d59ed2015-09-24 15:53:07 -07002333 if (config.sprites_scaled)
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002334 max_level = 0;
2335
Matt Roper261a27d2015-10-08 15:28:25 -07002336 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002337
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002338 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Matt Roper261a27d2015-10-08 15:28:25 -07002339 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002340
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002341 /* LP0 watermarks always use 1/2 DDB partitioning */
2342 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2343
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002344 /* At least LP0 must be valid */
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002345 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]))
Matt Roper261a27d2015-10-08 15:28:25 -07002346 return false;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002347
2348 ilk_compute_wm_reg_maximums(dev, 1, &max);
2349
2350 for (level = 1; level <= max_level; level++) {
2351 struct intel_wm_level wm = {};
2352
Matt Roper261a27d2015-10-08 15:28:25 -07002353 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate, &wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002354
2355 /*
2356 * Disable any watermark level that exceeds the
2357 * register maximums since such watermarks are
2358 * always invalid.
2359 */
2360 if (!ilk_validate_wm_level(level, &max, &wm))
2361 break;
2362
2363 pipe_wm->wm[level] = wm;
2364 }
2365
Matt Roper261a27d2015-10-08 15:28:25 -07002366 return true;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002367}
2368
2369/*
2370 * Merge the watermarks from all active pipes for a specific level.
2371 */
2372static void ilk_merge_wm_level(struct drm_device *dev,
2373 int level,
2374 struct intel_wm_level *ret_wm)
2375{
2376 const struct intel_crtc *intel_crtc;
2377
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002378 ret_wm->enable = true;
2379
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002380 for_each_intel_crtc(dev, intel_crtc) {
Matt Roper261a27d2015-10-08 15:28:25 -07002381 const struct intel_pipe_wm *active = &intel_crtc->wm.active;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002382 const struct intel_wm_level *wm = &active->wm[level];
2383
2384 if (!active->pipe_enabled)
2385 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002386
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002387 /*
2388 * The watermark values may have been used in the past,
2389 * so we must maintain them in the registers for some
2390 * time even if the level is now disabled.
2391 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002392 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002393 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002394
2395 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2396 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2397 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2398 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2399 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002400}
2401
2402/*
2403 * Merge all low power watermarks for all active pipes.
2404 */
2405static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002406 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002407 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002408 struct intel_pipe_wm *merged)
2409{
Paulo Zanoni7733b492015-07-07 15:26:04 -03002410 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002411 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002412 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002413
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002414 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2415 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2416 config->num_pipes_active > 1)
2417 return;
2418
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002419 /* ILK: FBC WM must be disabled always */
2420 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002421
2422 /* merge each WM1+ level */
2423 for (level = 1; level <= max_level; level++) {
2424 struct intel_wm_level *wm = &merged->wm[level];
2425
2426 ilk_merge_wm_level(dev, level, wm);
2427
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002428 if (level > last_enabled_level)
2429 wm->enable = false;
2430 else if (!ilk_validate_wm_level(level, max, wm))
2431 /* make sure all following levels get disabled */
2432 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002433
2434 /*
2435 * The spec says it is preferred to disable
2436 * FBC WMs instead of disabling a WM level.
2437 */
2438 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002439 if (wm->enable)
2440 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002441 wm->fbc_val = 0;
2442 }
2443 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002444
2445 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2446 /*
2447 * FIXME this is racy. FBC might get enabled later.
2448 * What we should check here is whether FBC can be
2449 * enabled sometime later.
2450 */
Paulo Zanoni7733b492015-07-07 15:26:04 -03002451 if (IS_GEN5(dev) && !merged->fbc_wm_enabled &&
2452 intel_fbc_enabled(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002453 for (level = 2; level <= max_level; level++) {
2454 struct intel_wm_level *wm = &merged->wm[level];
2455
2456 wm->enable = false;
2457 }
2458 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002459}
2460
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002461static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2462{
2463 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2464 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2465}
2466
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002467/* The value we need to program into the WM_LPx latency field */
2468static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2469{
2470 struct drm_i915_private *dev_priv = dev->dev_private;
2471
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002472 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002473 return 2 * level;
2474 else
2475 return dev_priv->wm.pri_latency[level];
2476}
2477
Imre Deak820c1982013-12-17 14:46:36 +02002478static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002479 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002480 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002481 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002482{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002483 struct intel_crtc *intel_crtc;
2484 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002485
Ville Syrjälä0362c782013-10-09 19:17:57 +03002486 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002487 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002488
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002489 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002490 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002491 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002492
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002493 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002494
Ville Syrjälä0362c782013-10-09 19:17:57 +03002495 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002496
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002497 /*
2498 * Maintain the watermark values even if the level is
2499 * disabled. Doing otherwise could cause underruns.
2500 */
2501 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002502 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002503 (r->pri_val << WM1_LP_SR_SHIFT) |
2504 r->cur_val;
2505
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002506 if (r->enable)
2507 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2508
Ville Syrjälä416f4722013-11-02 21:07:46 -07002509 if (INTEL_INFO(dev)->gen >= 8)
2510 results->wm_lp[wm_lp - 1] |=
2511 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2512 else
2513 results->wm_lp[wm_lp - 1] |=
2514 r->fbc_val << WM1_LP_FBC_SHIFT;
2515
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002516 /*
2517 * Always set WM1S_LP_EN when spr_val != 0, even if the
2518 * level is disabled. Doing otherwise could cause underruns.
2519 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002520 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2521 WARN_ON(wm_lp != 1);
2522 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2523 } else
2524 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002525 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002526
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002527 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002528 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002529 enum pipe pipe = intel_crtc->pipe;
Matt Roper261a27d2015-10-08 15:28:25 -07002530 const struct intel_wm_level *r =
2531 &intel_crtc->wm.active.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002532
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002533 if (WARN_ON(!r->enable))
2534 continue;
2535
Matt Roper261a27d2015-10-08 15:28:25 -07002536 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002537
2538 results->wm_pipe[pipe] =
2539 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2540 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2541 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002542 }
2543}
2544
Paulo Zanoni861f3382013-05-31 10:19:21 -03002545/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2546 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002547static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002548 struct intel_pipe_wm *r1,
2549 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002550{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002551 int level, max_level = ilk_wm_max_level(dev);
2552 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002553
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002554 for (level = 1; level <= max_level; level++) {
2555 if (r1->wm[level].enable)
2556 level1 = level;
2557 if (r2->wm[level].enable)
2558 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002559 }
2560
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002561 if (level1 == level2) {
2562 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002563 return r2;
2564 else
2565 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002566 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002567 return r1;
2568 } else {
2569 return r2;
2570 }
2571}
2572
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002573/* dirty bits used to track which watermarks need changes */
2574#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2575#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2576#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2577#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2578#define WM_DIRTY_FBC (1 << 24)
2579#define WM_DIRTY_DDB (1 << 25)
2580
Damien Lespiau055e3932014-08-18 13:49:10 +01002581static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002582 const struct ilk_wm_values *old,
2583 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002584{
2585 unsigned int dirty = 0;
2586 enum pipe pipe;
2587 int wm_lp;
2588
Damien Lespiau055e3932014-08-18 13:49:10 +01002589 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002590 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2591 dirty |= WM_DIRTY_LINETIME(pipe);
2592 /* Must disable LP1+ watermarks too */
2593 dirty |= WM_DIRTY_LP_ALL;
2594 }
2595
2596 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2597 dirty |= WM_DIRTY_PIPE(pipe);
2598 /* Must disable LP1+ watermarks too */
2599 dirty |= WM_DIRTY_LP_ALL;
2600 }
2601 }
2602
2603 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2604 dirty |= WM_DIRTY_FBC;
2605 /* Must disable LP1+ watermarks too */
2606 dirty |= WM_DIRTY_LP_ALL;
2607 }
2608
2609 if (old->partitioning != new->partitioning) {
2610 dirty |= WM_DIRTY_DDB;
2611 /* Must disable LP1+ watermarks too */
2612 dirty |= WM_DIRTY_LP_ALL;
2613 }
2614
2615 /* LP1+ watermarks already deemed dirty, no need to continue */
2616 if (dirty & WM_DIRTY_LP_ALL)
2617 return dirty;
2618
2619 /* Find the lowest numbered LP1+ watermark in need of an update... */
2620 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2621 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2622 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2623 break;
2624 }
2625
2626 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2627 for (; wm_lp <= 3; wm_lp++)
2628 dirty |= WM_DIRTY_LP(wm_lp);
2629
2630 return dirty;
2631}
2632
Ville Syrjälä8553c182013-12-05 15:51:39 +02002633static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2634 unsigned int dirty)
2635{
Imre Deak820c1982013-12-17 14:46:36 +02002636 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002637 bool changed = false;
2638
2639 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2640 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2641 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2642 changed = true;
2643 }
2644 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2645 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2646 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2647 changed = true;
2648 }
2649 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2650 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2651 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2652 changed = true;
2653 }
2654
2655 /*
2656 * Don't touch WM1S_LP_EN here.
2657 * Doing so could cause underruns.
2658 */
2659
2660 return changed;
2661}
2662
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002663/*
2664 * The spec says we shouldn't write when we don't need, because every write
2665 * causes WMs to be re-evaluated, expending some power.
2666 */
Imre Deak820c1982013-12-17 14:46:36 +02002667static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2668 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002669{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002670 struct drm_device *dev = dev_priv->dev;
Imre Deak820c1982013-12-17 14:46:36 +02002671 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002672 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002673 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002674
Damien Lespiau055e3932014-08-18 13:49:10 +01002675 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002676 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002677 return;
2678
Ville Syrjälä8553c182013-12-05 15:51:39 +02002679 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002680
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002681 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002682 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002683 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002684 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002685 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002686 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2687
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002688 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002689 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002690 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002691 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002692 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002693 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2694
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002695 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002696 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002697 val = I915_READ(WM_MISC);
2698 if (results->partitioning == INTEL_DDB_PART_1_2)
2699 val &= ~WM_MISC_DATA_PARTITION_5_6;
2700 else
2701 val |= WM_MISC_DATA_PARTITION_5_6;
2702 I915_WRITE(WM_MISC, val);
2703 } else {
2704 val = I915_READ(DISP_ARB_CTL2);
2705 if (results->partitioning == INTEL_DDB_PART_1_2)
2706 val &= ~DISP_DATA_PARTITION_5_6;
2707 else
2708 val |= DISP_DATA_PARTITION_5_6;
2709 I915_WRITE(DISP_ARB_CTL2, val);
2710 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002711 }
2712
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002713 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002714 val = I915_READ(DISP_ARB_CTL);
2715 if (results->enable_fbc_wm)
2716 val &= ~DISP_FBC_WM_DIS;
2717 else
2718 val |= DISP_FBC_WM_DIS;
2719 I915_WRITE(DISP_ARB_CTL, val);
2720 }
2721
Imre Deak954911e2013-12-17 14:46:34 +02002722 if (dirty & WM_DIRTY_LP(1) &&
2723 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2724 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2725
2726 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002727 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2728 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2729 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2730 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2731 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002732
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002733 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002734 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002735 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002736 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002737 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002738 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002739
2740 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002741}
2742
Ville Syrjälä8553c182013-12-05 15:51:39 +02002743static bool ilk_disable_lp_wm(struct drm_device *dev)
2744{
2745 struct drm_i915_private *dev_priv = dev->dev_private;
2746
2747 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2748}
2749
Damien Lespiaub9cec072014-11-04 17:06:43 +00002750/*
2751 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
2752 * different active planes.
2753 */
2754
2755#define SKL_DDB_SIZE 896 /* in blocks */
Damien Lespiau43d735a2015-03-17 11:39:34 +02002756#define BXT_DDB_SIZE 512
Damien Lespiaub9cec072014-11-04 17:06:43 +00002757
2758static void
2759skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Paulo Zanoni2791a162015-10-09 18:22:43 -03002760 struct drm_crtc *for_crtc,
Damien Lespiaub9cec072014-11-04 17:06:43 +00002761 const struct intel_wm_config *config,
Paulo Zanoni2791a162015-10-09 18:22:43 -03002762 const struct skl_pipe_wm_parameters *params,
Damien Lespiaub9cec072014-11-04 17:06:43 +00002763 struct skl_ddb_entry *alloc /* out */)
2764{
2765 struct drm_crtc *crtc;
2766 unsigned int pipe_size, ddb_size;
2767 int nth_active_pipe;
2768
Paulo Zanoni2791a162015-10-09 18:22:43 -03002769 if (!params->active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00002770 alloc->start = 0;
2771 alloc->end = 0;
2772 return;
2773 }
2774
Damien Lespiau43d735a2015-03-17 11:39:34 +02002775 if (IS_BROXTON(dev))
2776 ddb_size = BXT_DDB_SIZE;
2777 else
2778 ddb_size = SKL_DDB_SIZE;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002779
2780 ddb_size -= 4; /* 4 blocks for bypass path allocation */
2781
2782 nth_active_pipe = 0;
2783 for_each_crtc(dev, crtc) {
Matt Roper3ef00282015-03-09 10:19:24 -07002784 if (!to_intel_crtc(crtc)->active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002785 continue;
2786
2787 if (crtc == for_crtc)
2788 break;
2789
2790 nth_active_pipe++;
2791 }
2792
2793 pipe_size = ddb_size / config->num_pipes_active;
2794 alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active;
Damien Lespiau16160e32014-11-04 17:06:53 +00002795 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002796}
2797
2798static unsigned int skl_cursor_allocation(const struct intel_wm_config *config)
2799{
2800 if (config->num_pipes_active == 1)
2801 return 32;
2802
2803 return 8;
2804}
2805
Damien Lespiaua269c582014-11-04 17:06:49 +00002806static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
2807{
2808 entry->start = reg & 0x3ff;
2809 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00002810 if (entry->end)
2811 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00002812}
2813
Damien Lespiau08db6652014-11-04 17:06:52 +00002814void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2815 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00002816{
Damien Lespiaua269c582014-11-04 17:06:49 +00002817 enum pipe pipe;
2818 int plane;
2819 u32 val;
2820
2821 for_each_pipe(dev_priv, pipe) {
Damien Lespiaudd740782015-02-28 14:54:08 +00002822 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00002823 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
2824 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
2825 val);
2826 }
2827
2828 val = I915_READ(CUR_BUF_CFG(pipe));
Matt Roper4969d332015-09-24 15:53:10 -07002829 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][PLANE_CURSOR],
2830 val);
Damien Lespiaua269c582014-11-04 17:06:49 +00002831 }
2832}
2833
Damien Lespiaub9cec072014-11-04 17:06:43 +00002834static unsigned int
Paulo Zanoni2791a162015-10-09 18:22:43 -03002835skl_plane_relative_data_rate(const struct intel_plane_wm_parameters *p, int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002836{
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002837
2838 /* for planar format */
Paulo Zanoni2791a162015-10-09 18:22:43 -03002839 if (p->y_bytes_per_pixel) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002840 if (y) /* y-plane data rate */
Paulo Zanoni2791a162015-10-09 18:22:43 -03002841 return p->horiz_pixels * p->vert_pixels * p->y_bytes_per_pixel;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002842 else /* uv-plane data rate */
Paulo Zanoni2791a162015-10-09 18:22:43 -03002843 return (p->horiz_pixels/2) * (p->vert_pixels/2) * p->bytes_per_pixel;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002844 }
2845
2846 /* for packed formats */
Paulo Zanoni2791a162015-10-09 18:22:43 -03002847 return p->horiz_pixels * p->vert_pixels * p->bytes_per_pixel;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002848}
2849
2850/*
2851 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
2852 * a 8192x4096@32bpp framebuffer:
2853 * 3 * 4096 * 8192 * 4 < 2^32
2854 */
2855static unsigned int
Paulo Zanoni2791a162015-10-09 18:22:43 -03002856skl_get_total_relative_data_rate(struct intel_crtc *intel_crtc,
2857 const struct skl_pipe_wm_parameters *params)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002858{
2859 unsigned int total_data_rate = 0;
Paulo Zanoni2791a162015-10-09 18:22:43 -03002860 int plane;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002861
Paulo Zanoni2791a162015-10-09 18:22:43 -03002862 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2863 const struct intel_plane_wm_parameters *p;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002864
Paulo Zanoni2791a162015-10-09 18:22:43 -03002865 p = &params->plane[plane];
2866 if (!p->enabled)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002867 continue;
2868
Paulo Zanoni2791a162015-10-09 18:22:43 -03002869 total_data_rate += skl_plane_relative_data_rate(p, 0); /* packed/uv */
2870 if (p->y_bytes_per_pixel) {
2871 total_data_rate += skl_plane_relative_data_rate(p, 1); /* y-plane */
2872 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00002873 }
2874
2875 return total_data_rate;
2876}
2877
2878static void
Paulo Zanoni2791a162015-10-09 18:22:43 -03002879skl_allocate_pipe_ddb(struct drm_crtc *crtc,
Matt Roper261a27d2015-10-08 15:28:25 -07002880 const struct intel_wm_config *config,
Paulo Zanoni2791a162015-10-09 18:22:43 -03002881 const struct skl_pipe_wm_parameters *params,
Damien Lespiaub9cec072014-11-04 17:06:43 +00002882 struct skl_ddb_allocation *ddb /* out */)
2883{
2884 struct drm_device *dev = crtc->dev;
Paulo Zanoni2791a162015-10-09 18:22:43 -03002885 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002886 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2887 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002888 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002889 uint16_t alloc_size, start, cursor_blocks;
Damien Lespiau80958152015-02-09 13:35:10 +00002890 uint16_t minimum[I915_MAX_PLANES];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002891 uint16_t y_minimum[I915_MAX_PLANES];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002892 unsigned int total_data_rate;
Paulo Zanoni2791a162015-10-09 18:22:43 -03002893 int plane;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002894
Paulo Zanoni2791a162015-10-09 18:22:43 -03002895 skl_ddb_get_pipe_allocation_limits(dev, crtc, config, params, alloc);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002896 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002897 if (alloc_size == 0) {
2898 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roper4969d332015-09-24 15:53:10 -07002899 memset(&ddb->plane[pipe][PLANE_CURSOR], 0,
2900 sizeof(ddb->plane[pipe][PLANE_CURSOR]));
Damien Lespiaub9cec072014-11-04 17:06:43 +00002901 return;
2902 }
2903
2904 cursor_blocks = skl_cursor_allocation(config);
Matt Roper4969d332015-09-24 15:53:10 -07002905 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - cursor_blocks;
2906 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002907
2908 alloc_size -= cursor_blocks;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002909 alloc->end -= cursor_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002910
Damien Lespiau80958152015-02-09 13:35:10 +00002911 /* 1. Allocate the mininum required blocks for each active plane */
Paulo Zanoni2791a162015-10-09 18:22:43 -03002912 for_each_plane(dev_priv, pipe, plane) {
2913 const struct intel_plane_wm_parameters *p;
Damien Lespiau80958152015-02-09 13:35:10 +00002914
Paulo Zanoni2791a162015-10-09 18:22:43 -03002915 p = &params->plane[plane];
2916 if (!p->enabled)
Damien Lespiau80958152015-02-09 13:35:10 +00002917 continue;
2918
Paulo Zanoni2791a162015-10-09 18:22:43 -03002919 minimum[plane] = 8;
2920 alloc_size -= minimum[plane];
2921 y_minimum[plane] = p->y_bytes_per_pixel ? 8 : 0;
2922 alloc_size -= y_minimum[plane];
Damien Lespiau80958152015-02-09 13:35:10 +00002923 }
2924
Damien Lespiaub9cec072014-11-04 17:06:43 +00002925 /*
Damien Lespiau80958152015-02-09 13:35:10 +00002926 * 2. Distribute the remaining space in proportion to the amount of
2927 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00002928 *
2929 * FIXME: we may not allocate every single block here.
2930 */
Paulo Zanoni2791a162015-10-09 18:22:43 -03002931 total_data_rate = skl_get_total_relative_data_rate(intel_crtc, params);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002932
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002933 start = alloc->start;
Paulo Zanoni2791a162015-10-09 18:22:43 -03002934 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2935 const struct intel_plane_wm_parameters *p;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002936 unsigned int data_rate, y_data_rate;
2937 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002938
Paulo Zanoni2791a162015-10-09 18:22:43 -03002939 p = &params->plane[plane];
2940 if (!p->enabled)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002941 continue;
2942
Paulo Zanoni2791a162015-10-09 18:22:43 -03002943 data_rate = skl_plane_relative_data_rate(p, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002944
2945 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002946 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00002947 * promote the expression to 64 bits to avoid overflowing, the
2948 * result is < available as data_rate / total_data_rate < 1
2949 */
Paulo Zanoni2791a162015-10-09 18:22:43 -03002950 plane_blocks = minimum[plane];
Damien Lespiau80958152015-02-09 13:35:10 +00002951 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
2952 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002953
Paulo Zanoni2791a162015-10-09 18:22:43 -03002954 ddb->plane[pipe][plane].start = start;
2955 ddb->plane[pipe][plane].end = start + plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002956
2957 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002958
2959 /*
2960 * allocation for y_plane part of planar format:
2961 */
Paulo Zanoni2791a162015-10-09 18:22:43 -03002962 if (p->y_bytes_per_pixel) {
2963 y_data_rate = skl_plane_relative_data_rate(p, 1);
2964 y_plane_blocks = y_minimum[plane];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002965 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
2966 total_data_rate);
2967
Paulo Zanoni2791a162015-10-09 18:22:43 -03002968 ddb->y_plane[pipe][plane].start = start;
2969 ddb->y_plane[pipe][plane].end = start + y_plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002970
2971 start += y_plane_blocks;
2972 }
2973
Damien Lespiaub9cec072014-11-04 17:06:43 +00002974 }
2975
2976}
2977
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02002978static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002979{
2980 /* TODO: Take into account the scalers once we support them */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02002981 return config->base.adjusted_mode.crtc_clock;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002982}
2983
2984/*
2985 * The max latency should be 257 (max the punit can code is 255 and we add 2us
2986 * for the read latency) and bytes_per_pixel should always be <= 8, so that
2987 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
2988 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
2989*/
2990static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
2991 uint32_t latency)
2992{
2993 uint32_t wm_intermediate_val, ret;
2994
2995 if (latency == 0)
2996 return UINT_MAX;
2997
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002998 wm_intermediate_val = latency * pixel_rate * bytes_per_pixel / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002999 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
3000
3001 return ret;
3002}
3003
3004static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
3005 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003006 uint64_t tiling, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003007{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003008 uint32_t ret;
3009 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3010 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003011
3012 if (latency == 0)
3013 return UINT_MAX;
3014
3015 plane_bytes_per_line = horiz_pixels * bytes_per_pixel;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003016
3017 if (tiling == I915_FORMAT_MOD_Y_TILED ||
3018 tiling == I915_FORMAT_MOD_Yf_TILED) {
3019 plane_bytes_per_line *= 4;
3020 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3021 plane_blocks_per_line /= 4;
3022 } else {
3023 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3024 }
3025
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003026 wm_intermediate_val = latency * pixel_rate;
3027 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003028 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003029
3030 return ret;
3031}
3032
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003033static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb,
3034 const struct intel_crtc *intel_crtc)
3035{
3036 struct drm_device *dev = intel_crtc->base.dev;
3037 struct drm_i915_private *dev_priv = dev->dev_private;
3038 const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3039 enum pipe pipe = intel_crtc->pipe;
3040
3041 if (memcmp(new_ddb->plane[pipe], cur_ddb->plane[pipe],
3042 sizeof(new_ddb->plane[pipe])))
3043 return true;
3044
Matt Roper4969d332015-09-24 15:53:10 -07003045 if (memcmp(&new_ddb->plane[pipe][PLANE_CURSOR], &cur_ddb->plane[pipe][PLANE_CURSOR],
3046 sizeof(new_ddb->plane[pipe][PLANE_CURSOR])))
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003047 return true;
3048
3049 return false;
3050}
3051
Matt Roper261a27d2015-10-08 15:28:25 -07003052static void skl_compute_wm_global_parameters(struct drm_device *dev,
3053 struct intel_wm_config *config)
3054{
3055 struct drm_crtc *crtc;
Paulo Zanoni2791a162015-10-09 18:22:43 -03003056 struct drm_plane *plane;
Matt Roper261a27d2015-10-08 15:28:25 -07003057
3058 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3059 config->num_pipes_active += to_intel_crtc(crtc)->active;
Paulo Zanoni2791a162015-10-09 18:22:43 -03003060
3061 /* FIXME: I don't think we need those two global parameters on SKL */
3062 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
3063 struct intel_plane *intel_plane = to_intel_plane(plane);
3064
3065 config->sprites_enabled |= intel_plane->wm.enabled;
3066 config->sprites_scaled |= intel_plane->wm.scaled;
3067 }
3068}
3069
3070static void skl_compute_wm_pipe_parameters(struct drm_crtc *crtc,
3071 struct skl_pipe_wm_parameters *p)
3072{
3073 struct drm_device *dev = crtc->dev;
3074 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3075 enum pipe pipe = intel_crtc->pipe;
3076 struct drm_plane *plane;
3077 struct drm_framebuffer *fb;
3078 int i = 1; /* Index for sprite planes start */
3079
3080 p->active = intel_crtc->active;
3081 if (p->active) {
3082 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
3083 p->pixel_rate = skl_pipe_pixel_rate(intel_crtc->config);
3084
3085 fb = crtc->primary->state->fb;
3086 /* For planar: Bpp is for uv plane, y_Bpp is for y plane */
3087 if (fb) {
3088 p->plane[0].enabled = true;
3089 p->plane[0].bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
3090 drm_format_plane_cpp(fb->pixel_format, 1) :
3091 drm_format_plane_cpp(fb->pixel_format, 0);
3092 p->plane[0].y_bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
3093 drm_format_plane_cpp(fb->pixel_format, 0) : 0;
3094 p->plane[0].tiling = fb->modifier[0];
3095 } else {
3096 p->plane[0].enabled = false;
3097 p->plane[0].bytes_per_pixel = 0;
3098 p->plane[0].y_bytes_per_pixel = 0;
3099 p->plane[0].tiling = DRM_FORMAT_MOD_NONE;
3100 }
3101 p->plane[0].horiz_pixels = intel_crtc->config->pipe_src_w;
3102 p->plane[0].vert_pixels = intel_crtc->config->pipe_src_h;
3103 p->plane[0].rotation = crtc->primary->state->rotation;
3104
3105 fb = crtc->cursor->state->fb;
3106 p->plane[PLANE_CURSOR].y_bytes_per_pixel = 0;
3107 if (fb) {
3108 p->plane[PLANE_CURSOR].enabled = true;
3109 p->plane[PLANE_CURSOR].bytes_per_pixel = fb->bits_per_pixel / 8;
3110 p->plane[PLANE_CURSOR].horiz_pixels = crtc->cursor->state->crtc_w;
3111 p->plane[PLANE_CURSOR].vert_pixels = crtc->cursor->state->crtc_h;
3112 } else {
3113 p->plane[PLANE_CURSOR].enabled = false;
3114 p->plane[PLANE_CURSOR].bytes_per_pixel = 0;
3115 p->plane[PLANE_CURSOR].horiz_pixels = 64;
3116 p->plane[PLANE_CURSOR].vert_pixels = 64;
3117 }
3118 }
3119
3120 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
3121 struct intel_plane *intel_plane = to_intel_plane(plane);
3122
3123 if (intel_plane->pipe == pipe &&
3124 plane->type == DRM_PLANE_TYPE_OVERLAY)
3125 p->plane[i++] = intel_plane->wm;
3126 }
Matt Roper261a27d2015-10-08 15:28:25 -07003127}
3128
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003129static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
Paulo Zanoni2791a162015-10-09 18:22:43 -03003130 struct skl_pipe_wm_parameters *p,
3131 struct intel_plane_wm_parameters *p_params,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003132 uint16_t ddb_allocation,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003133 int level,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003134 uint16_t *out_blocks, /* out */
3135 uint8_t *out_lines /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003136{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003137 uint32_t latency = dev_priv->wm.skl_latency[level];
3138 uint32_t method1, method2;
3139 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3140 uint32_t res_blocks, res_lines;
3141 uint32_t selected_result;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003142 uint8_t bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003143
Paulo Zanoni2791a162015-10-09 18:22:43 -03003144 if (latency == 0 || !p->active || !p_params->enabled)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003145 return false;
3146
Paulo Zanoni2791a162015-10-09 18:22:43 -03003147 bytes_per_pixel = p_params->y_bytes_per_pixel ?
3148 p_params->y_bytes_per_pixel :
3149 p_params->bytes_per_pixel;
3150 method1 = skl_wm_method1(p->pixel_rate,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003151 bytes_per_pixel,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003152 latency);
Paulo Zanoni2791a162015-10-09 18:22:43 -03003153 method2 = skl_wm_method2(p->pixel_rate,
3154 p->pipe_htotal,
3155 p_params->horiz_pixels,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003156 bytes_per_pixel,
Paulo Zanoni2791a162015-10-09 18:22:43 -03003157 p_params->tiling,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003158 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003159
Paulo Zanoni2791a162015-10-09 18:22:43 -03003160 plane_bytes_per_line = p_params->horiz_pixels * bytes_per_pixel;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003161 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003162
Paulo Zanoni2791a162015-10-09 18:22:43 -03003163 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
3164 p_params->tiling == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003165 uint32_t min_scanlines = 4;
3166 uint32_t y_tile_minimum;
Paulo Zanoni2791a162015-10-09 18:22:43 -03003167 if (intel_rotation_90_or_270(p_params->rotation)) {
3168 switch (p_params->bytes_per_pixel) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003169 case 1:
3170 min_scanlines = 16;
3171 break;
3172 case 2:
3173 min_scanlines = 8;
3174 break;
3175 case 8:
3176 WARN(1, "Unsupported pixel depth for rotation");
kbuild test robot2f0b5792015-03-26 22:30:21 +08003177 }
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003178 }
3179 y_tile_minimum = plane_blocks_per_line * min_scanlines;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003180 selected_result = max(method2, y_tile_minimum);
3181 } else {
3182 if ((ddb_allocation / plane_blocks_per_line) >= 1)
3183 selected_result = min(method1, method2);
3184 else
3185 selected_result = method1;
3186 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003187
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003188 res_blocks = selected_result + 1;
3189 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003190
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003191 if (level >= 1 && level <= 7) {
Paulo Zanoni2791a162015-10-09 18:22:43 -03003192 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
3193 p_params->tiling == I915_FORMAT_MOD_Yf_TILED)
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003194 res_lines += 4;
3195 else
3196 res_blocks++;
3197 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003198
3199 if (res_blocks >= ddb_allocation || res_lines > 31)
Damien Lespiaue6d66172014-11-04 17:06:55 +00003200 return false;
3201
3202 *out_blocks = res_blocks;
3203 *out_lines = res_lines;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003204
3205 return true;
3206}
3207
3208static void skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3209 struct skl_ddb_allocation *ddb,
Paulo Zanoni2791a162015-10-09 18:22:43 -03003210 struct skl_pipe_wm_parameters *p,
3211 enum pipe pipe,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003212 int level,
Paulo Zanoni2791a162015-10-09 18:22:43 -03003213 int num_planes,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003214 struct skl_wm_level *result)
3215{
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003216 uint16_t ddb_blocks;
Paulo Zanoni2791a162015-10-09 18:22:43 -03003217 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003218
Paulo Zanoni2791a162015-10-09 18:22:43 -03003219 for (i = 0; i < num_planes; i++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003220 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
3221
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003222 result->plane_en[i] = skl_compute_plane_wm(dev_priv,
Paulo Zanoni2791a162015-10-09 18:22:43 -03003223 p, &p->plane[i],
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003224 ddb_blocks,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003225 level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003226 &result->plane_res_b[i],
3227 &result->plane_res_l[i]);
3228 }
Paulo Zanoni2791a162015-10-09 18:22:43 -03003229
3230 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][PLANE_CURSOR]);
3231 result->plane_en[PLANE_CURSOR] = skl_compute_plane_wm(dev_priv, p,
3232 &p->plane[PLANE_CURSOR],
3233 ddb_blocks, level,
3234 &result->plane_res_b[PLANE_CURSOR],
3235 &result->plane_res_l[PLANE_CURSOR]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003236}
3237
Damien Lespiau407b50f2014-11-04 17:06:57 +00003238static uint32_t
Paulo Zanoni2791a162015-10-09 18:22:43 -03003239skl_compute_linetime_wm(struct drm_crtc *crtc, struct skl_pipe_wm_parameters *p)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003240{
Paulo Zanoni2791a162015-10-09 18:22:43 -03003241 if (!to_intel_crtc(crtc)->active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003242 return 0;
3243
Paulo Zanoni2791a162015-10-09 18:22:43 -03003244 if (WARN_ON(p->pixel_rate == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003245 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003246
Paulo Zanoni2791a162015-10-09 18:22:43 -03003247 return DIV_ROUND_UP(8 * p->pipe_htotal * 1000, p->pixel_rate);
Damien Lespiau407b50f2014-11-04 17:06:57 +00003248}
3249
Paulo Zanoni2791a162015-10-09 18:22:43 -03003250static void skl_compute_transition_wm(struct drm_crtc *crtc,
3251 struct skl_pipe_wm_parameters *params,
Damien Lespiau9414f562014-11-04 17:06:58 +00003252 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003253{
Damien Lespiau9414f562014-11-04 17:06:58 +00003254 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni2791a162015-10-09 18:22:43 -03003255 int i;
Damien Lespiau9414f562014-11-04 17:06:58 +00003256
Paulo Zanoni2791a162015-10-09 18:22:43 -03003257 if (!params->active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003258 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003259
3260 /* Until we know more, just disable transition WMs */
Paulo Zanoni2791a162015-10-09 18:22:43 -03003261 for (i = 0; i < intel_num_planes(intel_crtc); i++)
Damien Lespiau9414f562014-11-04 17:06:58 +00003262 trans_wm->plane_en[i] = false;
Paulo Zanoni2791a162015-10-09 18:22:43 -03003263 trans_wm->plane_en[PLANE_CURSOR] = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003264}
3265
Paulo Zanoni2791a162015-10-09 18:22:43 -03003266static void skl_compute_pipe_wm(struct drm_crtc *crtc,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003267 struct skl_ddb_allocation *ddb,
Paulo Zanoni2791a162015-10-09 18:22:43 -03003268 struct skl_pipe_wm_parameters *params,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003269 struct skl_pipe_wm *pipe_wm)
3270{
Paulo Zanoni2791a162015-10-09 18:22:43 -03003271 struct drm_device *dev = crtc->dev;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003272 const struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2791a162015-10-09 18:22:43 -03003273 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003274 int level, max_level = ilk_wm_max_level(dev);
3275
3276 for (level = 0; level <= max_level; level++) {
Paulo Zanoni2791a162015-10-09 18:22:43 -03003277 skl_compute_wm_level(dev_priv, ddb, params, intel_crtc->pipe,
3278 level, intel_num_planes(intel_crtc),
3279 &pipe_wm->wm[level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003280 }
Paulo Zanoni2791a162015-10-09 18:22:43 -03003281 pipe_wm->linetime = skl_compute_linetime_wm(crtc, params);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003282
Paulo Zanoni2791a162015-10-09 18:22:43 -03003283 skl_compute_transition_wm(crtc, params, &pipe_wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003284}
3285
3286static void skl_compute_wm_results(struct drm_device *dev,
Paulo Zanoni2791a162015-10-09 18:22:43 -03003287 struct skl_pipe_wm_parameters *p,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003288 struct skl_pipe_wm *p_wm,
3289 struct skl_wm_values *r,
3290 struct intel_crtc *intel_crtc)
3291{
3292 int level, max_level = ilk_wm_max_level(dev);
3293 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau9414f562014-11-04 17:06:58 +00003294 uint32_t temp;
3295 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003296
3297 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003298 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3299 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003300
3301 temp |= p_wm->wm[level].plane_res_l[i] <<
3302 PLANE_WM_LINES_SHIFT;
3303 temp |= p_wm->wm[level].plane_res_b[i];
3304 if (p_wm->wm[level].plane_en[i])
3305 temp |= PLANE_WM_EN;
3306
3307 r->plane[pipe][i][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003308 }
3309
3310 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003311
Matt Roper4969d332015-09-24 15:53:10 -07003312 temp |= p_wm->wm[level].plane_res_l[PLANE_CURSOR] << PLANE_WM_LINES_SHIFT;
3313 temp |= p_wm->wm[level].plane_res_b[PLANE_CURSOR];
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003314
Matt Roper4969d332015-09-24 15:53:10 -07003315 if (p_wm->wm[level].plane_en[PLANE_CURSOR])
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003316 temp |= PLANE_WM_EN;
3317
Matt Roper4969d332015-09-24 15:53:10 -07003318 r->plane[pipe][PLANE_CURSOR][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003319
3320 }
3321
Damien Lespiau9414f562014-11-04 17:06:58 +00003322 /* transition WMs */
3323 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3324 temp = 0;
3325 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
3326 temp |= p_wm->trans_wm.plane_res_b[i];
3327 if (p_wm->trans_wm.plane_en[i])
3328 temp |= PLANE_WM_EN;
3329
3330 r->plane_trans[pipe][i] = temp;
3331 }
3332
3333 temp = 0;
Matt Roper4969d332015-09-24 15:53:10 -07003334 temp |= p_wm->trans_wm.plane_res_l[PLANE_CURSOR] << PLANE_WM_LINES_SHIFT;
3335 temp |= p_wm->trans_wm.plane_res_b[PLANE_CURSOR];
3336 if (p_wm->trans_wm.plane_en[PLANE_CURSOR])
Damien Lespiau9414f562014-11-04 17:06:58 +00003337 temp |= PLANE_WM_EN;
3338
Matt Roper4969d332015-09-24 15:53:10 -07003339 r->plane_trans[pipe][PLANE_CURSOR] = temp;
Damien Lespiau9414f562014-11-04 17:06:58 +00003340
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003341 r->wm_linetime[pipe] = p_wm->linetime;
3342}
3343
Damien Lespiau16160e32014-11-04 17:06:53 +00003344static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, uint32_t reg,
3345 const struct skl_ddb_entry *entry)
3346{
3347 if (entry->end)
3348 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3349 else
3350 I915_WRITE(reg, 0);
3351}
3352
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003353static void skl_write_wm_values(struct drm_i915_private *dev_priv,
3354 const struct skl_wm_values *new)
3355{
3356 struct drm_device *dev = dev_priv->dev;
3357 struct intel_crtc *crtc;
3358
3359 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
3360 int i, level, max_level = ilk_wm_max_level(dev);
3361 enum pipe pipe = crtc->pipe;
3362
Damien Lespiau5d374d92014-11-04 17:07:00 +00003363 if (!new->dirty[pipe])
3364 continue;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003365
Damien Lespiau5d374d92014-11-04 17:07:00 +00003366 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
3367
3368 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003369 for (i = 0; i < intel_num_planes(crtc); i++)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003370 I915_WRITE(PLANE_WM(pipe, i, level),
3371 new->plane[pipe][i][level]);
3372 I915_WRITE(CUR_WM(pipe, level),
Matt Roper4969d332015-09-24 15:53:10 -07003373 new->plane[pipe][PLANE_CURSOR][level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003374 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003375 for (i = 0; i < intel_num_planes(crtc); i++)
3376 I915_WRITE(PLANE_WM_TRANS(pipe, i),
3377 new->plane_trans[pipe][i]);
Matt Roper4969d332015-09-24 15:53:10 -07003378 I915_WRITE(CUR_WM_TRANS(pipe),
3379 new->plane_trans[pipe][PLANE_CURSOR]);
Damien Lespiau5d374d92014-11-04 17:07:00 +00003380
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003381 for (i = 0; i < intel_num_planes(crtc); i++) {
Damien Lespiau5d374d92014-11-04 17:07:00 +00003382 skl_ddb_entry_write(dev_priv,
3383 PLANE_BUF_CFG(pipe, i),
3384 &new->ddb.plane[pipe][i]);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003385 skl_ddb_entry_write(dev_priv,
3386 PLANE_NV12_BUF_CFG(pipe, i),
3387 &new->ddb.y_plane[pipe][i]);
3388 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003389
3390 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
Matt Roper4969d332015-09-24 15:53:10 -07003391 &new->ddb.plane[pipe][PLANE_CURSOR]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003392 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003393}
3394
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003395/*
3396 * When setting up a new DDB allocation arrangement, we need to correctly
3397 * sequence the times at which the new allocations for the pipes are taken into
3398 * account or we'll have pipes fetching from space previously allocated to
3399 * another pipe.
3400 *
3401 * Roughly the sequence looks like:
3402 * 1. re-allocate the pipe(s) with the allocation being reduced and not
3403 * overlapping with a previous light-up pipe (another way to put it is:
3404 * pipes with their new allocation strickly included into their old ones).
3405 * 2. re-allocate the other pipes that get their allocation reduced
3406 * 3. allocate the pipes having their allocation increased
3407 *
3408 * Steps 1. and 2. are here to take care of the following case:
3409 * - Initially DDB looks like this:
3410 * | B | C |
3411 * - enable pipe A.
3412 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
3413 * allocation
3414 * | A | B | C |
3415 *
3416 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
3417 */
3418
Damien Lespiaud21b7952014-11-04 17:07:03 +00003419static void
3420skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003421{
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003422 int plane;
3423
Damien Lespiaud21b7952014-11-04 17:07:03 +00003424 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
3425
Damien Lespiaudd740782015-02-28 14:54:08 +00003426 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003427 I915_WRITE(PLANE_SURF(pipe, plane),
3428 I915_READ(PLANE_SURF(pipe, plane)));
3429 }
3430 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3431}
3432
3433static bool
3434skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
3435 const struct skl_ddb_allocation *new,
3436 enum pipe pipe)
3437{
3438 uint16_t old_size, new_size;
3439
3440 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
3441 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
3442
3443 return old_size != new_size &&
3444 new->pipe[pipe].start >= old->pipe[pipe].start &&
3445 new->pipe[pipe].end <= old->pipe[pipe].end;
3446}
3447
3448static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
3449 struct skl_wm_values *new_values)
3450{
3451 struct drm_device *dev = dev_priv->dev;
3452 struct skl_ddb_allocation *cur_ddb, *new_ddb;
Ville Syrjäläc929cb42015-04-02 18:28:07 +03003453 bool reallocated[I915_MAX_PIPES] = {};
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003454 struct intel_crtc *crtc;
3455 enum pipe pipe;
3456
3457 new_ddb = &new_values->ddb;
3458 cur_ddb = &dev_priv->wm.skl_hw.ddb;
3459
3460 /*
3461 * First pass: flush the pipes with the new allocation contained into
3462 * the old space.
3463 *
3464 * We'll wait for the vblank on those pipes to ensure we can safely
3465 * re-allocate the freed space without this pipe fetching from it.
3466 */
3467 for_each_intel_crtc(dev, crtc) {
3468 if (!crtc->active)
3469 continue;
3470
3471 pipe = crtc->pipe;
3472
3473 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
3474 continue;
3475
Damien Lespiaud21b7952014-11-04 17:07:03 +00003476 skl_wm_flush_pipe(dev_priv, pipe, 1);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003477 intel_wait_for_vblank(dev, pipe);
3478
3479 reallocated[pipe] = true;
3480 }
3481
3482
3483 /*
3484 * Second pass: flush the pipes that are having their allocation
3485 * reduced, but overlapping with a previous allocation.
3486 *
3487 * Here as well we need to wait for the vblank to make sure the freed
3488 * space is not used anymore.
3489 */
3490 for_each_intel_crtc(dev, crtc) {
3491 if (!crtc->active)
3492 continue;
3493
3494 pipe = crtc->pipe;
3495
3496 if (reallocated[pipe])
3497 continue;
3498
3499 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3500 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
Damien Lespiaud21b7952014-11-04 17:07:03 +00003501 skl_wm_flush_pipe(dev_priv, pipe, 2);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003502 intel_wait_for_vblank(dev, pipe);
Sonika Jindald9d8e6b2014-12-11 17:58:15 +05303503 reallocated[pipe] = true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003504 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003505 }
3506
3507 /*
3508 * Third pass: flush the pipes that got more space allocated.
3509 *
3510 * We don't need to actively wait for the update here, next vblank
3511 * will just get more DDB space with the correct WM values.
3512 */
3513 for_each_intel_crtc(dev, crtc) {
3514 if (!crtc->active)
3515 continue;
3516
3517 pipe = crtc->pipe;
3518
3519 /*
3520 * At this point, only the pipes more space than before are
3521 * left to re-allocate.
3522 */
3523 if (reallocated[pipe])
3524 continue;
3525
Damien Lespiaud21b7952014-11-04 17:07:03 +00003526 skl_wm_flush_pipe(dev_priv, pipe, 3);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003527 }
3528}
3529
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003530static bool skl_update_pipe_wm(struct drm_crtc *crtc,
Paulo Zanoni2791a162015-10-09 18:22:43 -03003531 struct skl_pipe_wm_parameters *params,
Matt Roper261a27d2015-10-08 15:28:25 -07003532 struct intel_wm_config *config,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003533 struct skl_ddb_allocation *ddb, /* out */
3534 struct skl_pipe_wm *pipe_wm /* out */)
3535{
3536 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3537
Paulo Zanoni2791a162015-10-09 18:22:43 -03003538 skl_compute_wm_pipe_parameters(crtc, params);
3539 skl_allocate_pipe_ddb(crtc, config, params, ddb);
3540 skl_compute_pipe_wm(crtc, ddb, params, pipe_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003541
Matt Roper261a27d2015-10-08 15:28:25 -07003542 if (!memcmp(&intel_crtc->wm.skl_active, pipe_wm, sizeof(*pipe_wm)))
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003543 return false;
3544
Matt Roper261a27d2015-10-08 15:28:25 -07003545 intel_crtc->wm.skl_active = *pipe_wm;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003546
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003547 return true;
3548}
3549
3550static void skl_update_other_pipe_wm(struct drm_device *dev,
3551 struct drm_crtc *crtc,
Matt Roper261a27d2015-10-08 15:28:25 -07003552 struct intel_wm_config *config,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003553 struct skl_wm_values *r)
3554{
3555 struct intel_crtc *intel_crtc;
3556 struct intel_crtc *this_crtc = to_intel_crtc(crtc);
3557
3558 /*
3559 * If the WM update hasn't changed the allocation for this_crtc (the
3560 * crtc we are currently computing the new WM values for), other
3561 * enabled crtcs will keep the same allocation and we don't need to
3562 * recompute anything for them.
3563 */
3564 if (!skl_ddb_allocation_changed(&r->ddb, this_crtc))
3565 return;
3566
3567 /*
3568 * Otherwise, because of this_crtc being freshly enabled/disabled, the
3569 * other active pipes need new DDB allocation and WM values.
3570 */
3571 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
3572 base.head) {
Paulo Zanoni2791a162015-10-09 18:22:43 -03003573 struct skl_pipe_wm_parameters params = {};
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003574 struct skl_pipe_wm pipe_wm = {};
3575 bool wm_changed;
3576
3577 if (this_crtc->pipe == intel_crtc->pipe)
3578 continue;
3579
3580 if (!intel_crtc->active)
3581 continue;
3582
Paulo Zanoni2791a162015-10-09 18:22:43 -03003583 wm_changed = skl_update_pipe_wm(&intel_crtc->base,
3584 &params, config,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003585 &r->ddb, &pipe_wm);
3586
3587 /*
3588 * If we end up re-computing the other pipe WM values, it's
3589 * because it was really needed, so we expect the WM values to
3590 * be different.
3591 */
3592 WARN_ON(!wm_changed);
3593
Paulo Zanoni2791a162015-10-09 18:22:43 -03003594 skl_compute_wm_results(dev, &params, &pipe_wm, r, intel_crtc);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003595 r->dirty[intel_crtc->pipe] = true;
3596 }
3597}
3598
Bob Paauweadda50b2015-07-21 10:42:53 -07003599static void skl_clear_wm(struct skl_wm_values *watermarks, enum pipe pipe)
3600{
3601 watermarks->wm_linetime[pipe] = 0;
3602 memset(watermarks->plane[pipe], 0,
3603 sizeof(uint32_t) * 8 * I915_MAX_PLANES);
Bob Paauweadda50b2015-07-21 10:42:53 -07003604 memset(watermarks->plane_trans[pipe],
3605 0, sizeof(uint32_t) * I915_MAX_PLANES);
Matt Roper4969d332015-09-24 15:53:10 -07003606 watermarks->plane_trans[pipe][PLANE_CURSOR] = 0;
Bob Paauweadda50b2015-07-21 10:42:53 -07003607
3608 /* Clear ddb entries for pipe */
3609 memset(&watermarks->ddb.pipe[pipe], 0, sizeof(struct skl_ddb_entry));
3610 memset(&watermarks->ddb.plane[pipe], 0,
3611 sizeof(struct skl_ddb_entry) * I915_MAX_PLANES);
3612 memset(&watermarks->ddb.y_plane[pipe], 0,
3613 sizeof(struct skl_ddb_entry) * I915_MAX_PLANES);
Matt Roper4969d332015-09-24 15:53:10 -07003614 memset(&watermarks->ddb.plane[pipe][PLANE_CURSOR], 0,
3615 sizeof(struct skl_ddb_entry));
Bob Paauweadda50b2015-07-21 10:42:53 -07003616
3617}
3618
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003619static void skl_update_wm(struct drm_crtc *crtc)
3620{
3621 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3622 struct drm_device *dev = crtc->dev;
3623 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2791a162015-10-09 18:22:43 -03003624 struct skl_pipe_wm_parameters params = {};
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003625 struct skl_wm_values *results = &dev_priv->wm.skl_results;
Matt Roper261a27d2015-10-08 15:28:25 -07003626 struct skl_pipe_wm pipe_wm = {};
3627 struct intel_wm_config config = {};
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003628
Bob Paauweadda50b2015-07-21 10:42:53 -07003629
3630 /* Clear all dirty flags */
3631 memset(results->dirty, 0, sizeof(bool) * I915_MAX_PIPES);
3632
3633 skl_clear_wm(results, intel_crtc->pipe);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003634
Matt Roper261a27d2015-10-08 15:28:25 -07003635 skl_compute_wm_global_parameters(dev, &config);
3636
Paulo Zanoni2791a162015-10-09 18:22:43 -03003637 if (!skl_update_pipe_wm(crtc, &params, &config,
3638 &results->ddb, &pipe_wm))
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003639 return;
3640
Paulo Zanoni2791a162015-10-09 18:22:43 -03003641 skl_compute_wm_results(dev, &params, &pipe_wm, results, intel_crtc);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003642 results->dirty[intel_crtc->pipe] = true;
3643
Matt Roper261a27d2015-10-08 15:28:25 -07003644 skl_update_other_pipe_wm(dev, crtc, &config, results);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003645 skl_write_wm_values(dev_priv, results);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003646 skl_flush_wm_values(dev_priv, results);
Damien Lespiau53b0deb2014-11-04 17:06:48 +00003647
3648 /* store the new configuration */
3649 dev_priv->wm.skl_hw = *results;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003650}
3651
Paulo Zanoni2791a162015-10-09 18:22:43 -03003652static void
3653skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc,
3654 uint32_t sprite_width, uint32_t sprite_height,
3655 int pixel_size, bool enabled, bool scaled)
3656{
3657 struct intel_plane *intel_plane = to_intel_plane(plane);
3658 struct drm_framebuffer *fb = plane->state->fb;
3659
3660 intel_plane->wm.enabled = enabled;
3661 intel_plane->wm.scaled = scaled;
3662 intel_plane->wm.horiz_pixels = sprite_width;
3663 intel_plane->wm.vert_pixels = sprite_height;
3664 intel_plane->wm.tiling = DRM_FORMAT_MOD_NONE;
3665
3666 /* For planar: Bpp is for UV plane, y_Bpp is for Y plane */
3667 intel_plane->wm.bytes_per_pixel =
3668 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3669 drm_format_plane_cpp(plane->state->fb->pixel_format, 1) : pixel_size;
3670 intel_plane->wm.y_bytes_per_pixel =
3671 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3672 drm_format_plane_cpp(plane->state->fb->pixel_format, 0) : 0;
3673
3674 /*
3675 * Framebuffer can be NULL on plane disable, but it does not
3676 * matter for watermarks if we assume no tiling in that case.
3677 */
3678 if (fb)
3679 intel_plane->wm.tiling = fb->modifier[0];
3680 intel_plane->wm.rotation = plane->state->rotation;
3681
3682 skl_update_wm(crtc);
3683}
3684
Matt Roper261a27d2015-10-08 15:28:25 -07003685static void ilk_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003686{
Matt Roper261a27d2015-10-08 15:28:25 -07003687 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3688 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
3689 struct drm_device *dev = crtc->dev;
3690 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003691 struct ilk_wm_maximums max;
Imre Deak820c1982013-12-17 14:46:36 +02003692 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003693 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07003694 struct intel_pipe_wm pipe_wm = {};
3695 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
3696 struct intel_wm_config config = {};
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003697
Matt Roper261a27d2015-10-08 15:28:25 -07003698 WARN_ON(cstate->base.active != intel_crtc->active);
3699
Matt Roper261a27d2015-10-08 15:28:25 -07003700 intel_compute_pipe_wm(cstate, &pipe_wm);
3701
3702 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
3703 return;
3704
3705 intel_crtc->wm.active = pipe_wm;
3706
3707 ilk_compute_wm_config(dev, &config);
3708
3709 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
3710 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03003711
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003712 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03003713 if (INTEL_INFO(dev)->gen >= 7 &&
Matt Roper261a27d2015-10-08 15:28:25 -07003714 config.num_pipes_active == 1 && config.sprites_enabled) {
3715 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
3716 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003717
Imre Deak820c1982013-12-17 14:46:36 +02003718 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003719 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003720 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003721 }
3722
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003723 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003724 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003725
Imre Deak820c1982013-12-17 14:46:36 +02003726 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003727
Imre Deak820c1982013-12-17 14:46:36 +02003728 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003729}
3730
Paulo Zanoni2791a162015-10-09 18:22:43 -03003731static void
3732ilk_update_sprite_wm(struct drm_plane *plane,
3733 struct drm_crtc *crtc,
3734 uint32_t sprite_width, uint32_t sprite_height,
3735 int pixel_size, bool enabled, bool scaled)
3736{
3737 struct drm_device *dev = plane->dev;
3738 struct intel_plane *intel_plane = to_intel_plane(plane);
3739
3740 /*
3741 * IVB workaround: must disable low power watermarks for at least
3742 * one frame before enabling scaling. LP watermarks can be re-enabled
3743 * when scaling is disabled.
3744 *
3745 * WaCxSRDisabledForSpriteScaling:ivb
3746 */
3747 if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev))
3748 intel_wait_for_vblank(dev, intel_plane->pipe);
3749
3750 ilk_update_wm(crtc);
3751}
3752
Pradeep Bhat30789992014-11-04 17:06:45 +00003753static void skl_pipe_wm_active_state(uint32_t val,
3754 struct skl_pipe_wm *active,
3755 bool is_transwm,
3756 bool is_cursor,
3757 int i,
3758 int level)
3759{
3760 bool is_enabled = (val & PLANE_WM_EN) != 0;
3761
3762 if (!is_transwm) {
3763 if (!is_cursor) {
3764 active->wm[level].plane_en[i] = is_enabled;
3765 active->wm[level].plane_res_b[i] =
3766 val & PLANE_WM_BLOCKS_MASK;
3767 active->wm[level].plane_res_l[i] =
3768 (val >> PLANE_WM_LINES_SHIFT) &
3769 PLANE_WM_LINES_MASK;
3770 } else {
Matt Roper4969d332015-09-24 15:53:10 -07003771 active->wm[level].plane_en[PLANE_CURSOR] = is_enabled;
3772 active->wm[level].plane_res_b[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003773 val & PLANE_WM_BLOCKS_MASK;
Matt Roper4969d332015-09-24 15:53:10 -07003774 active->wm[level].plane_res_l[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003775 (val >> PLANE_WM_LINES_SHIFT) &
3776 PLANE_WM_LINES_MASK;
3777 }
3778 } else {
3779 if (!is_cursor) {
3780 active->trans_wm.plane_en[i] = is_enabled;
3781 active->trans_wm.plane_res_b[i] =
3782 val & PLANE_WM_BLOCKS_MASK;
3783 active->trans_wm.plane_res_l[i] =
3784 (val >> PLANE_WM_LINES_SHIFT) &
3785 PLANE_WM_LINES_MASK;
3786 } else {
Matt Roper4969d332015-09-24 15:53:10 -07003787 active->trans_wm.plane_en[PLANE_CURSOR] = is_enabled;
3788 active->trans_wm.plane_res_b[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003789 val & PLANE_WM_BLOCKS_MASK;
Matt Roper4969d332015-09-24 15:53:10 -07003790 active->trans_wm.plane_res_l[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003791 (val >> PLANE_WM_LINES_SHIFT) &
3792 PLANE_WM_LINES_MASK;
3793 }
3794 }
3795}
3796
3797static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3798{
3799 struct drm_device *dev = crtc->dev;
3800 struct drm_i915_private *dev_priv = dev->dev_private;
3801 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
3802 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper261a27d2015-10-08 15:28:25 -07003803 struct skl_pipe_wm *active = &intel_crtc->wm.skl_active;
Pradeep Bhat30789992014-11-04 17:06:45 +00003804 enum pipe pipe = intel_crtc->pipe;
3805 int level, i, max_level;
3806 uint32_t temp;
3807
3808 max_level = ilk_wm_max_level(dev);
3809
3810 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3811
3812 for (level = 0; level <= max_level; level++) {
3813 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3814 hw->plane[pipe][i][level] =
3815 I915_READ(PLANE_WM(pipe, i, level));
Matt Roper4969d332015-09-24 15:53:10 -07003816 hw->plane[pipe][PLANE_CURSOR][level] = I915_READ(CUR_WM(pipe, level));
Pradeep Bhat30789992014-11-04 17:06:45 +00003817 }
3818
3819 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3820 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
Matt Roper4969d332015-09-24 15:53:10 -07003821 hw->plane_trans[pipe][PLANE_CURSOR] = I915_READ(CUR_WM_TRANS(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00003822
Matt Roper3ef00282015-03-09 10:19:24 -07003823 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00003824 return;
3825
3826 hw->dirty[pipe] = true;
3827
3828 active->linetime = hw->wm_linetime[pipe];
3829
3830 for (level = 0; level <= max_level; level++) {
3831 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3832 temp = hw->plane[pipe][i][level];
3833 skl_pipe_wm_active_state(temp, active, false,
3834 false, i, level);
3835 }
Matt Roper4969d332015-09-24 15:53:10 -07003836 temp = hw->plane[pipe][PLANE_CURSOR][level];
Pradeep Bhat30789992014-11-04 17:06:45 +00003837 skl_pipe_wm_active_state(temp, active, false, true, i, level);
3838 }
3839
3840 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3841 temp = hw->plane_trans[pipe][i];
3842 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
3843 }
3844
Matt Roper4969d332015-09-24 15:53:10 -07003845 temp = hw->plane_trans[pipe][PLANE_CURSOR];
Pradeep Bhat30789992014-11-04 17:06:45 +00003846 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
3847}
3848
3849void skl_wm_get_hw_state(struct drm_device *dev)
3850{
Damien Lespiaua269c582014-11-04 17:06:49 +00003851 struct drm_i915_private *dev_priv = dev->dev_private;
3852 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00003853 struct drm_crtc *crtc;
3854
Damien Lespiaua269c582014-11-04 17:06:49 +00003855 skl_ddb_get_hw_state(dev_priv, ddb);
Pradeep Bhat30789992014-11-04 17:06:45 +00003856 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3857 skl_pipe_wm_get_hw_state(crtc);
3858}
3859
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003860static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3861{
3862 struct drm_device *dev = crtc->dev;
3863 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003864 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003865 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper261a27d2015-10-08 15:28:25 -07003866 struct intel_pipe_wm *active = &intel_crtc->wm.active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003867 enum pipe pipe = intel_crtc->pipe;
3868 static const unsigned int wm0_pipe_reg[] = {
3869 [PIPE_A] = WM0_PIPEA_ILK,
3870 [PIPE_B] = WM0_PIPEB_ILK,
3871 [PIPE_C] = WM0_PIPEC_IVB,
3872 };
3873
3874 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003875 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02003876 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003877
Matt Roper3ef00282015-03-09 10:19:24 -07003878 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003879
3880 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003881 u32 tmp = hw->wm_pipe[pipe];
3882
3883 /*
3884 * For active pipes LP0 watermark is marked as
3885 * enabled, and LP1+ watermaks as disabled since
3886 * we can't really reverse compute them in case
3887 * multiple pipes are active.
3888 */
3889 active->wm[0].enable = true;
3890 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3891 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3892 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3893 active->linetime = hw->wm_linetime[pipe];
3894 } else {
3895 int level, max_level = ilk_wm_max_level(dev);
3896
3897 /*
3898 * For inactive pipes, all watermark levels
3899 * should be marked as enabled but zeroed,
3900 * which is what we'd compute them to.
3901 */
3902 for (level = 0; level <= max_level; level++)
3903 active->wm[level].enable = true;
3904 }
3905}
3906
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03003907#define _FW_WM(value, plane) \
3908 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
3909#define _FW_WM_VLV(value, plane) \
3910 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
3911
3912static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
3913 struct vlv_wm_values *wm)
3914{
3915 enum pipe pipe;
3916 uint32_t tmp;
3917
3918 for_each_pipe(dev_priv, pipe) {
3919 tmp = I915_READ(VLV_DDL(pipe));
3920
3921 wm->ddl[pipe].primary =
3922 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3923 wm->ddl[pipe].cursor =
3924 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3925 wm->ddl[pipe].sprite[0] =
3926 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3927 wm->ddl[pipe].sprite[1] =
3928 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3929 }
3930
3931 tmp = I915_READ(DSPFW1);
3932 wm->sr.plane = _FW_WM(tmp, SR);
3933 wm->pipe[PIPE_B].cursor = _FW_WM(tmp, CURSORB);
3934 wm->pipe[PIPE_B].primary = _FW_WM_VLV(tmp, PLANEB);
3935 wm->pipe[PIPE_A].primary = _FW_WM_VLV(tmp, PLANEA);
3936
3937 tmp = I915_READ(DSPFW2);
3938 wm->pipe[PIPE_A].sprite[1] = _FW_WM_VLV(tmp, SPRITEB);
3939 wm->pipe[PIPE_A].cursor = _FW_WM(tmp, CURSORA);
3940 wm->pipe[PIPE_A].sprite[0] = _FW_WM_VLV(tmp, SPRITEA);
3941
3942 tmp = I915_READ(DSPFW3);
3943 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
3944
3945 if (IS_CHERRYVIEW(dev_priv)) {
3946 tmp = I915_READ(DSPFW7_CHV);
3947 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
3948 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
3949
3950 tmp = I915_READ(DSPFW8_CHV);
3951 wm->pipe[PIPE_C].sprite[1] = _FW_WM_VLV(tmp, SPRITEF);
3952 wm->pipe[PIPE_C].sprite[0] = _FW_WM_VLV(tmp, SPRITEE);
3953
3954 tmp = I915_READ(DSPFW9_CHV);
3955 wm->pipe[PIPE_C].primary = _FW_WM_VLV(tmp, PLANEC);
3956 wm->pipe[PIPE_C].cursor = _FW_WM(tmp, CURSORC);
3957
3958 tmp = I915_READ(DSPHOWM);
3959 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
3960 wm->pipe[PIPE_C].sprite[1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
3961 wm->pipe[PIPE_C].sprite[0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
3962 wm->pipe[PIPE_C].primary |= _FW_WM(tmp, PLANEC_HI) << 8;
3963 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
3964 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
3965 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
3966 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
3967 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
3968 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
3969 } else {
3970 tmp = I915_READ(DSPFW7);
3971 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
3972 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
3973
3974 tmp = I915_READ(DSPHOWM);
3975 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
3976 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
3977 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
3978 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
3979 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
3980 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
3981 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
3982 }
3983}
3984
3985#undef _FW_WM
3986#undef _FW_WM_VLV
3987
3988void vlv_wm_get_hw_state(struct drm_device *dev)
3989{
3990 struct drm_i915_private *dev_priv = to_i915(dev);
3991 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
3992 struct intel_plane *plane;
3993 enum pipe pipe;
3994 u32 val;
3995
3996 vlv_read_wm_values(dev_priv, wm);
3997
3998 for_each_intel_plane(dev, plane) {
3999 switch (plane->base.type) {
4000 int sprite;
4001 case DRM_PLANE_TYPE_CURSOR:
4002 plane->wm.fifo_size = 63;
4003 break;
4004 case DRM_PLANE_TYPE_PRIMARY:
4005 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, 0);
4006 break;
4007 case DRM_PLANE_TYPE_OVERLAY:
4008 sprite = plane->plane;
4009 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, sprite + 1);
4010 break;
4011 }
4012 }
4013
4014 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4015 wm->level = VLV_WM_LEVEL_PM2;
4016
4017 if (IS_CHERRYVIEW(dev_priv)) {
4018 mutex_lock(&dev_priv->rps.hw_lock);
4019
4020 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4021 if (val & DSP_MAXFIFO_PM5_ENABLE)
4022 wm->level = VLV_WM_LEVEL_PM5;
4023
Ville Syrjälä58590c12015-09-08 21:05:12 +03004024 /*
4025 * If DDR DVFS is disabled in the BIOS, Punit
4026 * will never ack the request. So if that happens
4027 * assume we don't have to enable/disable DDR DVFS
4028 * dynamically. To test that just set the REQ_ACK
4029 * bit to poke the Punit, but don't change the
4030 * HIGH/LOW bits so that we don't actually change
4031 * the current state.
4032 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004033 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004034 val |= FORCE_DDR_FREQ_REQ_ACK;
4035 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4036
4037 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4038 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4039 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4040 "assuming DDR DVFS is disabled\n");
4041 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4042 } else {
4043 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4044 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4045 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4046 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004047
4048 mutex_unlock(&dev_priv->rps.hw_lock);
4049 }
4050
4051 for_each_pipe(dev_priv, pipe)
4052 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
4053 pipe_name(pipe), wm->pipe[pipe].primary, wm->pipe[pipe].cursor,
4054 wm->pipe[pipe].sprite[0], wm->pipe[pipe].sprite[1]);
4055
4056 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4057 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4058}
4059
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004060void ilk_wm_get_hw_state(struct drm_device *dev)
4061{
4062 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02004063 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004064 struct drm_crtc *crtc;
4065
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004066 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004067 ilk_pipe_wm_get_hw_state(crtc);
4068
4069 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4070 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4071 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4072
4073 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004074 if (INTEL_INFO(dev)->gen >= 7) {
4075 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4076 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4077 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004078
Ville Syrjäläa42a5712014-01-07 16:14:08 +02004079 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004080 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4081 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
4082 else if (IS_IVYBRIDGE(dev))
4083 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4084 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004085
4086 hw->enable_fbc_wm =
4087 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4088}
4089
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004090/**
4091 * intel_update_watermarks - update FIFO watermark values based on current modes
4092 *
4093 * Calculate watermark values for the various WM regs based on current mode
4094 * and plane configuration.
4095 *
4096 * There are several cases to deal with here:
4097 * - normal (i.e. non-self-refresh)
4098 * - self-refresh (SR) mode
4099 * - lines are large relative to FIFO size (buffer can hold up to 2)
4100 * - lines are small relative to FIFO size (buffer can hold more than 2
4101 * lines), so need to account for TLB latency
4102 *
4103 * The normal calculation is:
4104 * watermark = dotclock * bytes per pixel * latency
4105 * where latency is platform & configuration dependent (we assume pessimal
4106 * values here).
4107 *
4108 * The SR calculation is:
4109 * watermark = (trunc(latency/line time)+1) * surface width *
4110 * bytes per pixel
4111 * where
4112 * line time = htotal / dotclock
4113 * surface width = hdisplay for normal plane and 64 for cursor
4114 * and latency is assumed to be high, as above.
4115 *
4116 * The final value programmed to the register should always be rounded up,
4117 * and include an extra 2 entries to account for clock crossings.
4118 *
4119 * We don't use the sprite, so we can ignore that. And on Crestline we have
4120 * to set the non-SR watermarks to 8.
4121 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004122void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004123{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004124 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004125
4126 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004127 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004128}
4129
Paulo Zanoni2791a162015-10-09 18:22:43 -03004130void intel_update_sprite_watermarks(struct drm_plane *plane,
4131 struct drm_crtc *crtc,
4132 uint32_t sprite_width,
4133 uint32_t sprite_height,
4134 int pixel_size,
4135 bool enabled, bool scaled)
4136{
4137 struct drm_i915_private *dev_priv = plane->dev->dev_private;
4138
4139 if (dev_priv->display.update_sprite_wm)
4140 dev_priv->display.update_sprite_wm(plane, crtc,
4141 sprite_width, sprite_height,
4142 pixel_size, enabled, scaled);
4143}
4144
Daniel Vetter92703882012-08-09 16:46:01 +02004145/**
4146 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004147 */
4148DEFINE_SPINLOCK(mchdev_lock);
4149
4150/* Global for IPS driver to get at the current i915 device. Protected by
4151 * mchdev_lock. */
4152static struct drm_i915_private *i915_mch_dev;
4153
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004154bool ironlake_set_drps(struct drm_device *dev, u8 val)
4155{
4156 struct drm_i915_private *dev_priv = dev->dev_private;
4157 u16 rgvswctl;
4158
Daniel Vetter92703882012-08-09 16:46:01 +02004159 assert_spin_locked(&mchdev_lock);
4160
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004161 rgvswctl = I915_READ16(MEMSWCTL);
4162 if (rgvswctl & MEMCTL_CMD_STS) {
4163 DRM_DEBUG("gpu busy, RCS change rejected\n");
4164 return false; /* still busy with another command */
4165 }
4166
4167 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4168 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4169 I915_WRITE16(MEMSWCTL, rgvswctl);
4170 POSTING_READ16(MEMSWCTL);
4171
4172 rgvswctl |= MEMCTL_CMD_STS;
4173 I915_WRITE16(MEMSWCTL, rgvswctl);
4174
4175 return true;
4176}
4177
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004178static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004179{
4180 struct drm_i915_private *dev_priv = dev->dev_private;
4181 u32 rgvmodectl = I915_READ(MEMMODECTL);
4182 u8 fmax, fmin, fstart, vstart;
4183
Daniel Vetter92703882012-08-09 16:46:01 +02004184 spin_lock_irq(&mchdev_lock);
4185
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004186 /* Enable temp reporting */
4187 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4188 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4189
4190 /* 100ms RC evaluation intervals */
4191 I915_WRITE(RCUPEI, 100000);
4192 I915_WRITE(RCDNEI, 100000);
4193
4194 /* Set max/min thresholds to 90ms and 80ms respectively */
4195 I915_WRITE(RCBMAXAVG, 90000);
4196 I915_WRITE(RCBMINAVG, 80000);
4197
4198 I915_WRITE(MEMIHYST, 1);
4199
4200 /* Set up min, max, and cur for interrupt handling */
4201 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4202 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4203 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4204 MEMMODE_FSTART_SHIFT;
4205
Ville Syrjälä616847e2015-09-18 20:03:19 +03004206 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004207 PXVFREQ_PX_SHIFT;
4208
Daniel Vetter20e4d402012-08-08 23:35:39 +02004209 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4210 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004211
Daniel Vetter20e4d402012-08-08 23:35:39 +02004212 dev_priv->ips.max_delay = fstart;
4213 dev_priv->ips.min_delay = fmin;
4214 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004215
4216 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4217 fmax, fmin, fstart);
4218
4219 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4220
4221 /*
4222 * Interrupts will be enabled in ironlake_irq_postinstall
4223 */
4224
4225 I915_WRITE(VIDSTART, vstart);
4226 POSTING_READ(VIDSTART);
4227
4228 rgvmodectl |= MEMMODE_SWMODE_EN;
4229 I915_WRITE(MEMMODECTL, rgvmodectl);
4230
Daniel Vetter92703882012-08-09 16:46:01 +02004231 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004232 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004233 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004234
4235 ironlake_set_drps(dev, fstart);
4236
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004237 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4238 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004239 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004240 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004241 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004242
4243 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004244}
4245
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004246static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004247{
4248 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02004249 u16 rgvswctl;
4250
4251 spin_lock_irq(&mchdev_lock);
4252
4253 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004254
4255 /* Ack interrupts, disable EFC interrupt */
4256 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4257 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4258 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4259 I915_WRITE(DEIIR, DE_PCU_EVENT);
4260 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4261
4262 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004263 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004264 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004265 rgvswctl |= MEMCTL_CMD_STS;
4266 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004267 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004268
Daniel Vetter92703882012-08-09 16:46:01 +02004269 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004270}
4271
Daniel Vetteracbe9472012-07-26 11:50:05 +02004272/* There's a funny hw issue where the hw returns all 0 when reading from
4273 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4274 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4275 * all limits and the gpu stuck at whatever frequency it is at atm).
4276 */
Akash Goel74ef1172015-03-06 11:07:19 +05304277static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004278{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004279 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004280
Daniel Vetter20b46e52012-07-26 11:16:14 +02004281 /* Only set the down limit when we've reached the lowest level to avoid
4282 * getting more interrupts, otherwise leave this clear. This prevents a
4283 * race in the hw when coming out of rc6: There's a tiny window where
4284 * the hw runs at the minimal clock before selecting the desired
4285 * frequency, if the down threshold expires in that window we will not
4286 * receive a down interrupt. */
Akash Goel74ef1172015-03-06 11:07:19 +05304287 if (IS_GEN9(dev_priv->dev)) {
4288 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4289 if (val <= dev_priv->rps.min_freq_softlimit)
4290 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4291 } else {
4292 limits = dev_priv->rps.max_freq_softlimit << 24;
4293 if (val <= dev_priv->rps.min_freq_softlimit)
4294 limits |= dev_priv->rps.min_freq_softlimit << 16;
4295 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004296
4297 return limits;
4298}
4299
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004300static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4301{
4302 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304303 u32 threshold_up = 0, threshold_down = 0; /* in % */
4304 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004305
4306 new_power = dev_priv->rps.power;
4307 switch (dev_priv->rps.power) {
4308 case LOW_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004309 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004310 new_power = BETWEEN;
4311 break;
4312
4313 case BETWEEN:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004314 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004315 new_power = LOW_POWER;
Ben Widawskyb39fb292014-03-19 18:31:11 -07004316 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004317 new_power = HIGH_POWER;
4318 break;
4319
4320 case HIGH_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004321 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 +01004322 new_power = BETWEEN;
4323 break;
4324 }
4325 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004326 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004327 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004328 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004329 new_power = HIGH_POWER;
4330 if (new_power == dev_priv->rps.power)
4331 return;
4332
4333 /* Note the units here are not exactly 1us, but 1280ns. */
4334 switch (new_power) {
4335 case LOW_POWER:
4336 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304337 ei_up = 16000;
4338 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004339
4340 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304341 ei_down = 32000;
4342 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004343 break;
4344
4345 case BETWEEN:
4346 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304347 ei_up = 13000;
4348 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004349
4350 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304351 ei_down = 32000;
4352 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004353 break;
4354
4355 case HIGH_POWER:
4356 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304357 ei_up = 10000;
4358 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004359
4360 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304361 ei_down = 32000;
4362 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004363 break;
4364 }
4365
Akash Goel8a586432015-03-06 11:07:18 +05304366 I915_WRITE(GEN6_RP_UP_EI,
4367 GT_INTERVAL_FROM_US(dev_priv, ei_up));
4368 I915_WRITE(GEN6_RP_UP_THRESHOLD,
4369 GT_INTERVAL_FROM_US(dev_priv, (ei_up * threshold_up / 100)));
4370
4371 I915_WRITE(GEN6_RP_DOWN_EI,
4372 GT_INTERVAL_FROM_US(dev_priv, ei_down));
4373 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
4374 GT_INTERVAL_FROM_US(dev_priv, (ei_down * threshold_down / 100)));
4375
4376 I915_WRITE(GEN6_RP_CONTROL,
4377 GEN6_RP_MEDIA_TURBO |
4378 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4379 GEN6_RP_MEDIA_IS_GFX |
4380 GEN6_RP_ENABLE |
4381 GEN6_RP_UP_BUSY_AVG |
4382 GEN6_RP_DOWN_IDLE_AVG);
4383
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004384 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004385 dev_priv->rps.up_threshold = threshold_up;
4386 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004387 dev_priv->rps.last_adj = 0;
4388}
4389
Chris Wilson2876ce72014-03-28 08:03:34 +00004390static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4391{
4392 u32 mask = 0;
4393
4394 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004395 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004396 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004397 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004398
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004399 mask &= dev_priv->pm_rps_events;
4400
Imre Deak59d02a12014-12-19 19:33:26 +02004401 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004402}
4403
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004404/* gen6_set_rps is called to update the frequency request, but should also be
4405 * called when the range (min_delay and max_delay) is modified so that we can
4406 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004407static void gen6_set_rps(struct drm_device *dev, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004408{
4409 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004410
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304411 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
4412 if (IS_BROXTON(dev) && (INTEL_REVID(dev) < BXT_REVID_B0))
4413 return;
4414
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004415 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004416 WARN_ON(val > dev_priv->rps.max_freq);
4417 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004418
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004419 /* min/max delay may still have been modified so be sure to
4420 * write the limits value.
4421 */
4422 if (val != dev_priv->rps.cur_freq) {
4423 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004424
Akash Goel57041952015-03-06 11:07:17 +05304425 if (IS_GEN9(dev))
4426 I915_WRITE(GEN6_RPNSWREQ,
4427 GEN9_FREQUENCY(val));
4428 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004429 I915_WRITE(GEN6_RPNSWREQ,
4430 HSW_FREQUENCY(val));
4431 else
4432 I915_WRITE(GEN6_RPNSWREQ,
4433 GEN6_FREQUENCY(val) |
4434 GEN6_OFFSET(0) |
4435 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004436 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004437
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004438 /* Make sure we continue to get interrupts
4439 * until we hit the minimum or maximum frequencies.
4440 */
Akash Goel74ef1172015-03-06 11:07:19 +05304441 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004442 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004443
Ben Widawskyd5570a72012-09-07 19:43:41 -07004444 POSTING_READ(GEN6_RPNSWREQ);
4445
Ben Widawskyb39fb292014-03-19 18:31:11 -07004446 dev_priv->rps.cur_freq = val;
Daniel Vetterbe2cde92012-08-30 13:26:48 +02004447 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004448}
4449
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004450static void valleyview_set_rps(struct drm_device *dev, u8 val)
4451{
4452 struct drm_i915_private *dev_priv = dev->dev_private;
4453
4454 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004455 WARN_ON(val > dev_priv->rps.max_freq);
4456 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004457
4458 if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1),
4459 "Odd GPU freq value\n"))
4460 val &= ~1;
4461
Deepak Scd25dd52015-07-10 18:31:40 +05304462 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4463
Chris Wilson8fb55192015-04-07 16:20:28 +01004464 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004465 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004466 if (!IS_CHERRYVIEW(dev_priv))
4467 gen6_set_rps_thresholds(dev_priv, val);
4468 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004469
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004470 dev_priv->rps.cur_freq = val;
4471 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4472}
4473
Deepak Sa7f6e232015-05-09 18:04:44 +05304474/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304475 *
4476 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304477 * 1. Forcewake Media well.
4478 * 2. Request idle freq.
4479 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304480*/
4481static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4482{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004483 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304484
Chris Wilsonaed242f2015-03-18 09:48:21 +00004485 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304486 return;
4487
Deepak Sa7f6e232015-05-09 18:04:44 +05304488 /* Wake up the media well, as that takes a lot less
4489 * power than the Render well. */
4490 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
4491 valleyview_set_rps(dev_priv->dev, val);
4492 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05304493}
4494
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004495void gen6_rps_busy(struct drm_i915_private *dev_priv)
4496{
4497 mutex_lock(&dev_priv->rps.hw_lock);
4498 if (dev_priv->rps.enabled) {
4499 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4500 gen6_rps_reset_ei(dev_priv);
4501 I915_WRITE(GEN6_PMINTRMSK,
4502 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
4503 }
4504 mutex_unlock(&dev_priv->rps.hw_lock);
4505}
4506
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004507void gen6_rps_idle(struct drm_i915_private *dev_priv)
4508{
Damien Lespiau691bb712013-12-12 14:36:36 +00004509 struct drm_device *dev = dev_priv->dev;
4510
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004511 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004512 if (dev_priv->rps.enabled) {
Ville Syrjälä21a11ff2015-01-27 16:36:15 +02004513 if (IS_VALLEYVIEW(dev))
Deepak S76c3552f2014-01-30 23:08:16 +05304514 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004515 else
Chris Wilsonaed242f2015-03-18 09:48:21 +00004516 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004517 dev_priv->rps.last_adj = 0;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004518 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004519 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004520 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004521
Chris Wilson8d3afd72015-05-21 21:01:47 +01004522 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004523 while (!list_empty(&dev_priv->rps.clients))
4524 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004525 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004526}
4527
Chris Wilson1854d5c2015-04-07 16:20:32 +01004528void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01004529 struct intel_rps_client *rps,
4530 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004531{
Chris Wilson8d3afd72015-05-21 21:01:47 +01004532 /* This is intentionally racy! We peek at the state here, then
4533 * validate inside the RPS worker.
4534 */
4535 if (!(dev_priv->mm.busy &&
4536 dev_priv->rps.enabled &&
4537 dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit))
4538 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004539
Chris Wilsone61b9952015-04-27 13:41:24 +01004540 /* Force a RPS boost (and don't count it against the client) if
4541 * the GPU is severely congested.
4542 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004543 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01004544 rps = NULL;
4545
Chris Wilson8d3afd72015-05-21 21:01:47 +01004546 spin_lock(&dev_priv->rps.client_lock);
4547 if (rps == NULL || list_empty(&rps->link)) {
4548 spin_lock_irq(&dev_priv->irq_lock);
4549 if (dev_priv->rps.interrupts_enabled) {
4550 dev_priv->rps.client_boost = true;
4551 queue_work(dev_priv->wq, &dev_priv->rps.work);
4552 }
4553 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004554
Chris Wilson2e1b8732015-04-27 13:41:22 +01004555 if (rps != NULL) {
4556 list_add(&rps->link, &dev_priv->rps.clients);
4557 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01004558 } else
4559 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01004560 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004561 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004562}
4563
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004564void intel_set_rps(struct drm_device *dev, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004565{
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004566 if (IS_VALLEYVIEW(dev))
4567 valleyview_set_rps(dev, val);
4568 else
4569 gen6_set_rps(dev, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004570}
4571
Zhe Wang20e49362014-11-04 17:07:05 +00004572static void gen9_disable_rps(struct drm_device *dev)
4573{
4574 struct drm_i915_private *dev_priv = dev->dev_private;
4575
4576 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004577 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004578}
4579
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004580static void gen6_disable_rps(struct drm_device *dev)
4581{
4582 struct drm_i915_private *dev_priv = dev->dev_private;
4583
4584 I915_WRITE(GEN6_RC_CONTROL, 0);
4585 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004586}
4587
Deepak S38807742014-05-23 21:00:15 +05304588static void cherryview_disable_rps(struct drm_device *dev)
4589{
4590 struct drm_i915_private *dev_priv = dev->dev_private;
4591
4592 I915_WRITE(GEN6_RC_CONTROL, 0);
4593}
4594
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004595static void valleyview_disable_rps(struct drm_device *dev)
4596{
4597 struct drm_i915_private *dev_priv = dev->dev_private;
4598
Deepak S98a2e5f2014-08-18 10:35:27 -07004599 /* we're doing forcewake before Disabling RC6,
4600 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02004601 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07004602
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004603 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004604
Mika Kuoppala59bad942015-01-16 11:34:40 +02004605 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004606}
4607
Ben Widawskydc39fff2013-10-18 12:32:07 -07004608static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
4609{
Imre Deak91ca6892014-04-14 20:24:25 +03004610 if (IS_VALLEYVIEW(dev)) {
4611 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
4612 mode = GEN6_RC_CTL_RC6_ENABLE;
4613 else
4614 mode = 0;
4615 }
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004616 if (HAS_RC6p(dev))
4617 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
4618 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
4619 (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
4620 (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
4621
4622 else
4623 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
4624 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off");
Ben Widawskydc39fff2013-10-18 12:32:07 -07004625}
4626
Imre Deake6069ca2014-04-18 16:01:02 +03004627static int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004628{
Daniel Vettere7d66d82015-06-15 23:23:54 +02004629 /* No RC6 before Ironlake and code is gone for ilk. */
4630 if (INTEL_INFO(dev)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03004631 return 0;
4632
Daniel Vetter456470e2012-08-08 23:35:40 +02004633 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03004634 if (enable_rc6 >= 0) {
4635 int mask;
4636
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004637 if (HAS_RC6p(dev))
Imre Deake6069ca2014-04-18 16:01:02 +03004638 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
4639 INTEL_RC6pp_ENABLE;
4640 else
4641 mask = INTEL_RC6_ENABLE;
4642
4643 if ((enable_rc6 & mask) != enable_rc6)
Daniel Vetter8dfd1f02014-08-04 11:15:56 +02004644 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
4645 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03004646
4647 return enable_rc6 & mask;
4648 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004649
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004650 if (IS_IVYBRIDGE(dev))
Ben Widawskycca84a12014-01-28 20:25:38 -08004651 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004652
4653 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004654}
4655
Imre Deake6069ca2014-04-18 16:01:02 +03004656int intel_enable_rc6(const struct drm_device *dev)
4657{
4658 return i915.enable_rc6;
4659}
4660
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004661static void gen6_init_rps_frequencies(struct drm_device *dev)
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004662{
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004663 struct drm_i915_private *dev_priv = dev->dev_private;
4664 uint32_t rp_state_cap;
4665 u32 ddcc_status = 0;
4666 int ret;
4667
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004668 /* All of these values are in units of 50MHz */
4669 dev_priv->rps.cur_freq = 0;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004670 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Bob Paauwe35040562015-06-25 14:54:07 -07004671 if (IS_BROXTON(dev)) {
4672 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
4673 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
4674 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4675 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
4676 } else {
4677 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
4678 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
4679 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4680 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
4681 }
4682
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004683 /* hw_max = RP0 until we check for overclocking */
4684 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
4685
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004686 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Akash Goelc5e06882015-06-29 14:50:19 +05304687 if (IS_HASWELL(dev) || IS_BROADWELL(dev) || IS_SKYLAKE(dev)) {
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004688 ret = sandybridge_pcode_read(dev_priv,
4689 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
4690 &ddcc_status);
4691 if (0 == ret)
4692 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08004693 clamp_t(u8,
4694 ((ddcc_status >> 8) & 0xff),
4695 dev_priv->rps.min_freq,
4696 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004697 }
4698
Akash Goelc5e06882015-06-29 14:50:19 +05304699 if (IS_SKYLAKE(dev)) {
4700 /* Store the frequency values in 16.66 MHZ units, which is
4701 the natural hardware unit for SKL */
4702 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
4703 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
4704 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
4705 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
4706 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
4707 }
4708
Chris Wilsonaed242f2015-03-18 09:48:21 +00004709 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4710
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004711 /* Preserve min/max settings in case of re-init */
4712 if (dev_priv->rps.max_freq_softlimit == 0)
4713 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4714
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004715 if (dev_priv->rps.min_freq_softlimit == 0) {
4716 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4717 dev_priv->rps.min_freq_softlimit =
Ville Syrjälä813b5e62015-03-25 19:27:16 +02004718 max_t(int, dev_priv->rps.efficient_freq,
4719 intel_freq_opcode(dev_priv, 450));
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004720 else
4721 dev_priv->rps.min_freq_softlimit =
4722 dev_priv->rps.min_freq;
4723 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004724}
4725
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004726/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Zhe Wang20e49362014-11-04 17:07:05 +00004727static void gen9_enable_rps(struct drm_device *dev)
4728{
4729 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004730
4731 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4732
Damien Lespiauba1c5542015-01-16 18:07:26 +00004733 gen6_init_rps_frequencies(dev);
4734
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304735 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
4736 if (IS_BROXTON(dev) && (INTEL_REVID(dev) < BXT_REVID_B0)) {
4737 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4738 return;
4739 }
4740
Akash Goel0beb0592015-03-06 11:07:20 +05304741 /* Program defaults and thresholds for RPS*/
4742 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4743 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004744
Akash Goel0beb0592015-03-06 11:07:20 +05304745 /* 1 second timeout*/
4746 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
4747 GT_INTERVAL_FROM_US(dev_priv, 1000000));
4748
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004749 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004750
Akash Goel0beb0592015-03-06 11:07:20 +05304751 /* Leaning on the below call to gen6_set_rps to program/setup the
4752 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
4753 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
4754 dev_priv->rps.power = HIGH_POWER; /* force a reset */
4755 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004756
4757 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4758}
4759
4760static void gen9_enable_rc6(struct drm_device *dev)
4761{
4762 struct drm_i915_private *dev_priv = dev->dev_private;
Zhe Wang20e49362014-11-04 17:07:05 +00004763 struct intel_engine_cs *ring;
4764 uint32_t rc6_mask = 0;
4765 int unused;
4766
4767 /* 1a: Software RC state - RC0 */
4768 I915_WRITE(GEN6_RC_STATE, 0);
4769
4770 /* 1b: Get forcewake during program sequence. Although the driver
4771 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004772 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004773
4774 /* 2a: Disable RC states. */
4775 I915_WRITE(GEN6_RC_CONTROL, 0);
4776
4777 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05304778
4779 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
4780 if (IS_SKYLAKE(dev) && !((IS_SKL_GT3(dev) || IS_SKL_GT4(dev)) &&
4781 (INTEL_REVID(dev) <= SKL_REVID_E0)))
4782 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
4783 else
4784 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00004785 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4786 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4787 for_each_ring(ring, dev_priv, unused)
4788 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05304789
4790 if (HAS_GUC_UCODE(dev))
4791 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
4792
Zhe Wang20e49362014-11-04 17:07:05 +00004793 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004794
Zhe Wang38c23522015-01-20 12:23:04 +00004795 /* 2c: Program Coarse Power Gating Policies. */
4796 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
4797 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
4798
Zhe Wang20e49362014-11-04 17:07:05 +00004799 /* 3a: Enable RC6 */
4800 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4801 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
4802 DRM_INFO("RC6 %s\n", (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4803 "on" : "off");
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05304804 /* WaRsUseTimeoutMode */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05304805 if ((IS_SKYLAKE(dev) && INTEL_REVID(dev) <= SKL_REVID_D0) ||
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05304806 (IS_BROXTON(dev) && INTEL_REVID(dev) <= BXT_REVID_A0)) {
4807 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05304808 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4809 GEN7_RC_CTL_TO_MODE |
4810 rc6_mask);
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05304811 } else {
4812 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05304813 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4814 GEN6_RC_CTL_EI_MODE(1) |
4815 rc6_mask);
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05304816 }
Zhe Wang20e49362014-11-04 17:07:05 +00004817
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304818 /*
4819 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05304820 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304821 */
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05304822 if ((IS_BROXTON(dev) && (INTEL_REVID(dev) < BXT_REVID_B0)) ||
4823 ((IS_SKL_GT3(dev) || IS_SKL_GT4(dev)) && (INTEL_REVID(dev) <= SKL_REVID_E0)))
4824 I915_WRITE(GEN9_PG_ENABLE, 0);
4825 else
4826 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4827 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004828
Mika Kuoppala59bad942015-01-16 11:34:40 +02004829 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004830
4831}
4832
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004833static void gen8_enable_rps(struct drm_device *dev)
4834{
4835 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004836 struct intel_engine_cs *ring;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004837 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004838 int unused;
4839
4840 /* 1a: Software RC state - RC0 */
4841 I915_WRITE(GEN6_RC_STATE, 0);
4842
4843 /* 1c & 1d: Get forcewake during program sequence. Although the driver
4844 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004845 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004846
4847 /* 2a: Disable RC states. */
4848 I915_WRITE(GEN6_RC_CONTROL, 0);
4849
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004850 /* Initialize rps frequencies */
4851 gen6_init_rps_frequencies(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004852
4853 /* 2b: Program RC6 thresholds.*/
4854 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
4855 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4856 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4857 for_each_ring(ring, dev_priv, unused)
4858 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4859 I915_WRITE(GEN6_RC_SLEEP, 0);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004860 if (IS_BROADWELL(dev))
4861 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
4862 else
4863 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004864
4865 /* 3: Enable RC6 */
4866 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4867 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Ben Widawskyabbf9d22014-01-28 20:25:41 -08004868 intel_print_rc6_info(dev, rc6_mask);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004869 if (IS_BROADWELL(dev))
4870 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4871 GEN7_RC_CTL_TO_MODE |
4872 rc6_mask);
4873 else
4874 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4875 GEN6_RC_CTL_EI_MODE(1) |
4876 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004877
4878 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07004879 I915_WRITE(GEN6_RPNSWREQ,
4880 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
4881 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4882 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02004883 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
4884 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004885
Daniel Vetter7526ed72014-09-29 15:07:19 +02004886 /* Docs recommend 900MHz, and 300 MHz respectively */
4887 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
4888 dev_priv->rps.max_freq_softlimit << 24 |
4889 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004890
Daniel Vetter7526ed72014-09-29 15:07:19 +02004891 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
4892 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
4893 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
4894 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004895
Daniel Vetter7526ed72014-09-29 15:07:19 +02004896 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004897
4898 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02004899 I915_WRITE(GEN6_RP_CONTROL,
4900 GEN6_RP_MEDIA_TURBO |
4901 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4902 GEN6_RP_MEDIA_IS_GFX |
4903 GEN6_RP_ENABLE |
4904 GEN6_RP_UP_BUSY_AVG |
4905 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004906
Daniel Vetter7526ed72014-09-29 15:07:19 +02004907 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004908
Tom O'Rourkec7f31532014-11-19 14:21:54 -08004909 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004910 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004911
Mika Kuoppala59bad942015-01-16 11:34:40 +02004912 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004913}
4914
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004915static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004916{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004917 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004918 struct intel_engine_cs *ring;
Ben Widawskyd060c162014-03-19 18:31:08 -07004919 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004920 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004921 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07004922 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004923
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004924 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004925
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004926 /* Here begins a magic sequence of register writes to enable
4927 * auto-downclocking.
4928 *
4929 * Perhaps there might be some value in exposing these to
4930 * userspace...
4931 */
4932 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004933
4934 /* Clear the DBG now so we don't confuse earlier errors */
4935 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
4936 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
4937 I915_WRITE(GTFIFODBG, gtfifodbg);
4938 }
4939
Mika Kuoppala59bad942015-01-16 11:34:40 +02004940 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004941
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004942 /* Initialize rps frequencies */
4943 gen6_init_rps_frequencies(dev);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004944
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004945 /* disable the counters and set deterministic thresholds */
4946 I915_WRITE(GEN6_RC_CONTROL, 0);
4947
4948 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
4949 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
4950 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
4951 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4952 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4953
Chris Wilsonb4519512012-05-11 14:29:30 +01004954 for_each_ring(ring, dev_priv, i)
4955 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004956
4957 I915_WRITE(GEN6_RC_SLEEP, 0);
4958 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Daniel Vetter29c78f62013-11-16 16:04:26 +01004959 if (IS_IVYBRIDGE(dev))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07004960 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
4961 else
4962 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08004963 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004964 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
4965
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004966 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004967 rc6_mode = intel_enable_rc6(dev_priv->dev);
4968 if (rc6_mode & INTEL_RC6_ENABLE)
4969 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
4970
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004971 /* We don't use those on Haswell */
4972 if (!IS_HASWELL(dev)) {
4973 if (rc6_mode & INTEL_RC6p_ENABLE)
4974 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004975
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004976 if (rc6_mode & INTEL_RC6pp_ENABLE)
4977 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
4978 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004979
Ben Widawskydc39fff2013-10-18 12:32:07 -07004980 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004981
4982 I915_WRITE(GEN6_RC_CONTROL,
4983 rc6_mask |
4984 GEN6_RC_CTL_EI_MODE(1) |
4985 GEN6_RC_CTL_HW_ENABLE);
4986
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004987 /* Power down if completely idle for over 50ms */
4988 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004989 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004990
Ben Widawsky42c05262012-09-26 10:34:00 -07004991 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawskyd060c162014-03-19 18:31:08 -07004992 if (ret)
Ben Widawsky42c05262012-09-26 10:34:00 -07004993 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Ben Widawskyd060c162014-03-19 18:31:08 -07004994
4995 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
4996 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
4997 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskyb39fb292014-03-19 18:31:11 -07004998 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
Ben Widawskyd060c162014-03-19 18:31:08 -07004999 (pcu_mbox & 0xff) * 50);
Ben Widawskyb39fb292014-03-19 18:31:11 -07005000 dev_priv->rps.max_freq = pcu_mbox & 0xff;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005001 }
5002
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005003 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00005004 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005005
Ben Widawsky31643d52012-09-26 10:34:01 -07005006 rc6vids = 0;
5007 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
5008 if (IS_GEN6(dev) && ret) {
5009 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
5010 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
5011 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5012 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5013 rc6vids &= 0xffff00;
5014 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5015 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5016 if (ret)
5017 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5018 }
5019
Mika Kuoppala59bad942015-01-16 11:34:40 +02005020 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005021}
5022
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005023static void __gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005024{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005025 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005026 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005027 unsigned int gpu_freq;
5028 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305029 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005030 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005031 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005032
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005033 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005034
Ben Widawskyeda79642013-10-07 17:15:48 -03005035 policy = cpufreq_cpu_get(0);
5036 if (policy) {
5037 max_ia_freq = policy->cpuinfo.max_freq;
5038 cpufreq_cpu_put(policy);
5039 } else {
5040 /*
5041 * Default to measured freq if none found, PCU will ensure we
5042 * don't go over
5043 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005044 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005045 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005046
5047 /* Convert from kHz to MHz */
5048 max_ia_freq /= 1000;
5049
Ben Widawsky153b4b952013-10-22 22:05:09 -07005050 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005051 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5052 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005053
Akash Goel4c8c7742015-06-29 14:50:20 +05305054 if (IS_SKYLAKE(dev)) {
5055 /* Convert GT frequency to 50 HZ units */
5056 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5057 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5058 } else {
5059 min_gpu_freq = dev_priv->rps.min_freq;
5060 max_gpu_freq = dev_priv->rps.max_freq;
5061 }
5062
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005063 /*
5064 * For each potential GPU frequency, load a ring frequency we'd like
5065 * to use for memory access. We do this by specifying the IA frequency
5066 * the PCU should use as a reference to determine the ring frequency.
5067 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305068 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5069 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005070 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005071
Akash Goel4c8c7742015-06-29 14:50:20 +05305072 if (IS_SKYLAKE(dev)) {
5073 /*
5074 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5075 * No floor required for ring frequency on SKL.
5076 */
5077 ring_freq = gpu_freq;
5078 } else if (INTEL_INFO(dev)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005079 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5080 ring_freq = max(min_ring_freq, gpu_freq);
5081 } else if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005082 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005083 ring_freq = max(min_ring_freq, ring_freq);
5084 /* leave ia_freq as the default, chosen by cpufreq */
5085 } else {
5086 /* On older processors, there is no separate ring
5087 * clock domain, so in order to boost the bandwidth
5088 * of the ring, we need to upclock the CPU (ia_freq).
5089 *
5090 * For GPU frequencies less than 750MHz,
5091 * just use the lowest ring freq.
5092 */
5093 if (gpu_freq < min_freq)
5094 ia_freq = 800;
5095 else
5096 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5097 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5098 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005099
Ben Widawsky42c05262012-09-26 10:34:00 -07005100 sandybridge_pcode_write(dev_priv,
5101 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005102 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5103 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5104 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005105 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005106}
5107
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005108void gen6_update_ring_freq(struct drm_device *dev)
5109{
5110 struct drm_i915_private *dev_priv = dev->dev_private;
5111
Akash Goel97d33082015-06-29 14:50:23 +05305112 if (!HAS_CORE_RING_FREQ(dev))
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005113 return;
5114
5115 mutex_lock(&dev_priv->rps.hw_lock);
5116 __gen6_update_ring_freq(dev);
5117 mutex_unlock(&dev_priv->rps.hw_lock);
5118}
5119
Ville Syrjälä03af2042014-06-28 02:03:53 +03005120static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305121{
Deepak S095acd52015-01-17 11:05:59 +05305122 struct drm_device *dev = dev_priv->dev;
Deepak S2b6b3a02014-05-27 15:59:30 +05305123 u32 val, rp0;
5124
Jani Nikula5b5929c2015-10-07 11:17:46 +03005125 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305126
Jani Nikula5b5929c2015-10-07 11:17:46 +03005127 switch (INTEL_INFO(dev)->eu_total) {
5128 case 8:
5129 /* (2 * 4) config */
5130 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5131 break;
5132 case 12:
5133 /* (2 * 6) config */
5134 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5135 break;
5136 case 16:
5137 /* (2 * 8) config */
5138 default:
5139 /* Setting (2 * 8) Min RP0 for any other combination */
5140 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5141 break;
Deepak S095acd52015-01-17 11:05:59 +05305142 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005143
5144 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5145
Deepak S2b6b3a02014-05-27 15:59:30 +05305146 return rp0;
5147}
5148
5149static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5150{
5151 u32 val, rpe;
5152
5153 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5154 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5155
5156 return rpe;
5157}
5158
Deepak S7707df42014-07-12 18:46:14 +05305159static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5160{
5161 u32 val, rp1;
5162
Jani Nikula5b5929c2015-10-07 11:17:46 +03005163 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5164 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5165
Deepak S7707df42014-07-12 18:46:14 +05305166 return rp1;
5167}
5168
Deepak Sf8f2b002014-07-10 13:16:21 +05305169static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5170{
5171 u32 val, rp1;
5172
5173 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5174
5175 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5176
5177 return rp1;
5178}
5179
Ville Syrjälä03af2042014-06-28 02:03:53 +03005180static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005181{
5182 u32 val, rp0;
5183
Jani Nikula64936252013-05-22 15:36:20 +03005184 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005185
5186 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5187 /* Clamp to max */
5188 rp0 = min_t(u32, rp0, 0xea);
5189
5190 return rp0;
5191}
5192
5193static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5194{
5195 u32 val, rpe;
5196
Jani Nikula64936252013-05-22 15:36:20 +03005197 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005198 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005199 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005200 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5201
5202 return rpe;
5203}
5204
Ville Syrjälä03af2042014-06-28 02:03:53 +03005205static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005206{
Jani Nikula64936252013-05-22 15:36:20 +03005207 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005208}
5209
Imre Deakae484342014-03-31 15:10:44 +03005210/* Check that the pctx buffer wasn't move under us. */
5211static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5212{
5213 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5214
5215 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5216 dev_priv->vlv_pctx->stolen->start);
5217}
5218
Deepak S38807742014-05-23 21:00:15 +05305219
5220/* Check that the pcbr address is not empty. */
5221static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5222{
5223 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5224
5225 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5226}
5227
5228static void cherryview_setup_pctx(struct drm_device *dev)
5229{
5230 struct drm_i915_private *dev_priv = dev->dev_private;
5231 unsigned long pctx_paddr, paddr;
5232 struct i915_gtt *gtt = &dev_priv->gtt;
5233 u32 pcbr;
5234 int pctx_size = 32*1024;
5235
5236 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5237
5238 pcbr = I915_READ(VLV_PCBR);
5239 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005240 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305241 paddr = (dev_priv->mm.stolen_base +
5242 (gtt->stolen_size - pctx_size));
5243
5244 pctx_paddr = (paddr & (~4095));
5245 I915_WRITE(VLV_PCBR, pctx_paddr);
5246 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005247
5248 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305249}
5250
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005251static void valleyview_setup_pctx(struct drm_device *dev)
5252{
5253 struct drm_i915_private *dev_priv = dev->dev_private;
5254 struct drm_i915_gem_object *pctx;
5255 unsigned long pctx_paddr;
5256 u32 pcbr;
5257 int pctx_size = 24*1024;
5258
Imre Deak17b0c1f2014-02-11 21:39:06 +02005259 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5260
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005261 pcbr = I915_READ(VLV_PCBR);
5262 if (pcbr) {
5263 /* BIOS set it up already, grab the pre-alloc'd space */
5264 int pcbr_offset;
5265
5266 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
5267 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
5268 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005269 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005270 pctx_size);
5271 goto out;
5272 }
5273
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005274 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5275
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005276 /*
5277 * From the Gunit register HAS:
5278 * The Gfx driver is expected to program this register and ensure
5279 * proper allocation within Gfx stolen memory. For example, this
5280 * register should be programmed such than the PCBR range does not
5281 * overlap with other ranges, such as the frame buffer, protected
5282 * memory, or any other relevant ranges.
5283 */
5284 pctx = i915_gem_object_create_stolen(dev, pctx_size);
5285 if (!pctx) {
5286 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
5287 return;
5288 }
5289
5290 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5291 I915_WRITE(VLV_PCBR, pctx_paddr);
5292
5293out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005294 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005295 dev_priv->vlv_pctx = pctx;
5296}
5297
Imre Deakae484342014-03-31 15:10:44 +03005298static void valleyview_cleanup_pctx(struct drm_device *dev)
5299{
5300 struct drm_i915_private *dev_priv = dev->dev_private;
5301
5302 if (WARN_ON(!dev_priv->vlv_pctx))
5303 return;
5304
5305 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
5306 dev_priv->vlv_pctx = NULL;
5307}
5308
Imre Deak4e805192014-04-14 20:24:41 +03005309static void valleyview_init_gt_powersave(struct drm_device *dev)
5310{
5311 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005312 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005313
5314 valleyview_setup_pctx(dev);
5315
5316 mutex_lock(&dev_priv->rps.hw_lock);
5317
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005318 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5319 switch ((val >> 6) & 3) {
5320 case 0:
5321 case 1:
5322 dev_priv->mem_freq = 800;
5323 break;
5324 case 2:
5325 dev_priv->mem_freq = 1066;
5326 break;
5327 case 3:
5328 dev_priv->mem_freq = 1333;
5329 break;
5330 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005331 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005332
Imre Deak4e805192014-04-14 20:24:41 +03005333 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5334 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5335 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005336 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005337 dev_priv->rps.max_freq);
5338
5339 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5340 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005341 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005342 dev_priv->rps.efficient_freq);
5343
Deepak Sf8f2b002014-07-10 13:16:21 +05305344 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5345 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005346 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305347 dev_priv->rps.rp1_freq);
5348
Imre Deak4e805192014-04-14 20:24:41 +03005349 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5350 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005351 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005352 dev_priv->rps.min_freq);
5353
Chris Wilsonaed242f2015-03-18 09:48:21 +00005354 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5355
Imre Deak4e805192014-04-14 20:24:41 +03005356 /* Preserve min/max settings in case of re-init */
5357 if (dev_priv->rps.max_freq_softlimit == 0)
5358 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5359
5360 if (dev_priv->rps.min_freq_softlimit == 0)
5361 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5362
5363 mutex_unlock(&dev_priv->rps.hw_lock);
5364}
5365
Deepak S38807742014-05-23 21:00:15 +05305366static void cherryview_init_gt_powersave(struct drm_device *dev)
5367{
Deepak S2b6b3a02014-05-27 15:59:30 +05305368 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005369 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305370
Deepak S38807742014-05-23 21:00:15 +05305371 cherryview_setup_pctx(dev);
Deepak S2b6b3a02014-05-27 15:59:30 +05305372
5373 mutex_lock(&dev_priv->rps.hw_lock);
5374
Ville Syrjäläa5805162015-05-26 20:42:30 +03005375 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005376 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005377 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005378
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005379 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005380 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005381 dev_priv->mem_freq = 2000;
5382 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03005383 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005384 dev_priv->mem_freq = 1600;
5385 break;
5386 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005387 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005388
Deepak S2b6b3a02014-05-27 15:59:30 +05305389 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5390 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5391 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005392 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305393 dev_priv->rps.max_freq);
5394
5395 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5396 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005397 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305398 dev_priv->rps.efficient_freq);
5399
Deepak S7707df42014-07-12 18:46:14 +05305400 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5401 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005402 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305403 dev_priv->rps.rp1_freq);
5404
Deepak S5b7c91b2015-05-09 18:15:46 +05305405 /* PUnit validated range is only [RPe, RP0] */
5406 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305407 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005408 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305409 dev_priv->rps.min_freq);
5410
Ville Syrjälä1c147622014-08-18 14:42:43 +03005411 WARN_ONCE((dev_priv->rps.max_freq |
5412 dev_priv->rps.efficient_freq |
5413 dev_priv->rps.rp1_freq |
5414 dev_priv->rps.min_freq) & 1,
5415 "Odd GPU freq values\n");
5416
Chris Wilsonaed242f2015-03-18 09:48:21 +00005417 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5418
Deepak S2b6b3a02014-05-27 15:59:30 +05305419 /* Preserve min/max settings in case of re-init */
5420 if (dev_priv->rps.max_freq_softlimit == 0)
5421 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5422
5423 if (dev_priv->rps.min_freq_softlimit == 0)
5424 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5425
5426 mutex_unlock(&dev_priv->rps.hw_lock);
Deepak S38807742014-05-23 21:00:15 +05305427}
5428
Imre Deak4e805192014-04-14 20:24:41 +03005429static void valleyview_cleanup_gt_powersave(struct drm_device *dev)
5430{
5431 valleyview_cleanup_pctx(dev);
5432}
5433
Deepak S38807742014-05-23 21:00:15 +05305434static void cherryview_enable_rps(struct drm_device *dev)
5435{
5436 struct drm_i915_private *dev_priv = dev->dev_private;
5437 struct intel_engine_cs *ring;
Deepak S2b6b3a02014-05-27 15:59:30 +05305438 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305439 int i;
5440
5441 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5442
5443 gtfifodbg = I915_READ(GTFIFODBG);
5444 if (gtfifodbg) {
5445 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5446 gtfifodbg);
5447 I915_WRITE(GTFIFODBG, gtfifodbg);
5448 }
5449
5450 cherryview_check_pctx(dev_priv);
5451
5452 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5453 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005454 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305455
Ville Syrjälä160614a2015-01-19 13:50:47 +02005456 /* Disable RC states. */
5457 I915_WRITE(GEN6_RC_CONTROL, 0);
5458
Deepak S38807742014-05-23 21:00:15 +05305459 /* 2a: Program RC6 thresholds.*/
5460 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5461 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5462 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5463
5464 for_each_ring(ring, dev_priv, i)
5465 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5466 I915_WRITE(GEN6_RC_SLEEP, 0);
5467
Deepak Sf4f71c72015-03-28 15:23:35 +05305468 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
5469 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05305470
5471 /* allows RC6 residency counter to work */
5472 I915_WRITE(VLV_COUNTER_CONTROL,
5473 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5474 VLV_MEDIA_RC6_COUNT_EN |
5475 VLV_RENDER_RC6_COUNT_EN));
5476
5477 /* For now we assume BIOS is allocating and populating the PCBR */
5478 pcbr = I915_READ(VLV_PCBR);
5479
Deepak S38807742014-05-23 21:00:15 +05305480 /* 3: Enable RC6 */
5481 if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) &&
5482 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005483 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305484
5485 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5486
Deepak S2b6b3a02014-05-27 15:59:30 +05305487 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005488 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305489 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5490 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5491 I915_WRITE(GEN6_RP_UP_EI, 66000);
5492 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5493
5494 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5495
5496 /* 5: Enable RPS */
5497 I915_WRITE(GEN6_RP_CONTROL,
5498 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005499 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305500 GEN6_RP_ENABLE |
5501 GEN6_RP_UP_BUSY_AVG |
5502 GEN6_RP_DOWN_IDLE_AVG);
5503
Deepak S3ef62342015-04-29 08:36:24 +05305504 /* Setting Fixed Bias */
5505 val = VLV_OVERRIDE_EN |
5506 VLV_SOC_TDP_EN |
5507 CHV_BIAS_CPU_50_SOC_50;
5508 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5509
Deepak S2b6b3a02014-05-27 15:59:30 +05305510 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5511
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005512 /* RPS code assumes GPLL is used */
5513 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5514
Jani Nikula742f4912015-09-03 11:16:09 +03005515 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05305516 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5517
5518 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
5519 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005520 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305521 dev_priv->rps.cur_freq);
5522
5523 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005524 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305525 dev_priv->rps.efficient_freq);
5526
5527 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
5528
Mika Kuoppala59bad942015-01-16 11:34:40 +02005529 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305530}
5531
Jesse Barnes0a073b82013-04-17 15:54:58 -07005532static void valleyview_enable_rps(struct drm_device *dev)
5533{
5534 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005535 struct intel_engine_cs *ring;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07005536 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005537 int i;
5538
5539 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5540
Imre Deakae484342014-03-31 15:10:44 +03005541 valleyview_check_pctx(dev_priv);
5542
Jesse Barnes0a073b82013-04-17 15:54:58 -07005543 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07005544 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5545 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005546 I915_WRITE(GTFIFODBG, gtfifodbg);
5547 }
5548
Deepak Sc8d9a592013-11-23 14:55:42 +05305549 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005550 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005551
Ville Syrjälä160614a2015-01-19 13:50:47 +02005552 /* Disable RC states. */
5553 I915_WRITE(GEN6_RC_CONTROL, 0);
5554
Ville Syrjäläcad725f2015-01-19 13:50:48 +02005555 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005556 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5557 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5558 I915_WRITE(GEN6_RP_UP_EI, 66000);
5559 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5560
5561 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5562
5563 I915_WRITE(GEN6_RP_CONTROL,
5564 GEN6_RP_MEDIA_TURBO |
5565 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5566 GEN6_RP_MEDIA_IS_GFX |
5567 GEN6_RP_ENABLE |
5568 GEN6_RP_UP_BUSY_AVG |
5569 GEN6_RP_DOWN_IDLE_CONT);
5570
5571 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
5572 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5573 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5574
5575 for_each_ring(ring, dev_priv, i)
5576 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5577
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08005578 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005579
5580 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07005581 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04005582 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
5583 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07005584 VLV_MEDIA_RC6_COUNT_EN |
5585 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04005586
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005587 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08005588 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07005589
5590 intel_print_rc6_info(dev, rc6_mode);
5591
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005592 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005593
Deepak S3ef62342015-04-29 08:36:24 +05305594 /* Setting Fixed Bias */
5595 val = VLV_OVERRIDE_EN |
5596 VLV_SOC_TDP_EN |
5597 VLV_BIAS_CPU_125_SOC_875;
5598 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5599
Jani Nikula64936252013-05-22 15:36:20 +03005600 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005601
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005602 /* RPS code assumes GPLL is used */
5603 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5604
Jani Nikula742f4912015-09-03 11:16:09 +03005605 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07005606 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5607
Ben Widawskyb39fb292014-03-19 18:31:11 -07005608 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03005609 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005610 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005611 dev_priv->rps.cur_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005612
Ville Syrjälä73008b92013-06-25 19:21:01 +03005613 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005614 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005615 dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005616
Ben Widawskyb39fb292014-03-19 18:31:11 -07005617 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005618
Mika Kuoppala59bad942015-01-16 11:34:40 +02005619 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005620}
5621
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005622static unsigned long intel_pxfreq(u32 vidfreq)
5623{
5624 unsigned long freq;
5625 int div = (vidfreq & 0x3f0000) >> 16;
5626 int post = (vidfreq & 0x3000) >> 12;
5627 int pre = (vidfreq & 0x7);
5628
5629 if (!pre)
5630 return 0;
5631
5632 freq = ((div * 133333) / ((1<<post) * pre));
5633
5634 return freq;
5635}
5636
Daniel Vettereb48eb02012-04-26 23:28:12 +02005637static const struct cparams {
5638 u16 i;
5639 u16 t;
5640 u16 m;
5641 u16 c;
5642} cparams[] = {
5643 { 1, 1333, 301, 28664 },
5644 { 1, 1066, 294, 24460 },
5645 { 1, 800, 294, 25192 },
5646 { 0, 1333, 276, 27605 },
5647 { 0, 1066, 276, 27605 },
5648 { 0, 800, 231, 23784 },
5649};
5650
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005651static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005652{
5653 u64 total_count, diff, ret;
5654 u32 count1, count2, count3, m = 0, c = 0;
5655 unsigned long now = jiffies_to_msecs(jiffies), diff1;
5656 int i;
5657
Daniel Vetter02d71952012-08-09 16:44:54 +02005658 assert_spin_locked(&mchdev_lock);
5659
Daniel Vetter20e4d402012-08-08 23:35:39 +02005660 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005661
5662 /* Prevent division-by-zero if we are asking too fast.
5663 * Also, we don't get interesting results if we are polling
5664 * faster than once in 10ms, so just return the saved value
5665 * in such cases.
5666 */
5667 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02005668 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005669
5670 count1 = I915_READ(DMIEC);
5671 count2 = I915_READ(DDREC);
5672 count3 = I915_READ(CSIEC);
5673
5674 total_count = count1 + count2 + count3;
5675
5676 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02005677 if (total_count < dev_priv->ips.last_count1) {
5678 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005679 diff += total_count;
5680 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005681 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005682 }
5683
5684 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005685 if (cparams[i].i == dev_priv->ips.c_m &&
5686 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02005687 m = cparams[i].m;
5688 c = cparams[i].c;
5689 break;
5690 }
5691 }
5692
5693 diff = div_u64(diff, diff1);
5694 ret = ((m * diff) + c);
5695 ret = div_u64(ret, 10);
5696
Daniel Vetter20e4d402012-08-08 23:35:39 +02005697 dev_priv->ips.last_count1 = total_count;
5698 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005699
Daniel Vetter20e4d402012-08-08 23:35:39 +02005700 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005701
5702 return ret;
5703}
5704
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005705unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
5706{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005707 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005708 unsigned long val;
5709
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005710 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005711 return 0;
5712
5713 spin_lock_irq(&mchdev_lock);
5714
5715 val = __i915_chipset_val(dev_priv);
5716
5717 spin_unlock_irq(&mchdev_lock);
5718
5719 return val;
5720}
5721
Daniel Vettereb48eb02012-04-26 23:28:12 +02005722unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
5723{
5724 unsigned long m, x, b;
5725 u32 tsfs;
5726
5727 tsfs = I915_READ(TSFS);
5728
5729 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
5730 x = I915_READ8(TR1);
5731
5732 b = tsfs & TSFS_INTR_MASK;
5733
5734 return ((m * x) / 127) - b;
5735}
5736
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005737static int _pxvid_to_vd(u8 pxvid)
5738{
5739 if (pxvid == 0)
5740 return 0;
5741
5742 if (pxvid >= 8 && pxvid < 31)
5743 pxvid = 31;
5744
5745 return (pxvid + 2) * 125;
5746}
5747
5748static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005749{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005750 struct drm_device *dev = dev_priv->dev;
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005751 const int vd = _pxvid_to_vd(pxvid);
5752 const int vm = vd - 1125;
5753
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005754 if (INTEL_INFO(dev)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005755 return vm > 0 ? vm : 0;
5756
5757 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005758}
5759
Daniel Vetter02d71952012-08-09 16:44:54 +02005760static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005761{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005762 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005763 u32 count;
5764
Daniel Vetter02d71952012-08-09 16:44:54 +02005765 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005766
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005767 now = ktime_get_raw_ns();
5768 diffms = now - dev_priv->ips.last_time2;
5769 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005770
5771 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02005772 if (!diffms)
5773 return;
5774
5775 count = I915_READ(GFXEC);
5776
Daniel Vetter20e4d402012-08-08 23:35:39 +02005777 if (count < dev_priv->ips.last_count2) {
5778 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005779 diff += count;
5780 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005781 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005782 }
5783
Daniel Vetter20e4d402012-08-08 23:35:39 +02005784 dev_priv->ips.last_count2 = count;
5785 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005786
5787 /* More magic constants... */
5788 diff = diff * 1181;
5789 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005790 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005791}
5792
Daniel Vetter02d71952012-08-09 16:44:54 +02005793void i915_update_gfx_val(struct drm_i915_private *dev_priv)
5794{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005795 struct drm_device *dev = dev_priv->dev;
5796
5797 if (INTEL_INFO(dev)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02005798 return;
5799
Daniel Vetter92703882012-08-09 16:46:01 +02005800 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005801
5802 __i915_update_gfx_val(dev_priv);
5803
Daniel Vetter92703882012-08-09 16:46:01 +02005804 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005805}
5806
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005807static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005808{
5809 unsigned long t, corr, state1, corr2, state2;
5810 u32 pxvid, ext_v;
5811
Daniel Vetter02d71952012-08-09 16:44:54 +02005812 assert_spin_locked(&mchdev_lock);
5813
Ville Syrjälä616847e2015-09-18 20:03:19 +03005814 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02005815 pxvid = (pxvid >> 24) & 0x7f;
5816 ext_v = pvid_to_extvid(dev_priv, pxvid);
5817
5818 state1 = ext_v;
5819
5820 t = i915_mch_val(dev_priv);
5821
5822 /* Revel in the empirically derived constants */
5823
5824 /* Correction factor in 1/100000 units */
5825 if (t > 80)
5826 corr = ((t * 2349) + 135940);
5827 else if (t >= 50)
5828 corr = ((t * 964) + 29317);
5829 else /* < 50 */
5830 corr = ((t * 301) + 1004);
5831
5832 corr = corr * ((150142 * state1) / 10000 - 78642);
5833 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02005834 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005835
5836 state2 = (corr2 * state1) / 10000;
5837 state2 /= 100; /* convert to mW */
5838
Daniel Vetter02d71952012-08-09 16:44:54 +02005839 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005840
Daniel Vetter20e4d402012-08-08 23:35:39 +02005841 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005842}
5843
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005844unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
5845{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005846 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005847 unsigned long val;
5848
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005849 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005850 return 0;
5851
5852 spin_lock_irq(&mchdev_lock);
5853
5854 val = __i915_gfx_val(dev_priv);
5855
5856 spin_unlock_irq(&mchdev_lock);
5857
5858 return val;
5859}
5860
Daniel Vettereb48eb02012-04-26 23:28:12 +02005861/**
5862 * i915_read_mch_val - return value for IPS use
5863 *
5864 * Calculate and return a value for the IPS driver to use when deciding whether
5865 * we have thermal and power headroom to increase CPU or GPU power budget.
5866 */
5867unsigned long i915_read_mch_val(void)
5868{
5869 struct drm_i915_private *dev_priv;
5870 unsigned long chipset_val, graphics_val, ret = 0;
5871
Daniel Vetter92703882012-08-09 16:46:01 +02005872 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005873 if (!i915_mch_dev)
5874 goto out_unlock;
5875 dev_priv = i915_mch_dev;
5876
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005877 chipset_val = __i915_chipset_val(dev_priv);
5878 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005879
5880 ret = chipset_val + graphics_val;
5881
5882out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005883 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005884
5885 return ret;
5886}
5887EXPORT_SYMBOL_GPL(i915_read_mch_val);
5888
5889/**
5890 * i915_gpu_raise - raise GPU frequency limit
5891 *
5892 * Raise the limit; IPS indicates we have thermal headroom.
5893 */
5894bool i915_gpu_raise(void)
5895{
5896 struct drm_i915_private *dev_priv;
5897 bool ret = true;
5898
Daniel Vetter92703882012-08-09 16:46:01 +02005899 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005900 if (!i915_mch_dev) {
5901 ret = false;
5902 goto out_unlock;
5903 }
5904 dev_priv = i915_mch_dev;
5905
Daniel Vetter20e4d402012-08-08 23:35:39 +02005906 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
5907 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005908
5909out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005910 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005911
5912 return ret;
5913}
5914EXPORT_SYMBOL_GPL(i915_gpu_raise);
5915
5916/**
5917 * i915_gpu_lower - lower GPU frequency limit
5918 *
5919 * IPS indicates we're close to a thermal limit, so throttle back the GPU
5920 * frequency maximum.
5921 */
5922bool i915_gpu_lower(void)
5923{
5924 struct drm_i915_private *dev_priv;
5925 bool ret = true;
5926
Daniel Vetter92703882012-08-09 16:46:01 +02005927 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005928 if (!i915_mch_dev) {
5929 ret = false;
5930 goto out_unlock;
5931 }
5932 dev_priv = i915_mch_dev;
5933
Daniel Vetter20e4d402012-08-08 23:35:39 +02005934 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
5935 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005936
5937out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005938 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005939
5940 return ret;
5941}
5942EXPORT_SYMBOL_GPL(i915_gpu_lower);
5943
5944/**
5945 * i915_gpu_busy - indicate GPU business to IPS
5946 *
5947 * Tell the IPS driver whether or not the GPU is busy.
5948 */
5949bool i915_gpu_busy(void)
5950{
5951 struct drm_i915_private *dev_priv;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005952 struct intel_engine_cs *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005953 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01005954 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005955
Daniel Vetter92703882012-08-09 16:46:01 +02005956 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005957 if (!i915_mch_dev)
5958 goto out_unlock;
5959 dev_priv = i915_mch_dev;
5960
Chris Wilsonf047e392012-07-21 12:31:41 +01005961 for_each_ring(ring, dev_priv, i)
5962 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005963
5964out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005965 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005966
5967 return ret;
5968}
5969EXPORT_SYMBOL_GPL(i915_gpu_busy);
5970
5971/**
5972 * i915_gpu_turbo_disable - disable graphics turbo
5973 *
5974 * Disable graphics turbo by resetting the max frequency and setting the
5975 * current frequency to the default.
5976 */
5977bool i915_gpu_turbo_disable(void)
5978{
5979 struct drm_i915_private *dev_priv;
5980 bool ret = true;
5981
Daniel Vetter92703882012-08-09 16:46:01 +02005982 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005983 if (!i915_mch_dev) {
5984 ret = false;
5985 goto out_unlock;
5986 }
5987 dev_priv = i915_mch_dev;
5988
Daniel Vetter20e4d402012-08-08 23:35:39 +02005989 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005990
Daniel Vetter20e4d402012-08-08 23:35:39 +02005991 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02005992 ret = false;
5993
5994out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005995 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005996
5997 return ret;
5998}
5999EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6000
6001/**
6002 * Tells the intel_ips driver that the i915 driver is now loaded, if
6003 * IPS got loaded first.
6004 *
6005 * This awkward dance is so that neither module has to depend on the
6006 * other in order for IPS to do the appropriate communication of
6007 * GPU turbo limits to i915.
6008 */
6009static void
6010ips_ping_for_i915_load(void)
6011{
6012 void (*link)(void);
6013
6014 link = symbol_get(ips_link_to_i915_driver);
6015 if (link) {
6016 link();
6017 symbol_put(ips_link_to_i915_driver);
6018 }
6019}
6020
6021void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6022{
Daniel Vetter02d71952012-08-09 16:44:54 +02006023 /* We only register the i915 ips part with intel-ips once everything is
6024 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006025 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006026 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006027 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006028
6029 ips_ping_for_i915_load();
6030}
6031
6032void intel_gpu_ips_teardown(void)
6033{
Daniel Vetter92703882012-08-09 16:46:01 +02006034 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006035 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006036 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006037}
Deepak S76c3552f2014-01-30 23:08:16 +05306038
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006039static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006040{
6041 struct drm_i915_private *dev_priv = dev->dev_private;
6042 u32 lcfuse;
6043 u8 pxw[16];
6044 int i;
6045
6046 /* Disable to program */
6047 I915_WRITE(ECR, 0);
6048 POSTING_READ(ECR);
6049
6050 /* Program energy weights for various events */
6051 I915_WRITE(SDEW, 0x15040d00);
6052 I915_WRITE(CSIEW0, 0x007f0000);
6053 I915_WRITE(CSIEW1, 0x1e220004);
6054 I915_WRITE(CSIEW2, 0x04000004);
6055
6056 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006057 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006058 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006059 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006060
6061 /* Program P-state weights to account for frequency power adjustment */
6062 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006063 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006064 unsigned long freq = intel_pxfreq(pxvidfreq);
6065 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6066 PXVFREQ_PX_SHIFT;
6067 unsigned long val;
6068
6069 val = vid * vid;
6070 val *= (freq / 1000);
6071 val *= 255;
6072 val /= (127*127*900);
6073 if (val > 0xff)
6074 DRM_ERROR("bad pxval: %ld\n", val);
6075 pxw[i] = val;
6076 }
6077 /* Render standby states get 0 weight */
6078 pxw[14] = 0;
6079 pxw[15] = 0;
6080
6081 for (i = 0; i < 4; i++) {
6082 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6083 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006084 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006085 }
6086
6087 /* Adjust magic regs to magic values (more experimental results) */
6088 I915_WRITE(OGW0, 0);
6089 I915_WRITE(OGW1, 0);
6090 I915_WRITE(EG0, 0x00007f00);
6091 I915_WRITE(EG1, 0x0000000e);
6092 I915_WRITE(EG2, 0x000e0000);
6093 I915_WRITE(EG3, 0x68000300);
6094 I915_WRITE(EG4, 0x42000000);
6095 I915_WRITE(EG5, 0x00140031);
6096 I915_WRITE(EG6, 0);
6097 I915_WRITE(EG7, 0);
6098
6099 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006100 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006101
6102 /* Enable PMON + select events */
6103 I915_WRITE(ECR, 0x80000019);
6104
6105 lcfuse = I915_READ(LCFUSE02);
6106
Daniel Vetter20e4d402012-08-08 23:35:39 +02006107 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006108}
6109
Imre Deakae484342014-03-31 15:10:44 +03006110void intel_init_gt_powersave(struct drm_device *dev)
6111{
Imre Deake6069ca2014-04-18 16:01:02 +03006112 i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6);
6113
Deepak S38807742014-05-23 21:00:15 +05306114 if (IS_CHERRYVIEW(dev))
6115 cherryview_init_gt_powersave(dev);
6116 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006117 valleyview_init_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006118}
6119
6120void intel_cleanup_gt_powersave(struct drm_device *dev)
6121{
Deepak S38807742014-05-23 21:00:15 +05306122 if (IS_CHERRYVIEW(dev))
6123 return;
6124 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006125 valleyview_cleanup_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006126}
6127
Imre Deakdbea3ce2014-12-15 18:59:28 +02006128static void gen6_suspend_rps(struct drm_device *dev)
6129{
6130 struct drm_i915_private *dev_priv = dev->dev_private;
6131
6132 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
6133
Akash Goel4c2a8892015-03-06 11:07:24 +05306134 gen6_disable_rps_interrupts(dev);
Imre Deakdbea3ce2014-12-15 18:59:28 +02006135}
6136
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006137/**
6138 * intel_suspend_gt_powersave - suspend PM work and helper threads
6139 * @dev: drm device
6140 *
6141 * We don't want to disable RC6 or other features here, we just want
6142 * to make sure any work we've queued has finished and won't bother
6143 * us while we're suspended.
6144 */
6145void intel_suspend_gt_powersave(struct drm_device *dev)
6146{
6147 struct drm_i915_private *dev_priv = dev->dev_private;
6148
Imre Deakd4d70aa2014-11-19 15:30:04 +02006149 if (INTEL_INFO(dev)->gen < 6)
6150 return;
6151
Imre Deakdbea3ce2014-12-15 18:59:28 +02006152 gen6_suspend_rps(dev);
Deepak Sb47adc12014-06-20 20:03:02 +05306153
6154 /* Force GPU to min freq during suspend */
6155 gen6_rps_idle(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006156}
6157
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006158void intel_disable_gt_powersave(struct drm_device *dev)
6159{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006160 struct drm_i915_private *dev_priv = dev->dev_private;
6161
Daniel Vetter930ebb42012-06-29 23:32:16 +02006162 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006163 ironlake_disable_drps(dev);
Deepak S38807742014-05-23 21:00:15 +05306164 } else if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter10d8d362014-06-12 17:48:52 +02006165 intel_suspend_gt_powersave(dev);
Imre Deake4948372014-05-12 18:35:04 +03006166
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006167 mutex_lock(&dev_priv->rps.hw_lock);
Zhe Wang20e49362014-11-04 17:07:05 +00006168 if (INTEL_INFO(dev)->gen >= 9)
6169 gen9_disable_rps(dev);
6170 else if (IS_CHERRYVIEW(dev))
Deepak S38807742014-05-23 21:00:15 +05306171 cherryview_disable_rps(dev);
6172 else if (IS_VALLEYVIEW(dev))
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006173 valleyview_disable_rps(dev);
6174 else
6175 gen6_disable_rps(dev);
Imre Deake5347702014-11-19 15:30:02 +02006176
Chris Wilsonc0951f02013-10-10 21:58:50 +01006177 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006178 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02006179 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006180}
6181
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006182static void intel_gen6_powersave_work(struct work_struct *work)
6183{
6184 struct drm_i915_private *dev_priv =
6185 container_of(work, struct drm_i915_private,
6186 rps.delayed_resume_work.work);
6187 struct drm_device *dev = dev_priv->dev;
6188
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006189 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006190
Akash Goel4c2a8892015-03-06 11:07:24 +05306191 gen6_reset_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006192
Deepak S38807742014-05-23 21:00:15 +05306193 if (IS_CHERRYVIEW(dev)) {
6194 cherryview_enable_rps(dev);
6195 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -07006196 valleyview_enable_rps(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006197 } else if (INTEL_INFO(dev)->gen >= 9) {
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006198 gen9_enable_rc6(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006199 gen9_enable_rps(dev);
Akash Goelcc017fb42015-06-29 14:50:21 +05306200 if (IS_SKYLAKE(dev))
6201 __gen6_update_ring_freq(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006202 } else if (IS_BROADWELL(dev)) {
6203 gen8_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006204 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006205 } else {
6206 gen6_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006207 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006208 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006209
6210 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6211 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6212
6213 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6214 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6215
Chris Wilsonc0951f02013-10-10 21:58:50 +01006216 dev_priv->rps.enabled = true;
Imre Deak3cc134e2014-11-19 15:30:03 +02006217
Akash Goel4c2a8892015-03-06 11:07:24 +05306218 gen6_enable_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006219
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006220 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deakc6df39b2014-04-14 20:24:29 +03006221
6222 intel_runtime_pm_put(dev_priv);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006223}
6224
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006225void intel_enable_gt_powersave(struct drm_device *dev)
6226{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006227 struct drm_i915_private *dev_priv = dev->dev_private;
6228
Yu Zhangf61018b2015-02-10 19:05:52 +08006229 /* Powersaving is controlled by the host when inside a VM */
6230 if (intel_vgpu_active(dev))
6231 return;
6232
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006233 if (IS_IRONLAKE_M(dev)) {
Imre Deakdc1d0132014-04-14 20:24:28 +03006234 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006235 ironlake_enable_drps(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006236 intel_init_emon(dev);
Imre Deakdc1d0132014-04-14 20:24:28 +03006237 mutex_unlock(&dev->struct_mutex);
Deepak S38807742014-05-23 21:00:15 +05306238 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006239 /*
6240 * PCU communication is slow and this doesn't need to be
6241 * done at any specific time, so do this out of our fast path
6242 * to make resume and init faster.
Imre Deakc6df39b2014-04-14 20:24:29 +03006243 *
6244 * We depend on the HW RC6 power context save/restore
6245 * mechanism when entering D3 through runtime PM suspend. So
6246 * disable RPM until RPS/RC6 is properly setup. We can only
6247 * get here via the driver load/system resume/runtime resume
6248 * paths, so the _noresume version is enough (and in case of
6249 * runtime resume it's necessary).
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006250 */
Imre Deakc6df39b2014-04-14 20:24:29 +03006251 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
6252 round_jiffies_up_relative(HZ)))
6253 intel_runtime_pm_get_noresume(dev_priv);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006254 }
6255}
6256
Imre Deakc6df39b2014-04-14 20:24:29 +03006257void intel_reset_gt_powersave(struct drm_device *dev)
6258{
6259 struct drm_i915_private *dev_priv = dev->dev_private;
6260
Imre Deakdbea3ce2014-12-15 18:59:28 +02006261 if (INTEL_INFO(dev)->gen < 6)
6262 return;
6263
6264 gen6_suspend_rps(dev);
Imre Deakc6df39b2014-04-14 20:24:29 +03006265 dev_priv->rps.enabled = false;
Imre Deakc6df39b2014-04-14 20:24:29 +03006266}
6267
Daniel Vetter3107bd42012-10-31 22:52:31 +01006268static void ibx_init_clock_gating(struct drm_device *dev)
6269{
6270 struct drm_i915_private *dev_priv = dev->dev_private;
6271
6272 /*
6273 * On Ibex Peak and Cougar Point, we need to disable clock
6274 * gating for the panel power sequencer or it will fail to
6275 * start up when no ports are active.
6276 */
6277 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6278}
6279
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006280static void g4x_disable_trickle_feed(struct drm_device *dev)
6281{
6282 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006283 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006284
Damien Lespiau055e3932014-08-18 13:49:10 +01006285 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006286 I915_WRITE(DSPCNTR(pipe),
6287 I915_READ(DSPCNTR(pipe)) |
6288 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006289
6290 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6291 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006292 }
6293}
6294
Ville Syrjälä017636c2013-12-05 15:51:37 +02006295static void ilk_init_lp_watermarks(struct drm_device *dev)
6296{
6297 struct drm_i915_private *dev_priv = dev->dev_private;
6298
6299 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6300 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6301 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6302
6303 /*
6304 * Don't touch WM1S_LP_EN here.
6305 * Doing so could cause underruns.
6306 */
6307}
6308
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006309static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006310{
6311 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006312 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006313
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006314 /*
6315 * Required for FBC
6316 * WaFbcDisableDpfcClockGating:ilk
6317 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006318 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6319 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6320 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006321
6322 I915_WRITE(PCH_3DCGDIS0,
6323 MARIUNIT_CLOCK_GATE_DISABLE |
6324 SVSMUNIT_CLOCK_GATE_DISABLE);
6325 I915_WRITE(PCH_3DCGDIS1,
6326 VFMUNIT_CLOCK_GATE_DISABLE);
6327
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006328 /*
6329 * According to the spec the following bits should be set in
6330 * order to enable memory self-refresh
6331 * The bit 22/21 of 0x42004
6332 * The bit 5 of 0x42020
6333 * The bit 15 of 0x45000
6334 */
6335 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6336 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6337 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006338 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006339 I915_WRITE(DISP_ARB_CTL,
6340 (I915_READ(DISP_ARB_CTL) |
6341 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006342
6343 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006344
6345 /*
6346 * Based on the document from hardware guys the following bits
6347 * should be set unconditionally in order to enable FBC.
6348 * The bit 22 of 0x42000
6349 * The bit 22 of 0x42004
6350 * The bit 7,8,9 of 0x42020.
6351 */
6352 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006353 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006354 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6355 I915_READ(ILK_DISPLAY_CHICKEN1) |
6356 ILK_FBCQ_DIS);
6357 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6358 I915_READ(ILK_DISPLAY_CHICKEN2) |
6359 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006360 }
6361
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006362 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6363
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006364 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6365 I915_READ(ILK_DISPLAY_CHICKEN2) |
6366 ILK_ELPIN_409_SELECT);
6367 I915_WRITE(_3D_CHICKEN2,
6368 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6369 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006370
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006371 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006372 I915_WRITE(CACHE_MODE_0,
6373 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006374
Akash Goel4e046322014-04-04 17:14:38 +05306375 /* WaDisable_RenderCache_OperationalFlush:ilk */
6376 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6377
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006378 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006379
Daniel Vetter3107bd42012-10-31 22:52:31 +01006380 ibx_init_clock_gating(dev);
6381}
6382
6383static void cpt_init_clock_gating(struct drm_device *dev)
6384{
6385 struct drm_i915_private *dev_priv = dev->dev_private;
6386 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006387 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006388
6389 /*
6390 * On Ibex Peak and Cougar Point, we need to disable clock
6391 * gating for the panel power sequencer or it will fail to
6392 * start up when no ports are active.
6393 */
Jesse Barnescd664072013-10-02 10:34:19 -07006394 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6395 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6396 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006397 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6398 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006399 /* The below fixes the weird display corruption, a few pixels shifted
6400 * downward, on (only) LVDS of some HP laptops with IVY.
6401 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006402 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006403 val = I915_READ(TRANS_CHICKEN2(pipe));
6404 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6405 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006406 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006407 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006408 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6409 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6410 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006411 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6412 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006413 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006414 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006415 I915_WRITE(TRANS_CHICKEN1(pipe),
6416 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6417 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006418}
6419
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006420static void gen6_check_mch_setup(struct drm_device *dev)
6421{
6422 struct drm_i915_private *dev_priv = dev->dev_private;
6423 uint32_t tmp;
6424
6425 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006426 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6427 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6428 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006429}
6430
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006431static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006432{
6433 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006434 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006435
Damien Lespiau231e54f2012-10-19 17:55:41 +01006436 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006437
6438 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6439 I915_READ(ILK_DISPLAY_CHICKEN2) |
6440 ILK_ELPIN_409_SELECT);
6441
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006442 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006443 I915_WRITE(_3D_CHICKEN,
6444 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6445
Akash Goel4e046322014-04-04 17:14:38 +05306446 /* WaDisable_RenderCache_OperationalFlush:snb */
6447 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6448
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006449 /*
6450 * BSpec recoomends 8x4 when MSAA is used,
6451 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006452 *
6453 * Note that PS/WM thread counts depend on the WIZ hashing
6454 * disable bit, which we don't touch here, but it's good
6455 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006456 */
6457 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006458 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006459
Ville Syrjälä017636c2013-12-05 15:51:37 +02006460 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006461
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006462 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006463 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006464
6465 I915_WRITE(GEN6_UCGCTL1,
6466 I915_READ(GEN6_UCGCTL1) |
6467 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6468 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6469
6470 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6471 * gating disable must be set. Failure to set it results in
6472 * flickering pixels due to Z write ordering failures after
6473 * some amount of runtime in the Mesa "fire" demo, and Unigine
6474 * Sanctuary and Tropics, and apparently anything else with
6475 * alpha test or pixel discard.
6476 *
6477 * According to the spec, bit 11 (RCCUNIT) must also be set,
6478 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006479 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006480 * WaDisableRCCUnitClockGating:snb
6481 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006482 */
6483 I915_WRITE(GEN6_UCGCTL2,
6484 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6485 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6486
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006487 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006488 I915_WRITE(_3D_CHICKEN3,
6489 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006490
6491 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006492 * Bspec says:
6493 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6494 * 3DSTATE_SF number of SF output attributes is more than 16."
6495 */
6496 I915_WRITE(_3D_CHICKEN3,
6497 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6498
6499 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006500 * According to the spec the following bits should be
6501 * set in order to enable memory self-refresh and fbc:
6502 * The bit21 and bit22 of 0x42000
6503 * The bit21 and bit22 of 0x42004
6504 * The bit5 and bit7 of 0x42020
6505 * The bit14 of 0x70180
6506 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006507 *
6508 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006509 */
6510 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6511 I915_READ(ILK_DISPLAY_CHICKEN1) |
6512 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6513 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6514 I915_READ(ILK_DISPLAY_CHICKEN2) |
6515 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006516 I915_WRITE(ILK_DSPCLK_GATE_D,
6517 I915_READ(ILK_DSPCLK_GATE_D) |
6518 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6519 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006520
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006521 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006522
Daniel Vetter3107bd42012-10-31 22:52:31 +01006523 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006524
6525 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006526}
6527
6528static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6529{
6530 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
6531
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006532 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006533 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006534 *
6535 * This actually overrides the dispatch
6536 * mode for all thread types.
6537 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006538 reg &= ~GEN7_FF_SCHED_MASK;
6539 reg |= GEN7_FF_TS_SCHED_HW;
6540 reg |= GEN7_FF_VS_SCHED_HW;
6541 reg |= GEN7_FF_DS_SCHED_HW;
6542
6543 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6544}
6545
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006546static void lpt_init_clock_gating(struct drm_device *dev)
6547{
6548 struct drm_i915_private *dev_priv = dev->dev_private;
6549
6550 /*
6551 * TODO: this bit should only be enabled when really needed, then
6552 * disabled when not needed anymore in order to save power.
6553 */
Ville Syrjäläc2699522015-08-27 23:55:59 +03006554 if (HAS_PCH_LPT_LP(dev))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006555 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6556 I915_READ(SOUTH_DSPCLK_GATE_D) |
6557 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006558
6559 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03006560 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
6561 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006562 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006563}
6564
Imre Deak7d708ee2013-04-17 14:04:50 +03006565static void lpt_suspend_hw(struct drm_device *dev)
6566{
6567 struct drm_i915_private *dev_priv = dev->dev_private;
6568
Ville Syrjäläc2699522015-08-27 23:55:59 +03006569 if (HAS_PCH_LPT_LP(dev)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03006570 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
6571
6572 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6573 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6574 }
6575}
6576
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006577static void broadwell_init_clock_gating(struct drm_device *dev)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006578{
6579 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00006580 enum pipe pipe;
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006581 uint32_t misccpctl;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006582
Ville Syrjälä7ad0dba2015-05-19 20:32:55 +03006583 ilk_init_lp_watermarks(dev);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006584
Ben Widawskyab57fff2013-12-12 15:28:04 -08006585 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006586 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006587
Ben Widawskyab57fff2013-12-12 15:28:04 -08006588 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006589 I915_WRITE(CHICKEN_PAR1_1,
6590 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6591
Ben Widawskyab57fff2013-12-12 15:28:04 -08006592 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006593 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006594 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006595 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006596 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006597 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006598
Ben Widawskyab57fff2013-12-12 15:28:04 -08006599 /* WaVSRefCountFullforceMissDisable:bdw */
6600 /* WaDSRefCountFullforceMissDisable:bdw */
6601 I915_WRITE(GEN7_FF_THREAD_MODE,
6602 I915_READ(GEN7_FF_THREAD_MODE) &
6603 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006604
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006605 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6606 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006607
6608 /* WaDisableSDEUnitClockGating:bdw */
6609 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6610 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006611
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006612 /*
6613 * WaProgramL3SqcReg1Default:bdw
6614 * WaTempDisableDOPClkGating:bdw
6615 */
6616 misccpctl = I915_READ(GEN7_MISCCPCTL);
6617 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6618 I915_WRITE(GEN8_L3SQCREG1, BDW_WA_L3SQCREG1_DEFAULT);
6619 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6620
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006621 /*
6622 * WaGttCachingOffByDefault:bdw
6623 * GTT cache may not work with big pages, so if those
6624 * are ever enabled GTT cache may need to be disabled.
6625 */
6626 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
6627
Paulo Zanoni89d6b2b2014-08-21 17:09:36 -03006628 lpt_init_clock_gating(dev);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006629}
6630
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006631static void haswell_init_clock_gating(struct drm_device *dev)
6632{
6633 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006634
Ville Syrjälä017636c2013-12-05 15:51:37 +02006635 ilk_init_lp_watermarks(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006636
Francisco Jerezf3fc4882013-10-02 15:53:16 -07006637 /* L3 caching of data atomics doesn't work -- disable it. */
6638 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6639 I915_WRITE(HSW_ROW_CHICKEN3,
6640 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6641
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006642 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006643 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6644 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6645 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6646
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02006647 /* WaVSRefCountFullforceMissDisable:hsw */
6648 I915_WRITE(GEN7_FF_THREAD_MODE,
6649 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006650
Akash Goel4e046322014-04-04 17:14:38 +05306651 /* WaDisable_RenderCache_OperationalFlush:hsw */
6652 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6653
Chia-I Wufe27c602014-01-28 13:29:33 +08006654 /* enable HiZ Raw Stall Optimization */
6655 I915_WRITE(CACHE_MODE_0_GEN7,
6656 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6657
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006658 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006659 I915_WRITE(CACHE_MODE_1,
6660 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006661
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006662 /*
6663 * BSpec recommends 8x4 when MSAA is used,
6664 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006665 *
6666 * Note that PS/WM thread counts depend on the WIZ hashing
6667 * disable bit, which we don't touch here, but it's good
6668 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006669 */
6670 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006671 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006672
Kenneth Graunke94411592014-12-31 16:23:00 -08006673 /* WaSampleCChickenBitEnable:hsw */
6674 I915_WRITE(HALF_SLICE_CHICKEN3,
6675 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
6676
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006677 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07006678 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
6679
Paulo Zanoni90a88642013-05-03 17:23:45 -03006680 /* WaRsPkgCStateDisplayPMReq:hsw */
6681 I915_WRITE(CHICKEN_PAR1_1,
6682 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006683
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006684 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006685}
6686
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006687static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006688{
6689 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07006690 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006691
Ville Syrjälä017636c2013-12-05 15:51:37 +02006692 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006693
Damien Lespiau231e54f2012-10-19 17:55:41 +01006694 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006695
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006696 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05006697 I915_WRITE(_3D_CHICKEN3,
6698 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6699
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006700 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006701 I915_WRITE(IVB_CHICKEN3,
6702 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6703 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6704
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006705 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07006706 if (IS_IVB_GT1(dev))
6707 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
6708 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006709
Akash Goel4e046322014-04-04 17:14:38 +05306710 /* WaDisable_RenderCache_OperationalFlush:ivb */
6711 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6712
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006713 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006714 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
6715 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
6716
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006717 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006718 I915_WRITE(GEN7_L3CNTLREG1,
6719 GEN7_WA_FOR_GEN7_L3_CONTROL);
6720 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07006721 GEN7_WA_L3_CHICKEN_MODE);
6722 if (IS_IVB_GT1(dev))
6723 I915_WRITE(GEN7_ROW_CHICKEN2,
6724 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006725 else {
6726 /* must write both registers */
6727 I915_WRITE(GEN7_ROW_CHICKEN2,
6728 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07006729 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
6730 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006731 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006732
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006733 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05006734 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6735 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6736
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02006737 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006738 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006739 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006740 */
6741 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02006742 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006743
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006744 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006745 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6746 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6747 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6748
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006749 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006750
6751 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02006752
Chris Wilson22721342014-03-04 09:41:43 +00006753 if (0) { /* causes HiZ corruption on ivb:gt1 */
6754 /* enable HiZ Raw Stall Optimization */
6755 I915_WRITE(CACHE_MODE_0_GEN7,
6756 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6757 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08006758
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006759 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02006760 I915_WRITE(CACHE_MODE_1,
6761 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07006762
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006763 /*
6764 * BSpec recommends 8x4 when MSAA is used,
6765 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006766 *
6767 * Note that PS/WM thread counts depend on the WIZ hashing
6768 * disable bit, which we don't touch here, but it's good
6769 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006770 */
6771 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006772 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006773
Ben Widawsky20848222012-05-04 18:58:59 -07006774 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
6775 snpcr &= ~GEN6_MBC_SNPCR_MASK;
6776 snpcr |= GEN6_MBC_SNPCR_MED;
6777 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006778
Ben Widawskyab5c6082013-04-05 13:12:41 -07006779 if (!HAS_PCH_NOP(dev))
6780 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006781
6782 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006783}
6784
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006785static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv)
6786{
6787 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6788
6789 /*
6790 * Disable trickle feed and enable pnd deadline calculation
6791 */
6792 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
6793 I915_WRITE(CBR1_VLV, 0);
6794}
6795
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006796static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006797{
6798 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006799
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006800 vlv_init_display_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006801
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006802 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05006803 I915_WRITE(_3D_CHICKEN3,
6804 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6805
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006806 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006807 I915_WRITE(IVB_CHICKEN3,
6808 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6809 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6810
Ville Syrjäläfad7d362014-01-22 21:32:39 +02006811 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006812 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07006813 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08006814 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
6815 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006816
Akash Goel4e046322014-04-04 17:14:38 +05306817 /* WaDisable_RenderCache_OperationalFlush:vlv */
6818 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6819
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006820 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05006821 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6822 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6823
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006824 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07006825 I915_WRITE(GEN7_ROW_CHICKEN2,
6826 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
6827
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006828 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006829 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6830 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6831 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6832
Ville Syrjälä46680e02014-01-22 21:33:01 +02006833 gen7_setup_fixed_func_scheduler(dev_priv);
6834
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006835 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006836 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006837 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006838 */
6839 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006840 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006841
Akash Goelc98f5062014-03-24 23:00:07 +05306842 /* WaDisableL3Bank2xClockGate:vlv
6843 * Disabling L3 clock gating- MMIO 940c[25] = 1
6844 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
6845 I915_WRITE(GEN7_UCGCTL4,
6846 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07006847
Ville Syrjäläafd58e72014-01-22 21:33:03 +02006848 /*
6849 * BSpec says this must be set, even though
6850 * WaDisable4x2SubspanOptimization isn't listed for VLV.
6851 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02006852 I915_WRITE(CACHE_MODE_1,
6853 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07006854
6855 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02006856 * BSpec recommends 8x4 when MSAA is used,
6857 * however in practice 16x4 seems fastest.
6858 *
6859 * Note that PS/WM thread counts depend on the WIZ hashing
6860 * disable bit, which we don't touch here, but it's good
6861 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
6862 */
6863 I915_WRITE(GEN7_GT_MODE,
6864 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
6865
6866 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02006867 * WaIncreaseL3CreditsForVLVB0:vlv
6868 * This is the hardware default actually.
6869 */
6870 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
6871
6872 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006873 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07006874 * Disable clock gating on th GCFG unit to prevent a delay
6875 * in the reporting of vblank events.
6876 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02006877 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006878}
6879
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006880static void cherryview_init_clock_gating(struct drm_device *dev)
6881{
6882 struct drm_i915_private *dev_priv = dev->dev_private;
6883
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006884 vlv_init_display_clock_gating(dev_priv);
Ville Syrjälädd811e72014-04-09 13:28:33 +03006885
Ville Syrjälä232ce332014-04-09 13:28:35 +03006886 /* WaVSRefCountFullforceMissDisable:chv */
6887 /* WaDSRefCountFullforceMissDisable:chv */
6888 I915_WRITE(GEN7_FF_THREAD_MODE,
6889 I915_READ(GEN7_FF_THREAD_MODE) &
6890 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03006891
6892 /* WaDisableSemaphoreAndSyncFlipWait:chv */
6893 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6894 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03006895
6896 /* WaDisableCSUnitClockGating:chv */
6897 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
6898 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03006899
6900 /* WaDisableSDEUnitClockGating:chv */
6901 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6902 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006903
6904 /*
6905 * GTT cache may not work with big pages, so if those
6906 * are ever enabled GTT cache may need to be disabled.
6907 */
6908 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006909}
6910
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006911static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006912{
6913 struct drm_i915_private *dev_priv = dev->dev_private;
6914 uint32_t dspclk_gate;
6915
6916 I915_WRITE(RENCLK_GATE_D1, 0);
6917 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6918 GS_UNIT_CLOCK_GATE_DISABLE |
6919 CL_UNIT_CLOCK_GATE_DISABLE);
6920 I915_WRITE(RAMCLK_GATE_D, 0);
6921 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6922 OVRUNIT_CLOCK_GATE_DISABLE |
6923 OVCUNIT_CLOCK_GATE_DISABLE;
6924 if (IS_GM45(dev))
6925 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
6926 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02006927
6928 /* WaDisableRenderCachePipelinedFlush */
6929 I915_WRITE(CACHE_MODE_0,
6930 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03006931
Akash Goel4e046322014-04-04 17:14:38 +05306932 /* WaDisable_RenderCache_OperationalFlush:g4x */
6933 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6934
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006935 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006936}
6937
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006938static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006939{
6940 struct drm_i915_private *dev_priv = dev->dev_private;
6941
6942 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
6943 I915_WRITE(RENCLK_GATE_D2, 0);
6944 I915_WRITE(DSPCLK_GATE_D, 0);
6945 I915_WRITE(RAMCLK_GATE_D, 0);
6946 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006947 I915_WRITE(MI_ARB_STATE,
6948 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306949
6950 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6951 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006952}
6953
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006954static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006955{
6956 struct drm_i915_private *dev_priv = dev->dev_private;
6957
6958 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
6959 I965_RCC_CLOCK_GATE_DISABLE |
6960 I965_RCPB_CLOCK_GATE_DISABLE |
6961 I965_ISC_CLOCK_GATE_DISABLE |
6962 I965_FBC_CLOCK_GATE_DISABLE);
6963 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006964 I915_WRITE(MI_ARB_STATE,
6965 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306966
6967 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6968 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006969}
6970
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006971static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006972{
6973 struct drm_i915_private *dev_priv = dev->dev_private;
6974 u32 dstate = I915_READ(D_STATE);
6975
6976 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
6977 DSTATE_DOT_CLOCK_GATING;
6978 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01006979
6980 if (IS_PINEVIEW(dev))
6981 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02006982
6983 /* IIR "flip pending" means done if this bit is set */
6984 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02006985
6986 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02006987 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02006988
6989 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
6990 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03006991
6992 I915_WRITE(MI_ARB_STATE,
6993 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006994}
6995
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006996static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006997{
6998 struct drm_i915_private *dev_priv = dev->dev_private;
6999
7000 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007001
7002 /* interrupts should cause a wake up from C3 */
7003 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7004 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007005
7006 I915_WRITE(MEM_MODE,
7007 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007008}
7009
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007010static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007011{
7012 struct drm_i915_private *dev_priv = dev->dev_private;
7013
7014 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03007015
7016 I915_WRITE(MEM_MODE,
7017 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7018 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007019}
7020
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007021void intel_init_clock_gating(struct drm_device *dev)
7022{
7023 struct drm_i915_private *dev_priv = dev->dev_private;
7024
Damien Lespiauc57e3552015-02-09 19:33:05 +00007025 if (dev_priv->display.init_clock_gating)
7026 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007027}
7028
Imre Deak7d708ee2013-04-17 14:04:50 +03007029void intel_suspend_hw(struct drm_device *dev)
7030{
7031 if (HAS_PCH_LPT(dev))
7032 lpt_suspend_hw(dev);
7033}
7034
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007035/* Set up chip specific power management-related functions */
7036void intel_init_pm(struct drm_device *dev)
7037{
7038 struct drm_i915_private *dev_priv = dev->dev_private;
7039
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007040 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007041
Daniel Vetterc921aba2012-04-26 23:28:17 +02007042 /* For cxsr */
7043 if (IS_PINEVIEW(dev))
7044 i915_pineview_get_mem_freq(dev);
7045 else if (IS_GEN5(dev))
7046 i915_ironlake_get_mem_freq(dev);
7047
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007048 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00007049 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00007050 skl_setup_wm_latency(dev);
7051
Imre Deaka82abe42015-03-27 14:00:04 +02007052 if (IS_BROXTON(dev))
7053 dev_priv->display.init_clock_gating =
7054 bxt_init_clock_gating;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00007055 dev_priv->display.update_wm = skl_update_wm;
Paulo Zanoni2791a162015-10-09 18:22:43 -03007056 dev_priv->display.update_sprite_wm = skl_update_sprite_wm;
Damien Lespiauc83155a2014-03-28 00:18:35 +05307057 } else if (HAS_PCH_SPLIT(dev)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00007058 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007059
Ville Syrjäläbd602542014-01-07 16:14:10 +02007060 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
7061 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
7062 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
7063 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
7064 dev_priv->display.update_wm = ilk_update_wm;
Paulo Zanoni2791a162015-10-09 18:22:43 -03007065 dev_priv->display.update_sprite_wm = ilk_update_sprite_wm;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007066 } else {
7067 DRM_DEBUG_KMS("Failed to read display plane latency. "
7068 "Disable CxSR\n");
7069 }
7070
7071 if (IS_GEN5(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007072 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007073 else if (IS_GEN6(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007074 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007075 else if (IS_IVYBRIDGE(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007076 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007077 else if (IS_HASWELL(dev))
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007078 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007079 else if (INTEL_INFO(dev)->gen == 8)
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03007080 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007081 } else if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03007082 vlv_setup_wm_latency(dev);
7083
7084 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007085 dev_priv->display.init_clock_gating =
7086 cherryview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007087 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007088 vlv_setup_wm_latency(dev);
7089
7090 dev_priv->display.update_wm = vlv_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007091 dev_priv->display.init_clock_gating =
7092 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007093 } else if (IS_PINEVIEW(dev)) {
7094 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
7095 dev_priv->is_ddr3,
7096 dev_priv->fsb_freq,
7097 dev_priv->mem_freq)) {
7098 DRM_INFO("failed to find known CxSR latency "
7099 "(found ddr%s fsb freq %d, mem freq %d), "
7100 "disabling CxSR\n",
7101 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7102 dev_priv->fsb_freq, dev_priv->mem_freq);
7103 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007104 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007105 dev_priv->display.update_wm = NULL;
7106 } else
7107 dev_priv->display.update_wm = pineview_update_wm;
7108 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7109 } else if (IS_G4X(dev)) {
7110 dev_priv->display.update_wm = g4x_update_wm;
7111 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
7112 } else if (IS_GEN4(dev)) {
7113 dev_priv->display.update_wm = i965_update_wm;
7114 if (IS_CRESTLINE(dev))
7115 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
7116 else if (IS_BROADWATER(dev))
7117 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7118 } else if (IS_GEN3(dev)) {
7119 dev_priv->display.update_wm = i9xx_update_wm;
7120 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
7121 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007122 } else if (IS_GEN2(dev)) {
7123 if (INTEL_INFO(dev)->num_pipes == 1) {
7124 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007125 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007126 } else {
7127 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007128 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007129 }
7130
7131 if (IS_I85X(dev) || IS_I865G(dev))
7132 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7133 else
7134 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7135 } else {
7136 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007137 }
7138}
7139
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007140int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007141{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007142 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007143
7144 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7145 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7146 return -EAGAIN;
7147 }
7148
7149 I915_WRITE(GEN6_PCODE_DATA, *val);
Damien Lespiaudddab342014-11-13 17:51:50 +00007150 I915_WRITE(GEN6_PCODE_DATA1, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007151 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7152
7153 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7154 500)) {
7155 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7156 return -ETIMEDOUT;
7157 }
7158
7159 *val = I915_READ(GEN6_PCODE_DATA);
7160 I915_WRITE(GEN6_PCODE_DATA, 0);
7161
7162 return 0;
7163}
7164
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007165int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007166{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007167 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007168
7169 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7170 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7171 return -EAGAIN;
7172 }
7173
7174 I915_WRITE(GEN6_PCODE_DATA, val);
7175 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7176
7177 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7178 500)) {
7179 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7180 return -ETIMEDOUT;
7181 }
7182
7183 I915_WRITE(GEN6_PCODE_DATA, 0);
7184
7185 return 0;
7186}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007187
Ville Syrjälädd06f882014-11-10 22:55:12 +02007188static int vlv_gpu_freq_div(unsigned int czclk_freq)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007189{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007190 switch (czclk_freq) {
7191 case 200:
7192 return 10;
7193 case 267:
7194 return 12;
7195 case 320:
7196 case 333:
Ville Syrjälädd06f882014-11-10 22:55:12 +02007197 return 16;
Ville Syrjäläab3fb152014-11-10 22:55:15 +02007198 case 400:
7199 return 20;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007200 default:
7201 return -1;
7202 }
Ville Syrjälädd06f882014-11-10 22:55:12 +02007203}
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007204
Ville Syrjälädd06f882014-11-10 22:55:12 +02007205static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7206{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007207 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Ville Syrjälädd06f882014-11-10 22:55:12 +02007208
7209 div = vlv_gpu_freq_div(czclk_freq);
7210 if (div < 0)
7211 return div;
7212
7213 return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007214}
7215
Fengguang Wub55dd642014-07-12 11:21:39 +02007216static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007217{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007218 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007219
Ville Syrjälädd06f882014-11-10 22:55:12 +02007220 mul = vlv_gpu_freq_div(czclk_freq);
7221 if (mul < 0)
7222 return mul;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007223
Ville Syrjälädd06f882014-11-10 22:55:12 +02007224 return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007225}
7226
Fengguang Wub55dd642014-07-12 11:21:39 +02007227static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307228{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007229 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307230
Ville Syrjälädd06f882014-11-10 22:55:12 +02007231 div = vlv_gpu_freq_div(czclk_freq) / 2;
7232 if (div < 0)
7233 return div;
Deepak S22b1b2f2014-07-12 14:54:33 +05307234
Ville Syrjälädd06f882014-11-10 22:55:12 +02007235 return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307236}
7237
Fengguang Wub55dd642014-07-12 11:21:39 +02007238static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307239{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007240 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307241
Ville Syrjälädd06f882014-11-10 22:55:12 +02007242 mul = vlv_gpu_freq_div(czclk_freq) / 2;
7243 if (mul < 0)
7244 return mul;
Deepak S22b1b2f2014-07-12 14:54:33 +05307245
Ville Syrjälä1c147622014-08-18 14:42:43 +03007246 /* CHV needs even values */
Ville Syrjälädd06f882014-11-10 22:55:12 +02007247 return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307248}
7249
Ville Syrjälä616bc822015-01-23 21:04:25 +02007250int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7251{
Akash Goel80b6dda2015-03-06 11:07:15 +05307252 if (IS_GEN9(dev_priv->dev))
7253 return (val * GT_FREQUENCY_MULTIPLIER) / GEN9_FREQ_SCALER;
7254 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007255 return chv_gpu_freq(dev_priv, val);
7256 else if (IS_VALLEYVIEW(dev_priv->dev))
7257 return byt_gpu_freq(dev_priv, val);
7258 else
7259 return val * GT_FREQUENCY_MULTIPLIER;
7260}
7261
Ville Syrjälä616bc822015-01-23 21:04:25 +02007262int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7263{
Akash Goel80b6dda2015-03-06 11:07:15 +05307264 if (IS_GEN9(dev_priv->dev))
7265 return (val * GEN9_FREQ_SCALER) / GT_FREQUENCY_MULTIPLIER;
7266 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007267 return chv_freq_opcode(dev_priv, val);
Deepak S22b1b2f2014-07-12 14:54:33 +05307268 else if (IS_VALLEYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007269 return byt_freq_opcode(dev_priv, val);
7270 else
7271 return val / GT_FREQUENCY_MULTIPLIER;
Deepak S22b1b2f2014-07-12 14:54:33 +05307272}
7273
Chris Wilson6ad790c2015-04-07 16:20:31 +01007274struct request_boost {
7275 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02007276 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007277};
7278
7279static void __intel_rps_boost_work(struct work_struct *work)
7280{
7281 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01007282 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007283
Chris Wilsone61b9952015-04-27 13:41:24 +01007284 if (!i915_gem_request_completed(req, true))
7285 gen6_rps_boost(to_i915(req->ring->dev), NULL,
7286 req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007287
Chris Wilsone61b9952015-04-27 13:41:24 +01007288 i915_gem_request_unreference__unlocked(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007289 kfree(boost);
7290}
7291
7292void intel_queue_rps_boost_for_request(struct drm_device *dev,
Daniel Vettereed29a52015-05-21 14:21:25 +02007293 struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007294{
7295 struct request_boost *boost;
7296
Daniel Vettereed29a52015-05-21 14:21:25 +02007297 if (req == NULL || INTEL_INFO(dev)->gen < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007298 return;
7299
Chris Wilsone61b9952015-04-27 13:41:24 +01007300 if (i915_gem_request_completed(req, true))
7301 return;
7302
Chris Wilson6ad790c2015-04-07 16:20:31 +01007303 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
7304 if (boost == NULL)
7305 return;
7306
Daniel Vettereed29a52015-05-21 14:21:25 +02007307 i915_gem_request_reference(req);
7308 boost->req = req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007309
7310 INIT_WORK(&boost->work, __intel_rps_boost_work);
7311 queue_work(to_i915(dev)->wq, &boost->work);
7312}
7313
Daniel Vetterf742a552013-12-06 10:17:53 +01007314void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01007315{
7316 struct drm_i915_private *dev_priv = dev->dev_private;
7317
Daniel Vetterf742a552013-12-06 10:17:53 +01007318 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01007319 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01007320
Chris Wilson907b28c2013-07-19 20:36:52 +01007321 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
7322 intel_gen6_powersave_work);
Chris Wilson1854d5c2015-04-07 16:20:32 +01007323 INIT_LIST_HEAD(&dev_priv->rps.clients);
Chris Wilson2e1b8732015-04-27 13:41:22 +01007324 INIT_LIST_HEAD(&dev_priv->rps.semaphores.link);
7325 INIT_LIST_HEAD(&dev_priv->rps.mmioflips.link);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03007326
Paulo Zanoni33688d92014-03-07 20:08:19 -03007327 dev_priv->pm.suspended = false;
Chris Wilson907b28c2013-07-19 20:36:52 +01007328}