blob: ccdb5819134a313606d2d41c240b52acda7f6f6a [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/**
Jani Nikula18afd442016-01-18 09:19:48 +020035 * DOC: RC6
36 *
Ben Widawskydc39fff2013-10-18 12:32:07 -070037 * RC6 is a special power stage which allows the GPU to enter an very
38 * low-voltage mode when idle, using down to 0V while at this stage. This
39 * stage is entered automatically when the GPU is idle when RC6 support is
40 * enabled, and as soon as new workload arises GPU wakes up automatically as well.
41 *
42 * There are different RC6 modes available in Intel GPU, which differentiate
43 * among each other with the latency required to enter and leave RC6 and
44 * voltage consumed by the GPU in different states.
45 *
46 * The combination of the following flags define which states GPU is allowed
47 * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
48 * RC6pp is deepest RC6. Their support by hardware varies according to the
49 * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
50 * which brings the most power savings; deeper states save more power, but
51 * require higher latency to switch to and wake up.
52 */
53#define INTEL_RC6_ENABLE (1<<0)
54#define INTEL_RC6p_ENABLE (1<<1)
55#define INTEL_RC6pp_ENABLE (1<<2)
56
Imre Deaka82abe42015-03-27 14:00:04 +020057static void bxt_init_clock_gating(struct drm_device *dev)
58{
Imre Deak32608ca2015-03-11 11:10:27 +020059 struct drm_i915_private *dev_priv = dev->dev_private;
60
Nick Hoatha7546152015-06-29 14:07:32 +010061 /* WaDisableSDEUnitClockGating:bxt */
62 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
63 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
64
Imre Deak32608ca2015-03-11 11:10:27 +020065 /*
66 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +020067 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +020068 */
Imre Deak32608ca2015-03-11 11:10:27 +020069 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +020070 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7ac2015-12-01 10:23:52 +020071
72 /*
73 * Wa: Backlight PWM may stop in the asserted state, causing backlight
74 * to stay fully on.
75 */
76 if (IS_BXT_REVID(dev_priv, BXT_REVID_B0, REVID_FOREVER))
77 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
78 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +020079}
80
Daniel Vetterc921aba2012-04-26 23:28:17 +020081static void i915_pineview_get_mem_freq(struct drm_device *dev)
82{
Jani Nikula50227e12014-03-31 14:27:21 +030083 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +020084 u32 tmp;
85
86 tmp = I915_READ(CLKCFG);
87
88 switch (tmp & CLKCFG_FSB_MASK) {
89 case CLKCFG_FSB_533:
90 dev_priv->fsb_freq = 533; /* 133*4 */
91 break;
92 case CLKCFG_FSB_800:
93 dev_priv->fsb_freq = 800; /* 200*4 */
94 break;
95 case CLKCFG_FSB_667:
96 dev_priv->fsb_freq = 667; /* 167*4 */
97 break;
98 case CLKCFG_FSB_400:
99 dev_priv->fsb_freq = 400; /* 100*4 */
100 break;
101 }
102
103 switch (tmp & CLKCFG_MEM_MASK) {
104 case CLKCFG_MEM_533:
105 dev_priv->mem_freq = 533;
106 break;
107 case CLKCFG_MEM_667:
108 dev_priv->mem_freq = 667;
109 break;
110 case CLKCFG_MEM_800:
111 dev_priv->mem_freq = 800;
112 break;
113 }
114
115 /* detect pineview DDR3 setting */
116 tmp = I915_READ(CSHRDDR3CTL);
117 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
118}
119
120static void i915_ironlake_get_mem_freq(struct drm_device *dev)
121{
Jani Nikula50227e12014-03-31 14:27:21 +0300122 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200123 u16 ddrpll, csipll;
124
125 ddrpll = I915_READ16(DDRMPLL1);
126 csipll = I915_READ16(CSIPLL0);
127
128 switch (ddrpll & 0xff) {
129 case 0xc:
130 dev_priv->mem_freq = 800;
131 break;
132 case 0x10:
133 dev_priv->mem_freq = 1066;
134 break;
135 case 0x14:
136 dev_priv->mem_freq = 1333;
137 break;
138 case 0x18:
139 dev_priv->mem_freq = 1600;
140 break;
141 default:
142 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
143 ddrpll & 0xff);
144 dev_priv->mem_freq = 0;
145 break;
146 }
147
Daniel Vetter20e4d402012-08-08 23:35:39 +0200148 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200149
150 switch (csipll & 0x3ff) {
151 case 0x00c:
152 dev_priv->fsb_freq = 3200;
153 break;
154 case 0x00e:
155 dev_priv->fsb_freq = 3733;
156 break;
157 case 0x010:
158 dev_priv->fsb_freq = 4266;
159 break;
160 case 0x012:
161 dev_priv->fsb_freq = 4800;
162 break;
163 case 0x014:
164 dev_priv->fsb_freq = 5333;
165 break;
166 case 0x016:
167 dev_priv->fsb_freq = 5866;
168 break;
169 case 0x018:
170 dev_priv->fsb_freq = 6400;
171 break;
172 default:
173 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
174 csipll & 0x3ff);
175 dev_priv->fsb_freq = 0;
176 break;
177 }
178
179 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200180 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200181 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200182 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200183 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200184 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200185 }
186}
187
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300188static const struct cxsr_latency cxsr_latency_table[] = {
189 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
190 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
191 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
192 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
193 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
194
195 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
196 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
197 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
198 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
199 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
200
201 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
202 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
203 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
204 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
205 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
206
207 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
208 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
209 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
210 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
211 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
212
213 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
214 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
215 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
216 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
217 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
218
219 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
220 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
221 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
222 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
223 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
224};
225
Daniel Vetter63c62272012-04-21 23:17:55 +0200226static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300227 int is_ddr3,
228 int fsb,
229 int mem)
230{
231 const struct cxsr_latency *latency;
232 int i;
233
234 if (fsb == 0 || mem == 0)
235 return NULL;
236
237 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
238 latency = &cxsr_latency_table[i];
239 if (is_desktop == latency->is_desktop &&
240 is_ddr3 == latency->is_ddr3 &&
241 fsb == latency->fsb_freq && mem == latency->mem_freq)
242 return latency;
243 }
244
245 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
246
247 return NULL;
248}
249
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200250static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
251{
252 u32 val;
253
254 mutex_lock(&dev_priv->rps.hw_lock);
255
256 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
257 if (enable)
258 val &= ~FORCE_DDR_HIGH_FREQ;
259 else
260 val |= FORCE_DDR_HIGH_FREQ;
261 val &= ~FORCE_DDR_LOW_FREQ;
262 val |= FORCE_DDR_FREQ_REQ_ACK;
263 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
264
265 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
266 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
267 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
268
269 mutex_unlock(&dev_priv->rps.hw_lock);
270}
271
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200272static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
273{
274 u32 val;
275
276 mutex_lock(&dev_priv->rps.hw_lock);
277
278 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
279 if (enable)
280 val |= DSP_MAXFIFO_PM5_ENABLE;
281 else
282 val &= ~DSP_MAXFIFO_PM5_ENABLE;
283 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
284
285 mutex_unlock(&dev_priv->rps.hw_lock);
286}
287
Ville Syrjäläf4998962015-03-10 17:02:21 +0200288#define FW_WM(value, plane) \
289 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
290
Imre Deak5209b1f2014-07-01 12:36:17 +0300291void intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300292{
Imre Deak5209b1f2014-07-01 12:36:17 +0300293 struct drm_device *dev = dev_priv->dev;
294 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300295
Wayne Boyer666a4532015-12-09 12:29:35 -0800296 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Imre Deak5209b1f2014-07-01 12:36:17 +0300297 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300298 POSTING_READ(FW_BLC_SELF_VLV);
Ville Syrjälä852eb002015-06-24 22:00:07 +0300299 dev_priv->wm.vlv.cxsr = enable;
Imre Deak5209b1f2014-07-01 12:36:17 +0300300 } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) {
301 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300302 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300303 } else if (IS_PINEVIEW(dev)) {
304 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
305 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
306 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300307 POSTING_READ(DSPFW3);
Imre Deak5209b1f2014-07-01 12:36:17 +0300308 } else if (IS_I945G(dev) || IS_I945GM(dev)) {
309 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
310 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
311 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300312 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300313 } else if (IS_I915GM(dev)) {
314 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
315 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
316 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300317 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300318 } else {
319 return;
320 }
321
322 DRM_DEBUG_KMS("memory self-refresh is %s\n",
323 enable ? "enabled" : "disabled");
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300324}
325
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200326
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300327/*
328 * Latency for FIFO fetches is dependent on several factors:
329 * - memory configuration (speed, channels)
330 * - chipset
331 * - current MCH state
332 * It can be fairly high in some situations, so here we assume a fairly
333 * pessimal value. It's a tradeoff between extra memory fetches (if we
334 * set this value too high, the FIFO will fetch frequently to stay full)
335 * and power consumption (set it too low to save power and we might see
336 * FIFO underruns and display "flicker").
337 *
338 * A value of 5us seems to be a good balance; safe for very low end
339 * platforms but not overly aggressive on lower latency configs.
340 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100341static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300342
Ville Syrjäläb5004722015-03-05 21:19:47 +0200343#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
344 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
345
346static int vlv_get_fifo_size(struct drm_device *dev,
347 enum pipe pipe, int plane)
348{
349 struct drm_i915_private *dev_priv = dev->dev_private;
350 int sprite0_start, sprite1_start, size;
351
352 switch (pipe) {
353 uint32_t dsparb, dsparb2, dsparb3;
354 case PIPE_A:
355 dsparb = I915_READ(DSPARB);
356 dsparb2 = I915_READ(DSPARB2);
357 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
358 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
359 break;
360 case PIPE_B:
361 dsparb = I915_READ(DSPARB);
362 dsparb2 = I915_READ(DSPARB2);
363 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
364 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
365 break;
366 case PIPE_C:
367 dsparb2 = I915_READ(DSPARB2);
368 dsparb3 = I915_READ(DSPARB3);
369 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
370 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
371 break;
372 default:
373 return 0;
374 }
375
376 switch (plane) {
377 case 0:
378 size = sprite0_start;
379 break;
380 case 1:
381 size = sprite1_start - sprite0_start;
382 break;
383 case 2:
384 size = 512 - 1 - sprite1_start;
385 break;
386 default:
387 return 0;
388 }
389
390 DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n",
391 pipe_name(pipe), plane == 0 ? "primary" : "sprite",
392 plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1),
393 size);
394
395 return size;
396}
397
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300398static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300399{
400 struct drm_i915_private *dev_priv = dev->dev_private;
401 uint32_t dsparb = I915_READ(DSPARB);
402 int size;
403
404 size = dsparb & 0x7f;
405 if (plane)
406 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
407
408 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
409 plane ? "B" : "A", size);
410
411 return size;
412}
413
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200414static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300415{
416 struct drm_i915_private *dev_priv = dev->dev_private;
417 uint32_t dsparb = I915_READ(DSPARB);
418 int size;
419
420 size = dsparb & 0x1ff;
421 if (plane)
422 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
423 size >>= 1; /* Convert to cachelines */
424
425 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
426 plane ? "B" : "A", size);
427
428 return size;
429}
430
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300431static int i845_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 & 0x7f;
438 size >>= 2; /* Convert to cachelines */
439
440 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
441 plane ? "B" : "A",
442 size);
443
444 return size;
445}
446
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300447/* Pineview has different values for various configs */
448static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300449 .fifo_size = PINEVIEW_DISPLAY_FIFO,
450 .max_wm = PINEVIEW_MAX_WM,
451 .default_wm = PINEVIEW_DFT_WM,
452 .guard_size = PINEVIEW_GUARD_WM,
453 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300454};
455static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300456 .fifo_size = PINEVIEW_DISPLAY_FIFO,
457 .max_wm = PINEVIEW_MAX_WM,
458 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
459 .guard_size = PINEVIEW_GUARD_WM,
460 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300461};
462static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300463 .fifo_size = PINEVIEW_CURSOR_FIFO,
464 .max_wm = PINEVIEW_CURSOR_MAX_WM,
465 .default_wm = PINEVIEW_CURSOR_DFT_WM,
466 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
467 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300468};
469static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300470 .fifo_size = PINEVIEW_CURSOR_FIFO,
471 .max_wm = PINEVIEW_CURSOR_MAX_WM,
472 .default_wm = PINEVIEW_CURSOR_DFT_WM,
473 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
474 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300475};
476static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300477 .fifo_size = G4X_FIFO_SIZE,
478 .max_wm = G4X_MAX_WM,
479 .default_wm = G4X_MAX_WM,
480 .guard_size = 2,
481 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300482};
483static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300484 .fifo_size = I965_CURSOR_FIFO,
485 .max_wm = I965_CURSOR_MAX_WM,
486 .default_wm = I965_CURSOR_DFT_WM,
487 .guard_size = 2,
488 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300489};
490static const struct intel_watermark_params valleyview_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300491 .fifo_size = VALLEYVIEW_FIFO_SIZE,
492 .max_wm = VALLEYVIEW_MAX_WM,
493 .default_wm = VALLEYVIEW_MAX_WM,
494 .guard_size = 2,
495 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300496};
497static const struct intel_watermark_params valleyview_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300498 .fifo_size = I965_CURSOR_FIFO,
499 .max_wm = VALLEYVIEW_CURSOR_MAX_WM,
500 .default_wm = I965_CURSOR_DFT_WM,
501 .guard_size = 2,
502 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300503};
504static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300505 .fifo_size = I965_CURSOR_FIFO,
506 .max_wm = I965_CURSOR_MAX_WM,
507 .default_wm = I965_CURSOR_DFT_WM,
508 .guard_size = 2,
509 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300510};
511static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300512 .fifo_size = I945_FIFO_SIZE,
513 .max_wm = I915_MAX_WM,
514 .default_wm = 1,
515 .guard_size = 2,
516 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300517};
518static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300519 .fifo_size = I915_FIFO_SIZE,
520 .max_wm = I915_MAX_WM,
521 .default_wm = 1,
522 .guard_size = 2,
523 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300524};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300525static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300526 .fifo_size = I855GM_FIFO_SIZE,
527 .max_wm = I915_MAX_WM,
528 .default_wm = 1,
529 .guard_size = 2,
530 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300531};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300532static const struct intel_watermark_params i830_bc_wm_info = {
533 .fifo_size = I855GM_FIFO_SIZE,
534 .max_wm = I915_MAX_WM/2,
535 .default_wm = 1,
536 .guard_size = 2,
537 .cacheline_size = I830_FIFO_LINE_SIZE,
538};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200539static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300540 .fifo_size = I830_FIFO_SIZE,
541 .max_wm = I915_MAX_WM,
542 .default_wm = 1,
543 .guard_size = 2,
544 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300545};
546
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300547/**
548 * intel_calculate_wm - calculate watermark level
549 * @clock_in_khz: pixel clock
550 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200551 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300552 * @latency_ns: memory latency for the platform
553 *
554 * Calculate the watermark level (the level at which the display plane will
555 * start fetching from memory again). Each chip has a different display
556 * FIFO size and allocation, so the caller needs to figure that out and pass
557 * in the correct intel_watermark_params structure.
558 *
559 * As the pixel clock runs, the FIFO will be drained at a rate that depends
560 * on the pixel size. When it reaches the watermark level, it'll start
561 * fetching FIFO line sized based chunks from memory until the FIFO fills
562 * past the watermark point. If the FIFO drains completely, a FIFO underrun
563 * will occur, and a display engine hang could result.
564 */
565static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
566 const struct intel_watermark_params *wm,
Ville Syrjäläac484962016-01-20 21:05:26 +0200567 int fifo_size, int cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300568 unsigned long latency_ns)
569{
570 long entries_required, wm_size;
571
572 /*
573 * Note: we need to make sure we don't overflow for various clock &
574 * latency values.
575 * clocks go from a few thousand to several hundred thousand.
576 * latency is usually a few thousand
577 */
Ville Syrjäläac484962016-01-20 21:05:26 +0200578 entries_required = ((clock_in_khz / 1000) * cpp * latency_ns) /
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300579 1000;
580 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
581
582 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
583
584 wm_size = fifo_size - (entries_required + wm->guard_size);
585
586 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
587
588 /* Don't promote wm_size to unsigned... */
589 if (wm_size > (long)wm->max_wm)
590 wm_size = wm->max_wm;
591 if (wm_size <= 0)
592 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300593
594 /*
595 * Bspec seems to indicate that the value shouldn't be lower than
596 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
597 * Lets go for 8 which is the burst size since certain platforms
598 * already use a hardcoded 8 (which is what the spec says should be
599 * done).
600 */
601 if (wm_size <= 8)
602 wm_size = 8;
603
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300604 return wm_size;
605}
606
607static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
608{
609 struct drm_crtc *crtc, *enabled = NULL;
610
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100611 for_each_crtc(dev, crtc) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000612 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300613 if (enabled)
614 return NULL;
615 enabled = crtc;
616 }
617 }
618
619 return enabled;
620}
621
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300622static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300623{
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300624 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300625 struct drm_i915_private *dev_priv = dev->dev_private;
626 struct drm_crtc *crtc;
627 const struct cxsr_latency *latency;
628 u32 reg;
629 unsigned long wm;
630
631 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
632 dev_priv->fsb_freq, dev_priv->mem_freq);
633 if (!latency) {
634 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300635 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300636 return;
637 }
638
639 crtc = single_enabled_crtc(dev);
640 if (crtc) {
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300641 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +0200642 int cpp = drm_format_plane_cpp(crtc->primary->state->fb->pixel_format, 0);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300643 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300644
645 /* Display SR */
646 wm = intel_calculate_wm(clock, &pineview_display_wm,
647 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200648 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300649 reg = I915_READ(DSPFW1);
650 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200651 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300652 I915_WRITE(DSPFW1, reg);
653 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
654
655 /* cursor SR */
656 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
657 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200658 cpp, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300659 reg = I915_READ(DSPFW3);
660 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200661 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300662 I915_WRITE(DSPFW3, reg);
663
664 /* Display HPLL off SR */
665 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
666 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200667 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300668 reg = I915_READ(DSPFW3);
669 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200670 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300671 I915_WRITE(DSPFW3, reg);
672
673 /* cursor HPLL off SR */
674 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
675 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200676 cpp, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300677 reg = I915_READ(DSPFW3);
678 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200679 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300680 I915_WRITE(DSPFW3, reg);
681 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
682
Imre Deak5209b1f2014-07-01 12:36:17 +0300683 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300684 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300685 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300686 }
687}
688
689static bool g4x_compute_wm0(struct drm_device *dev,
690 int plane,
691 const struct intel_watermark_params *display,
692 int display_latency_ns,
693 const struct intel_watermark_params *cursor,
694 int cursor_latency_ns,
695 int *plane_wm,
696 int *cursor_wm)
697{
698 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300699 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +0200700 int htotal, hdisplay, clock, cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300701 int line_time_us, line_count;
702 int entries, tlb_miss;
703
704 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +0000705 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300706 *cursor_wm = cursor->guard_size;
707 *plane_wm = display->guard_size;
708 return false;
709 }
710
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200711 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100712 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800713 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200714 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Ville Syrjäläac484962016-01-20 21:05:26 +0200715 cpp = drm_format_plane_cpp(crtc->primary->state->fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300716
717 /* Use the small buffer method to calculate plane watermark */
Ville Syrjäläac484962016-01-20 21:05:26 +0200718 entries = ((clock * cpp / 1000) * display_latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300719 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
720 if (tlb_miss > 0)
721 entries += tlb_miss;
722 entries = DIV_ROUND_UP(entries, display->cacheline_size);
723 *plane_wm = entries + display->guard_size;
724 if (*plane_wm > (int)display->max_wm)
725 *plane_wm = display->max_wm;
726
727 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200728 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300729 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläac484962016-01-20 21:05:26 +0200730 entries = line_count * crtc->cursor->state->crtc_w * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300731 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
732 if (tlb_miss > 0)
733 entries += tlb_miss;
734 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
735 *cursor_wm = entries + cursor->guard_size;
736 if (*cursor_wm > (int)cursor->max_wm)
737 *cursor_wm = (int)cursor->max_wm;
738
739 return true;
740}
741
742/*
743 * Check the wm result.
744 *
745 * If any calculated watermark values is larger than the maximum value that
746 * can be programmed into the associated watermark register, that watermark
747 * must be disabled.
748 */
749static bool g4x_check_srwm(struct drm_device *dev,
750 int display_wm, int cursor_wm,
751 const struct intel_watermark_params *display,
752 const struct intel_watermark_params *cursor)
753{
754 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
755 display_wm, cursor_wm);
756
757 if (display_wm > display->max_wm) {
758 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
759 display_wm, display->max_wm);
760 return false;
761 }
762
763 if (cursor_wm > cursor->max_wm) {
764 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
765 cursor_wm, cursor->max_wm);
766 return false;
767 }
768
769 if (!(display_wm || cursor_wm)) {
770 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
771 return false;
772 }
773
774 return true;
775}
776
777static bool g4x_compute_srwm(struct drm_device *dev,
778 int plane,
779 int latency_ns,
780 const struct intel_watermark_params *display,
781 const struct intel_watermark_params *cursor,
782 int *display_wm, int *cursor_wm)
783{
784 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300785 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +0200786 int hdisplay, htotal, cpp, clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300787 unsigned long line_time_us;
788 int line_count, line_size;
789 int small, large;
790 int entries;
791
792 if (!latency_ns) {
793 *display_wm = *cursor_wm = 0;
794 return false;
795 }
796
797 crtc = intel_get_crtc_for_plane(dev, plane);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200798 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100799 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800800 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200801 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Ville Syrjäläac484962016-01-20 21:05:26 +0200802 cpp = drm_format_plane_cpp(crtc->primary->state->fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300803
Ville Syrjälä922044c2014-02-14 14:18:57 +0200804 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300805 line_count = (latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläac484962016-01-20 21:05:26 +0200806 line_size = hdisplay * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300807
808 /* Use the minimum of the small and large buffer method for primary */
Ville Syrjäläac484962016-01-20 21:05:26 +0200809 small = ((clock * cpp / 1000) * latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300810 large = line_count * line_size;
811
812 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
813 *display_wm = entries + display->guard_size;
814
815 /* calculate the self-refresh watermark for display cursor */
Ville Syrjäläac484962016-01-20 21:05:26 +0200816 entries = line_count * cpp * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300817 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
818 *cursor_wm = entries + cursor->guard_size;
819
820 return g4x_check_srwm(dev,
821 *display_wm, *cursor_wm,
822 display, cursor);
823}
824
Ville Syrjälä15665972015-03-10 16:16:28 +0200825#define FW_WM_VLV(value, plane) \
826 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
827
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200828static void vlv_write_wm_values(struct intel_crtc *crtc,
829 const struct vlv_wm_values *wm)
830{
831 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
832 enum pipe pipe = crtc->pipe;
833
834 I915_WRITE(VLV_DDL(pipe),
835 (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) |
836 (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) |
837 (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) |
838 (wm->ddl[pipe].primary << DDL_PLANE_SHIFT));
839
Ville Syrjäläae801522015-03-05 21:19:49 +0200840 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200841 FW_WM(wm->sr.plane, SR) |
842 FW_WM(wm->pipe[PIPE_B].cursor, CURSORB) |
843 FW_WM_VLV(wm->pipe[PIPE_B].primary, PLANEB) |
844 FW_WM_VLV(wm->pipe[PIPE_A].primary, PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200845 I915_WRITE(DSPFW2,
Ville Syrjälä15665972015-03-10 16:16:28 +0200846 FW_WM_VLV(wm->pipe[PIPE_A].sprite[1], SPRITEB) |
847 FW_WM(wm->pipe[PIPE_A].cursor, CURSORA) |
848 FW_WM_VLV(wm->pipe[PIPE_A].sprite[0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200849 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200850 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200851
852 if (IS_CHERRYVIEW(dev_priv)) {
853 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200854 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
855 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200856 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200857 FW_WM_VLV(wm->pipe[PIPE_C].sprite[1], SPRITEF) |
858 FW_WM_VLV(wm->pipe[PIPE_C].sprite[0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200859 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200860 FW_WM_VLV(wm->pipe[PIPE_C].primary, PLANEC) |
861 FW_WM(wm->pipe[PIPE_C].cursor, CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200862 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200863 FW_WM(wm->sr.plane >> 9, SR_HI) |
864 FW_WM(wm->pipe[PIPE_C].sprite[1] >> 8, SPRITEF_HI) |
865 FW_WM(wm->pipe[PIPE_C].sprite[0] >> 8, SPRITEE_HI) |
866 FW_WM(wm->pipe[PIPE_C].primary >> 8, PLANEC_HI) |
867 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
868 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
869 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
870 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
871 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
872 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200873 } else {
874 I915_WRITE(DSPFW7,
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(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200878 FW_WM(wm->sr.plane >> 9, SR_HI) |
879 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
880 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
881 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
882 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
883 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
884 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200885 }
886
Ville Syrjälä2cb389b2015-06-24 22:00:10 +0300887 /* zero (unused) WM1 watermarks */
888 I915_WRITE(DSPFW4, 0);
889 I915_WRITE(DSPFW5, 0);
890 I915_WRITE(DSPFW6, 0);
891 I915_WRITE(DSPHOWM1, 0);
892
Ville Syrjäläae801522015-03-05 21:19:49 +0200893 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200894}
895
Ville Syrjälä15665972015-03-10 16:16:28 +0200896#undef FW_WM_VLV
897
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300898enum vlv_wm_level {
899 VLV_WM_LEVEL_PM2,
900 VLV_WM_LEVEL_PM5,
901 VLV_WM_LEVEL_DDR_DVFS,
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300902};
903
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300904/* latency must be in 0.1us units. */
905static unsigned int vlv_wm_method2(unsigned int pixel_rate,
906 unsigned int pipe_htotal,
907 unsigned int horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +0200908 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300909 unsigned int latency)
910{
911 unsigned int ret;
912
913 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +0200914 ret = (ret + 1) * horiz_pixels * cpp;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300915 ret = DIV_ROUND_UP(ret, 64);
916
917 return ret;
918}
919
920static void vlv_setup_wm_latency(struct drm_device *dev)
921{
922 struct drm_i915_private *dev_priv = dev->dev_private;
923
924 /* all latencies in usec */
925 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
926
Ville Syrjälä58590c12015-09-08 21:05:12 +0300927 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
928
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300929 if (IS_CHERRYVIEW(dev_priv)) {
930 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
931 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300932
933 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300934 }
935}
936
937static uint16_t vlv_compute_wm_level(struct intel_plane *plane,
938 struct intel_crtc *crtc,
939 const struct intel_plane_state *state,
940 int level)
941{
942 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläac484962016-01-20 21:05:26 +0200943 int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300944
945 if (dev_priv->wm.pri_latency[level] == 0)
946 return USHRT_MAX;
947
948 if (!state->visible)
949 return 0;
950
Ville Syrjäläac484962016-01-20 21:05:26 +0200951 cpp = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300952 clock = crtc->config->base.adjusted_mode.crtc_clock;
953 htotal = crtc->config->base.adjusted_mode.crtc_htotal;
954 width = crtc->config->pipe_src_w;
955 if (WARN_ON(htotal == 0))
956 htotal = 1;
957
958 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
959 /*
960 * FIXME the formula gives values that are
961 * too big for the cursor FIFO, and hence we
962 * would never be able to use cursors. For
963 * now just hardcode the watermark.
964 */
965 wm = 63;
966 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +0200967 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300968 dev_priv->wm.pri_latency[level] * 10);
969 }
970
971 return min_t(int, wm, USHRT_MAX);
972}
973
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +0300974static void vlv_compute_fifo(struct intel_crtc *crtc)
975{
976 struct drm_device *dev = crtc->base.dev;
977 struct vlv_wm_state *wm_state = &crtc->wm_state;
978 struct intel_plane *plane;
979 unsigned int total_rate = 0;
980 const int fifo_size = 512 - 1;
981 int fifo_extra, fifo_left = fifo_size;
982
983 for_each_intel_plane_on_crtc(dev, crtc, plane) {
984 struct intel_plane_state *state =
985 to_intel_plane_state(plane->base.state);
986
987 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
988 continue;
989
990 if (state->visible) {
991 wm_state->num_active_planes++;
992 total_rate += drm_format_plane_cpp(state->base.fb->pixel_format, 0);
993 }
994 }
995
996 for_each_intel_plane_on_crtc(dev, crtc, plane) {
997 struct intel_plane_state *state =
998 to_intel_plane_state(plane->base.state);
999 unsigned int rate;
1000
1001 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1002 plane->wm.fifo_size = 63;
1003 continue;
1004 }
1005
1006 if (!state->visible) {
1007 plane->wm.fifo_size = 0;
1008 continue;
1009 }
1010
1011 rate = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1012 plane->wm.fifo_size = fifo_size * rate / total_rate;
1013 fifo_left -= plane->wm.fifo_size;
1014 }
1015
1016 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1017
1018 /* spread the remainder evenly */
1019 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1020 int plane_extra;
1021
1022 if (fifo_left == 0)
1023 break;
1024
1025 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1026 continue;
1027
1028 /* give it all to the first plane if none are active */
1029 if (plane->wm.fifo_size == 0 &&
1030 wm_state->num_active_planes)
1031 continue;
1032
1033 plane_extra = min(fifo_extra, fifo_left);
1034 plane->wm.fifo_size += plane_extra;
1035 fifo_left -= plane_extra;
1036 }
1037
1038 WARN_ON(fifo_left != 0);
1039}
1040
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001041static void vlv_invert_wms(struct intel_crtc *crtc)
1042{
1043 struct vlv_wm_state *wm_state = &crtc->wm_state;
1044 int level;
1045
1046 for (level = 0; level < wm_state->num_levels; level++) {
1047 struct drm_device *dev = crtc->base.dev;
1048 const int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1049 struct intel_plane *plane;
1050
1051 wm_state->sr[level].plane = sr_fifo_size - wm_state->sr[level].plane;
1052 wm_state->sr[level].cursor = 63 - wm_state->sr[level].cursor;
1053
1054 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1055 switch (plane->base.type) {
1056 int sprite;
1057 case DRM_PLANE_TYPE_CURSOR:
1058 wm_state->wm[level].cursor = plane->wm.fifo_size -
1059 wm_state->wm[level].cursor;
1060 break;
1061 case DRM_PLANE_TYPE_PRIMARY:
1062 wm_state->wm[level].primary = plane->wm.fifo_size -
1063 wm_state->wm[level].primary;
1064 break;
1065 case DRM_PLANE_TYPE_OVERLAY:
1066 sprite = plane->plane;
1067 wm_state->wm[level].sprite[sprite] = plane->wm.fifo_size -
1068 wm_state->wm[level].sprite[sprite];
1069 break;
1070 }
1071 }
1072 }
1073}
1074
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001075static void vlv_compute_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001076{
1077 struct drm_device *dev = crtc->base.dev;
1078 struct vlv_wm_state *wm_state = &crtc->wm_state;
1079 struct intel_plane *plane;
1080 int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1081 int level;
1082
1083 memset(wm_state, 0, sizeof(*wm_state));
1084
Ville Syrjälä852eb002015-06-24 22:00:07 +03001085 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001086 wm_state->num_levels = to_i915(dev)->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001087
1088 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001089
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001090 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001091
1092 if (wm_state->num_active_planes != 1)
1093 wm_state->cxsr = false;
1094
1095 if (wm_state->cxsr) {
1096 for (level = 0; level < wm_state->num_levels; level++) {
1097 wm_state->sr[level].plane = sr_fifo_size;
1098 wm_state->sr[level].cursor = 63;
1099 }
1100 }
1101
1102 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1103 struct intel_plane_state *state =
1104 to_intel_plane_state(plane->base.state);
1105
1106 if (!state->visible)
1107 continue;
1108
1109 /* normal watermarks */
1110 for (level = 0; level < wm_state->num_levels; level++) {
1111 int wm = vlv_compute_wm_level(plane, crtc, state, level);
1112 int max_wm = plane->base.type == DRM_PLANE_TYPE_CURSOR ? 63 : 511;
1113
1114 /* hack */
1115 if (WARN_ON(level == 0 && wm > max_wm))
1116 wm = max_wm;
1117
1118 if (wm > plane->wm.fifo_size)
1119 break;
1120
1121 switch (plane->base.type) {
1122 int sprite;
1123 case DRM_PLANE_TYPE_CURSOR:
1124 wm_state->wm[level].cursor = wm;
1125 break;
1126 case DRM_PLANE_TYPE_PRIMARY:
1127 wm_state->wm[level].primary = wm;
1128 break;
1129 case DRM_PLANE_TYPE_OVERLAY:
1130 sprite = plane->plane;
1131 wm_state->wm[level].sprite[sprite] = wm;
1132 break;
1133 }
1134 }
1135
1136 wm_state->num_levels = level;
1137
1138 if (!wm_state->cxsr)
1139 continue;
1140
1141 /* maxfifo watermarks */
1142 switch (plane->base.type) {
1143 int sprite, level;
1144 case DRM_PLANE_TYPE_CURSOR:
1145 for (level = 0; level < wm_state->num_levels; level++)
1146 wm_state->sr[level].cursor =
Thomas Daniel5a37ed02015-10-23 14:55:38 +01001147 wm_state->wm[level].cursor;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001148 break;
1149 case DRM_PLANE_TYPE_PRIMARY:
1150 for (level = 0; level < wm_state->num_levels; level++)
1151 wm_state->sr[level].plane =
1152 min(wm_state->sr[level].plane,
1153 wm_state->wm[level].primary);
1154 break;
1155 case DRM_PLANE_TYPE_OVERLAY:
1156 sprite = plane->plane;
1157 for (level = 0; level < wm_state->num_levels; level++)
1158 wm_state->sr[level].plane =
1159 min(wm_state->sr[level].plane,
1160 wm_state->wm[level].sprite[sprite]);
1161 break;
1162 }
1163 }
1164
1165 /* clear any (partially) filled invalid levels */
Ville Syrjälä58590c12015-09-08 21:05:12 +03001166 for (level = wm_state->num_levels; level < to_i915(dev)->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001167 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1168 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1169 }
1170
1171 vlv_invert_wms(crtc);
1172}
1173
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001174#define VLV_FIFO(plane, value) \
1175 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1176
1177static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1178{
1179 struct drm_device *dev = crtc->base.dev;
1180 struct drm_i915_private *dev_priv = to_i915(dev);
1181 struct intel_plane *plane;
1182 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1183
1184 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1185 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1186 WARN_ON(plane->wm.fifo_size != 63);
1187 continue;
1188 }
1189
1190 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
1191 sprite0_start = plane->wm.fifo_size;
1192 else if (plane->plane == 0)
1193 sprite1_start = sprite0_start + plane->wm.fifo_size;
1194 else
1195 fifo_size = sprite1_start + plane->wm.fifo_size;
1196 }
1197
1198 WARN_ON(fifo_size != 512 - 1);
1199
1200 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1201 pipe_name(crtc->pipe), sprite0_start,
1202 sprite1_start, fifo_size);
1203
1204 switch (crtc->pipe) {
1205 uint32_t dsparb, dsparb2, dsparb3;
1206 case PIPE_A:
1207 dsparb = I915_READ(DSPARB);
1208 dsparb2 = I915_READ(DSPARB2);
1209
1210 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1211 VLV_FIFO(SPRITEB, 0xff));
1212 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1213 VLV_FIFO(SPRITEB, sprite1_start));
1214
1215 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1216 VLV_FIFO(SPRITEB_HI, 0x1));
1217 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1218 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1219
1220 I915_WRITE(DSPARB, dsparb);
1221 I915_WRITE(DSPARB2, dsparb2);
1222 break;
1223 case PIPE_B:
1224 dsparb = I915_READ(DSPARB);
1225 dsparb2 = I915_READ(DSPARB2);
1226
1227 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1228 VLV_FIFO(SPRITED, 0xff));
1229 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1230 VLV_FIFO(SPRITED, sprite1_start));
1231
1232 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1233 VLV_FIFO(SPRITED_HI, 0xff));
1234 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1235 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1236
1237 I915_WRITE(DSPARB, dsparb);
1238 I915_WRITE(DSPARB2, dsparb2);
1239 break;
1240 case PIPE_C:
1241 dsparb3 = I915_READ(DSPARB3);
1242 dsparb2 = I915_READ(DSPARB2);
1243
1244 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1245 VLV_FIFO(SPRITEF, 0xff));
1246 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1247 VLV_FIFO(SPRITEF, sprite1_start));
1248
1249 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1250 VLV_FIFO(SPRITEF_HI, 0xff));
1251 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1252 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1253
1254 I915_WRITE(DSPARB3, dsparb3);
1255 I915_WRITE(DSPARB2, dsparb2);
1256 break;
1257 default:
1258 break;
1259 }
1260}
1261
1262#undef VLV_FIFO
1263
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001264static void vlv_merge_wm(struct drm_device *dev,
1265 struct vlv_wm_values *wm)
1266{
1267 struct intel_crtc *crtc;
1268 int num_active_crtcs = 0;
1269
Ville Syrjälä58590c12015-09-08 21:05:12 +03001270 wm->level = to_i915(dev)->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001271 wm->cxsr = true;
1272
1273 for_each_intel_crtc(dev, crtc) {
1274 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1275
1276 if (!crtc->active)
1277 continue;
1278
1279 if (!wm_state->cxsr)
1280 wm->cxsr = false;
1281
1282 num_active_crtcs++;
1283 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1284 }
1285
1286 if (num_active_crtcs != 1)
1287 wm->cxsr = false;
1288
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001289 if (num_active_crtcs > 1)
1290 wm->level = VLV_WM_LEVEL_PM2;
1291
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001292 for_each_intel_crtc(dev, crtc) {
1293 struct vlv_wm_state *wm_state = &crtc->wm_state;
1294 enum pipe pipe = crtc->pipe;
1295
1296 if (!crtc->active)
1297 continue;
1298
1299 wm->pipe[pipe] = wm_state->wm[wm->level];
1300 if (wm->cxsr)
1301 wm->sr = wm_state->sr[wm->level];
1302
1303 wm->ddl[pipe].primary = DDL_PRECISION_HIGH | 2;
1304 wm->ddl[pipe].sprite[0] = DDL_PRECISION_HIGH | 2;
1305 wm->ddl[pipe].sprite[1] = DDL_PRECISION_HIGH | 2;
1306 wm->ddl[pipe].cursor = DDL_PRECISION_HIGH | 2;
1307 }
1308}
1309
1310static void vlv_update_wm(struct drm_crtc *crtc)
1311{
1312 struct drm_device *dev = crtc->dev;
1313 struct drm_i915_private *dev_priv = dev->dev_private;
1314 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1315 enum pipe pipe = intel_crtc->pipe;
1316 struct vlv_wm_values wm = {};
1317
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001318 vlv_compute_wm(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001319 vlv_merge_wm(dev, &wm);
1320
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001321 if (memcmp(&dev_priv->wm.vlv, &wm, sizeof(wm)) == 0) {
1322 /* FIXME should be part of crtc atomic commit */
1323 vlv_pipe_set_fifo_size(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001324 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001325 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001326
1327 if (wm.level < VLV_WM_LEVEL_DDR_DVFS &&
1328 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_DDR_DVFS)
1329 chv_set_memory_dvfs(dev_priv, false);
1330
1331 if (wm.level < VLV_WM_LEVEL_PM5 &&
1332 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_PM5)
1333 chv_set_memory_pm5(dev_priv, false);
1334
Ville Syrjälä852eb002015-06-24 22:00:07 +03001335 if (!wm.cxsr && dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001336 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001337
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001338 /* FIXME should be part of crtc atomic commit */
1339 vlv_pipe_set_fifo_size(intel_crtc);
1340
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001341 vlv_write_wm_values(intel_crtc, &wm);
1342
1343 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1344 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
1345 pipe_name(pipe), wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1346 wm.pipe[pipe].sprite[0], wm.pipe[pipe].sprite[1],
1347 wm.sr.plane, wm.sr.cursor, wm.level, wm.cxsr);
1348
Ville Syrjälä852eb002015-06-24 22:00:07 +03001349 if (wm.cxsr && !dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001350 intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001351
1352 if (wm.level >= VLV_WM_LEVEL_PM5 &&
1353 dev_priv->wm.vlv.level < VLV_WM_LEVEL_PM5)
1354 chv_set_memory_pm5(dev_priv, true);
1355
1356 if (wm.level >= VLV_WM_LEVEL_DDR_DVFS &&
1357 dev_priv->wm.vlv.level < VLV_WM_LEVEL_DDR_DVFS)
1358 chv_set_memory_dvfs(dev_priv, true);
1359
1360 dev_priv->wm.vlv = wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001361}
1362
Ville Syrjäläae801522015-03-05 21:19:49 +02001363#define single_plane_enabled(mask) is_power_of_2(mask)
1364
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001365static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001366{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001367 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001368 static const int sr_latency_ns = 12000;
1369 struct drm_i915_private *dev_priv = dev->dev_private;
1370 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1371 int plane_sr, cursor_sr;
1372 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001373 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001374
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001375 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001376 &g4x_wm_info, pessimal_latency_ns,
1377 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001378 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001379 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001380
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001381 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001382 &g4x_wm_info, pessimal_latency_ns,
1383 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001384 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001385 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001386
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001387 if (single_plane_enabled(enabled) &&
1388 g4x_compute_srwm(dev, ffs(enabled) - 1,
1389 sr_latency_ns,
1390 &g4x_wm_info,
1391 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001392 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001393 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001394 } else {
Imre Deak98584252014-06-13 14:54:20 +03001395 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001396 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001397 plane_sr = cursor_sr = 0;
1398 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001399
Ville Syrjäläa5043452014-06-28 02:04:18 +03001400 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1401 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001402 planea_wm, cursora_wm,
1403 planeb_wm, cursorb_wm,
1404 plane_sr, cursor_sr);
1405
1406 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001407 FW_WM(plane_sr, SR) |
1408 FW_WM(cursorb_wm, CURSORB) |
1409 FW_WM(planeb_wm, PLANEB) |
1410 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001411 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001412 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001413 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001414 /* HPLL off in SR has some issues on G4x... disable it */
1415 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001416 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001417 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001418
1419 if (cxsr_enabled)
1420 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001421}
1422
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001423static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001424{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001425 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001426 struct drm_i915_private *dev_priv = dev->dev_private;
1427 struct drm_crtc *crtc;
1428 int srwm = 1;
1429 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001430 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001431
1432 /* Calc sr entries for one plane configs */
1433 crtc = single_enabled_crtc(dev);
1434 if (crtc) {
1435 /* self-refresh has much higher latency */
1436 static const int sr_latency_ns = 12000;
Ville Syrjälä124abe02015-09-08 13:40:45 +03001437 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001438 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001439 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001440 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Ville Syrjäläac484962016-01-20 21:05:26 +02001441 int cpp = drm_format_plane_cpp(crtc->primary->state->fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001442 unsigned long line_time_us;
1443 int entries;
1444
Ville Syrjälä922044c2014-02-14 14:18:57 +02001445 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001446
1447 /* Use ns/us then divide to preserve precision */
1448 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001449 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001450 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1451 srwm = I965_FIFO_SIZE - entries;
1452 if (srwm < 0)
1453 srwm = 1;
1454 srwm &= 0x1ff;
1455 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1456 entries, srwm);
1457
1458 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001459 cpp * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001460 entries = DIV_ROUND_UP(entries,
1461 i965_cursor_wm_info.cacheline_size);
1462 cursor_sr = i965_cursor_wm_info.fifo_size -
1463 (entries + i965_cursor_wm_info.guard_size);
1464
1465 if (cursor_sr > i965_cursor_wm_info.max_wm)
1466 cursor_sr = i965_cursor_wm_info.max_wm;
1467
1468 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1469 "cursor %d\n", srwm, cursor_sr);
1470
Imre Deak98584252014-06-13 14:54:20 +03001471 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001472 } else {
Imre Deak98584252014-06-13 14:54:20 +03001473 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001474 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001475 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001476 }
1477
1478 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1479 srwm);
1480
1481 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001482 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1483 FW_WM(8, CURSORB) |
1484 FW_WM(8, PLANEB) |
1485 FW_WM(8, PLANEA));
1486 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1487 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001488 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001489 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001490
1491 if (cxsr_enabled)
1492 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001493}
1494
Ville Syrjäläf4998962015-03-10 17:02:21 +02001495#undef FW_WM
1496
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001497static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001498{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001499 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001500 struct drm_i915_private *dev_priv = dev->dev_private;
1501 const struct intel_watermark_params *wm_info;
1502 uint32_t fwater_lo;
1503 uint32_t fwater_hi;
1504 int cwm, srwm = 1;
1505 int fifo_size;
1506 int planea_wm, planeb_wm;
1507 struct drm_crtc *crtc, *enabled = NULL;
1508
1509 if (IS_I945GM(dev))
1510 wm_info = &i945_wm_info;
1511 else if (!IS_GEN2(dev))
1512 wm_info = &i915_wm_info;
1513 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001514 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001515
1516 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1517 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001518 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001519 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +02001520 int cpp = drm_format_plane_cpp(crtc->primary->state->fb->pixel_format, 0);
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001521 if (IS_GEN2(dev))
1522 cpp = 4;
1523
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001524 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001525 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001526 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001527 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001528 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001529 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001530 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001531 if (planea_wm > (long)wm_info->max_wm)
1532 planea_wm = wm_info->max_wm;
1533 }
1534
1535 if (IS_GEN2(dev))
1536 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001537
1538 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1539 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001540 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001541 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +02001542 int cpp = drm_format_plane_cpp(crtc->primary->state->fb->pixel_format, 0);
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001543 if (IS_GEN2(dev))
1544 cpp = 4;
1545
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001546 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001547 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001548 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001549 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001550 if (enabled == NULL)
1551 enabled = crtc;
1552 else
1553 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001554 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001555 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001556 if (planeb_wm > (long)wm_info->max_wm)
1557 planeb_wm = wm_info->max_wm;
1558 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001559
1560 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1561
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001562 if (IS_I915GM(dev) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001563 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001564
Matt Roper59bea882015-02-27 10:12:01 -08001565 obj = intel_fb_obj(enabled->primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001566
1567 /* self-refresh seems busted with untiled */
Matt Roper2ff8fde2014-07-08 07:50:07 -07001568 if (obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001569 enabled = NULL;
1570 }
1571
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001572 /*
1573 * Overlay gets an aggressive default since video jitter is bad.
1574 */
1575 cwm = 2;
1576
1577 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001578 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001579
1580 /* Calc sr entries for one plane configs */
1581 if (HAS_FW_BLC(dev) && enabled) {
1582 /* self-refresh has much higher latency */
1583 static const int sr_latency_ns = 6000;
Ville Syrjälä124abe02015-09-08 13:40:45 +03001584 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(enabled)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001585 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001586 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001587 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
Ville Syrjäläac484962016-01-20 21:05:26 +02001588 int cpp = drm_format_plane_cpp(enabled->primary->state->fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001589 unsigned long line_time_us;
1590 int entries;
1591
Ville Syrjälä922044c2014-02-14 14:18:57 +02001592 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001593
1594 /* Use ns/us then divide to preserve precision */
1595 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001596 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001597 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1598 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1599 srwm = wm_info->fifo_size - entries;
1600 if (srwm < 0)
1601 srwm = 1;
1602
1603 if (IS_I945G(dev) || IS_I945GM(dev))
1604 I915_WRITE(FW_BLC_SELF,
1605 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1606 else if (IS_I915GM(dev))
1607 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1608 }
1609
1610 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1611 planea_wm, planeb_wm, cwm, srwm);
1612
1613 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1614 fwater_hi = (cwm & 0x1f);
1615
1616 /* Set request length to 8 cachelines per fetch */
1617 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1618 fwater_hi = fwater_hi | (1 << 8);
1619
1620 I915_WRITE(FW_BLC, fwater_lo);
1621 I915_WRITE(FW_BLC2, fwater_hi);
1622
Imre Deak5209b1f2014-07-01 12:36:17 +03001623 if (enabled)
1624 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001625}
1626
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001627static void i845_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001628{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001629 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001630 struct drm_i915_private *dev_priv = dev->dev_private;
1631 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001632 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001633 uint32_t fwater_lo;
1634 int planea_wm;
1635
1636 crtc = single_enabled_crtc(dev);
1637 if (crtc == NULL)
1638 return;
1639
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001640 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001641 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001642 &i845_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001643 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001644 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001645 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1646 fwater_lo |= (3<<8) | planea_wm;
1647
1648 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1649
1650 I915_WRITE(FW_BLC, fwater_lo);
1651}
1652
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001653uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001654{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001655 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001656
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001657 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001658
1659 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1660 * adjust the pixel_rate here. */
1661
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001662 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001663 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001664 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001665
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001666 pipe_w = pipe_config->pipe_src_w;
1667 pipe_h = pipe_config->pipe_src_h;
1668
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001669 pfit_w = (pfit_size >> 16) & 0xFFFF;
1670 pfit_h = pfit_size & 0xFFFF;
1671 if (pipe_w < pfit_w)
1672 pipe_w = pfit_w;
1673 if (pipe_h < pfit_h)
1674 pipe_h = pfit_h;
1675
Matt Roper15126882015-12-03 11:37:40 -08001676 if (WARN_ON(!pfit_w || !pfit_h))
1677 return pixel_rate;
1678
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001679 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1680 pfit_w * pfit_h);
1681 }
1682
1683 return pixel_rate;
1684}
1685
Ville Syrjälä37126462013-08-01 16:18:55 +03001686/* latency must be in 0.1us units. */
Ville Syrjäläac484962016-01-20 21:05:26 +02001687static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001688{
1689 uint64_t ret;
1690
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001691 if (WARN(latency == 0, "Latency value missing\n"))
1692 return UINT_MAX;
1693
Ville Syrjäläac484962016-01-20 21:05:26 +02001694 ret = (uint64_t) pixel_rate * cpp * latency;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001695 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1696
1697 return ret;
1698}
1699
Ville Syrjälä37126462013-08-01 16:18:55 +03001700/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001701static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02001702 uint32_t horiz_pixels, uint8_t cpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001703 uint32_t latency)
1704{
1705 uint32_t ret;
1706
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001707 if (WARN(latency == 0, "Latency value missing\n"))
1708 return UINT_MAX;
Matt Roper15126882015-12-03 11:37:40 -08001709 if (WARN_ON(!pipe_htotal))
1710 return UINT_MAX;
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001711
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001712 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +02001713 ret = (ret + 1) * horiz_pixels * cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001714 ret = DIV_ROUND_UP(ret, 64) + 2;
1715 return ret;
1716}
1717
Ville Syrjälä23297042013-07-05 11:57:17 +03001718static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02001719 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001720{
Matt Roper15126882015-12-03 11:37:40 -08001721 /*
1722 * Neither of these should be possible since this function shouldn't be
1723 * called if the CRTC is off or the plane is invisible. But let's be
1724 * extra paranoid to avoid a potential divide-by-zero if we screw up
1725 * elsewhere in the driver.
1726 */
Ville Syrjäläac484962016-01-20 21:05:26 +02001727 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08001728 return 0;
1729 if (WARN_ON(!horiz_pixels))
1730 return 0;
1731
Ville Syrjäläac484962016-01-20 21:05:26 +02001732 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001733}
1734
Imre Deak820c1982013-12-17 14:46:36 +02001735struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001736 uint16_t pri;
1737 uint16_t spr;
1738 uint16_t cur;
1739 uint16_t fbc;
1740};
1741
Ville Syrjälä37126462013-08-01 16:18:55 +03001742/*
1743 * For both WM_PIPE and WM_LP.
1744 * mem_value must be in 0.1us units.
1745 */
Matt Roper7221fc32015-09-24 15:53:08 -07001746static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001747 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001748 uint32_t mem_value,
1749 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001750{
Ville Syrjäläac484962016-01-20 21:05:26 +02001751 int cpp = pstate->base.fb ?
1752 drm_format_plane_cpp(pstate->base.fb->pixel_format, 0) : 0;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001753 uint32_t method1, method2;
1754
Matt Roper7221fc32015-09-24 15:53:08 -07001755 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001756 return 0;
1757
Ville Syrjäläac484962016-01-20 21:05:26 +02001758 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001759
1760 if (!is_lp)
1761 return method1;
1762
Matt Roper7221fc32015-09-24 15:53:08 -07001763 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1764 cstate->base.adjusted_mode.crtc_htotal,
Matt Roper43d59ed2015-09-24 15:53:07 -07001765 drm_rect_width(&pstate->dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001766 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001767
1768 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001769}
1770
Ville Syrjälä37126462013-08-01 16:18:55 +03001771/*
1772 * For both WM_PIPE and WM_LP.
1773 * mem_value must be in 0.1us units.
1774 */
Matt Roper7221fc32015-09-24 15:53:08 -07001775static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001776 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001777 uint32_t mem_value)
1778{
Ville Syrjäläac484962016-01-20 21:05:26 +02001779 int cpp = pstate->base.fb ?
1780 drm_format_plane_cpp(pstate->base.fb->pixel_format, 0) : 0;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001781 uint32_t method1, method2;
1782
Matt Roper7221fc32015-09-24 15:53:08 -07001783 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001784 return 0;
1785
Ville Syrjäläac484962016-01-20 21:05:26 +02001786 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), cpp, mem_value);
Matt Roper7221fc32015-09-24 15:53:08 -07001787 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1788 cstate->base.adjusted_mode.crtc_htotal,
Matt Roper43d59ed2015-09-24 15:53:07 -07001789 drm_rect_width(&pstate->dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001790 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001791 return min(method1, method2);
1792}
1793
Ville Syrjälä37126462013-08-01 16:18:55 +03001794/*
1795 * For both WM_PIPE and WM_LP.
1796 * mem_value must be in 0.1us units.
1797 */
Matt Roper7221fc32015-09-24 15:53:08 -07001798static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001799 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001800 uint32_t mem_value)
1801{
Matt Roperb2435692016-02-02 22:06:51 -08001802 /*
1803 * We treat the cursor plane as always-on for the purposes of watermark
1804 * calculation. Until we have two-stage watermark programming merged,
1805 * this is necessary to avoid flickering.
1806 */
1807 int cpp = 4;
1808 int width = pstate->visible ? pstate->base.crtc_w : 64;
Matt Roper43d59ed2015-09-24 15:53:07 -07001809
Matt Roperb2435692016-02-02 22:06:51 -08001810 if (!cstate->base.active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001811 return 0;
1812
Matt Roper7221fc32015-09-24 15:53:08 -07001813 return ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1814 cstate->base.adjusted_mode.crtc_htotal,
Matt Roperb2435692016-02-02 22:06:51 -08001815 width, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001816}
1817
Paulo Zanonicca32e92013-05-31 11:45:06 -03001818/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07001819static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001820 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001821 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001822{
Ville Syrjäläac484962016-01-20 21:05:26 +02001823 int cpp = pstate->base.fb ?
1824 drm_format_plane_cpp(pstate->base.fb->pixel_format, 0) : 0;
Matt Roper43d59ed2015-09-24 15:53:07 -07001825
Matt Roper7221fc32015-09-24 15:53:08 -07001826 if (!cstate->base.active || !pstate->visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001827 return 0;
1828
Ville Syrjäläac484962016-01-20 21:05:26 +02001829 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001830}
1831
Ville Syrjälä158ae642013-08-07 13:28:19 +03001832static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1833{
Ville Syrjälä416f4722013-11-02 21:07:46 -07001834 if (INTEL_INFO(dev)->gen >= 8)
1835 return 3072;
1836 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001837 return 768;
1838 else
1839 return 512;
1840}
1841
Ville Syrjälä4e975082014-03-07 18:32:11 +02001842static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1843 int level, bool is_sprite)
1844{
1845 if (INTEL_INFO(dev)->gen >= 8)
1846 /* BDW primary/sprite plane watermarks */
1847 return level == 0 ? 255 : 2047;
1848 else if (INTEL_INFO(dev)->gen >= 7)
1849 /* IVB/HSW primary/sprite plane watermarks */
1850 return level == 0 ? 127 : 1023;
1851 else if (!is_sprite)
1852 /* ILK/SNB primary plane watermarks */
1853 return level == 0 ? 127 : 511;
1854 else
1855 /* ILK/SNB sprite plane watermarks */
1856 return level == 0 ? 63 : 255;
1857}
1858
1859static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1860 int level)
1861{
1862 if (INTEL_INFO(dev)->gen >= 7)
1863 return level == 0 ? 63 : 255;
1864 else
1865 return level == 0 ? 31 : 63;
1866}
1867
1868static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1869{
1870 if (INTEL_INFO(dev)->gen >= 8)
1871 return 31;
1872 else
1873 return 15;
1874}
1875
Ville Syrjälä158ae642013-08-07 13:28:19 +03001876/* Calculate the maximum primary/sprite plane watermark */
1877static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1878 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001879 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001880 enum intel_ddb_partitioning ddb_partitioning,
1881 bool is_sprite)
1882{
1883 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001884
1885 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001886 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001887 return 0;
1888
1889 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001890 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001891 fifo_size /= INTEL_INFO(dev)->num_pipes;
1892
1893 /*
1894 * For some reason the non self refresh
1895 * FIFO size is only half of the self
1896 * refresh FIFO size on ILK/SNB.
1897 */
1898 if (INTEL_INFO(dev)->gen <= 6)
1899 fifo_size /= 2;
1900 }
1901
Ville Syrjälä240264f2013-08-07 13:29:12 +03001902 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001903 /* level 0 is always calculated with 1:1 split */
1904 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1905 if (is_sprite)
1906 fifo_size *= 5;
1907 fifo_size /= 6;
1908 } else {
1909 fifo_size /= 2;
1910 }
1911 }
1912
1913 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001914 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001915}
1916
1917/* Calculate the maximum cursor plane watermark */
1918static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001919 int level,
1920 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001921{
1922 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001923 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001924 return 64;
1925
1926 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001927 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001928}
1929
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001930static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001931 int level,
1932 const struct intel_wm_config *config,
1933 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001934 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001935{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001936 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1937 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1938 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02001939 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001940}
1941
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001942static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
1943 int level,
1944 struct ilk_wm_maximums *max)
1945{
1946 max->pri = ilk_plane_wm_reg_max(dev, level, false);
1947 max->spr = ilk_plane_wm_reg_max(dev, level, true);
1948 max->cur = ilk_cursor_wm_reg_max(dev, level);
1949 max->fbc = ilk_fbc_wm_reg_max(dev);
1950}
1951
Ville Syrjäläd9395652013-10-09 19:18:10 +03001952static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001953 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001954 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001955{
1956 bool ret;
1957
1958 /* already determined to be invalid? */
1959 if (!result->enable)
1960 return false;
1961
1962 result->enable = result->pri_val <= max->pri &&
1963 result->spr_val <= max->spr &&
1964 result->cur_val <= max->cur;
1965
1966 ret = result->enable;
1967
1968 /*
1969 * HACK until we can pre-compute everything,
1970 * and thus fail gracefully if LP0 watermarks
1971 * are exceeded...
1972 */
1973 if (level == 0 && !result->enable) {
1974 if (result->pri_val > max->pri)
1975 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
1976 level, result->pri_val, max->pri);
1977 if (result->spr_val > max->spr)
1978 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
1979 level, result->spr_val, max->spr);
1980 if (result->cur_val > max->cur)
1981 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
1982 level, result->cur_val, max->cur);
1983
1984 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
1985 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
1986 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
1987 result->enable = true;
1988 }
1989
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001990 return ret;
1991}
1992
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001993static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07001994 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03001995 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07001996 struct intel_crtc_state *cstate,
Matt Roper86c8bbb2015-09-24 15:53:16 -07001997 struct intel_plane_state *pristate,
1998 struct intel_plane_state *sprstate,
1999 struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002000 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002001{
2002 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2003 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2004 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2005
2006 /* WM1+ latency values stored in 0.5us units */
2007 if (level > 0) {
2008 pri_latency *= 5;
2009 spr_latency *= 5;
2010 cur_latency *= 5;
2011 }
2012
Matt Roper86c8bbb2015-09-24 15:53:16 -07002013 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2014 pri_latency, level);
2015 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2016 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2017 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002018 result->enable = true;
2019}
2020
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002021static uint32_t
Matt Roperee91a152015-12-03 11:37:39 -08002022hsw_compute_linetime_wm(struct drm_device *dev,
2023 struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002024{
2025 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperee91a152015-12-03 11:37:39 -08002026 const struct drm_display_mode *adjusted_mode =
2027 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002028 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002029
Matt Roperee91a152015-12-03 11:37:39 -08002030 if (!cstate->base.active)
2031 return 0;
2032 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2033 return 0;
2034 if (WARN_ON(dev_priv->cdclk_freq == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002035 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002036
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002037 /* The WM are computed with base on how long it takes to fill a single
2038 * row at the given clock rate, multiplied by 8.
2039 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002040 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2041 adjusted_mode->crtc_clock);
2042 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjälä05024da2015-06-03 15:45:08 +03002043 dev_priv->cdclk_freq);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002044
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002045 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2046 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002047}
2048
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002049static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002050{
2051 struct drm_i915_private *dev_priv = dev->dev_private;
2052
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002053 if (IS_GEN9(dev)) {
2054 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002055 int ret, i;
Vandana Kannan367294b2014-11-04 17:06:46 +00002056 int level, max_level = ilk_wm_max_level(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002057
2058 /* read the first set of memory latencies[0:3] */
2059 val = 0; /* data0 to be programmed to 0 for first set */
2060 mutex_lock(&dev_priv->rps.hw_lock);
2061 ret = sandybridge_pcode_read(dev_priv,
2062 GEN9_PCODE_READ_MEM_LATENCY,
2063 &val);
2064 mutex_unlock(&dev_priv->rps.hw_lock);
2065
2066 if (ret) {
2067 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2068 return;
2069 }
2070
2071 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2072 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2073 GEN9_MEM_LATENCY_LEVEL_MASK;
2074 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2075 GEN9_MEM_LATENCY_LEVEL_MASK;
2076 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2077 GEN9_MEM_LATENCY_LEVEL_MASK;
2078
2079 /* read the second set of memory latencies[4:7] */
2080 val = 1; /* data0 to be programmed to 1 for second set */
2081 mutex_lock(&dev_priv->rps.hw_lock);
2082 ret = sandybridge_pcode_read(dev_priv,
2083 GEN9_PCODE_READ_MEM_LATENCY,
2084 &val);
2085 mutex_unlock(&dev_priv->rps.hw_lock);
2086 if (ret) {
2087 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2088 return;
2089 }
2090
2091 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2092 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2093 GEN9_MEM_LATENCY_LEVEL_MASK;
2094 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2095 GEN9_MEM_LATENCY_LEVEL_MASK;
2096 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2097 GEN9_MEM_LATENCY_LEVEL_MASK;
2098
Vandana Kannan367294b2014-11-04 17:06:46 +00002099 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00002100 * WaWmMemoryReadLatency:skl
2101 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002102 * punit doesn't take into account the read latency so we need
2103 * to add 2us to the various latency levels we retrieve from
2104 * the punit.
2105 * - W0 is a bit special in that it's the only level that
2106 * can't be disabled if we want to have display working, so
2107 * we always add 2us there.
2108 * - For levels >=1, punit returns 0us latency when they are
2109 * disabled, so we respect that and don't add 2us then
Vandana Kannan4f947382014-11-04 17:06:47 +00002110 *
2111 * Additionally, if a level n (n > 1) has a 0us latency, all
2112 * levels m (m >= n) need to be disabled. We make sure to
2113 * sanitize the values out of the punit to satisfy this
2114 * requirement.
Vandana Kannan367294b2014-11-04 17:06:46 +00002115 */
2116 wm[0] += 2;
2117 for (level = 1; level <= max_level; level++)
2118 if (wm[level] != 0)
2119 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002120 else {
2121 for (i = level + 1; i <= max_level; i++)
2122 wm[i] = 0;
Vandana Kannan367294b2014-11-04 17:06:46 +00002123
Vandana Kannan4f947382014-11-04 17:06:47 +00002124 break;
2125 }
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002126 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002127 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2128
2129 wm[0] = (sskpd >> 56) & 0xFF;
2130 if (wm[0] == 0)
2131 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002132 wm[1] = (sskpd >> 4) & 0xFF;
2133 wm[2] = (sskpd >> 12) & 0xFF;
2134 wm[3] = (sskpd >> 20) & 0x1FF;
2135 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002136 } else if (INTEL_INFO(dev)->gen >= 6) {
2137 uint32_t sskpd = I915_READ(MCH_SSKPD);
2138
2139 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2140 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2141 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2142 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002143 } else if (INTEL_INFO(dev)->gen >= 5) {
2144 uint32_t mltr = I915_READ(MLTR_ILK);
2145
2146 /* ILK primary LP0 latency is 700 ns */
2147 wm[0] = 7;
2148 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2149 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002150 }
2151}
2152
Ville Syrjälä53615a52013-08-01 16:18:50 +03002153static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2154{
2155 /* ILK sprite LP0 latency is 1300 ns */
2156 if (INTEL_INFO(dev)->gen == 5)
2157 wm[0] = 13;
2158}
2159
2160static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2161{
2162 /* ILK cursor LP0 latency is 1300 ns */
2163 if (INTEL_INFO(dev)->gen == 5)
2164 wm[0] = 13;
2165
2166 /* WaDoubleCursorLP3Latency:ivb */
2167 if (IS_IVYBRIDGE(dev))
2168 wm[3] *= 2;
2169}
2170
Damien Lespiau546c81f2014-05-13 15:30:26 +01002171int ilk_wm_max_level(const struct drm_device *dev)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002172{
2173 /* how many WM levels are we expecting */
Damien Lespiaub6e742f2015-05-09 02:05:55 +01002174 if (INTEL_INFO(dev)->gen >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002175 return 7;
2176 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002177 return 4;
2178 else if (INTEL_INFO(dev)->gen >= 6)
2179 return 3;
2180 else
2181 return 2;
2182}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002183
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002184static void intel_print_wm_latency(struct drm_device *dev,
2185 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002186 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002187{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002188 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002189
2190 for (level = 0; level <= max_level; level++) {
2191 unsigned int latency = wm[level];
2192
2193 if (latency == 0) {
2194 DRM_ERROR("%s WM%d latency not provided\n",
2195 name, level);
2196 continue;
2197 }
2198
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002199 /*
2200 * - latencies are in us on gen9.
2201 * - before then, WM1+ latency values are in 0.5us units
2202 */
2203 if (IS_GEN9(dev))
2204 latency *= 10;
2205 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002206 latency *= 5;
2207
2208 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2209 name, level, wm[level],
2210 latency / 10, latency % 10);
2211 }
2212}
2213
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002214static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2215 uint16_t wm[5], uint16_t min)
2216{
2217 int level, max_level = ilk_wm_max_level(dev_priv->dev);
2218
2219 if (wm[0] >= min)
2220 return false;
2221
2222 wm[0] = max(wm[0], min);
2223 for (level = 1; level <= max_level; level++)
2224 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2225
2226 return true;
2227}
2228
2229static void snb_wm_latency_quirk(struct drm_device *dev)
2230{
2231 struct drm_i915_private *dev_priv = dev->dev_private;
2232 bool changed;
2233
2234 /*
2235 * The BIOS provided WM memory latency values are often
2236 * inadequate for high resolution displays. Adjust them.
2237 */
2238 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2239 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2240 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2241
2242 if (!changed)
2243 return;
2244
2245 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
2246 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2247 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2248 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
2249}
2250
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002251static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002252{
2253 struct drm_i915_private *dev_priv = dev->dev_private;
2254
2255 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2256
2257 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2258 sizeof(dev_priv->wm.pri_latency));
2259 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2260 sizeof(dev_priv->wm.pri_latency));
2261
2262 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2263 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002264
2265 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2266 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2267 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002268
2269 if (IS_GEN6(dev))
2270 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002271}
2272
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002273static void skl_setup_wm_latency(struct drm_device *dev)
2274{
2275 struct drm_i915_private *dev_priv = dev->dev_private;
2276
2277 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
2278 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
2279}
2280
Matt Ropered4a6a72016-02-23 17:20:13 -08002281static bool ilk_validate_pipe_wm(struct drm_device *dev,
2282 struct intel_pipe_wm *pipe_wm)
2283{
2284 /* LP0 watermark maximums depend on this pipe alone */
2285 const struct intel_wm_config config = {
2286 .num_pipes_active = 1,
2287 .sprites_enabled = pipe_wm->sprites_enabled,
2288 .sprites_scaled = pipe_wm->sprites_scaled,
2289 };
2290 struct ilk_wm_maximums max;
2291
2292 /* LP0 watermarks always use 1/2 DDB partitioning */
2293 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2294
2295 /* At least LP0 must be valid */
2296 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
2297 DRM_DEBUG_KMS("LP0 watermark invalid\n");
2298 return false;
2299 }
2300
2301 return true;
2302}
2303
Matt Roper261a27d2015-10-08 15:28:25 -07002304/* Compute new watermarks for the pipe */
Matt Roper86c8bbb2015-09-24 15:53:16 -07002305static int ilk_compute_pipe_wm(struct intel_crtc *intel_crtc,
2306 struct drm_atomic_state *state)
Matt Roper261a27d2015-10-08 15:28:25 -07002307{
Matt Roper86c8bbb2015-09-24 15:53:16 -07002308 struct intel_pipe_wm *pipe_wm;
2309 struct drm_device *dev = intel_crtc->base.dev;
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002310 const struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002311 struct intel_crtc_state *cstate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002312 struct intel_plane *intel_plane;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002313 struct drm_plane_state *ps;
2314 struct intel_plane_state *pristate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002315 struct intel_plane_state *sprstate = NULL;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002316 struct intel_plane_state *curstate = NULL;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002317 int level, max_level = ilk_wm_max_level(dev);
Imre Deak820c1982013-12-17 14:46:36 +02002318 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002319
Matt Roper86c8bbb2015-09-24 15:53:16 -07002320 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
2321 if (IS_ERR(cstate))
2322 return PTR_ERR(cstate);
2323
2324 pipe_wm = &cstate->wm.optimal.ilk;
Ville Syrjäläf1ecaf82016-01-14 14:53:34 +02002325 memset(pipe_wm, 0, sizeof(*pipe_wm));
Matt Roper86c8bbb2015-09-24 15:53:16 -07002326
Matt Roper43d59ed2015-09-24 15:53:07 -07002327 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07002328 ps = drm_atomic_get_plane_state(state,
2329 &intel_plane->base);
2330 if (IS_ERR(ps))
2331 return PTR_ERR(ps);
2332
2333 if (intel_plane->base.type == DRM_PLANE_TYPE_PRIMARY)
2334 pristate = to_intel_plane_state(ps);
2335 else if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY)
2336 sprstate = to_intel_plane_state(ps);
2337 else if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
2338 curstate = to_intel_plane_state(ps);
Matt Roper43d59ed2015-09-24 15:53:07 -07002339 }
2340
Matt Ropered4a6a72016-02-23 17:20:13 -08002341 pipe_wm->pipe_enabled = cstate->base.active;
2342 pipe_wm->sprites_enabled = sprstate->visible;
2343 pipe_wm->sprites_scaled = sprstate->visible &&
Matt Roper43d59ed2015-09-24 15:53:07 -07002344 (drm_rect_width(&sprstate->dst) != drm_rect_width(&sprstate->src) >> 16 ||
2345 drm_rect_height(&sprstate->dst) != drm_rect_height(&sprstate->src) >> 16);
2346
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002347 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Matt Roper43d59ed2015-09-24 15:53:07 -07002348 if (INTEL_INFO(dev)->gen <= 6 && sprstate->visible)
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002349 max_level = 1;
2350
2351 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08002352 if (pipe_wm->sprites_scaled)
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002353 max_level = 0;
2354
Matt Roper86c8bbb2015-09-24 15:53:16 -07002355 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
2356 pristate, sprstate, curstate, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002357
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002358 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Matt Roperee91a152015-12-03 11:37:39 -08002359 pipe_wm->linetime = hsw_compute_linetime_wm(dev, cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002360
Matt Ropered4a6a72016-02-23 17:20:13 -08002361 if (!ilk_validate_pipe_wm(dev, pipe_wm))
2362 return false;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002363
2364 ilk_compute_wm_reg_maximums(dev, 1, &max);
2365
2366 for (level = 1; level <= max_level; level++) {
2367 struct intel_wm_level wm = {};
2368
Matt Roper86c8bbb2015-09-24 15:53:16 -07002369 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
2370 pristate, sprstate, curstate, &wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002371
2372 /*
2373 * Disable any watermark level that exceeds the
2374 * register maximums since such watermarks are
2375 * always invalid.
2376 */
2377 if (!ilk_validate_wm_level(level, &max, &wm))
2378 break;
2379
2380 pipe_wm->wm[level] = wm;
2381 }
2382
Matt Roper86c8bbb2015-09-24 15:53:16 -07002383 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002384}
2385
2386/*
Matt Ropered4a6a72016-02-23 17:20:13 -08002387 * Build a set of 'intermediate' watermark values that satisfy both the old
2388 * state and the new state. These can be programmed to the hardware
2389 * immediately.
2390 */
2391static int ilk_compute_intermediate_wm(struct drm_device *dev,
2392 struct intel_crtc *intel_crtc,
2393 struct intel_crtc_state *newstate)
2394{
2395 struct intel_pipe_wm *a = &newstate->wm.intermediate;
2396 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
2397 int level, max_level = ilk_wm_max_level(dev);
2398
2399 /*
2400 * Start with the final, target watermarks, then combine with the
2401 * currently active watermarks to get values that are safe both before
2402 * and after the vblank.
2403 */
2404 *a = newstate->wm.optimal.ilk;
2405 a->pipe_enabled |= b->pipe_enabled;
2406 a->sprites_enabled |= b->sprites_enabled;
2407 a->sprites_scaled |= b->sprites_scaled;
2408
2409 for (level = 0; level <= max_level; level++) {
2410 struct intel_wm_level *a_wm = &a->wm[level];
2411 const struct intel_wm_level *b_wm = &b->wm[level];
2412
2413 a_wm->enable &= b_wm->enable;
2414 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
2415 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
2416 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
2417 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
2418 }
2419
2420 /*
2421 * We need to make sure that these merged watermark values are
2422 * actually a valid configuration themselves. If they're not,
2423 * there's no safe way to transition from the old state to
2424 * the new state, so we need to fail the atomic transaction.
2425 */
2426 if (!ilk_validate_pipe_wm(dev, a))
2427 return -EINVAL;
2428
2429 /*
2430 * If our intermediate WM are identical to the final WM, then we can
2431 * omit the post-vblank programming; only update if it's different.
2432 */
2433 if (memcmp(a, &newstate->wm.optimal.ilk, sizeof(*a)) == 0)
2434 newstate->wm.need_postvbl_update = false;
2435
2436 return 0;
2437}
2438
2439/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002440 * Merge the watermarks from all active pipes for a specific level.
2441 */
2442static void ilk_merge_wm_level(struct drm_device *dev,
2443 int level,
2444 struct intel_wm_level *ret_wm)
2445{
2446 const struct intel_crtc *intel_crtc;
2447
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002448 ret_wm->enable = true;
2449
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002450 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08002451 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002452 const struct intel_wm_level *wm = &active->wm[level];
2453
2454 if (!active->pipe_enabled)
2455 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002456
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002457 /*
2458 * The watermark values may have been used in the past,
2459 * so we must maintain them in the registers for some
2460 * time even if the level is now disabled.
2461 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002462 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002463 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002464
2465 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2466 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2467 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2468 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2469 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002470}
2471
2472/*
2473 * Merge all low power watermarks for all active pipes.
2474 */
2475static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002476 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002477 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002478 struct intel_pipe_wm *merged)
2479{
Paulo Zanoni7733b492015-07-07 15:26:04 -03002480 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002481 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002482 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002483
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002484 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2485 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2486 config->num_pipes_active > 1)
2487 return;
2488
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002489 /* ILK: FBC WM must be disabled always */
2490 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002491
2492 /* merge each WM1+ level */
2493 for (level = 1; level <= max_level; level++) {
2494 struct intel_wm_level *wm = &merged->wm[level];
2495
2496 ilk_merge_wm_level(dev, level, wm);
2497
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002498 if (level > last_enabled_level)
2499 wm->enable = false;
2500 else if (!ilk_validate_wm_level(level, max, wm))
2501 /* make sure all following levels get disabled */
2502 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002503
2504 /*
2505 * The spec says it is preferred to disable
2506 * FBC WMs instead of disabling a WM level.
2507 */
2508 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002509 if (wm->enable)
2510 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002511 wm->fbc_val = 0;
2512 }
2513 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002514
2515 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2516 /*
2517 * FIXME this is racy. FBC might get enabled later.
2518 * What we should check here is whether FBC can be
2519 * enabled sometime later.
2520 */
Paulo Zanoni7733b492015-07-07 15:26:04 -03002521 if (IS_GEN5(dev) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03002522 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002523 for (level = 2; level <= max_level; level++) {
2524 struct intel_wm_level *wm = &merged->wm[level];
2525
2526 wm->enable = false;
2527 }
2528 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002529}
2530
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002531static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2532{
2533 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2534 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2535}
2536
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002537/* The value we need to program into the WM_LPx latency field */
2538static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2539{
2540 struct drm_i915_private *dev_priv = dev->dev_private;
2541
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002542 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002543 return 2 * level;
2544 else
2545 return dev_priv->wm.pri_latency[level];
2546}
2547
Imre Deak820c1982013-12-17 14:46:36 +02002548static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002549 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002550 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002551 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002552{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002553 struct intel_crtc *intel_crtc;
2554 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002555
Ville Syrjälä0362c782013-10-09 19:17:57 +03002556 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002557 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002558
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002559 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002560 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002561 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002562
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002563 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002564
Ville Syrjälä0362c782013-10-09 19:17:57 +03002565 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002566
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002567 /*
2568 * Maintain the watermark values even if the level is
2569 * disabled. Doing otherwise could cause underruns.
2570 */
2571 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002572 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002573 (r->pri_val << WM1_LP_SR_SHIFT) |
2574 r->cur_val;
2575
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002576 if (r->enable)
2577 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2578
Ville Syrjälä416f4722013-11-02 21:07:46 -07002579 if (INTEL_INFO(dev)->gen >= 8)
2580 results->wm_lp[wm_lp - 1] |=
2581 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2582 else
2583 results->wm_lp[wm_lp - 1] |=
2584 r->fbc_val << WM1_LP_FBC_SHIFT;
2585
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002586 /*
2587 * Always set WM1S_LP_EN when spr_val != 0, even if the
2588 * level is disabled. Doing otherwise could cause underruns.
2589 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002590 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2591 WARN_ON(wm_lp != 1);
2592 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2593 } else
2594 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002595 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002596
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002597 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002598 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002599 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08002600 const struct intel_wm_level *r =
2601 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002602
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002603 if (WARN_ON(!r->enable))
2604 continue;
2605
Matt Ropered4a6a72016-02-23 17:20:13 -08002606 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002607
2608 results->wm_pipe[pipe] =
2609 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2610 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2611 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002612 }
2613}
2614
Paulo Zanoni861f3382013-05-31 10:19:21 -03002615/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2616 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002617static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002618 struct intel_pipe_wm *r1,
2619 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002620{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002621 int level, max_level = ilk_wm_max_level(dev);
2622 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002623
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002624 for (level = 1; level <= max_level; level++) {
2625 if (r1->wm[level].enable)
2626 level1 = level;
2627 if (r2->wm[level].enable)
2628 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002629 }
2630
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002631 if (level1 == level2) {
2632 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002633 return r2;
2634 else
2635 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002636 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002637 return r1;
2638 } else {
2639 return r2;
2640 }
2641}
2642
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002643/* dirty bits used to track which watermarks need changes */
2644#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2645#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2646#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2647#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2648#define WM_DIRTY_FBC (1 << 24)
2649#define WM_DIRTY_DDB (1 << 25)
2650
Damien Lespiau055e3932014-08-18 13:49:10 +01002651static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002652 const struct ilk_wm_values *old,
2653 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002654{
2655 unsigned int dirty = 0;
2656 enum pipe pipe;
2657 int wm_lp;
2658
Damien Lespiau055e3932014-08-18 13:49:10 +01002659 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002660 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2661 dirty |= WM_DIRTY_LINETIME(pipe);
2662 /* Must disable LP1+ watermarks too */
2663 dirty |= WM_DIRTY_LP_ALL;
2664 }
2665
2666 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2667 dirty |= WM_DIRTY_PIPE(pipe);
2668 /* Must disable LP1+ watermarks too */
2669 dirty |= WM_DIRTY_LP_ALL;
2670 }
2671 }
2672
2673 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2674 dirty |= WM_DIRTY_FBC;
2675 /* Must disable LP1+ watermarks too */
2676 dirty |= WM_DIRTY_LP_ALL;
2677 }
2678
2679 if (old->partitioning != new->partitioning) {
2680 dirty |= WM_DIRTY_DDB;
2681 /* Must disable LP1+ watermarks too */
2682 dirty |= WM_DIRTY_LP_ALL;
2683 }
2684
2685 /* LP1+ watermarks already deemed dirty, no need to continue */
2686 if (dirty & WM_DIRTY_LP_ALL)
2687 return dirty;
2688
2689 /* Find the lowest numbered LP1+ watermark in need of an update... */
2690 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2691 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2692 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2693 break;
2694 }
2695
2696 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2697 for (; wm_lp <= 3; wm_lp++)
2698 dirty |= WM_DIRTY_LP(wm_lp);
2699
2700 return dirty;
2701}
2702
Ville Syrjälä8553c182013-12-05 15:51:39 +02002703static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2704 unsigned int dirty)
2705{
Imre Deak820c1982013-12-17 14:46:36 +02002706 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002707 bool changed = false;
2708
2709 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2710 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2711 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2712 changed = true;
2713 }
2714 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2715 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2716 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2717 changed = true;
2718 }
2719 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2720 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2721 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2722 changed = true;
2723 }
2724
2725 /*
2726 * Don't touch WM1S_LP_EN here.
2727 * Doing so could cause underruns.
2728 */
2729
2730 return changed;
2731}
2732
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002733/*
2734 * The spec says we shouldn't write when we don't need, because every write
2735 * causes WMs to be re-evaluated, expending some power.
2736 */
Imre Deak820c1982013-12-17 14:46:36 +02002737static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2738 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002739{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002740 struct drm_device *dev = dev_priv->dev;
Imre Deak820c1982013-12-17 14:46:36 +02002741 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002742 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002743 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002744
Damien Lespiau055e3932014-08-18 13:49:10 +01002745 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002746 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002747 return;
2748
Ville Syrjälä8553c182013-12-05 15:51:39 +02002749 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002750
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002751 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002752 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002753 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002754 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002755 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002756 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2757
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002758 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002759 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002760 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002761 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002762 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002763 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2764
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002765 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002766 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002767 val = I915_READ(WM_MISC);
2768 if (results->partitioning == INTEL_DDB_PART_1_2)
2769 val &= ~WM_MISC_DATA_PARTITION_5_6;
2770 else
2771 val |= WM_MISC_DATA_PARTITION_5_6;
2772 I915_WRITE(WM_MISC, val);
2773 } else {
2774 val = I915_READ(DISP_ARB_CTL2);
2775 if (results->partitioning == INTEL_DDB_PART_1_2)
2776 val &= ~DISP_DATA_PARTITION_5_6;
2777 else
2778 val |= DISP_DATA_PARTITION_5_6;
2779 I915_WRITE(DISP_ARB_CTL2, val);
2780 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002781 }
2782
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002783 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002784 val = I915_READ(DISP_ARB_CTL);
2785 if (results->enable_fbc_wm)
2786 val &= ~DISP_FBC_WM_DIS;
2787 else
2788 val |= DISP_FBC_WM_DIS;
2789 I915_WRITE(DISP_ARB_CTL, val);
2790 }
2791
Imre Deak954911e2013-12-17 14:46:34 +02002792 if (dirty & WM_DIRTY_LP(1) &&
2793 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2794 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2795
2796 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002797 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2798 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2799 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2800 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2801 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002802
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002803 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002804 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002805 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002806 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002807 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002808 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002809
2810 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002811}
2812
Matt Ropered4a6a72016-02-23 17:20:13 -08002813bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02002814{
2815 struct drm_i915_private *dev_priv = dev->dev_private;
2816
2817 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2818}
2819
Damien Lespiaub9cec072014-11-04 17:06:43 +00002820/*
2821 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
2822 * different active planes.
2823 */
2824
2825#define SKL_DDB_SIZE 896 /* in blocks */
Damien Lespiau43d735a2015-03-17 11:39:34 +02002826#define BXT_DDB_SIZE 512
Damien Lespiaub9cec072014-11-04 17:06:43 +00002827
Matt Roper024c9042015-09-24 15:53:11 -07002828/*
2829 * Return the index of a plane in the SKL DDB and wm result arrays. Primary
2830 * plane is always in slot 0, cursor is always in slot I915_MAX_PLANES-1, and
2831 * other universal planes are in indices 1..n. Note that this may leave unused
2832 * indices between the top "sprite" plane and the cursor.
2833 */
2834static int
2835skl_wm_plane_id(const struct intel_plane *plane)
2836{
2837 switch (plane->base.type) {
2838 case DRM_PLANE_TYPE_PRIMARY:
2839 return 0;
2840 case DRM_PLANE_TYPE_CURSOR:
2841 return PLANE_CURSOR;
2842 case DRM_PLANE_TYPE_OVERLAY:
2843 return plane->plane + 1;
2844 default:
2845 MISSING_CASE(plane->base.type);
2846 return plane->plane;
2847 }
2848}
2849
Damien Lespiaub9cec072014-11-04 17:06:43 +00002850static void
2851skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07002852 const struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00002853 const struct intel_wm_config *config,
Damien Lespiaub9cec072014-11-04 17:06:43 +00002854 struct skl_ddb_entry *alloc /* out */)
2855{
Matt Roper024c9042015-09-24 15:53:11 -07002856 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002857 struct drm_crtc *crtc;
2858 unsigned int pipe_size, ddb_size;
2859 int nth_active_pipe;
2860
Matt Roper024c9042015-09-24 15:53:11 -07002861 if (!cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00002862 alloc->start = 0;
2863 alloc->end = 0;
2864 return;
2865 }
2866
Damien Lespiau43d735a2015-03-17 11:39:34 +02002867 if (IS_BROXTON(dev))
2868 ddb_size = BXT_DDB_SIZE;
2869 else
2870 ddb_size = SKL_DDB_SIZE;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002871
2872 ddb_size -= 4; /* 4 blocks for bypass path allocation */
2873
2874 nth_active_pipe = 0;
2875 for_each_crtc(dev, crtc) {
Matt Roper3ef00282015-03-09 10:19:24 -07002876 if (!to_intel_crtc(crtc)->active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002877 continue;
2878
2879 if (crtc == for_crtc)
2880 break;
2881
2882 nth_active_pipe++;
2883 }
2884
2885 pipe_size = ddb_size / config->num_pipes_active;
2886 alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active;
Damien Lespiau16160e32014-11-04 17:06:53 +00002887 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002888}
2889
2890static unsigned int skl_cursor_allocation(const struct intel_wm_config *config)
2891{
2892 if (config->num_pipes_active == 1)
2893 return 32;
2894
2895 return 8;
2896}
2897
Damien Lespiaua269c582014-11-04 17:06:49 +00002898static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
2899{
2900 entry->start = reg & 0x3ff;
2901 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00002902 if (entry->end)
2903 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00002904}
2905
Damien Lespiau08db6652014-11-04 17:06:52 +00002906void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2907 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00002908{
Damien Lespiaua269c582014-11-04 17:06:49 +00002909 enum pipe pipe;
2910 int plane;
2911 u32 val;
2912
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02002913 memset(ddb, 0, sizeof(*ddb));
2914
Damien Lespiaua269c582014-11-04 17:06:49 +00002915 for_each_pipe(dev_priv, pipe) {
Imre Deak4d800032016-02-17 16:31:29 +02002916 enum intel_display_power_domain power_domain;
2917
2918 power_domain = POWER_DOMAIN_PIPE(pipe);
2919 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02002920 continue;
2921
Damien Lespiaudd740782015-02-28 14:54:08 +00002922 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00002923 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
2924 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
2925 val);
2926 }
2927
2928 val = I915_READ(CUR_BUF_CFG(pipe));
Matt Roper4969d332015-09-24 15:53:10 -07002929 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][PLANE_CURSOR],
2930 val);
Imre Deak4d800032016-02-17 16:31:29 +02002931
2932 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00002933 }
2934}
2935
Damien Lespiaub9cec072014-11-04 17:06:43 +00002936static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07002937skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
2938 const struct drm_plane_state *pstate,
2939 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002940{
Matt Roper024c9042015-09-24 15:53:11 -07002941 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
2942 struct drm_framebuffer *fb = pstate->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002943
2944 /* for planar format */
Matt Roper024c9042015-09-24 15:53:11 -07002945 if (fb->pixel_format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002946 if (y) /* y-plane data rate */
Matt Roper024c9042015-09-24 15:53:11 -07002947 return intel_crtc->config->pipe_src_w *
2948 intel_crtc->config->pipe_src_h *
2949 drm_format_plane_cpp(fb->pixel_format, 0);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002950 else /* uv-plane data rate */
Matt Roper024c9042015-09-24 15:53:11 -07002951 return (intel_crtc->config->pipe_src_w/2) *
2952 (intel_crtc->config->pipe_src_h/2) *
2953 drm_format_plane_cpp(fb->pixel_format, 1);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002954 }
2955
2956 /* for packed formats */
Matt Roper024c9042015-09-24 15:53:11 -07002957 return intel_crtc->config->pipe_src_w *
2958 intel_crtc->config->pipe_src_h *
2959 drm_format_plane_cpp(fb->pixel_format, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002960}
2961
2962/*
2963 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
2964 * a 8192x4096@32bpp framebuffer:
2965 * 3 * 4096 * 8192 * 4 < 2^32
2966 */
2967static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07002968skl_get_total_relative_data_rate(const struct intel_crtc_state *cstate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002969{
Matt Roper024c9042015-09-24 15:53:11 -07002970 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
2971 struct drm_device *dev = intel_crtc->base.dev;
2972 const struct intel_plane *intel_plane;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002973 unsigned int total_data_rate = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002974
Matt Roper024c9042015-09-24 15:53:11 -07002975 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
2976 const struct drm_plane_state *pstate = intel_plane->base.state;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002977
Matt Roper024c9042015-09-24 15:53:11 -07002978 if (pstate->fb == NULL)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002979 continue;
2980
Matt Roper024c9042015-09-24 15:53:11 -07002981 if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
2982 continue;
2983
2984 /* packed/uv */
2985 total_data_rate += skl_plane_relative_data_rate(cstate,
2986 pstate,
2987 0);
2988
2989 if (pstate->fb->pixel_format == DRM_FORMAT_NV12)
2990 /* y-plane */
2991 total_data_rate += skl_plane_relative_data_rate(cstate,
2992 pstate,
2993 1);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002994 }
2995
2996 return total_data_rate;
2997}
2998
2999static void
Matt Roper024c9042015-09-24 15:53:11 -07003000skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00003001 struct skl_ddb_allocation *ddb /* out */)
3002{
Matt Roper024c9042015-09-24 15:53:11 -07003003 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003004 struct drm_device *dev = crtc->dev;
Matt Roperaa363132015-09-24 15:53:18 -07003005 struct drm_i915_private *dev_priv = to_i915(dev);
3006 struct intel_wm_config *config = &dev_priv->wm.config;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003007 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper024c9042015-09-24 15:53:11 -07003008 struct intel_plane *intel_plane;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003009 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003010 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003011 uint16_t alloc_size, start, cursor_blocks;
Damien Lespiau80958152015-02-09 13:35:10 +00003012 uint16_t minimum[I915_MAX_PLANES];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003013 uint16_t y_minimum[I915_MAX_PLANES];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003014 unsigned int total_data_rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003015
Matt Roper024c9042015-09-24 15:53:11 -07003016 skl_ddb_get_pipe_allocation_limits(dev, cstate, config, alloc);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003017 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003018 if (alloc_size == 0) {
3019 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roper4969d332015-09-24 15:53:10 -07003020 memset(&ddb->plane[pipe][PLANE_CURSOR], 0,
3021 sizeof(ddb->plane[pipe][PLANE_CURSOR]));
Damien Lespiaub9cec072014-11-04 17:06:43 +00003022 return;
3023 }
3024
3025 cursor_blocks = skl_cursor_allocation(config);
Matt Roper4969d332015-09-24 15:53:10 -07003026 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - cursor_blocks;
3027 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003028
3029 alloc_size -= cursor_blocks;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003030 alloc->end -= cursor_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003031
Damien Lespiau80958152015-02-09 13:35:10 +00003032 /* 1. Allocate the mininum required blocks for each active plane */
Matt Roper024c9042015-09-24 15:53:11 -07003033 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
3034 struct drm_plane *plane = &intel_plane->base;
3035 struct drm_framebuffer *fb = plane->state->fb;
3036 int id = skl_wm_plane_id(intel_plane);
Damien Lespiau80958152015-02-09 13:35:10 +00003037
Matt Roper024c9042015-09-24 15:53:11 -07003038 if (fb == NULL)
3039 continue;
3040 if (plane->type == DRM_PLANE_TYPE_CURSOR)
Damien Lespiau80958152015-02-09 13:35:10 +00003041 continue;
3042
Matt Roper024c9042015-09-24 15:53:11 -07003043 minimum[id] = 8;
3044 alloc_size -= minimum[id];
3045 y_minimum[id] = (fb->pixel_format == DRM_FORMAT_NV12) ? 8 : 0;
3046 alloc_size -= y_minimum[id];
Damien Lespiau80958152015-02-09 13:35:10 +00003047 }
3048
Damien Lespiaub9cec072014-11-04 17:06:43 +00003049 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003050 * 2. Distribute the remaining space in proportion to the amount of
3051 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003052 *
3053 * FIXME: we may not allocate every single block here.
3054 */
Matt Roper024c9042015-09-24 15:53:11 -07003055 total_data_rate = skl_get_total_relative_data_rate(cstate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003056
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003057 start = alloc->start;
Matt Roper024c9042015-09-24 15:53:11 -07003058 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
3059 struct drm_plane *plane = &intel_plane->base;
3060 struct drm_plane_state *pstate = intel_plane->base.state;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003061 unsigned int data_rate, y_data_rate;
3062 uint16_t plane_blocks, y_plane_blocks = 0;
Matt Roper024c9042015-09-24 15:53:11 -07003063 int id = skl_wm_plane_id(intel_plane);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003064
Matt Roper024c9042015-09-24 15:53:11 -07003065 if (pstate->fb == NULL)
3066 continue;
3067 if (plane->type == DRM_PLANE_TYPE_CURSOR)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003068 continue;
3069
Matt Roper024c9042015-09-24 15:53:11 -07003070 data_rate = skl_plane_relative_data_rate(cstate, pstate, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003071
3072 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003073 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003074 * promote the expression to 64 bits to avoid overflowing, the
3075 * result is < available as data_rate / total_data_rate < 1
3076 */
Matt Roper024c9042015-09-24 15:53:11 -07003077 plane_blocks = minimum[id];
Damien Lespiau80958152015-02-09 13:35:10 +00003078 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3079 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003080
Matt Roper024c9042015-09-24 15:53:11 -07003081 ddb->plane[pipe][id].start = start;
3082 ddb->plane[pipe][id].end = start + plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003083
3084 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003085
3086 /*
3087 * allocation for y_plane part of planar format:
3088 */
Matt Roper024c9042015-09-24 15:53:11 -07003089 if (pstate->fb->pixel_format == DRM_FORMAT_NV12) {
3090 y_data_rate = skl_plane_relative_data_rate(cstate,
3091 pstate,
3092 1);
3093 y_plane_blocks = y_minimum[id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003094 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3095 total_data_rate);
3096
Matt Roper024c9042015-09-24 15:53:11 -07003097 ddb->y_plane[pipe][id].start = start;
3098 ddb->y_plane[pipe][id].end = start + y_plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003099
3100 start += y_plane_blocks;
3101 }
3102
Damien Lespiaub9cec072014-11-04 17:06:43 +00003103 }
3104
3105}
3106
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02003107static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003108{
3109 /* TODO: Take into account the scalers once we support them */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02003110 return config->base.adjusted_mode.crtc_clock;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003111}
3112
3113/*
3114 * The max latency should be 257 (max the punit can code is 255 and we add 2us
Ville Syrjäläac484962016-01-20 21:05:26 +02003115 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003116 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3117 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3118*/
Ville Syrjäläac484962016-01-20 21:05:26 +02003119static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003120{
3121 uint32_t wm_intermediate_val, ret;
3122
3123 if (latency == 0)
3124 return UINT_MAX;
3125
Ville Syrjäläac484962016-01-20 21:05:26 +02003126 wm_intermediate_val = latency * pixel_rate * cpp / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003127 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
3128
3129 return ret;
3130}
3131
3132static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02003133 uint32_t horiz_pixels, uint8_t cpp,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003134 uint64_t tiling, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003135{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003136 uint32_t ret;
3137 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3138 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003139
3140 if (latency == 0)
3141 return UINT_MAX;
3142
Ville Syrjäläac484962016-01-20 21:05:26 +02003143 plane_bytes_per_line = horiz_pixels * cpp;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003144
3145 if (tiling == I915_FORMAT_MOD_Y_TILED ||
3146 tiling == I915_FORMAT_MOD_Yf_TILED) {
3147 plane_bytes_per_line *= 4;
3148 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3149 plane_blocks_per_line /= 4;
3150 } else {
3151 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3152 }
3153
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003154 wm_intermediate_val = latency * pixel_rate;
3155 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003156 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003157
3158 return ret;
3159}
3160
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003161static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb,
3162 const struct intel_crtc *intel_crtc)
3163{
3164 struct drm_device *dev = intel_crtc->base.dev;
3165 struct drm_i915_private *dev_priv = dev->dev_private;
3166 const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003167
Kumar, Maheshe6d90022015-10-23 09:41:34 -07003168 /*
3169 * If ddb allocation of pipes changed, it may require recalculation of
3170 * watermarks
3171 */
3172 if (memcmp(new_ddb->pipe, cur_ddb->pipe, sizeof(new_ddb->pipe)))
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003173 return true;
3174
3175 return false;
3176}
3177
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003178static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
Matt Roper024c9042015-09-24 15:53:11 -07003179 struct intel_crtc_state *cstate,
3180 struct intel_plane *intel_plane,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003181 uint16_t ddb_allocation,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003182 int level,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003183 uint16_t *out_blocks, /* out */
3184 uint8_t *out_lines /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003185{
Matt Roper024c9042015-09-24 15:53:11 -07003186 struct drm_plane *plane = &intel_plane->base;
3187 struct drm_framebuffer *fb = plane->state->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003188 uint32_t latency = dev_priv->wm.skl_latency[level];
3189 uint32_t method1, method2;
3190 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3191 uint32_t res_blocks, res_lines;
3192 uint32_t selected_result;
Ville Syrjäläac484962016-01-20 21:05:26 +02003193 uint8_t cpp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003194
Matt Roper024c9042015-09-24 15:53:11 -07003195 if (latency == 0 || !cstate->base.active || !fb)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003196 return false;
3197
Ville Syrjäläac484962016-01-20 21:05:26 +02003198 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Matt Roper024c9042015-09-24 15:53:11 -07003199 method1 = skl_wm_method1(skl_pipe_pixel_rate(cstate),
Ville Syrjäläac484962016-01-20 21:05:26 +02003200 cpp, latency);
Matt Roper024c9042015-09-24 15:53:11 -07003201 method2 = skl_wm_method2(skl_pipe_pixel_rate(cstate),
3202 cstate->base.adjusted_mode.crtc_htotal,
3203 cstate->pipe_src_w,
Ville Syrjäläac484962016-01-20 21:05:26 +02003204 cpp, fb->modifier[0],
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003205 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003206
Ville Syrjäläac484962016-01-20 21:05:26 +02003207 plane_bytes_per_line = cstate->pipe_src_w * cpp;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003208 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003209
Matt Roper024c9042015-09-24 15:53:11 -07003210 if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED ||
3211 fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003212 uint32_t min_scanlines = 4;
3213 uint32_t y_tile_minimum;
Matt Roper024c9042015-09-24 15:53:11 -07003214 if (intel_rotation_90_or_270(plane->state->rotation)) {
Ville Syrjäläac484962016-01-20 21:05:26 +02003215 int cpp = (fb->pixel_format == DRM_FORMAT_NV12) ?
Matt Roper024c9042015-09-24 15:53:11 -07003216 drm_format_plane_cpp(fb->pixel_format, 1) :
3217 drm_format_plane_cpp(fb->pixel_format, 0);
3218
Ville Syrjäläac484962016-01-20 21:05:26 +02003219 switch (cpp) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003220 case 1:
3221 min_scanlines = 16;
3222 break;
3223 case 2:
3224 min_scanlines = 8;
3225 break;
3226 case 8:
3227 WARN(1, "Unsupported pixel depth for rotation");
kbuild test robot2f0b5792015-03-26 22:30:21 +08003228 }
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003229 }
3230 y_tile_minimum = plane_blocks_per_line * min_scanlines;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003231 selected_result = max(method2, y_tile_minimum);
3232 } else {
3233 if ((ddb_allocation / plane_blocks_per_line) >= 1)
3234 selected_result = min(method1, method2);
3235 else
3236 selected_result = method1;
3237 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003238
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003239 res_blocks = selected_result + 1;
3240 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003241
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003242 if (level >= 1 && level <= 7) {
Matt Roper024c9042015-09-24 15:53:11 -07003243 if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED ||
3244 fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED)
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003245 res_lines += 4;
3246 else
3247 res_blocks++;
3248 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003249
3250 if (res_blocks >= ddb_allocation || res_lines > 31)
Damien Lespiaue6d66172014-11-04 17:06:55 +00003251 return false;
3252
3253 *out_blocks = res_blocks;
3254 *out_lines = res_lines;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003255
3256 return true;
3257}
3258
3259static void skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3260 struct skl_ddb_allocation *ddb,
Matt Roper024c9042015-09-24 15:53:11 -07003261 struct intel_crtc_state *cstate,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003262 int level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003263 struct skl_wm_level *result)
3264{
Matt Roper024c9042015-09-24 15:53:11 -07003265 struct drm_device *dev = dev_priv->dev;
3266 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
3267 struct intel_plane *intel_plane;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003268 uint16_t ddb_blocks;
Matt Roper024c9042015-09-24 15:53:11 -07003269 enum pipe pipe = intel_crtc->pipe;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003270
Matt Roper024c9042015-09-24 15:53:11 -07003271 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
3272 int i = skl_wm_plane_id(intel_plane);
3273
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003274 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
3275
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003276 result->plane_en[i] = skl_compute_plane_wm(dev_priv,
Matt Roper024c9042015-09-24 15:53:11 -07003277 cstate,
3278 intel_plane,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003279 ddb_blocks,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003280 level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003281 &result->plane_res_b[i],
3282 &result->plane_res_l[i]);
3283 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003284}
3285
Damien Lespiau407b50f2014-11-04 17:06:57 +00003286static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07003287skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003288{
Matt Roper024c9042015-09-24 15:53:11 -07003289 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003290 return 0;
3291
Matt Roper024c9042015-09-24 15:53:11 -07003292 if (WARN_ON(skl_pipe_pixel_rate(cstate) == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003293 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003294
Matt Roper024c9042015-09-24 15:53:11 -07003295 return DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal * 1000,
3296 skl_pipe_pixel_rate(cstate));
Damien Lespiau407b50f2014-11-04 17:06:57 +00003297}
3298
Matt Roper024c9042015-09-24 15:53:11 -07003299static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003300 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003301{
Matt Roper024c9042015-09-24 15:53:11 -07003302 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiau9414f562014-11-04 17:06:58 +00003303 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper024c9042015-09-24 15:53:11 -07003304 struct intel_plane *intel_plane;
Damien Lespiau9414f562014-11-04 17:06:58 +00003305
Matt Roper024c9042015-09-24 15:53:11 -07003306 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003307 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003308
3309 /* Until we know more, just disable transition WMs */
Matt Roper024c9042015-09-24 15:53:11 -07003310 for_each_intel_plane_on_crtc(crtc->dev, intel_crtc, intel_plane) {
3311 int i = skl_wm_plane_id(intel_plane);
3312
Damien Lespiau9414f562014-11-04 17:06:58 +00003313 trans_wm->plane_en[i] = false;
Matt Roper024c9042015-09-24 15:53:11 -07003314 }
Damien Lespiau407b50f2014-11-04 17:06:57 +00003315}
3316
Matt Roper024c9042015-09-24 15:53:11 -07003317static void skl_compute_pipe_wm(struct intel_crtc_state *cstate,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003318 struct skl_ddb_allocation *ddb,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003319 struct skl_pipe_wm *pipe_wm)
3320{
Matt Roper024c9042015-09-24 15:53:11 -07003321 struct drm_device *dev = cstate->base.crtc->dev;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003322 const struct drm_i915_private *dev_priv = dev->dev_private;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003323 int level, max_level = ilk_wm_max_level(dev);
3324
3325 for (level = 0; level <= max_level; level++) {
Matt Roper024c9042015-09-24 15:53:11 -07003326 skl_compute_wm_level(dev_priv, ddb, cstate,
3327 level, &pipe_wm->wm[level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003328 }
Matt Roper024c9042015-09-24 15:53:11 -07003329 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003330
Matt Roper024c9042015-09-24 15:53:11 -07003331 skl_compute_transition_wm(cstate, &pipe_wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003332}
3333
3334static void skl_compute_wm_results(struct drm_device *dev,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003335 struct skl_pipe_wm *p_wm,
3336 struct skl_wm_values *r,
3337 struct intel_crtc *intel_crtc)
3338{
3339 int level, max_level = ilk_wm_max_level(dev);
3340 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau9414f562014-11-04 17:06:58 +00003341 uint32_t temp;
3342 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003343
3344 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003345 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3346 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003347
3348 temp |= p_wm->wm[level].plane_res_l[i] <<
3349 PLANE_WM_LINES_SHIFT;
3350 temp |= p_wm->wm[level].plane_res_b[i];
3351 if (p_wm->wm[level].plane_en[i])
3352 temp |= PLANE_WM_EN;
3353
3354 r->plane[pipe][i][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003355 }
3356
3357 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003358
Matt Roper4969d332015-09-24 15:53:10 -07003359 temp |= p_wm->wm[level].plane_res_l[PLANE_CURSOR] << PLANE_WM_LINES_SHIFT;
3360 temp |= p_wm->wm[level].plane_res_b[PLANE_CURSOR];
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003361
Matt Roper4969d332015-09-24 15:53:10 -07003362 if (p_wm->wm[level].plane_en[PLANE_CURSOR])
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003363 temp |= PLANE_WM_EN;
3364
Matt Roper4969d332015-09-24 15:53:10 -07003365 r->plane[pipe][PLANE_CURSOR][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003366
3367 }
3368
Damien Lespiau9414f562014-11-04 17:06:58 +00003369 /* transition WMs */
3370 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3371 temp = 0;
3372 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
3373 temp |= p_wm->trans_wm.plane_res_b[i];
3374 if (p_wm->trans_wm.plane_en[i])
3375 temp |= PLANE_WM_EN;
3376
3377 r->plane_trans[pipe][i] = temp;
3378 }
3379
3380 temp = 0;
Matt Roper4969d332015-09-24 15:53:10 -07003381 temp |= p_wm->trans_wm.plane_res_l[PLANE_CURSOR] << PLANE_WM_LINES_SHIFT;
3382 temp |= p_wm->trans_wm.plane_res_b[PLANE_CURSOR];
3383 if (p_wm->trans_wm.plane_en[PLANE_CURSOR])
Damien Lespiau9414f562014-11-04 17:06:58 +00003384 temp |= PLANE_WM_EN;
3385
Matt Roper4969d332015-09-24 15:53:10 -07003386 r->plane_trans[pipe][PLANE_CURSOR] = temp;
Damien Lespiau9414f562014-11-04 17:06:58 +00003387
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003388 r->wm_linetime[pipe] = p_wm->linetime;
3389}
3390
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003391static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
3392 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00003393 const struct skl_ddb_entry *entry)
3394{
3395 if (entry->end)
3396 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3397 else
3398 I915_WRITE(reg, 0);
3399}
3400
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003401static void skl_write_wm_values(struct drm_i915_private *dev_priv,
3402 const struct skl_wm_values *new)
3403{
3404 struct drm_device *dev = dev_priv->dev;
3405 struct intel_crtc *crtc;
3406
Jani Nikula19c80542015-12-16 12:48:16 +02003407 for_each_intel_crtc(dev, crtc) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003408 int i, level, max_level = ilk_wm_max_level(dev);
3409 enum pipe pipe = crtc->pipe;
3410
Damien Lespiau5d374d92014-11-04 17:07:00 +00003411 if (!new->dirty[pipe])
3412 continue;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003413
Damien Lespiau5d374d92014-11-04 17:07:00 +00003414 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
3415
3416 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003417 for (i = 0; i < intel_num_planes(crtc); i++)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003418 I915_WRITE(PLANE_WM(pipe, i, level),
3419 new->plane[pipe][i][level]);
3420 I915_WRITE(CUR_WM(pipe, level),
Matt Roper4969d332015-09-24 15:53:10 -07003421 new->plane[pipe][PLANE_CURSOR][level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003422 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003423 for (i = 0; i < intel_num_planes(crtc); i++)
3424 I915_WRITE(PLANE_WM_TRANS(pipe, i),
3425 new->plane_trans[pipe][i]);
Matt Roper4969d332015-09-24 15:53:10 -07003426 I915_WRITE(CUR_WM_TRANS(pipe),
3427 new->plane_trans[pipe][PLANE_CURSOR]);
Damien Lespiau5d374d92014-11-04 17:07:00 +00003428
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003429 for (i = 0; i < intel_num_planes(crtc); i++) {
Damien Lespiau5d374d92014-11-04 17:07:00 +00003430 skl_ddb_entry_write(dev_priv,
3431 PLANE_BUF_CFG(pipe, i),
3432 &new->ddb.plane[pipe][i]);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003433 skl_ddb_entry_write(dev_priv,
3434 PLANE_NV12_BUF_CFG(pipe, i),
3435 &new->ddb.y_plane[pipe][i]);
3436 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003437
3438 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
Matt Roper4969d332015-09-24 15:53:10 -07003439 &new->ddb.plane[pipe][PLANE_CURSOR]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003440 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003441}
3442
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003443/*
3444 * When setting up a new DDB allocation arrangement, we need to correctly
3445 * sequence the times at which the new allocations for the pipes are taken into
3446 * account or we'll have pipes fetching from space previously allocated to
3447 * another pipe.
3448 *
3449 * Roughly the sequence looks like:
3450 * 1. re-allocate the pipe(s) with the allocation being reduced and not
3451 * overlapping with a previous light-up pipe (another way to put it is:
3452 * pipes with their new allocation strickly included into their old ones).
3453 * 2. re-allocate the other pipes that get their allocation reduced
3454 * 3. allocate the pipes having their allocation increased
3455 *
3456 * Steps 1. and 2. are here to take care of the following case:
3457 * - Initially DDB looks like this:
3458 * | B | C |
3459 * - enable pipe A.
3460 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
3461 * allocation
3462 * | A | B | C |
3463 *
3464 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
3465 */
3466
Damien Lespiaud21b7952014-11-04 17:07:03 +00003467static void
3468skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003469{
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003470 int plane;
3471
Damien Lespiaud21b7952014-11-04 17:07:03 +00003472 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
3473
Damien Lespiaudd740782015-02-28 14:54:08 +00003474 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003475 I915_WRITE(PLANE_SURF(pipe, plane),
3476 I915_READ(PLANE_SURF(pipe, plane)));
3477 }
3478 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3479}
3480
3481static bool
3482skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
3483 const struct skl_ddb_allocation *new,
3484 enum pipe pipe)
3485{
3486 uint16_t old_size, new_size;
3487
3488 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
3489 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
3490
3491 return old_size != new_size &&
3492 new->pipe[pipe].start >= old->pipe[pipe].start &&
3493 new->pipe[pipe].end <= old->pipe[pipe].end;
3494}
3495
3496static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
3497 struct skl_wm_values *new_values)
3498{
3499 struct drm_device *dev = dev_priv->dev;
3500 struct skl_ddb_allocation *cur_ddb, *new_ddb;
Ville Syrjäläc929cb42015-04-02 18:28:07 +03003501 bool reallocated[I915_MAX_PIPES] = {};
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003502 struct intel_crtc *crtc;
3503 enum pipe pipe;
3504
3505 new_ddb = &new_values->ddb;
3506 cur_ddb = &dev_priv->wm.skl_hw.ddb;
3507
3508 /*
3509 * First pass: flush the pipes with the new allocation contained into
3510 * the old space.
3511 *
3512 * We'll wait for the vblank on those pipes to ensure we can safely
3513 * re-allocate the freed space without this pipe fetching from it.
3514 */
3515 for_each_intel_crtc(dev, crtc) {
3516 if (!crtc->active)
3517 continue;
3518
3519 pipe = crtc->pipe;
3520
3521 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
3522 continue;
3523
Damien Lespiaud21b7952014-11-04 17:07:03 +00003524 skl_wm_flush_pipe(dev_priv, pipe, 1);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003525 intel_wait_for_vblank(dev, pipe);
3526
3527 reallocated[pipe] = true;
3528 }
3529
3530
3531 /*
3532 * Second pass: flush the pipes that are having their allocation
3533 * reduced, but overlapping with a previous allocation.
3534 *
3535 * Here as well we need to wait for the vblank to make sure the freed
3536 * space is not used anymore.
3537 */
3538 for_each_intel_crtc(dev, crtc) {
3539 if (!crtc->active)
3540 continue;
3541
3542 pipe = crtc->pipe;
3543
3544 if (reallocated[pipe])
3545 continue;
3546
3547 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3548 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
Damien Lespiaud21b7952014-11-04 17:07:03 +00003549 skl_wm_flush_pipe(dev_priv, pipe, 2);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003550 intel_wait_for_vblank(dev, pipe);
Sonika Jindald9d8e6b2014-12-11 17:58:15 +05303551 reallocated[pipe] = true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003552 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003553 }
3554
3555 /*
3556 * Third pass: flush the pipes that got more space allocated.
3557 *
3558 * We don't need to actively wait for the update here, next vblank
3559 * will just get more DDB space with the correct WM values.
3560 */
3561 for_each_intel_crtc(dev, crtc) {
3562 if (!crtc->active)
3563 continue;
3564
3565 pipe = crtc->pipe;
3566
3567 /*
3568 * At this point, only the pipes more space than before are
3569 * left to re-allocate.
3570 */
3571 if (reallocated[pipe])
3572 continue;
3573
Damien Lespiaud21b7952014-11-04 17:07:03 +00003574 skl_wm_flush_pipe(dev_priv, pipe, 3);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003575 }
3576}
3577
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003578static bool skl_update_pipe_wm(struct drm_crtc *crtc,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003579 struct skl_ddb_allocation *ddb, /* out */
3580 struct skl_pipe_wm *pipe_wm /* out */)
3581{
3582 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper024c9042015-09-24 15:53:11 -07003583 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003584
Matt Roperaa363132015-09-24 15:53:18 -07003585 skl_allocate_pipe_ddb(cstate, ddb);
Matt Roper024c9042015-09-24 15:53:11 -07003586 skl_compute_pipe_wm(cstate, ddb, pipe_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003587
Matt Roper4e0963c2015-09-24 15:53:15 -07003588 if (!memcmp(&intel_crtc->wm.active.skl, pipe_wm, sizeof(*pipe_wm)))
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003589 return false;
3590
Matt Roper4e0963c2015-09-24 15:53:15 -07003591 intel_crtc->wm.active.skl = *pipe_wm;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003592
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003593 return true;
3594}
3595
3596static void skl_update_other_pipe_wm(struct drm_device *dev,
3597 struct drm_crtc *crtc,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003598 struct skl_wm_values *r)
3599{
3600 struct intel_crtc *intel_crtc;
3601 struct intel_crtc *this_crtc = to_intel_crtc(crtc);
3602
3603 /*
3604 * If the WM update hasn't changed the allocation for this_crtc (the
3605 * crtc we are currently computing the new WM values for), other
3606 * enabled crtcs will keep the same allocation and we don't need to
3607 * recompute anything for them.
3608 */
3609 if (!skl_ddb_allocation_changed(&r->ddb, this_crtc))
3610 return;
3611
3612 /*
3613 * Otherwise, because of this_crtc being freshly enabled/disabled, the
3614 * other active pipes need new DDB allocation and WM values.
3615 */
Jani Nikula19c80542015-12-16 12:48:16 +02003616 for_each_intel_crtc(dev, intel_crtc) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003617 struct skl_pipe_wm pipe_wm = {};
3618 bool wm_changed;
3619
3620 if (this_crtc->pipe == intel_crtc->pipe)
3621 continue;
3622
3623 if (!intel_crtc->active)
3624 continue;
3625
Matt Roperaa363132015-09-24 15:53:18 -07003626 wm_changed = skl_update_pipe_wm(&intel_crtc->base,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003627 &r->ddb, &pipe_wm);
3628
3629 /*
3630 * If we end up re-computing the other pipe WM values, it's
3631 * because it was really needed, so we expect the WM values to
3632 * be different.
3633 */
3634 WARN_ON(!wm_changed);
3635
Matt Roper024c9042015-09-24 15:53:11 -07003636 skl_compute_wm_results(dev, &pipe_wm, r, intel_crtc);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003637 r->dirty[intel_crtc->pipe] = true;
3638 }
3639}
3640
Bob Paauweadda50b2015-07-21 10:42:53 -07003641static void skl_clear_wm(struct skl_wm_values *watermarks, enum pipe pipe)
3642{
3643 watermarks->wm_linetime[pipe] = 0;
3644 memset(watermarks->plane[pipe], 0,
3645 sizeof(uint32_t) * 8 * I915_MAX_PLANES);
Bob Paauweadda50b2015-07-21 10:42:53 -07003646 memset(watermarks->plane_trans[pipe],
3647 0, sizeof(uint32_t) * I915_MAX_PLANES);
Matt Roper4969d332015-09-24 15:53:10 -07003648 watermarks->plane_trans[pipe][PLANE_CURSOR] = 0;
Bob Paauweadda50b2015-07-21 10:42:53 -07003649
3650 /* Clear ddb entries for pipe */
3651 memset(&watermarks->ddb.pipe[pipe], 0, sizeof(struct skl_ddb_entry));
3652 memset(&watermarks->ddb.plane[pipe], 0,
3653 sizeof(struct skl_ddb_entry) * I915_MAX_PLANES);
3654 memset(&watermarks->ddb.y_plane[pipe], 0,
3655 sizeof(struct skl_ddb_entry) * I915_MAX_PLANES);
Matt Roper4969d332015-09-24 15:53:10 -07003656 memset(&watermarks->ddb.plane[pipe][PLANE_CURSOR], 0,
3657 sizeof(struct skl_ddb_entry));
Bob Paauweadda50b2015-07-21 10:42:53 -07003658
3659}
3660
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003661static void skl_update_wm(struct drm_crtc *crtc)
3662{
3663 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3664 struct drm_device *dev = crtc->dev;
3665 struct drm_i915_private *dev_priv = dev->dev_private;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003666 struct skl_wm_values *results = &dev_priv->wm.skl_results;
Matt Roper4e0963c2015-09-24 15:53:15 -07003667 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
3668 struct skl_pipe_wm *pipe_wm = &cstate->wm.optimal.skl;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003669
Bob Paauweadda50b2015-07-21 10:42:53 -07003670
3671 /* Clear all dirty flags */
3672 memset(results->dirty, 0, sizeof(bool) * I915_MAX_PIPES);
3673
3674 skl_clear_wm(results, intel_crtc->pipe);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003675
Matt Roperaa363132015-09-24 15:53:18 -07003676 if (!skl_update_pipe_wm(crtc, &results->ddb, pipe_wm))
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003677 return;
3678
Matt Roper4e0963c2015-09-24 15:53:15 -07003679 skl_compute_wm_results(dev, pipe_wm, results, intel_crtc);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003680 results->dirty[intel_crtc->pipe] = true;
3681
Matt Roperaa363132015-09-24 15:53:18 -07003682 skl_update_other_pipe_wm(dev, crtc, results);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003683 skl_write_wm_values(dev_priv, results);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003684 skl_flush_wm_values(dev_priv, results);
Damien Lespiau53b0deb2014-11-04 17:06:48 +00003685
3686 /* store the new configuration */
3687 dev_priv->wm.skl_hw = *results;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003688}
3689
Ville Syrjäläd8905652016-01-14 14:53:35 +02003690static void ilk_compute_wm_config(struct drm_device *dev,
3691 struct intel_wm_config *config)
3692{
3693 struct intel_crtc *crtc;
3694
3695 /* Compute the currently _active_ config */
3696 for_each_intel_crtc(dev, crtc) {
3697 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
3698
3699 if (!wm->pipe_enabled)
3700 continue;
3701
3702 config->sprites_enabled |= wm->sprites_enabled;
3703 config->sprites_scaled |= wm->sprites_scaled;
3704 config->num_pipes_active++;
3705 }
3706}
3707
Matt Ropered4a6a72016-02-23 17:20:13 -08003708static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003709{
Matt Ropered4a6a72016-02-23 17:20:13 -08003710 struct drm_device *dev = dev_priv->dev;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07003711 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02003712 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02003713 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02003714 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003715 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07003716
Ville Syrjäläd8905652016-01-14 14:53:35 +02003717 ilk_compute_wm_config(dev, &config);
3718
3719 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
3720 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03003721
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003722 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03003723 if (INTEL_INFO(dev)->gen >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02003724 config.num_pipes_active == 1 && config.sprites_enabled) {
3725 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
3726 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003727
Imre Deak820c1982013-12-17 14:46:36 +02003728 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003729 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003730 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003731 }
3732
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003733 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003734 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003735
Imre Deak820c1982013-12-17 14:46:36 +02003736 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003737
Imre Deak820c1982013-12-17 14:46:36 +02003738 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003739}
3740
Matt Ropered4a6a72016-02-23 17:20:13 -08003741static void ilk_initial_watermarks(struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07003742{
Matt Ropered4a6a72016-02-23 17:20:13 -08003743 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
3744 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07003745
Matt Ropered4a6a72016-02-23 17:20:13 -08003746 mutex_lock(&dev_priv->wm.wm_mutex);
3747 intel_crtc->wm.active.ilk = cstate->wm.intermediate;
3748 ilk_program_watermarks(dev_priv);
3749 mutex_unlock(&dev_priv->wm.wm_mutex);
3750}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07003751
Matt Ropered4a6a72016-02-23 17:20:13 -08003752static void ilk_optimize_watermarks(struct intel_crtc_state *cstate)
3753{
3754 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
3755 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
3756
3757 mutex_lock(&dev_priv->wm.wm_mutex);
3758 if (cstate->wm.need_postvbl_update) {
3759 intel_crtc->wm.active.ilk = cstate->wm.optimal.ilk;
3760 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07003761 }
Matt Ropered4a6a72016-02-23 17:20:13 -08003762 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07003763}
3764
Pradeep Bhat30789992014-11-04 17:06:45 +00003765static void skl_pipe_wm_active_state(uint32_t val,
3766 struct skl_pipe_wm *active,
3767 bool is_transwm,
3768 bool is_cursor,
3769 int i,
3770 int level)
3771{
3772 bool is_enabled = (val & PLANE_WM_EN) != 0;
3773
3774 if (!is_transwm) {
3775 if (!is_cursor) {
3776 active->wm[level].plane_en[i] = is_enabled;
3777 active->wm[level].plane_res_b[i] =
3778 val & PLANE_WM_BLOCKS_MASK;
3779 active->wm[level].plane_res_l[i] =
3780 (val >> PLANE_WM_LINES_SHIFT) &
3781 PLANE_WM_LINES_MASK;
3782 } else {
Matt Roper4969d332015-09-24 15:53:10 -07003783 active->wm[level].plane_en[PLANE_CURSOR] = is_enabled;
3784 active->wm[level].plane_res_b[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003785 val & PLANE_WM_BLOCKS_MASK;
Matt Roper4969d332015-09-24 15:53:10 -07003786 active->wm[level].plane_res_l[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003787 (val >> PLANE_WM_LINES_SHIFT) &
3788 PLANE_WM_LINES_MASK;
3789 }
3790 } else {
3791 if (!is_cursor) {
3792 active->trans_wm.plane_en[i] = is_enabled;
3793 active->trans_wm.plane_res_b[i] =
3794 val & PLANE_WM_BLOCKS_MASK;
3795 active->trans_wm.plane_res_l[i] =
3796 (val >> PLANE_WM_LINES_SHIFT) &
3797 PLANE_WM_LINES_MASK;
3798 } else {
Matt Roper4969d332015-09-24 15:53:10 -07003799 active->trans_wm.plane_en[PLANE_CURSOR] = is_enabled;
3800 active->trans_wm.plane_res_b[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003801 val & PLANE_WM_BLOCKS_MASK;
Matt Roper4969d332015-09-24 15:53:10 -07003802 active->trans_wm.plane_res_l[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003803 (val >> PLANE_WM_LINES_SHIFT) &
3804 PLANE_WM_LINES_MASK;
3805 }
3806 }
3807}
3808
3809static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3810{
3811 struct drm_device *dev = crtc->dev;
3812 struct drm_i915_private *dev_priv = dev->dev_private;
3813 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
3814 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07003815 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
3816 struct skl_pipe_wm *active = &cstate->wm.optimal.skl;
Pradeep Bhat30789992014-11-04 17:06:45 +00003817 enum pipe pipe = intel_crtc->pipe;
3818 int level, i, max_level;
3819 uint32_t temp;
3820
3821 max_level = ilk_wm_max_level(dev);
3822
3823 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3824
3825 for (level = 0; level <= max_level; level++) {
3826 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3827 hw->plane[pipe][i][level] =
3828 I915_READ(PLANE_WM(pipe, i, level));
Matt Roper4969d332015-09-24 15:53:10 -07003829 hw->plane[pipe][PLANE_CURSOR][level] = I915_READ(CUR_WM(pipe, level));
Pradeep Bhat30789992014-11-04 17:06:45 +00003830 }
3831
3832 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3833 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
Matt Roper4969d332015-09-24 15:53:10 -07003834 hw->plane_trans[pipe][PLANE_CURSOR] = I915_READ(CUR_WM_TRANS(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00003835
Matt Roper3ef00282015-03-09 10:19:24 -07003836 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00003837 return;
3838
3839 hw->dirty[pipe] = true;
3840
3841 active->linetime = hw->wm_linetime[pipe];
3842
3843 for (level = 0; level <= max_level; level++) {
3844 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3845 temp = hw->plane[pipe][i][level];
3846 skl_pipe_wm_active_state(temp, active, false,
3847 false, i, level);
3848 }
Matt Roper4969d332015-09-24 15:53:10 -07003849 temp = hw->plane[pipe][PLANE_CURSOR][level];
Pradeep Bhat30789992014-11-04 17:06:45 +00003850 skl_pipe_wm_active_state(temp, active, false, true, i, level);
3851 }
3852
3853 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3854 temp = hw->plane_trans[pipe][i];
3855 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
3856 }
3857
Matt Roper4969d332015-09-24 15:53:10 -07003858 temp = hw->plane_trans[pipe][PLANE_CURSOR];
Pradeep Bhat30789992014-11-04 17:06:45 +00003859 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
Matt Roper4e0963c2015-09-24 15:53:15 -07003860
3861 intel_crtc->wm.active.skl = *active;
Pradeep Bhat30789992014-11-04 17:06:45 +00003862}
3863
3864void skl_wm_get_hw_state(struct drm_device *dev)
3865{
Damien Lespiaua269c582014-11-04 17:06:49 +00003866 struct drm_i915_private *dev_priv = dev->dev_private;
3867 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00003868 struct drm_crtc *crtc;
3869
Damien Lespiaua269c582014-11-04 17:06:49 +00003870 skl_ddb_get_hw_state(dev_priv, ddb);
Pradeep Bhat30789992014-11-04 17:06:45 +00003871 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3872 skl_pipe_wm_get_hw_state(crtc);
3873}
3874
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003875static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3876{
3877 struct drm_device *dev = crtc->dev;
3878 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003879 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003880 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07003881 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
3882 struct intel_pipe_wm *active = &cstate->wm.optimal.ilk;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003883 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003884 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003885 [PIPE_A] = WM0_PIPEA_ILK,
3886 [PIPE_B] = WM0_PIPEB_ILK,
3887 [PIPE_C] = WM0_PIPEC_IVB,
3888 };
3889
3890 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003891 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02003892 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003893
Matt Roper3ef00282015-03-09 10:19:24 -07003894 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003895
3896 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003897 u32 tmp = hw->wm_pipe[pipe];
3898
3899 /*
3900 * For active pipes LP0 watermark is marked as
3901 * enabled, and LP1+ watermaks as disabled since
3902 * we can't really reverse compute them in case
3903 * multiple pipes are active.
3904 */
3905 active->wm[0].enable = true;
3906 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3907 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3908 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3909 active->linetime = hw->wm_linetime[pipe];
3910 } else {
3911 int level, max_level = ilk_wm_max_level(dev);
3912
3913 /*
3914 * For inactive pipes, all watermark levels
3915 * should be marked as enabled but zeroed,
3916 * which is what we'd compute them to.
3917 */
3918 for (level = 0; level <= max_level; level++)
3919 active->wm[level].enable = true;
3920 }
Matt Roper4e0963c2015-09-24 15:53:15 -07003921
3922 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003923}
3924
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03003925#define _FW_WM(value, plane) \
3926 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
3927#define _FW_WM_VLV(value, plane) \
3928 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
3929
3930static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
3931 struct vlv_wm_values *wm)
3932{
3933 enum pipe pipe;
3934 uint32_t tmp;
3935
3936 for_each_pipe(dev_priv, pipe) {
3937 tmp = I915_READ(VLV_DDL(pipe));
3938
3939 wm->ddl[pipe].primary =
3940 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3941 wm->ddl[pipe].cursor =
3942 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3943 wm->ddl[pipe].sprite[0] =
3944 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3945 wm->ddl[pipe].sprite[1] =
3946 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3947 }
3948
3949 tmp = I915_READ(DSPFW1);
3950 wm->sr.plane = _FW_WM(tmp, SR);
3951 wm->pipe[PIPE_B].cursor = _FW_WM(tmp, CURSORB);
3952 wm->pipe[PIPE_B].primary = _FW_WM_VLV(tmp, PLANEB);
3953 wm->pipe[PIPE_A].primary = _FW_WM_VLV(tmp, PLANEA);
3954
3955 tmp = I915_READ(DSPFW2);
3956 wm->pipe[PIPE_A].sprite[1] = _FW_WM_VLV(tmp, SPRITEB);
3957 wm->pipe[PIPE_A].cursor = _FW_WM(tmp, CURSORA);
3958 wm->pipe[PIPE_A].sprite[0] = _FW_WM_VLV(tmp, SPRITEA);
3959
3960 tmp = I915_READ(DSPFW3);
3961 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
3962
3963 if (IS_CHERRYVIEW(dev_priv)) {
3964 tmp = I915_READ(DSPFW7_CHV);
3965 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
3966 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
3967
3968 tmp = I915_READ(DSPFW8_CHV);
3969 wm->pipe[PIPE_C].sprite[1] = _FW_WM_VLV(tmp, SPRITEF);
3970 wm->pipe[PIPE_C].sprite[0] = _FW_WM_VLV(tmp, SPRITEE);
3971
3972 tmp = I915_READ(DSPFW9_CHV);
3973 wm->pipe[PIPE_C].primary = _FW_WM_VLV(tmp, PLANEC);
3974 wm->pipe[PIPE_C].cursor = _FW_WM(tmp, CURSORC);
3975
3976 tmp = I915_READ(DSPHOWM);
3977 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
3978 wm->pipe[PIPE_C].sprite[1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
3979 wm->pipe[PIPE_C].sprite[0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
3980 wm->pipe[PIPE_C].primary |= _FW_WM(tmp, PLANEC_HI) << 8;
3981 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
3982 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
3983 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
3984 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
3985 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
3986 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
3987 } else {
3988 tmp = I915_READ(DSPFW7);
3989 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
3990 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
3991
3992 tmp = I915_READ(DSPHOWM);
3993 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
3994 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
3995 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
3996 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
3997 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
3998 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
3999 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4000 }
4001}
4002
4003#undef _FW_WM
4004#undef _FW_WM_VLV
4005
4006void vlv_wm_get_hw_state(struct drm_device *dev)
4007{
4008 struct drm_i915_private *dev_priv = to_i915(dev);
4009 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4010 struct intel_plane *plane;
4011 enum pipe pipe;
4012 u32 val;
4013
4014 vlv_read_wm_values(dev_priv, wm);
4015
4016 for_each_intel_plane(dev, plane) {
4017 switch (plane->base.type) {
4018 int sprite;
4019 case DRM_PLANE_TYPE_CURSOR:
4020 plane->wm.fifo_size = 63;
4021 break;
4022 case DRM_PLANE_TYPE_PRIMARY:
4023 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, 0);
4024 break;
4025 case DRM_PLANE_TYPE_OVERLAY:
4026 sprite = plane->plane;
4027 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, sprite + 1);
4028 break;
4029 }
4030 }
4031
4032 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4033 wm->level = VLV_WM_LEVEL_PM2;
4034
4035 if (IS_CHERRYVIEW(dev_priv)) {
4036 mutex_lock(&dev_priv->rps.hw_lock);
4037
4038 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4039 if (val & DSP_MAXFIFO_PM5_ENABLE)
4040 wm->level = VLV_WM_LEVEL_PM5;
4041
Ville Syrjälä58590c12015-09-08 21:05:12 +03004042 /*
4043 * If DDR DVFS is disabled in the BIOS, Punit
4044 * will never ack the request. So if that happens
4045 * assume we don't have to enable/disable DDR DVFS
4046 * dynamically. To test that just set the REQ_ACK
4047 * bit to poke the Punit, but don't change the
4048 * HIGH/LOW bits so that we don't actually change
4049 * the current state.
4050 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004051 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004052 val |= FORCE_DDR_FREQ_REQ_ACK;
4053 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4054
4055 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4056 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4057 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4058 "assuming DDR DVFS is disabled\n");
4059 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4060 } else {
4061 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4062 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4063 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4064 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004065
4066 mutex_unlock(&dev_priv->rps.hw_lock);
4067 }
4068
4069 for_each_pipe(dev_priv, pipe)
4070 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
4071 pipe_name(pipe), wm->pipe[pipe].primary, wm->pipe[pipe].cursor,
4072 wm->pipe[pipe].sprite[0], wm->pipe[pipe].sprite[1]);
4073
4074 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4075 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4076}
4077
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004078void ilk_wm_get_hw_state(struct drm_device *dev)
4079{
4080 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02004081 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004082 struct drm_crtc *crtc;
4083
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004084 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004085 ilk_pipe_wm_get_hw_state(crtc);
4086
4087 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4088 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4089 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4090
4091 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004092 if (INTEL_INFO(dev)->gen >= 7) {
4093 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4094 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4095 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004096
Ville Syrjäläa42a5712014-01-07 16:14:08 +02004097 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004098 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4099 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
4100 else if (IS_IVYBRIDGE(dev))
4101 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4102 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004103
4104 hw->enable_fbc_wm =
4105 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4106}
4107
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004108/**
4109 * intel_update_watermarks - update FIFO watermark values based on current modes
4110 *
4111 * Calculate watermark values for the various WM regs based on current mode
4112 * and plane configuration.
4113 *
4114 * There are several cases to deal with here:
4115 * - normal (i.e. non-self-refresh)
4116 * - self-refresh (SR) mode
4117 * - lines are large relative to FIFO size (buffer can hold up to 2)
4118 * - lines are small relative to FIFO size (buffer can hold more than 2
4119 * lines), so need to account for TLB latency
4120 *
4121 * The normal calculation is:
4122 * watermark = dotclock * bytes per pixel * latency
4123 * where latency is platform & configuration dependent (we assume pessimal
4124 * values here).
4125 *
4126 * The SR calculation is:
4127 * watermark = (trunc(latency/line time)+1) * surface width *
4128 * bytes per pixel
4129 * where
4130 * line time = htotal / dotclock
4131 * surface width = hdisplay for normal plane and 64 for cursor
4132 * and latency is assumed to be high, as above.
4133 *
4134 * The final value programmed to the register should always be rounded up,
4135 * and include an extra 2 entries to account for clock crossings.
4136 *
4137 * We don't use the sprite, so we can ignore that. And on Crestline we have
4138 * to set the non-SR watermarks to 8.
4139 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004140void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004141{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004142 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004143
4144 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004145 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004146}
4147
Jani Nikulae2828912016-01-18 09:19:47 +02004148/*
Daniel Vetter92703882012-08-09 16:46:01 +02004149 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004150 */
4151DEFINE_SPINLOCK(mchdev_lock);
4152
4153/* Global for IPS driver to get at the current i915 device. Protected by
4154 * mchdev_lock. */
4155static struct drm_i915_private *i915_mch_dev;
4156
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004157bool ironlake_set_drps(struct drm_device *dev, u8 val)
4158{
4159 struct drm_i915_private *dev_priv = dev->dev_private;
4160 u16 rgvswctl;
4161
Daniel Vetter92703882012-08-09 16:46:01 +02004162 assert_spin_locked(&mchdev_lock);
4163
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004164 rgvswctl = I915_READ16(MEMSWCTL);
4165 if (rgvswctl & MEMCTL_CMD_STS) {
4166 DRM_DEBUG("gpu busy, RCS change rejected\n");
4167 return false; /* still busy with another command */
4168 }
4169
4170 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4171 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4172 I915_WRITE16(MEMSWCTL, rgvswctl);
4173 POSTING_READ16(MEMSWCTL);
4174
4175 rgvswctl |= MEMCTL_CMD_STS;
4176 I915_WRITE16(MEMSWCTL, rgvswctl);
4177
4178 return true;
4179}
4180
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004181static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004182{
4183 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004184 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004185 u8 fmax, fmin, fstart, vstart;
4186
Daniel Vetter92703882012-08-09 16:46:01 +02004187 spin_lock_irq(&mchdev_lock);
4188
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004189 rgvmodectl = I915_READ(MEMMODECTL);
4190
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004191 /* Enable temp reporting */
4192 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4193 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4194
4195 /* 100ms RC evaluation intervals */
4196 I915_WRITE(RCUPEI, 100000);
4197 I915_WRITE(RCDNEI, 100000);
4198
4199 /* Set max/min thresholds to 90ms and 80ms respectively */
4200 I915_WRITE(RCBMAXAVG, 90000);
4201 I915_WRITE(RCBMINAVG, 80000);
4202
4203 I915_WRITE(MEMIHYST, 1);
4204
4205 /* Set up min, max, and cur for interrupt handling */
4206 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4207 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4208 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4209 MEMMODE_FSTART_SHIFT;
4210
Ville Syrjälä616847e2015-09-18 20:03:19 +03004211 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004212 PXVFREQ_PX_SHIFT;
4213
Daniel Vetter20e4d402012-08-08 23:35:39 +02004214 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4215 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004216
Daniel Vetter20e4d402012-08-08 23:35:39 +02004217 dev_priv->ips.max_delay = fstart;
4218 dev_priv->ips.min_delay = fmin;
4219 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004220
4221 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4222 fmax, fmin, fstart);
4223
4224 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4225
4226 /*
4227 * Interrupts will be enabled in ironlake_irq_postinstall
4228 */
4229
4230 I915_WRITE(VIDSTART, vstart);
4231 POSTING_READ(VIDSTART);
4232
4233 rgvmodectl |= MEMMODE_SWMODE_EN;
4234 I915_WRITE(MEMMODECTL, rgvmodectl);
4235
Daniel Vetter92703882012-08-09 16:46:01 +02004236 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004237 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004238 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004239
4240 ironlake_set_drps(dev, fstart);
4241
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004242 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4243 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004244 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004245 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004246 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004247
4248 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004249}
4250
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004251static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004252{
4253 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02004254 u16 rgvswctl;
4255
4256 spin_lock_irq(&mchdev_lock);
4257
4258 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004259
4260 /* Ack interrupts, disable EFC interrupt */
4261 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4262 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4263 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4264 I915_WRITE(DEIIR, DE_PCU_EVENT);
4265 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4266
4267 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004268 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004269 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004270 rgvswctl |= MEMCTL_CMD_STS;
4271 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004272 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004273
Daniel Vetter92703882012-08-09 16:46:01 +02004274 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004275}
4276
Daniel Vetteracbe9472012-07-26 11:50:05 +02004277/* There's a funny hw issue where the hw returns all 0 when reading from
4278 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4279 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4280 * all limits and the gpu stuck at whatever frequency it is at atm).
4281 */
Akash Goel74ef1172015-03-06 11:07:19 +05304282static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004283{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004284 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004285
Daniel Vetter20b46e52012-07-26 11:16:14 +02004286 /* Only set the down limit when we've reached the lowest level to avoid
4287 * getting more interrupts, otherwise leave this clear. This prevents a
4288 * race in the hw when coming out of rc6: There's a tiny window where
4289 * the hw runs at the minimal clock before selecting the desired
4290 * frequency, if the down threshold expires in that window we will not
4291 * receive a down interrupt. */
Akash Goel74ef1172015-03-06 11:07:19 +05304292 if (IS_GEN9(dev_priv->dev)) {
4293 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4294 if (val <= dev_priv->rps.min_freq_softlimit)
4295 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4296 } else {
4297 limits = dev_priv->rps.max_freq_softlimit << 24;
4298 if (val <= dev_priv->rps.min_freq_softlimit)
4299 limits |= dev_priv->rps.min_freq_softlimit << 16;
4300 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004301
4302 return limits;
4303}
4304
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004305static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4306{
4307 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304308 u32 threshold_up = 0, threshold_down = 0; /* in % */
4309 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004310
4311 new_power = dev_priv->rps.power;
4312 switch (dev_priv->rps.power) {
4313 case LOW_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004314 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004315 new_power = BETWEEN;
4316 break;
4317
4318 case BETWEEN:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004319 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004320 new_power = LOW_POWER;
Ben Widawskyb39fb292014-03-19 18:31:11 -07004321 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004322 new_power = HIGH_POWER;
4323 break;
4324
4325 case HIGH_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004326 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 +01004327 new_power = BETWEEN;
4328 break;
4329 }
4330 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004331 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004332 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004333 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004334 new_power = HIGH_POWER;
4335 if (new_power == dev_priv->rps.power)
4336 return;
4337
4338 /* Note the units here are not exactly 1us, but 1280ns. */
4339 switch (new_power) {
4340 case LOW_POWER:
4341 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304342 ei_up = 16000;
4343 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004344
4345 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304346 ei_down = 32000;
4347 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004348 break;
4349
4350 case BETWEEN:
4351 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304352 ei_up = 13000;
4353 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004354
4355 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304356 ei_down = 32000;
4357 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004358 break;
4359
4360 case HIGH_POWER:
4361 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304362 ei_up = 10000;
4363 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004364
4365 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304366 ei_down = 32000;
4367 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004368 break;
4369 }
4370
Akash Goel8a586432015-03-06 11:07:18 +05304371 I915_WRITE(GEN6_RP_UP_EI,
4372 GT_INTERVAL_FROM_US(dev_priv, ei_up));
4373 I915_WRITE(GEN6_RP_UP_THRESHOLD,
4374 GT_INTERVAL_FROM_US(dev_priv, (ei_up * threshold_up / 100)));
4375
4376 I915_WRITE(GEN6_RP_DOWN_EI,
4377 GT_INTERVAL_FROM_US(dev_priv, ei_down));
4378 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
4379 GT_INTERVAL_FROM_US(dev_priv, (ei_down * threshold_down / 100)));
4380
4381 I915_WRITE(GEN6_RP_CONTROL,
4382 GEN6_RP_MEDIA_TURBO |
4383 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4384 GEN6_RP_MEDIA_IS_GFX |
4385 GEN6_RP_ENABLE |
4386 GEN6_RP_UP_BUSY_AVG |
4387 GEN6_RP_DOWN_IDLE_AVG);
4388
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004389 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004390 dev_priv->rps.up_threshold = threshold_up;
4391 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004392 dev_priv->rps.last_adj = 0;
4393}
4394
Chris Wilson2876ce72014-03-28 08:03:34 +00004395static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4396{
4397 u32 mask = 0;
4398
4399 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004400 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004401 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004402 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004403
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004404 mask &= dev_priv->pm_rps_events;
4405
Imre Deak59d02a12014-12-19 19:33:26 +02004406 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004407}
4408
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004409/* gen6_set_rps is called to update the frequency request, but should also be
4410 * called when the range (min_delay and max_delay) is modified so that we can
4411 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004412static void gen6_set_rps(struct drm_device *dev, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004413{
4414 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004415
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304416 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
Jani Nikulae87a0052015-10-20 15:22:02 +03004417 if (IS_BXT_REVID(dev, 0, BXT_REVID_A1))
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304418 return;
4419
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004420 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004421 WARN_ON(val > dev_priv->rps.max_freq);
4422 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004423
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004424 /* min/max delay may still have been modified so be sure to
4425 * write the limits value.
4426 */
4427 if (val != dev_priv->rps.cur_freq) {
4428 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004429
Akash Goel57041952015-03-06 11:07:17 +05304430 if (IS_GEN9(dev))
4431 I915_WRITE(GEN6_RPNSWREQ,
4432 GEN9_FREQUENCY(val));
4433 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004434 I915_WRITE(GEN6_RPNSWREQ,
4435 HSW_FREQUENCY(val));
4436 else
4437 I915_WRITE(GEN6_RPNSWREQ,
4438 GEN6_FREQUENCY(val) |
4439 GEN6_OFFSET(0) |
4440 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004441 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004442
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004443 /* Make sure we continue to get interrupts
4444 * until we hit the minimum or maximum frequencies.
4445 */
Akash Goel74ef1172015-03-06 11:07:19 +05304446 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004447 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004448
Ben Widawskyd5570a72012-09-07 19:43:41 -07004449 POSTING_READ(GEN6_RPNSWREQ);
4450
Ben Widawskyb39fb292014-03-19 18:31:11 -07004451 dev_priv->rps.cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02004452 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004453}
4454
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004455static void valleyview_set_rps(struct drm_device *dev, u8 val)
4456{
4457 struct drm_i915_private *dev_priv = dev->dev_private;
4458
4459 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004460 WARN_ON(val > dev_priv->rps.max_freq);
4461 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004462
4463 if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1),
4464 "Odd GPU freq value\n"))
4465 val &= ~1;
4466
Deepak Scd25dd52015-07-10 18:31:40 +05304467 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4468
Chris Wilson8fb55192015-04-07 16:20:28 +01004469 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004470 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004471 if (!IS_CHERRYVIEW(dev_priv))
4472 gen6_set_rps_thresholds(dev_priv, val);
4473 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004474
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004475 dev_priv->rps.cur_freq = val;
4476 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4477}
4478
Deepak Sa7f6e232015-05-09 18:04:44 +05304479/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304480 *
4481 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304482 * 1. Forcewake Media well.
4483 * 2. Request idle freq.
4484 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304485*/
4486static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4487{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004488 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304489
Chris Wilsonaed242f2015-03-18 09:48:21 +00004490 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304491 return;
4492
Deepak Sa7f6e232015-05-09 18:04:44 +05304493 /* Wake up the media well, as that takes a lot less
4494 * power than the Render well. */
4495 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
4496 valleyview_set_rps(dev_priv->dev, val);
4497 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05304498}
4499
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004500void gen6_rps_busy(struct drm_i915_private *dev_priv)
4501{
4502 mutex_lock(&dev_priv->rps.hw_lock);
4503 if (dev_priv->rps.enabled) {
4504 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4505 gen6_rps_reset_ei(dev_priv);
4506 I915_WRITE(GEN6_PMINTRMSK,
4507 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
4508 }
4509 mutex_unlock(&dev_priv->rps.hw_lock);
4510}
4511
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004512void gen6_rps_idle(struct drm_i915_private *dev_priv)
4513{
Damien Lespiau691bb712013-12-12 14:36:36 +00004514 struct drm_device *dev = dev_priv->dev;
4515
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004516 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004517 if (dev_priv->rps.enabled) {
Wayne Boyer666a4532015-12-09 12:29:35 -08004518 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Deepak S76c3552f2014-01-30 23:08:16 +05304519 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004520 else
Chris Wilsonaed242f2015-03-18 09:48:21 +00004521 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004522 dev_priv->rps.last_adj = 0;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004523 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004524 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004525 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004526
Chris Wilson8d3afd72015-05-21 21:01:47 +01004527 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004528 while (!list_empty(&dev_priv->rps.clients))
4529 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004530 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004531}
4532
Chris Wilson1854d5c2015-04-07 16:20:32 +01004533void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01004534 struct intel_rps_client *rps,
4535 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004536{
Chris Wilson8d3afd72015-05-21 21:01:47 +01004537 /* This is intentionally racy! We peek at the state here, then
4538 * validate inside the RPS worker.
4539 */
4540 if (!(dev_priv->mm.busy &&
4541 dev_priv->rps.enabled &&
4542 dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit))
4543 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004544
Chris Wilsone61b9952015-04-27 13:41:24 +01004545 /* Force a RPS boost (and don't count it against the client) if
4546 * the GPU is severely congested.
4547 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004548 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01004549 rps = NULL;
4550
Chris Wilson8d3afd72015-05-21 21:01:47 +01004551 spin_lock(&dev_priv->rps.client_lock);
4552 if (rps == NULL || list_empty(&rps->link)) {
4553 spin_lock_irq(&dev_priv->irq_lock);
4554 if (dev_priv->rps.interrupts_enabled) {
4555 dev_priv->rps.client_boost = true;
4556 queue_work(dev_priv->wq, &dev_priv->rps.work);
4557 }
4558 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004559
Chris Wilson2e1b8732015-04-27 13:41:22 +01004560 if (rps != NULL) {
4561 list_add(&rps->link, &dev_priv->rps.clients);
4562 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01004563 } else
4564 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01004565 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004566 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004567}
4568
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004569void intel_set_rps(struct drm_device *dev, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004570{
Wayne Boyer666a4532015-12-09 12:29:35 -08004571 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004572 valleyview_set_rps(dev, val);
4573 else
4574 gen6_set_rps(dev, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004575}
4576
Zhe Wang20e49362014-11-04 17:07:05 +00004577static void gen9_disable_rps(struct drm_device *dev)
4578{
4579 struct drm_i915_private *dev_priv = dev->dev_private;
4580
4581 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004582 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004583}
4584
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004585static void gen6_disable_rps(struct drm_device *dev)
4586{
4587 struct drm_i915_private *dev_priv = dev->dev_private;
4588
4589 I915_WRITE(GEN6_RC_CONTROL, 0);
4590 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004591}
4592
Deepak S38807742014-05-23 21:00:15 +05304593static void cherryview_disable_rps(struct drm_device *dev)
4594{
4595 struct drm_i915_private *dev_priv = dev->dev_private;
4596
4597 I915_WRITE(GEN6_RC_CONTROL, 0);
4598}
4599
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004600static void valleyview_disable_rps(struct drm_device *dev)
4601{
4602 struct drm_i915_private *dev_priv = dev->dev_private;
4603
Deepak S98a2e5f2014-08-18 10:35:27 -07004604 /* we're doing forcewake before Disabling RC6,
4605 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02004606 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07004607
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004608 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004609
Mika Kuoppala59bad942015-01-16 11:34:40 +02004610 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004611}
4612
Ben Widawskydc39fff2013-10-18 12:32:07 -07004613static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
4614{
Wayne Boyer666a4532015-12-09 12:29:35 -08004615 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Imre Deak91ca6892014-04-14 20:24:25 +03004616 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
4617 mode = GEN6_RC_CTL_RC6_ENABLE;
4618 else
4619 mode = 0;
4620 }
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004621 if (HAS_RC6p(dev))
4622 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02004623 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
4624 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
4625 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004626
4627 else
4628 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02004629 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07004630}
4631
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05304632static bool bxt_check_bios_rc6_setup(const struct drm_device *dev)
4633{
4634 struct drm_i915_private *dev_priv = dev->dev_private;
4635 bool enable_rc6 = true;
4636 unsigned long rc6_ctx_base;
4637
4638 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
4639 DRM_DEBUG_KMS("RC6 Base location not set properly.\n");
4640 enable_rc6 = false;
4641 }
4642
4643 /*
4644 * The exact context size is not known for BXT, so assume a page size
4645 * for this check.
4646 */
4647 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
4648 if (!((rc6_ctx_base >= dev_priv->gtt.stolen_reserved_base) &&
4649 (rc6_ctx_base + PAGE_SIZE <= dev_priv->gtt.stolen_reserved_base +
4650 dev_priv->gtt.stolen_reserved_size))) {
4651 DRM_DEBUG_KMS("RC6 Base address not as expected.\n");
4652 enable_rc6 = false;
4653 }
4654
4655 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
4656 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
4657 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
4658 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
4659 DRM_DEBUG_KMS("Engine Idle wait time not set properly.\n");
4660 enable_rc6 = false;
4661 }
4662
4663 if (!(I915_READ(GEN6_RC_CONTROL) & (GEN6_RC_CTL_RC6_ENABLE |
4664 GEN6_RC_CTL_HW_ENABLE)) &&
4665 ((I915_READ(GEN6_RC_CONTROL) & GEN6_RC_CTL_HW_ENABLE) ||
4666 !(I915_READ(GEN6_RC_STATE) & RC6_STATE))) {
4667 DRM_DEBUG_KMS("HW/SW RC6 is not enabled by BIOS.\n");
4668 enable_rc6 = false;
4669 }
4670
4671 return enable_rc6;
4672}
4673
4674int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004675{
Daniel Vettere7d66d82015-06-15 23:23:54 +02004676 /* No RC6 before Ironlake and code is gone for ilk. */
4677 if (INTEL_INFO(dev)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03004678 return 0;
4679
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05304680 if (!enable_rc6)
4681 return 0;
4682
4683 if (IS_BROXTON(dev) && !bxt_check_bios_rc6_setup(dev)) {
4684 DRM_INFO("RC6 disabled by BIOS\n");
4685 return 0;
4686 }
4687
Daniel Vetter456470e2012-08-08 23:35:40 +02004688 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03004689 if (enable_rc6 >= 0) {
4690 int mask;
4691
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004692 if (HAS_RC6p(dev))
Imre Deake6069ca2014-04-18 16:01:02 +03004693 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
4694 INTEL_RC6pp_ENABLE;
4695 else
4696 mask = INTEL_RC6_ENABLE;
4697
4698 if ((enable_rc6 & mask) != enable_rc6)
Daniel Vetter8dfd1f02014-08-04 11:15:56 +02004699 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
4700 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03004701
4702 return enable_rc6 & mask;
4703 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004704
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004705 if (IS_IVYBRIDGE(dev))
Ben Widawskycca84a12014-01-28 20:25:38 -08004706 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004707
4708 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004709}
4710
Imre Deake6069ca2014-04-18 16:01:02 +03004711int intel_enable_rc6(const struct drm_device *dev)
4712{
4713 return i915.enable_rc6;
4714}
4715
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004716static void gen6_init_rps_frequencies(struct drm_device *dev)
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004717{
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004718 struct drm_i915_private *dev_priv = dev->dev_private;
4719 uint32_t rp_state_cap;
4720 u32 ddcc_status = 0;
4721 int ret;
4722
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004723 /* All of these values are in units of 50MHz */
4724 dev_priv->rps.cur_freq = 0;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004725 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Bob Paauwe35040562015-06-25 14:54:07 -07004726 if (IS_BROXTON(dev)) {
4727 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
4728 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
4729 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4730 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
4731 } else {
4732 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
4733 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
4734 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4735 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
4736 }
4737
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004738 /* hw_max = RP0 until we check for overclocking */
4739 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
4740
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004741 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07004742 if (IS_HASWELL(dev) || IS_BROADWELL(dev) ||
4743 IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004744 ret = sandybridge_pcode_read(dev_priv,
4745 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
4746 &ddcc_status);
4747 if (0 == ret)
4748 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08004749 clamp_t(u8,
4750 ((ddcc_status >> 8) & 0xff),
4751 dev_priv->rps.min_freq,
4752 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004753 }
4754
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07004755 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Akash Goelc5e06882015-06-29 14:50:19 +05304756 /* Store the frequency values in 16.66 MHZ units, which is
4757 the natural hardware unit for SKL */
4758 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
4759 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
4760 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
4761 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
4762 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
4763 }
4764
Chris Wilsonaed242f2015-03-18 09:48:21 +00004765 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4766
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004767 /* Preserve min/max settings in case of re-init */
4768 if (dev_priv->rps.max_freq_softlimit == 0)
4769 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4770
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004771 if (dev_priv->rps.min_freq_softlimit == 0) {
4772 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4773 dev_priv->rps.min_freq_softlimit =
Ville Syrjälä813b5e62015-03-25 19:27:16 +02004774 max_t(int, dev_priv->rps.efficient_freq,
4775 intel_freq_opcode(dev_priv, 450));
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004776 else
4777 dev_priv->rps.min_freq_softlimit =
4778 dev_priv->rps.min_freq;
4779 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004780}
4781
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004782/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Zhe Wang20e49362014-11-04 17:07:05 +00004783static void gen9_enable_rps(struct drm_device *dev)
4784{
4785 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004786
4787 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4788
Damien Lespiauba1c5542015-01-16 18:07:26 +00004789 gen6_init_rps_frequencies(dev);
4790
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304791 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
Jani Nikulae87a0052015-10-20 15:22:02 +03004792 if (IS_BXT_REVID(dev, 0, BXT_REVID_A1)) {
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304793 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4794 return;
4795 }
4796
Akash Goel0beb0592015-03-06 11:07:20 +05304797 /* Program defaults and thresholds for RPS*/
4798 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4799 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004800
Akash Goel0beb0592015-03-06 11:07:20 +05304801 /* 1 second timeout*/
4802 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
4803 GT_INTERVAL_FROM_US(dev_priv, 1000000));
4804
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004805 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004806
Akash Goel0beb0592015-03-06 11:07:20 +05304807 /* Leaning on the below call to gen6_set_rps to program/setup the
4808 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
4809 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
4810 dev_priv->rps.power = HIGH_POWER; /* force a reset */
4811 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004812
4813 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4814}
4815
4816static void gen9_enable_rc6(struct drm_device *dev)
4817{
4818 struct drm_i915_private *dev_priv = dev->dev_private;
Zhe Wang20e49362014-11-04 17:07:05 +00004819 struct intel_engine_cs *ring;
4820 uint32_t rc6_mask = 0;
4821 int unused;
4822
4823 /* 1a: Software RC state - RC0 */
4824 I915_WRITE(GEN6_RC_STATE, 0);
4825
4826 /* 1b: Get forcewake during program sequence. Although the driver
4827 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004828 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004829
4830 /* 2a: Disable RC states. */
4831 I915_WRITE(GEN6_RC_CONTROL, 0);
4832
4833 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05304834
4835 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Mika Kuoppalae7674b82015-12-07 18:29:45 +02004836 if (IS_SKYLAKE(dev))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05304837 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
4838 else
4839 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00004840 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4841 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4842 for_each_ring(ring, dev_priv, unused)
4843 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05304844
4845 if (HAS_GUC_UCODE(dev))
4846 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
4847
Zhe Wang20e49362014-11-04 17:07:05 +00004848 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004849
Zhe Wang38c23522015-01-20 12:23:04 +00004850 /* 2c: Program Coarse Power Gating Policies. */
4851 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
4852 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
4853
Zhe Wang20e49362014-11-04 17:07:05 +00004854 /* 3a: Enable RC6 */
4855 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4856 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02004857 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05304858 /* WaRsUseTimeoutMode */
Jani Nikulae87a0052015-10-20 15:22:02 +03004859 if (IS_SKL_REVID(dev, 0, SKL_REVID_D0) ||
Tim Gorecbdc12a2015-10-26 10:48:58 +00004860 IS_BXT_REVID(dev, 0, BXT_REVID_A1)) {
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05304861 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05304862 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4863 GEN7_RC_CTL_TO_MODE |
4864 rc6_mask);
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05304865 } else {
4866 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05304867 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4868 GEN6_RC_CTL_EI_MODE(1) |
4869 rc6_mask);
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05304870 }
Zhe Wang20e49362014-11-04 17:07:05 +00004871
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304872 /*
4873 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05304874 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304875 */
Mika Kuoppala06e668a2015-12-16 19:18:37 +02004876 if (NEEDS_WaRsDisableCoarsePowerGating(dev))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05304877 I915_WRITE(GEN9_PG_ENABLE, 0);
4878 else
4879 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4880 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004881
Mika Kuoppala59bad942015-01-16 11:34:40 +02004882 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004883
4884}
4885
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004886static void gen8_enable_rps(struct drm_device *dev)
4887{
4888 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004889 struct intel_engine_cs *ring;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004890 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004891 int unused;
4892
4893 /* 1a: Software RC state - RC0 */
4894 I915_WRITE(GEN6_RC_STATE, 0);
4895
4896 /* 1c & 1d: Get forcewake during program sequence. Although the driver
4897 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004898 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004899
4900 /* 2a: Disable RC states. */
4901 I915_WRITE(GEN6_RC_CONTROL, 0);
4902
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004903 /* Initialize rps frequencies */
4904 gen6_init_rps_frequencies(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004905
4906 /* 2b: Program RC6 thresholds.*/
4907 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
4908 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4909 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4910 for_each_ring(ring, dev_priv, unused)
4911 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4912 I915_WRITE(GEN6_RC_SLEEP, 0);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004913 if (IS_BROADWELL(dev))
4914 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
4915 else
4916 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004917
4918 /* 3: Enable RC6 */
4919 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4920 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Ben Widawskyabbf9d22014-01-28 20:25:41 -08004921 intel_print_rc6_info(dev, rc6_mask);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004922 if (IS_BROADWELL(dev))
4923 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4924 GEN7_RC_CTL_TO_MODE |
4925 rc6_mask);
4926 else
4927 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4928 GEN6_RC_CTL_EI_MODE(1) |
4929 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004930
4931 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07004932 I915_WRITE(GEN6_RPNSWREQ,
4933 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
4934 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4935 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02004936 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
4937 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004938
Daniel Vetter7526ed72014-09-29 15:07:19 +02004939 /* Docs recommend 900MHz, and 300 MHz respectively */
4940 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
4941 dev_priv->rps.max_freq_softlimit << 24 |
4942 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004943
Daniel Vetter7526ed72014-09-29 15:07:19 +02004944 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
4945 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
4946 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
4947 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004948
Daniel Vetter7526ed72014-09-29 15:07:19 +02004949 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004950
4951 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02004952 I915_WRITE(GEN6_RP_CONTROL,
4953 GEN6_RP_MEDIA_TURBO |
4954 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4955 GEN6_RP_MEDIA_IS_GFX |
4956 GEN6_RP_ENABLE |
4957 GEN6_RP_UP_BUSY_AVG |
4958 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004959
Daniel Vetter7526ed72014-09-29 15:07:19 +02004960 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004961
Tom O'Rourkec7f31532014-11-19 14:21:54 -08004962 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004963 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004964
Mika Kuoppala59bad942015-01-16 11:34:40 +02004965 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004966}
4967
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004968static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004969{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004970 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004971 struct intel_engine_cs *ring;
Ben Widawskyd060c162014-03-19 18:31:08 -07004972 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004973 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004974 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07004975 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004976
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004977 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004978
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004979 /* Here begins a magic sequence of register writes to enable
4980 * auto-downclocking.
4981 *
4982 * Perhaps there might be some value in exposing these to
4983 * userspace...
4984 */
4985 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004986
4987 /* Clear the DBG now so we don't confuse earlier errors */
4988 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
4989 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
4990 I915_WRITE(GTFIFODBG, gtfifodbg);
4991 }
4992
Mika Kuoppala59bad942015-01-16 11:34:40 +02004993 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004994
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004995 /* Initialize rps frequencies */
4996 gen6_init_rps_frequencies(dev);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004997
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004998 /* disable the counters and set deterministic thresholds */
4999 I915_WRITE(GEN6_RC_CONTROL, 0);
5000
5001 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5002 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5003 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5004 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5005 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5006
Chris Wilsonb4519512012-05-11 14:29:30 +01005007 for_each_ring(ring, dev_priv, i)
5008 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005009
5010 I915_WRITE(GEN6_RC_SLEEP, 0);
5011 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Daniel Vetter29c78f62013-11-16 16:04:26 +01005012 if (IS_IVYBRIDGE(dev))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005013 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5014 else
5015 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005016 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005017 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5018
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005019 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005020 rc6_mode = intel_enable_rc6(dev_priv->dev);
5021 if (rc6_mode & INTEL_RC6_ENABLE)
5022 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5023
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005024 /* We don't use those on Haswell */
5025 if (!IS_HASWELL(dev)) {
5026 if (rc6_mode & INTEL_RC6p_ENABLE)
5027 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005028
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005029 if (rc6_mode & INTEL_RC6pp_ENABLE)
5030 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5031 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005032
Ben Widawskydc39fff2013-10-18 12:32:07 -07005033 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005034
5035 I915_WRITE(GEN6_RC_CONTROL,
5036 rc6_mask |
5037 GEN6_RC_CTL_EI_MODE(1) |
5038 GEN6_RC_CTL_HW_ENABLE);
5039
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005040 /* Power down if completely idle for over 50ms */
5041 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005042 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005043
Ben Widawsky42c05262012-09-26 10:34:00 -07005044 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawskyd060c162014-03-19 18:31:08 -07005045 if (ret)
Ben Widawsky42c05262012-09-26 10:34:00 -07005046 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Ben Widawskyd060c162014-03-19 18:31:08 -07005047
5048 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
5049 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
5050 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskyb39fb292014-03-19 18:31:11 -07005051 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
Ben Widawskyd060c162014-03-19 18:31:08 -07005052 (pcu_mbox & 0xff) * 50);
Ben Widawskyb39fb292014-03-19 18:31:11 -07005053 dev_priv->rps.max_freq = pcu_mbox & 0xff;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005054 }
5055
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005056 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00005057 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005058
Ben Widawsky31643d52012-09-26 10:34:01 -07005059 rc6vids = 0;
5060 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
5061 if (IS_GEN6(dev) && ret) {
5062 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
5063 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
5064 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5065 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5066 rc6vids &= 0xffff00;
5067 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5068 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5069 if (ret)
5070 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5071 }
5072
Mika Kuoppala59bad942015-01-16 11:34:40 +02005073 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005074}
5075
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005076static void __gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005077{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005078 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005079 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005080 unsigned int gpu_freq;
5081 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305082 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005083 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005084 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005085
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005086 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005087
Ben Widawskyeda79642013-10-07 17:15:48 -03005088 policy = cpufreq_cpu_get(0);
5089 if (policy) {
5090 max_ia_freq = policy->cpuinfo.max_freq;
5091 cpufreq_cpu_put(policy);
5092 } else {
5093 /*
5094 * Default to measured freq if none found, PCU will ensure we
5095 * don't go over
5096 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005097 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005098 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005099
5100 /* Convert from kHz to MHz */
5101 max_ia_freq /= 1000;
5102
Ben Widawsky153b4b952013-10-22 22:05:09 -07005103 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005104 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5105 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005106
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07005107 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305108 /* Convert GT frequency to 50 HZ units */
5109 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5110 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5111 } else {
5112 min_gpu_freq = dev_priv->rps.min_freq;
5113 max_gpu_freq = dev_priv->rps.max_freq;
5114 }
5115
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005116 /*
5117 * For each potential GPU frequency, load a ring frequency we'd like
5118 * to use for memory access. We do this by specifying the IA frequency
5119 * the PCU should use as a reference to determine the ring frequency.
5120 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305121 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5122 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005123 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005124
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07005125 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305126 /*
5127 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5128 * No floor required for ring frequency on SKL.
5129 */
5130 ring_freq = gpu_freq;
5131 } else if (INTEL_INFO(dev)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005132 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5133 ring_freq = max(min_ring_freq, gpu_freq);
5134 } else if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005135 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005136 ring_freq = max(min_ring_freq, ring_freq);
5137 /* leave ia_freq as the default, chosen by cpufreq */
5138 } else {
5139 /* On older processors, there is no separate ring
5140 * clock domain, so in order to boost the bandwidth
5141 * of the ring, we need to upclock the CPU (ia_freq).
5142 *
5143 * For GPU frequencies less than 750MHz,
5144 * just use the lowest ring freq.
5145 */
5146 if (gpu_freq < min_freq)
5147 ia_freq = 800;
5148 else
5149 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5150 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5151 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005152
Ben Widawsky42c05262012-09-26 10:34:00 -07005153 sandybridge_pcode_write(dev_priv,
5154 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005155 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5156 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5157 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005158 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005159}
5160
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005161void gen6_update_ring_freq(struct drm_device *dev)
5162{
5163 struct drm_i915_private *dev_priv = dev->dev_private;
5164
Akash Goel97d33082015-06-29 14:50:23 +05305165 if (!HAS_CORE_RING_FREQ(dev))
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005166 return;
5167
5168 mutex_lock(&dev_priv->rps.hw_lock);
5169 __gen6_update_ring_freq(dev);
5170 mutex_unlock(&dev_priv->rps.hw_lock);
5171}
5172
Ville Syrjälä03af2042014-06-28 02:03:53 +03005173static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305174{
Deepak S095acd52015-01-17 11:05:59 +05305175 struct drm_device *dev = dev_priv->dev;
Deepak S2b6b3a02014-05-27 15:59:30 +05305176 u32 val, rp0;
5177
Jani Nikula5b5929c2015-10-07 11:17:46 +03005178 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305179
Jani Nikula5b5929c2015-10-07 11:17:46 +03005180 switch (INTEL_INFO(dev)->eu_total) {
5181 case 8:
5182 /* (2 * 4) config */
5183 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5184 break;
5185 case 12:
5186 /* (2 * 6) config */
5187 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5188 break;
5189 case 16:
5190 /* (2 * 8) config */
5191 default:
5192 /* Setting (2 * 8) Min RP0 for any other combination */
5193 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5194 break;
Deepak S095acd52015-01-17 11:05:59 +05305195 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005196
5197 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5198
Deepak S2b6b3a02014-05-27 15:59:30 +05305199 return rp0;
5200}
5201
5202static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5203{
5204 u32 val, rpe;
5205
5206 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5207 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5208
5209 return rpe;
5210}
5211
Deepak S7707df42014-07-12 18:46:14 +05305212static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5213{
5214 u32 val, rp1;
5215
Jani Nikula5b5929c2015-10-07 11:17:46 +03005216 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5217 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5218
Deepak S7707df42014-07-12 18:46:14 +05305219 return rp1;
5220}
5221
Deepak Sf8f2b002014-07-10 13:16:21 +05305222static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5223{
5224 u32 val, rp1;
5225
5226 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5227
5228 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5229
5230 return rp1;
5231}
5232
Ville Syrjälä03af2042014-06-28 02:03:53 +03005233static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005234{
5235 u32 val, rp0;
5236
Jani Nikula64936252013-05-22 15:36:20 +03005237 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005238
5239 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5240 /* Clamp to max */
5241 rp0 = min_t(u32, rp0, 0xea);
5242
5243 return rp0;
5244}
5245
5246static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5247{
5248 u32 val, rpe;
5249
Jani Nikula64936252013-05-22 15:36:20 +03005250 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005251 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005252 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005253 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5254
5255 return rpe;
5256}
5257
Ville Syrjälä03af2042014-06-28 02:03:53 +03005258static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005259{
Imre Deak36146032014-12-04 18:39:35 +02005260 u32 val;
5261
5262 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
5263 /*
5264 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
5265 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
5266 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
5267 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
5268 * to make sure it matches what Punit accepts.
5269 */
5270 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005271}
5272
Imre Deakae484342014-03-31 15:10:44 +03005273/* Check that the pctx buffer wasn't move under us. */
5274static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5275{
5276 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5277
5278 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5279 dev_priv->vlv_pctx->stolen->start);
5280}
5281
Deepak S38807742014-05-23 21:00:15 +05305282
5283/* Check that the pcbr address is not empty. */
5284static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5285{
5286 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5287
5288 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5289}
5290
5291static void cherryview_setup_pctx(struct drm_device *dev)
5292{
5293 struct drm_i915_private *dev_priv = dev->dev_private;
5294 unsigned long pctx_paddr, paddr;
5295 struct i915_gtt *gtt = &dev_priv->gtt;
5296 u32 pcbr;
5297 int pctx_size = 32*1024;
5298
Deepak S38807742014-05-23 21:00:15 +05305299 pcbr = I915_READ(VLV_PCBR);
5300 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005301 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305302 paddr = (dev_priv->mm.stolen_base +
5303 (gtt->stolen_size - pctx_size));
5304
5305 pctx_paddr = (paddr & (~4095));
5306 I915_WRITE(VLV_PCBR, pctx_paddr);
5307 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005308
5309 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305310}
5311
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005312static void valleyview_setup_pctx(struct drm_device *dev)
5313{
5314 struct drm_i915_private *dev_priv = dev->dev_private;
5315 struct drm_i915_gem_object *pctx;
5316 unsigned long pctx_paddr;
5317 u32 pcbr;
5318 int pctx_size = 24*1024;
5319
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005320 mutex_lock(&dev->struct_mutex);
Imre Deak17b0c1f2014-02-11 21:39:06 +02005321
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005322 pcbr = I915_READ(VLV_PCBR);
5323 if (pcbr) {
5324 /* BIOS set it up already, grab the pre-alloc'd space */
5325 int pcbr_offset;
5326
5327 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
5328 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
5329 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005330 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005331 pctx_size);
5332 goto out;
5333 }
5334
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005335 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5336
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005337 /*
5338 * From the Gunit register HAS:
5339 * The Gfx driver is expected to program this register and ensure
5340 * proper allocation within Gfx stolen memory. For example, this
5341 * register should be programmed such than the PCBR range does not
5342 * overlap with other ranges, such as the frame buffer, protected
5343 * memory, or any other relevant ranges.
5344 */
5345 pctx = i915_gem_object_create_stolen(dev, pctx_size);
5346 if (!pctx) {
5347 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005348 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005349 }
5350
5351 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5352 I915_WRITE(VLV_PCBR, pctx_paddr);
5353
5354out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005355 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005356 dev_priv->vlv_pctx = pctx;
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005357 mutex_unlock(&dev->struct_mutex);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005358}
5359
Imre Deakae484342014-03-31 15:10:44 +03005360static void valleyview_cleanup_pctx(struct drm_device *dev)
5361{
5362 struct drm_i915_private *dev_priv = dev->dev_private;
5363
5364 if (WARN_ON(!dev_priv->vlv_pctx))
5365 return;
5366
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005367 drm_gem_object_unreference_unlocked(&dev_priv->vlv_pctx->base);
Imre Deakae484342014-03-31 15:10:44 +03005368 dev_priv->vlv_pctx = NULL;
5369}
5370
Imre Deak4e805192014-04-14 20:24:41 +03005371static void valleyview_init_gt_powersave(struct drm_device *dev)
5372{
5373 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005374 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005375
5376 valleyview_setup_pctx(dev);
5377
5378 mutex_lock(&dev_priv->rps.hw_lock);
5379
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005380 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5381 switch ((val >> 6) & 3) {
5382 case 0:
5383 case 1:
5384 dev_priv->mem_freq = 800;
5385 break;
5386 case 2:
5387 dev_priv->mem_freq = 1066;
5388 break;
5389 case 3:
5390 dev_priv->mem_freq = 1333;
5391 break;
5392 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005393 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005394
Imre Deak4e805192014-04-14 20:24:41 +03005395 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5396 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5397 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005398 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005399 dev_priv->rps.max_freq);
5400
5401 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5402 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005403 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005404 dev_priv->rps.efficient_freq);
5405
Deepak Sf8f2b002014-07-10 13:16:21 +05305406 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5407 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005408 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305409 dev_priv->rps.rp1_freq);
5410
Imre Deak4e805192014-04-14 20:24:41 +03005411 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5412 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005413 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005414 dev_priv->rps.min_freq);
5415
Chris Wilsonaed242f2015-03-18 09:48:21 +00005416 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5417
Imre Deak4e805192014-04-14 20:24:41 +03005418 /* Preserve min/max settings in case of re-init */
5419 if (dev_priv->rps.max_freq_softlimit == 0)
5420 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5421
5422 if (dev_priv->rps.min_freq_softlimit == 0)
5423 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5424
5425 mutex_unlock(&dev_priv->rps.hw_lock);
5426}
5427
Deepak S38807742014-05-23 21:00:15 +05305428static void cherryview_init_gt_powersave(struct drm_device *dev)
5429{
Deepak S2b6b3a02014-05-27 15:59:30 +05305430 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005431 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305432
Deepak S38807742014-05-23 21:00:15 +05305433 cherryview_setup_pctx(dev);
Deepak S2b6b3a02014-05-27 15:59:30 +05305434
5435 mutex_lock(&dev_priv->rps.hw_lock);
5436
Ville Syrjäläa5805162015-05-26 20:42:30 +03005437 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005438 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005439 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005440
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005441 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005442 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005443 dev_priv->mem_freq = 2000;
5444 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03005445 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005446 dev_priv->mem_freq = 1600;
5447 break;
5448 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005449 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005450
Deepak S2b6b3a02014-05-27 15:59:30 +05305451 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5452 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5453 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005454 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305455 dev_priv->rps.max_freq);
5456
5457 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5458 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005459 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305460 dev_priv->rps.efficient_freq);
5461
Deepak S7707df42014-07-12 18:46:14 +05305462 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5463 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005464 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305465 dev_priv->rps.rp1_freq);
5466
Deepak S5b7c91b2015-05-09 18:15:46 +05305467 /* PUnit validated range is only [RPe, RP0] */
5468 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305469 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005470 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305471 dev_priv->rps.min_freq);
5472
Ville Syrjälä1c147622014-08-18 14:42:43 +03005473 WARN_ONCE((dev_priv->rps.max_freq |
5474 dev_priv->rps.efficient_freq |
5475 dev_priv->rps.rp1_freq |
5476 dev_priv->rps.min_freq) & 1,
5477 "Odd GPU freq values\n");
5478
Chris Wilsonaed242f2015-03-18 09:48:21 +00005479 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5480
Deepak S2b6b3a02014-05-27 15:59:30 +05305481 /* Preserve min/max settings in case of re-init */
5482 if (dev_priv->rps.max_freq_softlimit == 0)
5483 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5484
5485 if (dev_priv->rps.min_freq_softlimit == 0)
5486 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5487
5488 mutex_unlock(&dev_priv->rps.hw_lock);
Deepak S38807742014-05-23 21:00:15 +05305489}
5490
Imre Deak4e805192014-04-14 20:24:41 +03005491static void valleyview_cleanup_gt_powersave(struct drm_device *dev)
5492{
5493 valleyview_cleanup_pctx(dev);
5494}
5495
Deepak S38807742014-05-23 21:00:15 +05305496static void cherryview_enable_rps(struct drm_device *dev)
5497{
5498 struct drm_i915_private *dev_priv = dev->dev_private;
5499 struct intel_engine_cs *ring;
Deepak S2b6b3a02014-05-27 15:59:30 +05305500 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305501 int i;
5502
5503 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5504
5505 gtfifodbg = I915_READ(GTFIFODBG);
5506 if (gtfifodbg) {
5507 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5508 gtfifodbg);
5509 I915_WRITE(GTFIFODBG, gtfifodbg);
5510 }
5511
5512 cherryview_check_pctx(dev_priv);
5513
5514 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5515 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005516 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305517
Ville Syrjälä160614a2015-01-19 13:50:47 +02005518 /* Disable RC states. */
5519 I915_WRITE(GEN6_RC_CONTROL, 0);
5520
Deepak S38807742014-05-23 21:00:15 +05305521 /* 2a: Program RC6 thresholds.*/
5522 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5523 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5524 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5525
5526 for_each_ring(ring, dev_priv, i)
5527 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5528 I915_WRITE(GEN6_RC_SLEEP, 0);
5529
Deepak Sf4f71c72015-03-28 15:23:35 +05305530 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
5531 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05305532
5533 /* allows RC6 residency counter to work */
5534 I915_WRITE(VLV_COUNTER_CONTROL,
5535 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5536 VLV_MEDIA_RC6_COUNT_EN |
5537 VLV_RENDER_RC6_COUNT_EN));
5538
5539 /* For now we assume BIOS is allocating and populating the PCBR */
5540 pcbr = I915_READ(VLV_PCBR);
5541
Deepak S38807742014-05-23 21:00:15 +05305542 /* 3: Enable RC6 */
5543 if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) &&
5544 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005545 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305546
5547 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5548
Deepak S2b6b3a02014-05-27 15:59:30 +05305549 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005550 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305551 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5552 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5553 I915_WRITE(GEN6_RP_UP_EI, 66000);
5554 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5555
5556 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5557
5558 /* 5: Enable RPS */
5559 I915_WRITE(GEN6_RP_CONTROL,
5560 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005561 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305562 GEN6_RP_ENABLE |
5563 GEN6_RP_UP_BUSY_AVG |
5564 GEN6_RP_DOWN_IDLE_AVG);
5565
Deepak S3ef62342015-04-29 08:36:24 +05305566 /* Setting Fixed Bias */
5567 val = VLV_OVERRIDE_EN |
5568 VLV_SOC_TDP_EN |
5569 CHV_BIAS_CPU_50_SOC_50;
5570 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5571
Deepak S2b6b3a02014-05-27 15:59:30 +05305572 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5573
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005574 /* RPS code assumes GPLL is used */
5575 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5576
Jani Nikula742f4912015-09-03 11:16:09 +03005577 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05305578 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5579
5580 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
5581 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005582 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305583 dev_priv->rps.cur_freq);
5584
5585 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005586 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305587 dev_priv->rps.efficient_freq);
5588
5589 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
5590
Mika Kuoppala59bad942015-01-16 11:34:40 +02005591 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305592}
5593
Jesse Barnes0a073b82013-04-17 15:54:58 -07005594static void valleyview_enable_rps(struct drm_device *dev)
5595{
5596 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005597 struct intel_engine_cs *ring;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07005598 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005599 int i;
5600
5601 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5602
Imre Deakae484342014-03-31 15:10:44 +03005603 valleyview_check_pctx(dev_priv);
5604
Jesse Barnes0a073b82013-04-17 15:54:58 -07005605 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07005606 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5607 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005608 I915_WRITE(GTFIFODBG, gtfifodbg);
5609 }
5610
Deepak Sc8d9a592013-11-23 14:55:42 +05305611 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005612 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005613
Ville Syrjälä160614a2015-01-19 13:50:47 +02005614 /* Disable RC states. */
5615 I915_WRITE(GEN6_RC_CONTROL, 0);
5616
Ville Syrjäläcad725f2015-01-19 13:50:48 +02005617 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005618 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5619 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5620 I915_WRITE(GEN6_RP_UP_EI, 66000);
5621 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5622
5623 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5624
5625 I915_WRITE(GEN6_RP_CONTROL,
5626 GEN6_RP_MEDIA_TURBO |
5627 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5628 GEN6_RP_MEDIA_IS_GFX |
5629 GEN6_RP_ENABLE |
5630 GEN6_RP_UP_BUSY_AVG |
5631 GEN6_RP_DOWN_IDLE_CONT);
5632
5633 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
5634 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5635 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5636
5637 for_each_ring(ring, dev_priv, i)
5638 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5639
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08005640 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005641
5642 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07005643 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04005644 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
5645 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07005646 VLV_MEDIA_RC6_COUNT_EN |
5647 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04005648
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005649 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08005650 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07005651
5652 intel_print_rc6_info(dev, rc6_mode);
5653
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005654 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005655
Deepak S3ef62342015-04-29 08:36:24 +05305656 /* Setting Fixed Bias */
5657 val = VLV_OVERRIDE_EN |
5658 VLV_SOC_TDP_EN |
5659 VLV_BIAS_CPU_125_SOC_875;
5660 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5661
Jani Nikula64936252013-05-22 15:36:20 +03005662 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005663
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005664 /* RPS code assumes GPLL is used */
5665 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5666
Jani Nikula742f4912015-09-03 11:16:09 +03005667 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07005668 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5669
Ben Widawskyb39fb292014-03-19 18:31:11 -07005670 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03005671 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005672 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005673 dev_priv->rps.cur_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005674
Ville Syrjälä73008b92013-06-25 19:21:01 +03005675 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005676 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005677 dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005678
Ben Widawskyb39fb292014-03-19 18:31:11 -07005679 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005680
Mika Kuoppala59bad942015-01-16 11:34:40 +02005681 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005682}
5683
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005684static unsigned long intel_pxfreq(u32 vidfreq)
5685{
5686 unsigned long freq;
5687 int div = (vidfreq & 0x3f0000) >> 16;
5688 int post = (vidfreq & 0x3000) >> 12;
5689 int pre = (vidfreq & 0x7);
5690
5691 if (!pre)
5692 return 0;
5693
5694 freq = ((div * 133333) / ((1<<post) * pre));
5695
5696 return freq;
5697}
5698
Daniel Vettereb48eb02012-04-26 23:28:12 +02005699static const struct cparams {
5700 u16 i;
5701 u16 t;
5702 u16 m;
5703 u16 c;
5704} cparams[] = {
5705 { 1, 1333, 301, 28664 },
5706 { 1, 1066, 294, 24460 },
5707 { 1, 800, 294, 25192 },
5708 { 0, 1333, 276, 27605 },
5709 { 0, 1066, 276, 27605 },
5710 { 0, 800, 231, 23784 },
5711};
5712
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005713static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005714{
5715 u64 total_count, diff, ret;
5716 u32 count1, count2, count3, m = 0, c = 0;
5717 unsigned long now = jiffies_to_msecs(jiffies), diff1;
5718 int i;
5719
Daniel Vetter02d71952012-08-09 16:44:54 +02005720 assert_spin_locked(&mchdev_lock);
5721
Daniel Vetter20e4d402012-08-08 23:35:39 +02005722 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005723
5724 /* Prevent division-by-zero if we are asking too fast.
5725 * Also, we don't get interesting results if we are polling
5726 * faster than once in 10ms, so just return the saved value
5727 * in such cases.
5728 */
5729 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02005730 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005731
5732 count1 = I915_READ(DMIEC);
5733 count2 = I915_READ(DDREC);
5734 count3 = I915_READ(CSIEC);
5735
5736 total_count = count1 + count2 + count3;
5737
5738 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02005739 if (total_count < dev_priv->ips.last_count1) {
5740 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005741 diff += total_count;
5742 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005743 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005744 }
5745
5746 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005747 if (cparams[i].i == dev_priv->ips.c_m &&
5748 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02005749 m = cparams[i].m;
5750 c = cparams[i].c;
5751 break;
5752 }
5753 }
5754
5755 diff = div_u64(diff, diff1);
5756 ret = ((m * diff) + c);
5757 ret = div_u64(ret, 10);
5758
Daniel Vetter20e4d402012-08-08 23:35:39 +02005759 dev_priv->ips.last_count1 = total_count;
5760 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005761
Daniel Vetter20e4d402012-08-08 23:35:39 +02005762 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005763
5764 return ret;
5765}
5766
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005767unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
5768{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005769 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005770 unsigned long val;
5771
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005772 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005773 return 0;
5774
5775 spin_lock_irq(&mchdev_lock);
5776
5777 val = __i915_chipset_val(dev_priv);
5778
5779 spin_unlock_irq(&mchdev_lock);
5780
5781 return val;
5782}
5783
Daniel Vettereb48eb02012-04-26 23:28:12 +02005784unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
5785{
5786 unsigned long m, x, b;
5787 u32 tsfs;
5788
5789 tsfs = I915_READ(TSFS);
5790
5791 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
5792 x = I915_READ8(TR1);
5793
5794 b = tsfs & TSFS_INTR_MASK;
5795
5796 return ((m * x) / 127) - b;
5797}
5798
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005799static int _pxvid_to_vd(u8 pxvid)
5800{
5801 if (pxvid == 0)
5802 return 0;
5803
5804 if (pxvid >= 8 && pxvid < 31)
5805 pxvid = 31;
5806
5807 return (pxvid + 2) * 125;
5808}
5809
5810static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005811{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005812 struct drm_device *dev = dev_priv->dev;
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005813 const int vd = _pxvid_to_vd(pxvid);
5814 const int vm = vd - 1125;
5815
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005816 if (INTEL_INFO(dev)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005817 return vm > 0 ? vm : 0;
5818
5819 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005820}
5821
Daniel Vetter02d71952012-08-09 16:44:54 +02005822static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005823{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005824 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005825 u32 count;
5826
Daniel Vetter02d71952012-08-09 16:44:54 +02005827 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005828
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005829 now = ktime_get_raw_ns();
5830 diffms = now - dev_priv->ips.last_time2;
5831 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005832
5833 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02005834 if (!diffms)
5835 return;
5836
5837 count = I915_READ(GFXEC);
5838
Daniel Vetter20e4d402012-08-08 23:35:39 +02005839 if (count < dev_priv->ips.last_count2) {
5840 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005841 diff += count;
5842 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005843 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005844 }
5845
Daniel Vetter20e4d402012-08-08 23:35:39 +02005846 dev_priv->ips.last_count2 = count;
5847 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005848
5849 /* More magic constants... */
5850 diff = diff * 1181;
5851 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005852 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005853}
5854
Daniel Vetter02d71952012-08-09 16:44:54 +02005855void i915_update_gfx_val(struct drm_i915_private *dev_priv)
5856{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005857 struct drm_device *dev = dev_priv->dev;
5858
5859 if (INTEL_INFO(dev)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02005860 return;
5861
Daniel Vetter92703882012-08-09 16:46:01 +02005862 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005863
5864 __i915_update_gfx_val(dev_priv);
5865
Daniel Vetter92703882012-08-09 16:46:01 +02005866 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005867}
5868
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005869static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005870{
5871 unsigned long t, corr, state1, corr2, state2;
5872 u32 pxvid, ext_v;
5873
Daniel Vetter02d71952012-08-09 16:44:54 +02005874 assert_spin_locked(&mchdev_lock);
5875
Ville Syrjälä616847e2015-09-18 20:03:19 +03005876 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02005877 pxvid = (pxvid >> 24) & 0x7f;
5878 ext_v = pvid_to_extvid(dev_priv, pxvid);
5879
5880 state1 = ext_v;
5881
5882 t = i915_mch_val(dev_priv);
5883
5884 /* Revel in the empirically derived constants */
5885
5886 /* Correction factor in 1/100000 units */
5887 if (t > 80)
5888 corr = ((t * 2349) + 135940);
5889 else if (t >= 50)
5890 corr = ((t * 964) + 29317);
5891 else /* < 50 */
5892 corr = ((t * 301) + 1004);
5893
5894 corr = corr * ((150142 * state1) / 10000 - 78642);
5895 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02005896 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005897
5898 state2 = (corr2 * state1) / 10000;
5899 state2 /= 100; /* convert to mW */
5900
Daniel Vetter02d71952012-08-09 16:44:54 +02005901 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005902
Daniel Vetter20e4d402012-08-08 23:35:39 +02005903 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005904}
5905
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005906unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
5907{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005908 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005909 unsigned long val;
5910
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005911 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005912 return 0;
5913
5914 spin_lock_irq(&mchdev_lock);
5915
5916 val = __i915_gfx_val(dev_priv);
5917
5918 spin_unlock_irq(&mchdev_lock);
5919
5920 return val;
5921}
5922
Daniel Vettereb48eb02012-04-26 23:28:12 +02005923/**
5924 * i915_read_mch_val - return value for IPS use
5925 *
5926 * Calculate and return a value for the IPS driver to use when deciding whether
5927 * we have thermal and power headroom to increase CPU or GPU power budget.
5928 */
5929unsigned long i915_read_mch_val(void)
5930{
5931 struct drm_i915_private *dev_priv;
5932 unsigned long chipset_val, graphics_val, ret = 0;
5933
Daniel Vetter92703882012-08-09 16:46:01 +02005934 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005935 if (!i915_mch_dev)
5936 goto out_unlock;
5937 dev_priv = i915_mch_dev;
5938
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005939 chipset_val = __i915_chipset_val(dev_priv);
5940 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005941
5942 ret = chipset_val + graphics_val;
5943
5944out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005945 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005946
5947 return ret;
5948}
5949EXPORT_SYMBOL_GPL(i915_read_mch_val);
5950
5951/**
5952 * i915_gpu_raise - raise GPU frequency limit
5953 *
5954 * Raise the limit; IPS indicates we have thermal headroom.
5955 */
5956bool i915_gpu_raise(void)
5957{
5958 struct drm_i915_private *dev_priv;
5959 bool ret = true;
5960
Daniel Vetter92703882012-08-09 16:46:01 +02005961 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005962 if (!i915_mch_dev) {
5963 ret = false;
5964 goto out_unlock;
5965 }
5966 dev_priv = i915_mch_dev;
5967
Daniel Vetter20e4d402012-08-08 23:35:39 +02005968 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
5969 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005970
5971out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005972 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005973
5974 return ret;
5975}
5976EXPORT_SYMBOL_GPL(i915_gpu_raise);
5977
5978/**
5979 * i915_gpu_lower - lower GPU frequency limit
5980 *
5981 * IPS indicates we're close to a thermal limit, so throttle back the GPU
5982 * frequency maximum.
5983 */
5984bool i915_gpu_lower(void)
5985{
5986 struct drm_i915_private *dev_priv;
5987 bool ret = true;
5988
Daniel Vetter92703882012-08-09 16:46:01 +02005989 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005990 if (!i915_mch_dev) {
5991 ret = false;
5992 goto out_unlock;
5993 }
5994 dev_priv = i915_mch_dev;
5995
Daniel Vetter20e4d402012-08-08 23:35:39 +02005996 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
5997 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005998
5999out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006000 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006001
6002 return ret;
6003}
6004EXPORT_SYMBOL_GPL(i915_gpu_lower);
6005
6006/**
6007 * i915_gpu_busy - indicate GPU business to IPS
6008 *
6009 * Tell the IPS driver whether or not the GPU is busy.
6010 */
6011bool i915_gpu_busy(void)
6012{
6013 struct drm_i915_private *dev_priv;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01006014 struct intel_engine_cs *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006015 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01006016 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006017
Daniel Vetter92703882012-08-09 16:46:01 +02006018 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006019 if (!i915_mch_dev)
6020 goto out_unlock;
6021 dev_priv = i915_mch_dev;
6022
Chris Wilsonf047e392012-07-21 12:31:41 +01006023 for_each_ring(ring, dev_priv, i)
6024 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006025
6026out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006027 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006028
6029 return ret;
6030}
6031EXPORT_SYMBOL_GPL(i915_gpu_busy);
6032
6033/**
6034 * i915_gpu_turbo_disable - disable graphics turbo
6035 *
6036 * Disable graphics turbo by resetting the max frequency and setting the
6037 * current frequency to the default.
6038 */
6039bool i915_gpu_turbo_disable(void)
6040{
6041 struct drm_i915_private *dev_priv;
6042 bool ret = true;
6043
Daniel Vetter92703882012-08-09 16:46:01 +02006044 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006045 if (!i915_mch_dev) {
6046 ret = false;
6047 goto out_unlock;
6048 }
6049 dev_priv = i915_mch_dev;
6050
Daniel Vetter20e4d402012-08-08 23:35:39 +02006051 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006052
Daniel Vetter20e4d402012-08-08 23:35:39 +02006053 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006054 ret = false;
6055
6056out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006057 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006058
6059 return ret;
6060}
6061EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6062
6063/**
6064 * Tells the intel_ips driver that the i915 driver is now loaded, if
6065 * IPS got loaded first.
6066 *
6067 * This awkward dance is so that neither module has to depend on the
6068 * other in order for IPS to do the appropriate communication of
6069 * GPU turbo limits to i915.
6070 */
6071static void
6072ips_ping_for_i915_load(void)
6073{
6074 void (*link)(void);
6075
6076 link = symbol_get(ips_link_to_i915_driver);
6077 if (link) {
6078 link();
6079 symbol_put(ips_link_to_i915_driver);
6080 }
6081}
6082
6083void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6084{
Daniel Vetter02d71952012-08-09 16:44:54 +02006085 /* We only register the i915 ips part with intel-ips once everything is
6086 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006087 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006088 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006089 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006090
6091 ips_ping_for_i915_load();
6092}
6093
6094void intel_gpu_ips_teardown(void)
6095{
Daniel Vetter92703882012-08-09 16:46:01 +02006096 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006097 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006098 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006099}
Deepak S76c3552f2014-01-30 23:08:16 +05306100
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006101static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006102{
6103 struct drm_i915_private *dev_priv = dev->dev_private;
6104 u32 lcfuse;
6105 u8 pxw[16];
6106 int i;
6107
6108 /* Disable to program */
6109 I915_WRITE(ECR, 0);
6110 POSTING_READ(ECR);
6111
6112 /* Program energy weights for various events */
6113 I915_WRITE(SDEW, 0x15040d00);
6114 I915_WRITE(CSIEW0, 0x007f0000);
6115 I915_WRITE(CSIEW1, 0x1e220004);
6116 I915_WRITE(CSIEW2, 0x04000004);
6117
6118 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006119 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006120 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006121 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006122
6123 /* Program P-state weights to account for frequency power adjustment */
6124 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006125 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006126 unsigned long freq = intel_pxfreq(pxvidfreq);
6127 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6128 PXVFREQ_PX_SHIFT;
6129 unsigned long val;
6130
6131 val = vid * vid;
6132 val *= (freq / 1000);
6133 val *= 255;
6134 val /= (127*127*900);
6135 if (val > 0xff)
6136 DRM_ERROR("bad pxval: %ld\n", val);
6137 pxw[i] = val;
6138 }
6139 /* Render standby states get 0 weight */
6140 pxw[14] = 0;
6141 pxw[15] = 0;
6142
6143 for (i = 0; i < 4; i++) {
6144 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6145 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006146 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006147 }
6148
6149 /* Adjust magic regs to magic values (more experimental results) */
6150 I915_WRITE(OGW0, 0);
6151 I915_WRITE(OGW1, 0);
6152 I915_WRITE(EG0, 0x00007f00);
6153 I915_WRITE(EG1, 0x0000000e);
6154 I915_WRITE(EG2, 0x000e0000);
6155 I915_WRITE(EG3, 0x68000300);
6156 I915_WRITE(EG4, 0x42000000);
6157 I915_WRITE(EG5, 0x00140031);
6158 I915_WRITE(EG6, 0);
6159 I915_WRITE(EG7, 0);
6160
6161 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006162 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006163
6164 /* Enable PMON + select events */
6165 I915_WRITE(ECR, 0x80000019);
6166
6167 lcfuse = I915_READ(LCFUSE02);
6168
Daniel Vetter20e4d402012-08-08 23:35:39 +02006169 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006170}
6171
Imre Deakae484342014-03-31 15:10:44 +03006172void intel_init_gt_powersave(struct drm_device *dev)
6173{
Imre Deakb268c692015-12-15 20:10:31 +02006174 struct drm_i915_private *dev_priv = dev->dev_private;
6175
Imre Deakb268c692015-12-15 20:10:31 +02006176 /*
6177 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
6178 * requirement.
6179 */
6180 if (!i915.enable_rc6) {
6181 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
6182 intel_runtime_pm_get(dev_priv);
6183 }
Imre Deake6069ca2014-04-18 16:01:02 +03006184
Deepak S38807742014-05-23 21:00:15 +05306185 if (IS_CHERRYVIEW(dev))
6186 cherryview_init_gt_powersave(dev);
6187 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006188 valleyview_init_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006189}
6190
6191void intel_cleanup_gt_powersave(struct drm_device *dev)
6192{
Imre Deakb268c692015-12-15 20:10:31 +02006193 struct drm_i915_private *dev_priv = dev->dev_private;
6194
Deepak S38807742014-05-23 21:00:15 +05306195 if (IS_CHERRYVIEW(dev))
6196 return;
6197 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006198 valleyview_cleanup_gt_powersave(dev);
Imre Deakb268c692015-12-15 20:10:31 +02006199
6200 if (!i915.enable_rc6)
6201 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006202}
6203
Imre Deakdbea3ce2014-12-15 18:59:28 +02006204static void gen6_suspend_rps(struct drm_device *dev)
6205{
6206 struct drm_i915_private *dev_priv = dev->dev_private;
6207
6208 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
6209
Akash Goel4c2a8892015-03-06 11:07:24 +05306210 gen6_disable_rps_interrupts(dev);
Imre Deakdbea3ce2014-12-15 18:59:28 +02006211}
6212
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006213/**
6214 * intel_suspend_gt_powersave - suspend PM work and helper threads
6215 * @dev: drm device
6216 *
6217 * We don't want to disable RC6 or other features here, we just want
6218 * to make sure any work we've queued has finished and won't bother
6219 * us while we're suspended.
6220 */
6221void intel_suspend_gt_powersave(struct drm_device *dev)
6222{
6223 struct drm_i915_private *dev_priv = dev->dev_private;
6224
Imre Deakd4d70aa2014-11-19 15:30:04 +02006225 if (INTEL_INFO(dev)->gen < 6)
6226 return;
6227
Imre Deakdbea3ce2014-12-15 18:59:28 +02006228 gen6_suspend_rps(dev);
Deepak Sb47adc12014-06-20 20:03:02 +05306229
6230 /* Force GPU to min freq during suspend */
6231 gen6_rps_idle(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006232}
6233
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006234void intel_disable_gt_powersave(struct drm_device *dev)
6235{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006236 struct drm_i915_private *dev_priv = dev->dev_private;
6237
Daniel Vetter930ebb42012-06-29 23:32:16 +02006238 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006239 ironlake_disable_drps(dev);
Deepak S38807742014-05-23 21:00:15 +05306240 } else if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter10d8d362014-06-12 17:48:52 +02006241 intel_suspend_gt_powersave(dev);
Imre Deake4948372014-05-12 18:35:04 +03006242
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006243 mutex_lock(&dev_priv->rps.hw_lock);
Zhe Wang20e49362014-11-04 17:07:05 +00006244 if (INTEL_INFO(dev)->gen >= 9)
6245 gen9_disable_rps(dev);
6246 else if (IS_CHERRYVIEW(dev))
Deepak S38807742014-05-23 21:00:15 +05306247 cherryview_disable_rps(dev);
6248 else if (IS_VALLEYVIEW(dev))
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006249 valleyview_disable_rps(dev);
6250 else
6251 gen6_disable_rps(dev);
Imre Deake5347702014-11-19 15:30:02 +02006252
Chris Wilsonc0951f02013-10-10 21:58:50 +01006253 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006254 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02006255 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006256}
6257
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006258static void intel_gen6_powersave_work(struct work_struct *work)
6259{
6260 struct drm_i915_private *dev_priv =
6261 container_of(work, struct drm_i915_private,
6262 rps.delayed_resume_work.work);
6263 struct drm_device *dev = dev_priv->dev;
6264
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006265 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006266
Akash Goel4c2a8892015-03-06 11:07:24 +05306267 gen6_reset_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006268
Deepak S38807742014-05-23 21:00:15 +05306269 if (IS_CHERRYVIEW(dev)) {
6270 cherryview_enable_rps(dev);
6271 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -07006272 valleyview_enable_rps(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006273 } else if (INTEL_INFO(dev)->gen >= 9) {
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006274 gen9_enable_rc6(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006275 gen9_enable_rps(dev);
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07006276 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
Akash Goelcc017fb42015-06-29 14:50:21 +05306277 __gen6_update_ring_freq(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006278 } else if (IS_BROADWELL(dev)) {
6279 gen8_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006280 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006281 } else {
6282 gen6_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006283 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006284 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006285
6286 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6287 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6288
6289 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6290 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6291
Chris Wilsonc0951f02013-10-10 21:58:50 +01006292 dev_priv->rps.enabled = true;
Imre Deak3cc134e2014-11-19 15:30:03 +02006293
Akash Goel4c2a8892015-03-06 11:07:24 +05306294 gen6_enable_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006295
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006296 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deakc6df39b2014-04-14 20:24:29 +03006297
6298 intel_runtime_pm_put(dev_priv);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006299}
6300
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006301void intel_enable_gt_powersave(struct drm_device *dev)
6302{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006303 struct drm_i915_private *dev_priv = dev->dev_private;
6304
Yu Zhangf61018b2015-02-10 19:05:52 +08006305 /* Powersaving is controlled by the host when inside a VM */
6306 if (intel_vgpu_active(dev))
6307 return;
6308
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006309 if (IS_IRONLAKE_M(dev)) {
6310 ironlake_enable_drps(dev);
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00006311 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006312 intel_init_emon(dev);
Imre Deakdc1d0132014-04-14 20:24:28 +03006313 mutex_unlock(&dev->struct_mutex);
Deepak S38807742014-05-23 21:00:15 +05306314 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006315 /*
6316 * PCU communication is slow and this doesn't need to be
6317 * done at any specific time, so do this out of our fast path
6318 * to make resume and init faster.
Imre Deakc6df39b2014-04-14 20:24:29 +03006319 *
6320 * We depend on the HW RC6 power context save/restore
6321 * mechanism when entering D3 through runtime PM suspend. So
6322 * disable RPM until RPS/RC6 is properly setup. We can only
6323 * get here via the driver load/system resume/runtime resume
6324 * paths, so the _noresume version is enough (and in case of
6325 * runtime resume it's necessary).
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006326 */
Imre Deakc6df39b2014-04-14 20:24:29 +03006327 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
6328 round_jiffies_up_relative(HZ)))
6329 intel_runtime_pm_get_noresume(dev_priv);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006330 }
6331}
6332
Imre Deakc6df39b2014-04-14 20:24:29 +03006333void intel_reset_gt_powersave(struct drm_device *dev)
6334{
6335 struct drm_i915_private *dev_priv = dev->dev_private;
6336
Imre Deakdbea3ce2014-12-15 18:59:28 +02006337 if (INTEL_INFO(dev)->gen < 6)
6338 return;
6339
6340 gen6_suspend_rps(dev);
Imre Deakc6df39b2014-04-14 20:24:29 +03006341 dev_priv->rps.enabled = false;
Imre Deakc6df39b2014-04-14 20:24:29 +03006342}
6343
Daniel Vetter3107bd42012-10-31 22:52:31 +01006344static void ibx_init_clock_gating(struct drm_device *dev)
6345{
6346 struct drm_i915_private *dev_priv = dev->dev_private;
6347
6348 /*
6349 * On Ibex Peak and Cougar Point, we need to disable clock
6350 * gating for the panel power sequencer or it will fail to
6351 * start up when no ports are active.
6352 */
6353 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6354}
6355
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006356static void g4x_disable_trickle_feed(struct drm_device *dev)
6357{
6358 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006359 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006360
Damien Lespiau055e3932014-08-18 13:49:10 +01006361 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006362 I915_WRITE(DSPCNTR(pipe),
6363 I915_READ(DSPCNTR(pipe)) |
6364 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006365
6366 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6367 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006368 }
6369}
6370
Ville Syrjälä017636c2013-12-05 15:51:37 +02006371static void ilk_init_lp_watermarks(struct drm_device *dev)
6372{
6373 struct drm_i915_private *dev_priv = dev->dev_private;
6374
6375 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6376 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6377 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6378
6379 /*
6380 * Don't touch WM1S_LP_EN here.
6381 * Doing so could cause underruns.
6382 */
6383}
6384
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006385static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006386{
6387 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006388 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006389
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006390 /*
6391 * Required for FBC
6392 * WaFbcDisableDpfcClockGating:ilk
6393 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006394 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6395 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6396 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006397
6398 I915_WRITE(PCH_3DCGDIS0,
6399 MARIUNIT_CLOCK_GATE_DISABLE |
6400 SVSMUNIT_CLOCK_GATE_DISABLE);
6401 I915_WRITE(PCH_3DCGDIS1,
6402 VFMUNIT_CLOCK_GATE_DISABLE);
6403
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006404 /*
6405 * According to the spec the following bits should be set in
6406 * order to enable memory self-refresh
6407 * The bit 22/21 of 0x42004
6408 * The bit 5 of 0x42020
6409 * The bit 15 of 0x45000
6410 */
6411 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6412 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6413 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006414 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006415 I915_WRITE(DISP_ARB_CTL,
6416 (I915_READ(DISP_ARB_CTL) |
6417 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006418
6419 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006420
6421 /*
6422 * Based on the document from hardware guys the following bits
6423 * should be set unconditionally in order to enable FBC.
6424 * The bit 22 of 0x42000
6425 * The bit 22 of 0x42004
6426 * The bit 7,8,9 of 0x42020.
6427 */
6428 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006429 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006430 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6431 I915_READ(ILK_DISPLAY_CHICKEN1) |
6432 ILK_FBCQ_DIS);
6433 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6434 I915_READ(ILK_DISPLAY_CHICKEN2) |
6435 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006436 }
6437
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006438 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6439
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006440 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6441 I915_READ(ILK_DISPLAY_CHICKEN2) |
6442 ILK_ELPIN_409_SELECT);
6443 I915_WRITE(_3D_CHICKEN2,
6444 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6445 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006446
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006447 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006448 I915_WRITE(CACHE_MODE_0,
6449 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006450
Akash Goel4e046322014-04-04 17:14:38 +05306451 /* WaDisable_RenderCache_OperationalFlush:ilk */
6452 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6453
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006454 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006455
Daniel Vetter3107bd42012-10-31 22:52:31 +01006456 ibx_init_clock_gating(dev);
6457}
6458
6459static void cpt_init_clock_gating(struct drm_device *dev)
6460{
6461 struct drm_i915_private *dev_priv = dev->dev_private;
6462 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006463 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006464
6465 /*
6466 * On Ibex Peak and Cougar Point, we need to disable clock
6467 * gating for the panel power sequencer or it will fail to
6468 * start up when no ports are active.
6469 */
Jesse Barnescd664072013-10-02 10:34:19 -07006470 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6471 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6472 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006473 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6474 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006475 /* The below fixes the weird display corruption, a few pixels shifted
6476 * downward, on (only) LVDS of some HP laptops with IVY.
6477 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006478 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006479 val = I915_READ(TRANS_CHICKEN2(pipe));
6480 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6481 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006482 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006483 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006484 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6485 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6486 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006487 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6488 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006489 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006490 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006491 I915_WRITE(TRANS_CHICKEN1(pipe),
6492 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6493 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006494}
6495
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006496static void gen6_check_mch_setup(struct drm_device *dev)
6497{
6498 struct drm_i915_private *dev_priv = dev->dev_private;
6499 uint32_t tmp;
6500
6501 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006502 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6503 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6504 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006505}
6506
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006507static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006508{
6509 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006510 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006511
Damien Lespiau231e54f2012-10-19 17:55:41 +01006512 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006513
6514 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6515 I915_READ(ILK_DISPLAY_CHICKEN2) |
6516 ILK_ELPIN_409_SELECT);
6517
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006518 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006519 I915_WRITE(_3D_CHICKEN,
6520 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6521
Akash Goel4e046322014-04-04 17:14:38 +05306522 /* WaDisable_RenderCache_OperationalFlush:snb */
6523 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6524
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006525 /*
6526 * BSpec recoomends 8x4 when MSAA is used,
6527 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006528 *
6529 * Note that PS/WM thread counts depend on the WIZ hashing
6530 * disable bit, which we don't touch here, but it's good
6531 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006532 */
6533 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006534 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006535
Ville Syrjälä017636c2013-12-05 15:51:37 +02006536 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006537
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006538 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006539 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006540
6541 I915_WRITE(GEN6_UCGCTL1,
6542 I915_READ(GEN6_UCGCTL1) |
6543 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6544 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6545
6546 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6547 * gating disable must be set. Failure to set it results in
6548 * flickering pixels due to Z write ordering failures after
6549 * some amount of runtime in the Mesa "fire" demo, and Unigine
6550 * Sanctuary and Tropics, and apparently anything else with
6551 * alpha test or pixel discard.
6552 *
6553 * According to the spec, bit 11 (RCCUNIT) must also be set,
6554 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006555 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006556 * WaDisableRCCUnitClockGating:snb
6557 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006558 */
6559 I915_WRITE(GEN6_UCGCTL2,
6560 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6561 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6562
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006563 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006564 I915_WRITE(_3D_CHICKEN3,
6565 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006566
6567 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006568 * Bspec says:
6569 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6570 * 3DSTATE_SF number of SF output attributes is more than 16."
6571 */
6572 I915_WRITE(_3D_CHICKEN3,
6573 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6574
6575 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006576 * According to the spec the following bits should be
6577 * set in order to enable memory self-refresh and fbc:
6578 * The bit21 and bit22 of 0x42000
6579 * The bit21 and bit22 of 0x42004
6580 * The bit5 and bit7 of 0x42020
6581 * The bit14 of 0x70180
6582 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006583 *
6584 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006585 */
6586 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6587 I915_READ(ILK_DISPLAY_CHICKEN1) |
6588 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6589 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6590 I915_READ(ILK_DISPLAY_CHICKEN2) |
6591 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006592 I915_WRITE(ILK_DSPCLK_GATE_D,
6593 I915_READ(ILK_DSPCLK_GATE_D) |
6594 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6595 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006596
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006597 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006598
Daniel Vetter3107bd42012-10-31 22:52:31 +01006599 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006600
6601 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006602}
6603
6604static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6605{
6606 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
6607
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006608 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006609 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006610 *
6611 * This actually overrides the dispatch
6612 * mode for all thread types.
6613 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006614 reg &= ~GEN7_FF_SCHED_MASK;
6615 reg |= GEN7_FF_TS_SCHED_HW;
6616 reg |= GEN7_FF_VS_SCHED_HW;
6617 reg |= GEN7_FF_DS_SCHED_HW;
6618
6619 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6620}
6621
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006622static void lpt_init_clock_gating(struct drm_device *dev)
6623{
6624 struct drm_i915_private *dev_priv = dev->dev_private;
6625
6626 /*
6627 * TODO: this bit should only be enabled when really needed, then
6628 * disabled when not needed anymore in order to save power.
6629 */
Ville Syrjäläc2699522015-08-27 23:55:59 +03006630 if (HAS_PCH_LPT_LP(dev))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006631 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6632 I915_READ(SOUTH_DSPCLK_GATE_D) |
6633 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006634
6635 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03006636 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
6637 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006638 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006639}
6640
Imre Deak7d708ee2013-04-17 14:04:50 +03006641static void lpt_suspend_hw(struct drm_device *dev)
6642{
6643 struct drm_i915_private *dev_priv = dev->dev_private;
6644
Ville Syrjäläc2699522015-08-27 23:55:59 +03006645 if (HAS_PCH_LPT_LP(dev)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03006646 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
6647
6648 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6649 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6650 }
6651}
6652
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006653static void broadwell_init_clock_gating(struct drm_device *dev)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006654{
6655 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00006656 enum pipe pipe;
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006657 uint32_t misccpctl;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006658
Ville Syrjälä7ad0dba2015-05-19 20:32:55 +03006659 ilk_init_lp_watermarks(dev);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006660
Ben Widawskyab57fff2013-12-12 15:28:04 -08006661 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006662 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006663
Ben Widawskyab57fff2013-12-12 15:28:04 -08006664 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006665 I915_WRITE(CHICKEN_PAR1_1,
6666 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6667
Ben Widawskyab57fff2013-12-12 15:28:04 -08006668 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006669 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006670 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006671 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006672 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006673 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006674
Ben Widawskyab57fff2013-12-12 15:28:04 -08006675 /* WaVSRefCountFullforceMissDisable:bdw */
6676 /* WaDSRefCountFullforceMissDisable:bdw */
6677 I915_WRITE(GEN7_FF_THREAD_MODE,
6678 I915_READ(GEN7_FF_THREAD_MODE) &
6679 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006680
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006681 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6682 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006683
6684 /* WaDisableSDEUnitClockGating:bdw */
6685 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6686 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006687
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006688 /*
6689 * WaProgramL3SqcReg1Default:bdw
6690 * WaTempDisableDOPClkGating:bdw
6691 */
6692 misccpctl = I915_READ(GEN7_MISCCPCTL);
6693 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6694 I915_WRITE(GEN8_L3SQCREG1, BDW_WA_L3SQCREG1_DEFAULT);
6695 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6696
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006697 /*
6698 * WaGttCachingOffByDefault:bdw
6699 * GTT cache may not work with big pages, so if those
6700 * are ever enabled GTT cache may need to be disabled.
6701 */
6702 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
6703
Paulo Zanoni89d6b2b2014-08-21 17:09:36 -03006704 lpt_init_clock_gating(dev);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006705}
6706
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006707static void haswell_init_clock_gating(struct drm_device *dev)
6708{
6709 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006710
Ville Syrjälä017636c2013-12-05 15:51:37 +02006711 ilk_init_lp_watermarks(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006712
Francisco Jerezf3fc4882013-10-02 15:53:16 -07006713 /* L3 caching of data atomics doesn't work -- disable it. */
6714 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6715 I915_WRITE(HSW_ROW_CHICKEN3,
6716 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6717
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006718 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006719 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6720 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6721 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6722
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02006723 /* WaVSRefCountFullforceMissDisable:hsw */
6724 I915_WRITE(GEN7_FF_THREAD_MODE,
6725 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006726
Akash Goel4e046322014-04-04 17:14:38 +05306727 /* WaDisable_RenderCache_OperationalFlush:hsw */
6728 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6729
Chia-I Wufe27c602014-01-28 13:29:33 +08006730 /* enable HiZ Raw Stall Optimization */
6731 I915_WRITE(CACHE_MODE_0_GEN7,
6732 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6733
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006734 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006735 I915_WRITE(CACHE_MODE_1,
6736 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006737
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006738 /*
6739 * BSpec recommends 8x4 when MSAA is used,
6740 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006741 *
6742 * Note that PS/WM thread counts depend on the WIZ hashing
6743 * disable bit, which we don't touch here, but it's good
6744 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006745 */
6746 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006747 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006748
Kenneth Graunke94411592014-12-31 16:23:00 -08006749 /* WaSampleCChickenBitEnable:hsw */
6750 I915_WRITE(HALF_SLICE_CHICKEN3,
6751 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
6752
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006753 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07006754 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
6755
Paulo Zanoni90a88642013-05-03 17:23:45 -03006756 /* WaRsPkgCStateDisplayPMReq:hsw */
6757 I915_WRITE(CHICKEN_PAR1_1,
6758 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006759
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006760 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006761}
6762
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006763static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006764{
6765 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07006766 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006767
Ville Syrjälä017636c2013-12-05 15:51:37 +02006768 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006769
Damien Lespiau231e54f2012-10-19 17:55:41 +01006770 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006771
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006772 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05006773 I915_WRITE(_3D_CHICKEN3,
6774 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6775
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006776 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006777 I915_WRITE(IVB_CHICKEN3,
6778 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6779 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6780
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006781 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07006782 if (IS_IVB_GT1(dev))
6783 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
6784 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006785
Akash Goel4e046322014-04-04 17:14:38 +05306786 /* WaDisable_RenderCache_OperationalFlush:ivb */
6787 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6788
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006789 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006790 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
6791 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
6792
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006793 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006794 I915_WRITE(GEN7_L3CNTLREG1,
6795 GEN7_WA_FOR_GEN7_L3_CONTROL);
6796 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07006797 GEN7_WA_L3_CHICKEN_MODE);
6798 if (IS_IVB_GT1(dev))
6799 I915_WRITE(GEN7_ROW_CHICKEN2,
6800 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006801 else {
6802 /* must write both registers */
6803 I915_WRITE(GEN7_ROW_CHICKEN2,
6804 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07006805 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
6806 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006807 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006808
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006809 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05006810 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6811 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6812
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02006813 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006814 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006815 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006816 */
6817 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02006818 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006819
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006820 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006821 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6822 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6823 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6824
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006825 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006826
6827 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02006828
Chris Wilson22721342014-03-04 09:41:43 +00006829 if (0) { /* causes HiZ corruption on ivb:gt1 */
6830 /* enable HiZ Raw Stall Optimization */
6831 I915_WRITE(CACHE_MODE_0_GEN7,
6832 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6833 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08006834
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006835 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02006836 I915_WRITE(CACHE_MODE_1,
6837 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07006838
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006839 /*
6840 * BSpec recommends 8x4 when MSAA is used,
6841 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006842 *
6843 * Note that PS/WM thread counts depend on the WIZ hashing
6844 * disable bit, which we don't touch here, but it's good
6845 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006846 */
6847 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006848 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006849
Ben Widawsky20848222012-05-04 18:58:59 -07006850 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
6851 snpcr &= ~GEN6_MBC_SNPCR_MASK;
6852 snpcr |= GEN6_MBC_SNPCR_MED;
6853 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006854
Ben Widawskyab5c6082013-04-05 13:12:41 -07006855 if (!HAS_PCH_NOP(dev))
6856 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006857
6858 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006859}
6860
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006861static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv)
6862{
6863 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6864
6865 /*
6866 * Disable trickle feed and enable pnd deadline calculation
6867 */
6868 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
6869 I915_WRITE(CBR1_VLV, 0);
6870}
6871
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006872static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006873{
6874 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006875
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006876 vlv_init_display_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006877
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006878 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05006879 I915_WRITE(_3D_CHICKEN3,
6880 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6881
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006882 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006883 I915_WRITE(IVB_CHICKEN3,
6884 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6885 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6886
Ville Syrjäläfad7d362014-01-22 21:32:39 +02006887 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006888 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07006889 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08006890 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
6891 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006892
Akash Goel4e046322014-04-04 17:14:38 +05306893 /* WaDisable_RenderCache_OperationalFlush:vlv */
6894 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6895
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006896 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05006897 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6898 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6899
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006900 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07006901 I915_WRITE(GEN7_ROW_CHICKEN2,
6902 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
6903
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006904 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006905 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6906 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6907 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6908
Ville Syrjälä46680e02014-01-22 21:33:01 +02006909 gen7_setup_fixed_func_scheduler(dev_priv);
6910
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006911 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006912 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006913 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006914 */
6915 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006916 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006917
Akash Goelc98f5062014-03-24 23:00:07 +05306918 /* WaDisableL3Bank2xClockGate:vlv
6919 * Disabling L3 clock gating- MMIO 940c[25] = 1
6920 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
6921 I915_WRITE(GEN7_UCGCTL4,
6922 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07006923
Ville Syrjäläafd58e72014-01-22 21:33:03 +02006924 /*
6925 * BSpec says this must be set, even though
6926 * WaDisable4x2SubspanOptimization isn't listed for VLV.
6927 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02006928 I915_WRITE(CACHE_MODE_1,
6929 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07006930
6931 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02006932 * BSpec recommends 8x4 when MSAA is used,
6933 * however in practice 16x4 seems fastest.
6934 *
6935 * Note that PS/WM thread counts depend on the WIZ hashing
6936 * disable bit, which we don't touch here, but it's good
6937 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
6938 */
6939 I915_WRITE(GEN7_GT_MODE,
6940 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
6941
6942 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02006943 * WaIncreaseL3CreditsForVLVB0:vlv
6944 * This is the hardware default actually.
6945 */
6946 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
6947
6948 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006949 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07006950 * Disable clock gating on th GCFG unit to prevent a delay
6951 * in the reporting of vblank events.
6952 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02006953 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006954}
6955
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006956static void cherryview_init_clock_gating(struct drm_device *dev)
6957{
6958 struct drm_i915_private *dev_priv = dev->dev_private;
6959
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006960 vlv_init_display_clock_gating(dev_priv);
Ville Syrjälädd811e72014-04-09 13:28:33 +03006961
Ville Syrjälä232ce332014-04-09 13:28:35 +03006962 /* WaVSRefCountFullforceMissDisable:chv */
6963 /* WaDSRefCountFullforceMissDisable:chv */
6964 I915_WRITE(GEN7_FF_THREAD_MODE,
6965 I915_READ(GEN7_FF_THREAD_MODE) &
6966 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03006967
6968 /* WaDisableSemaphoreAndSyncFlipWait:chv */
6969 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6970 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03006971
6972 /* WaDisableCSUnitClockGating:chv */
6973 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
6974 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03006975
6976 /* WaDisableSDEUnitClockGating:chv */
6977 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6978 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006979
6980 /*
6981 * GTT cache may not work with big pages, so if those
6982 * are ever enabled GTT cache may need to be disabled.
6983 */
6984 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006985}
6986
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006987static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006988{
6989 struct drm_i915_private *dev_priv = dev->dev_private;
6990 uint32_t dspclk_gate;
6991
6992 I915_WRITE(RENCLK_GATE_D1, 0);
6993 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6994 GS_UNIT_CLOCK_GATE_DISABLE |
6995 CL_UNIT_CLOCK_GATE_DISABLE);
6996 I915_WRITE(RAMCLK_GATE_D, 0);
6997 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6998 OVRUNIT_CLOCK_GATE_DISABLE |
6999 OVCUNIT_CLOCK_GATE_DISABLE;
7000 if (IS_GM45(dev))
7001 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7002 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007003
7004 /* WaDisableRenderCachePipelinedFlush */
7005 I915_WRITE(CACHE_MODE_0,
7006 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007007
Akash Goel4e046322014-04-04 17:14:38 +05307008 /* WaDisable_RenderCache_OperationalFlush:g4x */
7009 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7010
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007011 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007012}
7013
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007014static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007015{
7016 struct drm_i915_private *dev_priv = dev->dev_private;
7017
7018 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7019 I915_WRITE(RENCLK_GATE_D2, 0);
7020 I915_WRITE(DSPCLK_GATE_D, 0);
7021 I915_WRITE(RAMCLK_GATE_D, 0);
7022 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007023 I915_WRITE(MI_ARB_STATE,
7024 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307025
7026 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7027 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007028}
7029
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007030static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007031{
7032 struct drm_i915_private *dev_priv = dev->dev_private;
7033
7034 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7035 I965_RCC_CLOCK_GATE_DISABLE |
7036 I965_RCPB_CLOCK_GATE_DISABLE |
7037 I965_ISC_CLOCK_GATE_DISABLE |
7038 I965_FBC_CLOCK_GATE_DISABLE);
7039 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007040 I915_WRITE(MI_ARB_STATE,
7041 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307042
7043 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7044 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007045}
7046
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007047static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007048{
7049 struct drm_i915_private *dev_priv = dev->dev_private;
7050 u32 dstate = I915_READ(D_STATE);
7051
7052 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7053 DSTATE_DOT_CLOCK_GATING;
7054 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007055
7056 if (IS_PINEVIEW(dev))
7057 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007058
7059 /* IIR "flip pending" means done if this bit is set */
7060 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007061
7062 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007063 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007064
7065 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7066 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007067
7068 I915_WRITE(MI_ARB_STATE,
7069 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007070}
7071
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007072static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007073{
7074 struct drm_i915_private *dev_priv = dev->dev_private;
7075
7076 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007077
7078 /* interrupts should cause a wake up from C3 */
7079 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7080 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007081
7082 I915_WRITE(MEM_MODE,
7083 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007084}
7085
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007086static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007087{
7088 struct drm_i915_private *dev_priv = dev->dev_private;
7089
7090 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03007091
7092 I915_WRITE(MEM_MODE,
7093 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7094 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007095}
7096
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007097void intel_init_clock_gating(struct drm_device *dev)
7098{
7099 struct drm_i915_private *dev_priv = dev->dev_private;
7100
Damien Lespiauc57e3552015-02-09 19:33:05 +00007101 if (dev_priv->display.init_clock_gating)
7102 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007103}
7104
Imre Deak7d708ee2013-04-17 14:04:50 +03007105void intel_suspend_hw(struct drm_device *dev)
7106{
7107 if (HAS_PCH_LPT(dev))
7108 lpt_suspend_hw(dev);
7109}
7110
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007111/* Set up chip specific power management-related functions */
7112void intel_init_pm(struct drm_device *dev)
7113{
7114 struct drm_i915_private *dev_priv = dev->dev_private;
7115
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007116 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007117
Daniel Vetterc921aba2012-04-26 23:28:17 +02007118 /* For cxsr */
7119 if (IS_PINEVIEW(dev))
7120 i915_pineview_get_mem_freq(dev);
7121 else if (IS_GEN5(dev))
7122 i915_ironlake_get_mem_freq(dev);
7123
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007124 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00007125 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00007126 skl_setup_wm_latency(dev);
7127
Imre Deaka82abe42015-03-27 14:00:04 +02007128 if (IS_BROXTON(dev))
7129 dev_priv->display.init_clock_gating =
7130 bxt_init_clock_gating;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00007131 dev_priv->display.update_wm = skl_update_wm;
Damien Lespiauc83155a2014-03-28 00:18:35 +05307132 } else if (HAS_PCH_SPLIT(dev)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00007133 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007134
Ville Syrjäläbd602542014-01-07 16:14:10 +02007135 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
7136 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
7137 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
7138 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007139 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007140 dev_priv->display.compute_intermediate_wm =
7141 ilk_compute_intermediate_wm;
7142 dev_priv->display.initial_watermarks =
7143 ilk_initial_watermarks;
7144 dev_priv->display.optimize_watermarks =
7145 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007146 } else {
7147 DRM_DEBUG_KMS("Failed to read display plane latency. "
7148 "Disable CxSR\n");
7149 }
7150
7151 if (IS_GEN5(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007152 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007153 else if (IS_GEN6(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007154 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007155 else if (IS_IVYBRIDGE(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007156 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007157 else if (IS_HASWELL(dev))
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007158 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007159 else if (INTEL_INFO(dev)->gen == 8)
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03007160 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007161 } else if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03007162 vlv_setup_wm_latency(dev);
7163
7164 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007165 dev_priv->display.init_clock_gating =
7166 cherryview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007167 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007168 vlv_setup_wm_latency(dev);
7169
7170 dev_priv->display.update_wm = vlv_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007171 dev_priv->display.init_clock_gating =
7172 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007173 } else if (IS_PINEVIEW(dev)) {
7174 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
7175 dev_priv->is_ddr3,
7176 dev_priv->fsb_freq,
7177 dev_priv->mem_freq)) {
7178 DRM_INFO("failed to find known CxSR latency "
7179 "(found ddr%s fsb freq %d, mem freq %d), "
7180 "disabling CxSR\n",
7181 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7182 dev_priv->fsb_freq, dev_priv->mem_freq);
7183 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007184 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007185 dev_priv->display.update_wm = NULL;
7186 } else
7187 dev_priv->display.update_wm = pineview_update_wm;
7188 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7189 } else if (IS_G4X(dev)) {
7190 dev_priv->display.update_wm = g4x_update_wm;
7191 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
7192 } else if (IS_GEN4(dev)) {
7193 dev_priv->display.update_wm = i965_update_wm;
7194 if (IS_CRESTLINE(dev))
7195 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
7196 else if (IS_BROADWATER(dev))
7197 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7198 } else if (IS_GEN3(dev)) {
7199 dev_priv->display.update_wm = i9xx_update_wm;
7200 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
7201 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007202 } else if (IS_GEN2(dev)) {
7203 if (INTEL_INFO(dev)->num_pipes == 1) {
7204 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007205 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007206 } else {
7207 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007208 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007209 }
7210
7211 if (IS_I85X(dev) || IS_I865G(dev))
7212 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7213 else
7214 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7215 } else {
7216 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007217 }
7218}
7219
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007220int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007221{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007222 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007223
7224 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7225 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7226 return -EAGAIN;
7227 }
7228
7229 I915_WRITE(GEN6_PCODE_DATA, *val);
Damien Lespiaudddab342014-11-13 17:51:50 +00007230 I915_WRITE(GEN6_PCODE_DATA1, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007231 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7232
7233 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7234 500)) {
7235 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7236 return -ETIMEDOUT;
7237 }
7238
7239 *val = I915_READ(GEN6_PCODE_DATA);
7240 I915_WRITE(GEN6_PCODE_DATA, 0);
7241
7242 return 0;
7243}
7244
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007245int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007246{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007247 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007248
7249 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7250 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7251 return -EAGAIN;
7252 }
7253
7254 I915_WRITE(GEN6_PCODE_DATA, val);
7255 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7256
7257 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7258 500)) {
7259 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7260 return -ETIMEDOUT;
7261 }
7262
7263 I915_WRITE(GEN6_PCODE_DATA, 0);
7264
7265 return 0;
7266}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007267
Ville Syrjälädd06f882014-11-10 22:55:12 +02007268static int vlv_gpu_freq_div(unsigned int czclk_freq)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007269{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007270 switch (czclk_freq) {
7271 case 200:
7272 return 10;
7273 case 267:
7274 return 12;
7275 case 320:
7276 case 333:
Ville Syrjälädd06f882014-11-10 22:55:12 +02007277 return 16;
Ville Syrjäläab3fb152014-11-10 22:55:15 +02007278 case 400:
7279 return 20;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007280 default:
7281 return -1;
7282 }
Ville Syrjälädd06f882014-11-10 22:55:12 +02007283}
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007284
Ville Syrjälädd06f882014-11-10 22:55:12 +02007285static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7286{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007287 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Ville Syrjälädd06f882014-11-10 22:55:12 +02007288
7289 div = vlv_gpu_freq_div(czclk_freq);
7290 if (div < 0)
7291 return div;
7292
7293 return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007294}
7295
Fengguang Wub55dd642014-07-12 11:21:39 +02007296static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007297{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007298 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007299
Ville Syrjälädd06f882014-11-10 22:55:12 +02007300 mul = vlv_gpu_freq_div(czclk_freq);
7301 if (mul < 0)
7302 return mul;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007303
Ville Syrjälädd06f882014-11-10 22:55:12 +02007304 return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007305}
7306
Fengguang Wub55dd642014-07-12 11:21:39 +02007307static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307308{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007309 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307310
Imre Deak9c06f672016-01-29 14:52:27 +02007311 div = vlv_gpu_freq_div(czclk_freq);
Ville Syrjälädd06f882014-11-10 22:55:12 +02007312 if (div < 0)
7313 return div;
Imre Deak9c06f672016-01-29 14:52:27 +02007314 div /= 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307315
Ville Syrjälädd06f882014-11-10 22:55:12 +02007316 return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307317}
7318
Fengguang Wub55dd642014-07-12 11:21:39 +02007319static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307320{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007321 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307322
Imre Deak9c06f672016-01-29 14:52:27 +02007323 mul = vlv_gpu_freq_div(czclk_freq);
Ville Syrjälädd06f882014-11-10 22:55:12 +02007324 if (mul < 0)
7325 return mul;
Imre Deak9c06f672016-01-29 14:52:27 +02007326 mul /= 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307327
Ville Syrjälä1c147622014-08-18 14:42:43 +03007328 /* CHV needs even values */
Ville Syrjälädd06f882014-11-10 22:55:12 +02007329 return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307330}
7331
Ville Syrjälä616bc822015-01-23 21:04:25 +02007332int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7333{
Akash Goel80b6dda2015-03-06 11:07:15 +05307334 if (IS_GEN9(dev_priv->dev))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007335 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
7336 GEN9_FREQ_SCALER);
Akash Goel80b6dda2015-03-06 11:07:15 +05307337 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007338 return chv_gpu_freq(dev_priv, val);
7339 else if (IS_VALLEYVIEW(dev_priv->dev))
7340 return byt_gpu_freq(dev_priv, val);
7341 else
7342 return val * GT_FREQUENCY_MULTIPLIER;
7343}
7344
Ville Syrjälä616bc822015-01-23 21:04:25 +02007345int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7346{
Akash Goel80b6dda2015-03-06 11:07:15 +05307347 if (IS_GEN9(dev_priv->dev))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007348 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
7349 GT_FREQUENCY_MULTIPLIER);
Akash Goel80b6dda2015-03-06 11:07:15 +05307350 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007351 return chv_freq_opcode(dev_priv, val);
Deepak S22b1b2f2014-07-12 14:54:33 +05307352 else if (IS_VALLEYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007353 return byt_freq_opcode(dev_priv, val);
7354 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007355 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05307356}
7357
Chris Wilson6ad790c2015-04-07 16:20:31 +01007358struct request_boost {
7359 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02007360 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007361};
7362
7363static void __intel_rps_boost_work(struct work_struct *work)
7364{
7365 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01007366 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007367
Chris Wilsone61b9952015-04-27 13:41:24 +01007368 if (!i915_gem_request_completed(req, true))
7369 gen6_rps_boost(to_i915(req->ring->dev), NULL,
7370 req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007371
Chris Wilsone61b9952015-04-27 13:41:24 +01007372 i915_gem_request_unreference__unlocked(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007373 kfree(boost);
7374}
7375
7376void intel_queue_rps_boost_for_request(struct drm_device *dev,
Daniel Vettereed29a52015-05-21 14:21:25 +02007377 struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007378{
7379 struct request_boost *boost;
7380
Daniel Vettereed29a52015-05-21 14:21:25 +02007381 if (req == NULL || INTEL_INFO(dev)->gen < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007382 return;
7383
Chris Wilsone61b9952015-04-27 13:41:24 +01007384 if (i915_gem_request_completed(req, true))
7385 return;
7386
Chris Wilson6ad790c2015-04-07 16:20:31 +01007387 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
7388 if (boost == NULL)
7389 return;
7390
Daniel Vettereed29a52015-05-21 14:21:25 +02007391 i915_gem_request_reference(req);
7392 boost->req = req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007393
7394 INIT_WORK(&boost->work, __intel_rps_boost_work);
7395 queue_work(to_i915(dev)->wq, &boost->work);
7396}
7397
Daniel Vetterf742a552013-12-06 10:17:53 +01007398void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01007399{
7400 struct drm_i915_private *dev_priv = dev->dev_private;
7401
Daniel Vetterf742a552013-12-06 10:17:53 +01007402 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01007403 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01007404
Chris Wilson907b28c2013-07-19 20:36:52 +01007405 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
7406 intel_gen6_powersave_work);
Chris Wilson1854d5c2015-04-07 16:20:32 +01007407 INIT_LIST_HEAD(&dev_priv->rps.clients);
Chris Wilson2e1b8732015-04-27 13:41:22 +01007408 INIT_LIST_HEAD(&dev_priv->rps.semaphores.link);
7409 INIT_LIST_HEAD(&dev_priv->rps.mmioflips.link);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03007410
Paulo Zanoni33688d92014-03-07 20:08:19 -03007411 dev_priv->pm.suspended = false;
Imre Deak1f814da2015-12-16 02:52:19 +02007412 atomic_set(&dev_priv->pm.wakeref_count, 0);
Imre Deak2b19efe2015-12-15 20:10:37 +02007413 atomic_set(&dev_priv->pm.atomic_seq, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01007414}