blob: 767a3e2ffdd13d6c5588a6f884819f9cf59461d1 [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
Damien Lespiauda2078c2013-02-13 15:27:27 +000055static void gen9_init_clock_gating(struct drm_device *dev)
56{
Damien Lespiauacd5c342014-03-26 16:55:46 +000057 struct drm_i915_private *dev_priv = dev->dev_private;
58
Damien Lespiau77719d22015-02-09 19:33:13 +000059 /* WaEnableLbsSlaRetryTimerDecrement:skl */
60 I915_WRITE(BDW_SCRATCH1, I915_READ(BDW_SCRATCH1) |
61 GEN9_LBS_SLA_RETRY_TIMER_DECREMENT_ENABLE);
62}
Damien Lespiau91e41d12014-03-26 17:42:50 +000063
Damien Lespiau45db2192015-02-09 19:33:09 +000064static void skl_init_clock_gating(struct drm_device *dev)
Damien Lespiauda2078c2013-02-13 15:27:27 +000065{
Damien Lespiauacd5c342014-03-26 16:55:46 +000066 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau3ca5da42014-03-26 18:18:01 +000067
Damien Lespiau77719d22015-02-09 19:33:13 +000068 gen9_init_clock_gating(dev);
69
Hoath, Nicholas3dcd0202015-02-05 10:47:21 +000070 if (INTEL_REVID(dev) == SKL_REVID_A0) {
71 /*
72 * WaDisableSDEUnitClockGating:skl
Damien Lespiau9253c2e2015-02-09 19:33:10 +000073 * WaSetGAPSunitClckGateDisable:skl
Hoath, Nicholas3dcd0202015-02-05 10:47:21 +000074 */
75 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Damien Lespiau9253c2e2015-02-09 19:33:10 +000076 GEN8_GAPSUNIT_CLOCK_GATE_DISABLE |
Hoath, Nicholas3dcd0202015-02-05 10:47:21 +000077 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
78 }
Damien Lespiau8bc0ccf2015-02-09 19:33:18 +000079
Damien Lespiau2caa3b22015-02-09 19:33:20 +000080 if (INTEL_REVID(dev) <= SKL_REVID_D0) {
Damien Lespiau81e231a2015-02-09 19:33:19 +000081 /* WaDisableHDCInvalidation:skl */
82 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) |
83 BDW_DISABLE_HDC_INVALIDATION);
84
Damien Lespiau2caa3b22015-02-09 19:33:20 +000085 /* WaDisableChickenBitTSGBarrierAckForFFSliceCS:skl */
86 I915_WRITE(FF_SLICE_CS_CHICKEN2,
87 I915_READ(FF_SLICE_CS_CHICKEN2) |
88 GEN9_TSG_BARRIER_ACK_DISABLE);
89 }
Damien Lespiau81e231a2015-02-09 19:33:19 +000090
Damien Lespiau8bc0ccf2015-02-09 19:33:18 +000091 if (INTEL_REVID(dev) <= SKL_REVID_E0)
92 /* WaDisableLSQCROPERFforOCL:skl */
93 I915_WRITE(GEN8_L3SQCREG4, I915_READ(GEN8_L3SQCREG4) |
94 GEN8_LQSC_RO_PERF_DIS);
Damien Lespiauda2078c2013-02-13 15:27:27 +000095}
96
Imre Deaka82abe42015-03-27 14:00:04 +020097static void bxt_init_clock_gating(struct drm_device *dev)
98{
99 gen9_init_clock_gating(dev);
100}
101
Daniel Vetterc921aba2012-04-26 23:28:17 +0200102static void i915_pineview_get_mem_freq(struct drm_device *dev)
103{
Jani Nikula50227e12014-03-31 14:27:21 +0300104 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200105 u32 tmp;
106
107 tmp = I915_READ(CLKCFG);
108
109 switch (tmp & CLKCFG_FSB_MASK) {
110 case CLKCFG_FSB_533:
111 dev_priv->fsb_freq = 533; /* 133*4 */
112 break;
113 case CLKCFG_FSB_800:
114 dev_priv->fsb_freq = 800; /* 200*4 */
115 break;
116 case CLKCFG_FSB_667:
117 dev_priv->fsb_freq = 667; /* 167*4 */
118 break;
119 case CLKCFG_FSB_400:
120 dev_priv->fsb_freq = 400; /* 100*4 */
121 break;
122 }
123
124 switch (tmp & CLKCFG_MEM_MASK) {
125 case CLKCFG_MEM_533:
126 dev_priv->mem_freq = 533;
127 break;
128 case CLKCFG_MEM_667:
129 dev_priv->mem_freq = 667;
130 break;
131 case CLKCFG_MEM_800:
132 dev_priv->mem_freq = 800;
133 break;
134 }
135
136 /* detect pineview DDR3 setting */
137 tmp = I915_READ(CSHRDDR3CTL);
138 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
139}
140
141static void i915_ironlake_get_mem_freq(struct drm_device *dev)
142{
Jani Nikula50227e12014-03-31 14:27:21 +0300143 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200144 u16 ddrpll, csipll;
145
146 ddrpll = I915_READ16(DDRMPLL1);
147 csipll = I915_READ16(CSIPLL0);
148
149 switch (ddrpll & 0xff) {
150 case 0xc:
151 dev_priv->mem_freq = 800;
152 break;
153 case 0x10:
154 dev_priv->mem_freq = 1066;
155 break;
156 case 0x14:
157 dev_priv->mem_freq = 1333;
158 break;
159 case 0x18:
160 dev_priv->mem_freq = 1600;
161 break;
162 default:
163 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
164 ddrpll & 0xff);
165 dev_priv->mem_freq = 0;
166 break;
167 }
168
Daniel Vetter20e4d402012-08-08 23:35:39 +0200169 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200170
171 switch (csipll & 0x3ff) {
172 case 0x00c:
173 dev_priv->fsb_freq = 3200;
174 break;
175 case 0x00e:
176 dev_priv->fsb_freq = 3733;
177 break;
178 case 0x010:
179 dev_priv->fsb_freq = 4266;
180 break;
181 case 0x012:
182 dev_priv->fsb_freq = 4800;
183 break;
184 case 0x014:
185 dev_priv->fsb_freq = 5333;
186 break;
187 case 0x016:
188 dev_priv->fsb_freq = 5866;
189 break;
190 case 0x018:
191 dev_priv->fsb_freq = 6400;
192 break;
193 default:
194 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
195 csipll & 0x3ff);
196 dev_priv->fsb_freq = 0;
197 break;
198 }
199
200 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200201 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200202 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200203 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200204 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200205 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200206 }
207}
208
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300209static const struct cxsr_latency cxsr_latency_table[] = {
210 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
211 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
212 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
213 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
214 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
215
216 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
217 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
218 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
219 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
220 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
221
222 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
223 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
224 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
225 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
226 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
227
228 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
229 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
230 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
231 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
232 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
233
234 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
235 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
236 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
237 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
238 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
239
240 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
241 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
242 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
243 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
244 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
245};
246
Daniel Vetter63c62272012-04-21 23:17:55 +0200247static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300248 int is_ddr3,
249 int fsb,
250 int mem)
251{
252 const struct cxsr_latency *latency;
253 int i;
254
255 if (fsb == 0 || mem == 0)
256 return NULL;
257
258 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
259 latency = &cxsr_latency_table[i];
260 if (is_desktop == latency->is_desktop &&
261 is_ddr3 == latency->is_ddr3 &&
262 fsb == latency->fsb_freq && mem == latency->mem_freq)
263 return latency;
264 }
265
266 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
267
268 return NULL;
269}
270
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200271static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
272{
273 u32 val;
274
275 mutex_lock(&dev_priv->rps.hw_lock);
276
277 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
278 if (enable)
279 val &= ~FORCE_DDR_HIGH_FREQ;
280 else
281 val |= FORCE_DDR_HIGH_FREQ;
282 val &= ~FORCE_DDR_LOW_FREQ;
283 val |= FORCE_DDR_FREQ_REQ_ACK;
284 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
285
286 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
287 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
288 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
289
290 mutex_unlock(&dev_priv->rps.hw_lock);
291}
292
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200293static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
294{
295 u32 val;
296
297 mutex_lock(&dev_priv->rps.hw_lock);
298
299 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
300 if (enable)
301 val |= DSP_MAXFIFO_PM5_ENABLE;
302 else
303 val &= ~DSP_MAXFIFO_PM5_ENABLE;
304 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
305
306 mutex_unlock(&dev_priv->rps.hw_lock);
307}
308
Ville Syrjäläf4998962015-03-10 17:02:21 +0200309#define FW_WM(value, plane) \
310 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
311
Imre Deak5209b1f2014-07-01 12:36:17 +0300312void intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300313{
Imre Deak5209b1f2014-07-01 12:36:17 +0300314 struct drm_device *dev = dev_priv->dev;
315 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300316
Imre Deak5209b1f2014-07-01 12:36:17 +0300317 if (IS_VALLEYVIEW(dev)) {
318 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200319 if (IS_CHERRYVIEW(dev))
320 chv_set_memory_pm5(dev_priv, enable);
Imre Deak5209b1f2014-07-01 12:36:17 +0300321 } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) {
322 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
323 } else if (IS_PINEVIEW(dev)) {
324 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
325 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
326 I915_WRITE(DSPFW3, val);
327 } else if (IS_I945G(dev) || IS_I945GM(dev)) {
328 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
329 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
330 I915_WRITE(FW_BLC_SELF, val);
331 } else if (IS_I915GM(dev)) {
332 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
333 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
334 I915_WRITE(INSTPM, val);
335 } else {
336 return;
337 }
338
339 DRM_DEBUG_KMS("memory self-refresh is %s\n",
340 enable ? "enabled" : "disabled");
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300341}
342
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200343
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300344/*
345 * Latency for FIFO fetches is dependent on several factors:
346 * - memory configuration (speed, channels)
347 * - chipset
348 * - current MCH state
349 * It can be fairly high in some situations, so here we assume a fairly
350 * pessimal value. It's a tradeoff between extra memory fetches (if we
351 * set this value too high, the FIFO will fetch frequently to stay full)
352 * and power consumption (set it too low to save power and we might see
353 * FIFO underruns and display "flicker").
354 *
355 * A value of 5us seems to be a good balance; safe for very low end
356 * platforms but not overly aggressive on lower latency configs.
357 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100358static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300359
Ville Syrjäläb5004722015-03-05 21:19:47 +0200360#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
361 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
362
363static int vlv_get_fifo_size(struct drm_device *dev,
364 enum pipe pipe, int plane)
365{
366 struct drm_i915_private *dev_priv = dev->dev_private;
367 int sprite0_start, sprite1_start, size;
368
369 switch (pipe) {
370 uint32_t dsparb, dsparb2, dsparb3;
371 case PIPE_A:
372 dsparb = I915_READ(DSPARB);
373 dsparb2 = I915_READ(DSPARB2);
374 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
375 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
376 break;
377 case PIPE_B:
378 dsparb = I915_READ(DSPARB);
379 dsparb2 = I915_READ(DSPARB2);
380 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
381 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
382 break;
383 case PIPE_C:
384 dsparb2 = I915_READ(DSPARB2);
385 dsparb3 = I915_READ(DSPARB3);
386 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
387 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
388 break;
389 default:
390 return 0;
391 }
392
393 switch (plane) {
394 case 0:
395 size = sprite0_start;
396 break;
397 case 1:
398 size = sprite1_start - sprite0_start;
399 break;
400 case 2:
401 size = 512 - 1 - sprite1_start;
402 break;
403 default:
404 return 0;
405 }
406
407 DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n",
408 pipe_name(pipe), plane == 0 ? "primary" : "sprite",
409 plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1),
410 size);
411
412 return size;
413}
414
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300415static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300416{
417 struct drm_i915_private *dev_priv = dev->dev_private;
418 uint32_t dsparb = I915_READ(DSPARB);
419 int size;
420
421 size = dsparb & 0x7f;
422 if (plane)
423 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
424
425 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
426 plane ? "B" : "A", size);
427
428 return size;
429}
430
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200431static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300432{
433 struct drm_i915_private *dev_priv = dev->dev_private;
434 uint32_t dsparb = I915_READ(DSPARB);
435 int size;
436
437 size = dsparb & 0x1ff;
438 if (plane)
439 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
440 size >>= 1; /* Convert to cachelines */
441
442 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
443 plane ? "B" : "A", size);
444
445 return size;
446}
447
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300448static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300449{
450 struct drm_i915_private *dev_priv = dev->dev_private;
451 uint32_t dsparb = I915_READ(DSPARB);
452 int size;
453
454 size = dsparb & 0x7f;
455 size >>= 2; /* Convert to cachelines */
456
457 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
458 plane ? "B" : "A",
459 size);
460
461 return size;
462}
463
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300464/* Pineview has different values for various configs */
465static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300466 .fifo_size = PINEVIEW_DISPLAY_FIFO,
467 .max_wm = PINEVIEW_MAX_WM,
468 .default_wm = PINEVIEW_DFT_WM,
469 .guard_size = PINEVIEW_GUARD_WM,
470 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300471};
472static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300473 .fifo_size = PINEVIEW_DISPLAY_FIFO,
474 .max_wm = PINEVIEW_MAX_WM,
475 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
476 .guard_size = PINEVIEW_GUARD_WM,
477 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300478};
479static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300480 .fifo_size = PINEVIEW_CURSOR_FIFO,
481 .max_wm = PINEVIEW_CURSOR_MAX_WM,
482 .default_wm = PINEVIEW_CURSOR_DFT_WM,
483 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
484 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300485};
486static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300487 .fifo_size = PINEVIEW_CURSOR_FIFO,
488 .max_wm = PINEVIEW_CURSOR_MAX_WM,
489 .default_wm = PINEVIEW_CURSOR_DFT_WM,
490 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
491 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300492};
493static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300494 .fifo_size = G4X_FIFO_SIZE,
495 .max_wm = G4X_MAX_WM,
496 .default_wm = G4X_MAX_WM,
497 .guard_size = 2,
498 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300499};
500static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300501 .fifo_size = I965_CURSOR_FIFO,
502 .max_wm = I965_CURSOR_MAX_WM,
503 .default_wm = I965_CURSOR_DFT_WM,
504 .guard_size = 2,
505 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300506};
507static const struct intel_watermark_params valleyview_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300508 .fifo_size = VALLEYVIEW_FIFO_SIZE,
509 .max_wm = VALLEYVIEW_MAX_WM,
510 .default_wm = VALLEYVIEW_MAX_WM,
511 .guard_size = 2,
512 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300513};
514static const struct intel_watermark_params valleyview_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300515 .fifo_size = I965_CURSOR_FIFO,
516 .max_wm = VALLEYVIEW_CURSOR_MAX_WM,
517 .default_wm = I965_CURSOR_DFT_WM,
518 .guard_size = 2,
519 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300520};
521static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300522 .fifo_size = I965_CURSOR_FIFO,
523 .max_wm = I965_CURSOR_MAX_WM,
524 .default_wm = I965_CURSOR_DFT_WM,
525 .guard_size = 2,
526 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300527};
528static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300529 .fifo_size = I945_FIFO_SIZE,
530 .max_wm = I915_MAX_WM,
531 .default_wm = 1,
532 .guard_size = 2,
533 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300534};
535static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300536 .fifo_size = I915_FIFO_SIZE,
537 .max_wm = I915_MAX_WM,
538 .default_wm = 1,
539 .guard_size = 2,
540 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300541};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300542static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300543 .fifo_size = I855GM_FIFO_SIZE,
544 .max_wm = I915_MAX_WM,
545 .default_wm = 1,
546 .guard_size = 2,
547 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300548};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300549static const struct intel_watermark_params i830_bc_wm_info = {
550 .fifo_size = I855GM_FIFO_SIZE,
551 .max_wm = I915_MAX_WM/2,
552 .default_wm = 1,
553 .guard_size = 2,
554 .cacheline_size = I830_FIFO_LINE_SIZE,
555};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200556static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300557 .fifo_size = I830_FIFO_SIZE,
558 .max_wm = I915_MAX_WM,
559 .default_wm = 1,
560 .guard_size = 2,
561 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300562};
563
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300564/**
565 * intel_calculate_wm - calculate watermark level
566 * @clock_in_khz: pixel clock
567 * @wm: chip FIFO params
568 * @pixel_size: display pixel size
569 * @latency_ns: memory latency for the platform
570 *
571 * Calculate the watermark level (the level at which the display plane will
572 * start fetching from memory again). Each chip has a different display
573 * FIFO size and allocation, so the caller needs to figure that out and pass
574 * in the correct intel_watermark_params structure.
575 *
576 * As the pixel clock runs, the FIFO will be drained at a rate that depends
577 * on the pixel size. When it reaches the watermark level, it'll start
578 * fetching FIFO line sized based chunks from memory until the FIFO fills
579 * past the watermark point. If the FIFO drains completely, a FIFO underrun
580 * will occur, and a display engine hang could result.
581 */
582static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
583 const struct intel_watermark_params *wm,
584 int fifo_size,
585 int pixel_size,
586 unsigned long latency_ns)
587{
588 long entries_required, wm_size;
589
590 /*
591 * Note: we need to make sure we don't overflow for various clock &
592 * latency values.
593 * clocks go from a few thousand to several hundred thousand.
594 * latency is usually a few thousand
595 */
596 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
597 1000;
598 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
599
600 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
601
602 wm_size = fifo_size - (entries_required + wm->guard_size);
603
604 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
605
606 /* Don't promote wm_size to unsigned... */
607 if (wm_size > (long)wm->max_wm)
608 wm_size = wm->max_wm;
609 if (wm_size <= 0)
610 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300611
612 /*
613 * Bspec seems to indicate that the value shouldn't be lower than
614 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
615 * Lets go for 8 which is the burst size since certain platforms
616 * already use a hardcoded 8 (which is what the spec says should be
617 * done).
618 */
619 if (wm_size <= 8)
620 wm_size = 8;
621
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300622 return wm_size;
623}
624
625static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
626{
627 struct drm_crtc *crtc, *enabled = NULL;
628
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100629 for_each_crtc(dev, crtc) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000630 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300631 if (enabled)
632 return NULL;
633 enabled = crtc;
634 }
635 }
636
637 return enabled;
638}
639
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300640static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300641{
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300642 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300643 struct drm_i915_private *dev_priv = dev->dev_private;
644 struct drm_crtc *crtc;
645 const struct cxsr_latency *latency;
646 u32 reg;
647 unsigned long wm;
648
649 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
650 dev_priv->fsb_freq, dev_priv->mem_freq);
651 if (!latency) {
652 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300653 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300654 return;
655 }
656
657 crtc = single_enabled_crtc(dev);
658 if (crtc) {
Damien Lespiau241bfc32013-09-25 16:45:37 +0100659 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -0800660 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100661 int clock;
662
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200663 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100664 clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300665
666 /* Display SR */
667 wm = intel_calculate_wm(clock, &pineview_display_wm,
668 pineview_display_wm.fifo_size,
669 pixel_size, latency->display_sr);
670 reg = I915_READ(DSPFW1);
671 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200672 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300673 I915_WRITE(DSPFW1, reg);
674 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
675
676 /* cursor SR */
677 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
678 pineview_display_wm.fifo_size,
679 pixel_size, latency->cursor_sr);
680 reg = I915_READ(DSPFW3);
681 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200682 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300683 I915_WRITE(DSPFW3, reg);
684
685 /* Display HPLL off SR */
686 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
687 pineview_display_hplloff_wm.fifo_size,
688 pixel_size, latency->display_hpll_disable);
689 reg = I915_READ(DSPFW3);
690 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200691 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300692 I915_WRITE(DSPFW3, reg);
693
694 /* cursor HPLL off SR */
695 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
696 pineview_display_hplloff_wm.fifo_size,
697 pixel_size, latency->cursor_hpll_disable);
698 reg = I915_READ(DSPFW3);
699 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200700 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300701 I915_WRITE(DSPFW3, reg);
702 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
703
Imre Deak5209b1f2014-07-01 12:36:17 +0300704 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300705 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300706 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300707 }
708}
709
710static bool g4x_compute_wm0(struct drm_device *dev,
711 int plane,
712 const struct intel_watermark_params *display,
713 int display_latency_ns,
714 const struct intel_watermark_params *cursor,
715 int cursor_latency_ns,
716 int *plane_wm,
717 int *cursor_wm)
718{
719 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300720 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300721 int htotal, hdisplay, clock, pixel_size;
722 int line_time_us, line_count;
723 int entries, tlb_miss;
724
725 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +0000726 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300727 *cursor_wm = cursor->guard_size;
728 *plane_wm = display->guard_size;
729 return false;
730 }
731
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200732 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100733 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800734 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200735 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800736 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300737
738 /* Use the small buffer method to calculate plane watermark */
739 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
740 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
741 if (tlb_miss > 0)
742 entries += tlb_miss;
743 entries = DIV_ROUND_UP(entries, display->cacheline_size);
744 *plane_wm = entries + display->guard_size;
745 if (*plane_wm > (int)display->max_wm)
746 *plane_wm = display->max_wm;
747
748 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200749 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300750 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Matt Roper3dd512f2015-02-27 10:12:00 -0800751 entries = line_count * crtc->cursor->state->crtc_w * pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300752 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
753 if (tlb_miss > 0)
754 entries += tlb_miss;
755 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
756 *cursor_wm = entries + cursor->guard_size;
757 if (*cursor_wm > (int)cursor->max_wm)
758 *cursor_wm = (int)cursor->max_wm;
759
760 return true;
761}
762
763/*
764 * Check the wm result.
765 *
766 * If any calculated watermark values is larger than the maximum value that
767 * can be programmed into the associated watermark register, that watermark
768 * must be disabled.
769 */
770static bool g4x_check_srwm(struct drm_device *dev,
771 int display_wm, int cursor_wm,
772 const struct intel_watermark_params *display,
773 const struct intel_watermark_params *cursor)
774{
775 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
776 display_wm, cursor_wm);
777
778 if (display_wm > display->max_wm) {
779 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
780 display_wm, display->max_wm);
781 return false;
782 }
783
784 if (cursor_wm > cursor->max_wm) {
785 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
786 cursor_wm, cursor->max_wm);
787 return false;
788 }
789
790 if (!(display_wm || cursor_wm)) {
791 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
792 return false;
793 }
794
795 return true;
796}
797
798static bool g4x_compute_srwm(struct drm_device *dev,
799 int plane,
800 int latency_ns,
801 const struct intel_watermark_params *display,
802 const struct intel_watermark_params *cursor,
803 int *display_wm, int *cursor_wm)
804{
805 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300806 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300807 int hdisplay, htotal, pixel_size, clock;
808 unsigned long line_time_us;
809 int line_count, line_size;
810 int small, large;
811 int entries;
812
813 if (!latency_ns) {
814 *display_wm = *cursor_wm = 0;
815 return false;
816 }
817
818 crtc = intel_get_crtc_for_plane(dev, plane);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200819 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100820 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800821 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200822 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800823 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300824
Ville Syrjälä922044c2014-02-14 14:18:57 +0200825 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300826 line_count = (latency_ns / line_time_us + 1000) / 1000;
827 line_size = hdisplay * pixel_size;
828
829 /* Use the minimum of the small and large buffer method for primary */
830 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
831 large = line_count * line_size;
832
833 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
834 *display_wm = entries + display->guard_size;
835
836 /* calculate the self-refresh watermark for display cursor */
Matt Roper3dd512f2015-02-27 10:12:00 -0800837 entries = line_count * pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300838 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
839 *cursor_wm = entries + cursor->guard_size;
840
841 return g4x_check_srwm(dev,
842 *display_wm, *cursor_wm,
843 display, cursor);
844}
845
Ville Syrjälä15665972015-03-10 16:16:28 +0200846#define FW_WM_VLV(value, plane) \
847 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
848
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200849static void vlv_write_wm_values(struct intel_crtc *crtc,
850 const struct vlv_wm_values *wm)
851{
852 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
853 enum pipe pipe = crtc->pipe;
854
855 I915_WRITE(VLV_DDL(pipe),
856 (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) |
857 (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) |
858 (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) |
859 (wm->ddl[pipe].primary << DDL_PLANE_SHIFT));
860
Ville Syrjäläae801522015-03-05 21:19:49 +0200861 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200862 FW_WM(wm->sr.plane, SR) |
863 FW_WM(wm->pipe[PIPE_B].cursor, CURSORB) |
864 FW_WM_VLV(wm->pipe[PIPE_B].primary, PLANEB) |
865 FW_WM_VLV(wm->pipe[PIPE_A].primary, PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200866 I915_WRITE(DSPFW2,
Ville Syrjälä15665972015-03-10 16:16:28 +0200867 FW_WM_VLV(wm->pipe[PIPE_A].sprite[1], SPRITEB) |
868 FW_WM(wm->pipe[PIPE_A].cursor, CURSORA) |
869 FW_WM_VLV(wm->pipe[PIPE_A].sprite[0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200870 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200871 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200872
873 if (IS_CHERRYVIEW(dev_priv)) {
874 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200875 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
876 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200877 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200878 FW_WM_VLV(wm->pipe[PIPE_C].sprite[1], SPRITEF) |
879 FW_WM_VLV(wm->pipe[PIPE_C].sprite[0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200880 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200881 FW_WM_VLV(wm->pipe[PIPE_C].primary, PLANEC) |
882 FW_WM(wm->pipe[PIPE_C].cursor, CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200883 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200884 FW_WM(wm->sr.plane >> 9, SR_HI) |
885 FW_WM(wm->pipe[PIPE_C].sprite[1] >> 8, SPRITEF_HI) |
886 FW_WM(wm->pipe[PIPE_C].sprite[0] >> 8, SPRITEE_HI) |
887 FW_WM(wm->pipe[PIPE_C].primary >> 8, PLANEC_HI) |
888 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
889 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
890 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
891 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
892 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
893 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200894 } else {
895 I915_WRITE(DSPFW7,
Ville Syrjälä15665972015-03-10 16:16:28 +0200896 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
897 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200898 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200899 FW_WM(wm->sr.plane >> 9, SR_HI) |
900 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
901 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
902 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
903 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
904 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
905 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200906 }
907
908 POSTING_READ(DSPFW1);
909
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200910 dev_priv->wm.vlv = *wm;
911}
912
Ville Syrjälä15665972015-03-10 16:16:28 +0200913#undef FW_WM_VLV
914
Ville Syrjälä341c5262015-03-05 21:19:44 +0200915static uint8_t vlv_compute_drain_latency(struct drm_crtc *crtc,
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200916 struct drm_plane *plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300917{
Rodrigo Vivi5e56ba42014-10-17 08:05:08 -0700918 struct drm_device *dev = crtc->dev;
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200919 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
920 int entries, prec_mult, drain_latency, pixel_size;
921 int clock = intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä341c5262015-03-05 21:19:44 +0200922 const int high_precision = IS_CHERRYVIEW(dev) ? 16 : 64;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300923
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200924 /*
925 * FIXME the plane might have an fb
926 * but be invisible (eg. due to clipping)
927 */
928 if (!intel_crtc->active || !plane->state->fb)
929 return 0;
930
Gajanan Bhat0948c262014-08-07 01:58:24 +0530931 if (WARN(clock == 0, "Pixel clock is zero!\n"))
Ville Syrjälä341c5262015-03-05 21:19:44 +0200932 return 0;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300933
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200934 pixel_size = drm_format_plane_cpp(plane->state->fb->pixel_format, 0);
935
Gajanan Bhat0948c262014-08-07 01:58:24 +0530936 if (WARN(pixel_size == 0, "Pixel size is zero!\n"))
Ville Syrjälä341c5262015-03-05 21:19:44 +0200937 return 0;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300938
Gajanan Bhata398e9c2014-08-05 23:15:54 +0530939 entries = DIV_ROUND_UP(clock, 1000) * pixel_size;
Ville Syrjäläabfc00b2015-03-05 21:19:43 +0200940
Ville Syrjälä341c5262015-03-05 21:19:44 +0200941 prec_mult = high_precision;
942 drain_latency = 64 * prec_mult * 4 / entries;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300943
Ville Syrjälä341c5262015-03-05 21:19:44 +0200944 if (drain_latency > DRAIN_LATENCY_MASK) {
945 prec_mult /= 2;
946 drain_latency = 64 * prec_mult * 4 / entries;
Ville Syrjäläabfc00b2015-03-05 21:19:43 +0200947 }
948
Ville Syrjälä341c5262015-03-05 21:19:44 +0200949 if (drain_latency > DRAIN_LATENCY_MASK)
950 drain_latency = DRAIN_LATENCY_MASK;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300951
Ville Syrjälä341c5262015-03-05 21:19:44 +0200952 return drain_latency | (prec_mult == high_precision ?
953 DDL_PRECISION_HIGH : DDL_PRECISION_LOW);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300954}
955
Ville Syrjäläae801522015-03-05 21:19:49 +0200956static int vlv_compute_wm(struct intel_crtc *crtc,
957 struct intel_plane *plane,
958 int fifo_size)
959{
960 int clock, entries, pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300961
Ville Syrjäläae801522015-03-05 21:19:49 +0200962 /*
963 * FIXME the plane might have an fb
964 * but be invisible (eg. due to clipping)
965 */
966 if (!crtc->active || !plane->base.state->fb)
967 return 0;
968
969 pixel_size = drm_format_plane_cpp(plane->base.state->fb->pixel_format, 0);
970 clock = crtc->config->base.adjusted_mode.crtc_clock;
971
972 entries = DIV_ROUND_UP(clock, 1000) * pixel_size;
973
974 /*
975 * Set up the watermark such that we don't start issuing memory
976 * requests until we are within PND's max deadline value (256us).
977 * Idea being to be idle as long as possible while still taking
978 * advatange of PND's deadline scheduling. The limit of 8
979 * cachelines (used when the FIFO will anyway drain in less time
980 * than 256us) should match what we would be done if trickle
981 * feed were enabled.
982 */
983 return fifo_size - clamp(DIV_ROUND_UP(256 * entries, 64), 0, fifo_size - 8);
984}
985
986static bool vlv_compute_sr_wm(struct drm_device *dev,
987 struct vlv_wm_values *wm)
988{
989 struct drm_i915_private *dev_priv = to_i915(dev);
990 struct drm_crtc *crtc;
991 enum pipe pipe = INVALID_PIPE;
992 int num_planes = 0;
993 int fifo_size = 0;
994 struct intel_plane *plane;
995
996 wm->sr.cursor = wm->sr.plane = 0;
997
998 crtc = single_enabled_crtc(dev);
999 /* maxfifo not supported on pipe C */
1000 if (crtc && to_intel_crtc(crtc)->pipe != PIPE_C) {
1001 pipe = to_intel_crtc(crtc)->pipe;
1002 num_planes = !!wm->pipe[pipe].primary +
1003 !!wm->pipe[pipe].sprite[0] +
1004 !!wm->pipe[pipe].sprite[1];
1005 fifo_size = INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
1006 }
1007
1008 if (fifo_size == 0 || num_planes > 1)
1009 return false;
1010
1011 wm->sr.cursor = vlv_compute_wm(to_intel_crtc(crtc),
1012 to_intel_plane(crtc->cursor), 0x3f);
1013
1014 list_for_each_entry(plane, &dev->mode_config.plane_list, base.head) {
1015 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1016 continue;
1017
1018 if (plane->pipe != pipe)
1019 continue;
1020
1021 wm->sr.plane = vlv_compute_wm(to_intel_crtc(crtc),
1022 plane, fifo_size);
1023 if (wm->sr.plane != 0)
1024 break;
1025 }
1026
1027 return true;
1028}
1029
1030static void valleyview_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001031{
Rodrigo Vivi5e56ba42014-10-17 08:05:08 -07001032 struct drm_device *dev = crtc->dev;
1033 struct drm_i915_private *dev_priv = dev->dev_private;
Gajanan Bhat0948c262014-08-07 01:58:24 +05301034 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gajanan Bhat0948c262014-08-07 01:58:24 +05301035 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläae801522015-03-05 21:19:49 +02001036 bool cxsr_enabled;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001037 struct vlv_wm_values wm = dev_priv->wm.vlv;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001038
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001039 wm.ddl[pipe].primary = vlv_compute_drain_latency(crtc, crtc->primary);
Ville Syrjäläae801522015-03-05 21:19:49 +02001040 wm.pipe[pipe].primary = vlv_compute_wm(intel_crtc,
1041 to_intel_plane(crtc->primary),
1042 vlv_get_fifo_size(dev, pipe, 0));
1043
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001044 wm.ddl[pipe].cursor = vlv_compute_drain_latency(crtc, crtc->cursor);
Ville Syrjäläae801522015-03-05 21:19:49 +02001045 wm.pipe[pipe].cursor = vlv_compute_wm(intel_crtc,
1046 to_intel_plane(crtc->cursor),
1047 0x3f);
1048
1049 cxsr_enabled = vlv_compute_sr_wm(dev, &wm);
1050
1051 if (memcmp(&wm, &dev_priv->wm.vlv, sizeof(wm)) == 0)
1052 return;
1053
1054 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1055 "SR: plane=%d, cursor=%d\n", pipe_name(pipe),
1056 wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1057 wm.sr.plane, wm.sr.cursor);
1058
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +02001059 /*
1060 * FIXME DDR DVFS introduces massive memory latencies which
1061 * are not known to system agent so any deadline specified
1062 * by the display may not be respected. To support DDR DVFS
1063 * the watermark code needs to be rewritten to essentially
1064 * bypass deadline mechanism and rely solely on the
1065 * watermarks. For now disable DDR DVFS.
1066 */
1067 if (IS_CHERRYVIEW(dev_priv))
1068 chv_set_memory_dvfs(dev_priv, false);
1069
Ville Syrjäläae801522015-03-05 21:19:49 +02001070 if (!cxsr_enabled)
1071 intel_set_memory_cxsr(dev_priv, false);
Gajanan Bhat0948c262014-08-07 01:58:24 +05301072
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001073 vlv_write_wm_values(intel_crtc, &wm);
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001074
1075 if (cxsr_enabled)
1076 intel_set_memory_cxsr(dev_priv, true);
1077}
1078
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301079static void valleyview_update_sprite_wm(struct drm_plane *plane,
1080 struct drm_crtc *crtc,
1081 uint32_t sprite_width,
1082 uint32_t sprite_height,
1083 int pixel_size,
1084 bool enabled, bool scaled)
1085{
1086 struct drm_device *dev = crtc->dev;
1087 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001088 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1089 enum pipe pipe = intel_crtc->pipe;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301090 int sprite = to_intel_plane(plane)->plane;
Ville Syrjäläae801522015-03-05 21:19:49 +02001091 bool cxsr_enabled;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001092 struct vlv_wm_values wm = dev_priv->wm.vlv;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301093
Ville Syrjäläae801522015-03-05 21:19:49 +02001094 if (enabled) {
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001095 wm.ddl[pipe].sprite[sprite] =
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001096 vlv_compute_drain_latency(crtc, plane);
Ville Syrjäläae801522015-03-05 21:19:49 +02001097
1098 wm.pipe[pipe].sprite[sprite] =
1099 vlv_compute_wm(intel_crtc,
1100 to_intel_plane(plane),
1101 vlv_get_fifo_size(dev, pipe, sprite+1));
1102 } else {
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001103 wm.ddl[pipe].sprite[sprite] = 0;
Ville Syrjäläae801522015-03-05 21:19:49 +02001104 wm.pipe[pipe].sprite[sprite] = 0;
1105 }
1106
1107 cxsr_enabled = vlv_compute_sr_wm(dev, &wm);
1108
1109 if (memcmp(&wm, &dev_priv->wm.vlv, sizeof(wm)) == 0)
1110 return;
1111
1112 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: sprite %c=%d, "
1113 "SR: plane=%d, cursor=%d\n", pipe_name(pipe),
1114 sprite_name(pipe, sprite),
1115 wm.pipe[pipe].sprite[sprite],
1116 wm.sr.plane, wm.sr.cursor);
1117
1118 if (!cxsr_enabled)
1119 intel_set_memory_cxsr(dev_priv, false);
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301120
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001121 vlv_write_wm_values(intel_crtc, &wm);
Ville Syrjäläae801522015-03-05 21:19:49 +02001122
1123 if (cxsr_enabled)
1124 intel_set_memory_cxsr(dev_priv, true);
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301125}
1126
Ville Syrjäläae801522015-03-05 21:19:49 +02001127#define single_plane_enabled(mask) is_power_of_2(mask)
1128
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001129static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001130{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001131 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001132 static const int sr_latency_ns = 12000;
1133 struct drm_i915_private *dev_priv = dev->dev_private;
1134 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1135 int plane_sr, cursor_sr;
1136 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001137 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001138
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001139 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001140 &g4x_wm_info, pessimal_latency_ns,
1141 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001142 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001143 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001144
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001145 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001146 &g4x_wm_info, pessimal_latency_ns,
1147 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001148 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001149 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001150
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001151 if (single_plane_enabled(enabled) &&
1152 g4x_compute_srwm(dev, ffs(enabled) - 1,
1153 sr_latency_ns,
1154 &g4x_wm_info,
1155 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001156 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001157 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001158 } else {
Imre Deak98584252014-06-13 14:54:20 +03001159 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001160 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001161 plane_sr = cursor_sr = 0;
1162 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001163
Ville Syrjäläa5043452014-06-28 02:04:18 +03001164 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1165 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001166 planea_wm, cursora_wm,
1167 planeb_wm, cursorb_wm,
1168 plane_sr, cursor_sr);
1169
1170 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001171 FW_WM(plane_sr, SR) |
1172 FW_WM(cursorb_wm, CURSORB) |
1173 FW_WM(planeb_wm, PLANEB) |
1174 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001175 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001176 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001177 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001178 /* HPLL off in SR has some issues on G4x... disable it */
1179 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001180 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001181 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001182
1183 if (cxsr_enabled)
1184 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001185}
1186
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001187static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001188{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001189 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001190 struct drm_i915_private *dev_priv = dev->dev_private;
1191 struct drm_crtc *crtc;
1192 int srwm = 1;
1193 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001194 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001195
1196 /* Calc sr entries for one plane configs */
1197 crtc = single_enabled_crtc(dev);
1198 if (crtc) {
1199 /* self-refresh has much higher latency */
1200 static const int sr_latency_ns = 12000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001201 const struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001202 &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001203 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001204 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001205 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001206 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001207 unsigned long line_time_us;
1208 int entries;
1209
Ville Syrjälä922044c2014-02-14 14:18:57 +02001210 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001211
1212 /* Use ns/us then divide to preserve precision */
1213 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1214 pixel_size * hdisplay;
1215 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1216 srwm = I965_FIFO_SIZE - entries;
1217 if (srwm < 0)
1218 srwm = 1;
1219 srwm &= 0x1ff;
1220 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1221 entries, srwm);
1222
1223 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Matt Roper3dd512f2015-02-27 10:12:00 -08001224 pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001225 entries = DIV_ROUND_UP(entries,
1226 i965_cursor_wm_info.cacheline_size);
1227 cursor_sr = i965_cursor_wm_info.fifo_size -
1228 (entries + i965_cursor_wm_info.guard_size);
1229
1230 if (cursor_sr > i965_cursor_wm_info.max_wm)
1231 cursor_sr = i965_cursor_wm_info.max_wm;
1232
1233 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1234 "cursor %d\n", srwm, cursor_sr);
1235
Imre Deak98584252014-06-13 14:54:20 +03001236 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001237 } else {
Imre Deak98584252014-06-13 14:54:20 +03001238 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001239 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001240 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001241 }
1242
1243 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1244 srwm);
1245
1246 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001247 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1248 FW_WM(8, CURSORB) |
1249 FW_WM(8, PLANEB) |
1250 FW_WM(8, PLANEA));
1251 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1252 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001253 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001254 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001255
1256 if (cxsr_enabled)
1257 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001258}
1259
Ville Syrjäläf4998962015-03-10 17:02:21 +02001260#undef FW_WM
1261
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001262static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001263{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001264 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001265 struct drm_i915_private *dev_priv = dev->dev_private;
1266 const struct intel_watermark_params *wm_info;
1267 uint32_t fwater_lo;
1268 uint32_t fwater_hi;
1269 int cwm, srwm = 1;
1270 int fifo_size;
1271 int planea_wm, planeb_wm;
1272 struct drm_crtc *crtc, *enabled = NULL;
1273
1274 if (IS_I945GM(dev))
1275 wm_info = &i945_wm_info;
1276 else if (!IS_GEN2(dev))
1277 wm_info = &i915_wm_info;
1278 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001279 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001280
1281 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1282 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001283 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001284 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001285 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001286 if (IS_GEN2(dev))
1287 cpp = 4;
1288
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001289 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001290 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001291 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001292 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001293 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001294 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001295 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001296 if (planea_wm > (long)wm_info->max_wm)
1297 planea_wm = wm_info->max_wm;
1298 }
1299
1300 if (IS_GEN2(dev))
1301 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001302
1303 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1304 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001305 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001306 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001307 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001308 if (IS_GEN2(dev))
1309 cpp = 4;
1310
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001311 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001312 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001313 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001314 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001315 if (enabled == NULL)
1316 enabled = crtc;
1317 else
1318 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001319 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001320 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001321 if (planeb_wm > (long)wm_info->max_wm)
1322 planeb_wm = wm_info->max_wm;
1323 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001324
1325 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1326
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001327 if (IS_I915GM(dev) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001328 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001329
Matt Roper59bea882015-02-27 10:12:01 -08001330 obj = intel_fb_obj(enabled->primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001331
1332 /* self-refresh seems busted with untiled */
Matt Roper2ff8fde2014-07-08 07:50:07 -07001333 if (obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001334 enabled = NULL;
1335 }
1336
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001337 /*
1338 * Overlay gets an aggressive default since video jitter is bad.
1339 */
1340 cwm = 2;
1341
1342 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001343 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001344
1345 /* Calc sr entries for one plane configs */
1346 if (HAS_FW_BLC(dev) && enabled) {
1347 /* self-refresh has much higher latency */
1348 static const int sr_latency_ns = 6000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001349 const struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001350 &to_intel_crtc(enabled)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001351 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001352 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001353 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001354 int pixel_size = enabled->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001355 unsigned long line_time_us;
1356 int entries;
1357
Ville Syrjälä922044c2014-02-14 14:18:57 +02001358 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001359
1360 /* Use ns/us then divide to preserve precision */
1361 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1362 pixel_size * hdisplay;
1363 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1364 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1365 srwm = wm_info->fifo_size - entries;
1366 if (srwm < 0)
1367 srwm = 1;
1368
1369 if (IS_I945G(dev) || IS_I945GM(dev))
1370 I915_WRITE(FW_BLC_SELF,
1371 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1372 else if (IS_I915GM(dev))
1373 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1374 }
1375
1376 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1377 planea_wm, planeb_wm, cwm, srwm);
1378
1379 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1380 fwater_hi = (cwm & 0x1f);
1381
1382 /* Set request length to 8 cachelines per fetch */
1383 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1384 fwater_hi = fwater_hi | (1 << 8);
1385
1386 I915_WRITE(FW_BLC, fwater_lo);
1387 I915_WRITE(FW_BLC2, fwater_hi);
1388
Imre Deak5209b1f2014-07-01 12:36:17 +03001389 if (enabled)
1390 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001391}
1392
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001393static void i845_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001394{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001395 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001396 struct drm_i915_private *dev_priv = dev->dev_private;
1397 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001398 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001399 uint32_t fwater_lo;
1400 int planea_wm;
1401
1402 crtc = single_enabled_crtc(dev);
1403 if (crtc == NULL)
1404 return;
1405
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001406 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001407 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001408 &i845_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001409 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001410 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001411 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1412 fwater_lo |= (3<<8) | planea_wm;
1413
1414 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1415
1416 I915_WRITE(FW_BLC, fwater_lo);
1417}
1418
Ville Syrjälä36587292013-07-05 11:57:16 +03001419static uint32_t ilk_pipe_pixel_rate(struct drm_device *dev,
1420 struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001421{
1422 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001423 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001424
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001425 pixel_rate = intel_crtc->config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001426
1427 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1428 * adjust the pixel_rate here. */
1429
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001430 if (intel_crtc->config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001431 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001432 uint32_t pfit_size = intel_crtc->config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001433
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001434 pipe_w = intel_crtc->config->pipe_src_w;
1435 pipe_h = intel_crtc->config->pipe_src_h;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001436 pfit_w = (pfit_size >> 16) & 0xFFFF;
1437 pfit_h = pfit_size & 0xFFFF;
1438 if (pipe_w < pfit_w)
1439 pipe_w = pfit_w;
1440 if (pipe_h < pfit_h)
1441 pipe_h = pfit_h;
1442
1443 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1444 pfit_w * pfit_h);
1445 }
1446
1447 return pixel_rate;
1448}
1449
Ville Syrjälä37126462013-08-01 16:18:55 +03001450/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001451static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001452 uint32_t latency)
1453{
1454 uint64_t ret;
1455
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001456 if (WARN(latency == 0, "Latency value missing\n"))
1457 return UINT_MAX;
1458
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001459 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
1460 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1461
1462 return ret;
1463}
1464
Ville Syrjälä37126462013-08-01 16:18:55 +03001465/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001466static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001467 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
1468 uint32_t latency)
1469{
1470 uint32_t ret;
1471
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001472 if (WARN(latency == 0, "Latency value missing\n"))
1473 return UINT_MAX;
1474
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001475 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
1476 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
1477 ret = DIV_ROUND_UP(ret, 64) + 2;
1478 return ret;
1479}
1480
Ville Syrjälä23297042013-07-05 11:57:17 +03001481static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001482 uint8_t bytes_per_pixel)
1483{
1484 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
1485}
1486
Pradeep Bhat2ac96d22014-11-04 17:06:40 +00001487struct skl_pipe_wm_parameters {
1488 bool active;
1489 uint32_t pipe_htotal;
1490 uint32_t pixel_rate; /* in KHz */
1491 struct intel_plane_wm_parameters plane[I915_MAX_PLANES];
1492 struct intel_plane_wm_parameters cursor;
1493};
1494
Imre Deak820c1982013-12-17 14:46:36 +02001495struct ilk_pipe_wm_parameters {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001496 bool active;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001497 uint32_t pipe_htotal;
1498 uint32_t pixel_rate;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001499 struct intel_plane_wm_parameters pri;
1500 struct intel_plane_wm_parameters spr;
1501 struct intel_plane_wm_parameters cur;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001502};
1503
Imre Deak820c1982013-12-17 14:46:36 +02001504struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001505 uint16_t pri;
1506 uint16_t spr;
1507 uint16_t cur;
1508 uint16_t fbc;
1509};
1510
Ville Syrjälä240264f2013-08-07 13:29:12 +03001511/* used in computing the new watermarks state */
1512struct intel_wm_config {
1513 unsigned int num_pipes_active;
1514 bool sprites_enabled;
1515 bool sprites_scaled;
Ville Syrjälä240264f2013-08-07 13:29:12 +03001516};
1517
Ville Syrjälä37126462013-08-01 16:18:55 +03001518/*
1519 * For both WM_PIPE and WM_LP.
1520 * mem_value must be in 0.1us units.
1521 */
Imre Deak820c1982013-12-17 14:46:36 +02001522static uint32_t ilk_compute_pri_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001523 uint32_t mem_value,
1524 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001525{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001526 uint32_t method1, method2;
1527
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001528 if (!params->active || !params->pri.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001529 return 0;
1530
Ville Syrjälä23297042013-07-05 11:57:17 +03001531 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001532 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001533 mem_value);
1534
1535 if (!is_lp)
1536 return method1;
1537
Ville Syrjälä23297042013-07-05 11:57:17 +03001538 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001539 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001540 params->pri.horiz_pixels,
1541 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001542 mem_value);
1543
1544 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001545}
1546
Ville Syrjälä37126462013-08-01 16:18:55 +03001547/*
1548 * For both WM_PIPE and WM_LP.
1549 * mem_value must be in 0.1us units.
1550 */
Imre Deak820c1982013-12-17 14:46:36 +02001551static uint32_t ilk_compute_spr_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001552 uint32_t mem_value)
1553{
1554 uint32_t method1, method2;
1555
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001556 if (!params->active || !params->spr.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001557 return 0;
1558
Ville Syrjälä23297042013-07-05 11:57:17 +03001559 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001560 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001561 mem_value);
Ville Syrjälä23297042013-07-05 11:57:17 +03001562 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001563 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001564 params->spr.horiz_pixels,
1565 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001566 mem_value);
1567 return min(method1, method2);
1568}
1569
Ville Syrjälä37126462013-08-01 16:18:55 +03001570/*
1571 * For both WM_PIPE and WM_LP.
1572 * mem_value must be in 0.1us units.
1573 */
Imre Deak820c1982013-12-17 14:46:36 +02001574static uint32_t ilk_compute_cur_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001575 uint32_t mem_value)
1576{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001577 if (!params->active || !params->cur.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001578 return 0;
1579
Ville Syrjälä23297042013-07-05 11:57:17 +03001580 return ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001581 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001582 params->cur.horiz_pixels,
1583 params->cur.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001584 mem_value);
1585}
1586
Paulo Zanonicca32e92013-05-31 11:45:06 -03001587/* Only for WM_LP. */
Imre Deak820c1982013-12-17 14:46:36 +02001588static uint32_t ilk_compute_fbc_wm(const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001589 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001590{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001591 if (!params->active || !params->pri.enabled)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001592 return 0;
1593
Ville Syrjälä23297042013-07-05 11:57:17 +03001594 return ilk_wm_fbc(pri_val,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001595 params->pri.horiz_pixels,
1596 params->pri.bytes_per_pixel);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001597}
1598
Ville Syrjälä158ae642013-08-07 13:28:19 +03001599static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1600{
Ville Syrjälä416f4722013-11-02 21:07:46 -07001601 if (INTEL_INFO(dev)->gen >= 8)
1602 return 3072;
1603 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001604 return 768;
1605 else
1606 return 512;
1607}
1608
Ville Syrjälä4e975082014-03-07 18:32:11 +02001609static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1610 int level, bool is_sprite)
1611{
1612 if (INTEL_INFO(dev)->gen >= 8)
1613 /* BDW primary/sprite plane watermarks */
1614 return level == 0 ? 255 : 2047;
1615 else if (INTEL_INFO(dev)->gen >= 7)
1616 /* IVB/HSW primary/sprite plane watermarks */
1617 return level == 0 ? 127 : 1023;
1618 else if (!is_sprite)
1619 /* ILK/SNB primary plane watermarks */
1620 return level == 0 ? 127 : 511;
1621 else
1622 /* ILK/SNB sprite plane watermarks */
1623 return level == 0 ? 63 : 255;
1624}
1625
1626static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1627 int level)
1628{
1629 if (INTEL_INFO(dev)->gen >= 7)
1630 return level == 0 ? 63 : 255;
1631 else
1632 return level == 0 ? 31 : 63;
1633}
1634
1635static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1636{
1637 if (INTEL_INFO(dev)->gen >= 8)
1638 return 31;
1639 else
1640 return 15;
1641}
1642
Ville Syrjälä158ae642013-08-07 13:28:19 +03001643/* Calculate the maximum primary/sprite plane watermark */
1644static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1645 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001646 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001647 enum intel_ddb_partitioning ddb_partitioning,
1648 bool is_sprite)
1649{
1650 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001651
1652 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001653 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001654 return 0;
1655
1656 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001657 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001658 fifo_size /= INTEL_INFO(dev)->num_pipes;
1659
1660 /*
1661 * For some reason the non self refresh
1662 * FIFO size is only half of the self
1663 * refresh FIFO size on ILK/SNB.
1664 */
1665 if (INTEL_INFO(dev)->gen <= 6)
1666 fifo_size /= 2;
1667 }
1668
Ville Syrjälä240264f2013-08-07 13:29:12 +03001669 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001670 /* level 0 is always calculated with 1:1 split */
1671 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1672 if (is_sprite)
1673 fifo_size *= 5;
1674 fifo_size /= 6;
1675 } else {
1676 fifo_size /= 2;
1677 }
1678 }
1679
1680 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001681 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001682}
1683
1684/* Calculate the maximum cursor plane watermark */
1685static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001686 int level,
1687 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001688{
1689 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001690 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001691 return 64;
1692
1693 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001694 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001695}
1696
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001697static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001698 int level,
1699 const struct intel_wm_config *config,
1700 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001701 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001702{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001703 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1704 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1705 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02001706 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001707}
1708
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001709static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
1710 int level,
1711 struct ilk_wm_maximums *max)
1712{
1713 max->pri = ilk_plane_wm_reg_max(dev, level, false);
1714 max->spr = ilk_plane_wm_reg_max(dev, level, true);
1715 max->cur = ilk_cursor_wm_reg_max(dev, level);
1716 max->fbc = ilk_fbc_wm_reg_max(dev);
1717}
1718
Ville Syrjäläd9395652013-10-09 19:18:10 +03001719static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001720 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001721 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001722{
1723 bool ret;
1724
1725 /* already determined to be invalid? */
1726 if (!result->enable)
1727 return false;
1728
1729 result->enable = result->pri_val <= max->pri &&
1730 result->spr_val <= max->spr &&
1731 result->cur_val <= max->cur;
1732
1733 ret = result->enable;
1734
1735 /*
1736 * HACK until we can pre-compute everything,
1737 * and thus fail gracefully if LP0 watermarks
1738 * are exceeded...
1739 */
1740 if (level == 0 && !result->enable) {
1741 if (result->pri_val > max->pri)
1742 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
1743 level, result->pri_val, max->pri);
1744 if (result->spr_val > max->spr)
1745 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
1746 level, result->spr_val, max->spr);
1747 if (result->cur_val > max->cur)
1748 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
1749 level, result->cur_val, max->cur);
1750
1751 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
1752 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
1753 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
1754 result->enable = true;
1755 }
1756
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001757 return ret;
1758}
1759
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001760static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03001761 int level,
Imre Deak820c1982013-12-17 14:46:36 +02001762 const struct ilk_pipe_wm_parameters *p,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03001763 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03001764{
1765 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
1766 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
1767 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
1768
1769 /* WM1+ latency values stored in 0.5us units */
1770 if (level > 0) {
1771 pri_latency *= 5;
1772 spr_latency *= 5;
1773 cur_latency *= 5;
1774 }
1775
1776 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
1777 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
1778 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
1779 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
1780 result->enable = true;
1781}
1782
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001783static uint32_t
1784hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001785{
1786 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03001787 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001788 struct drm_display_mode *mode = &intel_crtc->config->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03001789 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001790
Matt Roper3ef00282015-03-09 10:19:24 -07001791 if (!intel_crtc->active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001792 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03001793
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001794 /* The WM are computed with base on how long it takes to fill a single
1795 * row at the given clock rate, multiplied by 8.
1796 * */
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001797 linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
1798 mode->crtc_clock);
1799 ips_linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
Paulo Zanoni85a02de2013-05-03 17:23:43 -03001800 intel_ddi_get_cdclk_freq(dev_priv));
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001801
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001802 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
1803 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001804}
1805
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001806static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03001807{
1808 struct drm_i915_private *dev_priv = dev->dev_private;
1809
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001810 if (IS_GEN9(dev)) {
1811 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00001812 int ret, i;
Vandana Kannan367294b2014-11-04 17:06:46 +00001813 int level, max_level = ilk_wm_max_level(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001814
1815 /* read the first set of memory latencies[0:3] */
1816 val = 0; /* data0 to be programmed to 0 for first set */
1817 mutex_lock(&dev_priv->rps.hw_lock);
1818 ret = sandybridge_pcode_read(dev_priv,
1819 GEN9_PCODE_READ_MEM_LATENCY,
1820 &val);
1821 mutex_unlock(&dev_priv->rps.hw_lock);
1822
1823 if (ret) {
1824 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
1825 return;
1826 }
1827
1828 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
1829 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
1830 GEN9_MEM_LATENCY_LEVEL_MASK;
1831 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
1832 GEN9_MEM_LATENCY_LEVEL_MASK;
1833 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
1834 GEN9_MEM_LATENCY_LEVEL_MASK;
1835
1836 /* read the second set of memory latencies[4:7] */
1837 val = 1; /* data0 to be programmed to 1 for second set */
1838 mutex_lock(&dev_priv->rps.hw_lock);
1839 ret = sandybridge_pcode_read(dev_priv,
1840 GEN9_PCODE_READ_MEM_LATENCY,
1841 &val);
1842 mutex_unlock(&dev_priv->rps.hw_lock);
1843 if (ret) {
1844 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
1845 return;
1846 }
1847
1848 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
1849 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
1850 GEN9_MEM_LATENCY_LEVEL_MASK;
1851 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
1852 GEN9_MEM_LATENCY_LEVEL_MASK;
1853 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
1854 GEN9_MEM_LATENCY_LEVEL_MASK;
1855
Vandana Kannan367294b2014-11-04 17:06:46 +00001856 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00001857 * WaWmMemoryReadLatency:skl
1858 *
Vandana Kannan367294b2014-11-04 17:06:46 +00001859 * punit doesn't take into account the read latency so we need
1860 * to add 2us to the various latency levels we retrieve from
1861 * the punit.
1862 * - W0 is a bit special in that it's the only level that
1863 * can't be disabled if we want to have display working, so
1864 * we always add 2us there.
1865 * - For levels >=1, punit returns 0us latency when they are
1866 * disabled, so we respect that and don't add 2us then
Vandana Kannan4f947382014-11-04 17:06:47 +00001867 *
1868 * Additionally, if a level n (n > 1) has a 0us latency, all
1869 * levels m (m >= n) need to be disabled. We make sure to
1870 * sanitize the values out of the punit to satisfy this
1871 * requirement.
Vandana Kannan367294b2014-11-04 17:06:46 +00001872 */
1873 wm[0] += 2;
1874 for (level = 1; level <= max_level; level++)
1875 if (wm[level] != 0)
1876 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00001877 else {
1878 for (i = level + 1; i <= max_level; i++)
1879 wm[i] = 0;
Vandana Kannan367294b2014-11-04 17:06:46 +00001880
Vandana Kannan4f947382014-11-04 17:06:47 +00001881 break;
1882 }
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001883 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03001884 uint64_t sskpd = I915_READ64(MCH_SSKPD);
1885
1886 wm[0] = (sskpd >> 56) & 0xFF;
1887 if (wm[0] == 0)
1888 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03001889 wm[1] = (sskpd >> 4) & 0xFF;
1890 wm[2] = (sskpd >> 12) & 0xFF;
1891 wm[3] = (sskpd >> 20) & 0x1FF;
1892 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03001893 } else if (INTEL_INFO(dev)->gen >= 6) {
1894 uint32_t sskpd = I915_READ(MCH_SSKPD);
1895
1896 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
1897 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
1898 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
1899 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03001900 } else if (INTEL_INFO(dev)->gen >= 5) {
1901 uint32_t mltr = I915_READ(MLTR_ILK);
1902
1903 /* ILK primary LP0 latency is 700 ns */
1904 wm[0] = 7;
1905 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
1906 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03001907 }
1908}
1909
Ville Syrjälä53615a52013-08-01 16:18:50 +03001910static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
1911{
1912 /* ILK sprite LP0 latency is 1300 ns */
1913 if (INTEL_INFO(dev)->gen == 5)
1914 wm[0] = 13;
1915}
1916
1917static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
1918{
1919 /* ILK cursor LP0 latency is 1300 ns */
1920 if (INTEL_INFO(dev)->gen == 5)
1921 wm[0] = 13;
1922
1923 /* WaDoubleCursorLP3Latency:ivb */
1924 if (IS_IVYBRIDGE(dev))
1925 wm[3] *= 2;
1926}
1927
Damien Lespiau546c81f2014-05-13 15:30:26 +01001928int ilk_wm_max_level(const struct drm_device *dev)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03001929{
1930 /* how many WM levels are we expecting */
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001931 if (IS_GEN9(dev))
1932 return 7;
1933 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03001934 return 4;
1935 else if (INTEL_INFO(dev)->gen >= 6)
1936 return 3;
1937 else
1938 return 2;
1939}
Daniel Vetter7526ed72014-09-29 15:07:19 +02001940
Ville Syrjälä26ec9712013-08-01 16:18:52 +03001941static void intel_print_wm_latency(struct drm_device *dev,
1942 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001943 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03001944{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03001945 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03001946
1947 for (level = 0; level <= max_level; level++) {
1948 unsigned int latency = wm[level];
1949
1950 if (latency == 0) {
1951 DRM_ERROR("%s WM%d latency not provided\n",
1952 name, level);
1953 continue;
1954 }
1955
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001956 /*
1957 * - latencies are in us on gen9.
1958 * - before then, WM1+ latency values are in 0.5us units
1959 */
1960 if (IS_GEN9(dev))
1961 latency *= 10;
1962 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03001963 latency *= 5;
1964
1965 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
1966 name, level, wm[level],
1967 latency / 10, latency % 10);
1968 }
1969}
1970
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03001971static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
1972 uint16_t wm[5], uint16_t min)
1973{
1974 int level, max_level = ilk_wm_max_level(dev_priv->dev);
1975
1976 if (wm[0] >= min)
1977 return false;
1978
1979 wm[0] = max(wm[0], min);
1980 for (level = 1; level <= max_level; level++)
1981 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
1982
1983 return true;
1984}
1985
1986static void snb_wm_latency_quirk(struct drm_device *dev)
1987{
1988 struct drm_i915_private *dev_priv = dev->dev_private;
1989 bool changed;
1990
1991 /*
1992 * The BIOS provided WM memory latency values are often
1993 * inadequate for high resolution displays. Adjust them.
1994 */
1995 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
1996 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
1997 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
1998
1999 if (!changed)
2000 return;
2001
2002 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
2003 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2004 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2005 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
2006}
2007
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002008static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002009{
2010 struct drm_i915_private *dev_priv = dev->dev_private;
2011
2012 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2013
2014 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2015 sizeof(dev_priv->wm.pri_latency));
2016 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2017 sizeof(dev_priv->wm.pri_latency));
2018
2019 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2020 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002021
2022 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2023 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2024 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002025
2026 if (IS_GEN6(dev))
2027 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002028}
2029
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002030static void skl_setup_wm_latency(struct drm_device *dev)
2031{
2032 struct drm_i915_private *dev_priv = dev->dev_private;
2033
2034 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
2035 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
2036}
2037
Imre Deak820c1982013-12-17 14:46:36 +02002038static void ilk_compute_wm_parameters(struct drm_crtc *crtc,
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002039 struct ilk_pipe_wm_parameters *p)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002040{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002041 struct drm_device *dev = crtc->dev;
2042 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2043 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002044 struct drm_plane *plane;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002045
Matt Roper3ef00282015-03-09 10:19:24 -07002046 if (!intel_crtc->active)
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002047 return;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002048
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002049 p->active = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002050 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002051 p->pixel_rate = ilk_pipe_pixel_rate(dev, crtc);
Matt Roperc9f038a2015-03-09 11:06:02 -07002052
2053 if (crtc->primary->state->fb) {
2054 p->pri.enabled = true;
2055 p->pri.bytes_per_pixel =
2056 crtc->primary->state->fb->bits_per_pixel / 8;
2057 } else {
2058 p->pri.enabled = false;
2059 p->pri.bytes_per_pixel = 0;
2060 }
2061
2062 if (crtc->cursor->state->fb) {
2063 p->cur.enabled = true;
2064 p->cur.bytes_per_pixel = 4;
2065 } else {
2066 p->cur.enabled = false;
2067 p->cur.bytes_per_pixel = 0;
2068 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002069 p->pri.horiz_pixels = intel_crtc->config->pipe_src_w;
Matt Roper3dd512f2015-02-27 10:12:00 -08002070 p->cur.horiz_pixels = intel_crtc->base.cursor->state->crtc_w;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002071
Matt Roperaf2b6532014-04-01 15:22:32 -07002072 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002073 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002074
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002075 if (intel_plane->pipe == pipe) {
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002076 p->spr = intel_plane->wm;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002077 break;
2078 }
2079 }
2080}
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002081
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002082static void ilk_compute_wm_config(struct drm_device *dev,
2083 struct intel_wm_config *config)
2084{
2085 struct intel_crtc *intel_crtc;
2086
2087 /* Compute the currently _active_ config */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002088 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002089 const struct intel_pipe_wm *wm = &intel_crtc->wm.active;
2090
2091 if (!wm->pipe_enabled)
2092 continue;
2093
2094 config->sprites_enabled |= wm->sprites_enabled;
2095 config->sprites_scaled |= wm->sprites_scaled;
2096 config->num_pipes_active++;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002097 }
2098}
2099
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002100/* Compute new watermarks for the pipe */
2101static bool intel_compute_pipe_wm(struct drm_crtc *crtc,
Imre Deak820c1982013-12-17 14:46:36 +02002102 const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002103 struct intel_pipe_wm *pipe_wm)
2104{
2105 struct drm_device *dev = crtc->dev;
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002106 const struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002107 int level, max_level = ilk_wm_max_level(dev);
2108 /* LP0 watermark maximums depend on this pipe alone */
2109 struct intel_wm_config config = {
2110 .num_pipes_active = 1,
2111 .sprites_enabled = params->spr.enabled,
2112 .sprites_scaled = params->spr.scaled,
2113 };
Imre Deak820c1982013-12-17 14:46:36 +02002114 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002115
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002116 pipe_wm->pipe_enabled = params->active;
2117 pipe_wm->sprites_enabled = params->spr.enabled;
2118 pipe_wm->sprites_scaled = params->spr.scaled;
2119
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002120 /* ILK/SNB: LP2+ watermarks only w/o sprites */
2121 if (INTEL_INFO(dev)->gen <= 6 && params->spr.enabled)
2122 max_level = 1;
2123
2124 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
2125 if (params->spr.scaled)
2126 max_level = 0;
2127
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002128 ilk_compute_wm_level(dev_priv, 0, params, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002129
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002130 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02002131 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002132
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002133 /* LP0 watermarks always use 1/2 DDB partitioning */
2134 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2135
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002136 /* At least LP0 must be valid */
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002137 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]))
2138 return false;
2139
2140 ilk_compute_wm_reg_maximums(dev, 1, &max);
2141
2142 for (level = 1; level <= max_level; level++) {
2143 struct intel_wm_level wm = {};
2144
2145 ilk_compute_wm_level(dev_priv, level, params, &wm);
2146
2147 /*
2148 * Disable any watermark level that exceeds the
2149 * register maximums since such watermarks are
2150 * always invalid.
2151 */
2152 if (!ilk_validate_wm_level(level, &max, &wm))
2153 break;
2154
2155 pipe_wm->wm[level] = wm;
2156 }
2157
2158 return true;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002159}
2160
2161/*
2162 * Merge the watermarks from all active pipes for a specific level.
2163 */
2164static void ilk_merge_wm_level(struct drm_device *dev,
2165 int level,
2166 struct intel_wm_level *ret_wm)
2167{
2168 const struct intel_crtc *intel_crtc;
2169
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002170 ret_wm->enable = true;
2171
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002172 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002173 const struct intel_pipe_wm *active = &intel_crtc->wm.active;
2174 const struct intel_wm_level *wm = &active->wm[level];
2175
2176 if (!active->pipe_enabled)
2177 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002178
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002179 /*
2180 * The watermark values may have been used in the past,
2181 * so we must maintain them in the registers for some
2182 * time even if the level is now disabled.
2183 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002184 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002185 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002186
2187 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2188 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2189 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2190 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2191 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002192}
2193
2194/*
2195 * Merge all low power watermarks for all active pipes.
2196 */
2197static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002198 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002199 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002200 struct intel_pipe_wm *merged)
2201{
2202 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002203 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002204
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002205 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2206 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2207 config->num_pipes_active > 1)
2208 return;
2209
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002210 /* ILK: FBC WM must be disabled always */
2211 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002212
2213 /* merge each WM1+ level */
2214 for (level = 1; level <= max_level; level++) {
2215 struct intel_wm_level *wm = &merged->wm[level];
2216
2217 ilk_merge_wm_level(dev, level, wm);
2218
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002219 if (level > last_enabled_level)
2220 wm->enable = false;
2221 else if (!ilk_validate_wm_level(level, max, wm))
2222 /* make sure all following levels get disabled */
2223 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002224
2225 /*
2226 * The spec says it is preferred to disable
2227 * FBC WMs instead of disabling a WM level.
2228 */
2229 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002230 if (wm->enable)
2231 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002232 wm->fbc_val = 0;
2233 }
2234 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002235
2236 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2237 /*
2238 * FIXME this is racy. FBC might get enabled later.
2239 * What we should check here is whether FBC can be
2240 * enabled sometime later.
2241 */
2242 if (IS_GEN5(dev) && !merged->fbc_wm_enabled && intel_fbc_enabled(dev)) {
2243 for (level = 2; level <= max_level; level++) {
2244 struct intel_wm_level *wm = &merged->wm[level];
2245
2246 wm->enable = false;
2247 }
2248 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002249}
2250
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002251static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2252{
2253 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2254 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2255}
2256
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002257/* The value we need to program into the WM_LPx latency field */
2258static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2259{
2260 struct drm_i915_private *dev_priv = dev->dev_private;
2261
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002262 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002263 return 2 * level;
2264 else
2265 return dev_priv->wm.pri_latency[level];
2266}
2267
Imre Deak820c1982013-12-17 14:46:36 +02002268static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002269 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002270 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002271 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002272{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002273 struct intel_crtc *intel_crtc;
2274 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002275
Ville Syrjälä0362c782013-10-09 19:17:57 +03002276 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002277 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002278
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002279 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002280 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002281 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002282
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002283 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002284
Ville Syrjälä0362c782013-10-09 19:17:57 +03002285 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002286
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002287 /*
2288 * Maintain the watermark values even if the level is
2289 * disabled. Doing otherwise could cause underruns.
2290 */
2291 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002292 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002293 (r->pri_val << WM1_LP_SR_SHIFT) |
2294 r->cur_val;
2295
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002296 if (r->enable)
2297 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2298
Ville Syrjälä416f4722013-11-02 21:07:46 -07002299 if (INTEL_INFO(dev)->gen >= 8)
2300 results->wm_lp[wm_lp - 1] |=
2301 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2302 else
2303 results->wm_lp[wm_lp - 1] |=
2304 r->fbc_val << WM1_LP_FBC_SHIFT;
2305
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002306 /*
2307 * Always set WM1S_LP_EN when spr_val != 0, even if the
2308 * level is disabled. Doing otherwise could cause underruns.
2309 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002310 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2311 WARN_ON(wm_lp != 1);
2312 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2313 } else
2314 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002315 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002316
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002317 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002318 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002319 enum pipe pipe = intel_crtc->pipe;
2320 const struct intel_wm_level *r =
2321 &intel_crtc->wm.active.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002322
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002323 if (WARN_ON(!r->enable))
2324 continue;
2325
2326 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
2327
2328 results->wm_pipe[pipe] =
2329 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2330 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2331 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002332 }
2333}
2334
Paulo Zanoni861f3382013-05-31 10:19:21 -03002335/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2336 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002337static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002338 struct intel_pipe_wm *r1,
2339 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002340{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002341 int level, max_level = ilk_wm_max_level(dev);
2342 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002343
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002344 for (level = 1; level <= max_level; level++) {
2345 if (r1->wm[level].enable)
2346 level1 = level;
2347 if (r2->wm[level].enable)
2348 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002349 }
2350
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002351 if (level1 == level2) {
2352 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002353 return r2;
2354 else
2355 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002356 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002357 return r1;
2358 } else {
2359 return r2;
2360 }
2361}
2362
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002363/* dirty bits used to track which watermarks need changes */
2364#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2365#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2366#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2367#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2368#define WM_DIRTY_FBC (1 << 24)
2369#define WM_DIRTY_DDB (1 << 25)
2370
Damien Lespiau055e3932014-08-18 13:49:10 +01002371static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002372 const struct ilk_wm_values *old,
2373 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002374{
2375 unsigned int dirty = 0;
2376 enum pipe pipe;
2377 int wm_lp;
2378
Damien Lespiau055e3932014-08-18 13:49:10 +01002379 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002380 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2381 dirty |= WM_DIRTY_LINETIME(pipe);
2382 /* Must disable LP1+ watermarks too */
2383 dirty |= WM_DIRTY_LP_ALL;
2384 }
2385
2386 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2387 dirty |= WM_DIRTY_PIPE(pipe);
2388 /* Must disable LP1+ watermarks too */
2389 dirty |= WM_DIRTY_LP_ALL;
2390 }
2391 }
2392
2393 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2394 dirty |= WM_DIRTY_FBC;
2395 /* Must disable LP1+ watermarks too */
2396 dirty |= WM_DIRTY_LP_ALL;
2397 }
2398
2399 if (old->partitioning != new->partitioning) {
2400 dirty |= WM_DIRTY_DDB;
2401 /* Must disable LP1+ watermarks too */
2402 dirty |= WM_DIRTY_LP_ALL;
2403 }
2404
2405 /* LP1+ watermarks already deemed dirty, no need to continue */
2406 if (dirty & WM_DIRTY_LP_ALL)
2407 return dirty;
2408
2409 /* Find the lowest numbered LP1+ watermark in need of an update... */
2410 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2411 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2412 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2413 break;
2414 }
2415
2416 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2417 for (; wm_lp <= 3; wm_lp++)
2418 dirty |= WM_DIRTY_LP(wm_lp);
2419
2420 return dirty;
2421}
2422
Ville Syrjälä8553c182013-12-05 15:51:39 +02002423static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2424 unsigned int dirty)
2425{
Imre Deak820c1982013-12-17 14:46:36 +02002426 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002427 bool changed = false;
2428
2429 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2430 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2431 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2432 changed = true;
2433 }
2434 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2435 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2436 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2437 changed = true;
2438 }
2439 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2440 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2441 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2442 changed = true;
2443 }
2444
2445 /*
2446 * Don't touch WM1S_LP_EN here.
2447 * Doing so could cause underruns.
2448 */
2449
2450 return changed;
2451}
2452
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002453/*
2454 * The spec says we shouldn't write when we don't need, because every write
2455 * causes WMs to be re-evaluated, expending some power.
2456 */
Imre Deak820c1982013-12-17 14:46:36 +02002457static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2458 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002459{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002460 struct drm_device *dev = dev_priv->dev;
Imre Deak820c1982013-12-17 14:46:36 +02002461 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002462 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002463 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002464
Damien Lespiau055e3932014-08-18 13:49:10 +01002465 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002466 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002467 return;
2468
Ville Syrjälä8553c182013-12-05 15:51:39 +02002469 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002470
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002471 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002472 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002473 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002474 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002475 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002476 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2477
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002478 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002479 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002480 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002481 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002482 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002483 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2484
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002485 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002486 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002487 val = I915_READ(WM_MISC);
2488 if (results->partitioning == INTEL_DDB_PART_1_2)
2489 val &= ~WM_MISC_DATA_PARTITION_5_6;
2490 else
2491 val |= WM_MISC_DATA_PARTITION_5_6;
2492 I915_WRITE(WM_MISC, val);
2493 } else {
2494 val = I915_READ(DISP_ARB_CTL2);
2495 if (results->partitioning == INTEL_DDB_PART_1_2)
2496 val &= ~DISP_DATA_PARTITION_5_6;
2497 else
2498 val |= DISP_DATA_PARTITION_5_6;
2499 I915_WRITE(DISP_ARB_CTL2, val);
2500 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002501 }
2502
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002503 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002504 val = I915_READ(DISP_ARB_CTL);
2505 if (results->enable_fbc_wm)
2506 val &= ~DISP_FBC_WM_DIS;
2507 else
2508 val |= DISP_FBC_WM_DIS;
2509 I915_WRITE(DISP_ARB_CTL, val);
2510 }
2511
Imre Deak954911e2013-12-17 14:46:34 +02002512 if (dirty & WM_DIRTY_LP(1) &&
2513 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2514 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2515
2516 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002517 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2518 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2519 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2520 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2521 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002522
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002523 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002524 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002525 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002526 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002527 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002528 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002529
2530 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002531}
2532
Ville Syrjälä8553c182013-12-05 15:51:39 +02002533static bool ilk_disable_lp_wm(struct drm_device *dev)
2534{
2535 struct drm_i915_private *dev_priv = dev->dev_private;
2536
2537 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2538}
2539
Damien Lespiaub9cec072014-11-04 17:06:43 +00002540/*
2541 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
2542 * different active planes.
2543 */
2544
2545#define SKL_DDB_SIZE 896 /* in blocks */
Damien Lespiau43d735a2015-03-17 11:39:34 +02002546#define BXT_DDB_SIZE 512
Damien Lespiaub9cec072014-11-04 17:06:43 +00002547
2548static void
2549skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
2550 struct drm_crtc *for_crtc,
2551 const struct intel_wm_config *config,
2552 const struct skl_pipe_wm_parameters *params,
2553 struct skl_ddb_entry *alloc /* out */)
2554{
2555 struct drm_crtc *crtc;
2556 unsigned int pipe_size, ddb_size;
2557 int nth_active_pipe;
2558
2559 if (!params->active) {
2560 alloc->start = 0;
2561 alloc->end = 0;
2562 return;
2563 }
2564
Damien Lespiau43d735a2015-03-17 11:39:34 +02002565 if (IS_BROXTON(dev))
2566 ddb_size = BXT_DDB_SIZE;
2567 else
2568 ddb_size = SKL_DDB_SIZE;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002569
2570 ddb_size -= 4; /* 4 blocks for bypass path allocation */
2571
2572 nth_active_pipe = 0;
2573 for_each_crtc(dev, crtc) {
Matt Roper3ef00282015-03-09 10:19:24 -07002574 if (!to_intel_crtc(crtc)->active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002575 continue;
2576
2577 if (crtc == for_crtc)
2578 break;
2579
2580 nth_active_pipe++;
2581 }
2582
2583 pipe_size = ddb_size / config->num_pipes_active;
2584 alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active;
Damien Lespiau16160e32014-11-04 17:06:53 +00002585 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002586}
2587
2588static unsigned int skl_cursor_allocation(const struct intel_wm_config *config)
2589{
2590 if (config->num_pipes_active == 1)
2591 return 32;
2592
2593 return 8;
2594}
2595
Damien Lespiaua269c582014-11-04 17:06:49 +00002596static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
2597{
2598 entry->start = reg & 0x3ff;
2599 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00002600 if (entry->end)
2601 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00002602}
2603
Damien Lespiau08db6652014-11-04 17:06:52 +00002604void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2605 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00002606{
Damien Lespiaua269c582014-11-04 17:06:49 +00002607 enum pipe pipe;
2608 int plane;
2609 u32 val;
2610
2611 for_each_pipe(dev_priv, pipe) {
Damien Lespiaudd740782015-02-28 14:54:08 +00002612 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00002613 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
2614 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
2615 val);
2616 }
2617
2618 val = I915_READ(CUR_BUF_CFG(pipe));
2619 skl_ddb_entry_init_from_hw(&ddb->cursor[pipe], val);
2620 }
2621}
2622
Damien Lespiaub9cec072014-11-04 17:06:43 +00002623static unsigned int
2624skl_plane_relative_data_rate(const struct intel_plane_wm_parameters *p)
2625{
2626 return p->horiz_pixels * p->vert_pixels * p->bytes_per_pixel;
2627}
2628
2629/*
2630 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
2631 * a 8192x4096@32bpp framebuffer:
2632 * 3 * 4096 * 8192 * 4 < 2^32
2633 */
2634static unsigned int
2635skl_get_total_relative_data_rate(struct intel_crtc *intel_crtc,
2636 const struct skl_pipe_wm_parameters *params)
2637{
2638 unsigned int total_data_rate = 0;
2639 int plane;
2640
2641 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2642 const struct intel_plane_wm_parameters *p;
2643
2644 p = &params->plane[plane];
2645 if (!p->enabled)
2646 continue;
2647
2648 total_data_rate += skl_plane_relative_data_rate(p);
2649 }
2650
2651 return total_data_rate;
2652}
2653
2654static void
2655skl_allocate_pipe_ddb(struct drm_crtc *crtc,
2656 const struct intel_wm_config *config,
2657 const struct skl_pipe_wm_parameters *params,
2658 struct skl_ddb_allocation *ddb /* out */)
2659{
2660 struct drm_device *dev = crtc->dev;
Damien Lespiaudd740782015-02-28 14:54:08 +00002661 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002662 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2663 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002664 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002665 uint16_t alloc_size, start, cursor_blocks;
Damien Lespiau80958152015-02-09 13:35:10 +00002666 uint16_t minimum[I915_MAX_PLANES];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002667 unsigned int total_data_rate;
2668 int plane;
2669
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002670 skl_ddb_get_pipe_allocation_limits(dev, crtc, config, params, alloc);
2671 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002672 if (alloc_size == 0) {
2673 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
2674 memset(&ddb->cursor[pipe], 0, sizeof(ddb->cursor[pipe]));
2675 return;
2676 }
2677
2678 cursor_blocks = skl_cursor_allocation(config);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002679 ddb->cursor[pipe].start = alloc->end - cursor_blocks;
2680 ddb->cursor[pipe].end = alloc->end;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002681
2682 alloc_size -= cursor_blocks;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002683 alloc->end -= cursor_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002684
Damien Lespiau80958152015-02-09 13:35:10 +00002685 /* 1. Allocate the mininum required blocks for each active plane */
Damien Lespiaudd740782015-02-28 14:54:08 +00002686 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau80958152015-02-09 13:35:10 +00002687 const struct intel_plane_wm_parameters *p;
2688
2689 p = &params->plane[plane];
2690 if (!p->enabled)
2691 continue;
2692
2693 minimum[plane] = 8;
2694 alloc_size -= minimum[plane];
2695 }
2696
Damien Lespiaub9cec072014-11-04 17:06:43 +00002697 /*
Damien Lespiau80958152015-02-09 13:35:10 +00002698 * 2. Distribute the remaining space in proportion to the amount of
2699 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00002700 *
2701 * FIXME: we may not allocate every single block here.
2702 */
2703 total_data_rate = skl_get_total_relative_data_rate(intel_crtc, params);
2704
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002705 start = alloc->start;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002706 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2707 const struct intel_plane_wm_parameters *p;
2708 unsigned int data_rate;
2709 uint16_t plane_blocks;
2710
2711 p = &params->plane[plane];
2712 if (!p->enabled)
2713 continue;
2714
2715 data_rate = skl_plane_relative_data_rate(p);
2716
2717 /*
2718 * promote the expression to 64 bits to avoid overflowing, the
2719 * result is < available as data_rate / total_data_rate < 1
2720 */
Damien Lespiau80958152015-02-09 13:35:10 +00002721 plane_blocks = minimum[plane];
2722 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
2723 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002724
2725 ddb->plane[pipe][plane].start = start;
Damien Lespiau16160e32014-11-04 17:06:53 +00002726 ddb->plane[pipe][plane].end = start + plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002727
2728 start += plane_blocks;
2729 }
2730
2731}
2732
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02002733static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002734{
2735 /* TODO: Take into account the scalers once we support them */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02002736 return config->base.adjusted_mode.crtc_clock;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002737}
2738
2739/*
2740 * The max latency should be 257 (max the punit can code is 255 and we add 2us
2741 * for the read latency) and bytes_per_pixel should always be <= 8, so that
2742 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
2743 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
2744*/
2745static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
2746 uint32_t latency)
2747{
2748 uint32_t wm_intermediate_val, ret;
2749
2750 if (latency == 0)
2751 return UINT_MAX;
2752
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002753 wm_intermediate_val = latency * pixel_rate * bytes_per_pixel / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002754 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
2755
2756 return ret;
2757}
2758
2759static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
2760 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002761 uint64_t tiling, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002762{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002763 uint32_t ret;
2764 uint32_t plane_bytes_per_line, plane_blocks_per_line;
2765 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002766
2767 if (latency == 0)
2768 return UINT_MAX;
2769
2770 plane_bytes_per_line = horiz_pixels * bytes_per_pixel;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002771
2772 if (tiling == I915_FORMAT_MOD_Y_TILED ||
2773 tiling == I915_FORMAT_MOD_Yf_TILED) {
2774 plane_bytes_per_line *= 4;
2775 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
2776 plane_blocks_per_line /= 4;
2777 } else {
2778 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
2779 }
2780
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002781 wm_intermediate_val = latency * pixel_rate;
2782 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002783 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002784
2785 return ret;
2786}
2787
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002788static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb,
2789 const struct intel_crtc *intel_crtc)
2790{
2791 struct drm_device *dev = intel_crtc->base.dev;
2792 struct drm_i915_private *dev_priv = dev->dev_private;
2793 const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
2794 enum pipe pipe = intel_crtc->pipe;
2795
2796 if (memcmp(new_ddb->plane[pipe], cur_ddb->plane[pipe],
2797 sizeof(new_ddb->plane[pipe])))
2798 return true;
2799
2800 if (memcmp(&new_ddb->cursor[pipe], &cur_ddb->cursor[pipe],
2801 sizeof(new_ddb->cursor[pipe])))
2802 return true;
2803
2804 return false;
2805}
2806
2807static void skl_compute_wm_global_parameters(struct drm_device *dev,
2808 struct intel_wm_config *config)
2809{
2810 struct drm_crtc *crtc;
2811 struct drm_plane *plane;
2812
2813 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
Matt Roper3ef00282015-03-09 10:19:24 -07002814 config->num_pipes_active += to_intel_crtc(crtc)->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002815
2816 /* FIXME: I don't think we need those two global parameters on SKL */
2817 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2818 struct intel_plane *intel_plane = to_intel_plane(plane);
2819
2820 config->sprites_enabled |= intel_plane->wm.enabled;
2821 config->sprites_scaled |= intel_plane->wm.scaled;
2822 }
2823}
2824
2825static void skl_compute_wm_pipe_parameters(struct drm_crtc *crtc,
2826 struct skl_pipe_wm_parameters *p)
2827{
2828 struct drm_device *dev = crtc->dev;
2829 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2830 enum pipe pipe = intel_crtc->pipe;
2831 struct drm_plane *plane;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002832 struct drm_framebuffer *fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002833 int i = 1; /* Index for sprite planes start */
2834
Matt Roper3ef00282015-03-09 10:19:24 -07002835 p->active = intel_crtc->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002836 if (p->active) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002837 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
2838 p->pixel_rate = skl_pipe_pixel_rate(intel_crtc->config);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002839
Matt Roperc9f038a2015-03-09 11:06:02 -07002840 fb = crtc->primary->state->fb;
2841 if (fb) {
2842 p->plane[0].enabled = true;
2843 p->plane[0].bytes_per_pixel = fb->bits_per_pixel / 8;
2844 p->plane[0].tiling = fb->modifier[0];
2845 } else {
2846 p->plane[0].enabled = false;
2847 p->plane[0].bytes_per_pixel = 0;
2848 p->plane[0].tiling = DRM_FORMAT_MOD_NONE;
2849 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002850 p->plane[0].horiz_pixels = intel_crtc->config->pipe_src_w;
2851 p->plane[0].vert_pixels = intel_crtc->config->pipe_src_h;
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00002852 p->plane[0].rotation = crtc->primary->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002853
Matt Roperc9f038a2015-03-09 11:06:02 -07002854 fb = crtc->cursor->state->fb;
2855 if (fb) {
2856 p->cursor.enabled = true;
2857 p->cursor.bytes_per_pixel = fb->bits_per_pixel / 8;
2858 p->cursor.horiz_pixels = crtc->cursor->state->crtc_w;
2859 p->cursor.vert_pixels = crtc->cursor->state->crtc_h;
2860 } else {
2861 p->cursor.enabled = false;
2862 p->cursor.bytes_per_pixel = 0;
2863 p->cursor.horiz_pixels = 64;
2864 p->cursor.vert_pixels = 64;
2865 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002866 }
2867
2868 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2869 struct intel_plane *intel_plane = to_intel_plane(plane);
2870
Sonika Jindala712f8e2014-12-09 10:59:15 +05302871 if (intel_plane->pipe == pipe &&
2872 plane->type == DRM_PLANE_TYPE_OVERLAY)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002873 p->plane[i++] = intel_plane->wm;
2874 }
2875}
2876
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002877static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
2878 struct skl_pipe_wm_parameters *p,
Damien Lespiauafb024a2014-11-04 17:06:59 +00002879 struct intel_plane_wm_parameters *p_params,
2880 uint16_t ddb_allocation,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002881 int level,
Damien Lespiauafb024a2014-11-04 17:06:59 +00002882 uint16_t *out_blocks, /* out */
2883 uint8_t *out_lines /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002884{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002885 uint32_t latency = dev_priv->wm.skl_latency[level];
2886 uint32_t method1, method2;
2887 uint32_t plane_bytes_per_line, plane_blocks_per_line;
2888 uint32_t res_blocks, res_lines;
2889 uint32_t selected_result;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002890
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002891 if (latency == 0 || !p->active || !p_params->enabled)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002892 return false;
2893
2894 method1 = skl_wm_method1(p->pixel_rate,
2895 p_params->bytes_per_pixel,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002896 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002897 method2 = skl_wm_method2(p->pixel_rate,
2898 p->pipe_htotal,
2899 p_params->horiz_pixels,
2900 p_params->bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002901 p_params->tiling,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002902 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002903
2904 plane_bytes_per_line = p_params->horiz_pixels *
2905 p_params->bytes_per_pixel;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002906 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002907
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002908 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
2909 p_params->tiling == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00002910 uint32_t min_scanlines = 4;
2911 uint32_t y_tile_minimum;
2912 if (intel_rotation_90_or_270(p_params->rotation)) {
2913 switch (p_params->bytes_per_pixel) {
2914 case 1:
2915 min_scanlines = 16;
2916 break;
2917 case 2:
2918 min_scanlines = 8;
2919 break;
2920 case 8:
2921 WARN(1, "Unsupported pixel depth for rotation");
kbuild test robot2f0b5792015-03-26 22:30:21 +08002922 }
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00002923 }
2924 y_tile_minimum = plane_blocks_per_line * min_scanlines;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002925 selected_result = max(method2, y_tile_minimum);
2926 } else {
2927 if ((ddb_allocation / plane_blocks_per_line) >= 1)
2928 selected_result = min(method1, method2);
2929 else
2930 selected_result = method1;
2931 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002932
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002933 res_blocks = selected_result + 1;
2934 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00002935
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002936 if (level >= 1 && level <= 7) {
2937 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
2938 p_params->tiling == I915_FORMAT_MOD_Yf_TILED)
2939 res_lines += 4;
2940 else
2941 res_blocks++;
2942 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002943
2944 if (res_blocks >= ddb_allocation || res_lines > 31)
Damien Lespiaue6d66172014-11-04 17:06:55 +00002945 return false;
2946
2947 *out_blocks = res_blocks;
2948 *out_lines = res_lines;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002949
2950 return true;
2951}
2952
2953static void skl_compute_wm_level(const struct drm_i915_private *dev_priv,
2954 struct skl_ddb_allocation *ddb,
2955 struct skl_pipe_wm_parameters *p,
2956 enum pipe pipe,
2957 int level,
2958 int num_planes,
2959 struct skl_wm_level *result)
2960{
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002961 uint16_t ddb_blocks;
2962 int i;
2963
2964 for (i = 0; i < num_planes; i++) {
2965 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
2966
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002967 result->plane_en[i] = skl_compute_plane_wm(dev_priv,
2968 p, &p->plane[i],
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002969 ddb_blocks,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002970 level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002971 &result->plane_res_b[i],
2972 &result->plane_res_l[i]);
2973 }
2974
2975 ddb_blocks = skl_ddb_entry_size(&ddb->cursor[pipe]);
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002976 result->cursor_en = skl_compute_plane_wm(dev_priv, p, &p->cursor,
2977 ddb_blocks, level,
2978 &result->cursor_res_b,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002979 &result->cursor_res_l);
2980}
2981
Damien Lespiau407b50f2014-11-04 17:06:57 +00002982static uint32_t
2983skl_compute_linetime_wm(struct drm_crtc *crtc, struct skl_pipe_wm_parameters *p)
2984{
Matt Roper3ef00282015-03-09 10:19:24 -07002985 if (!to_intel_crtc(crtc)->active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00002986 return 0;
2987
2988 return DIV_ROUND_UP(8 * p->pipe_htotal * 1000, p->pixel_rate);
2989
2990}
2991
2992static void skl_compute_transition_wm(struct drm_crtc *crtc,
2993 struct skl_pipe_wm_parameters *params,
Damien Lespiau9414f562014-11-04 17:06:58 +00002994 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00002995{
Damien Lespiau9414f562014-11-04 17:06:58 +00002996 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2997 int i;
2998
Damien Lespiau407b50f2014-11-04 17:06:57 +00002999 if (!params->active)
3000 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003001
3002 /* Until we know more, just disable transition WMs */
3003 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3004 trans_wm->plane_en[i] = false;
3005 trans_wm->cursor_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003006}
3007
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003008static void skl_compute_pipe_wm(struct drm_crtc *crtc,
3009 struct skl_ddb_allocation *ddb,
3010 struct skl_pipe_wm_parameters *params,
3011 struct skl_pipe_wm *pipe_wm)
3012{
3013 struct drm_device *dev = crtc->dev;
3014 const struct drm_i915_private *dev_priv = dev->dev_private;
3015 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3016 int level, max_level = ilk_wm_max_level(dev);
3017
3018 for (level = 0; level <= max_level; level++) {
3019 skl_compute_wm_level(dev_priv, ddb, params, intel_crtc->pipe,
3020 level, intel_num_planes(intel_crtc),
3021 &pipe_wm->wm[level]);
3022 }
3023 pipe_wm->linetime = skl_compute_linetime_wm(crtc, params);
3024
Damien Lespiau9414f562014-11-04 17:06:58 +00003025 skl_compute_transition_wm(crtc, params, &pipe_wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003026}
3027
3028static void skl_compute_wm_results(struct drm_device *dev,
3029 struct skl_pipe_wm_parameters *p,
3030 struct skl_pipe_wm *p_wm,
3031 struct skl_wm_values *r,
3032 struct intel_crtc *intel_crtc)
3033{
3034 int level, max_level = ilk_wm_max_level(dev);
3035 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau9414f562014-11-04 17:06:58 +00003036 uint32_t temp;
3037 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003038
3039 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003040 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3041 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003042
3043 temp |= p_wm->wm[level].plane_res_l[i] <<
3044 PLANE_WM_LINES_SHIFT;
3045 temp |= p_wm->wm[level].plane_res_b[i];
3046 if (p_wm->wm[level].plane_en[i])
3047 temp |= PLANE_WM_EN;
3048
3049 r->plane[pipe][i][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003050 }
3051
3052 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003053
3054 temp |= p_wm->wm[level].cursor_res_l << PLANE_WM_LINES_SHIFT;
3055 temp |= p_wm->wm[level].cursor_res_b;
3056
3057 if (p_wm->wm[level].cursor_en)
3058 temp |= PLANE_WM_EN;
3059
3060 r->cursor[pipe][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003061
3062 }
3063
Damien Lespiau9414f562014-11-04 17:06:58 +00003064 /* transition WMs */
3065 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3066 temp = 0;
3067 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
3068 temp |= p_wm->trans_wm.plane_res_b[i];
3069 if (p_wm->trans_wm.plane_en[i])
3070 temp |= PLANE_WM_EN;
3071
3072 r->plane_trans[pipe][i] = temp;
3073 }
3074
3075 temp = 0;
3076 temp |= p_wm->trans_wm.cursor_res_l << PLANE_WM_LINES_SHIFT;
3077 temp |= p_wm->trans_wm.cursor_res_b;
3078 if (p_wm->trans_wm.cursor_en)
3079 temp |= PLANE_WM_EN;
3080
3081 r->cursor_trans[pipe] = temp;
3082
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003083 r->wm_linetime[pipe] = p_wm->linetime;
3084}
3085
Damien Lespiau16160e32014-11-04 17:06:53 +00003086static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, uint32_t reg,
3087 const struct skl_ddb_entry *entry)
3088{
3089 if (entry->end)
3090 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3091 else
3092 I915_WRITE(reg, 0);
3093}
3094
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003095static void skl_write_wm_values(struct drm_i915_private *dev_priv,
3096 const struct skl_wm_values *new)
3097{
3098 struct drm_device *dev = dev_priv->dev;
3099 struct intel_crtc *crtc;
3100
3101 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
3102 int i, level, max_level = ilk_wm_max_level(dev);
3103 enum pipe pipe = crtc->pipe;
3104
Damien Lespiau5d374d92014-11-04 17:07:00 +00003105 if (!new->dirty[pipe])
3106 continue;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003107
Damien Lespiau5d374d92014-11-04 17:07:00 +00003108 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
3109
3110 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003111 for (i = 0; i < intel_num_planes(crtc); i++)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003112 I915_WRITE(PLANE_WM(pipe, i, level),
3113 new->plane[pipe][i][level]);
3114 I915_WRITE(CUR_WM(pipe, level),
3115 new->cursor[pipe][level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003116 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003117 for (i = 0; i < intel_num_planes(crtc); i++)
3118 I915_WRITE(PLANE_WM_TRANS(pipe, i),
3119 new->plane_trans[pipe][i]);
3120 I915_WRITE(CUR_WM_TRANS(pipe), new->cursor_trans[pipe]);
3121
3122 for (i = 0; i < intel_num_planes(crtc); i++)
3123 skl_ddb_entry_write(dev_priv,
3124 PLANE_BUF_CFG(pipe, i),
3125 &new->ddb.plane[pipe][i]);
3126
3127 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
3128 &new->ddb.cursor[pipe]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003129 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003130}
3131
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003132/*
3133 * When setting up a new DDB allocation arrangement, we need to correctly
3134 * sequence the times at which the new allocations for the pipes are taken into
3135 * account or we'll have pipes fetching from space previously allocated to
3136 * another pipe.
3137 *
3138 * Roughly the sequence looks like:
3139 * 1. re-allocate the pipe(s) with the allocation being reduced and not
3140 * overlapping with a previous light-up pipe (another way to put it is:
3141 * pipes with their new allocation strickly included into their old ones).
3142 * 2. re-allocate the other pipes that get their allocation reduced
3143 * 3. allocate the pipes having their allocation increased
3144 *
3145 * Steps 1. and 2. are here to take care of the following case:
3146 * - Initially DDB looks like this:
3147 * | B | C |
3148 * - enable pipe A.
3149 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
3150 * allocation
3151 * | A | B | C |
3152 *
3153 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
3154 */
3155
Damien Lespiaud21b7952014-11-04 17:07:03 +00003156static void
3157skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003158{
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003159 int plane;
3160
Damien Lespiaud21b7952014-11-04 17:07:03 +00003161 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
3162
Damien Lespiaudd740782015-02-28 14:54:08 +00003163 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003164 I915_WRITE(PLANE_SURF(pipe, plane),
3165 I915_READ(PLANE_SURF(pipe, plane)));
3166 }
3167 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3168}
3169
3170static bool
3171skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
3172 const struct skl_ddb_allocation *new,
3173 enum pipe pipe)
3174{
3175 uint16_t old_size, new_size;
3176
3177 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
3178 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
3179
3180 return old_size != new_size &&
3181 new->pipe[pipe].start >= old->pipe[pipe].start &&
3182 new->pipe[pipe].end <= old->pipe[pipe].end;
3183}
3184
3185static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
3186 struct skl_wm_values *new_values)
3187{
3188 struct drm_device *dev = dev_priv->dev;
3189 struct skl_ddb_allocation *cur_ddb, *new_ddb;
3190 bool reallocated[I915_MAX_PIPES] = {false, false, false};
3191 struct intel_crtc *crtc;
3192 enum pipe pipe;
3193
3194 new_ddb = &new_values->ddb;
3195 cur_ddb = &dev_priv->wm.skl_hw.ddb;
3196
3197 /*
3198 * First pass: flush the pipes with the new allocation contained into
3199 * the old space.
3200 *
3201 * We'll wait for the vblank on those pipes to ensure we can safely
3202 * re-allocate the freed space without this pipe fetching from it.
3203 */
3204 for_each_intel_crtc(dev, crtc) {
3205 if (!crtc->active)
3206 continue;
3207
3208 pipe = crtc->pipe;
3209
3210 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
3211 continue;
3212
Damien Lespiaud21b7952014-11-04 17:07:03 +00003213 skl_wm_flush_pipe(dev_priv, pipe, 1);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003214 intel_wait_for_vblank(dev, pipe);
3215
3216 reallocated[pipe] = true;
3217 }
3218
3219
3220 /*
3221 * Second pass: flush the pipes that are having their allocation
3222 * reduced, but overlapping with a previous allocation.
3223 *
3224 * Here as well we need to wait for the vblank to make sure the freed
3225 * space is not used anymore.
3226 */
3227 for_each_intel_crtc(dev, crtc) {
3228 if (!crtc->active)
3229 continue;
3230
3231 pipe = crtc->pipe;
3232
3233 if (reallocated[pipe])
3234 continue;
3235
3236 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3237 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
Damien Lespiaud21b7952014-11-04 17:07:03 +00003238 skl_wm_flush_pipe(dev_priv, pipe, 2);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003239 intel_wait_for_vblank(dev, pipe);
Sonika Jindald9d8e6b2014-12-11 17:58:15 +05303240 reallocated[pipe] = true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003241 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003242 }
3243
3244 /*
3245 * Third pass: flush the pipes that got more space allocated.
3246 *
3247 * We don't need to actively wait for the update here, next vblank
3248 * will just get more DDB space with the correct WM values.
3249 */
3250 for_each_intel_crtc(dev, crtc) {
3251 if (!crtc->active)
3252 continue;
3253
3254 pipe = crtc->pipe;
3255
3256 /*
3257 * At this point, only the pipes more space than before are
3258 * left to re-allocate.
3259 */
3260 if (reallocated[pipe])
3261 continue;
3262
Damien Lespiaud21b7952014-11-04 17:07:03 +00003263 skl_wm_flush_pipe(dev_priv, pipe, 3);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003264 }
3265}
3266
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003267static bool skl_update_pipe_wm(struct drm_crtc *crtc,
3268 struct skl_pipe_wm_parameters *params,
3269 struct intel_wm_config *config,
3270 struct skl_ddb_allocation *ddb, /* out */
3271 struct skl_pipe_wm *pipe_wm /* out */)
3272{
3273 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3274
3275 skl_compute_wm_pipe_parameters(crtc, params);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003276 skl_allocate_pipe_ddb(crtc, config, params, ddb);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003277 skl_compute_pipe_wm(crtc, ddb, params, pipe_wm);
3278
3279 if (!memcmp(&intel_crtc->wm.skl_active, pipe_wm, sizeof(*pipe_wm)))
3280 return false;
3281
3282 intel_crtc->wm.skl_active = *pipe_wm;
3283 return true;
3284}
3285
3286static void skl_update_other_pipe_wm(struct drm_device *dev,
3287 struct drm_crtc *crtc,
3288 struct intel_wm_config *config,
3289 struct skl_wm_values *r)
3290{
3291 struct intel_crtc *intel_crtc;
3292 struct intel_crtc *this_crtc = to_intel_crtc(crtc);
3293
3294 /*
3295 * If the WM update hasn't changed the allocation for this_crtc (the
3296 * crtc we are currently computing the new WM values for), other
3297 * enabled crtcs will keep the same allocation and we don't need to
3298 * recompute anything for them.
3299 */
3300 if (!skl_ddb_allocation_changed(&r->ddb, this_crtc))
3301 return;
3302
3303 /*
3304 * Otherwise, because of this_crtc being freshly enabled/disabled, the
3305 * other active pipes need new DDB allocation and WM values.
3306 */
3307 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
3308 base.head) {
3309 struct skl_pipe_wm_parameters params = {};
3310 struct skl_pipe_wm pipe_wm = {};
3311 bool wm_changed;
3312
3313 if (this_crtc->pipe == intel_crtc->pipe)
3314 continue;
3315
3316 if (!intel_crtc->active)
3317 continue;
3318
3319 wm_changed = skl_update_pipe_wm(&intel_crtc->base,
3320 &params, config,
3321 &r->ddb, &pipe_wm);
3322
3323 /*
3324 * If we end up re-computing the other pipe WM values, it's
3325 * because it was really needed, so we expect the WM values to
3326 * be different.
3327 */
3328 WARN_ON(!wm_changed);
3329
3330 skl_compute_wm_results(dev, &params, &pipe_wm, r, intel_crtc);
3331 r->dirty[intel_crtc->pipe] = true;
3332 }
3333}
3334
3335static void skl_update_wm(struct drm_crtc *crtc)
3336{
3337 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3338 struct drm_device *dev = crtc->dev;
3339 struct drm_i915_private *dev_priv = dev->dev_private;
3340 struct skl_pipe_wm_parameters params = {};
3341 struct skl_wm_values *results = &dev_priv->wm.skl_results;
3342 struct skl_pipe_wm pipe_wm = {};
3343 struct intel_wm_config config = {};
3344
3345 memset(results, 0, sizeof(*results));
3346
3347 skl_compute_wm_global_parameters(dev, &config);
3348
3349 if (!skl_update_pipe_wm(crtc, &params, &config,
3350 &results->ddb, &pipe_wm))
3351 return;
3352
3353 skl_compute_wm_results(dev, &params, &pipe_wm, results, intel_crtc);
3354 results->dirty[intel_crtc->pipe] = true;
3355
3356 skl_update_other_pipe_wm(dev, crtc, &config, results);
3357 skl_write_wm_values(dev_priv, results);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003358 skl_flush_wm_values(dev_priv, results);
Damien Lespiau53b0deb2014-11-04 17:06:48 +00003359
3360 /* store the new configuration */
3361 dev_priv->wm.skl_hw = *results;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003362}
3363
3364static void
3365skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc,
3366 uint32_t sprite_width, uint32_t sprite_height,
3367 int pixel_size, bool enabled, bool scaled)
3368{
3369 struct intel_plane *intel_plane = to_intel_plane(plane);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003370 struct drm_framebuffer *fb = plane->state->fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003371
3372 intel_plane->wm.enabled = enabled;
3373 intel_plane->wm.scaled = scaled;
3374 intel_plane->wm.horiz_pixels = sprite_width;
3375 intel_plane->wm.vert_pixels = sprite_height;
3376 intel_plane->wm.bytes_per_pixel = pixel_size;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003377 intel_plane->wm.tiling = DRM_FORMAT_MOD_NONE;
3378 /*
3379 * Framebuffer can be NULL on plane disable, but it does not
3380 * matter for watermarks if we assume no tiling in that case.
3381 */
3382 if (fb)
3383 intel_plane->wm.tiling = fb->modifier[0];
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003384 intel_plane->wm.rotation = plane->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003385
3386 skl_update_wm(crtc);
3387}
3388
Imre Deak820c1982013-12-17 14:46:36 +02003389static void ilk_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003390{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003391 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003392 struct drm_device *dev = crtc->dev;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003393 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003394 struct ilk_wm_maximums max;
3395 struct ilk_pipe_wm_parameters params = {};
3396 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003397 enum intel_ddb_partitioning partitioning;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003398 struct intel_pipe_wm pipe_wm = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003399 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003400 struct intel_wm_config config = {};
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003401
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003402 ilk_compute_wm_parameters(crtc, &params);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003403
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003404 intel_compute_pipe_wm(crtc, &params, &pipe_wm);
3405
3406 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
3407 return;
3408
3409 intel_crtc->wm.active = pipe_wm;
3410
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003411 ilk_compute_wm_config(dev, &config);
3412
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003413 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003414 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03003415
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003416 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03003417 if (INTEL_INFO(dev)->gen >= 7 &&
3418 config.num_pipes_active == 1 && config.sprites_enabled) {
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003419 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003420 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003421
Imre Deak820c1982013-12-17 14:46:36 +02003422 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003423 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003424 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003425 }
3426
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003427 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003428 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003429
Imre Deak820c1982013-12-17 14:46:36 +02003430 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003431
Imre Deak820c1982013-12-17 14:46:36 +02003432 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003433}
3434
Damien Lespiaued57cb82014-07-15 09:21:24 +02003435static void
3436ilk_update_sprite_wm(struct drm_plane *plane,
3437 struct drm_crtc *crtc,
3438 uint32_t sprite_width, uint32_t sprite_height,
3439 int pixel_size, bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03003440{
Ville Syrjälä8553c182013-12-05 15:51:39 +02003441 struct drm_device *dev = plane->dev;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003442 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003443
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003444 intel_plane->wm.enabled = enabled;
3445 intel_plane->wm.scaled = scaled;
3446 intel_plane->wm.horiz_pixels = sprite_width;
Damien Lespiaued57cb82014-07-15 09:21:24 +02003447 intel_plane->wm.vert_pixels = sprite_width;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003448 intel_plane->wm.bytes_per_pixel = pixel_size;
Paulo Zanoni526682e2013-05-24 11:59:18 -03003449
Ville Syrjälä8553c182013-12-05 15:51:39 +02003450 /*
3451 * IVB workaround: must disable low power watermarks for at least
3452 * one frame before enabling scaling. LP watermarks can be re-enabled
3453 * when scaling is disabled.
3454 *
3455 * WaCxSRDisabledForSpriteScaling:ivb
3456 */
3457 if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev))
3458 intel_wait_for_vblank(dev, intel_plane->pipe);
3459
Imre Deak820c1982013-12-17 14:46:36 +02003460 ilk_update_wm(crtc);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003461}
3462
Pradeep Bhat30789992014-11-04 17:06:45 +00003463static void skl_pipe_wm_active_state(uint32_t val,
3464 struct skl_pipe_wm *active,
3465 bool is_transwm,
3466 bool is_cursor,
3467 int i,
3468 int level)
3469{
3470 bool is_enabled = (val & PLANE_WM_EN) != 0;
3471
3472 if (!is_transwm) {
3473 if (!is_cursor) {
3474 active->wm[level].plane_en[i] = is_enabled;
3475 active->wm[level].plane_res_b[i] =
3476 val & PLANE_WM_BLOCKS_MASK;
3477 active->wm[level].plane_res_l[i] =
3478 (val >> PLANE_WM_LINES_SHIFT) &
3479 PLANE_WM_LINES_MASK;
3480 } else {
3481 active->wm[level].cursor_en = is_enabled;
3482 active->wm[level].cursor_res_b =
3483 val & PLANE_WM_BLOCKS_MASK;
3484 active->wm[level].cursor_res_l =
3485 (val >> PLANE_WM_LINES_SHIFT) &
3486 PLANE_WM_LINES_MASK;
3487 }
3488 } else {
3489 if (!is_cursor) {
3490 active->trans_wm.plane_en[i] = is_enabled;
3491 active->trans_wm.plane_res_b[i] =
3492 val & PLANE_WM_BLOCKS_MASK;
3493 active->trans_wm.plane_res_l[i] =
3494 (val >> PLANE_WM_LINES_SHIFT) &
3495 PLANE_WM_LINES_MASK;
3496 } else {
3497 active->trans_wm.cursor_en = is_enabled;
3498 active->trans_wm.cursor_res_b =
3499 val & PLANE_WM_BLOCKS_MASK;
3500 active->trans_wm.cursor_res_l =
3501 (val >> PLANE_WM_LINES_SHIFT) &
3502 PLANE_WM_LINES_MASK;
3503 }
3504 }
3505}
3506
3507static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3508{
3509 struct drm_device *dev = crtc->dev;
3510 struct drm_i915_private *dev_priv = dev->dev_private;
3511 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
3512 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3513 struct skl_pipe_wm *active = &intel_crtc->wm.skl_active;
3514 enum pipe pipe = intel_crtc->pipe;
3515 int level, i, max_level;
3516 uint32_t temp;
3517
3518 max_level = ilk_wm_max_level(dev);
3519
3520 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3521
3522 for (level = 0; level <= max_level; level++) {
3523 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3524 hw->plane[pipe][i][level] =
3525 I915_READ(PLANE_WM(pipe, i, level));
3526 hw->cursor[pipe][level] = I915_READ(CUR_WM(pipe, level));
3527 }
3528
3529 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3530 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
3531 hw->cursor_trans[pipe] = I915_READ(CUR_WM_TRANS(pipe));
3532
Matt Roper3ef00282015-03-09 10:19:24 -07003533 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00003534 return;
3535
3536 hw->dirty[pipe] = true;
3537
3538 active->linetime = hw->wm_linetime[pipe];
3539
3540 for (level = 0; level <= max_level; level++) {
3541 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3542 temp = hw->plane[pipe][i][level];
3543 skl_pipe_wm_active_state(temp, active, false,
3544 false, i, level);
3545 }
3546 temp = hw->cursor[pipe][level];
3547 skl_pipe_wm_active_state(temp, active, false, true, i, level);
3548 }
3549
3550 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3551 temp = hw->plane_trans[pipe][i];
3552 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
3553 }
3554
3555 temp = hw->cursor_trans[pipe];
3556 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
3557}
3558
3559void skl_wm_get_hw_state(struct drm_device *dev)
3560{
Damien Lespiaua269c582014-11-04 17:06:49 +00003561 struct drm_i915_private *dev_priv = dev->dev_private;
3562 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00003563 struct drm_crtc *crtc;
3564
Damien Lespiaua269c582014-11-04 17:06:49 +00003565 skl_ddb_get_hw_state(dev_priv, ddb);
Pradeep Bhat30789992014-11-04 17:06:45 +00003566 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3567 skl_pipe_wm_get_hw_state(crtc);
3568}
3569
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003570static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3571{
3572 struct drm_device *dev = crtc->dev;
3573 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003574 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003575 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3576 struct intel_pipe_wm *active = &intel_crtc->wm.active;
3577 enum pipe pipe = intel_crtc->pipe;
3578 static const unsigned int wm0_pipe_reg[] = {
3579 [PIPE_A] = WM0_PIPEA_ILK,
3580 [PIPE_B] = WM0_PIPEB_ILK,
3581 [PIPE_C] = WM0_PIPEC_IVB,
3582 };
3583
3584 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003585 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02003586 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003587
Matt Roper3ef00282015-03-09 10:19:24 -07003588 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003589
3590 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003591 u32 tmp = hw->wm_pipe[pipe];
3592
3593 /*
3594 * For active pipes LP0 watermark is marked as
3595 * enabled, and LP1+ watermaks as disabled since
3596 * we can't really reverse compute them in case
3597 * multiple pipes are active.
3598 */
3599 active->wm[0].enable = true;
3600 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3601 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3602 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3603 active->linetime = hw->wm_linetime[pipe];
3604 } else {
3605 int level, max_level = ilk_wm_max_level(dev);
3606
3607 /*
3608 * For inactive pipes, all watermark levels
3609 * should be marked as enabled but zeroed,
3610 * which is what we'd compute them to.
3611 */
3612 for (level = 0; level <= max_level; level++)
3613 active->wm[level].enable = true;
3614 }
3615}
3616
3617void ilk_wm_get_hw_state(struct drm_device *dev)
3618{
3619 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003620 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003621 struct drm_crtc *crtc;
3622
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003623 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003624 ilk_pipe_wm_get_hw_state(crtc);
3625
3626 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
3627 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
3628 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
3629
3630 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02003631 if (INTEL_INFO(dev)->gen >= 7) {
3632 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
3633 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
3634 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003635
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003636 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003637 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
3638 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
3639 else if (IS_IVYBRIDGE(dev))
3640 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
3641 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003642
3643 hw->enable_fbc_wm =
3644 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
3645}
3646
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003647/**
3648 * intel_update_watermarks - update FIFO watermark values based on current modes
3649 *
3650 * Calculate watermark values for the various WM regs based on current mode
3651 * and plane configuration.
3652 *
3653 * There are several cases to deal with here:
3654 * - normal (i.e. non-self-refresh)
3655 * - self-refresh (SR) mode
3656 * - lines are large relative to FIFO size (buffer can hold up to 2)
3657 * - lines are small relative to FIFO size (buffer can hold more than 2
3658 * lines), so need to account for TLB latency
3659 *
3660 * The normal calculation is:
3661 * watermark = dotclock * bytes per pixel * latency
3662 * where latency is platform & configuration dependent (we assume pessimal
3663 * values here).
3664 *
3665 * The SR calculation is:
3666 * watermark = (trunc(latency/line time)+1) * surface width *
3667 * bytes per pixel
3668 * where
3669 * line time = htotal / dotclock
3670 * surface width = hdisplay for normal plane and 64 for cursor
3671 * and latency is assumed to be high, as above.
3672 *
3673 * The final value programmed to the register should always be rounded up,
3674 * and include an extra 2 entries to account for clock crossings.
3675 *
3676 * We don't use the sprite, so we can ignore that. And on Crestline we have
3677 * to set the non-SR watermarks to 8.
3678 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003679void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003680{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003681 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003682
3683 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003684 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003685}
3686
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003687void intel_update_sprite_watermarks(struct drm_plane *plane,
3688 struct drm_crtc *crtc,
Damien Lespiaued57cb82014-07-15 09:21:24 +02003689 uint32_t sprite_width,
3690 uint32_t sprite_height,
3691 int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003692 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003693{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003694 struct drm_i915_private *dev_priv = plane->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003695
3696 if (dev_priv->display.update_sprite_wm)
Damien Lespiaued57cb82014-07-15 09:21:24 +02003697 dev_priv->display.update_sprite_wm(plane, crtc,
3698 sprite_width, sprite_height,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003699 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003700}
3701
Daniel Vetter92703882012-08-09 16:46:01 +02003702/**
3703 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02003704 */
3705DEFINE_SPINLOCK(mchdev_lock);
3706
3707/* Global for IPS driver to get at the current i915 device. Protected by
3708 * mchdev_lock. */
3709static struct drm_i915_private *i915_mch_dev;
3710
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003711bool ironlake_set_drps(struct drm_device *dev, u8 val)
3712{
3713 struct drm_i915_private *dev_priv = dev->dev_private;
3714 u16 rgvswctl;
3715
Daniel Vetter92703882012-08-09 16:46:01 +02003716 assert_spin_locked(&mchdev_lock);
3717
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003718 rgvswctl = I915_READ16(MEMSWCTL);
3719 if (rgvswctl & MEMCTL_CMD_STS) {
3720 DRM_DEBUG("gpu busy, RCS change rejected\n");
3721 return false; /* still busy with another command */
3722 }
3723
3724 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
3725 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
3726 I915_WRITE16(MEMSWCTL, rgvswctl);
3727 POSTING_READ16(MEMSWCTL);
3728
3729 rgvswctl |= MEMCTL_CMD_STS;
3730 I915_WRITE16(MEMSWCTL, rgvswctl);
3731
3732 return true;
3733}
3734
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003735static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003736{
3737 struct drm_i915_private *dev_priv = dev->dev_private;
3738 u32 rgvmodectl = I915_READ(MEMMODECTL);
3739 u8 fmax, fmin, fstart, vstart;
3740
Daniel Vetter92703882012-08-09 16:46:01 +02003741 spin_lock_irq(&mchdev_lock);
3742
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003743 /* Enable temp reporting */
3744 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
3745 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
3746
3747 /* 100ms RC evaluation intervals */
3748 I915_WRITE(RCUPEI, 100000);
3749 I915_WRITE(RCDNEI, 100000);
3750
3751 /* Set max/min thresholds to 90ms and 80ms respectively */
3752 I915_WRITE(RCBMAXAVG, 90000);
3753 I915_WRITE(RCBMINAVG, 80000);
3754
3755 I915_WRITE(MEMIHYST, 1);
3756
3757 /* Set up min, max, and cur for interrupt handling */
3758 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
3759 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
3760 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
3761 MEMMODE_FSTART_SHIFT;
3762
3763 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
3764 PXVFREQ_PX_SHIFT;
3765
Daniel Vetter20e4d402012-08-08 23:35:39 +02003766 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
3767 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003768
Daniel Vetter20e4d402012-08-08 23:35:39 +02003769 dev_priv->ips.max_delay = fstart;
3770 dev_priv->ips.min_delay = fmin;
3771 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003772
3773 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
3774 fmax, fmin, fstart);
3775
3776 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
3777
3778 /*
3779 * Interrupts will be enabled in ironlake_irq_postinstall
3780 */
3781
3782 I915_WRITE(VIDSTART, vstart);
3783 POSTING_READ(VIDSTART);
3784
3785 rgvmodectl |= MEMMODE_SWMODE_EN;
3786 I915_WRITE(MEMMODECTL, rgvmodectl);
3787
Daniel Vetter92703882012-08-09 16:46:01 +02003788 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003789 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetter92703882012-08-09 16:46:01 +02003790 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003791
3792 ironlake_set_drps(dev, fstart);
3793
Daniel Vetter20e4d402012-08-08 23:35:39 +02003794 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003795 I915_READ(0x112e0);
Daniel Vetter20e4d402012-08-08 23:35:39 +02003796 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
3797 dev_priv->ips.last_count2 = I915_READ(0x112f4);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00003798 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02003799
3800 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003801}
3802
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003803static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003804{
3805 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02003806 u16 rgvswctl;
3807
3808 spin_lock_irq(&mchdev_lock);
3809
3810 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003811
3812 /* Ack interrupts, disable EFC interrupt */
3813 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
3814 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
3815 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
3816 I915_WRITE(DEIIR, DE_PCU_EVENT);
3817 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
3818
3819 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02003820 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetter92703882012-08-09 16:46:01 +02003821 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003822 rgvswctl |= MEMCTL_CMD_STS;
3823 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetter92703882012-08-09 16:46:01 +02003824 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003825
Daniel Vetter92703882012-08-09 16:46:01 +02003826 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003827}
3828
Daniel Vetteracbe9472012-07-26 11:50:05 +02003829/* There's a funny hw issue where the hw returns all 0 when reading from
3830 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
3831 * ourselves, instead of doing a rmw cycle (which might result in us clearing
3832 * all limits and the gpu stuck at whatever frequency it is at atm).
3833 */
Akash Goel74ef1172015-03-06 11:07:19 +05303834static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003835{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003836 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003837
Daniel Vetter20b46e52012-07-26 11:16:14 +02003838 /* Only set the down limit when we've reached the lowest level to avoid
3839 * getting more interrupts, otherwise leave this clear. This prevents a
3840 * race in the hw when coming out of rc6: There's a tiny window where
3841 * the hw runs at the minimal clock before selecting the desired
3842 * frequency, if the down threshold expires in that window we will not
3843 * receive a down interrupt. */
Akash Goel74ef1172015-03-06 11:07:19 +05303844 if (IS_GEN9(dev_priv->dev)) {
3845 limits = (dev_priv->rps.max_freq_softlimit) << 23;
3846 if (val <= dev_priv->rps.min_freq_softlimit)
3847 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
3848 } else {
3849 limits = dev_priv->rps.max_freq_softlimit << 24;
3850 if (val <= dev_priv->rps.min_freq_softlimit)
3851 limits |= dev_priv->rps.min_freq_softlimit << 16;
3852 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02003853
3854 return limits;
3855}
3856
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003857static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
3858{
3859 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05303860 u32 threshold_up = 0, threshold_down = 0; /* in % */
3861 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003862
3863 new_power = dev_priv->rps.power;
3864 switch (dev_priv->rps.power) {
3865 case LOW_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07003866 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003867 new_power = BETWEEN;
3868 break;
3869
3870 case BETWEEN:
Ben Widawskyb39fb292014-03-19 18:31:11 -07003871 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003872 new_power = LOW_POWER;
Ben Widawskyb39fb292014-03-19 18:31:11 -07003873 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003874 new_power = HIGH_POWER;
3875 break;
3876
3877 case HIGH_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07003878 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 +01003879 new_power = BETWEEN;
3880 break;
3881 }
3882 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00003883 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003884 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00003885 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003886 new_power = HIGH_POWER;
3887 if (new_power == dev_priv->rps.power)
3888 return;
3889
3890 /* Note the units here are not exactly 1us, but 1280ns. */
3891 switch (new_power) {
3892 case LOW_POWER:
3893 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05303894 ei_up = 16000;
3895 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003896
3897 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05303898 ei_down = 32000;
3899 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003900 break;
3901
3902 case BETWEEN:
3903 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05303904 ei_up = 13000;
3905 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003906
3907 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05303908 ei_down = 32000;
3909 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003910 break;
3911
3912 case HIGH_POWER:
3913 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05303914 ei_up = 10000;
3915 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003916
3917 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05303918 ei_down = 32000;
3919 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003920 break;
3921 }
3922
Akash Goel8a586432015-03-06 11:07:18 +05303923 I915_WRITE(GEN6_RP_UP_EI,
3924 GT_INTERVAL_FROM_US(dev_priv, ei_up));
3925 I915_WRITE(GEN6_RP_UP_THRESHOLD,
3926 GT_INTERVAL_FROM_US(dev_priv, (ei_up * threshold_up / 100)));
3927
3928 I915_WRITE(GEN6_RP_DOWN_EI,
3929 GT_INTERVAL_FROM_US(dev_priv, ei_down));
3930 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
3931 GT_INTERVAL_FROM_US(dev_priv, (ei_down * threshold_down / 100)));
3932
3933 I915_WRITE(GEN6_RP_CONTROL,
3934 GEN6_RP_MEDIA_TURBO |
3935 GEN6_RP_MEDIA_HW_NORMAL_MODE |
3936 GEN6_RP_MEDIA_IS_GFX |
3937 GEN6_RP_ENABLE |
3938 GEN6_RP_UP_BUSY_AVG |
3939 GEN6_RP_DOWN_IDLE_AVG);
3940
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003941 dev_priv->rps.power = new_power;
3942 dev_priv->rps.last_adj = 0;
3943}
3944
Chris Wilson2876ce72014-03-28 08:03:34 +00003945static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
3946{
3947 u32 mask = 0;
3948
3949 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00003950 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00003951 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00003952 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00003953
Chris Wilson7b3c29f2014-07-10 20:31:19 +01003954 mask &= dev_priv->pm_rps_events;
3955
Imre Deak59d02a12014-12-19 19:33:26 +02003956 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00003957}
3958
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06003959/* gen6_set_rps is called to update the frequency request, but should also be
3960 * called when the range (min_delay and max_delay) is modified so that we can
3961 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Ville Syrjäläffe02b42015-02-02 19:09:50 +02003962static void gen6_set_rps(struct drm_device *dev, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02003963{
3964 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003965
Jesse Barnes4fc688c2012-11-02 11:14:01 -07003966 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00003967 WARN_ON(val > dev_priv->rps.max_freq);
3968 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02003969
Chris Wilsoneb64cad2014-03-27 08:24:20 +00003970 /* min/max delay may still have been modified so be sure to
3971 * write the limits value.
3972 */
3973 if (val != dev_priv->rps.cur_freq) {
3974 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06003975
Akash Goel57041952015-03-06 11:07:17 +05303976 if (IS_GEN9(dev))
3977 I915_WRITE(GEN6_RPNSWREQ,
3978 GEN9_FREQUENCY(val));
3979 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00003980 I915_WRITE(GEN6_RPNSWREQ,
3981 HSW_FREQUENCY(val));
3982 else
3983 I915_WRITE(GEN6_RPNSWREQ,
3984 GEN6_FREQUENCY(val) |
3985 GEN6_OFFSET(0) |
3986 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06003987 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003988
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003989 /* Make sure we continue to get interrupts
3990 * until we hit the minimum or maximum frequencies.
3991 */
Akash Goel74ef1172015-03-06 11:07:19 +05303992 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00003993 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003994
Ben Widawskyd5570a72012-09-07 19:43:41 -07003995 POSTING_READ(GEN6_RPNSWREQ);
3996
Ben Widawskyb39fb292014-03-19 18:31:11 -07003997 dev_priv->rps.cur_freq = val;
Daniel Vetterbe2cde9a2012-08-30 13:26:48 +02003998 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003999}
4000
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004001static void valleyview_set_rps(struct drm_device *dev, u8 val)
4002{
4003 struct drm_i915_private *dev_priv = dev->dev_private;
4004
4005 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004006 WARN_ON(val > dev_priv->rps.max_freq);
4007 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004008
4009 if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1),
4010 "Odd GPU freq value\n"))
4011 val &= ~1;
4012
4013 if (val != dev_priv->rps.cur_freq)
4014 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
4015
4016 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4017
4018 dev_priv->rps.cur_freq = val;
4019 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4020}
4021
Deepak S76c3552f2014-01-30 23:08:16 +05304022/* vlv_set_rps_idle: Set the frequency to Rpn if Gfx clocks are down
4023 *
4024 * * If Gfx is Idle, then
4025 * 1. Mask Turbo interrupts
4026 * 2. Bring up Gfx clock
4027 * 3. Change the freq to Rpn and wait till P-Unit updates freq
4028 * 4. Clear the Force GFX CLK ON bit so that Gfx can down
4029 * 5. Unmask Turbo interrupts
4030*/
4031static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4032{
Deepak S5549d252014-06-28 11:26:11 +05304033 struct drm_device *dev = dev_priv->dev;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004034 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304035
Ville Syrjälä21a11ff2015-01-27 16:36:15 +02004036 /* CHV and latest VLV don't need to force the gfx clock */
4037 if (IS_CHERRYVIEW(dev) || dev->pdev->revision >= 0xd) {
Chris Wilsonaed242f2015-03-18 09:48:21 +00004038 valleyview_set_rps(dev_priv->dev, val);
Deepak S5549d252014-06-28 11:26:11 +05304039 return;
4040 }
4041
Deepak S76c3552f2014-01-30 23:08:16 +05304042 /*
4043 * When we are idle. Drop to min voltage state.
4044 */
4045
Chris Wilsonaed242f2015-03-18 09:48:21 +00004046 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304047 return;
4048
4049 /* Mask turbo interrupt so that they will not come in between */
Imre Deakf24eeb12014-12-19 19:33:27 +02004050 I915_WRITE(GEN6_PMINTRMSK,
4051 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Deepak S76c3552f2014-01-30 23:08:16 +05304052
Imre Deak650ad972014-04-18 16:35:02 +03004053 vlv_force_gfx_clock(dev_priv, true);
Deepak S76c3552f2014-01-30 23:08:16 +05304054
Chris Wilsonaed242f2015-03-18 09:48:21 +00004055 dev_priv->rps.cur_freq = val;
Deepak S76c3552f2014-01-30 23:08:16 +05304056
Chris Wilsonaed242f2015-03-18 09:48:21 +00004057 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Deepak S76c3552f2014-01-30 23:08:16 +05304058
4059 if (wait_for(((vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS))
Imre Deak2837ac42014-11-19 16:25:38 +02004060 & GENFREQSTATUS) == 0, 100))
Deepak S76c3552f2014-01-30 23:08:16 +05304061 DRM_ERROR("timed out waiting for Punit\n");
4062
Imre Deak650ad972014-04-18 16:35:02 +03004063 vlv_force_gfx_clock(dev_priv, false);
Deepak S76c3552f2014-01-30 23:08:16 +05304064
Chris Wilsonaed242f2015-03-18 09:48:21 +00004065 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Deepak S76c3552f2014-01-30 23:08:16 +05304066}
4067
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004068void gen6_rps_busy(struct drm_i915_private *dev_priv)
4069{
4070 mutex_lock(&dev_priv->rps.hw_lock);
4071 if (dev_priv->rps.enabled) {
4072 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4073 gen6_rps_reset_ei(dev_priv);
4074 I915_WRITE(GEN6_PMINTRMSK,
4075 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
4076 }
4077 mutex_unlock(&dev_priv->rps.hw_lock);
4078}
4079
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004080void gen6_rps_idle(struct drm_i915_private *dev_priv)
4081{
Damien Lespiau691bb712013-12-12 14:36:36 +00004082 struct drm_device *dev = dev_priv->dev;
4083
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004084 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004085 if (dev_priv->rps.enabled) {
Ville Syrjälä21a11ff2015-01-27 16:36:15 +02004086 if (IS_VALLEYVIEW(dev))
Deepak S76c3552f2014-01-30 23:08:16 +05304087 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004088 else
Chris Wilsonaed242f2015-03-18 09:48:21 +00004089 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004090 dev_priv->rps.last_adj = 0;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004091 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004092 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004093 mutex_unlock(&dev_priv->rps.hw_lock);
4094}
4095
4096void gen6_rps_boost(struct drm_i915_private *dev_priv)
4097{
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004098 u32 val;
4099
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004100 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004101 val = dev_priv->rps.max_freq_softlimit;
4102 if (dev_priv->rps.enabled &&
4103 dev_priv->mm.busy &&
4104 dev_priv->rps.cur_freq < val) {
4105 intel_set_rps(dev_priv->dev, val);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004106 dev_priv->rps.last_adj = 0;
4107 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004108 mutex_unlock(&dev_priv->rps.hw_lock);
4109}
4110
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004111void intel_set_rps(struct drm_device *dev, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004112{
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004113 if (IS_VALLEYVIEW(dev))
4114 valleyview_set_rps(dev, val);
4115 else
4116 gen6_set_rps(dev, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004117}
4118
Zhe Wang20e49362014-11-04 17:07:05 +00004119static void gen9_disable_rps(struct drm_device *dev)
4120{
4121 struct drm_i915_private *dev_priv = dev->dev_private;
4122
4123 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004124 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004125}
4126
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004127static void gen6_disable_rps(struct drm_device *dev)
4128{
4129 struct drm_i915_private *dev_priv = dev->dev_private;
4130
4131 I915_WRITE(GEN6_RC_CONTROL, 0);
4132 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004133}
4134
Deepak S38807742014-05-23 21:00:15 +05304135static void cherryview_disable_rps(struct drm_device *dev)
4136{
4137 struct drm_i915_private *dev_priv = dev->dev_private;
4138
4139 I915_WRITE(GEN6_RC_CONTROL, 0);
4140}
4141
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004142static void valleyview_disable_rps(struct drm_device *dev)
4143{
4144 struct drm_i915_private *dev_priv = dev->dev_private;
4145
Deepak S98a2e5f2014-08-18 10:35:27 -07004146 /* we're doing forcewake before Disabling RC6,
4147 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02004148 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07004149
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004150 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004151
Mika Kuoppala59bad942015-01-16 11:34:40 +02004152 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004153}
4154
Ben Widawskydc39fff2013-10-18 12:32:07 -07004155static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
4156{
Imre Deak91ca6892014-04-14 20:24:25 +03004157 if (IS_VALLEYVIEW(dev)) {
4158 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
4159 mode = GEN6_RC_CTL_RC6_ENABLE;
4160 else
4161 mode = 0;
4162 }
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004163 if (HAS_RC6p(dev))
4164 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
4165 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
4166 (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
4167 (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
4168
4169 else
4170 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
4171 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off");
Ben Widawskydc39fff2013-10-18 12:32:07 -07004172}
4173
Imre Deake6069ca2014-04-18 16:01:02 +03004174static int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004175{
Damien Lespiaueb4926e2013-06-07 17:41:14 +01004176 /* No RC6 before Ironlake */
4177 if (INTEL_INFO(dev)->gen < 5)
4178 return 0;
4179
Imre Deake6069ca2014-04-18 16:01:02 +03004180 /* RC6 is only on Ironlake mobile not on desktop */
4181 if (INTEL_INFO(dev)->gen == 5 && !IS_IRONLAKE_M(dev))
4182 return 0;
4183
Daniel Vetter456470e2012-08-08 23:35:40 +02004184 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03004185 if (enable_rc6 >= 0) {
4186 int mask;
4187
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004188 if (HAS_RC6p(dev))
Imre Deake6069ca2014-04-18 16:01:02 +03004189 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
4190 INTEL_RC6pp_ENABLE;
4191 else
4192 mask = INTEL_RC6_ENABLE;
4193
4194 if ((enable_rc6 & mask) != enable_rc6)
Daniel Vetter8dfd1f02014-08-04 11:15:56 +02004195 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
4196 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03004197
4198 return enable_rc6 & mask;
4199 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004200
Chris Wilson6567d742012-11-10 10:00:06 +00004201 /* Disable RC6 on Ironlake */
4202 if (INTEL_INFO(dev)->gen == 5)
4203 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004204
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004205 if (IS_IVYBRIDGE(dev))
Ben Widawskycca84a12014-01-28 20:25:38 -08004206 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004207
4208 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004209}
4210
Imre Deake6069ca2014-04-18 16:01:02 +03004211int intel_enable_rc6(const struct drm_device *dev)
4212{
4213 return i915.enable_rc6;
4214}
4215
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004216static void gen6_init_rps_frequencies(struct drm_device *dev)
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004217{
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004218 struct drm_i915_private *dev_priv = dev->dev_private;
4219 uint32_t rp_state_cap;
4220 u32 ddcc_status = 0;
4221 int ret;
4222
4223 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004224 /* All of these values are in units of 50MHz */
4225 dev_priv->rps.cur_freq = 0;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004226 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004227 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004228 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004229 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
Akash Goelcee991c2015-03-06 11:07:16 +05304230 if (IS_SKYLAKE(dev)) {
4231 /* Store the frequency values in 16.66 MHZ units, which is
4232 the natural hardware unit for SKL */
4233 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
4234 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
4235 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
4236 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004237 /* hw_max = RP0 until we check for overclocking */
4238 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
4239
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004240 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
4241 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
4242 ret = sandybridge_pcode_read(dev_priv,
4243 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
4244 &ddcc_status);
4245 if (0 == ret)
4246 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08004247 clamp_t(u8,
4248 ((ddcc_status >> 8) & 0xff),
4249 dev_priv->rps.min_freq,
4250 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004251 }
4252
Chris Wilsonaed242f2015-03-18 09:48:21 +00004253 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4254
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004255 /* Preserve min/max settings in case of re-init */
4256 if (dev_priv->rps.max_freq_softlimit == 0)
4257 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4258
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004259 if (dev_priv->rps.min_freq_softlimit == 0) {
4260 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4261 dev_priv->rps.min_freq_softlimit =
Tom O'Rourkef4ab4082014-11-19 14:21:53 -08004262 /* max(RPe, 450 MHz) */
4263 max(dev_priv->rps.efficient_freq, (u8) 9);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004264 else
4265 dev_priv->rps.min_freq_softlimit =
4266 dev_priv->rps.min_freq;
4267 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004268}
4269
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004270/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Zhe Wang20e49362014-11-04 17:07:05 +00004271static void gen9_enable_rps(struct drm_device *dev)
4272{
4273 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004274
4275 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4276
Damien Lespiauba1c5542015-01-16 18:07:26 +00004277 gen6_init_rps_frequencies(dev);
4278
Akash Goel0beb0592015-03-06 11:07:20 +05304279 /* Program defaults and thresholds for RPS*/
4280 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4281 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004282
Akash Goel0beb0592015-03-06 11:07:20 +05304283 /* 1 second timeout*/
4284 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
4285 GT_INTERVAL_FROM_US(dev_priv, 1000000));
4286
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004287 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004288
Akash Goel0beb0592015-03-06 11:07:20 +05304289 /* Leaning on the below call to gen6_set_rps to program/setup the
4290 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
4291 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
4292 dev_priv->rps.power = HIGH_POWER; /* force a reset */
4293 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004294
4295 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4296}
4297
4298static void gen9_enable_rc6(struct drm_device *dev)
4299{
4300 struct drm_i915_private *dev_priv = dev->dev_private;
Zhe Wang20e49362014-11-04 17:07:05 +00004301 struct intel_engine_cs *ring;
4302 uint32_t rc6_mask = 0;
4303 int unused;
4304
4305 /* 1a: Software RC state - RC0 */
4306 I915_WRITE(GEN6_RC_STATE, 0);
4307
4308 /* 1b: Get forcewake during program sequence. Although the driver
4309 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004310 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004311
4312 /* 2a: Disable RC states. */
4313 I915_WRITE(GEN6_RC_CONTROL, 0);
4314
4315 /* 2b: Program RC6 thresholds.*/
4316 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
4317 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4318 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4319 for_each_ring(ring, dev_priv, unused)
4320 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4321 I915_WRITE(GEN6_RC_SLEEP, 0);
4322 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
4323
Zhe Wang38c23522015-01-20 12:23:04 +00004324 /* 2c: Program Coarse Power Gating Policies. */
4325 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
4326 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
4327
Zhe Wang20e49362014-11-04 17:07:05 +00004328 /* 3a: Enable RC6 */
4329 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4330 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
4331 DRM_INFO("RC6 %s\n", (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4332 "on" : "off");
4333 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4334 GEN6_RC_CTL_EI_MODE(1) |
4335 rc6_mask);
4336
Zhe Wang38c23522015-01-20 12:23:04 +00004337 /* 3b: Enable Coarse Power Gating only when RC6 is enabled */
4338 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ? 3 : 0);
4339
Mika Kuoppala59bad942015-01-16 11:34:40 +02004340 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004341
4342}
4343
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004344static void gen8_enable_rps(struct drm_device *dev)
4345{
4346 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004347 struct intel_engine_cs *ring;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004348 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004349 int unused;
4350
4351 /* 1a: Software RC state - RC0 */
4352 I915_WRITE(GEN6_RC_STATE, 0);
4353
4354 /* 1c & 1d: Get forcewake during program sequence. Although the driver
4355 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004356 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004357
4358 /* 2a: Disable RC states. */
4359 I915_WRITE(GEN6_RC_CONTROL, 0);
4360
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004361 /* Initialize rps frequencies */
4362 gen6_init_rps_frequencies(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004363
4364 /* 2b: Program RC6 thresholds.*/
4365 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
4366 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4367 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4368 for_each_ring(ring, dev_priv, unused)
4369 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4370 I915_WRITE(GEN6_RC_SLEEP, 0);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004371 if (IS_BROADWELL(dev))
4372 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
4373 else
4374 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004375
4376 /* 3: Enable RC6 */
4377 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4378 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Ben Widawskyabbf9d22014-01-28 20:25:41 -08004379 intel_print_rc6_info(dev, rc6_mask);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004380 if (IS_BROADWELL(dev))
4381 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4382 GEN7_RC_CTL_TO_MODE |
4383 rc6_mask);
4384 else
4385 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4386 GEN6_RC_CTL_EI_MODE(1) |
4387 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004388
4389 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07004390 I915_WRITE(GEN6_RPNSWREQ,
4391 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
4392 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4393 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02004394 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
4395 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004396
Daniel Vetter7526ed72014-09-29 15:07:19 +02004397 /* Docs recommend 900MHz, and 300 MHz respectively */
4398 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
4399 dev_priv->rps.max_freq_softlimit << 24 |
4400 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004401
Daniel Vetter7526ed72014-09-29 15:07:19 +02004402 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
4403 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
4404 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
4405 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004406
Daniel Vetter7526ed72014-09-29 15:07:19 +02004407 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004408
4409 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02004410 I915_WRITE(GEN6_RP_CONTROL,
4411 GEN6_RP_MEDIA_TURBO |
4412 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4413 GEN6_RP_MEDIA_IS_GFX |
4414 GEN6_RP_ENABLE |
4415 GEN6_RP_UP_BUSY_AVG |
4416 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004417
Daniel Vetter7526ed72014-09-29 15:07:19 +02004418 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004419
Tom O'Rourkec7f31532014-11-19 14:21:54 -08004420 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004421 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004422
Mika Kuoppala59bad942015-01-16 11:34:40 +02004423 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004424}
4425
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004426static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004427{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004428 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004429 struct intel_engine_cs *ring;
Ben Widawskyd060c162014-03-19 18:31:08 -07004430 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004431 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004432 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07004433 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004434
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004435 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004436
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004437 /* Here begins a magic sequence of register writes to enable
4438 * auto-downclocking.
4439 *
4440 * Perhaps there might be some value in exposing these to
4441 * userspace...
4442 */
4443 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004444
4445 /* Clear the DBG now so we don't confuse earlier errors */
4446 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
4447 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
4448 I915_WRITE(GTFIFODBG, gtfifodbg);
4449 }
4450
Mika Kuoppala59bad942015-01-16 11:34:40 +02004451 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004452
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004453 /* Initialize rps frequencies */
4454 gen6_init_rps_frequencies(dev);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004455
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004456 /* disable the counters and set deterministic thresholds */
4457 I915_WRITE(GEN6_RC_CONTROL, 0);
4458
4459 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
4460 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
4461 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
4462 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4463 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4464
Chris Wilsonb4519512012-05-11 14:29:30 +01004465 for_each_ring(ring, dev_priv, i)
4466 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004467
4468 I915_WRITE(GEN6_RC_SLEEP, 0);
4469 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Daniel Vetter29c78f62013-11-16 16:04:26 +01004470 if (IS_IVYBRIDGE(dev))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07004471 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
4472 else
4473 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08004474 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004475 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
4476
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004477 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004478 rc6_mode = intel_enable_rc6(dev_priv->dev);
4479 if (rc6_mode & INTEL_RC6_ENABLE)
4480 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
4481
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004482 /* We don't use those on Haswell */
4483 if (!IS_HASWELL(dev)) {
4484 if (rc6_mode & INTEL_RC6p_ENABLE)
4485 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004486
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004487 if (rc6_mode & INTEL_RC6pp_ENABLE)
4488 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
4489 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004490
Ben Widawskydc39fff2013-10-18 12:32:07 -07004491 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004492
4493 I915_WRITE(GEN6_RC_CONTROL,
4494 rc6_mask |
4495 GEN6_RC_CTL_EI_MODE(1) |
4496 GEN6_RC_CTL_HW_ENABLE);
4497
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004498 /* Power down if completely idle for over 50ms */
4499 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004500 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004501
Ben Widawsky42c05262012-09-26 10:34:00 -07004502 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawskyd060c162014-03-19 18:31:08 -07004503 if (ret)
Ben Widawsky42c05262012-09-26 10:34:00 -07004504 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Ben Widawskyd060c162014-03-19 18:31:08 -07004505
4506 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
4507 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
4508 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskyb39fb292014-03-19 18:31:11 -07004509 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
Ben Widawskyd060c162014-03-19 18:31:08 -07004510 (pcu_mbox & 0xff) * 50);
Ben Widawskyb39fb292014-03-19 18:31:11 -07004511 dev_priv->rps.max_freq = pcu_mbox & 0xff;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004512 }
4513
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004514 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004515 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004516
Ben Widawsky31643d52012-09-26 10:34:01 -07004517 rc6vids = 0;
4518 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
4519 if (IS_GEN6(dev) && ret) {
4520 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
4521 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
4522 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
4523 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
4524 rc6vids &= 0xffff00;
4525 rc6vids |= GEN6_ENCODE_RC6_VID(450);
4526 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
4527 if (ret)
4528 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
4529 }
4530
Mika Kuoppala59bad942015-01-16 11:34:40 +02004531 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004532}
4533
Imre Deakc2bc2fc2014-04-18 16:16:23 +03004534static void __gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004535{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004536 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004537 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01004538 unsigned int gpu_freq;
4539 unsigned int max_ia_freq, min_ring_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004540 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03004541 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004542
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004543 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004544
Ben Widawskyeda79642013-10-07 17:15:48 -03004545 policy = cpufreq_cpu_get(0);
4546 if (policy) {
4547 max_ia_freq = policy->cpuinfo.max_freq;
4548 cpufreq_cpu_put(policy);
4549 } else {
4550 /*
4551 * Default to measured freq if none found, PCU will ensure we
4552 * don't go over
4553 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004554 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03004555 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004556
4557 /* Convert from kHz to MHz */
4558 max_ia_freq /= 1000;
4559
Ben Widawsky153b4b952013-10-22 22:05:09 -07004560 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07004561 /* convert DDR frequency from units of 266.6MHz to bandwidth */
4562 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01004563
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004564 /*
4565 * For each potential GPU frequency, load a ring frequency we'd like
4566 * to use for memory access. We do this by specifying the IA frequency
4567 * the PCU should use as a reference to determine the ring frequency.
4568 */
Tom O'Rourke6985b352014-11-19 14:21:55 -08004569 for (gpu_freq = dev_priv->rps.max_freq; gpu_freq >= dev_priv->rps.min_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004570 gpu_freq--) {
Tom O'Rourke6985b352014-11-19 14:21:55 -08004571 int diff = dev_priv->rps.max_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01004572 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004573
Ben Widawsky46c764d2013-11-02 21:07:49 -07004574 if (INTEL_INFO(dev)->gen >= 8) {
4575 /* max(2 * GT, DDR). NB: GT is 50MHz units */
4576 ring_freq = max(min_ring_freq, gpu_freq);
4577 } else if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07004578 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01004579 ring_freq = max(min_ring_freq, ring_freq);
4580 /* leave ia_freq as the default, chosen by cpufreq */
4581 } else {
4582 /* On older processors, there is no separate ring
4583 * clock domain, so in order to boost the bandwidth
4584 * of the ring, we need to upclock the CPU (ia_freq).
4585 *
4586 * For GPU frequencies less than 750MHz,
4587 * just use the lowest ring freq.
4588 */
4589 if (gpu_freq < min_freq)
4590 ia_freq = 800;
4591 else
4592 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
4593 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
4594 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004595
Ben Widawsky42c05262012-09-26 10:34:00 -07004596 sandybridge_pcode_write(dev_priv,
4597 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01004598 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
4599 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
4600 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004601 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004602}
4603
Imre Deakc2bc2fc2014-04-18 16:16:23 +03004604void gen6_update_ring_freq(struct drm_device *dev)
4605{
4606 struct drm_i915_private *dev_priv = dev->dev_private;
4607
4608 if (INTEL_INFO(dev)->gen < 6 || IS_VALLEYVIEW(dev))
4609 return;
4610
4611 mutex_lock(&dev_priv->rps.hw_lock);
4612 __gen6_update_ring_freq(dev);
4613 mutex_unlock(&dev_priv->rps.hw_lock);
4614}
4615
Ville Syrjälä03af2042014-06-28 02:03:53 +03004616static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05304617{
Deepak S095acd52015-01-17 11:05:59 +05304618 struct drm_device *dev = dev_priv->dev;
Deepak S2b6b3a02014-05-27 15:59:30 +05304619 u32 val, rp0;
4620
Deepak S095acd52015-01-17 11:05:59 +05304621 if (dev->pdev->revision >= 0x20) {
4622 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05304623
Deepak S095acd52015-01-17 11:05:59 +05304624 switch (INTEL_INFO(dev)->eu_total) {
4625 case 8:
4626 /* (2 * 4) config */
4627 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
4628 break;
4629 case 12:
4630 /* (2 * 6) config */
4631 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
4632 break;
4633 case 16:
4634 /* (2 * 8) config */
4635 default:
4636 /* Setting (2 * 8) Min RP0 for any other combination */
4637 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
4638 break;
4639 }
4640 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
4641 } else {
4642 /* For pre-production hardware */
4643 val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG);
4644 rp0 = (val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
4645 PUNIT_GPU_STATUS_MAX_FREQ_MASK;
4646 }
Deepak S2b6b3a02014-05-27 15:59:30 +05304647 return rp0;
4648}
4649
4650static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
4651{
4652 u32 val, rpe;
4653
4654 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
4655 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
4656
4657 return rpe;
4658}
4659
Deepak S7707df42014-07-12 18:46:14 +05304660static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
4661{
Deepak S095acd52015-01-17 11:05:59 +05304662 struct drm_device *dev = dev_priv->dev;
Deepak S7707df42014-07-12 18:46:14 +05304663 u32 val, rp1;
4664
Deepak S095acd52015-01-17 11:05:59 +05304665 if (dev->pdev->revision >= 0x20) {
4666 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
4667 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
4668 } else {
4669 /* For pre-production hardware */
4670 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
4671 rp1 = ((val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
4672 PUNIT_GPU_STATUS_MAX_FREQ_MASK);
4673 }
Deepak S7707df42014-07-12 18:46:14 +05304674 return rp1;
4675}
4676
Ville Syrjälä03af2042014-06-28 02:03:53 +03004677static int cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05304678{
Deepak S095acd52015-01-17 11:05:59 +05304679 struct drm_device *dev = dev_priv->dev;
Deepak S2b6b3a02014-05-27 15:59:30 +05304680 u32 val, rpn;
4681
Deepak S095acd52015-01-17 11:05:59 +05304682 if (dev->pdev->revision >= 0x20) {
4683 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
4684 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
4685 FB_GFX_FREQ_FUSE_MASK);
4686 } else { /* For pre-production hardware */
4687 val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG);
4688 rpn = ((val >> PUNIT_GPU_STATIS_GFX_MIN_FREQ_SHIFT) &
4689 PUNIT_GPU_STATUS_GFX_MIN_FREQ_MASK);
4690 }
4691
Deepak S2b6b3a02014-05-27 15:59:30 +05304692 return rpn;
4693}
4694
Deepak Sf8f2b002014-07-10 13:16:21 +05304695static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
4696{
4697 u32 val, rp1;
4698
4699 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
4700
4701 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
4702
4703 return rp1;
4704}
4705
Ville Syrjälä03af2042014-06-28 02:03:53 +03004706static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004707{
4708 u32 val, rp0;
4709
Jani Nikula64936252013-05-22 15:36:20 +03004710 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004711
4712 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
4713 /* Clamp to max */
4714 rp0 = min_t(u32, rp0, 0xea);
4715
4716 return rp0;
4717}
4718
4719static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
4720{
4721 u32 val, rpe;
4722
Jani Nikula64936252013-05-22 15:36:20 +03004723 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004724 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03004725 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004726 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
4727
4728 return rpe;
4729}
4730
Ville Syrjälä03af2042014-06-28 02:03:53 +03004731static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004732{
Jani Nikula64936252013-05-22 15:36:20 +03004733 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07004734}
4735
Imre Deakae484342014-03-31 15:10:44 +03004736/* Check that the pctx buffer wasn't move under us. */
4737static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
4738{
4739 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
4740
4741 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
4742 dev_priv->vlv_pctx->stolen->start);
4743}
4744
Deepak S38807742014-05-23 21:00:15 +05304745
4746/* Check that the pcbr address is not empty. */
4747static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
4748{
4749 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
4750
4751 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
4752}
4753
4754static void cherryview_setup_pctx(struct drm_device *dev)
4755{
4756 struct drm_i915_private *dev_priv = dev->dev_private;
4757 unsigned long pctx_paddr, paddr;
4758 struct i915_gtt *gtt = &dev_priv->gtt;
4759 u32 pcbr;
4760 int pctx_size = 32*1024;
4761
4762 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
4763
4764 pcbr = I915_READ(VLV_PCBR);
4765 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02004766 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05304767 paddr = (dev_priv->mm.stolen_base +
4768 (gtt->stolen_size - pctx_size));
4769
4770 pctx_paddr = (paddr & (~4095));
4771 I915_WRITE(VLV_PCBR, pctx_paddr);
4772 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02004773
4774 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05304775}
4776
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004777static void valleyview_setup_pctx(struct drm_device *dev)
4778{
4779 struct drm_i915_private *dev_priv = dev->dev_private;
4780 struct drm_i915_gem_object *pctx;
4781 unsigned long pctx_paddr;
4782 u32 pcbr;
4783 int pctx_size = 24*1024;
4784
Imre Deak17b0c1f2014-02-11 21:39:06 +02004785 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
4786
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004787 pcbr = I915_READ(VLV_PCBR);
4788 if (pcbr) {
4789 /* BIOS set it up already, grab the pre-alloc'd space */
4790 int pcbr_offset;
4791
4792 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
4793 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
4794 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02004795 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004796 pctx_size);
4797 goto out;
4798 }
4799
Ville Syrjäläce611ef2014-11-07 21:33:46 +02004800 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
4801
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004802 /*
4803 * From the Gunit register HAS:
4804 * The Gfx driver is expected to program this register and ensure
4805 * proper allocation within Gfx stolen memory. For example, this
4806 * register should be programmed such than the PCBR range does not
4807 * overlap with other ranges, such as the frame buffer, protected
4808 * memory, or any other relevant ranges.
4809 */
4810 pctx = i915_gem_object_create_stolen(dev, pctx_size);
4811 if (!pctx) {
4812 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
4813 return;
4814 }
4815
4816 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
4817 I915_WRITE(VLV_PCBR, pctx_paddr);
4818
4819out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02004820 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004821 dev_priv->vlv_pctx = pctx;
4822}
4823
Imre Deakae484342014-03-31 15:10:44 +03004824static void valleyview_cleanup_pctx(struct drm_device *dev)
4825{
4826 struct drm_i915_private *dev_priv = dev->dev_private;
4827
4828 if (WARN_ON(!dev_priv->vlv_pctx))
4829 return;
4830
4831 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
4832 dev_priv->vlv_pctx = NULL;
4833}
4834
Imre Deak4e805192014-04-14 20:24:41 +03004835static void valleyview_init_gt_powersave(struct drm_device *dev)
4836{
4837 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03004838 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03004839
4840 valleyview_setup_pctx(dev);
4841
4842 mutex_lock(&dev_priv->rps.hw_lock);
4843
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03004844 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
4845 switch ((val >> 6) & 3) {
4846 case 0:
4847 case 1:
4848 dev_priv->mem_freq = 800;
4849 break;
4850 case 2:
4851 dev_priv->mem_freq = 1066;
4852 break;
4853 case 3:
4854 dev_priv->mem_freq = 1333;
4855 break;
4856 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02004857 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03004858
Imre Deak4e805192014-04-14 20:24:41 +03004859 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
4860 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
4861 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004862 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03004863 dev_priv->rps.max_freq);
4864
4865 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
4866 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004867 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03004868 dev_priv->rps.efficient_freq);
4869
Deepak Sf8f2b002014-07-10 13:16:21 +05304870 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
4871 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004872 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05304873 dev_priv->rps.rp1_freq);
4874
Imre Deak4e805192014-04-14 20:24:41 +03004875 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
4876 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004877 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03004878 dev_priv->rps.min_freq);
4879
Chris Wilsonaed242f2015-03-18 09:48:21 +00004880 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4881
Imre Deak4e805192014-04-14 20:24:41 +03004882 /* Preserve min/max settings in case of re-init */
4883 if (dev_priv->rps.max_freq_softlimit == 0)
4884 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4885
4886 if (dev_priv->rps.min_freq_softlimit == 0)
4887 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
4888
4889 mutex_unlock(&dev_priv->rps.hw_lock);
4890}
4891
Deepak S38807742014-05-23 21:00:15 +05304892static void cherryview_init_gt_powersave(struct drm_device *dev)
4893{
Deepak S2b6b3a02014-05-27 15:59:30 +05304894 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03004895 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05304896
Deepak S38807742014-05-23 21:00:15 +05304897 cherryview_setup_pctx(dev);
Deepak S2b6b3a02014-05-27 15:59:30 +05304898
4899 mutex_lock(&dev_priv->rps.hw_lock);
4900
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02004901 mutex_lock(&dev_priv->dpio_lock);
4902 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
4903 mutex_unlock(&dev_priv->dpio_lock);
4904
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03004905 switch ((val >> 2) & 0x7) {
4906 case 0:
4907 case 1:
4908 dev_priv->rps.cz_freq = 200;
4909 dev_priv->mem_freq = 1600;
4910 break;
4911 case 2:
4912 dev_priv->rps.cz_freq = 267;
4913 dev_priv->mem_freq = 1600;
4914 break;
4915 case 3:
4916 dev_priv->rps.cz_freq = 333;
4917 dev_priv->mem_freq = 2000;
4918 break;
4919 case 4:
4920 dev_priv->rps.cz_freq = 320;
4921 dev_priv->mem_freq = 1600;
4922 break;
4923 case 5:
4924 dev_priv->rps.cz_freq = 400;
4925 dev_priv->mem_freq = 1600;
4926 break;
4927 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02004928 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03004929
Deepak S2b6b3a02014-05-27 15:59:30 +05304930 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
4931 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
4932 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004933 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05304934 dev_priv->rps.max_freq);
4935
4936 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
4937 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004938 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05304939 dev_priv->rps.efficient_freq);
4940
Deepak S7707df42014-07-12 18:46:14 +05304941 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
4942 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004943 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05304944 dev_priv->rps.rp1_freq);
4945
Deepak S2b6b3a02014-05-27 15:59:30 +05304946 dev_priv->rps.min_freq = cherryview_rps_min_freq(dev_priv);
4947 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004948 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05304949 dev_priv->rps.min_freq);
4950
Ville Syrjälä1c147622014-08-18 14:42:43 +03004951 WARN_ONCE((dev_priv->rps.max_freq |
4952 dev_priv->rps.efficient_freq |
4953 dev_priv->rps.rp1_freq |
4954 dev_priv->rps.min_freq) & 1,
4955 "Odd GPU freq values\n");
4956
Chris Wilsonaed242f2015-03-18 09:48:21 +00004957 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4958
Deepak S2b6b3a02014-05-27 15:59:30 +05304959 /* Preserve min/max settings in case of re-init */
4960 if (dev_priv->rps.max_freq_softlimit == 0)
4961 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4962
4963 if (dev_priv->rps.min_freq_softlimit == 0)
4964 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
4965
4966 mutex_unlock(&dev_priv->rps.hw_lock);
Deepak S38807742014-05-23 21:00:15 +05304967}
4968
Imre Deak4e805192014-04-14 20:24:41 +03004969static void valleyview_cleanup_gt_powersave(struct drm_device *dev)
4970{
4971 valleyview_cleanup_pctx(dev);
4972}
4973
Deepak S38807742014-05-23 21:00:15 +05304974static void cherryview_enable_rps(struct drm_device *dev)
4975{
4976 struct drm_i915_private *dev_priv = dev->dev_private;
4977 struct intel_engine_cs *ring;
Deepak S2b6b3a02014-05-27 15:59:30 +05304978 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05304979 int i;
4980
4981 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
4982
4983 gtfifodbg = I915_READ(GTFIFODBG);
4984 if (gtfifodbg) {
4985 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
4986 gtfifodbg);
4987 I915_WRITE(GTFIFODBG, gtfifodbg);
4988 }
4989
4990 cherryview_check_pctx(dev_priv);
4991
4992 /* 1a & 1b: Get forcewake during program sequence. Although the driver
4993 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004994 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05304995
Ville Syrjälä160614a2015-01-19 13:50:47 +02004996 /* Disable RC states. */
4997 I915_WRITE(GEN6_RC_CONTROL, 0);
4998
Deepak S38807742014-05-23 21:00:15 +05304999 /* 2a: Program RC6 thresholds.*/
5000 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5001 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5002 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5003
5004 for_each_ring(ring, dev_priv, i)
5005 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5006 I915_WRITE(GEN6_RC_SLEEP, 0);
5007
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005008 /* TO threshold set to 1750 us ( 0x557 * 1.28 us) */
5009 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Deepak S38807742014-05-23 21:00:15 +05305010
5011 /* allows RC6 residency counter to work */
5012 I915_WRITE(VLV_COUNTER_CONTROL,
5013 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5014 VLV_MEDIA_RC6_COUNT_EN |
5015 VLV_RENDER_RC6_COUNT_EN));
5016
5017 /* For now we assume BIOS is allocating and populating the PCBR */
5018 pcbr = I915_READ(VLV_PCBR);
5019
Deepak S38807742014-05-23 21:00:15 +05305020 /* 3: Enable RC6 */
5021 if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) &&
5022 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005023 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305024
5025 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5026
Deepak S2b6b3a02014-05-27 15:59:30 +05305027 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005028 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305029 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5030 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5031 I915_WRITE(GEN6_RP_UP_EI, 66000);
5032 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5033
5034 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5035
5036 /* 5: Enable RPS */
5037 I915_WRITE(GEN6_RP_CONTROL,
5038 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005039 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305040 GEN6_RP_ENABLE |
5041 GEN6_RP_UP_BUSY_AVG |
5042 GEN6_RP_DOWN_IDLE_AVG);
5043
5044 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5045
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005046 /* RPS code assumes GPLL is used */
5047 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5048
Ville Syrjäläc8e96272014-11-07 21:33:44 +02005049 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
Deepak S2b6b3a02014-05-27 15:59:30 +05305050 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5051
5052 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
5053 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005054 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305055 dev_priv->rps.cur_freq);
5056
5057 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005058 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305059 dev_priv->rps.efficient_freq);
5060
5061 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
5062
Mika Kuoppala59bad942015-01-16 11:34:40 +02005063 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305064}
5065
Jesse Barnes0a073b82013-04-17 15:54:58 -07005066static void valleyview_enable_rps(struct drm_device *dev)
5067{
5068 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005069 struct intel_engine_cs *ring;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07005070 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005071 int i;
5072
5073 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5074
Imre Deakae484342014-03-31 15:10:44 +03005075 valleyview_check_pctx(dev_priv);
5076
Jesse Barnes0a073b82013-04-17 15:54:58 -07005077 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07005078 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5079 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005080 I915_WRITE(GTFIFODBG, gtfifodbg);
5081 }
5082
Deepak Sc8d9a592013-11-23 14:55:42 +05305083 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005084 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005085
Ville Syrjälä160614a2015-01-19 13:50:47 +02005086 /* Disable RC states. */
5087 I915_WRITE(GEN6_RC_CONTROL, 0);
5088
Ville Syrjäläcad725f2015-01-19 13:50:48 +02005089 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005090 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5091 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5092 I915_WRITE(GEN6_RP_UP_EI, 66000);
5093 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5094
5095 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5096
5097 I915_WRITE(GEN6_RP_CONTROL,
5098 GEN6_RP_MEDIA_TURBO |
5099 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5100 GEN6_RP_MEDIA_IS_GFX |
5101 GEN6_RP_ENABLE |
5102 GEN6_RP_UP_BUSY_AVG |
5103 GEN6_RP_DOWN_IDLE_CONT);
5104
5105 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
5106 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5107 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5108
5109 for_each_ring(ring, dev_priv, i)
5110 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5111
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08005112 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005113
5114 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07005115 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04005116 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
5117 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07005118 VLV_MEDIA_RC6_COUNT_EN |
5119 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04005120
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005121 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08005122 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07005123
5124 intel_print_rc6_info(dev, rc6_mode);
5125
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005126 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005127
Jani Nikula64936252013-05-22 15:36:20 +03005128 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005129
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005130 /* RPS code assumes GPLL is used */
5131 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5132
Ville Syrjäläc8e96272014-11-07 21:33:44 +02005133 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
Jesse Barnes0a073b82013-04-17 15:54:58 -07005134 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5135
Ben Widawskyb39fb292014-03-19 18:31:11 -07005136 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03005137 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005138 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005139 dev_priv->rps.cur_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005140
Ville Syrjälä73008b92013-06-25 19:21:01 +03005141 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005142 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005143 dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005144
Ben Widawskyb39fb292014-03-19 18:31:11 -07005145 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005146
Mika Kuoppala59bad942015-01-16 11:34:40 +02005147 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005148}
5149
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005150static unsigned long intel_pxfreq(u32 vidfreq)
5151{
5152 unsigned long freq;
5153 int div = (vidfreq & 0x3f0000) >> 16;
5154 int post = (vidfreq & 0x3000) >> 12;
5155 int pre = (vidfreq & 0x7);
5156
5157 if (!pre)
5158 return 0;
5159
5160 freq = ((div * 133333) / ((1<<post) * pre));
5161
5162 return freq;
5163}
5164
Daniel Vettereb48eb02012-04-26 23:28:12 +02005165static const struct cparams {
5166 u16 i;
5167 u16 t;
5168 u16 m;
5169 u16 c;
5170} cparams[] = {
5171 { 1, 1333, 301, 28664 },
5172 { 1, 1066, 294, 24460 },
5173 { 1, 800, 294, 25192 },
5174 { 0, 1333, 276, 27605 },
5175 { 0, 1066, 276, 27605 },
5176 { 0, 800, 231, 23784 },
5177};
5178
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005179static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005180{
5181 u64 total_count, diff, ret;
5182 u32 count1, count2, count3, m = 0, c = 0;
5183 unsigned long now = jiffies_to_msecs(jiffies), diff1;
5184 int i;
5185
Daniel Vetter02d71952012-08-09 16:44:54 +02005186 assert_spin_locked(&mchdev_lock);
5187
Daniel Vetter20e4d402012-08-08 23:35:39 +02005188 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005189
5190 /* Prevent division-by-zero if we are asking too fast.
5191 * Also, we don't get interesting results if we are polling
5192 * faster than once in 10ms, so just return the saved value
5193 * in such cases.
5194 */
5195 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02005196 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005197
5198 count1 = I915_READ(DMIEC);
5199 count2 = I915_READ(DDREC);
5200 count3 = I915_READ(CSIEC);
5201
5202 total_count = count1 + count2 + count3;
5203
5204 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02005205 if (total_count < dev_priv->ips.last_count1) {
5206 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005207 diff += total_count;
5208 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005209 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005210 }
5211
5212 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005213 if (cparams[i].i == dev_priv->ips.c_m &&
5214 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02005215 m = cparams[i].m;
5216 c = cparams[i].c;
5217 break;
5218 }
5219 }
5220
5221 diff = div_u64(diff, diff1);
5222 ret = ((m * diff) + c);
5223 ret = div_u64(ret, 10);
5224
Daniel Vetter20e4d402012-08-08 23:35:39 +02005225 dev_priv->ips.last_count1 = total_count;
5226 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005227
Daniel Vetter20e4d402012-08-08 23:35:39 +02005228 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005229
5230 return ret;
5231}
5232
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005233unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
5234{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005235 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005236 unsigned long val;
5237
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005238 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005239 return 0;
5240
5241 spin_lock_irq(&mchdev_lock);
5242
5243 val = __i915_chipset_val(dev_priv);
5244
5245 spin_unlock_irq(&mchdev_lock);
5246
5247 return val;
5248}
5249
Daniel Vettereb48eb02012-04-26 23:28:12 +02005250unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
5251{
5252 unsigned long m, x, b;
5253 u32 tsfs;
5254
5255 tsfs = I915_READ(TSFS);
5256
5257 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
5258 x = I915_READ8(TR1);
5259
5260 b = tsfs & TSFS_INTR_MASK;
5261
5262 return ((m * x) / 127) - b;
5263}
5264
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005265static int _pxvid_to_vd(u8 pxvid)
5266{
5267 if (pxvid == 0)
5268 return 0;
5269
5270 if (pxvid >= 8 && pxvid < 31)
5271 pxvid = 31;
5272
5273 return (pxvid + 2) * 125;
5274}
5275
5276static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005277{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005278 struct drm_device *dev = dev_priv->dev;
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005279 const int vd = _pxvid_to_vd(pxvid);
5280 const int vm = vd - 1125;
5281
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005282 if (INTEL_INFO(dev)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005283 return vm > 0 ? vm : 0;
5284
5285 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005286}
5287
Daniel Vetter02d71952012-08-09 16:44:54 +02005288static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005289{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005290 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005291 u32 count;
5292
Daniel Vetter02d71952012-08-09 16:44:54 +02005293 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005294
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005295 now = ktime_get_raw_ns();
5296 diffms = now - dev_priv->ips.last_time2;
5297 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005298
5299 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02005300 if (!diffms)
5301 return;
5302
5303 count = I915_READ(GFXEC);
5304
Daniel Vetter20e4d402012-08-08 23:35:39 +02005305 if (count < dev_priv->ips.last_count2) {
5306 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005307 diff += count;
5308 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005309 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005310 }
5311
Daniel Vetter20e4d402012-08-08 23:35:39 +02005312 dev_priv->ips.last_count2 = count;
5313 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005314
5315 /* More magic constants... */
5316 diff = diff * 1181;
5317 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005318 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005319}
5320
Daniel Vetter02d71952012-08-09 16:44:54 +02005321void i915_update_gfx_val(struct drm_i915_private *dev_priv)
5322{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005323 struct drm_device *dev = dev_priv->dev;
5324
5325 if (INTEL_INFO(dev)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02005326 return;
5327
Daniel Vetter92703882012-08-09 16:46:01 +02005328 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005329
5330 __i915_update_gfx_val(dev_priv);
5331
Daniel Vetter92703882012-08-09 16:46:01 +02005332 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005333}
5334
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005335static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005336{
5337 unsigned long t, corr, state1, corr2, state2;
5338 u32 pxvid, ext_v;
5339
Daniel Vetter02d71952012-08-09 16:44:54 +02005340 assert_spin_locked(&mchdev_lock);
5341
Ben Widawskyb39fb292014-03-19 18:31:11 -07005342 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_freq * 4));
Daniel Vettereb48eb02012-04-26 23:28:12 +02005343 pxvid = (pxvid >> 24) & 0x7f;
5344 ext_v = pvid_to_extvid(dev_priv, pxvid);
5345
5346 state1 = ext_v;
5347
5348 t = i915_mch_val(dev_priv);
5349
5350 /* Revel in the empirically derived constants */
5351
5352 /* Correction factor in 1/100000 units */
5353 if (t > 80)
5354 corr = ((t * 2349) + 135940);
5355 else if (t >= 50)
5356 corr = ((t * 964) + 29317);
5357 else /* < 50 */
5358 corr = ((t * 301) + 1004);
5359
5360 corr = corr * ((150142 * state1) / 10000 - 78642);
5361 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02005362 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005363
5364 state2 = (corr2 * state1) / 10000;
5365 state2 /= 100; /* convert to mW */
5366
Daniel Vetter02d71952012-08-09 16:44:54 +02005367 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005368
Daniel Vetter20e4d402012-08-08 23:35:39 +02005369 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005370}
5371
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005372unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
5373{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005374 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005375 unsigned long val;
5376
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005377 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005378 return 0;
5379
5380 spin_lock_irq(&mchdev_lock);
5381
5382 val = __i915_gfx_val(dev_priv);
5383
5384 spin_unlock_irq(&mchdev_lock);
5385
5386 return val;
5387}
5388
Daniel Vettereb48eb02012-04-26 23:28:12 +02005389/**
5390 * i915_read_mch_val - return value for IPS use
5391 *
5392 * Calculate and return a value for the IPS driver to use when deciding whether
5393 * we have thermal and power headroom to increase CPU or GPU power budget.
5394 */
5395unsigned long i915_read_mch_val(void)
5396{
5397 struct drm_i915_private *dev_priv;
5398 unsigned long chipset_val, graphics_val, ret = 0;
5399
Daniel Vetter92703882012-08-09 16:46:01 +02005400 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005401 if (!i915_mch_dev)
5402 goto out_unlock;
5403 dev_priv = i915_mch_dev;
5404
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005405 chipset_val = __i915_chipset_val(dev_priv);
5406 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005407
5408 ret = chipset_val + graphics_val;
5409
5410out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005411 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005412
5413 return ret;
5414}
5415EXPORT_SYMBOL_GPL(i915_read_mch_val);
5416
5417/**
5418 * i915_gpu_raise - raise GPU frequency limit
5419 *
5420 * Raise the limit; IPS indicates we have thermal headroom.
5421 */
5422bool i915_gpu_raise(void)
5423{
5424 struct drm_i915_private *dev_priv;
5425 bool ret = true;
5426
Daniel Vetter92703882012-08-09 16:46:01 +02005427 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005428 if (!i915_mch_dev) {
5429 ret = false;
5430 goto out_unlock;
5431 }
5432 dev_priv = i915_mch_dev;
5433
Daniel Vetter20e4d402012-08-08 23:35:39 +02005434 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
5435 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005436
5437out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005438 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005439
5440 return ret;
5441}
5442EXPORT_SYMBOL_GPL(i915_gpu_raise);
5443
5444/**
5445 * i915_gpu_lower - lower GPU frequency limit
5446 *
5447 * IPS indicates we're close to a thermal limit, so throttle back the GPU
5448 * frequency maximum.
5449 */
5450bool i915_gpu_lower(void)
5451{
5452 struct drm_i915_private *dev_priv;
5453 bool ret = true;
5454
Daniel Vetter92703882012-08-09 16:46:01 +02005455 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005456 if (!i915_mch_dev) {
5457 ret = false;
5458 goto out_unlock;
5459 }
5460 dev_priv = i915_mch_dev;
5461
Daniel Vetter20e4d402012-08-08 23:35:39 +02005462 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
5463 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005464
5465out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005466 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005467
5468 return ret;
5469}
5470EXPORT_SYMBOL_GPL(i915_gpu_lower);
5471
5472/**
5473 * i915_gpu_busy - indicate GPU business to IPS
5474 *
5475 * Tell the IPS driver whether or not the GPU is busy.
5476 */
5477bool i915_gpu_busy(void)
5478{
5479 struct drm_i915_private *dev_priv;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005480 struct intel_engine_cs *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005481 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01005482 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005483
Daniel Vetter92703882012-08-09 16:46:01 +02005484 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005485 if (!i915_mch_dev)
5486 goto out_unlock;
5487 dev_priv = i915_mch_dev;
5488
Chris Wilsonf047e392012-07-21 12:31:41 +01005489 for_each_ring(ring, dev_priv, i)
5490 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005491
5492out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005493 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005494
5495 return ret;
5496}
5497EXPORT_SYMBOL_GPL(i915_gpu_busy);
5498
5499/**
5500 * i915_gpu_turbo_disable - disable graphics turbo
5501 *
5502 * Disable graphics turbo by resetting the max frequency and setting the
5503 * current frequency to the default.
5504 */
5505bool i915_gpu_turbo_disable(void)
5506{
5507 struct drm_i915_private *dev_priv;
5508 bool ret = true;
5509
Daniel Vetter92703882012-08-09 16:46:01 +02005510 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005511 if (!i915_mch_dev) {
5512 ret = false;
5513 goto out_unlock;
5514 }
5515 dev_priv = i915_mch_dev;
5516
Daniel Vetter20e4d402012-08-08 23:35:39 +02005517 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005518
Daniel Vetter20e4d402012-08-08 23:35:39 +02005519 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02005520 ret = false;
5521
5522out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005523 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005524
5525 return ret;
5526}
5527EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
5528
5529/**
5530 * Tells the intel_ips driver that the i915 driver is now loaded, if
5531 * IPS got loaded first.
5532 *
5533 * This awkward dance is so that neither module has to depend on the
5534 * other in order for IPS to do the appropriate communication of
5535 * GPU turbo limits to i915.
5536 */
5537static void
5538ips_ping_for_i915_load(void)
5539{
5540 void (*link)(void);
5541
5542 link = symbol_get(ips_link_to_i915_driver);
5543 if (link) {
5544 link();
5545 symbol_put(ips_link_to_i915_driver);
5546 }
5547}
5548
5549void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
5550{
Daniel Vetter02d71952012-08-09 16:44:54 +02005551 /* We only register the i915 ips part with intel-ips once everything is
5552 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02005553 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005554 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02005555 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005556
5557 ips_ping_for_i915_load();
5558}
5559
5560void intel_gpu_ips_teardown(void)
5561{
Daniel Vetter92703882012-08-09 16:46:01 +02005562 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005563 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02005564 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005565}
Deepak S76c3552f2014-01-30 23:08:16 +05305566
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005567static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005568{
5569 struct drm_i915_private *dev_priv = dev->dev_private;
5570 u32 lcfuse;
5571 u8 pxw[16];
5572 int i;
5573
5574 /* Disable to program */
5575 I915_WRITE(ECR, 0);
5576 POSTING_READ(ECR);
5577
5578 /* Program energy weights for various events */
5579 I915_WRITE(SDEW, 0x15040d00);
5580 I915_WRITE(CSIEW0, 0x007f0000);
5581 I915_WRITE(CSIEW1, 0x1e220004);
5582 I915_WRITE(CSIEW2, 0x04000004);
5583
5584 for (i = 0; i < 5; i++)
5585 I915_WRITE(PEW + (i * 4), 0);
5586 for (i = 0; i < 3; i++)
5587 I915_WRITE(DEW + (i * 4), 0);
5588
5589 /* Program P-state weights to account for frequency power adjustment */
5590 for (i = 0; i < 16; i++) {
5591 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
5592 unsigned long freq = intel_pxfreq(pxvidfreq);
5593 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
5594 PXVFREQ_PX_SHIFT;
5595 unsigned long val;
5596
5597 val = vid * vid;
5598 val *= (freq / 1000);
5599 val *= 255;
5600 val /= (127*127*900);
5601 if (val > 0xff)
5602 DRM_ERROR("bad pxval: %ld\n", val);
5603 pxw[i] = val;
5604 }
5605 /* Render standby states get 0 weight */
5606 pxw[14] = 0;
5607 pxw[15] = 0;
5608
5609 for (i = 0; i < 4; i++) {
5610 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
5611 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
5612 I915_WRITE(PXW + (i * 4), val);
5613 }
5614
5615 /* Adjust magic regs to magic values (more experimental results) */
5616 I915_WRITE(OGW0, 0);
5617 I915_WRITE(OGW1, 0);
5618 I915_WRITE(EG0, 0x00007f00);
5619 I915_WRITE(EG1, 0x0000000e);
5620 I915_WRITE(EG2, 0x000e0000);
5621 I915_WRITE(EG3, 0x68000300);
5622 I915_WRITE(EG4, 0x42000000);
5623 I915_WRITE(EG5, 0x00140031);
5624 I915_WRITE(EG6, 0);
5625 I915_WRITE(EG7, 0);
5626
5627 for (i = 0; i < 8; i++)
5628 I915_WRITE(PXWL + (i * 4), 0);
5629
5630 /* Enable PMON + select events */
5631 I915_WRITE(ECR, 0x80000019);
5632
5633 lcfuse = I915_READ(LCFUSE02);
5634
Daniel Vetter20e4d402012-08-08 23:35:39 +02005635 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005636}
5637
Imre Deakae484342014-03-31 15:10:44 +03005638void intel_init_gt_powersave(struct drm_device *dev)
5639{
Imre Deake6069ca2014-04-18 16:01:02 +03005640 i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6);
5641
Deepak S38807742014-05-23 21:00:15 +05305642 if (IS_CHERRYVIEW(dev))
5643 cherryview_init_gt_powersave(dev);
5644 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03005645 valleyview_init_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03005646}
5647
5648void intel_cleanup_gt_powersave(struct drm_device *dev)
5649{
Deepak S38807742014-05-23 21:00:15 +05305650 if (IS_CHERRYVIEW(dev))
5651 return;
5652 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03005653 valleyview_cleanup_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03005654}
5655
Imre Deakdbea3ce2014-12-15 18:59:28 +02005656static void gen6_suspend_rps(struct drm_device *dev)
5657{
5658 struct drm_i915_private *dev_priv = dev->dev_private;
5659
5660 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
5661
Akash Goel4c2a8892015-03-06 11:07:24 +05305662 gen6_disable_rps_interrupts(dev);
Imre Deakdbea3ce2014-12-15 18:59:28 +02005663}
5664
Jesse Barnes156c7ca2014-06-12 08:35:45 -07005665/**
5666 * intel_suspend_gt_powersave - suspend PM work and helper threads
5667 * @dev: drm device
5668 *
5669 * We don't want to disable RC6 or other features here, we just want
5670 * to make sure any work we've queued has finished and won't bother
5671 * us while we're suspended.
5672 */
5673void intel_suspend_gt_powersave(struct drm_device *dev)
5674{
5675 struct drm_i915_private *dev_priv = dev->dev_private;
5676
Imre Deakd4d70aa2014-11-19 15:30:04 +02005677 if (INTEL_INFO(dev)->gen < 6)
5678 return;
5679
Imre Deakdbea3ce2014-12-15 18:59:28 +02005680 gen6_suspend_rps(dev);
Deepak Sb47adc12014-06-20 20:03:02 +05305681
5682 /* Force GPU to min freq during suspend */
5683 gen6_rps_idle(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07005684}
5685
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005686void intel_disable_gt_powersave(struct drm_device *dev)
5687{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005688 struct drm_i915_private *dev_priv = dev->dev_private;
5689
Daniel Vetter930ebb42012-06-29 23:32:16 +02005690 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005691 ironlake_disable_drps(dev);
Deepak S38807742014-05-23 21:00:15 +05305692 } else if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter10d8d362014-06-12 17:48:52 +02005693 intel_suspend_gt_powersave(dev);
Imre Deake4948372014-05-12 18:35:04 +03005694
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005695 mutex_lock(&dev_priv->rps.hw_lock);
Zhe Wang20e49362014-11-04 17:07:05 +00005696 if (INTEL_INFO(dev)->gen >= 9)
5697 gen9_disable_rps(dev);
5698 else if (IS_CHERRYVIEW(dev))
Deepak S38807742014-05-23 21:00:15 +05305699 cherryview_disable_rps(dev);
5700 else if (IS_VALLEYVIEW(dev))
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005701 valleyview_disable_rps(dev);
5702 else
5703 gen6_disable_rps(dev);
Imre Deake5347702014-11-19 15:30:02 +02005704
Chris Wilsonc0951f02013-10-10 21:58:50 +01005705 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005706 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02005707 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005708}
5709
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005710static void intel_gen6_powersave_work(struct work_struct *work)
5711{
5712 struct drm_i915_private *dev_priv =
5713 container_of(work, struct drm_i915_private,
5714 rps.delayed_resume_work.work);
5715 struct drm_device *dev = dev_priv->dev;
5716
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005717 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005718
Akash Goel4c2a8892015-03-06 11:07:24 +05305719 gen6_reset_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02005720
Deepak S38807742014-05-23 21:00:15 +05305721 if (IS_CHERRYVIEW(dev)) {
5722 cherryview_enable_rps(dev);
5723 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -07005724 valleyview_enable_rps(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00005725 } else if (INTEL_INFO(dev)->gen >= 9) {
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005726 gen9_enable_rc6(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00005727 gen9_enable_rps(dev);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005728 __gen6_update_ring_freq(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005729 } else if (IS_BROADWELL(dev)) {
5730 gen8_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005731 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005732 } else {
5733 gen6_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005734 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005735 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00005736
5737 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
5738 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
5739
5740 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
5741 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
5742
Chris Wilsonc0951f02013-10-10 21:58:50 +01005743 dev_priv->rps.enabled = true;
Imre Deak3cc134e2014-11-19 15:30:03 +02005744
Akash Goel4c2a8892015-03-06 11:07:24 +05305745 gen6_enable_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02005746
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005747 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deakc6df39b2014-04-14 20:24:29 +03005748
5749 intel_runtime_pm_put(dev_priv);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005750}
5751
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005752void intel_enable_gt_powersave(struct drm_device *dev)
5753{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005754 struct drm_i915_private *dev_priv = dev->dev_private;
5755
Yu Zhangf61018b2015-02-10 19:05:52 +08005756 /* Powersaving is controlled by the host when inside a VM */
5757 if (intel_vgpu_active(dev))
5758 return;
5759
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005760 if (IS_IRONLAKE_M(dev)) {
Imre Deakdc1d0132014-04-14 20:24:28 +03005761 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005762 ironlake_enable_drps(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005763 intel_init_emon(dev);
Imre Deakdc1d0132014-04-14 20:24:28 +03005764 mutex_unlock(&dev->struct_mutex);
Deepak S38807742014-05-23 21:00:15 +05305765 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005766 /*
5767 * PCU communication is slow and this doesn't need to be
5768 * done at any specific time, so do this out of our fast path
5769 * to make resume and init faster.
Imre Deakc6df39b2014-04-14 20:24:29 +03005770 *
5771 * We depend on the HW RC6 power context save/restore
5772 * mechanism when entering D3 through runtime PM suspend. So
5773 * disable RPM until RPS/RC6 is properly setup. We can only
5774 * get here via the driver load/system resume/runtime resume
5775 * paths, so the _noresume version is enough (and in case of
5776 * runtime resume it's necessary).
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005777 */
Imre Deakc6df39b2014-04-14 20:24:29 +03005778 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
5779 round_jiffies_up_relative(HZ)))
5780 intel_runtime_pm_get_noresume(dev_priv);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005781 }
5782}
5783
Imre Deakc6df39b2014-04-14 20:24:29 +03005784void intel_reset_gt_powersave(struct drm_device *dev)
5785{
5786 struct drm_i915_private *dev_priv = dev->dev_private;
5787
Imre Deakdbea3ce2014-12-15 18:59:28 +02005788 if (INTEL_INFO(dev)->gen < 6)
5789 return;
5790
5791 gen6_suspend_rps(dev);
Imre Deakc6df39b2014-04-14 20:24:29 +03005792 dev_priv->rps.enabled = false;
Imre Deakc6df39b2014-04-14 20:24:29 +03005793}
5794
Daniel Vetter3107bd42012-10-31 22:52:31 +01005795static void ibx_init_clock_gating(struct drm_device *dev)
5796{
5797 struct drm_i915_private *dev_priv = dev->dev_private;
5798
5799 /*
5800 * On Ibex Peak and Cougar Point, we need to disable clock
5801 * gating for the panel power sequencer or it will fail to
5802 * start up when no ports are active.
5803 */
5804 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
5805}
5806
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005807static void g4x_disable_trickle_feed(struct drm_device *dev)
5808{
5809 struct drm_i915_private *dev_priv = dev->dev_private;
5810 int pipe;
5811
Damien Lespiau055e3932014-08-18 13:49:10 +01005812 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005813 I915_WRITE(DSPCNTR(pipe),
5814 I915_READ(DSPCNTR(pipe)) |
5815 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03005816 intel_flush_primary_plane(dev_priv, pipe);
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005817 }
5818}
5819
Ville Syrjälä017636c2013-12-05 15:51:37 +02005820static void ilk_init_lp_watermarks(struct drm_device *dev)
5821{
5822 struct drm_i915_private *dev_priv = dev->dev_private;
5823
5824 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
5825 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
5826 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
5827
5828 /*
5829 * Don't touch WM1S_LP_EN here.
5830 * Doing so could cause underruns.
5831 */
5832}
5833
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005834static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005835{
5836 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01005837 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005838
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01005839 /*
5840 * Required for FBC
5841 * WaFbcDisableDpfcClockGating:ilk
5842 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01005843 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
5844 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
5845 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005846
5847 I915_WRITE(PCH_3DCGDIS0,
5848 MARIUNIT_CLOCK_GATE_DISABLE |
5849 SVSMUNIT_CLOCK_GATE_DISABLE);
5850 I915_WRITE(PCH_3DCGDIS1,
5851 VFMUNIT_CLOCK_GATE_DISABLE);
5852
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005853 /*
5854 * According to the spec the following bits should be set in
5855 * order to enable memory self-refresh
5856 * The bit 22/21 of 0x42004
5857 * The bit 5 of 0x42020
5858 * The bit 15 of 0x45000
5859 */
5860 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5861 (I915_READ(ILK_DISPLAY_CHICKEN2) |
5862 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01005863 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005864 I915_WRITE(DISP_ARB_CTL,
5865 (I915_READ(DISP_ARB_CTL) |
5866 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02005867
5868 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005869
5870 /*
5871 * Based on the document from hardware guys the following bits
5872 * should be set unconditionally in order to enable FBC.
5873 * The bit 22 of 0x42000
5874 * The bit 22 of 0x42004
5875 * The bit 7,8,9 of 0x42020.
5876 */
5877 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01005878 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005879 I915_WRITE(ILK_DISPLAY_CHICKEN1,
5880 I915_READ(ILK_DISPLAY_CHICKEN1) |
5881 ILK_FBCQ_DIS);
5882 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5883 I915_READ(ILK_DISPLAY_CHICKEN2) |
5884 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005885 }
5886
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01005887 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
5888
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005889 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5890 I915_READ(ILK_DISPLAY_CHICKEN2) |
5891 ILK_ELPIN_409_SELECT);
5892 I915_WRITE(_3D_CHICKEN2,
5893 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
5894 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02005895
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005896 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02005897 I915_WRITE(CACHE_MODE_0,
5898 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01005899
Akash Goel4e046322014-04-04 17:14:38 +05305900 /* WaDisable_RenderCache_OperationalFlush:ilk */
5901 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
5902
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005903 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03005904
Daniel Vetter3107bd42012-10-31 22:52:31 +01005905 ibx_init_clock_gating(dev);
5906}
5907
5908static void cpt_init_clock_gating(struct drm_device *dev)
5909{
5910 struct drm_i915_private *dev_priv = dev->dev_private;
5911 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005912 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01005913
5914 /*
5915 * On Ibex Peak and Cougar Point, we need to disable clock
5916 * gating for the panel power sequencer or it will fail to
5917 * start up when no ports are active.
5918 */
Jesse Barnescd664072013-10-02 10:34:19 -07005919 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
5920 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
5921 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01005922 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
5923 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01005924 /* The below fixes the weird display corruption, a few pixels shifted
5925 * downward, on (only) LVDS of some HP laptops with IVY.
5926 */
Damien Lespiau055e3932014-08-18 13:49:10 +01005927 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03005928 val = I915_READ(TRANS_CHICKEN2(pipe));
5929 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
5930 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005931 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005932 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03005933 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
5934 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
5935 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005936 I915_WRITE(TRANS_CHICKEN2(pipe), val);
5937 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01005938 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01005939 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01005940 I915_WRITE(TRANS_CHICKEN1(pipe),
5941 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
5942 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005943}
5944
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01005945static void gen6_check_mch_setup(struct drm_device *dev)
5946{
5947 struct drm_i915_private *dev_priv = dev->dev_private;
5948 uint32_t tmp;
5949
5950 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02005951 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
5952 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
5953 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01005954}
5955
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005956static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005957{
5958 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01005959 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005960
Damien Lespiau231e54f2012-10-19 17:55:41 +01005961 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005962
5963 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5964 I915_READ(ILK_DISPLAY_CHICKEN2) |
5965 ILK_ELPIN_409_SELECT);
5966
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005967 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01005968 I915_WRITE(_3D_CHICKEN,
5969 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
5970
Akash Goel4e046322014-04-04 17:14:38 +05305971 /* WaDisable_RenderCache_OperationalFlush:snb */
5972 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
5973
Ville Syrjälä8d85d272014-02-04 21:59:15 +02005974 /*
5975 * BSpec recoomends 8x4 when MSAA is used,
5976 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02005977 *
5978 * Note that PS/WM thread counts depend on the WIZ hashing
5979 * disable bit, which we don't touch here, but it's good
5980 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02005981 */
5982 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00005983 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02005984
Ville Syrjälä017636c2013-12-05 15:51:37 +02005985 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005986
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005987 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02005988 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005989
5990 I915_WRITE(GEN6_UCGCTL1,
5991 I915_READ(GEN6_UCGCTL1) |
5992 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
5993 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
5994
5995 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
5996 * gating disable must be set. Failure to set it results in
5997 * flickering pixels due to Z write ordering failures after
5998 * some amount of runtime in the Mesa "fire" demo, and Unigine
5999 * Sanctuary and Tropics, and apparently anything else with
6000 * alpha test or pixel discard.
6001 *
6002 * According to the spec, bit 11 (RCCUNIT) must also be set,
6003 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006004 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006005 * WaDisableRCCUnitClockGating:snb
6006 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006007 */
6008 I915_WRITE(GEN6_UCGCTL2,
6009 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6010 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6011
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006012 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006013 I915_WRITE(_3D_CHICKEN3,
6014 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006015
6016 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006017 * Bspec says:
6018 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6019 * 3DSTATE_SF number of SF output attributes is more than 16."
6020 */
6021 I915_WRITE(_3D_CHICKEN3,
6022 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6023
6024 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006025 * According to the spec the following bits should be
6026 * set in order to enable memory self-refresh and fbc:
6027 * The bit21 and bit22 of 0x42000
6028 * The bit21 and bit22 of 0x42004
6029 * The bit5 and bit7 of 0x42020
6030 * The bit14 of 0x70180
6031 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006032 *
6033 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006034 */
6035 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6036 I915_READ(ILK_DISPLAY_CHICKEN1) |
6037 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6038 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6039 I915_READ(ILK_DISPLAY_CHICKEN2) |
6040 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006041 I915_WRITE(ILK_DSPCLK_GATE_D,
6042 I915_READ(ILK_DSPCLK_GATE_D) |
6043 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6044 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006045
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006046 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006047
Daniel Vetter3107bd42012-10-31 22:52:31 +01006048 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006049
6050 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006051}
6052
6053static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6054{
6055 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
6056
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006057 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006058 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006059 *
6060 * This actually overrides the dispatch
6061 * mode for all thread types.
6062 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006063 reg &= ~GEN7_FF_SCHED_MASK;
6064 reg |= GEN7_FF_TS_SCHED_HW;
6065 reg |= GEN7_FF_VS_SCHED_HW;
6066 reg |= GEN7_FF_DS_SCHED_HW;
6067
6068 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6069}
6070
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006071static void lpt_init_clock_gating(struct drm_device *dev)
6072{
6073 struct drm_i915_private *dev_priv = dev->dev_private;
6074
6075 /*
6076 * TODO: this bit should only be enabled when really needed, then
6077 * disabled when not needed anymore in order to save power.
6078 */
6079 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
6080 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6081 I915_READ(SOUTH_DSPCLK_GATE_D) |
6082 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006083
6084 /* WADPOClockGatingDisable:hsw */
6085 I915_WRITE(_TRANSA_CHICKEN1,
6086 I915_READ(_TRANSA_CHICKEN1) |
6087 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006088}
6089
Imre Deak7d708ee2013-04-17 14:04:50 +03006090static void lpt_suspend_hw(struct drm_device *dev)
6091{
6092 struct drm_i915_private *dev_priv = dev->dev_private;
6093
6094 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
6095 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
6096
6097 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6098 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6099 }
6100}
6101
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006102static void broadwell_init_clock_gating(struct drm_device *dev)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006103{
6104 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00006105 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006106
6107 I915_WRITE(WM3_LP_ILK, 0);
6108 I915_WRITE(WM2_LP_ILK, 0);
6109 I915_WRITE(WM1_LP_ILK, 0);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006110
Ben Widawskyab57fff2013-12-12 15:28:04 -08006111 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006112 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006113
Ben Widawskyab57fff2013-12-12 15:28:04 -08006114 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006115 I915_WRITE(CHICKEN_PAR1_1,
6116 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6117
Ben Widawskyab57fff2013-12-12 15:28:04 -08006118 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006119 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006120 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006121 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006122 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006123 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006124
Ben Widawskyab57fff2013-12-12 15:28:04 -08006125 /* WaVSRefCountFullforceMissDisable:bdw */
6126 /* WaDSRefCountFullforceMissDisable:bdw */
6127 I915_WRITE(GEN7_FF_THREAD_MODE,
6128 I915_READ(GEN7_FF_THREAD_MODE) &
6129 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006130
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006131 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6132 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006133
6134 /* WaDisableSDEUnitClockGating:bdw */
6135 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6136 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006137
Paulo Zanoni89d6b2b2014-08-21 17:09:36 -03006138 lpt_init_clock_gating(dev);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006139}
6140
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006141static void haswell_init_clock_gating(struct drm_device *dev)
6142{
6143 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006144
Ville Syrjälä017636c2013-12-05 15:51:37 +02006145 ilk_init_lp_watermarks(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006146
Francisco Jerezf3fc4882013-10-02 15:53:16 -07006147 /* L3 caching of data atomics doesn't work -- disable it. */
6148 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6149 I915_WRITE(HSW_ROW_CHICKEN3,
6150 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6151
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006152 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006153 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6154 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6155 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6156
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02006157 /* WaVSRefCountFullforceMissDisable:hsw */
6158 I915_WRITE(GEN7_FF_THREAD_MODE,
6159 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006160
Akash Goel4e046322014-04-04 17:14:38 +05306161 /* WaDisable_RenderCache_OperationalFlush:hsw */
6162 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6163
Chia-I Wufe27c602014-01-28 13:29:33 +08006164 /* enable HiZ Raw Stall Optimization */
6165 I915_WRITE(CACHE_MODE_0_GEN7,
6166 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6167
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006168 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006169 I915_WRITE(CACHE_MODE_1,
6170 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006171
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006172 /*
6173 * BSpec recommends 8x4 when MSAA is used,
6174 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006175 *
6176 * Note that PS/WM thread counts depend on the WIZ hashing
6177 * disable bit, which we don't touch here, but it's good
6178 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006179 */
6180 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006181 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006182
Kenneth Graunke94411592014-12-31 16:23:00 -08006183 /* WaSampleCChickenBitEnable:hsw */
6184 I915_WRITE(HALF_SLICE_CHICKEN3,
6185 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
6186
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006187 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07006188 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
6189
Paulo Zanoni90a88642013-05-03 17:23:45 -03006190 /* WaRsPkgCStateDisplayPMReq:hsw */
6191 I915_WRITE(CHICKEN_PAR1_1,
6192 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006193
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006194 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006195}
6196
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006197static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006198{
6199 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07006200 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006201
Ville Syrjälä017636c2013-12-05 15:51:37 +02006202 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006203
Damien Lespiau231e54f2012-10-19 17:55:41 +01006204 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006205
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006206 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05006207 I915_WRITE(_3D_CHICKEN3,
6208 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6209
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006210 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006211 I915_WRITE(IVB_CHICKEN3,
6212 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6213 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6214
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006215 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07006216 if (IS_IVB_GT1(dev))
6217 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
6218 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006219
Akash Goel4e046322014-04-04 17:14:38 +05306220 /* WaDisable_RenderCache_OperationalFlush:ivb */
6221 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6222
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006223 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006224 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
6225 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
6226
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006227 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006228 I915_WRITE(GEN7_L3CNTLREG1,
6229 GEN7_WA_FOR_GEN7_L3_CONTROL);
6230 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07006231 GEN7_WA_L3_CHICKEN_MODE);
6232 if (IS_IVB_GT1(dev))
6233 I915_WRITE(GEN7_ROW_CHICKEN2,
6234 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006235 else {
6236 /* must write both registers */
6237 I915_WRITE(GEN7_ROW_CHICKEN2,
6238 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07006239 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
6240 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006241 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006242
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006243 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05006244 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6245 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6246
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02006247 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006248 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006249 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006250 */
6251 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02006252 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006253
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006254 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006255 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6256 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6257 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6258
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006259 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006260
6261 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02006262
Chris Wilson22721342014-03-04 09:41:43 +00006263 if (0) { /* causes HiZ corruption on ivb:gt1 */
6264 /* enable HiZ Raw Stall Optimization */
6265 I915_WRITE(CACHE_MODE_0_GEN7,
6266 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6267 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08006268
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006269 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02006270 I915_WRITE(CACHE_MODE_1,
6271 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07006272
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006273 /*
6274 * BSpec recommends 8x4 when MSAA is used,
6275 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006276 *
6277 * Note that PS/WM thread counts depend on the WIZ hashing
6278 * disable bit, which we don't touch here, but it's good
6279 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006280 */
6281 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006282 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006283
Ben Widawsky20848222012-05-04 18:58:59 -07006284 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
6285 snpcr &= ~GEN6_MBC_SNPCR_MASK;
6286 snpcr |= GEN6_MBC_SNPCR_MED;
6287 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006288
Ben Widawskyab5c6082013-04-05 13:12:41 -07006289 if (!HAS_PCH_NOP(dev))
6290 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006291
6292 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006293}
6294
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006295static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv)
6296{
6297 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6298
6299 /*
6300 * Disable trickle feed and enable pnd deadline calculation
6301 */
6302 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
6303 I915_WRITE(CBR1_VLV, 0);
6304}
6305
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006306static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006307{
6308 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006309
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006310 vlv_init_display_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006311
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006312 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05006313 I915_WRITE(_3D_CHICKEN3,
6314 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6315
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006316 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006317 I915_WRITE(IVB_CHICKEN3,
6318 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6319 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6320
Ville Syrjäläfad7d362014-01-22 21:32:39 +02006321 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006322 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07006323 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08006324 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
6325 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006326
Akash Goel4e046322014-04-04 17:14:38 +05306327 /* WaDisable_RenderCache_OperationalFlush:vlv */
6328 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6329
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006330 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05006331 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6332 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6333
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006334 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07006335 I915_WRITE(GEN7_ROW_CHICKEN2,
6336 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
6337
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006338 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006339 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6340 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6341 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6342
Ville Syrjälä46680e02014-01-22 21:33:01 +02006343 gen7_setup_fixed_func_scheduler(dev_priv);
6344
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006345 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006346 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006347 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006348 */
6349 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006350 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006351
Akash Goelc98f5062014-03-24 23:00:07 +05306352 /* WaDisableL3Bank2xClockGate:vlv
6353 * Disabling L3 clock gating- MMIO 940c[25] = 1
6354 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
6355 I915_WRITE(GEN7_UCGCTL4,
6356 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07006357
Ville Syrjäläafd58e72014-01-22 21:33:03 +02006358 /*
6359 * BSpec says this must be set, even though
6360 * WaDisable4x2SubspanOptimization isn't listed for VLV.
6361 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02006362 I915_WRITE(CACHE_MODE_1,
6363 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07006364
6365 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02006366 * BSpec recommends 8x4 when MSAA is used,
6367 * however in practice 16x4 seems fastest.
6368 *
6369 * Note that PS/WM thread counts depend on the WIZ hashing
6370 * disable bit, which we don't touch here, but it's good
6371 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
6372 */
6373 I915_WRITE(GEN7_GT_MODE,
6374 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
6375
6376 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02006377 * WaIncreaseL3CreditsForVLVB0:vlv
6378 * This is the hardware default actually.
6379 */
6380 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
6381
6382 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006383 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07006384 * Disable clock gating on th GCFG unit to prevent a delay
6385 * in the reporting of vblank events.
6386 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02006387 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006388}
6389
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006390static void cherryview_init_clock_gating(struct drm_device *dev)
6391{
6392 struct drm_i915_private *dev_priv = dev->dev_private;
6393
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006394 vlv_init_display_clock_gating(dev_priv);
Ville Syrjälädd811e72014-04-09 13:28:33 +03006395
Ville Syrjälä232ce332014-04-09 13:28:35 +03006396 /* WaVSRefCountFullforceMissDisable:chv */
6397 /* WaDSRefCountFullforceMissDisable:chv */
6398 I915_WRITE(GEN7_FF_THREAD_MODE,
6399 I915_READ(GEN7_FF_THREAD_MODE) &
6400 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03006401
6402 /* WaDisableSemaphoreAndSyncFlipWait:chv */
6403 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6404 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03006405
6406 /* WaDisableCSUnitClockGating:chv */
6407 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
6408 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03006409
6410 /* WaDisableSDEUnitClockGating:chv */
6411 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6412 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006413}
6414
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006415static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006416{
6417 struct drm_i915_private *dev_priv = dev->dev_private;
6418 uint32_t dspclk_gate;
6419
6420 I915_WRITE(RENCLK_GATE_D1, 0);
6421 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6422 GS_UNIT_CLOCK_GATE_DISABLE |
6423 CL_UNIT_CLOCK_GATE_DISABLE);
6424 I915_WRITE(RAMCLK_GATE_D, 0);
6425 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6426 OVRUNIT_CLOCK_GATE_DISABLE |
6427 OVCUNIT_CLOCK_GATE_DISABLE;
6428 if (IS_GM45(dev))
6429 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
6430 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02006431
6432 /* WaDisableRenderCachePipelinedFlush */
6433 I915_WRITE(CACHE_MODE_0,
6434 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03006435
Akash Goel4e046322014-04-04 17:14:38 +05306436 /* WaDisable_RenderCache_OperationalFlush:g4x */
6437 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6438
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006439 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006440}
6441
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006442static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006443{
6444 struct drm_i915_private *dev_priv = dev->dev_private;
6445
6446 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
6447 I915_WRITE(RENCLK_GATE_D2, 0);
6448 I915_WRITE(DSPCLK_GATE_D, 0);
6449 I915_WRITE(RAMCLK_GATE_D, 0);
6450 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006451 I915_WRITE(MI_ARB_STATE,
6452 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306453
6454 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6455 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006456}
6457
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006458static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006459{
6460 struct drm_i915_private *dev_priv = dev->dev_private;
6461
6462 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
6463 I965_RCC_CLOCK_GATE_DISABLE |
6464 I965_RCPB_CLOCK_GATE_DISABLE |
6465 I965_ISC_CLOCK_GATE_DISABLE |
6466 I965_FBC_CLOCK_GATE_DISABLE);
6467 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006468 I915_WRITE(MI_ARB_STATE,
6469 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306470
6471 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6472 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006473}
6474
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006475static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006476{
6477 struct drm_i915_private *dev_priv = dev->dev_private;
6478 u32 dstate = I915_READ(D_STATE);
6479
6480 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
6481 DSTATE_DOT_CLOCK_GATING;
6482 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01006483
6484 if (IS_PINEVIEW(dev))
6485 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02006486
6487 /* IIR "flip pending" means done if this bit is set */
6488 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02006489
6490 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02006491 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02006492
6493 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
6494 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03006495
6496 I915_WRITE(MI_ARB_STATE,
6497 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006498}
6499
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006500static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006501{
6502 struct drm_i915_private *dev_priv = dev->dev_private;
6503
6504 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02006505
6506 /* interrupts should cause a wake up from C3 */
6507 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
6508 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03006509
6510 I915_WRITE(MEM_MODE,
6511 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006512}
6513
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006514static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006515{
6516 struct drm_i915_private *dev_priv = dev->dev_private;
6517
6518 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03006519
6520 I915_WRITE(MEM_MODE,
6521 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
6522 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006523}
6524
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006525void intel_init_clock_gating(struct drm_device *dev)
6526{
6527 struct drm_i915_private *dev_priv = dev->dev_private;
6528
Damien Lespiauc57e3552015-02-09 19:33:05 +00006529 if (dev_priv->display.init_clock_gating)
6530 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006531}
6532
Imre Deak7d708ee2013-04-17 14:04:50 +03006533void intel_suspend_hw(struct drm_device *dev)
6534{
6535 if (HAS_PCH_LPT(dev))
6536 lpt_suspend_hw(dev);
6537}
6538
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006539/* Set up chip specific power management-related functions */
6540void intel_init_pm(struct drm_device *dev)
6541{
6542 struct drm_i915_private *dev_priv = dev->dev_private;
6543
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02006544 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006545
Daniel Vetterc921aba2012-04-26 23:28:17 +02006546 /* For cxsr */
6547 if (IS_PINEVIEW(dev))
6548 i915_pineview_get_mem_freq(dev);
6549 else if (IS_GEN5(dev))
6550 i915_ironlake_get_mem_freq(dev);
6551
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006552 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00006553 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00006554 skl_setup_wm_latency(dev);
6555
Imre Deaka82abe42015-03-27 14:00:04 +02006556 if (IS_BROXTON(dev))
6557 dev_priv->display.init_clock_gating =
6558 bxt_init_clock_gating;
6559 else if (IS_SKYLAKE(dev))
6560 dev_priv->display.init_clock_gating =
6561 skl_init_clock_gating;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00006562 dev_priv->display.update_wm = skl_update_wm;
6563 dev_priv->display.update_sprite_wm = skl_update_sprite_wm;
Damien Lespiauc83155a2014-03-28 00:18:35 +05306564 } else if (HAS_PCH_SPLIT(dev)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00006565 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03006566
Ville Syrjäläbd602542014-01-07 16:14:10 +02006567 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
6568 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
6569 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
6570 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
6571 dev_priv->display.update_wm = ilk_update_wm;
6572 dev_priv->display.update_sprite_wm = ilk_update_sprite_wm;
6573 } else {
6574 DRM_DEBUG_KMS("Failed to read display plane latency. "
6575 "Disable CxSR\n");
6576 }
6577
6578 if (IS_GEN5(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006579 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02006580 else if (IS_GEN6(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006581 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02006582 else if (IS_IVYBRIDGE(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006583 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02006584 else if (IS_HASWELL(dev))
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006585 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02006586 else if (INTEL_INFO(dev)->gen == 8)
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006587 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006588 } else if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläae801522015-03-05 21:19:49 +02006589 dev_priv->display.update_wm = valleyview_update_wm;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05306590 dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006591 dev_priv->display.init_clock_gating =
6592 cherryview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006593 } else if (IS_VALLEYVIEW(dev)) {
6594 dev_priv->display.update_wm = valleyview_update_wm;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05306595 dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006596 dev_priv->display.init_clock_gating =
6597 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006598 } else if (IS_PINEVIEW(dev)) {
6599 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
6600 dev_priv->is_ddr3,
6601 dev_priv->fsb_freq,
6602 dev_priv->mem_freq)) {
6603 DRM_INFO("failed to find known CxSR latency "
6604 "(found ddr%s fsb freq %d, mem freq %d), "
6605 "disabling CxSR\n",
6606 (dev_priv->is_ddr3 == 1) ? "3" : "2",
6607 dev_priv->fsb_freq, dev_priv->mem_freq);
6608 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03006609 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006610 dev_priv->display.update_wm = NULL;
6611 } else
6612 dev_priv->display.update_wm = pineview_update_wm;
6613 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
6614 } else if (IS_G4X(dev)) {
6615 dev_priv->display.update_wm = g4x_update_wm;
6616 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
6617 } else if (IS_GEN4(dev)) {
6618 dev_priv->display.update_wm = i965_update_wm;
6619 if (IS_CRESTLINE(dev))
6620 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
6621 else if (IS_BROADWATER(dev))
6622 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
6623 } else if (IS_GEN3(dev)) {
6624 dev_priv->display.update_wm = i9xx_update_wm;
6625 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
6626 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02006627 } else if (IS_GEN2(dev)) {
6628 if (INTEL_INFO(dev)->num_pipes == 1) {
6629 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006630 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02006631 } else {
6632 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006633 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02006634 }
6635
6636 if (IS_I85X(dev) || IS_I865G(dev))
6637 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
6638 else
6639 dev_priv->display.init_clock_gating = i830_init_clock_gating;
6640 } else {
6641 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006642 }
6643}
6644
Tom O'Rourke151a49d2014-11-13 18:50:10 -08006645int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07006646{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006647 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07006648
6649 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
6650 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
6651 return -EAGAIN;
6652 }
6653
6654 I915_WRITE(GEN6_PCODE_DATA, *val);
Damien Lespiaudddab342014-11-13 17:51:50 +00006655 I915_WRITE(GEN6_PCODE_DATA1, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07006656 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
6657
6658 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6659 500)) {
6660 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
6661 return -ETIMEDOUT;
6662 }
6663
6664 *val = I915_READ(GEN6_PCODE_DATA);
6665 I915_WRITE(GEN6_PCODE_DATA, 0);
6666
6667 return 0;
6668}
6669
Tom O'Rourke151a49d2014-11-13 18:50:10 -08006670int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07006671{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006672 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07006673
6674 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
6675 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
6676 return -EAGAIN;
6677 }
6678
6679 I915_WRITE(GEN6_PCODE_DATA, val);
6680 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
6681
6682 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6683 500)) {
6684 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
6685 return -ETIMEDOUT;
6686 }
6687
6688 I915_WRITE(GEN6_PCODE_DATA, 0);
6689
6690 return 0;
6691}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07006692
Ville Syrjälädd06f882014-11-10 22:55:12 +02006693static int vlv_gpu_freq_div(unsigned int czclk_freq)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006694{
Ville Syrjälädd06f882014-11-10 22:55:12 +02006695 switch (czclk_freq) {
6696 case 200:
6697 return 10;
6698 case 267:
6699 return 12;
6700 case 320:
6701 case 333:
Ville Syrjälädd06f882014-11-10 22:55:12 +02006702 return 16;
Ville Syrjäläab3fb152014-11-10 22:55:15 +02006703 case 400:
6704 return 20;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006705 default:
6706 return -1;
6707 }
Ville Syrjälädd06f882014-11-10 22:55:12 +02006708}
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006709
Ville Syrjälädd06f882014-11-10 22:55:12 +02006710static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
6711{
6712 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
6713
6714 div = vlv_gpu_freq_div(czclk_freq);
6715 if (div < 0)
6716 return div;
6717
6718 return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006719}
6720
Fengguang Wub55dd642014-07-12 11:21:39 +02006721static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006722{
Ville Syrjälädd06f882014-11-10 22:55:12 +02006723 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006724
Ville Syrjälädd06f882014-11-10 22:55:12 +02006725 mul = vlv_gpu_freq_div(czclk_freq);
6726 if (mul < 0)
6727 return mul;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006728
Ville Syrjälädd06f882014-11-10 22:55:12 +02006729 return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006730}
6731
Fengguang Wub55dd642014-07-12 11:21:39 +02006732static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05306733{
Ville Syrjälädd06f882014-11-10 22:55:12 +02006734 int div, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05306735
Ville Syrjälädd06f882014-11-10 22:55:12 +02006736 div = vlv_gpu_freq_div(czclk_freq) / 2;
6737 if (div < 0)
6738 return div;
Deepak S22b1b2f2014-07-12 14:54:33 +05306739
Ville Syrjälädd06f882014-11-10 22:55:12 +02006740 return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05306741}
6742
Fengguang Wub55dd642014-07-12 11:21:39 +02006743static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05306744{
Ville Syrjälädd06f882014-11-10 22:55:12 +02006745 int mul, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05306746
Ville Syrjälädd06f882014-11-10 22:55:12 +02006747 mul = vlv_gpu_freq_div(czclk_freq) / 2;
6748 if (mul < 0)
6749 return mul;
Deepak S22b1b2f2014-07-12 14:54:33 +05306750
Ville Syrjälä1c147622014-08-18 14:42:43 +03006751 /* CHV needs even values */
Ville Syrjälädd06f882014-11-10 22:55:12 +02006752 return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05306753}
6754
Ville Syrjälä616bc822015-01-23 21:04:25 +02006755int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
6756{
Akash Goel80b6dda2015-03-06 11:07:15 +05306757 if (IS_GEN9(dev_priv->dev))
6758 return (val * GT_FREQUENCY_MULTIPLIER) / GEN9_FREQ_SCALER;
6759 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02006760 return chv_gpu_freq(dev_priv, val);
6761 else if (IS_VALLEYVIEW(dev_priv->dev))
6762 return byt_gpu_freq(dev_priv, val);
6763 else
6764 return val * GT_FREQUENCY_MULTIPLIER;
6765}
6766
Ville Syrjälä616bc822015-01-23 21:04:25 +02006767int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
6768{
Akash Goel80b6dda2015-03-06 11:07:15 +05306769 if (IS_GEN9(dev_priv->dev))
6770 return (val * GEN9_FREQ_SCALER) / GT_FREQUENCY_MULTIPLIER;
6771 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02006772 return chv_freq_opcode(dev_priv, val);
Deepak S22b1b2f2014-07-12 14:54:33 +05306773 else if (IS_VALLEYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02006774 return byt_freq_opcode(dev_priv, val);
6775 else
6776 return val / GT_FREQUENCY_MULTIPLIER;
Deepak S22b1b2f2014-07-12 14:54:33 +05306777}
6778
Daniel Vetterf742a552013-12-06 10:17:53 +01006779void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01006780{
6781 struct drm_i915_private *dev_priv = dev->dev_private;
6782
Daniel Vetterf742a552013-12-06 10:17:53 +01006783 mutex_init(&dev_priv->rps.hw_lock);
6784
Chris Wilson907b28c2013-07-19 20:36:52 +01006785 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
6786 intel_gen6_powersave_work);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03006787
Paulo Zanoni33688d92014-03-07 20:08:19 -03006788 dev_priv->pm.suspended = false;
Chris Wilson907b28c2013-07-19 20:36:52 +01006789}