blob: 79843215d90cf7dde0e999626a1b1e00e866f51b [file] [log] [blame]
Eugeni Dodonov85208be2012-04-16 22:20:34 -03001/*
2 * Copyright © 2012 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eugeni Dodonov <eugeni.dodonov@intel.com>
25 *
26 */
27
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -030028#include <linux/cpufreq.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030029#include "i915_drv.h"
30#include "intel_drv.h"
Daniel Vettereb48eb02012-04-26 23:28:12 +020031#include "../../../platform/x86/intel_ips.h"
32#include <linux/module.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030033
Ben Widawskydc39fff2013-10-18 12:32:07 -070034/**
35 * RC6 is a special power stage which allows the GPU to enter an very
36 * low-voltage mode when idle, using down to 0V while at this stage. This
37 * stage is entered automatically when the GPU is idle when RC6 support is
38 * enabled, and as soon as new workload arises GPU wakes up automatically as well.
39 *
40 * There are different RC6 modes available in Intel GPU, which differentiate
41 * among each other with the latency required to enter and leave RC6 and
42 * voltage consumed by the GPU in different states.
43 *
44 * The combination of the following flags define which states GPU is allowed
45 * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
46 * RC6pp is deepest RC6. Their support by hardware varies according to the
47 * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
48 * which brings the most power savings; deeper states save more power, but
49 * require higher latency to switch to and wake up.
50 */
51#define INTEL_RC6_ENABLE (1<<0)
52#define INTEL_RC6p_ENABLE (1<<1)
53#define INTEL_RC6pp_ENABLE (1<<2)
54
Damien Lespiauda2078c2013-02-13 15:27:27 +000055static void gen9_init_clock_gating(struct drm_device *dev)
56{
Damien Lespiauacd5c342014-03-26 16:55:46 +000057 struct drm_i915_private *dev_priv = dev->dev_private;
58
Damien Lespiau77719d22015-02-09 19:33:13 +000059 /* WaEnableLbsSlaRetryTimerDecrement:skl */
60 I915_WRITE(BDW_SCRATCH1, I915_READ(BDW_SCRATCH1) |
61 GEN9_LBS_SLA_RETRY_TIMER_DECREMENT_ENABLE);
62}
Damien Lespiau91e41d12014-03-26 17:42:50 +000063
Damien Lespiau45db2192015-02-09 19:33:09 +000064static void skl_init_clock_gating(struct drm_device *dev)
Damien Lespiauda2078c2013-02-13 15:27:27 +000065{
Damien Lespiauacd5c342014-03-26 16:55:46 +000066 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau3ca5da42014-03-26 18:18:01 +000067
Damien Lespiau77719d22015-02-09 19:33:13 +000068 gen9_init_clock_gating(dev);
69
Damien Lespiau669506e2015-02-26 18:20:38 +000070 if (INTEL_REVID(dev) <= SKL_REVID_B0) {
Hoath, Nicholas3dcd0202015-02-05 10:47:21 +000071 /*
72 * WaDisableSDEUnitClockGating:skl
Damien Lespiau9253c2e2015-02-09 19:33:10 +000073 * WaSetGAPSunitClckGateDisable:skl
Hoath, Nicholas3dcd0202015-02-05 10:47:21 +000074 */
75 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Damien Lespiau9253c2e2015-02-09 19:33:10 +000076 GEN8_GAPSUNIT_CLOCK_GATE_DISABLE |
Hoath, Nicholas3dcd0202015-02-05 10:47:21 +000077 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiauf9fc42f2015-02-26 18:20:39 +000078
79 /* WaDisableVFUnitClockGating:skl */
80 I915_WRITE(GEN6_UCGCTL2, I915_READ(GEN6_UCGCTL2) |
81 GEN6_VFUNIT_CLOCK_GATE_DISABLE);
Hoath, Nicholas3dcd0202015-02-05 10:47:21 +000082 }
Damien Lespiau8bc0ccf2015-02-09 19:33:18 +000083
Damien Lespiau2caa3b22015-02-09 19:33:20 +000084 if (INTEL_REVID(dev) <= SKL_REVID_D0) {
Damien Lespiau81e231a2015-02-09 19:33:19 +000085 /* WaDisableHDCInvalidation:skl */
86 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) |
87 BDW_DISABLE_HDC_INVALIDATION);
88
Damien Lespiau2caa3b22015-02-09 19:33:20 +000089 /* WaDisableChickenBitTSGBarrierAckForFFSliceCS:skl */
90 I915_WRITE(FF_SLICE_CS_CHICKEN2,
Damien Lespiauf1d3d342015-05-06 14:36:27 +010091 _MASKED_BIT_ENABLE(GEN9_TSG_BARRIER_ACK_DISABLE));
Damien Lespiau2caa3b22015-02-09 19:33:20 +000092 }
Damien Lespiau81e231a2015-02-09 19:33:19 +000093
Damien Lespiau8bc0ccf2015-02-09 19:33:18 +000094 if (INTEL_REVID(dev) <= SKL_REVID_E0)
95 /* WaDisableLSQCROPERFforOCL:skl */
96 I915_WRITE(GEN8_L3SQCREG4, I915_READ(GEN8_L3SQCREG4) |
97 GEN8_LQSC_RO_PERF_DIS);
Damien Lespiauda2078c2013-02-13 15:27:27 +000098}
99
Imre Deaka82abe42015-03-27 14:00:04 +0200100static void bxt_init_clock_gating(struct drm_device *dev)
101{
Imre Deak32608ca2015-03-11 11:10:27 +0200102 struct drm_i915_private *dev_priv = dev->dev_private;
103
Imre Deaka82abe42015-03-27 14:00:04 +0200104 gen9_init_clock_gating(dev);
Imre Deak32608ca2015-03-11 11:10:27 +0200105
106 /*
107 * FIXME:
108 * GEN8_SDEUNIT_CLOCK_GATE_DISABLE applies on A0 only.
Ben Widawsky868434c2015-03-11 10:49:32 +0200109 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +0200110 */
111 /* WaDisableSDEUnitClockGating:bxt */
112 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +0200113 GEN8_SDEUNIT_CLOCK_GATE_DISABLE |
114 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deak32608ca2015-03-11 11:10:27 +0200115
Robert Beckette3a29052015-03-11 10:28:25 +0200116 /* FIXME: apply on A0 only */
117 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_TLBPF);
Imre Deaka82abe42015-03-27 14:00:04 +0200118}
119
Daniel Vetterc921aba2012-04-26 23:28:17 +0200120static void i915_pineview_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 u32 tmp;
124
125 tmp = I915_READ(CLKCFG);
126
127 switch (tmp & CLKCFG_FSB_MASK) {
128 case CLKCFG_FSB_533:
129 dev_priv->fsb_freq = 533; /* 133*4 */
130 break;
131 case CLKCFG_FSB_800:
132 dev_priv->fsb_freq = 800; /* 200*4 */
133 break;
134 case CLKCFG_FSB_667:
135 dev_priv->fsb_freq = 667; /* 167*4 */
136 break;
137 case CLKCFG_FSB_400:
138 dev_priv->fsb_freq = 400; /* 100*4 */
139 break;
140 }
141
142 switch (tmp & CLKCFG_MEM_MASK) {
143 case CLKCFG_MEM_533:
144 dev_priv->mem_freq = 533;
145 break;
146 case CLKCFG_MEM_667:
147 dev_priv->mem_freq = 667;
148 break;
149 case CLKCFG_MEM_800:
150 dev_priv->mem_freq = 800;
151 break;
152 }
153
154 /* detect pineview DDR3 setting */
155 tmp = I915_READ(CSHRDDR3CTL);
156 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
157}
158
159static void i915_ironlake_get_mem_freq(struct drm_device *dev)
160{
Jani Nikula50227e12014-03-31 14:27:21 +0300161 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200162 u16 ddrpll, csipll;
163
164 ddrpll = I915_READ16(DDRMPLL1);
165 csipll = I915_READ16(CSIPLL0);
166
167 switch (ddrpll & 0xff) {
168 case 0xc:
169 dev_priv->mem_freq = 800;
170 break;
171 case 0x10:
172 dev_priv->mem_freq = 1066;
173 break;
174 case 0x14:
175 dev_priv->mem_freq = 1333;
176 break;
177 case 0x18:
178 dev_priv->mem_freq = 1600;
179 break;
180 default:
181 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
182 ddrpll & 0xff);
183 dev_priv->mem_freq = 0;
184 break;
185 }
186
Daniel Vetter20e4d402012-08-08 23:35:39 +0200187 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200188
189 switch (csipll & 0x3ff) {
190 case 0x00c:
191 dev_priv->fsb_freq = 3200;
192 break;
193 case 0x00e:
194 dev_priv->fsb_freq = 3733;
195 break;
196 case 0x010:
197 dev_priv->fsb_freq = 4266;
198 break;
199 case 0x012:
200 dev_priv->fsb_freq = 4800;
201 break;
202 case 0x014:
203 dev_priv->fsb_freq = 5333;
204 break;
205 case 0x016:
206 dev_priv->fsb_freq = 5866;
207 break;
208 case 0x018:
209 dev_priv->fsb_freq = 6400;
210 break;
211 default:
212 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
213 csipll & 0x3ff);
214 dev_priv->fsb_freq = 0;
215 break;
216 }
217
218 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200219 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200220 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200221 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200222 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200223 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200224 }
225}
226
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300227static const struct cxsr_latency cxsr_latency_table[] = {
228 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
229 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
230 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
231 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
232 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
233
234 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
235 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
236 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
237 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
238 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
239
240 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
241 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
242 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
243 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
244 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
245
246 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
247 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
248 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
249 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
250 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
251
252 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
253 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
254 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
255 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
256 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
257
258 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
259 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
260 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
261 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
262 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
263};
264
Daniel Vetter63c62272012-04-21 23:17:55 +0200265static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300266 int is_ddr3,
267 int fsb,
268 int mem)
269{
270 const struct cxsr_latency *latency;
271 int i;
272
273 if (fsb == 0 || mem == 0)
274 return NULL;
275
276 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
277 latency = &cxsr_latency_table[i];
278 if (is_desktop == latency->is_desktop &&
279 is_ddr3 == latency->is_ddr3 &&
280 fsb == latency->fsb_freq && mem == latency->mem_freq)
281 return latency;
282 }
283
284 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
285
286 return NULL;
287}
288
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200289static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
290{
291 u32 val;
292
293 mutex_lock(&dev_priv->rps.hw_lock);
294
295 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
296 if (enable)
297 val &= ~FORCE_DDR_HIGH_FREQ;
298 else
299 val |= FORCE_DDR_HIGH_FREQ;
300 val &= ~FORCE_DDR_LOW_FREQ;
301 val |= FORCE_DDR_FREQ_REQ_ACK;
302 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
303
304 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
305 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
306 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
307
308 mutex_unlock(&dev_priv->rps.hw_lock);
309}
310
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200311static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
312{
313 u32 val;
314
315 mutex_lock(&dev_priv->rps.hw_lock);
316
317 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
318 if (enable)
319 val |= DSP_MAXFIFO_PM5_ENABLE;
320 else
321 val &= ~DSP_MAXFIFO_PM5_ENABLE;
322 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
323
324 mutex_unlock(&dev_priv->rps.hw_lock);
325}
326
Ville Syrjäläf4998962015-03-10 17:02:21 +0200327#define FW_WM(value, plane) \
328 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
329
Imre Deak5209b1f2014-07-01 12:36:17 +0300330void intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300331{
Imre Deak5209b1f2014-07-01 12:36:17 +0300332 struct drm_device *dev = dev_priv->dev;
333 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300334
Imre Deak5209b1f2014-07-01 12:36:17 +0300335 if (IS_VALLEYVIEW(dev)) {
336 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200337 if (IS_CHERRYVIEW(dev))
338 chv_set_memory_pm5(dev_priv, enable);
Imre Deak5209b1f2014-07-01 12:36:17 +0300339 } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) {
340 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
341 } else if (IS_PINEVIEW(dev)) {
342 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
343 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
344 I915_WRITE(DSPFW3, val);
345 } else if (IS_I945G(dev) || IS_I945GM(dev)) {
346 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
347 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
348 I915_WRITE(FW_BLC_SELF, val);
349 } else if (IS_I915GM(dev)) {
350 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
351 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
352 I915_WRITE(INSTPM, val);
353 } else {
354 return;
355 }
356
357 DRM_DEBUG_KMS("memory self-refresh is %s\n",
358 enable ? "enabled" : "disabled");
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300359}
360
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200361
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300362/*
363 * Latency for FIFO fetches is dependent on several factors:
364 * - memory configuration (speed, channels)
365 * - chipset
366 * - current MCH state
367 * It can be fairly high in some situations, so here we assume a fairly
368 * pessimal value. It's a tradeoff between extra memory fetches (if we
369 * set this value too high, the FIFO will fetch frequently to stay full)
370 * and power consumption (set it too low to save power and we might see
371 * FIFO underruns and display "flicker").
372 *
373 * A value of 5us seems to be a good balance; safe for very low end
374 * platforms but not overly aggressive on lower latency configs.
375 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100376static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300377
Ville Syrjäläb5004722015-03-05 21:19:47 +0200378#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
379 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
380
381static int vlv_get_fifo_size(struct drm_device *dev,
382 enum pipe pipe, int plane)
383{
384 struct drm_i915_private *dev_priv = dev->dev_private;
385 int sprite0_start, sprite1_start, size;
386
387 switch (pipe) {
388 uint32_t dsparb, dsparb2, dsparb3;
389 case PIPE_A:
390 dsparb = I915_READ(DSPARB);
391 dsparb2 = I915_READ(DSPARB2);
392 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
393 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
394 break;
395 case PIPE_B:
396 dsparb = I915_READ(DSPARB);
397 dsparb2 = I915_READ(DSPARB2);
398 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
399 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
400 break;
401 case PIPE_C:
402 dsparb2 = I915_READ(DSPARB2);
403 dsparb3 = I915_READ(DSPARB3);
404 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
405 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
406 break;
407 default:
408 return 0;
409 }
410
411 switch (plane) {
412 case 0:
413 size = sprite0_start;
414 break;
415 case 1:
416 size = sprite1_start - sprite0_start;
417 break;
418 case 2:
419 size = 512 - 1 - sprite1_start;
420 break;
421 default:
422 return 0;
423 }
424
425 DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n",
426 pipe_name(pipe), plane == 0 ? "primary" : "sprite",
427 plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1),
428 size);
429
430 return size;
431}
432
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300433static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300434{
435 struct drm_i915_private *dev_priv = dev->dev_private;
436 uint32_t dsparb = I915_READ(DSPARB);
437 int size;
438
439 size = dsparb & 0x7f;
440 if (plane)
441 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
442
443 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
444 plane ? "B" : "A", size);
445
446 return size;
447}
448
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200449static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300450{
451 struct drm_i915_private *dev_priv = dev->dev_private;
452 uint32_t dsparb = I915_READ(DSPARB);
453 int size;
454
455 size = dsparb & 0x1ff;
456 if (plane)
457 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
458 size >>= 1; /* Convert to cachelines */
459
460 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
461 plane ? "B" : "A", size);
462
463 return size;
464}
465
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300466static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300467{
468 struct drm_i915_private *dev_priv = dev->dev_private;
469 uint32_t dsparb = I915_READ(DSPARB);
470 int size;
471
472 size = dsparb & 0x7f;
473 size >>= 2; /* Convert to cachelines */
474
475 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
476 plane ? "B" : "A",
477 size);
478
479 return size;
480}
481
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300482/* Pineview has different values for various configs */
483static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300484 .fifo_size = PINEVIEW_DISPLAY_FIFO,
485 .max_wm = PINEVIEW_MAX_WM,
486 .default_wm = PINEVIEW_DFT_WM,
487 .guard_size = PINEVIEW_GUARD_WM,
488 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300489};
490static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300491 .fifo_size = PINEVIEW_DISPLAY_FIFO,
492 .max_wm = PINEVIEW_MAX_WM,
493 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
494 .guard_size = PINEVIEW_GUARD_WM,
495 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300496};
497static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300498 .fifo_size = PINEVIEW_CURSOR_FIFO,
499 .max_wm = PINEVIEW_CURSOR_MAX_WM,
500 .default_wm = PINEVIEW_CURSOR_DFT_WM,
501 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
502 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300503};
504static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300505 .fifo_size = PINEVIEW_CURSOR_FIFO,
506 .max_wm = PINEVIEW_CURSOR_MAX_WM,
507 .default_wm = PINEVIEW_CURSOR_DFT_WM,
508 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
509 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300510};
511static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300512 .fifo_size = G4X_FIFO_SIZE,
513 .max_wm = G4X_MAX_WM,
514 .default_wm = G4X_MAX_WM,
515 .guard_size = 2,
516 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300517};
518static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300519 .fifo_size = I965_CURSOR_FIFO,
520 .max_wm = I965_CURSOR_MAX_WM,
521 .default_wm = I965_CURSOR_DFT_WM,
522 .guard_size = 2,
523 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300524};
525static const struct intel_watermark_params valleyview_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300526 .fifo_size = VALLEYVIEW_FIFO_SIZE,
527 .max_wm = VALLEYVIEW_MAX_WM,
528 .default_wm = VALLEYVIEW_MAX_WM,
529 .guard_size = 2,
530 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300531};
532static const struct intel_watermark_params valleyview_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300533 .fifo_size = I965_CURSOR_FIFO,
534 .max_wm = VALLEYVIEW_CURSOR_MAX_WM,
535 .default_wm = I965_CURSOR_DFT_WM,
536 .guard_size = 2,
537 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300538};
539static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300540 .fifo_size = I965_CURSOR_FIFO,
541 .max_wm = I965_CURSOR_MAX_WM,
542 .default_wm = I965_CURSOR_DFT_WM,
543 .guard_size = 2,
544 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300545};
546static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300547 .fifo_size = I945_FIFO_SIZE,
548 .max_wm = I915_MAX_WM,
549 .default_wm = 1,
550 .guard_size = 2,
551 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300552};
553static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300554 .fifo_size = I915_FIFO_SIZE,
555 .max_wm = I915_MAX_WM,
556 .default_wm = 1,
557 .guard_size = 2,
558 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300559};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300560static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300561 .fifo_size = I855GM_FIFO_SIZE,
562 .max_wm = I915_MAX_WM,
563 .default_wm = 1,
564 .guard_size = 2,
565 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300566};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300567static const struct intel_watermark_params i830_bc_wm_info = {
568 .fifo_size = I855GM_FIFO_SIZE,
569 .max_wm = I915_MAX_WM/2,
570 .default_wm = 1,
571 .guard_size = 2,
572 .cacheline_size = I830_FIFO_LINE_SIZE,
573};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200574static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300575 .fifo_size = I830_FIFO_SIZE,
576 .max_wm = I915_MAX_WM,
577 .default_wm = 1,
578 .guard_size = 2,
579 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300580};
581
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300582/**
583 * intel_calculate_wm - calculate watermark level
584 * @clock_in_khz: pixel clock
585 * @wm: chip FIFO params
586 * @pixel_size: display pixel size
587 * @latency_ns: memory latency for the platform
588 *
589 * Calculate the watermark level (the level at which the display plane will
590 * start fetching from memory again). Each chip has a different display
591 * FIFO size and allocation, so the caller needs to figure that out and pass
592 * in the correct intel_watermark_params structure.
593 *
594 * As the pixel clock runs, the FIFO will be drained at a rate that depends
595 * on the pixel size. When it reaches the watermark level, it'll start
596 * fetching FIFO line sized based chunks from memory until the FIFO fills
597 * past the watermark point. If the FIFO drains completely, a FIFO underrun
598 * will occur, and a display engine hang could result.
599 */
600static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
601 const struct intel_watermark_params *wm,
602 int fifo_size,
603 int pixel_size,
604 unsigned long latency_ns)
605{
606 long entries_required, wm_size;
607
608 /*
609 * Note: we need to make sure we don't overflow for various clock &
610 * latency values.
611 * clocks go from a few thousand to several hundred thousand.
612 * latency is usually a few thousand
613 */
614 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
615 1000;
616 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
617
618 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
619
620 wm_size = fifo_size - (entries_required + wm->guard_size);
621
622 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
623
624 /* Don't promote wm_size to unsigned... */
625 if (wm_size > (long)wm->max_wm)
626 wm_size = wm->max_wm;
627 if (wm_size <= 0)
628 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300629
630 /*
631 * Bspec seems to indicate that the value shouldn't be lower than
632 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
633 * Lets go for 8 which is the burst size since certain platforms
634 * already use a hardcoded 8 (which is what the spec says should be
635 * done).
636 */
637 if (wm_size <= 8)
638 wm_size = 8;
639
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300640 return wm_size;
641}
642
643static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
644{
645 struct drm_crtc *crtc, *enabled = NULL;
646
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100647 for_each_crtc(dev, crtc) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000648 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300649 if (enabled)
650 return NULL;
651 enabled = crtc;
652 }
653 }
654
655 return enabled;
656}
657
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300658static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300659{
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300660 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300661 struct drm_i915_private *dev_priv = dev->dev_private;
662 struct drm_crtc *crtc;
663 const struct cxsr_latency *latency;
664 u32 reg;
665 unsigned long wm;
666
667 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
668 dev_priv->fsb_freq, dev_priv->mem_freq);
669 if (!latency) {
670 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300671 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300672 return;
673 }
674
675 crtc = single_enabled_crtc(dev);
676 if (crtc) {
Damien Lespiau241bfc32013-09-25 16:45:37 +0100677 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -0800678 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100679 int clock;
680
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200681 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100682 clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300683
684 /* Display SR */
685 wm = intel_calculate_wm(clock, &pineview_display_wm,
686 pineview_display_wm.fifo_size,
687 pixel_size, latency->display_sr);
688 reg = I915_READ(DSPFW1);
689 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200690 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300691 I915_WRITE(DSPFW1, reg);
692 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
693
694 /* cursor SR */
695 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
696 pineview_display_wm.fifo_size,
697 pixel_size, latency->cursor_sr);
698 reg = I915_READ(DSPFW3);
699 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200700 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300701 I915_WRITE(DSPFW3, reg);
702
703 /* Display HPLL off SR */
704 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
705 pineview_display_hplloff_wm.fifo_size,
706 pixel_size, latency->display_hpll_disable);
707 reg = I915_READ(DSPFW3);
708 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200709 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300710 I915_WRITE(DSPFW3, reg);
711
712 /* cursor HPLL off SR */
713 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
714 pineview_display_hplloff_wm.fifo_size,
715 pixel_size, latency->cursor_hpll_disable);
716 reg = I915_READ(DSPFW3);
717 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200718 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300719 I915_WRITE(DSPFW3, reg);
720 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
721
Imre Deak5209b1f2014-07-01 12:36:17 +0300722 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300723 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300724 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300725 }
726}
727
728static bool g4x_compute_wm0(struct drm_device *dev,
729 int plane,
730 const struct intel_watermark_params *display,
731 int display_latency_ns,
732 const struct intel_watermark_params *cursor,
733 int cursor_latency_ns,
734 int *plane_wm,
735 int *cursor_wm)
736{
737 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300738 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300739 int htotal, hdisplay, clock, pixel_size;
740 int line_time_us, line_count;
741 int entries, tlb_miss;
742
743 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +0000744 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300745 *cursor_wm = cursor->guard_size;
746 *plane_wm = display->guard_size;
747 return false;
748 }
749
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200750 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100751 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800752 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200753 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800754 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300755
756 /* Use the small buffer method to calculate plane watermark */
757 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
758 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
759 if (tlb_miss > 0)
760 entries += tlb_miss;
761 entries = DIV_ROUND_UP(entries, display->cacheline_size);
762 *plane_wm = entries + display->guard_size;
763 if (*plane_wm > (int)display->max_wm)
764 *plane_wm = display->max_wm;
765
766 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200767 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300768 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Matt Roper3dd512f2015-02-27 10:12:00 -0800769 entries = line_count * crtc->cursor->state->crtc_w * pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300770 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
771 if (tlb_miss > 0)
772 entries += tlb_miss;
773 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
774 *cursor_wm = entries + cursor->guard_size;
775 if (*cursor_wm > (int)cursor->max_wm)
776 *cursor_wm = (int)cursor->max_wm;
777
778 return true;
779}
780
781/*
782 * Check the wm result.
783 *
784 * If any calculated watermark values is larger than the maximum value that
785 * can be programmed into the associated watermark register, that watermark
786 * must be disabled.
787 */
788static bool g4x_check_srwm(struct drm_device *dev,
789 int display_wm, int cursor_wm,
790 const struct intel_watermark_params *display,
791 const struct intel_watermark_params *cursor)
792{
793 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
794 display_wm, cursor_wm);
795
796 if (display_wm > display->max_wm) {
797 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
798 display_wm, display->max_wm);
799 return false;
800 }
801
802 if (cursor_wm > cursor->max_wm) {
803 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
804 cursor_wm, cursor->max_wm);
805 return false;
806 }
807
808 if (!(display_wm || cursor_wm)) {
809 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
810 return false;
811 }
812
813 return true;
814}
815
816static bool g4x_compute_srwm(struct drm_device *dev,
817 int plane,
818 int latency_ns,
819 const struct intel_watermark_params *display,
820 const struct intel_watermark_params *cursor,
821 int *display_wm, int *cursor_wm)
822{
823 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300824 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300825 int hdisplay, htotal, pixel_size, clock;
826 unsigned long line_time_us;
827 int line_count, line_size;
828 int small, large;
829 int entries;
830
831 if (!latency_ns) {
832 *display_wm = *cursor_wm = 0;
833 return false;
834 }
835
836 crtc = intel_get_crtc_for_plane(dev, plane);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200837 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100838 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800839 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200840 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800841 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300842
Ville Syrjälä922044c2014-02-14 14:18:57 +0200843 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300844 line_count = (latency_ns / line_time_us + 1000) / 1000;
845 line_size = hdisplay * pixel_size;
846
847 /* Use the minimum of the small and large buffer method for primary */
848 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
849 large = line_count * line_size;
850
851 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
852 *display_wm = entries + display->guard_size;
853
854 /* calculate the self-refresh watermark for display cursor */
Matt Roper3dd512f2015-02-27 10:12:00 -0800855 entries = line_count * pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300856 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
857 *cursor_wm = entries + cursor->guard_size;
858
859 return g4x_check_srwm(dev,
860 *display_wm, *cursor_wm,
861 display, cursor);
862}
863
Ville Syrjälä15665972015-03-10 16:16:28 +0200864#define FW_WM_VLV(value, plane) \
865 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
866
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200867static void vlv_write_wm_values(struct intel_crtc *crtc,
868 const struct vlv_wm_values *wm)
869{
870 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
871 enum pipe pipe = crtc->pipe;
872
873 I915_WRITE(VLV_DDL(pipe),
874 (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) |
875 (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) |
876 (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) |
877 (wm->ddl[pipe].primary << DDL_PLANE_SHIFT));
878
Ville Syrjäläae801522015-03-05 21:19:49 +0200879 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200880 FW_WM(wm->sr.plane, SR) |
881 FW_WM(wm->pipe[PIPE_B].cursor, CURSORB) |
882 FW_WM_VLV(wm->pipe[PIPE_B].primary, PLANEB) |
883 FW_WM_VLV(wm->pipe[PIPE_A].primary, PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200884 I915_WRITE(DSPFW2,
Ville Syrjälä15665972015-03-10 16:16:28 +0200885 FW_WM_VLV(wm->pipe[PIPE_A].sprite[1], SPRITEB) |
886 FW_WM(wm->pipe[PIPE_A].cursor, CURSORA) |
887 FW_WM_VLV(wm->pipe[PIPE_A].sprite[0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200888 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200889 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200890
891 if (IS_CHERRYVIEW(dev_priv)) {
892 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200893 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
894 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200895 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200896 FW_WM_VLV(wm->pipe[PIPE_C].sprite[1], SPRITEF) |
897 FW_WM_VLV(wm->pipe[PIPE_C].sprite[0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200898 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200899 FW_WM_VLV(wm->pipe[PIPE_C].primary, PLANEC) |
900 FW_WM(wm->pipe[PIPE_C].cursor, CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200901 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200902 FW_WM(wm->sr.plane >> 9, SR_HI) |
903 FW_WM(wm->pipe[PIPE_C].sprite[1] >> 8, SPRITEF_HI) |
904 FW_WM(wm->pipe[PIPE_C].sprite[0] >> 8, SPRITEE_HI) |
905 FW_WM(wm->pipe[PIPE_C].primary >> 8, PLANEC_HI) |
906 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
907 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
908 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
909 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
910 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
911 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200912 } else {
913 I915_WRITE(DSPFW7,
Ville Syrjälä15665972015-03-10 16:16:28 +0200914 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
915 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200916 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200917 FW_WM(wm->sr.plane >> 9, SR_HI) |
918 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
919 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
920 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
921 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
922 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
923 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200924 }
925
926 POSTING_READ(DSPFW1);
927
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200928 dev_priv->wm.vlv = *wm;
929}
930
Ville Syrjälä15665972015-03-10 16:16:28 +0200931#undef FW_WM_VLV
932
Ville Syrjälä341c5262015-03-05 21:19:44 +0200933static uint8_t vlv_compute_drain_latency(struct drm_crtc *crtc,
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200934 struct drm_plane *plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300935{
Rodrigo Vivi5e56ba42014-10-17 08:05:08 -0700936 struct drm_device *dev = crtc->dev;
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200937 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
938 int entries, prec_mult, drain_latency, pixel_size;
939 int clock = intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä341c5262015-03-05 21:19:44 +0200940 const int high_precision = IS_CHERRYVIEW(dev) ? 16 : 64;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300941
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200942 /*
943 * FIXME the plane might have an fb
944 * but be invisible (eg. due to clipping)
945 */
946 if (!intel_crtc->active || !plane->state->fb)
947 return 0;
948
Gajanan Bhat0948c262014-08-07 01:58:24 +0530949 if (WARN(clock == 0, "Pixel clock is zero!\n"))
Ville Syrjälä341c5262015-03-05 21:19:44 +0200950 return 0;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300951
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200952 pixel_size = drm_format_plane_cpp(plane->state->fb->pixel_format, 0);
953
Gajanan Bhat0948c262014-08-07 01:58:24 +0530954 if (WARN(pixel_size == 0, "Pixel size is zero!\n"))
Ville Syrjälä341c5262015-03-05 21:19:44 +0200955 return 0;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300956
Gajanan Bhata398e9c2014-08-05 23:15:54 +0530957 entries = DIV_ROUND_UP(clock, 1000) * pixel_size;
Ville Syrjäläabfc00b2015-03-05 21:19:43 +0200958
Ville Syrjälä341c5262015-03-05 21:19:44 +0200959 prec_mult = high_precision;
960 drain_latency = 64 * prec_mult * 4 / entries;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300961
Ville Syrjälä341c5262015-03-05 21:19:44 +0200962 if (drain_latency > DRAIN_LATENCY_MASK) {
963 prec_mult /= 2;
964 drain_latency = 64 * prec_mult * 4 / entries;
Ville Syrjäläabfc00b2015-03-05 21:19:43 +0200965 }
966
Ville Syrjälä341c5262015-03-05 21:19:44 +0200967 if (drain_latency > DRAIN_LATENCY_MASK)
968 drain_latency = DRAIN_LATENCY_MASK;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300969
Ville Syrjälä341c5262015-03-05 21:19:44 +0200970 return drain_latency | (prec_mult == high_precision ?
971 DDL_PRECISION_HIGH : DDL_PRECISION_LOW);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300972}
973
Ville Syrjäläae801522015-03-05 21:19:49 +0200974static int vlv_compute_wm(struct intel_crtc *crtc,
975 struct intel_plane *plane,
976 int fifo_size)
977{
978 int clock, entries, pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300979
Ville Syrjäläae801522015-03-05 21:19:49 +0200980 /*
981 * FIXME the plane might have an fb
982 * but be invisible (eg. due to clipping)
983 */
984 if (!crtc->active || !plane->base.state->fb)
985 return 0;
986
987 pixel_size = drm_format_plane_cpp(plane->base.state->fb->pixel_format, 0);
988 clock = crtc->config->base.adjusted_mode.crtc_clock;
989
990 entries = DIV_ROUND_UP(clock, 1000) * pixel_size;
991
992 /*
993 * Set up the watermark such that we don't start issuing memory
994 * requests until we are within PND's max deadline value (256us).
995 * Idea being to be idle as long as possible while still taking
996 * advatange of PND's deadline scheduling. The limit of 8
997 * cachelines (used when the FIFO will anyway drain in less time
998 * than 256us) should match what we would be done if trickle
999 * feed were enabled.
1000 */
1001 return fifo_size - clamp(DIV_ROUND_UP(256 * entries, 64), 0, fifo_size - 8);
1002}
1003
1004static bool vlv_compute_sr_wm(struct drm_device *dev,
1005 struct vlv_wm_values *wm)
1006{
1007 struct drm_i915_private *dev_priv = to_i915(dev);
1008 struct drm_crtc *crtc;
1009 enum pipe pipe = INVALID_PIPE;
1010 int num_planes = 0;
1011 int fifo_size = 0;
1012 struct intel_plane *plane;
1013
1014 wm->sr.cursor = wm->sr.plane = 0;
1015
1016 crtc = single_enabled_crtc(dev);
1017 /* maxfifo not supported on pipe C */
1018 if (crtc && to_intel_crtc(crtc)->pipe != PIPE_C) {
1019 pipe = to_intel_crtc(crtc)->pipe;
1020 num_planes = !!wm->pipe[pipe].primary +
1021 !!wm->pipe[pipe].sprite[0] +
1022 !!wm->pipe[pipe].sprite[1];
1023 fifo_size = INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
1024 }
1025
1026 if (fifo_size == 0 || num_planes > 1)
1027 return false;
1028
1029 wm->sr.cursor = vlv_compute_wm(to_intel_crtc(crtc),
1030 to_intel_plane(crtc->cursor), 0x3f);
1031
1032 list_for_each_entry(plane, &dev->mode_config.plane_list, base.head) {
1033 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1034 continue;
1035
1036 if (plane->pipe != pipe)
1037 continue;
1038
1039 wm->sr.plane = vlv_compute_wm(to_intel_crtc(crtc),
1040 plane, fifo_size);
1041 if (wm->sr.plane != 0)
1042 break;
1043 }
1044
1045 return true;
1046}
1047
1048static void valleyview_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001049{
Rodrigo Vivi5e56ba42014-10-17 08:05:08 -07001050 struct drm_device *dev = crtc->dev;
1051 struct drm_i915_private *dev_priv = dev->dev_private;
Gajanan Bhat0948c262014-08-07 01:58:24 +05301052 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gajanan Bhat0948c262014-08-07 01:58:24 +05301053 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläae801522015-03-05 21:19:49 +02001054 bool cxsr_enabled;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001055 struct vlv_wm_values wm = dev_priv->wm.vlv;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001056
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001057 wm.ddl[pipe].primary = vlv_compute_drain_latency(crtc, crtc->primary);
Ville Syrjäläae801522015-03-05 21:19:49 +02001058 wm.pipe[pipe].primary = vlv_compute_wm(intel_crtc,
1059 to_intel_plane(crtc->primary),
1060 vlv_get_fifo_size(dev, pipe, 0));
1061
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001062 wm.ddl[pipe].cursor = vlv_compute_drain_latency(crtc, crtc->cursor);
Ville Syrjäläae801522015-03-05 21:19:49 +02001063 wm.pipe[pipe].cursor = vlv_compute_wm(intel_crtc,
1064 to_intel_plane(crtc->cursor),
1065 0x3f);
1066
1067 cxsr_enabled = vlv_compute_sr_wm(dev, &wm);
1068
1069 if (memcmp(&wm, &dev_priv->wm.vlv, sizeof(wm)) == 0)
1070 return;
1071
1072 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1073 "SR: plane=%d, cursor=%d\n", pipe_name(pipe),
1074 wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1075 wm.sr.plane, wm.sr.cursor);
1076
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +02001077 /*
1078 * FIXME DDR DVFS introduces massive memory latencies which
1079 * are not known to system agent so any deadline specified
1080 * by the display may not be respected. To support DDR DVFS
1081 * the watermark code needs to be rewritten to essentially
1082 * bypass deadline mechanism and rely solely on the
1083 * watermarks. For now disable DDR DVFS.
1084 */
1085 if (IS_CHERRYVIEW(dev_priv))
1086 chv_set_memory_dvfs(dev_priv, false);
1087
Ville Syrjäläae801522015-03-05 21:19:49 +02001088 if (!cxsr_enabled)
1089 intel_set_memory_cxsr(dev_priv, false);
Gajanan Bhat0948c262014-08-07 01:58:24 +05301090
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001091 vlv_write_wm_values(intel_crtc, &wm);
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001092
1093 if (cxsr_enabled)
1094 intel_set_memory_cxsr(dev_priv, true);
1095}
1096
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301097static void valleyview_update_sprite_wm(struct drm_plane *plane,
1098 struct drm_crtc *crtc,
1099 uint32_t sprite_width,
1100 uint32_t sprite_height,
1101 int pixel_size,
1102 bool enabled, bool scaled)
1103{
1104 struct drm_device *dev = crtc->dev;
1105 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001106 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1107 enum pipe pipe = intel_crtc->pipe;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301108 int sprite = to_intel_plane(plane)->plane;
Ville Syrjäläae801522015-03-05 21:19:49 +02001109 bool cxsr_enabled;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001110 struct vlv_wm_values wm = dev_priv->wm.vlv;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301111
Ville Syrjäläae801522015-03-05 21:19:49 +02001112 if (enabled) {
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001113 wm.ddl[pipe].sprite[sprite] =
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001114 vlv_compute_drain_latency(crtc, plane);
Ville Syrjäläae801522015-03-05 21:19:49 +02001115
1116 wm.pipe[pipe].sprite[sprite] =
1117 vlv_compute_wm(intel_crtc,
1118 to_intel_plane(plane),
1119 vlv_get_fifo_size(dev, pipe, sprite+1));
1120 } else {
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001121 wm.ddl[pipe].sprite[sprite] = 0;
Ville Syrjäläae801522015-03-05 21:19:49 +02001122 wm.pipe[pipe].sprite[sprite] = 0;
1123 }
1124
1125 cxsr_enabled = vlv_compute_sr_wm(dev, &wm);
1126
1127 if (memcmp(&wm, &dev_priv->wm.vlv, sizeof(wm)) == 0)
1128 return;
1129
1130 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: sprite %c=%d, "
1131 "SR: plane=%d, cursor=%d\n", pipe_name(pipe),
1132 sprite_name(pipe, sprite),
1133 wm.pipe[pipe].sprite[sprite],
1134 wm.sr.plane, wm.sr.cursor);
1135
1136 if (!cxsr_enabled)
1137 intel_set_memory_cxsr(dev_priv, false);
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301138
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001139 vlv_write_wm_values(intel_crtc, &wm);
Ville Syrjäläae801522015-03-05 21:19:49 +02001140
1141 if (cxsr_enabled)
1142 intel_set_memory_cxsr(dev_priv, true);
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301143}
1144
Ville Syrjäläae801522015-03-05 21:19:49 +02001145#define single_plane_enabled(mask) is_power_of_2(mask)
1146
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001147static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001148{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001149 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001150 static const int sr_latency_ns = 12000;
1151 struct drm_i915_private *dev_priv = dev->dev_private;
1152 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1153 int plane_sr, cursor_sr;
1154 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001155 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001156
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001157 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001158 &g4x_wm_info, pessimal_latency_ns,
1159 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001160 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001161 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001162
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001163 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001164 &g4x_wm_info, pessimal_latency_ns,
1165 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001166 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001167 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001168
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001169 if (single_plane_enabled(enabled) &&
1170 g4x_compute_srwm(dev, ffs(enabled) - 1,
1171 sr_latency_ns,
1172 &g4x_wm_info,
1173 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001174 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001175 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001176 } else {
Imre Deak98584252014-06-13 14:54:20 +03001177 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001178 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001179 plane_sr = cursor_sr = 0;
1180 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001181
Ville Syrjäläa5043452014-06-28 02:04:18 +03001182 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1183 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001184 planea_wm, cursora_wm,
1185 planeb_wm, cursorb_wm,
1186 plane_sr, cursor_sr);
1187
1188 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001189 FW_WM(plane_sr, SR) |
1190 FW_WM(cursorb_wm, CURSORB) |
1191 FW_WM(planeb_wm, PLANEB) |
1192 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001193 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001194 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001195 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001196 /* HPLL off in SR has some issues on G4x... disable it */
1197 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001198 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001199 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001200
1201 if (cxsr_enabled)
1202 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001203}
1204
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001205static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001206{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001207 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001208 struct drm_i915_private *dev_priv = dev->dev_private;
1209 struct drm_crtc *crtc;
1210 int srwm = 1;
1211 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001212 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001213
1214 /* Calc sr entries for one plane configs */
1215 crtc = single_enabled_crtc(dev);
1216 if (crtc) {
1217 /* self-refresh has much higher latency */
1218 static const int sr_latency_ns = 12000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001219 const struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001220 &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001221 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001222 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001223 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001224 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001225 unsigned long line_time_us;
1226 int entries;
1227
Ville Syrjälä922044c2014-02-14 14:18:57 +02001228 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001229
1230 /* Use ns/us then divide to preserve precision */
1231 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1232 pixel_size * hdisplay;
1233 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1234 srwm = I965_FIFO_SIZE - entries;
1235 if (srwm < 0)
1236 srwm = 1;
1237 srwm &= 0x1ff;
1238 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1239 entries, srwm);
1240
1241 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Matt Roper3dd512f2015-02-27 10:12:00 -08001242 pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001243 entries = DIV_ROUND_UP(entries,
1244 i965_cursor_wm_info.cacheline_size);
1245 cursor_sr = i965_cursor_wm_info.fifo_size -
1246 (entries + i965_cursor_wm_info.guard_size);
1247
1248 if (cursor_sr > i965_cursor_wm_info.max_wm)
1249 cursor_sr = i965_cursor_wm_info.max_wm;
1250
1251 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1252 "cursor %d\n", srwm, cursor_sr);
1253
Imre Deak98584252014-06-13 14:54:20 +03001254 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001255 } else {
Imre Deak98584252014-06-13 14:54:20 +03001256 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001257 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001258 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001259 }
1260
1261 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1262 srwm);
1263
1264 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001265 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1266 FW_WM(8, CURSORB) |
1267 FW_WM(8, PLANEB) |
1268 FW_WM(8, PLANEA));
1269 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1270 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001271 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001272 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001273
1274 if (cxsr_enabled)
1275 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001276}
1277
Ville Syrjäläf4998962015-03-10 17:02:21 +02001278#undef FW_WM
1279
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001280static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001281{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001282 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001283 struct drm_i915_private *dev_priv = dev->dev_private;
1284 const struct intel_watermark_params *wm_info;
1285 uint32_t fwater_lo;
1286 uint32_t fwater_hi;
1287 int cwm, srwm = 1;
1288 int fifo_size;
1289 int planea_wm, planeb_wm;
1290 struct drm_crtc *crtc, *enabled = NULL;
1291
1292 if (IS_I945GM(dev))
1293 wm_info = &i945_wm_info;
1294 else if (!IS_GEN2(dev))
1295 wm_info = &i915_wm_info;
1296 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001297 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001298
1299 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1300 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001301 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001302 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001303 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001304 if (IS_GEN2(dev))
1305 cpp = 4;
1306
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001307 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001308 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001309 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001310 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001311 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001312 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001313 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001314 if (planea_wm > (long)wm_info->max_wm)
1315 planea_wm = wm_info->max_wm;
1316 }
1317
1318 if (IS_GEN2(dev))
1319 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001320
1321 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1322 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001323 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001324 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001325 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001326 if (IS_GEN2(dev))
1327 cpp = 4;
1328
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001329 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001330 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001331 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001332 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001333 if (enabled == NULL)
1334 enabled = crtc;
1335 else
1336 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001337 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001338 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001339 if (planeb_wm > (long)wm_info->max_wm)
1340 planeb_wm = wm_info->max_wm;
1341 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001342
1343 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1344
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001345 if (IS_I915GM(dev) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001346 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001347
Matt Roper59bea882015-02-27 10:12:01 -08001348 obj = intel_fb_obj(enabled->primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001349
1350 /* self-refresh seems busted with untiled */
Matt Roper2ff8fde2014-07-08 07:50:07 -07001351 if (obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001352 enabled = NULL;
1353 }
1354
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001355 /*
1356 * Overlay gets an aggressive default since video jitter is bad.
1357 */
1358 cwm = 2;
1359
1360 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001361 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001362
1363 /* Calc sr entries for one plane configs */
1364 if (HAS_FW_BLC(dev) && enabled) {
1365 /* self-refresh has much higher latency */
1366 static const int sr_latency_ns = 6000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001367 const struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001368 &to_intel_crtc(enabled)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001369 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001370 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001371 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001372 int pixel_size = enabled->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001373 unsigned long line_time_us;
1374 int entries;
1375
Ville Syrjälä922044c2014-02-14 14:18:57 +02001376 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001377
1378 /* Use ns/us then divide to preserve precision */
1379 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1380 pixel_size * hdisplay;
1381 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1382 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1383 srwm = wm_info->fifo_size - entries;
1384 if (srwm < 0)
1385 srwm = 1;
1386
1387 if (IS_I945G(dev) || IS_I945GM(dev))
1388 I915_WRITE(FW_BLC_SELF,
1389 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1390 else if (IS_I915GM(dev))
1391 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1392 }
1393
1394 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1395 planea_wm, planeb_wm, cwm, srwm);
1396
1397 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1398 fwater_hi = (cwm & 0x1f);
1399
1400 /* Set request length to 8 cachelines per fetch */
1401 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1402 fwater_hi = fwater_hi | (1 << 8);
1403
1404 I915_WRITE(FW_BLC, fwater_lo);
1405 I915_WRITE(FW_BLC2, fwater_hi);
1406
Imre Deak5209b1f2014-07-01 12:36:17 +03001407 if (enabled)
1408 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001409}
1410
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001411static void i845_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001412{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001413 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001414 struct drm_i915_private *dev_priv = dev->dev_private;
1415 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001416 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001417 uint32_t fwater_lo;
1418 int planea_wm;
1419
1420 crtc = single_enabled_crtc(dev);
1421 if (crtc == NULL)
1422 return;
1423
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001424 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001425 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001426 &i845_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001427 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001428 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001429 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1430 fwater_lo |= (3<<8) | planea_wm;
1431
1432 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1433
1434 I915_WRITE(FW_BLC, fwater_lo);
1435}
1436
Ville Syrjälä36587292013-07-05 11:57:16 +03001437static uint32_t ilk_pipe_pixel_rate(struct drm_device *dev,
1438 struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001439{
1440 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001441 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001442
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001443 pixel_rate = intel_crtc->config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001444
1445 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1446 * adjust the pixel_rate here. */
1447
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001448 if (intel_crtc->config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001449 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001450 uint32_t pfit_size = intel_crtc->config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001451
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001452 pipe_w = intel_crtc->config->pipe_src_w;
1453 pipe_h = intel_crtc->config->pipe_src_h;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001454 pfit_w = (pfit_size >> 16) & 0xFFFF;
1455 pfit_h = pfit_size & 0xFFFF;
1456 if (pipe_w < pfit_w)
1457 pipe_w = pfit_w;
1458 if (pipe_h < pfit_h)
1459 pipe_h = pfit_h;
1460
1461 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1462 pfit_w * pfit_h);
1463 }
1464
1465 return pixel_rate;
1466}
1467
Ville Syrjälä37126462013-08-01 16:18:55 +03001468/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001469static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001470 uint32_t latency)
1471{
1472 uint64_t ret;
1473
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001474 if (WARN(latency == 0, "Latency value missing\n"))
1475 return UINT_MAX;
1476
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001477 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
1478 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1479
1480 return ret;
1481}
1482
Ville Syrjälä37126462013-08-01 16:18:55 +03001483/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001484static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001485 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
1486 uint32_t latency)
1487{
1488 uint32_t ret;
1489
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001490 if (WARN(latency == 0, "Latency value missing\n"))
1491 return UINT_MAX;
1492
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001493 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
1494 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
1495 ret = DIV_ROUND_UP(ret, 64) + 2;
1496 return ret;
1497}
1498
Ville Syrjälä23297042013-07-05 11:57:17 +03001499static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001500 uint8_t bytes_per_pixel)
1501{
1502 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
1503}
1504
Pradeep Bhat2ac96d22014-11-04 17:06:40 +00001505struct skl_pipe_wm_parameters {
1506 bool active;
1507 uint32_t pipe_htotal;
1508 uint32_t pixel_rate; /* in KHz */
1509 struct intel_plane_wm_parameters plane[I915_MAX_PLANES];
1510 struct intel_plane_wm_parameters cursor;
1511};
1512
Imre Deak820c1982013-12-17 14:46:36 +02001513struct ilk_pipe_wm_parameters {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001514 bool active;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001515 uint32_t pipe_htotal;
1516 uint32_t pixel_rate;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001517 struct intel_plane_wm_parameters pri;
1518 struct intel_plane_wm_parameters spr;
1519 struct intel_plane_wm_parameters cur;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001520};
1521
Imre Deak820c1982013-12-17 14:46:36 +02001522struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001523 uint16_t pri;
1524 uint16_t spr;
1525 uint16_t cur;
1526 uint16_t fbc;
1527};
1528
Ville Syrjälä240264f2013-08-07 13:29:12 +03001529/* used in computing the new watermarks state */
1530struct intel_wm_config {
1531 unsigned int num_pipes_active;
1532 bool sprites_enabled;
1533 bool sprites_scaled;
Ville Syrjälä240264f2013-08-07 13:29:12 +03001534};
1535
Ville Syrjälä37126462013-08-01 16:18:55 +03001536/*
1537 * For both WM_PIPE and WM_LP.
1538 * mem_value must be in 0.1us units.
1539 */
Imre Deak820c1982013-12-17 14:46:36 +02001540static uint32_t ilk_compute_pri_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001541 uint32_t mem_value,
1542 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001543{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001544 uint32_t method1, method2;
1545
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001546 if (!params->active || !params->pri.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001547 return 0;
1548
Ville Syrjälä23297042013-07-05 11:57:17 +03001549 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001550 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001551 mem_value);
1552
1553 if (!is_lp)
1554 return method1;
1555
Ville Syrjälä23297042013-07-05 11:57:17 +03001556 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001557 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001558 params->pri.horiz_pixels,
1559 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001560 mem_value);
1561
1562 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001563}
1564
Ville Syrjälä37126462013-08-01 16:18:55 +03001565/*
1566 * For both WM_PIPE and WM_LP.
1567 * mem_value must be in 0.1us units.
1568 */
Imre Deak820c1982013-12-17 14:46:36 +02001569static uint32_t ilk_compute_spr_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001570 uint32_t mem_value)
1571{
1572 uint32_t method1, method2;
1573
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001574 if (!params->active || !params->spr.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001575 return 0;
1576
Ville Syrjälä23297042013-07-05 11:57:17 +03001577 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001578 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001579 mem_value);
Ville Syrjälä23297042013-07-05 11:57:17 +03001580 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001581 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001582 params->spr.horiz_pixels,
1583 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001584 mem_value);
1585 return min(method1, method2);
1586}
1587
Ville Syrjälä37126462013-08-01 16:18:55 +03001588/*
1589 * For both WM_PIPE and WM_LP.
1590 * mem_value must be in 0.1us units.
1591 */
Imre Deak820c1982013-12-17 14:46:36 +02001592static uint32_t ilk_compute_cur_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001593 uint32_t mem_value)
1594{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001595 if (!params->active || !params->cur.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001596 return 0;
1597
Ville Syrjälä23297042013-07-05 11:57:17 +03001598 return ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001599 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001600 params->cur.horiz_pixels,
1601 params->cur.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001602 mem_value);
1603}
1604
Paulo Zanonicca32e92013-05-31 11:45:06 -03001605/* Only for WM_LP. */
Imre Deak820c1982013-12-17 14:46:36 +02001606static uint32_t ilk_compute_fbc_wm(const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001607 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001608{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001609 if (!params->active || !params->pri.enabled)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001610 return 0;
1611
Ville Syrjälä23297042013-07-05 11:57:17 +03001612 return ilk_wm_fbc(pri_val,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001613 params->pri.horiz_pixels,
1614 params->pri.bytes_per_pixel);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001615}
1616
Ville Syrjälä158ae642013-08-07 13:28:19 +03001617static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1618{
Ville Syrjälä416f4722013-11-02 21:07:46 -07001619 if (INTEL_INFO(dev)->gen >= 8)
1620 return 3072;
1621 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001622 return 768;
1623 else
1624 return 512;
1625}
1626
Ville Syrjälä4e975082014-03-07 18:32:11 +02001627static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1628 int level, bool is_sprite)
1629{
1630 if (INTEL_INFO(dev)->gen >= 8)
1631 /* BDW primary/sprite plane watermarks */
1632 return level == 0 ? 255 : 2047;
1633 else if (INTEL_INFO(dev)->gen >= 7)
1634 /* IVB/HSW primary/sprite plane watermarks */
1635 return level == 0 ? 127 : 1023;
1636 else if (!is_sprite)
1637 /* ILK/SNB primary plane watermarks */
1638 return level == 0 ? 127 : 511;
1639 else
1640 /* ILK/SNB sprite plane watermarks */
1641 return level == 0 ? 63 : 255;
1642}
1643
1644static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1645 int level)
1646{
1647 if (INTEL_INFO(dev)->gen >= 7)
1648 return level == 0 ? 63 : 255;
1649 else
1650 return level == 0 ? 31 : 63;
1651}
1652
1653static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1654{
1655 if (INTEL_INFO(dev)->gen >= 8)
1656 return 31;
1657 else
1658 return 15;
1659}
1660
Ville Syrjälä158ae642013-08-07 13:28:19 +03001661/* Calculate the maximum primary/sprite plane watermark */
1662static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1663 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001664 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001665 enum intel_ddb_partitioning ddb_partitioning,
1666 bool is_sprite)
1667{
1668 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001669
1670 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001671 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001672 return 0;
1673
1674 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001675 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001676 fifo_size /= INTEL_INFO(dev)->num_pipes;
1677
1678 /*
1679 * For some reason the non self refresh
1680 * FIFO size is only half of the self
1681 * refresh FIFO size on ILK/SNB.
1682 */
1683 if (INTEL_INFO(dev)->gen <= 6)
1684 fifo_size /= 2;
1685 }
1686
Ville Syrjälä240264f2013-08-07 13:29:12 +03001687 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001688 /* level 0 is always calculated with 1:1 split */
1689 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1690 if (is_sprite)
1691 fifo_size *= 5;
1692 fifo_size /= 6;
1693 } else {
1694 fifo_size /= 2;
1695 }
1696 }
1697
1698 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001699 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001700}
1701
1702/* Calculate the maximum cursor plane watermark */
1703static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001704 int level,
1705 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001706{
1707 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001708 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001709 return 64;
1710
1711 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001712 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001713}
1714
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001715static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001716 int level,
1717 const struct intel_wm_config *config,
1718 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001719 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001720{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001721 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1722 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1723 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02001724 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001725}
1726
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001727static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
1728 int level,
1729 struct ilk_wm_maximums *max)
1730{
1731 max->pri = ilk_plane_wm_reg_max(dev, level, false);
1732 max->spr = ilk_plane_wm_reg_max(dev, level, true);
1733 max->cur = ilk_cursor_wm_reg_max(dev, level);
1734 max->fbc = ilk_fbc_wm_reg_max(dev);
1735}
1736
Ville Syrjäläd9395652013-10-09 19:18:10 +03001737static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001738 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001739 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001740{
1741 bool ret;
1742
1743 /* already determined to be invalid? */
1744 if (!result->enable)
1745 return false;
1746
1747 result->enable = result->pri_val <= max->pri &&
1748 result->spr_val <= max->spr &&
1749 result->cur_val <= max->cur;
1750
1751 ret = result->enable;
1752
1753 /*
1754 * HACK until we can pre-compute everything,
1755 * and thus fail gracefully if LP0 watermarks
1756 * are exceeded...
1757 */
1758 if (level == 0 && !result->enable) {
1759 if (result->pri_val > max->pri)
1760 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
1761 level, result->pri_val, max->pri);
1762 if (result->spr_val > max->spr)
1763 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
1764 level, result->spr_val, max->spr);
1765 if (result->cur_val > max->cur)
1766 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
1767 level, result->cur_val, max->cur);
1768
1769 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
1770 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
1771 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
1772 result->enable = true;
1773 }
1774
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001775 return ret;
1776}
1777
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001778static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03001779 int level,
Imre Deak820c1982013-12-17 14:46:36 +02001780 const struct ilk_pipe_wm_parameters *p,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03001781 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03001782{
1783 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
1784 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
1785 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
1786
1787 /* WM1+ latency values stored in 0.5us units */
1788 if (level > 0) {
1789 pri_latency *= 5;
1790 spr_latency *= 5;
1791 cur_latency *= 5;
1792 }
1793
1794 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
1795 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
1796 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
1797 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
1798 result->enable = true;
1799}
1800
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001801static uint32_t
1802hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001803{
1804 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03001805 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001806 struct drm_display_mode *mode = &intel_crtc->config->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03001807 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001808
Matt Roper3ef00282015-03-09 10:19:24 -07001809 if (!intel_crtc->active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001810 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03001811
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001812 /* The WM are computed with base on how long it takes to fill a single
1813 * row at the given clock rate, multiplied by 8.
1814 * */
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001815 linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
1816 mode->crtc_clock);
1817 ips_linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
Ville Syrjälä1652d192015-03-31 14:12:01 +03001818 dev_priv->display.get_display_clock_speed(dev_priv->dev));
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001819
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001820 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
1821 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001822}
1823
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001824static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03001825{
1826 struct drm_i915_private *dev_priv = dev->dev_private;
1827
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001828 if (IS_GEN9(dev)) {
1829 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00001830 int ret, i;
Vandana Kannan367294b2014-11-04 17:06:46 +00001831 int level, max_level = ilk_wm_max_level(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001832
1833 /* read the first set of memory latencies[0:3] */
1834 val = 0; /* data0 to be programmed to 0 for first set */
1835 mutex_lock(&dev_priv->rps.hw_lock);
1836 ret = sandybridge_pcode_read(dev_priv,
1837 GEN9_PCODE_READ_MEM_LATENCY,
1838 &val);
1839 mutex_unlock(&dev_priv->rps.hw_lock);
1840
1841 if (ret) {
1842 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
1843 return;
1844 }
1845
1846 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
1847 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
1848 GEN9_MEM_LATENCY_LEVEL_MASK;
1849 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
1850 GEN9_MEM_LATENCY_LEVEL_MASK;
1851 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
1852 GEN9_MEM_LATENCY_LEVEL_MASK;
1853
1854 /* read the second set of memory latencies[4:7] */
1855 val = 1; /* data0 to be programmed to 1 for second set */
1856 mutex_lock(&dev_priv->rps.hw_lock);
1857 ret = sandybridge_pcode_read(dev_priv,
1858 GEN9_PCODE_READ_MEM_LATENCY,
1859 &val);
1860 mutex_unlock(&dev_priv->rps.hw_lock);
1861 if (ret) {
1862 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
1863 return;
1864 }
1865
1866 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
1867 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
1868 GEN9_MEM_LATENCY_LEVEL_MASK;
1869 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
1870 GEN9_MEM_LATENCY_LEVEL_MASK;
1871 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
1872 GEN9_MEM_LATENCY_LEVEL_MASK;
1873
Vandana Kannan367294b2014-11-04 17:06:46 +00001874 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00001875 * WaWmMemoryReadLatency:skl
1876 *
Vandana Kannan367294b2014-11-04 17:06:46 +00001877 * punit doesn't take into account the read latency so we need
1878 * to add 2us to the various latency levels we retrieve from
1879 * the punit.
1880 * - W0 is a bit special in that it's the only level that
1881 * can't be disabled if we want to have display working, so
1882 * we always add 2us there.
1883 * - For levels >=1, punit returns 0us latency when they are
1884 * disabled, so we respect that and don't add 2us then
Vandana Kannan4f947382014-11-04 17:06:47 +00001885 *
1886 * Additionally, if a level n (n > 1) has a 0us latency, all
1887 * levels m (m >= n) need to be disabled. We make sure to
1888 * sanitize the values out of the punit to satisfy this
1889 * requirement.
Vandana Kannan367294b2014-11-04 17:06:46 +00001890 */
1891 wm[0] += 2;
1892 for (level = 1; level <= max_level; level++)
1893 if (wm[level] != 0)
1894 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00001895 else {
1896 for (i = level + 1; i <= max_level; i++)
1897 wm[i] = 0;
Vandana Kannan367294b2014-11-04 17:06:46 +00001898
Vandana Kannan4f947382014-11-04 17:06:47 +00001899 break;
1900 }
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001901 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03001902 uint64_t sskpd = I915_READ64(MCH_SSKPD);
1903
1904 wm[0] = (sskpd >> 56) & 0xFF;
1905 if (wm[0] == 0)
1906 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03001907 wm[1] = (sskpd >> 4) & 0xFF;
1908 wm[2] = (sskpd >> 12) & 0xFF;
1909 wm[3] = (sskpd >> 20) & 0x1FF;
1910 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03001911 } else if (INTEL_INFO(dev)->gen >= 6) {
1912 uint32_t sskpd = I915_READ(MCH_SSKPD);
1913
1914 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
1915 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
1916 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
1917 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03001918 } else if (INTEL_INFO(dev)->gen >= 5) {
1919 uint32_t mltr = I915_READ(MLTR_ILK);
1920
1921 /* ILK primary LP0 latency is 700 ns */
1922 wm[0] = 7;
1923 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
1924 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03001925 }
1926}
1927
Ville Syrjälä53615a52013-08-01 16:18:50 +03001928static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
1929{
1930 /* ILK sprite LP0 latency is 1300 ns */
1931 if (INTEL_INFO(dev)->gen == 5)
1932 wm[0] = 13;
1933}
1934
1935static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
1936{
1937 /* ILK cursor LP0 latency is 1300 ns */
1938 if (INTEL_INFO(dev)->gen == 5)
1939 wm[0] = 13;
1940
1941 /* WaDoubleCursorLP3Latency:ivb */
1942 if (IS_IVYBRIDGE(dev))
1943 wm[3] *= 2;
1944}
1945
Damien Lespiau546c81f2014-05-13 15:30:26 +01001946int ilk_wm_max_level(const struct drm_device *dev)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03001947{
1948 /* how many WM levels are we expecting */
Damien Lespiaub6e742f2015-05-09 02:05:55 +01001949 if (INTEL_INFO(dev)->gen >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001950 return 7;
1951 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03001952 return 4;
1953 else if (INTEL_INFO(dev)->gen >= 6)
1954 return 3;
1955 else
1956 return 2;
1957}
Daniel Vetter7526ed72014-09-29 15:07:19 +02001958
Ville Syrjälä26ec9712013-08-01 16:18:52 +03001959static void intel_print_wm_latency(struct drm_device *dev,
1960 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001961 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03001962{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03001963 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03001964
1965 for (level = 0; level <= max_level; level++) {
1966 unsigned int latency = wm[level];
1967
1968 if (latency == 0) {
1969 DRM_ERROR("%s WM%d latency not provided\n",
1970 name, level);
1971 continue;
1972 }
1973
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001974 /*
1975 * - latencies are in us on gen9.
1976 * - before then, WM1+ latency values are in 0.5us units
1977 */
1978 if (IS_GEN9(dev))
1979 latency *= 10;
1980 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03001981 latency *= 5;
1982
1983 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
1984 name, level, wm[level],
1985 latency / 10, latency % 10);
1986 }
1987}
1988
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03001989static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
1990 uint16_t wm[5], uint16_t min)
1991{
1992 int level, max_level = ilk_wm_max_level(dev_priv->dev);
1993
1994 if (wm[0] >= min)
1995 return false;
1996
1997 wm[0] = max(wm[0], min);
1998 for (level = 1; level <= max_level; level++)
1999 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2000
2001 return true;
2002}
2003
2004static void snb_wm_latency_quirk(struct drm_device *dev)
2005{
2006 struct drm_i915_private *dev_priv = dev->dev_private;
2007 bool changed;
2008
2009 /*
2010 * The BIOS provided WM memory latency values are often
2011 * inadequate for high resolution displays. Adjust them.
2012 */
2013 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2014 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2015 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2016
2017 if (!changed)
2018 return;
2019
2020 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
2021 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2022 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2023 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
2024}
2025
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002026static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002027{
2028 struct drm_i915_private *dev_priv = dev->dev_private;
2029
2030 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2031
2032 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2033 sizeof(dev_priv->wm.pri_latency));
2034 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2035 sizeof(dev_priv->wm.pri_latency));
2036
2037 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2038 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002039
2040 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2041 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2042 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002043
2044 if (IS_GEN6(dev))
2045 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002046}
2047
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002048static void skl_setup_wm_latency(struct drm_device *dev)
2049{
2050 struct drm_i915_private *dev_priv = dev->dev_private;
2051
2052 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
2053 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
2054}
2055
Imre Deak820c1982013-12-17 14:46:36 +02002056static void ilk_compute_wm_parameters(struct drm_crtc *crtc,
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002057 struct ilk_pipe_wm_parameters *p)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002058{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002059 struct drm_device *dev = crtc->dev;
2060 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2061 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002062 struct drm_plane *plane;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002063
Matt Roper3ef00282015-03-09 10:19:24 -07002064 if (!intel_crtc->active)
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002065 return;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002066
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002067 p->active = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002068 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002069 p->pixel_rate = ilk_pipe_pixel_rate(dev, crtc);
Matt Roperc9f038a2015-03-09 11:06:02 -07002070
2071 if (crtc->primary->state->fb) {
2072 p->pri.enabled = true;
2073 p->pri.bytes_per_pixel =
2074 crtc->primary->state->fb->bits_per_pixel / 8;
2075 } else {
2076 p->pri.enabled = false;
2077 p->pri.bytes_per_pixel = 0;
2078 }
2079
2080 if (crtc->cursor->state->fb) {
2081 p->cur.enabled = true;
2082 p->cur.bytes_per_pixel = 4;
2083 } else {
2084 p->cur.enabled = false;
2085 p->cur.bytes_per_pixel = 0;
2086 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002087 p->pri.horiz_pixels = intel_crtc->config->pipe_src_w;
Matt Roper3dd512f2015-02-27 10:12:00 -08002088 p->cur.horiz_pixels = intel_crtc->base.cursor->state->crtc_w;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002089
Matt Roperaf2b6532014-04-01 15:22:32 -07002090 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002091 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002092
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002093 if (intel_plane->pipe == pipe) {
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002094 p->spr = intel_plane->wm;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002095 break;
2096 }
2097 }
2098}
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002099
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002100static void ilk_compute_wm_config(struct drm_device *dev,
2101 struct intel_wm_config *config)
2102{
2103 struct intel_crtc *intel_crtc;
2104
2105 /* Compute the currently _active_ config */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002106 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002107 const struct intel_pipe_wm *wm = &intel_crtc->wm.active;
2108
2109 if (!wm->pipe_enabled)
2110 continue;
2111
2112 config->sprites_enabled |= wm->sprites_enabled;
2113 config->sprites_scaled |= wm->sprites_scaled;
2114 config->num_pipes_active++;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002115 }
2116}
2117
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002118/* Compute new watermarks for the pipe */
2119static bool intel_compute_pipe_wm(struct drm_crtc *crtc,
Imre Deak820c1982013-12-17 14:46:36 +02002120 const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002121 struct intel_pipe_wm *pipe_wm)
2122{
2123 struct drm_device *dev = crtc->dev;
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002124 const struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002125 int level, max_level = ilk_wm_max_level(dev);
2126 /* LP0 watermark maximums depend on this pipe alone */
2127 struct intel_wm_config config = {
2128 .num_pipes_active = 1,
2129 .sprites_enabled = params->spr.enabled,
2130 .sprites_scaled = params->spr.scaled,
2131 };
Imre Deak820c1982013-12-17 14:46:36 +02002132 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002133
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002134 pipe_wm->pipe_enabled = params->active;
2135 pipe_wm->sprites_enabled = params->spr.enabled;
2136 pipe_wm->sprites_scaled = params->spr.scaled;
2137
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002138 /* ILK/SNB: LP2+ watermarks only w/o sprites */
2139 if (INTEL_INFO(dev)->gen <= 6 && params->spr.enabled)
2140 max_level = 1;
2141
2142 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
2143 if (params->spr.scaled)
2144 max_level = 0;
2145
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002146 ilk_compute_wm_level(dev_priv, 0, params, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002147
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002148 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02002149 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002150
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002151 /* LP0 watermarks always use 1/2 DDB partitioning */
2152 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2153
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002154 /* At least LP0 must be valid */
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002155 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]))
2156 return false;
2157
2158 ilk_compute_wm_reg_maximums(dev, 1, &max);
2159
2160 for (level = 1; level <= max_level; level++) {
2161 struct intel_wm_level wm = {};
2162
2163 ilk_compute_wm_level(dev_priv, level, params, &wm);
2164
2165 /*
2166 * Disable any watermark level that exceeds the
2167 * register maximums since such watermarks are
2168 * always invalid.
2169 */
2170 if (!ilk_validate_wm_level(level, &max, &wm))
2171 break;
2172
2173 pipe_wm->wm[level] = wm;
2174 }
2175
2176 return true;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002177}
2178
2179/*
2180 * Merge the watermarks from all active pipes for a specific level.
2181 */
2182static void ilk_merge_wm_level(struct drm_device *dev,
2183 int level,
2184 struct intel_wm_level *ret_wm)
2185{
2186 const struct intel_crtc *intel_crtc;
2187
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002188 ret_wm->enable = true;
2189
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002190 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002191 const struct intel_pipe_wm *active = &intel_crtc->wm.active;
2192 const struct intel_wm_level *wm = &active->wm[level];
2193
2194 if (!active->pipe_enabled)
2195 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002196
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002197 /*
2198 * The watermark values may have been used in the past,
2199 * so we must maintain them in the registers for some
2200 * time even if the level is now disabled.
2201 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002202 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002203 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002204
2205 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2206 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2207 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2208 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2209 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002210}
2211
2212/*
2213 * Merge all low power watermarks for all active pipes.
2214 */
2215static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002216 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002217 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002218 struct intel_pipe_wm *merged)
2219{
2220 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002221 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002222
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002223 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2224 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2225 config->num_pipes_active > 1)
2226 return;
2227
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002228 /* ILK: FBC WM must be disabled always */
2229 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002230
2231 /* merge each WM1+ level */
2232 for (level = 1; level <= max_level; level++) {
2233 struct intel_wm_level *wm = &merged->wm[level];
2234
2235 ilk_merge_wm_level(dev, level, wm);
2236
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002237 if (level > last_enabled_level)
2238 wm->enable = false;
2239 else if (!ilk_validate_wm_level(level, max, wm))
2240 /* make sure all following levels get disabled */
2241 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002242
2243 /*
2244 * The spec says it is preferred to disable
2245 * FBC WMs instead of disabling a WM level.
2246 */
2247 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002248 if (wm->enable)
2249 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002250 wm->fbc_val = 0;
2251 }
2252 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002253
2254 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2255 /*
2256 * FIXME this is racy. FBC might get enabled later.
2257 * What we should check here is whether FBC can be
2258 * enabled sometime later.
2259 */
2260 if (IS_GEN5(dev) && !merged->fbc_wm_enabled && intel_fbc_enabled(dev)) {
2261 for (level = 2; level <= max_level; level++) {
2262 struct intel_wm_level *wm = &merged->wm[level];
2263
2264 wm->enable = false;
2265 }
2266 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002267}
2268
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002269static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2270{
2271 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2272 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2273}
2274
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002275/* The value we need to program into the WM_LPx latency field */
2276static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2277{
2278 struct drm_i915_private *dev_priv = dev->dev_private;
2279
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002280 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002281 return 2 * level;
2282 else
2283 return dev_priv->wm.pri_latency[level];
2284}
2285
Imre Deak820c1982013-12-17 14:46:36 +02002286static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002287 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002288 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002289 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002290{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002291 struct intel_crtc *intel_crtc;
2292 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002293
Ville Syrjälä0362c782013-10-09 19:17:57 +03002294 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002295 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002296
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002297 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002298 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002299 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002300
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002301 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002302
Ville Syrjälä0362c782013-10-09 19:17:57 +03002303 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002304
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002305 /*
2306 * Maintain the watermark values even if the level is
2307 * disabled. Doing otherwise could cause underruns.
2308 */
2309 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002310 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002311 (r->pri_val << WM1_LP_SR_SHIFT) |
2312 r->cur_val;
2313
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002314 if (r->enable)
2315 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2316
Ville Syrjälä416f4722013-11-02 21:07:46 -07002317 if (INTEL_INFO(dev)->gen >= 8)
2318 results->wm_lp[wm_lp - 1] |=
2319 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2320 else
2321 results->wm_lp[wm_lp - 1] |=
2322 r->fbc_val << WM1_LP_FBC_SHIFT;
2323
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002324 /*
2325 * Always set WM1S_LP_EN when spr_val != 0, even if the
2326 * level is disabled. Doing otherwise could cause underruns.
2327 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002328 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2329 WARN_ON(wm_lp != 1);
2330 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2331 } else
2332 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002333 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002334
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002335 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002336 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002337 enum pipe pipe = intel_crtc->pipe;
2338 const struct intel_wm_level *r =
2339 &intel_crtc->wm.active.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002340
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002341 if (WARN_ON(!r->enable))
2342 continue;
2343
2344 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
2345
2346 results->wm_pipe[pipe] =
2347 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2348 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2349 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002350 }
2351}
2352
Paulo Zanoni861f3382013-05-31 10:19:21 -03002353/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2354 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002355static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002356 struct intel_pipe_wm *r1,
2357 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002358{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002359 int level, max_level = ilk_wm_max_level(dev);
2360 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002361
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002362 for (level = 1; level <= max_level; level++) {
2363 if (r1->wm[level].enable)
2364 level1 = level;
2365 if (r2->wm[level].enable)
2366 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002367 }
2368
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002369 if (level1 == level2) {
2370 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002371 return r2;
2372 else
2373 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002374 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002375 return r1;
2376 } else {
2377 return r2;
2378 }
2379}
2380
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002381/* dirty bits used to track which watermarks need changes */
2382#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2383#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2384#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2385#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2386#define WM_DIRTY_FBC (1 << 24)
2387#define WM_DIRTY_DDB (1 << 25)
2388
Damien Lespiau055e3932014-08-18 13:49:10 +01002389static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002390 const struct ilk_wm_values *old,
2391 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002392{
2393 unsigned int dirty = 0;
2394 enum pipe pipe;
2395 int wm_lp;
2396
Damien Lespiau055e3932014-08-18 13:49:10 +01002397 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002398 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2399 dirty |= WM_DIRTY_LINETIME(pipe);
2400 /* Must disable LP1+ watermarks too */
2401 dirty |= WM_DIRTY_LP_ALL;
2402 }
2403
2404 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2405 dirty |= WM_DIRTY_PIPE(pipe);
2406 /* Must disable LP1+ watermarks too */
2407 dirty |= WM_DIRTY_LP_ALL;
2408 }
2409 }
2410
2411 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2412 dirty |= WM_DIRTY_FBC;
2413 /* Must disable LP1+ watermarks too */
2414 dirty |= WM_DIRTY_LP_ALL;
2415 }
2416
2417 if (old->partitioning != new->partitioning) {
2418 dirty |= WM_DIRTY_DDB;
2419 /* Must disable LP1+ watermarks too */
2420 dirty |= WM_DIRTY_LP_ALL;
2421 }
2422
2423 /* LP1+ watermarks already deemed dirty, no need to continue */
2424 if (dirty & WM_DIRTY_LP_ALL)
2425 return dirty;
2426
2427 /* Find the lowest numbered LP1+ watermark in need of an update... */
2428 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2429 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2430 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2431 break;
2432 }
2433
2434 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2435 for (; wm_lp <= 3; wm_lp++)
2436 dirty |= WM_DIRTY_LP(wm_lp);
2437
2438 return dirty;
2439}
2440
Ville Syrjälä8553c182013-12-05 15:51:39 +02002441static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2442 unsigned int dirty)
2443{
Imre Deak820c1982013-12-17 14:46:36 +02002444 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002445 bool changed = false;
2446
2447 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2448 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2449 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2450 changed = true;
2451 }
2452 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2453 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2454 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2455 changed = true;
2456 }
2457 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2458 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2459 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2460 changed = true;
2461 }
2462
2463 /*
2464 * Don't touch WM1S_LP_EN here.
2465 * Doing so could cause underruns.
2466 */
2467
2468 return changed;
2469}
2470
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002471/*
2472 * The spec says we shouldn't write when we don't need, because every write
2473 * causes WMs to be re-evaluated, expending some power.
2474 */
Imre Deak820c1982013-12-17 14:46:36 +02002475static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2476 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002477{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002478 struct drm_device *dev = dev_priv->dev;
Imre Deak820c1982013-12-17 14:46:36 +02002479 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002480 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002481 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002482
Damien Lespiau055e3932014-08-18 13:49:10 +01002483 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002484 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002485 return;
2486
Ville Syrjälä8553c182013-12-05 15:51:39 +02002487 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002488
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002489 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002490 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002491 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002492 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002493 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002494 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2495
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002496 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002497 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002498 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002499 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002500 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002501 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2502
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002503 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002504 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002505 val = I915_READ(WM_MISC);
2506 if (results->partitioning == INTEL_DDB_PART_1_2)
2507 val &= ~WM_MISC_DATA_PARTITION_5_6;
2508 else
2509 val |= WM_MISC_DATA_PARTITION_5_6;
2510 I915_WRITE(WM_MISC, val);
2511 } else {
2512 val = I915_READ(DISP_ARB_CTL2);
2513 if (results->partitioning == INTEL_DDB_PART_1_2)
2514 val &= ~DISP_DATA_PARTITION_5_6;
2515 else
2516 val |= DISP_DATA_PARTITION_5_6;
2517 I915_WRITE(DISP_ARB_CTL2, val);
2518 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002519 }
2520
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002521 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002522 val = I915_READ(DISP_ARB_CTL);
2523 if (results->enable_fbc_wm)
2524 val &= ~DISP_FBC_WM_DIS;
2525 else
2526 val |= DISP_FBC_WM_DIS;
2527 I915_WRITE(DISP_ARB_CTL, val);
2528 }
2529
Imre Deak954911e2013-12-17 14:46:34 +02002530 if (dirty & WM_DIRTY_LP(1) &&
2531 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2532 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2533
2534 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002535 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2536 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2537 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2538 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2539 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002540
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002541 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002542 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002543 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002544 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002545 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002546 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002547
2548 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002549}
2550
Ville Syrjälä8553c182013-12-05 15:51:39 +02002551static bool ilk_disable_lp_wm(struct drm_device *dev)
2552{
2553 struct drm_i915_private *dev_priv = dev->dev_private;
2554
2555 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2556}
2557
Damien Lespiaub9cec072014-11-04 17:06:43 +00002558/*
2559 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
2560 * different active planes.
2561 */
2562
2563#define SKL_DDB_SIZE 896 /* in blocks */
Damien Lespiau43d735a2015-03-17 11:39:34 +02002564#define BXT_DDB_SIZE 512
Damien Lespiaub9cec072014-11-04 17:06:43 +00002565
2566static void
2567skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
2568 struct drm_crtc *for_crtc,
2569 const struct intel_wm_config *config,
2570 const struct skl_pipe_wm_parameters *params,
2571 struct skl_ddb_entry *alloc /* out */)
2572{
2573 struct drm_crtc *crtc;
2574 unsigned int pipe_size, ddb_size;
2575 int nth_active_pipe;
2576
2577 if (!params->active) {
2578 alloc->start = 0;
2579 alloc->end = 0;
2580 return;
2581 }
2582
Damien Lespiau43d735a2015-03-17 11:39:34 +02002583 if (IS_BROXTON(dev))
2584 ddb_size = BXT_DDB_SIZE;
2585 else
2586 ddb_size = SKL_DDB_SIZE;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002587
2588 ddb_size -= 4; /* 4 blocks for bypass path allocation */
2589
2590 nth_active_pipe = 0;
2591 for_each_crtc(dev, crtc) {
Matt Roper3ef00282015-03-09 10:19:24 -07002592 if (!to_intel_crtc(crtc)->active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002593 continue;
2594
2595 if (crtc == for_crtc)
2596 break;
2597
2598 nth_active_pipe++;
2599 }
2600
2601 pipe_size = ddb_size / config->num_pipes_active;
2602 alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active;
Damien Lespiau16160e32014-11-04 17:06:53 +00002603 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002604}
2605
2606static unsigned int skl_cursor_allocation(const struct intel_wm_config *config)
2607{
2608 if (config->num_pipes_active == 1)
2609 return 32;
2610
2611 return 8;
2612}
2613
Damien Lespiaua269c582014-11-04 17:06:49 +00002614static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
2615{
2616 entry->start = reg & 0x3ff;
2617 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00002618 if (entry->end)
2619 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00002620}
2621
Damien Lespiau08db6652014-11-04 17:06:52 +00002622void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2623 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00002624{
Damien Lespiaua269c582014-11-04 17:06:49 +00002625 enum pipe pipe;
2626 int plane;
2627 u32 val;
2628
2629 for_each_pipe(dev_priv, pipe) {
Damien Lespiaudd740782015-02-28 14:54:08 +00002630 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00002631 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
2632 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
2633 val);
2634 }
2635
2636 val = I915_READ(CUR_BUF_CFG(pipe));
2637 skl_ddb_entry_init_from_hw(&ddb->cursor[pipe], val);
2638 }
2639}
2640
Damien Lespiaub9cec072014-11-04 17:06:43 +00002641static unsigned int
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002642skl_plane_relative_data_rate(const struct intel_plane_wm_parameters *p, int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002643{
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002644
2645 /* for planar format */
2646 if (p->y_bytes_per_pixel) {
2647 if (y) /* y-plane data rate */
2648 return p->horiz_pixels * p->vert_pixels * p->y_bytes_per_pixel;
2649 else /* uv-plane data rate */
2650 return (p->horiz_pixels/2) * (p->vert_pixels/2) * p->bytes_per_pixel;
2651 }
2652
2653 /* for packed formats */
Damien Lespiaub9cec072014-11-04 17:06:43 +00002654 return p->horiz_pixels * p->vert_pixels * p->bytes_per_pixel;
2655}
2656
2657/*
2658 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
2659 * a 8192x4096@32bpp framebuffer:
2660 * 3 * 4096 * 8192 * 4 < 2^32
2661 */
2662static unsigned int
2663skl_get_total_relative_data_rate(struct intel_crtc *intel_crtc,
2664 const struct skl_pipe_wm_parameters *params)
2665{
2666 unsigned int total_data_rate = 0;
2667 int plane;
2668
2669 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2670 const struct intel_plane_wm_parameters *p;
2671
2672 p = &params->plane[plane];
2673 if (!p->enabled)
2674 continue;
2675
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002676 total_data_rate += skl_plane_relative_data_rate(p, 0); /* packed/uv */
2677 if (p->y_bytes_per_pixel) {
2678 total_data_rate += skl_plane_relative_data_rate(p, 1); /* y-plane */
2679 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00002680 }
2681
2682 return total_data_rate;
2683}
2684
2685static void
2686skl_allocate_pipe_ddb(struct drm_crtc *crtc,
2687 const struct intel_wm_config *config,
2688 const struct skl_pipe_wm_parameters *params,
2689 struct skl_ddb_allocation *ddb /* out */)
2690{
2691 struct drm_device *dev = crtc->dev;
Damien Lespiaudd740782015-02-28 14:54:08 +00002692 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002693 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2694 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002695 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002696 uint16_t alloc_size, start, cursor_blocks;
Damien Lespiau80958152015-02-09 13:35:10 +00002697 uint16_t minimum[I915_MAX_PLANES];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002698 uint16_t y_minimum[I915_MAX_PLANES];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002699 unsigned int total_data_rate;
2700 int plane;
2701
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002702 skl_ddb_get_pipe_allocation_limits(dev, crtc, config, params, alloc);
2703 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002704 if (alloc_size == 0) {
2705 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
2706 memset(&ddb->cursor[pipe], 0, sizeof(ddb->cursor[pipe]));
2707 return;
2708 }
2709
2710 cursor_blocks = skl_cursor_allocation(config);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002711 ddb->cursor[pipe].start = alloc->end - cursor_blocks;
2712 ddb->cursor[pipe].end = alloc->end;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002713
2714 alloc_size -= cursor_blocks;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002715 alloc->end -= cursor_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002716
Damien Lespiau80958152015-02-09 13:35:10 +00002717 /* 1. Allocate the mininum required blocks for each active plane */
Damien Lespiaudd740782015-02-28 14:54:08 +00002718 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau80958152015-02-09 13:35:10 +00002719 const struct intel_plane_wm_parameters *p;
2720
2721 p = &params->plane[plane];
2722 if (!p->enabled)
2723 continue;
2724
2725 minimum[plane] = 8;
2726 alloc_size -= minimum[plane];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002727 y_minimum[plane] = p->y_bytes_per_pixel ? 8 : 0;
2728 alloc_size -= y_minimum[plane];
Damien Lespiau80958152015-02-09 13:35:10 +00002729 }
2730
Damien Lespiaub9cec072014-11-04 17:06:43 +00002731 /*
Damien Lespiau80958152015-02-09 13:35:10 +00002732 * 2. Distribute the remaining space in proportion to the amount of
2733 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00002734 *
2735 * FIXME: we may not allocate every single block here.
2736 */
2737 total_data_rate = skl_get_total_relative_data_rate(intel_crtc, params);
2738
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002739 start = alloc->start;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002740 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2741 const struct intel_plane_wm_parameters *p;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002742 unsigned int data_rate, y_data_rate;
2743 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002744
2745 p = &params->plane[plane];
2746 if (!p->enabled)
2747 continue;
2748
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002749 data_rate = skl_plane_relative_data_rate(p, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002750
2751 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002752 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00002753 * promote the expression to 64 bits to avoid overflowing, the
2754 * result is < available as data_rate / total_data_rate < 1
2755 */
Damien Lespiau80958152015-02-09 13:35:10 +00002756 plane_blocks = minimum[plane];
2757 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
2758 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002759
2760 ddb->plane[pipe][plane].start = start;
Damien Lespiau16160e32014-11-04 17:06:53 +00002761 ddb->plane[pipe][plane].end = start + plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002762
2763 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002764
2765 /*
2766 * allocation for y_plane part of planar format:
2767 */
2768 if (p->y_bytes_per_pixel) {
2769 y_data_rate = skl_plane_relative_data_rate(p, 1);
2770 y_plane_blocks = y_minimum[plane];
2771 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
2772 total_data_rate);
2773
2774 ddb->y_plane[pipe][plane].start = start;
2775 ddb->y_plane[pipe][plane].end = start + y_plane_blocks;
2776
2777 start += y_plane_blocks;
2778 }
2779
Damien Lespiaub9cec072014-11-04 17:06:43 +00002780 }
2781
2782}
2783
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02002784static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002785{
2786 /* TODO: Take into account the scalers once we support them */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02002787 return config->base.adjusted_mode.crtc_clock;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002788}
2789
2790/*
2791 * The max latency should be 257 (max the punit can code is 255 and we add 2us
2792 * for the read latency) and bytes_per_pixel should always be <= 8, so that
2793 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
2794 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
2795*/
2796static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
2797 uint32_t latency)
2798{
2799 uint32_t wm_intermediate_val, ret;
2800
2801 if (latency == 0)
2802 return UINT_MAX;
2803
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002804 wm_intermediate_val = latency * pixel_rate * bytes_per_pixel / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002805 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
2806
2807 return ret;
2808}
2809
2810static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
2811 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002812 uint64_t tiling, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002813{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002814 uint32_t ret;
2815 uint32_t plane_bytes_per_line, plane_blocks_per_line;
2816 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002817
2818 if (latency == 0)
2819 return UINT_MAX;
2820
2821 plane_bytes_per_line = horiz_pixels * bytes_per_pixel;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002822
2823 if (tiling == I915_FORMAT_MOD_Y_TILED ||
2824 tiling == I915_FORMAT_MOD_Yf_TILED) {
2825 plane_bytes_per_line *= 4;
2826 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
2827 plane_blocks_per_line /= 4;
2828 } else {
2829 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
2830 }
2831
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002832 wm_intermediate_val = latency * pixel_rate;
2833 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002834 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002835
2836 return ret;
2837}
2838
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002839static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb,
2840 const struct intel_crtc *intel_crtc)
2841{
2842 struct drm_device *dev = intel_crtc->base.dev;
2843 struct drm_i915_private *dev_priv = dev->dev_private;
2844 const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
2845 enum pipe pipe = intel_crtc->pipe;
2846
2847 if (memcmp(new_ddb->plane[pipe], cur_ddb->plane[pipe],
2848 sizeof(new_ddb->plane[pipe])))
2849 return true;
2850
2851 if (memcmp(&new_ddb->cursor[pipe], &cur_ddb->cursor[pipe],
2852 sizeof(new_ddb->cursor[pipe])))
2853 return true;
2854
2855 return false;
2856}
2857
2858static void skl_compute_wm_global_parameters(struct drm_device *dev,
2859 struct intel_wm_config *config)
2860{
2861 struct drm_crtc *crtc;
2862 struct drm_plane *plane;
2863
2864 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
Matt Roper3ef00282015-03-09 10:19:24 -07002865 config->num_pipes_active += to_intel_crtc(crtc)->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002866
2867 /* FIXME: I don't think we need those two global parameters on SKL */
2868 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2869 struct intel_plane *intel_plane = to_intel_plane(plane);
2870
2871 config->sprites_enabled |= intel_plane->wm.enabled;
2872 config->sprites_scaled |= intel_plane->wm.scaled;
2873 }
2874}
2875
2876static void skl_compute_wm_pipe_parameters(struct drm_crtc *crtc,
2877 struct skl_pipe_wm_parameters *p)
2878{
2879 struct drm_device *dev = crtc->dev;
2880 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2881 enum pipe pipe = intel_crtc->pipe;
2882 struct drm_plane *plane;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002883 struct drm_framebuffer *fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002884 int i = 1; /* Index for sprite planes start */
2885
Matt Roper3ef00282015-03-09 10:19:24 -07002886 p->active = intel_crtc->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002887 if (p->active) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002888 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
2889 p->pixel_rate = skl_pipe_pixel_rate(intel_crtc->config);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002890
Matt Roperc9f038a2015-03-09 11:06:02 -07002891 fb = crtc->primary->state->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002892 /* For planar: Bpp is for uv plane, y_Bpp is for y plane */
Matt Roperc9f038a2015-03-09 11:06:02 -07002893 if (fb) {
2894 p->plane[0].enabled = true;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002895 p->plane[0].bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
2896 drm_format_plane_cpp(fb->pixel_format, 1) : fb->bits_per_pixel / 8;
2897 p->plane[0].y_bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
2898 drm_format_plane_cpp(fb->pixel_format, 0) : 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07002899 p->plane[0].tiling = fb->modifier[0];
2900 } else {
2901 p->plane[0].enabled = false;
2902 p->plane[0].bytes_per_pixel = 0;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002903 p->plane[0].y_bytes_per_pixel = 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07002904 p->plane[0].tiling = DRM_FORMAT_MOD_NONE;
2905 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002906 p->plane[0].horiz_pixels = intel_crtc->config->pipe_src_w;
2907 p->plane[0].vert_pixels = intel_crtc->config->pipe_src_h;
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00002908 p->plane[0].rotation = crtc->primary->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002909
Matt Roperc9f038a2015-03-09 11:06:02 -07002910 fb = crtc->cursor->state->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002911 p->cursor.y_bytes_per_pixel = 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07002912 if (fb) {
2913 p->cursor.enabled = true;
2914 p->cursor.bytes_per_pixel = fb->bits_per_pixel / 8;
2915 p->cursor.horiz_pixels = crtc->cursor->state->crtc_w;
2916 p->cursor.vert_pixels = crtc->cursor->state->crtc_h;
2917 } else {
2918 p->cursor.enabled = false;
2919 p->cursor.bytes_per_pixel = 0;
2920 p->cursor.horiz_pixels = 64;
2921 p->cursor.vert_pixels = 64;
2922 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002923 }
2924
2925 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2926 struct intel_plane *intel_plane = to_intel_plane(plane);
2927
Sonika Jindala712f8e2014-12-09 10:59:15 +05302928 if (intel_plane->pipe == pipe &&
2929 plane->type == DRM_PLANE_TYPE_OVERLAY)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002930 p->plane[i++] = intel_plane->wm;
2931 }
2932}
2933
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002934static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
2935 struct skl_pipe_wm_parameters *p,
Damien Lespiauafb024a2014-11-04 17:06:59 +00002936 struct intel_plane_wm_parameters *p_params,
2937 uint16_t ddb_allocation,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002938 int level,
Damien Lespiauafb024a2014-11-04 17:06:59 +00002939 uint16_t *out_blocks, /* out */
2940 uint8_t *out_lines /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002941{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002942 uint32_t latency = dev_priv->wm.skl_latency[level];
2943 uint32_t method1, method2;
2944 uint32_t plane_bytes_per_line, plane_blocks_per_line;
2945 uint32_t res_blocks, res_lines;
2946 uint32_t selected_result;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002947 uint8_t bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002948
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002949 if (latency == 0 || !p->active || !p_params->enabled)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002950 return false;
2951
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002952 bytes_per_pixel = p_params->y_bytes_per_pixel ?
2953 p_params->y_bytes_per_pixel :
2954 p_params->bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002955 method1 = skl_wm_method1(p->pixel_rate,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002956 bytes_per_pixel,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002957 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002958 method2 = skl_wm_method2(p->pixel_rate,
2959 p->pipe_htotal,
2960 p_params->horiz_pixels,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002961 bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002962 p_params->tiling,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002963 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002964
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002965 plane_bytes_per_line = p_params->horiz_pixels * bytes_per_pixel;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002966 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002967
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002968 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
2969 p_params->tiling == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00002970 uint32_t min_scanlines = 4;
2971 uint32_t y_tile_minimum;
2972 if (intel_rotation_90_or_270(p_params->rotation)) {
2973 switch (p_params->bytes_per_pixel) {
2974 case 1:
2975 min_scanlines = 16;
2976 break;
2977 case 2:
2978 min_scanlines = 8;
2979 break;
2980 case 8:
2981 WARN(1, "Unsupported pixel depth for rotation");
kbuild test robot2f0b5792015-03-26 22:30:21 +08002982 }
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00002983 }
2984 y_tile_minimum = plane_blocks_per_line * min_scanlines;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002985 selected_result = max(method2, y_tile_minimum);
2986 } else {
2987 if ((ddb_allocation / plane_blocks_per_line) >= 1)
2988 selected_result = min(method1, method2);
2989 else
2990 selected_result = method1;
2991 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002992
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002993 res_blocks = selected_result + 1;
2994 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00002995
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002996 if (level >= 1 && level <= 7) {
2997 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
2998 p_params->tiling == I915_FORMAT_MOD_Yf_TILED)
2999 res_lines += 4;
3000 else
3001 res_blocks++;
3002 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003003
3004 if (res_blocks >= ddb_allocation || res_lines > 31)
Damien Lespiaue6d66172014-11-04 17:06:55 +00003005 return false;
3006
3007 *out_blocks = res_blocks;
3008 *out_lines = res_lines;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003009
3010 return true;
3011}
3012
3013static void skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3014 struct skl_ddb_allocation *ddb,
3015 struct skl_pipe_wm_parameters *p,
3016 enum pipe pipe,
3017 int level,
3018 int num_planes,
3019 struct skl_wm_level *result)
3020{
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003021 uint16_t ddb_blocks;
3022 int i;
3023
3024 for (i = 0; i < num_planes; i++) {
3025 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
3026
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003027 result->plane_en[i] = skl_compute_plane_wm(dev_priv,
3028 p, &p->plane[i],
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003029 ddb_blocks,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003030 level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003031 &result->plane_res_b[i],
3032 &result->plane_res_l[i]);
3033 }
3034
3035 ddb_blocks = skl_ddb_entry_size(&ddb->cursor[pipe]);
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003036 result->cursor_en = skl_compute_plane_wm(dev_priv, p, &p->cursor,
3037 ddb_blocks, level,
3038 &result->cursor_res_b,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003039 &result->cursor_res_l);
3040}
3041
Damien Lespiau407b50f2014-11-04 17:06:57 +00003042static uint32_t
3043skl_compute_linetime_wm(struct drm_crtc *crtc, struct skl_pipe_wm_parameters *p)
3044{
Matt Roper3ef00282015-03-09 10:19:24 -07003045 if (!to_intel_crtc(crtc)->active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003046 return 0;
3047
3048 return DIV_ROUND_UP(8 * p->pipe_htotal * 1000, p->pixel_rate);
3049
3050}
3051
3052static void skl_compute_transition_wm(struct drm_crtc *crtc,
3053 struct skl_pipe_wm_parameters *params,
Damien Lespiau9414f562014-11-04 17:06:58 +00003054 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003055{
Damien Lespiau9414f562014-11-04 17:06:58 +00003056 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3057 int i;
3058
Damien Lespiau407b50f2014-11-04 17:06:57 +00003059 if (!params->active)
3060 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003061
3062 /* Until we know more, just disable transition WMs */
3063 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3064 trans_wm->plane_en[i] = false;
3065 trans_wm->cursor_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003066}
3067
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003068static void skl_compute_pipe_wm(struct drm_crtc *crtc,
3069 struct skl_ddb_allocation *ddb,
3070 struct skl_pipe_wm_parameters *params,
3071 struct skl_pipe_wm *pipe_wm)
3072{
3073 struct drm_device *dev = crtc->dev;
3074 const struct drm_i915_private *dev_priv = dev->dev_private;
3075 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3076 int level, max_level = ilk_wm_max_level(dev);
3077
3078 for (level = 0; level <= max_level; level++) {
3079 skl_compute_wm_level(dev_priv, ddb, params, intel_crtc->pipe,
3080 level, intel_num_planes(intel_crtc),
3081 &pipe_wm->wm[level]);
3082 }
3083 pipe_wm->linetime = skl_compute_linetime_wm(crtc, params);
3084
Damien Lespiau9414f562014-11-04 17:06:58 +00003085 skl_compute_transition_wm(crtc, params, &pipe_wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003086}
3087
3088static void skl_compute_wm_results(struct drm_device *dev,
3089 struct skl_pipe_wm_parameters *p,
3090 struct skl_pipe_wm *p_wm,
3091 struct skl_wm_values *r,
3092 struct intel_crtc *intel_crtc)
3093{
3094 int level, max_level = ilk_wm_max_level(dev);
3095 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau9414f562014-11-04 17:06:58 +00003096 uint32_t temp;
3097 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003098
3099 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003100 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3101 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003102
3103 temp |= p_wm->wm[level].plane_res_l[i] <<
3104 PLANE_WM_LINES_SHIFT;
3105 temp |= p_wm->wm[level].plane_res_b[i];
3106 if (p_wm->wm[level].plane_en[i])
3107 temp |= PLANE_WM_EN;
3108
3109 r->plane[pipe][i][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003110 }
3111
3112 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003113
3114 temp |= p_wm->wm[level].cursor_res_l << PLANE_WM_LINES_SHIFT;
3115 temp |= p_wm->wm[level].cursor_res_b;
3116
3117 if (p_wm->wm[level].cursor_en)
3118 temp |= PLANE_WM_EN;
3119
3120 r->cursor[pipe][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003121
3122 }
3123
Damien Lespiau9414f562014-11-04 17:06:58 +00003124 /* transition WMs */
3125 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3126 temp = 0;
3127 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
3128 temp |= p_wm->trans_wm.plane_res_b[i];
3129 if (p_wm->trans_wm.plane_en[i])
3130 temp |= PLANE_WM_EN;
3131
3132 r->plane_trans[pipe][i] = temp;
3133 }
3134
3135 temp = 0;
3136 temp |= p_wm->trans_wm.cursor_res_l << PLANE_WM_LINES_SHIFT;
3137 temp |= p_wm->trans_wm.cursor_res_b;
3138 if (p_wm->trans_wm.cursor_en)
3139 temp |= PLANE_WM_EN;
3140
3141 r->cursor_trans[pipe] = temp;
3142
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003143 r->wm_linetime[pipe] = p_wm->linetime;
3144}
3145
Damien Lespiau16160e32014-11-04 17:06:53 +00003146static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, uint32_t reg,
3147 const struct skl_ddb_entry *entry)
3148{
3149 if (entry->end)
3150 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3151 else
3152 I915_WRITE(reg, 0);
3153}
3154
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003155static void skl_write_wm_values(struct drm_i915_private *dev_priv,
3156 const struct skl_wm_values *new)
3157{
3158 struct drm_device *dev = dev_priv->dev;
3159 struct intel_crtc *crtc;
3160
3161 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
3162 int i, level, max_level = ilk_wm_max_level(dev);
3163 enum pipe pipe = crtc->pipe;
3164
Damien Lespiau5d374d92014-11-04 17:07:00 +00003165 if (!new->dirty[pipe])
3166 continue;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003167
Damien Lespiau5d374d92014-11-04 17:07:00 +00003168 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
3169
3170 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003171 for (i = 0; i < intel_num_planes(crtc); i++)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003172 I915_WRITE(PLANE_WM(pipe, i, level),
3173 new->plane[pipe][i][level]);
3174 I915_WRITE(CUR_WM(pipe, level),
3175 new->cursor[pipe][level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003176 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003177 for (i = 0; i < intel_num_planes(crtc); i++)
3178 I915_WRITE(PLANE_WM_TRANS(pipe, i),
3179 new->plane_trans[pipe][i]);
3180 I915_WRITE(CUR_WM_TRANS(pipe), new->cursor_trans[pipe]);
3181
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003182 for (i = 0; i < intel_num_planes(crtc); i++) {
Damien Lespiau5d374d92014-11-04 17:07:00 +00003183 skl_ddb_entry_write(dev_priv,
3184 PLANE_BUF_CFG(pipe, i),
3185 &new->ddb.plane[pipe][i]);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003186 skl_ddb_entry_write(dev_priv,
3187 PLANE_NV12_BUF_CFG(pipe, i),
3188 &new->ddb.y_plane[pipe][i]);
3189 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003190
3191 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
3192 &new->ddb.cursor[pipe]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003193 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003194}
3195
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003196/*
3197 * When setting up a new DDB allocation arrangement, we need to correctly
3198 * sequence the times at which the new allocations for the pipes are taken into
3199 * account or we'll have pipes fetching from space previously allocated to
3200 * another pipe.
3201 *
3202 * Roughly the sequence looks like:
3203 * 1. re-allocate the pipe(s) with the allocation being reduced and not
3204 * overlapping with a previous light-up pipe (another way to put it is:
3205 * pipes with their new allocation strickly included into their old ones).
3206 * 2. re-allocate the other pipes that get their allocation reduced
3207 * 3. allocate the pipes having their allocation increased
3208 *
3209 * Steps 1. and 2. are here to take care of the following case:
3210 * - Initially DDB looks like this:
3211 * | B | C |
3212 * - enable pipe A.
3213 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
3214 * allocation
3215 * | A | B | C |
3216 *
3217 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
3218 */
3219
Damien Lespiaud21b7952014-11-04 17:07:03 +00003220static void
3221skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003222{
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003223 int plane;
3224
Damien Lespiaud21b7952014-11-04 17:07:03 +00003225 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
3226
Damien Lespiaudd740782015-02-28 14:54:08 +00003227 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003228 I915_WRITE(PLANE_SURF(pipe, plane),
3229 I915_READ(PLANE_SURF(pipe, plane)));
3230 }
3231 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3232}
3233
3234static bool
3235skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
3236 const struct skl_ddb_allocation *new,
3237 enum pipe pipe)
3238{
3239 uint16_t old_size, new_size;
3240
3241 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
3242 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
3243
3244 return old_size != new_size &&
3245 new->pipe[pipe].start >= old->pipe[pipe].start &&
3246 new->pipe[pipe].end <= old->pipe[pipe].end;
3247}
3248
3249static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
3250 struct skl_wm_values *new_values)
3251{
3252 struct drm_device *dev = dev_priv->dev;
3253 struct skl_ddb_allocation *cur_ddb, *new_ddb;
Ville Syrjäläc929cb42015-04-02 18:28:07 +03003254 bool reallocated[I915_MAX_PIPES] = {};
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003255 struct intel_crtc *crtc;
3256 enum pipe pipe;
3257
3258 new_ddb = &new_values->ddb;
3259 cur_ddb = &dev_priv->wm.skl_hw.ddb;
3260
3261 /*
3262 * First pass: flush the pipes with the new allocation contained into
3263 * the old space.
3264 *
3265 * We'll wait for the vblank on those pipes to ensure we can safely
3266 * re-allocate the freed space without this pipe fetching from it.
3267 */
3268 for_each_intel_crtc(dev, crtc) {
3269 if (!crtc->active)
3270 continue;
3271
3272 pipe = crtc->pipe;
3273
3274 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
3275 continue;
3276
Damien Lespiaud21b7952014-11-04 17:07:03 +00003277 skl_wm_flush_pipe(dev_priv, pipe, 1);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003278 intel_wait_for_vblank(dev, pipe);
3279
3280 reallocated[pipe] = true;
3281 }
3282
3283
3284 /*
3285 * Second pass: flush the pipes that are having their allocation
3286 * reduced, but overlapping with a previous allocation.
3287 *
3288 * Here as well we need to wait for the vblank to make sure the freed
3289 * space is not used anymore.
3290 */
3291 for_each_intel_crtc(dev, crtc) {
3292 if (!crtc->active)
3293 continue;
3294
3295 pipe = crtc->pipe;
3296
3297 if (reallocated[pipe])
3298 continue;
3299
3300 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3301 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
Damien Lespiaud21b7952014-11-04 17:07:03 +00003302 skl_wm_flush_pipe(dev_priv, pipe, 2);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003303 intel_wait_for_vblank(dev, pipe);
Sonika Jindald9d8e6b2014-12-11 17:58:15 +05303304 reallocated[pipe] = true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003305 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003306 }
3307
3308 /*
3309 * Third pass: flush the pipes that got more space allocated.
3310 *
3311 * We don't need to actively wait for the update here, next vblank
3312 * will just get more DDB space with the correct WM values.
3313 */
3314 for_each_intel_crtc(dev, crtc) {
3315 if (!crtc->active)
3316 continue;
3317
3318 pipe = crtc->pipe;
3319
3320 /*
3321 * At this point, only the pipes more space than before are
3322 * left to re-allocate.
3323 */
3324 if (reallocated[pipe])
3325 continue;
3326
Damien Lespiaud21b7952014-11-04 17:07:03 +00003327 skl_wm_flush_pipe(dev_priv, pipe, 3);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003328 }
3329}
3330
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003331static bool skl_update_pipe_wm(struct drm_crtc *crtc,
3332 struct skl_pipe_wm_parameters *params,
3333 struct intel_wm_config *config,
3334 struct skl_ddb_allocation *ddb, /* out */
3335 struct skl_pipe_wm *pipe_wm /* out */)
3336{
3337 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3338
3339 skl_compute_wm_pipe_parameters(crtc, params);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003340 skl_allocate_pipe_ddb(crtc, config, params, ddb);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003341 skl_compute_pipe_wm(crtc, ddb, params, pipe_wm);
3342
3343 if (!memcmp(&intel_crtc->wm.skl_active, pipe_wm, sizeof(*pipe_wm)))
3344 return false;
3345
3346 intel_crtc->wm.skl_active = *pipe_wm;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003347
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003348 return true;
3349}
3350
3351static void skl_update_other_pipe_wm(struct drm_device *dev,
3352 struct drm_crtc *crtc,
3353 struct intel_wm_config *config,
3354 struct skl_wm_values *r)
3355{
3356 struct intel_crtc *intel_crtc;
3357 struct intel_crtc *this_crtc = to_intel_crtc(crtc);
3358
3359 /*
3360 * If the WM update hasn't changed the allocation for this_crtc (the
3361 * crtc we are currently computing the new WM values for), other
3362 * enabled crtcs will keep the same allocation and we don't need to
3363 * recompute anything for them.
3364 */
3365 if (!skl_ddb_allocation_changed(&r->ddb, this_crtc))
3366 return;
3367
3368 /*
3369 * Otherwise, because of this_crtc being freshly enabled/disabled, the
3370 * other active pipes need new DDB allocation and WM values.
3371 */
3372 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
3373 base.head) {
3374 struct skl_pipe_wm_parameters params = {};
3375 struct skl_pipe_wm pipe_wm = {};
3376 bool wm_changed;
3377
3378 if (this_crtc->pipe == intel_crtc->pipe)
3379 continue;
3380
3381 if (!intel_crtc->active)
3382 continue;
3383
3384 wm_changed = skl_update_pipe_wm(&intel_crtc->base,
3385 &params, config,
3386 &r->ddb, &pipe_wm);
3387
3388 /*
3389 * If we end up re-computing the other pipe WM values, it's
3390 * because it was really needed, so we expect the WM values to
3391 * be different.
3392 */
3393 WARN_ON(!wm_changed);
3394
3395 skl_compute_wm_results(dev, &params, &pipe_wm, r, intel_crtc);
3396 r->dirty[intel_crtc->pipe] = true;
3397 }
3398}
3399
3400static void skl_update_wm(struct drm_crtc *crtc)
3401{
3402 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3403 struct drm_device *dev = crtc->dev;
3404 struct drm_i915_private *dev_priv = dev->dev_private;
3405 struct skl_pipe_wm_parameters params = {};
3406 struct skl_wm_values *results = &dev_priv->wm.skl_results;
3407 struct skl_pipe_wm pipe_wm = {};
3408 struct intel_wm_config config = {};
3409
3410 memset(results, 0, sizeof(*results));
3411
3412 skl_compute_wm_global_parameters(dev, &config);
3413
3414 if (!skl_update_pipe_wm(crtc, &params, &config,
3415 &results->ddb, &pipe_wm))
3416 return;
3417
3418 skl_compute_wm_results(dev, &params, &pipe_wm, results, intel_crtc);
3419 results->dirty[intel_crtc->pipe] = true;
3420
3421 skl_update_other_pipe_wm(dev, crtc, &config, results);
3422 skl_write_wm_values(dev_priv, results);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003423 skl_flush_wm_values(dev_priv, results);
Damien Lespiau53b0deb2014-11-04 17:06:48 +00003424
3425 /* store the new configuration */
3426 dev_priv->wm.skl_hw = *results;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003427}
3428
3429static void
3430skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc,
3431 uint32_t sprite_width, uint32_t sprite_height,
3432 int pixel_size, bool enabled, bool scaled)
3433{
3434 struct intel_plane *intel_plane = to_intel_plane(plane);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003435 struct drm_framebuffer *fb = plane->state->fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003436
3437 intel_plane->wm.enabled = enabled;
3438 intel_plane->wm.scaled = scaled;
3439 intel_plane->wm.horiz_pixels = sprite_width;
3440 intel_plane->wm.vert_pixels = sprite_height;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003441 intel_plane->wm.tiling = DRM_FORMAT_MOD_NONE;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003442
3443 /* For planar: Bpp is for UV plane, y_Bpp is for Y plane */
3444 intel_plane->wm.bytes_per_pixel =
3445 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3446 drm_format_plane_cpp(plane->state->fb->pixel_format, 1) : pixel_size;
3447 intel_plane->wm.y_bytes_per_pixel =
3448 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3449 drm_format_plane_cpp(plane->state->fb->pixel_format, 0) : 0;
3450
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003451 /*
3452 * Framebuffer can be NULL on plane disable, but it does not
3453 * matter for watermarks if we assume no tiling in that case.
3454 */
3455 if (fb)
3456 intel_plane->wm.tiling = fb->modifier[0];
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003457 intel_plane->wm.rotation = plane->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003458
3459 skl_update_wm(crtc);
3460}
3461
Imre Deak820c1982013-12-17 14:46:36 +02003462static void ilk_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003463{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003464 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003465 struct drm_device *dev = crtc->dev;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003466 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003467 struct ilk_wm_maximums max;
3468 struct ilk_pipe_wm_parameters params = {};
3469 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003470 enum intel_ddb_partitioning partitioning;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003471 struct intel_pipe_wm pipe_wm = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003472 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003473 struct intel_wm_config config = {};
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003474
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003475 ilk_compute_wm_parameters(crtc, &params);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003476
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003477 intel_compute_pipe_wm(crtc, &params, &pipe_wm);
3478
3479 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
3480 return;
3481
3482 intel_crtc->wm.active = pipe_wm;
3483
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003484 ilk_compute_wm_config(dev, &config);
3485
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003486 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003487 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03003488
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003489 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03003490 if (INTEL_INFO(dev)->gen >= 7 &&
3491 config.num_pipes_active == 1 && config.sprites_enabled) {
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003492 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003493 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003494
Imre Deak820c1982013-12-17 14:46:36 +02003495 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003496 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003497 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003498 }
3499
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003500 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003501 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003502
Imre Deak820c1982013-12-17 14:46:36 +02003503 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003504
Imre Deak820c1982013-12-17 14:46:36 +02003505 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003506}
3507
Damien Lespiaued57cb82014-07-15 09:21:24 +02003508static void
3509ilk_update_sprite_wm(struct drm_plane *plane,
3510 struct drm_crtc *crtc,
3511 uint32_t sprite_width, uint32_t sprite_height,
3512 int pixel_size, bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03003513{
Ville Syrjälä8553c182013-12-05 15:51:39 +02003514 struct drm_device *dev = plane->dev;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003515 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003516
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003517 intel_plane->wm.enabled = enabled;
3518 intel_plane->wm.scaled = scaled;
3519 intel_plane->wm.horiz_pixels = sprite_width;
Damien Lespiaued57cb82014-07-15 09:21:24 +02003520 intel_plane->wm.vert_pixels = sprite_width;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003521 intel_plane->wm.bytes_per_pixel = pixel_size;
Paulo Zanoni526682e2013-05-24 11:59:18 -03003522
Ville Syrjälä8553c182013-12-05 15:51:39 +02003523 /*
3524 * IVB workaround: must disable low power watermarks for at least
3525 * one frame before enabling scaling. LP watermarks can be re-enabled
3526 * when scaling is disabled.
3527 *
3528 * WaCxSRDisabledForSpriteScaling:ivb
3529 */
3530 if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev))
3531 intel_wait_for_vblank(dev, intel_plane->pipe);
3532
Imre Deak820c1982013-12-17 14:46:36 +02003533 ilk_update_wm(crtc);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003534}
3535
Pradeep Bhat30789992014-11-04 17:06:45 +00003536static void skl_pipe_wm_active_state(uint32_t val,
3537 struct skl_pipe_wm *active,
3538 bool is_transwm,
3539 bool is_cursor,
3540 int i,
3541 int level)
3542{
3543 bool is_enabled = (val & PLANE_WM_EN) != 0;
3544
3545 if (!is_transwm) {
3546 if (!is_cursor) {
3547 active->wm[level].plane_en[i] = is_enabled;
3548 active->wm[level].plane_res_b[i] =
3549 val & PLANE_WM_BLOCKS_MASK;
3550 active->wm[level].plane_res_l[i] =
3551 (val >> PLANE_WM_LINES_SHIFT) &
3552 PLANE_WM_LINES_MASK;
3553 } else {
3554 active->wm[level].cursor_en = is_enabled;
3555 active->wm[level].cursor_res_b =
3556 val & PLANE_WM_BLOCKS_MASK;
3557 active->wm[level].cursor_res_l =
3558 (val >> PLANE_WM_LINES_SHIFT) &
3559 PLANE_WM_LINES_MASK;
3560 }
3561 } else {
3562 if (!is_cursor) {
3563 active->trans_wm.plane_en[i] = is_enabled;
3564 active->trans_wm.plane_res_b[i] =
3565 val & PLANE_WM_BLOCKS_MASK;
3566 active->trans_wm.plane_res_l[i] =
3567 (val >> PLANE_WM_LINES_SHIFT) &
3568 PLANE_WM_LINES_MASK;
3569 } else {
3570 active->trans_wm.cursor_en = is_enabled;
3571 active->trans_wm.cursor_res_b =
3572 val & PLANE_WM_BLOCKS_MASK;
3573 active->trans_wm.cursor_res_l =
3574 (val >> PLANE_WM_LINES_SHIFT) &
3575 PLANE_WM_LINES_MASK;
3576 }
3577 }
3578}
3579
3580static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3581{
3582 struct drm_device *dev = crtc->dev;
3583 struct drm_i915_private *dev_priv = dev->dev_private;
3584 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
3585 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3586 struct skl_pipe_wm *active = &intel_crtc->wm.skl_active;
3587 enum pipe pipe = intel_crtc->pipe;
3588 int level, i, max_level;
3589 uint32_t temp;
3590
3591 max_level = ilk_wm_max_level(dev);
3592
3593 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3594
3595 for (level = 0; level <= max_level; level++) {
3596 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3597 hw->plane[pipe][i][level] =
3598 I915_READ(PLANE_WM(pipe, i, level));
3599 hw->cursor[pipe][level] = I915_READ(CUR_WM(pipe, level));
3600 }
3601
3602 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3603 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
3604 hw->cursor_trans[pipe] = I915_READ(CUR_WM_TRANS(pipe));
3605
Matt Roper3ef00282015-03-09 10:19:24 -07003606 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00003607 return;
3608
3609 hw->dirty[pipe] = true;
3610
3611 active->linetime = hw->wm_linetime[pipe];
3612
3613 for (level = 0; level <= max_level; level++) {
3614 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3615 temp = hw->plane[pipe][i][level];
3616 skl_pipe_wm_active_state(temp, active, false,
3617 false, i, level);
3618 }
3619 temp = hw->cursor[pipe][level];
3620 skl_pipe_wm_active_state(temp, active, false, true, i, level);
3621 }
3622
3623 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3624 temp = hw->plane_trans[pipe][i];
3625 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
3626 }
3627
3628 temp = hw->cursor_trans[pipe];
3629 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
3630}
3631
3632void skl_wm_get_hw_state(struct drm_device *dev)
3633{
Damien Lespiaua269c582014-11-04 17:06:49 +00003634 struct drm_i915_private *dev_priv = dev->dev_private;
3635 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00003636 struct drm_crtc *crtc;
3637
Damien Lespiaua269c582014-11-04 17:06:49 +00003638 skl_ddb_get_hw_state(dev_priv, ddb);
Pradeep Bhat30789992014-11-04 17:06:45 +00003639 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3640 skl_pipe_wm_get_hw_state(crtc);
3641}
3642
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003643static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3644{
3645 struct drm_device *dev = crtc->dev;
3646 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003647 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003648 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3649 struct intel_pipe_wm *active = &intel_crtc->wm.active;
3650 enum pipe pipe = intel_crtc->pipe;
3651 static const unsigned int wm0_pipe_reg[] = {
3652 [PIPE_A] = WM0_PIPEA_ILK,
3653 [PIPE_B] = WM0_PIPEB_ILK,
3654 [PIPE_C] = WM0_PIPEC_IVB,
3655 };
3656
3657 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003658 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02003659 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003660
Matt Roper3ef00282015-03-09 10:19:24 -07003661 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003662
3663 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003664 u32 tmp = hw->wm_pipe[pipe];
3665
3666 /*
3667 * For active pipes LP0 watermark is marked as
3668 * enabled, and LP1+ watermaks as disabled since
3669 * we can't really reverse compute them in case
3670 * multiple pipes are active.
3671 */
3672 active->wm[0].enable = true;
3673 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3674 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3675 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3676 active->linetime = hw->wm_linetime[pipe];
3677 } else {
3678 int level, max_level = ilk_wm_max_level(dev);
3679
3680 /*
3681 * For inactive pipes, all watermark levels
3682 * should be marked as enabled but zeroed,
3683 * which is what we'd compute them to.
3684 */
3685 for (level = 0; level <= max_level; level++)
3686 active->wm[level].enable = true;
3687 }
3688}
3689
3690void ilk_wm_get_hw_state(struct drm_device *dev)
3691{
3692 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003693 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003694 struct drm_crtc *crtc;
3695
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003696 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003697 ilk_pipe_wm_get_hw_state(crtc);
3698
3699 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
3700 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
3701 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
3702
3703 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02003704 if (INTEL_INFO(dev)->gen >= 7) {
3705 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
3706 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
3707 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003708
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003709 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003710 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
3711 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
3712 else if (IS_IVYBRIDGE(dev))
3713 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
3714 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003715
3716 hw->enable_fbc_wm =
3717 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
3718}
3719
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003720/**
3721 * intel_update_watermarks - update FIFO watermark values based on current modes
3722 *
3723 * Calculate watermark values for the various WM regs based on current mode
3724 * and plane configuration.
3725 *
3726 * There are several cases to deal with here:
3727 * - normal (i.e. non-self-refresh)
3728 * - self-refresh (SR) mode
3729 * - lines are large relative to FIFO size (buffer can hold up to 2)
3730 * - lines are small relative to FIFO size (buffer can hold more than 2
3731 * lines), so need to account for TLB latency
3732 *
3733 * The normal calculation is:
3734 * watermark = dotclock * bytes per pixel * latency
3735 * where latency is platform & configuration dependent (we assume pessimal
3736 * values here).
3737 *
3738 * The SR calculation is:
3739 * watermark = (trunc(latency/line time)+1) * surface width *
3740 * bytes per pixel
3741 * where
3742 * line time = htotal / dotclock
3743 * surface width = hdisplay for normal plane and 64 for cursor
3744 * and latency is assumed to be high, as above.
3745 *
3746 * The final value programmed to the register should always be rounded up,
3747 * and include an extra 2 entries to account for clock crossings.
3748 *
3749 * We don't use the sprite, so we can ignore that. And on Crestline we have
3750 * to set the non-SR watermarks to 8.
3751 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003752void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003753{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003754 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003755
3756 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003757 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003758}
3759
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003760void intel_update_sprite_watermarks(struct drm_plane *plane,
3761 struct drm_crtc *crtc,
Damien Lespiaued57cb82014-07-15 09:21:24 +02003762 uint32_t sprite_width,
3763 uint32_t sprite_height,
3764 int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003765 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003766{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003767 struct drm_i915_private *dev_priv = plane->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003768
3769 if (dev_priv->display.update_sprite_wm)
Damien Lespiaued57cb82014-07-15 09:21:24 +02003770 dev_priv->display.update_sprite_wm(plane, crtc,
3771 sprite_width, sprite_height,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003772 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003773}
3774
Daniel Vetter92703882012-08-09 16:46:01 +02003775/**
3776 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02003777 */
3778DEFINE_SPINLOCK(mchdev_lock);
3779
3780/* Global for IPS driver to get at the current i915 device. Protected by
3781 * mchdev_lock. */
3782static struct drm_i915_private *i915_mch_dev;
3783
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003784bool ironlake_set_drps(struct drm_device *dev, u8 val)
3785{
3786 struct drm_i915_private *dev_priv = dev->dev_private;
3787 u16 rgvswctl;
3788
Daniel Vetter92703882012-08-09 16:46:01 +02003789 assert_spin_locked(&mchdev_lock);
3790
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003791 rgvswctl = I915_READ16(MEMSWCTL);
3792 if (rgvswctl & MEMCTL_CMD_STS) {
3793 DRM_DEBUG("gpu busy, RCS change rejected\n");
3794 return false; /* still busy with another command */
3795 }
3796
3797 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
3798 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
3799 I915_WRITE16(MEMSWCTL, rgvswctl);
3800 POSTING_READ16(MEMSWCTL);
3801
3802 rgvswctl |= MEMCTL_CMD_STS;
3803 I915_WRITE16(MEMSWCTL, rgvswctl);
3804
3805 return true;
3806}
3807
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003808static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003809{
3810 struct drm_i915_private *dev_priv = dev->dev_private;
3811 u32 rgvmodectl = I915_READ(MEMMODECTL);
3812 u8 fmax, fmin, fstart, vstart;
3813
Daniel Vetter92703882012-08-09 16:46:01 +02003814 spin_lock_irq(&mchdev_lock);
3815
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003816 /* Enable temp reporting */
3817 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
3818 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
3819
3820 /* 100ms RC evaluation intervals */
3821 I915_WRITE(RCUPEI, 100000);
3822 I915_WRITE(RCDNEI, 100000);
3823
3824 /* Set max/min thresholds to 90ms and 80ms respectively */
3825 I915_WRITE(RCBMAXAVG, 90000);
3826 I915_WRITE(RCBMINAVG, 80000);
3827
3828 I915_WRITE(MEMIHYST, 1);
3829
3830 /* Set up min, max, and cur for interrupt handling */
3831 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
3832 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
3833 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
3834 MEMMODE_FSTART_SHIFT;
3835
3836 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
3837 PXVFREQ_PX_SHIFT;
3838
Daniel Vetter20e4d402012-08-08 23:35:39 +02003839 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
3840 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003841
Daniel Vetter20e4d402012-08-08 23:35:39 +02003842 dev_priv->ips.max_delay = fstart;
3843 dev_priv->ips.min_delay = fmin;
3844 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003845
3846 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
3847 fmax, fmin, fstart);
3848
3849 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
3850
3851 /*
3852 * Interrupts will be enabled in ironlake_irq_postinstall
3853 */
3854
3855 I915_WRITE(VIDSTART, vstart);
3856 POSTING_READ(VIDSTART);
3857
3858 rgvmodectl |= MEMMODE_SWMODE_EN;
3859 I915_WRITE(MEMMODECTL, rgvmodectl);
3860
Daniel Vetter92703882012-08-09 16:46:01 +02003861 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003862 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetter92703882012-08-09 16:46:01 +02003863 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003864
3865 ironlake_set_drps(dev, fstart);
3866
Daniel Vetter20e4d402012-08-08 23:35:39 +02003867 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003868 I915_READ(0x112e0);
Daniel Vetter20e4d402012-08-08 23:35:39 +02003869 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
3870 dev_priv->ips.last_count2 = I915_READ(0x112f4);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00003871 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02003872
3873 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003874}
3875
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003876static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003877{
3878 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02003879 u16 rgvswctl;
3880
3881 spin_lock_irq(&mchdev_lock);
3882
3883 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003884
3885 /* Ack interrupts, disable EFC interrupt */
3886 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
3887 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
3888 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
3889 I915_WRITE(DEIIR, DE_PCU_EVENT);
3890 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
3891
3892 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02003893 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetter92703882012-08-09 16:46:01 +02003894 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003895 rgvswctl |= MEMCTL_CMD_STS;
3896 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetter92703882012-08-09 16:46:01 +02003897 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003898
Daniel Vetter92703882012-08-09 16:46:01 +02003899 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003900}
3901
Daniel Vetteracbe9472012-07-26 11:50:05 +02003902/* There's a funny hw issue where the hw returns all 0 when reading from
3903 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
3904 * ourselves, instead of doing a rmw cycle (which might result in us clearing
3905 * all limits and the gpu stuck at whatever frequency it is at atm).
3906 */
Akash Goel74ef1172015-03-06 11:07:19 +05303907static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003908{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01003909 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003910
Daniel Vetter20b46e52012-07-26 11:16:14 +02003911 /* Only set the down limit when we've reached the lowest level to avoid
3912 * getting more interrupts, otherwise leave this clear. This prevents a
3913 * race in the hw when coming out of rc6: There's a tiny window where
3914 * the hw runs at the minimal clock before selecting the desired
3915 * frequency, if the down threshold expires in that window we will not
3916 * receive a down interrupt. */
Akash Goel74ef1172015-03-06 11:07:19 +05303917 if (IS_GEN9(dev_priv->dev)) {
3918 limits = (dev_priv->rps.max_freq_softlimit) << 23;
3919 if (val <= dev_priv->rps.min_freq_softlimit)
3920 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
3921 } else {
3922 limits = dev_priv->rps.max_freq_softlimit << 24;
3923 if (val <= dev_priv->rps.min_freq_softlimit)
3924 limits |= dev_priv->rps.min_freq_softlimit << 16;
3925 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02003926
3927 return limits;
3928}
3929
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003930static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
3931{
3932 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05303933 u32 threshold_up = 0, threshold_down = 0; /* in % */
3934 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003935
3936 new_power = dev_priv->rps.power;
3937 switch (dev_priv->rps.power) {
3938 case LOW_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07003939 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003940 new_power = BETWEEN;
3941 break;
3942
3943 case BETWEEN:
Ben Widawskyb39fb292014-03-19 18:31:11 -07003944 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003945 new_power = LOW_POWER;
Ben Widawskyb39fb292014-03-19 18:31:11 -07003946 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003947 new_power = HIGH_POWER;
3948 break;
3949
3950 case HIGH_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07003951 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 +01003952 new_power = BETWEEN;
3953 break;
3954 }
3955 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00003956 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003957 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00003958 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003959 new_power = HIGH_POWER;
3960 if (new_power == dev_priv->rps.power)
3961 return;
3962
3963 /* Note the units here are not exactly 1us, but 1280ns. */
3964 switch (new_power) {
3965 case LOW_POWER:
3966 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05303967 ei_up = 16000;
3968 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003969
3970 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05303971 ei_down = 32000;
3972 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003973 break;
3974
3975 case BETWEEN:
3976 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05303977 ei_up = 13000;
3978 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003979
3980 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05303981 ei_down = 32000;
3982 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003983 break;
3984
3985 case HIGH_POWER:
3986 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05303987 ei_up = 10000;
3988 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003989
3990 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05303991 ei_down = 32000;
3992 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01003993 break;
3994 }
3995
Akash Goel8a586432015-03-06 11:07:18 +05303996 I915_WRITE(GEN6_RP_UP_EI,
3997 GT_INTERVAL_FROM_US(dev_priv, ei_up));
3998 I915_WRITE(GEN6_RP_UP_THRESHOLD,
3999 GT_INTERVAL_FROM_US(dev_priv, (ei_up * threshold_up / 100)));
4000
4001 I915_WRITE(GEN6_RP_DOWN_EI,
4002 GT_INTERVAL_FROM_US(dev_priv, ei_down));
4003 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
4004 GT_INTERVAL_FROM_US(dev_priv, (ei_down * threshold_down / 100)));
4005
4006 I915_WRITE(GEN6_RP_CONTROL,
4007 GEN6_RP_MEDIA_TURBO |
4008 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4009 GEN6_RP_MEDIA_IS_GFX |
4010 GEN6_RP_ENABLE |
4011 GEN6_RP_UP_BUSY_AVG |
4012 GEN6_RP_DOWN_IDLE_AVG);
4013
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004014 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004015 dev_priv->rps.up_threshold = threshold_up;
4016 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004017 dev_priv->rps.last_adj = 0;
4018}
4019
Chris Wilson2876ce72014-03-28 08:03:34 +00004020static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4021{
4022 u32 mask = 0;
4023
4024 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004025 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004026 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004027 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004028
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004029 mask &= dev_priv->pm_rps_events;
4030
Imre Deak59d02a12014-12-19 19:33:26 +02004031 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004032}
4033
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004034/* gen6_set_rps is called to update the frequency request, but should also be
4035 * called when the range (min_delay and max_delay) is modified so that we can
4036 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004037static void gen6_set_rps(struct drm_device *dev, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004038{
4039 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004040
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004041 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004042 WARN_ON(val > dev_priv->rps.max_freq);
4043 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004044
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004045 /* min/max delay may still have been modified so be sure to
4046 * write the limits value.
4047 */
4048 if (val != dev_priv->rps.cur_freq) {
4049 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004050
Akash Goel57041952015-03-06 11:07:17 +05304051 if (IS_GEN9(dev))
4052 I915_WRITE(GEN6_RPNSWREQ,
4053 GEN9_FREQUENCY(val));
4054 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004055 I915_WRITE(GEN6_RPNSWREQ,
4056 HSW_FREQUENCY(val));
4057 else
4058 I915_WRITE(GEN6_RPNSWREQ,
4059 GEN6_FREQUENCY(val) |
4060 GEN6_OFFSET(0) |
4061 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004062 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004063
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004064 /* Make sure we continue to get interrupts
4065 * until we hit the minimum or maximum frequencies.
4066 */
Akash Goel74ef1172015-03-06 11:07:19 +05304067 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004068 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004069
Ben Widawskyd5570a72012-09-07 19:43:41 -07004070 POSTING_READ(GEN6_RPNSWREQ);
4071
Ben Widawskyb39fb292014-03-19 18:31:11 -07004072 dev_priv->rps.cur_freq = val;
Daniel Vetterbe2cde92012-08-30 13:26:48 +02004073 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004074}
4075
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004076static void valleyview_set_rps(struct drm_device *dev, u8 val)
4077{
4078 struct drm_i915_private *dev_priv = dev->dev_private;
4079
4080 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004081 WARN_ON(val > dev_priv->rps.max_freq);
4082 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004083
4084 if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1),
4085 "Odd GPU freq value\n"))
4086 val &= ~1;
4087
Chris Wilson8fb55192015-04-07 16:20:28 +01004088 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004089 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004090 if (!IS_CHERRYVIEW(dev_priv))
4091 gen6_set_rps_thresholds(dev_priv, val);
4092 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004093
4094 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4095
4096 dev_priv->rps.cur_freq = val;
4097 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4098}
4099
Deepak Sa7f6e232015-05-09 18:04:44 +05304100/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304101 *
4102 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304103 * 1. Forcewake Media well.
4104 * 2. Request idle freq.
4105 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304106*/
4107static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4108{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004109 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304110
Chris Wilsonaed242f2015-03-18 09:48:21 +00004111 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304112 return;
4113
Deepak Sa7f6e232015-05-09 18:04:44 +05304114 /* Wake up the media well, as that takes a lot less
4115 * power than the Render well. */
4116 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
4117 valleyview_set_rps(dev_priv->dev, val);
4118 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05304119}
4120
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004121void gen6_rps_busy(struct drm_i915_private *dev_priv)
4122{
4123 mutex_lock(&dev_priv->rps.hw_lock);
4124 if (dev_priv->rps.enabled) {
4125 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4126 gen6_rps_reset_ei(dev_priv);
4127 I915_WRITE(GEN6_PMINTRMSK,
4128 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
4129 }
4130 mutex_unlock(&dev_priv->rps.hw_lock);
4131}
4132
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004133void gen6_rps_idle(struct drm_i915_private *dev_priv)
4134{
Damien Lespiau691bb712013-12-12 14:36:36 +00004135 struct drm_device *dev = dev_priv->dev;
4136
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004137 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004138 if (dev_priv->rps.enabled) {
Ville Syrjälä21a11ff2015-01-27 16:36:15 +02004139 if (IS_VALLEYVIEW(dev))
Deepak S76c3552f2014-01-30 23:08:16 +05304140 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004141 else
Chris Wilsonaed242f2015-03-18 09:48:21 +00004142 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004143 dev_priv->rps.last_adj = 0;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004144 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004145 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004146 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004147
Chris Wilson8d3afd72015-05-21 21:01:47 +01004148 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004149 while (!list_empty(&dev_priv->rps.clients))
4150 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004151 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004152}
4153
Chris Wilson1854d5c2015-04-07 16:20:32 +01004154void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01004155 struct intel_rps_client *rps,
4156 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004157{
Chris Wilson8d3afd72015-05-21 21:01:47 +01004158 /* This is intentionally racy! We peek at the state here, then
4159 * validate inside the RPS worker.
4160 */
4161 if (!(dev_priv->mm.busy &&
4162 dev_priv->rps.enabled &&
4163 dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit))
4164 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004165
Chris Wilsone61b9952015-04-27 13:41:24 +01004166 /* Force a RPS boost (and don't count it against the client) if
4167 * the GPU is severely congested.
4168 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004169 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01004170 rps = NULL;
4171
Chris Wilson8d3afd72015-05-21 21:01:47 +01004172 spin_lock(&dev_priv->rps.client_lock);
4173 if (rps == NULL || list_empty(&rps->link)) {
4174 spin_lock_irq(&dev_priv->irq_lock);
4175 if (dev_priv->rps.interrupts_enabled) {
4176 dev_priv->rps.client_boost = true;
4177 queue_work(dev_priv->wq, &dev_priv->rps.work);
4178 }
4179 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004180
Chris Wilson2e1b8732015-04-27 13:41:22 +01004181 if (rps != NULL) {
4182 list_add(&rps->link, &dev_priv->rps.clients);
4183 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01004184 } else
4185 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01004186 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004187 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004188}
4189
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004190void intel_set_rps(struct drm_device *dev, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004191{
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004192 if (IS_VALLEYVIEW(dev))
4193 valleyview_set_rps(dev, val);
4194 else
4195 gen6_set_rps(dev, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004196}
4197
Zhe Wang20e49362014-11-04 17:07:05 +00004198static void gen9_disable_rps(struct drm_device *dev)
4199{
4200 struct drm_i915_private *dev_priv = dev->dev_private;
4201
4202 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004203 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004204}
4205
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004206static void gen6_disable_rps(struct drm_device *dev)
4207{
4208 struct drm_i915_private *dev_priv = dev->dev_private;
4209
4210 I915_WRITE(GEN6_RC_CONTROL, 0);
4211 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004212}
4213
Deepak S38807742014-05-23 21:00:15 +05304214static void cherryview_disable_rps(struct drm_device *dev)
4215{
4216 struct drm_i915_private *dev_priv = dev->dev_private;
4217
4218 I915_WRITE(GEN6_RC_CONTROL, 0);
4219}
4220
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004221static void valleyview_disable_rps(struct drm_device *dev)
4222{
4223 struct drm_i915_private *dev_priv = dev->dev_private;
4224
Deepak S98a2e5f2014-08-18 10:35:27 -07004225 /* we're doing forcewake before Disabling RC6,
4226 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02004227 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07004228
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004229 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004230
Mika Kuoppala59bad942015-01-16 11:34:40 +02004231 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004232}
4233
Ben Widawskydc39fff2013-10-18 12:32:07 -07004234static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
4235{
Imre Deak91ca6892014-04-14 20:24:25 +03004236 if (IS_VALLEYVIEW(dev)) {
4237 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
4238 mode = GEN6_RC_CTL_RC6_ENABLE;
4239 else
4240 mode = 0;
4241 }
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004242 if (HAS_RC6p(dev))
4243 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
4244 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
4245 (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
4246 (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
4247
4248 else
4249 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
4250 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off");
Ben Widawskydc39fff2013-10-18 12:32:07 -07004251}
4252
Imre Deake6069ca2014-04-18 16:01:02 +03004253static int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004254{
Damien Lespiaueb4926e2013-06-07 17:41:14 +01004255 /* No RC6 before Ironlake */
4256 if (INTEL_INFO(dev)->gen < 5)
4257 return 0;
4258
Imre Deake6069ca2014-04-18 16:01:02 +03004259 /* RC6 is only on Ironlake mobile not on desktop */
4260 if (INTEL_INFO(dev)->gen == 5 && !IS_IRONLAKE_M(dev))
4261 return 0;
4262
Daniel Vetter456470e2012-08-08 23:35:40 +02004263 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03004264 if (enable_rc6 >= 0) {
4265 int mask;
4266
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004267 if (HAS_RC6p(dev))
Imre Deake6069ca2014-04-18 16:01:02 +03004268 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
4269 INTEL_RC6pp_ENABLE;
4270 else
4271 mask = INTEL_RC6_ENABLE;
4272
4273 if ((enable_rc6 & mask) != enable_rc6)
Daniel Vetter8dfd1f02014-08-04 11:15:56 +02004274 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
4275 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03004276
4277 return enable_rc6 & mask;
4278 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004279
Chris Wilson6567d742012-11-10 10:00:06 +00004280 /* Disable RC6 on Ironlake */
4281 if (INTEL_INFO(dev)->gen == 5)
4282 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004283
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004284 if (IS_IVYBRIDGE(dev))
Ben Widawskycca84a12014-01-28 20:25:38 -08004285 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004286
4287 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004288}
4289
Imre Deake6069ca2014-04-18 16:01:02 +03004290int intel_enable_rc6(const struct drm_device *dev)
4291{
4292 return i915.enable_rc6;
4293}
4294
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004295static void gen6_init_rps_frequencies(struct drm_device *dev)
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004296{
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004297 struct drm_i915_private *dev_priv = dev->dev_private;
4298 uint32_t rp_state_cap;
4299 u32 ddcc_status = 0;
4300 int ret;
4301
4302 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004303 /* All of these values are in units of 50MHz */
4304 dev_priv->rps.cur_freq = 0;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004305 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004306 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004307 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004308 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
Akash Goelcee991c2015-03-06 11:07:16 +05304309 if (IS_SKYLAKE(dev)) {
4310 /* Store the frequency values in 16.66 MHZ units, which is
4311 the natural hardware unit for SKL */
4312 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
4313 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
4314 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
4315 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004316 /* hw_max = RP0 until we check for overclocking */
4317 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
4318
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004319 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
4320 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
4321 ret = sandybridge_pcode_read(dev_priv,
4322 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
4323 &ddcc_status);
4324 if (0 == ret)
4325 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08004326 clamp_t(u8,
4327 ((ddcc_status >> 8) & 0xff),
4328 dev_priv->rps.min_freq,
4329 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004330 }
4331
Chris Wilsonaed242f2015-03-18 09:48:21 +00004332 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4333
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004334 /* Preserve min/max settings in case of re-init */
4335 if (dev_priv->rps.max_freq_softlimit == 0)
4336 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4337
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004338 if (dev_priv->rps.min_freq_softlimit == 0) {
4339 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4340 dev_priv->rps.min_freq_softlimit =
Ville Syrjälä813b5e62015-03-25 19:27:16 +02004341 max_t(int, dev_priv->rps.efficient_freq,
4342 intel_freq_opcode(dev_priv, 450));
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004343 else
4344 dev_priv->rps.min_freq_softlimit =
4345 dev_priv->rps.min_freq;
4346 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004347}
4348
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004349/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Zhe Wang20e49362014-11-04 17:07:05 +00004350static void gen9_enable_rps(struct drm_device *dev)
4351{
4352 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004353
4354 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4355
Damien Lespiauba1c5542015-01-16 18:07:26 +00004356 gen6_init_rps_frequencies(dev);
4357
Akash Goel0beb0592015-03-06 11:07:20 +05304358 /* Program defaults and thresholds for RPS*/
4359 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4360 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004361
Akash Goel0beb0592015-03-06 11:07:20 +05304362 /* 1 second timeout*/
4363 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
4364 GT_INTERVAL_FROM_US(dev_priv, 1000000));
4365
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004366 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004367
Akash Goel0beb0592015-03-06 11:07:20 +05304368 /* Leaning on the below call to gen6_set_rps to program/setup the
4369 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
4370 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
4371 dev_priv->rps.power = HIGH_POWER; /* force a reset */
4372 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004373
4374 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4375}
4376
4377static void gen9_enable_rc6(struct drm_device *dev)
4378{
4379 struct drm_i915_private *dev_priv = dev->dev_private;
Zhe Wang20e49362014-11-04 17:07:05 +00004380 struct intel_engine_cs *ring;
4381 uint32_t rc6_mask = 0;
4382 int unused;
4383
4384 /* 1a: Software RC state - RC0 */
4385 I915_WRITE(GEN6_RC_STATE, 0);
4386
4387 /* 1b: Get forcewake during program sequence. Although the driver
4388 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004389 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004390
4391 /* 2a: Disable RC states. */
4392 I915_WRITE(GEN6_RC_CONTROL, 0);
4393
4394 /* 2b: Program RC6 thresholds.*/
4395 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
4396 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4397 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4398 for_each_ring(ring, dev_priv, unused)
4399 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4400 I915_WRITE(GEN6_RC_SLEEP, 0);
4401 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
4402
Zhe Wang38c23522015-01-20 12:23:04 +00004403 /* 2c: Program Coarse Power Gating Policies. */
4404 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
4405 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
4406
Zhe Wang20e49362014-11-04 17:07:05 +00004407 /* 3a: Enable RC6 */
4408 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4409 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
4410 DRM_INFO("RC6 %s\n", (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4411 "on" : "off");
4412 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4413 GEN6_RC_CTL_EI_MODE(1) |
4414 rc6_mask);
4415
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304416 /*
4417 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
4418 * WaDisableRenderPowerGating:skl,bxt - Render PG need to be disabled with RC6.
4419 */
Sagar Kamblea4104c52015-04-10 14:11:29 +05304420 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304421 GEN9_MEDIA_PG_ENABLE : 0);
Sagar Kamblea4104c52015-04-10 14:11:29 +05304422
Zhe Wang38c23522015-01-20 12:23:04 +00004423
Mika Kuoppala59bad942015-01-16 11:34:40 +02004424 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004425
4426}
4427
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004428static void gen8_enable_rps(struct drm_device *dev)
4429{
4430 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004431 struct intel_engine_cs *ring;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004432 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004433 int unused;
4434
4435 /* 1a: Software RC state - RC0 */
4436 I915_WRITE(GEN6_RC_STATE, 0);
4437
4438 /* 1c & 1d: Get forcewake during program sequence. Although the driver
4439 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004440 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004441
4442 /* 2a: Disable RC states. */
4443 I915_WRITE(GEN6_RC_CONTROL, 0);
4444
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004445 /* Initialize rps frequencies */
4446 gen6_init_rps_frequencies(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004447
4448 /* 2b: Program RC6 thresholds.*/
4449 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
4450 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4451 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4452 for_each_ring(ring, dev_priv, unused)
4453 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4454 I915_WRITE(GEN6_RC_SLEEP, 0);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004455 if (IS_BROADWELL(dev))
4456 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
4457 else
4458 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004459
4460 /* 3: Enable RC6 */
4461 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4462 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Ben Widawskyabbf9d22014-01-28 20:25:41 -08004463 intel_print_rc6_info(dev, rc6_mask);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004464 if (IS_BROADWELL(dev))
4465 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4466 GEN7_RC_CTL_TO_MODE |
4467 rc6_mask);
4468 else
4469 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4470 GEN6_RC_CTL_EI_MODE(1) |
4471 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004472
4473 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07004474 I915_WRITE(GEN6_RPNSWREQ,
4475 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
4476 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4477 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02004478 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
4479 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004480
Daniel Vetter7526ed72014-09-29 15:07:19 +02004481 /* Docs recommend 900MHz, and 300 MHz respectively */
4482 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
4483 dev_priv->rps.max_freq_softlimit << 24 |
4484 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004485
Daniel Vetter7526ed72014-09-29 15:07:19 +02004486 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
4487 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
4488 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
4489 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004490
Daniel Vetter7526ed72014-09-29 15:07:19 +02004491 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004492
4493 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02004494 I915_WRITE(GEN6_RP_CONTROL,
4495 GEN6_RP_MEDIA_TURBO |
4496 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4497 GEN6_RP_MEDIA_IS_GFX |
4498 GEN6_RP_ENABLE |
4499 GEN6_RP_UP_BUSY_AVG |
4500 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004501
Daniel Vetter7526ed72014-09-29 15:07:19 +02004502 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004503
Tom O'Rourkec7f31532014-11-19 14:21:54 -08004504 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004505 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004506
Mika Kuoppala59bad942015-01-16 11:34:40 +02004507 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004508}
4509
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004510static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004511{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004512 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004513 struct intel_engine_cs *ring;
Ben Widawskyd060c162014-03-19 18:31:08 -07004514 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004515 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004516 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07004517 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004518
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004519 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004520
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004521 /* Here begins a magic sequence of register writes to enable
4522 * auto-downclocking.
4523 *
4524 * Perhaps there might be some value in exposing these to
4525 * userspace...
4526 */
4527 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004528
4529 /* Clear the DBG now so we don't confuse earlier errors */
4530 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
4531 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
4532 I915_WRITE(GTFIFODBG, gtfifodbg);
4533 }
4534
Mika Kuoppala59bad942015-01-16 11:34:40 +02004535 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004536
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004537 /* Initialize rps frequencies */
4538 gen6_init_rps_frequencies(dev);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004539
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004540 /* disable the counters and set deterministic thresholds */
4541 I915_WRITE(GEN6_RC_CONTROL, 0);
4542
4543 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
4544 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
4545 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
4546 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4547 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4548
Chris Wilsonb4519512012-05-11 14:29:30 +01004549 for_each_ring(ring, dev_priv, i)
4550 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004551
4552 I915_WRITE(GEN6_RC_SLEEP, 0);
4553 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Daniel Vetter29c78f62013-11-16 16:04:26 +01004554 if (IS_IVYBRIDGE(dev))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07004555 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
4556 else
4557 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08004558 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004559 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
4560
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004561 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004562 rc6_mode = intel_enable_rc6(dev_priv->dev);
4563 if (rc6_mode & INTEL_RC6_ENABLE)
4564 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
4565
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004566 /* We don't use those on Haswell */
4567 if (!IS_HASWELL(dev)) {
4568 if (rc6_mode & INTEL_RC6p_ENABLE)
4569 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004570
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004571 if (rc6_mode & INTEL_RC6pp_ENABLE)
4572 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
4573 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004574
Ben Widawskydc39fff2013-10-18 12:32:07 -07004575 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004576
4577 I915_WRITE(GEN6_RC_CONTROL,
4578 rc6_mask |
4579 GEN6_RC_CTL_EI_MODE(1) |
4580 GEN6_RC_CTL_HW_ENABLE);
4581
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004582 /* Power down if completely idle for over 50ms */
4583 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004584 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004585
Ben Widawsky42c05262012-09-26 10:34:00 -07004586 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawskyd060c162014-03-19 18:31:08 -07004587 if (ret)
Ben Widawsky42c05262012-09-26 10:34:00 -07004588 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Ben Widawskyd060c162014-03-19 18:31:08 -07004589
4590 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
4591 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
4592 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskyb39fb292014-03-19 18:31:11 -07004593 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
Ben Widawskyd060c162014-03-19 18:31:08 -07004594 (pcu_mbox & 0xff) * 50);
Ben Widawskyb39fb292014-03-19 18:31:11 -07004595 dev_priv->rps.max_freq = pcu_mbox & 0xff;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004596 }
4597
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004598 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004599 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004600
Ben Widawsky31643d52012-09-26 10:34:01 -07004601 rc6vids = 0;
4602 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
4603 if (IS_GEN6(dev) && ret) {
4604 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
4605 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
4606 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
4607 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
4608 rc6vids &= 0xffff00;
4609 rc6vids |= GEN6_ENCODE_RC6_VID(450);
4610 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
4611 if (ret)
4612 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
4613 }
4614
Mika Kuoppala59bad942015-01-16 11:34:40 +02004615 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004616}
4617
Imre Deakc2bc2fc2014-04-18 16:16:23 +03004618static void __gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004619{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004620 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004621 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01004622 unsigned int gpu_freq;
4623 unsigned int max_ia_freq, min_ring_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004624 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03004625 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004626
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004627 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004628
Ben Widawskyeda79642013-10-07 17:15:48 -03004629 policy = cpufreq_cpu_get(0);
4630 if (policy) {
4631 max_ia_freq = policy->cpuinfo.max_freq;
4632 cpufreq_cpu_put(policy);
4633 } else {
4634 /*
4635 * Default to measured freq if none found, PCU will ensure we
4636 * don't go over
4637 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004638 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03004639 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004640
4641 /* Convert from kHz to MHz */
4642 max_ia_freq /= 1000;
4643
Ben Widawsky153b4b952013-10-22 22:05:09 -07004644 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07004645 /* convert DDR frequency from units of 266.6MHz to bandwidth */
4646 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01004647
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004648 /*
4649 * For each potential GPU frequency, load a ring frequency we'd like
4650 * to use for memory access. We do this by specifying the IA frequency
4651 * the PCU should use as a reference to determine the ring frequency.
4652 */
Tom O'Rourke6985b352014-11-19 14:21:55 -08004653 for (gpu_freq = dev_priv->rps.max_freq; gpu_freq >= dev_priv->rps.min_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004654 gpu_freq--) {
Tom O'Rourke6985b352014-11-19 14:21:55 -08004655 int diff = dev_priv->rps.max_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01004656 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004657
Ben Widawsky46c764d2013-11-02 21:07:49 -07004658 if (INTEL_INFO(dev)->gen >= 8) {
4659 /* max(2 * GT, DDR). NB: GT is 50MHz units */
4660 ring_freq = max(min_ring_freq, gpu_freq);
4661 } else if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07004662 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01004663 ring_freq = max(min_ring_freq, ring_freq);
4664 /* leave ia_freq as the default, chosen by cpufreq */
4665 } else {
4666 /* On older processors, there is no separate ring
4667 * clock domain, so in order to boost the bandwidth
4668 * of the ring, we need to upclock the CPU (ia_freq).
4669 *
4670 * For GPU frequencies less than 750MHz,
4671 * just use the lowest ring freq.
4672 */
4673 if (gpu_freq < min_freq)
4674 ia_freq = 800;
4675 else
4676 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
4677 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
4678 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004679
Ben Widawsky42c05262012-09-26 10:34:00 -07004680 sandybridge_pcode_write(dev_priv,
4681 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01004682 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
4683 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
4684 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004685 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004686}
4687
Imre Deakc2bc2fc2014-04-18 16:16:23 +03004688void gen6_update_ring_freq(struct drm_device *dev)
4689{
4690 struct drm_i915_private *dev_priv = dev->dev_private;
4691
4692 if (INTEL_INFO(dev)->gen < 6 || IS_VALLEYVIEW(dev))
4693 return;
4694
4695 mutex_lock(&dev_priv->rps.hw_lock);
4696 __gen6_update_ring_freq(dev);
4697 mutex_unlock(&dev_priv->rps.hw_lock);
4698}
4699
Ville Syrjälä03af2042014-06-28 02:03:53 +03004700static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05304701{
Deepak S095acd52015-01-17 11:05:59 +05304702 struct drm_device *dev = dev_priv->dev;
Deepak S2b6b3a02014-05-27 15:59:30 +05304703 u32 val, rp0;
4704
Deepak S095acd52015-01-17 11:05:59 +05304705 if (dev->pdev->revision >= 0x20) {
4706 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05304707
Deepak S095acd52015-01-17 11:05:59 +05304708 switch (INTEL_INFO(dev)->eu_total) {
4709 case 8:
4710 /* (2 * 4) config */
4711 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
4712 break;
4713 case 12:
4714 /* (2 * 6) config */
4715 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
4716 break;
4717 case 16:
4718 /* (2 * 8) config */
4719 default:
4720 /* Setting (2 * 8) Min RP0 for any other combination */
4721 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
4722 break;
4723 }
4724 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
4725 } else {
4726 /* For pre-production hardware */
4727 val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG);
4728 rp0 = (val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
4729 PUNIT_GPU_STATUS_MAX_FREQ_MASK;
4730 }
Deepak S2b6b3a02014-05-27 15:59:30 +05304731 return rp0;
4732}
4733
4734static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
4735{
4736 u32 val, rpe;
4737
4738 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
4739 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
4740
4741 return rpe;
4742}
4743
Deepak S7707df42014-07-12 18:46:14 +05304744static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
4745{
Deepak S095acd52015-01-17 11:05:59 +05304746 struct drm_device *dev = dev_priv->dev;
Deepak S7707df42014-07-12 18:46:14 +05304747 u32 val, rp1;
4748
Deepak S095acd52015-01-17 11:05:59 +05304749 if (dev->pdev->revision >= 0x20) {
4750 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
4751 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
4752 } else {
4753 /* For pre-production hardware */
4754 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
4755 rp1 = ((val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
4756 PUNIT_GPU_STATUS_MAX_FREQ_MASK);
4757 }
Deepak S7707df42014-07-12 18:46:14 +05304758 return rp1;
4759}
4760
Deepak Sf8f2b002014-07-10 13:16:21 +05304761static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
4762{
4763 u32 val, rp1;
4764
4765 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
4766
4767 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
4768
4769 return rp1;
4770}
4771
Ville Syrjälä03af2042014-06-28 02:03:53 +03004772static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004773{
4774 u32 val, rp0;
4775
Jani Nikula64936252013-05-22 15:36:20 +03004776 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004777
4778 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
4779 /* Clamp to max */
4780 rp0 = min_t(u32, rp0, 0xea);
4781
4782 return rp0;
4783}
4784
4785static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
4786{
4787 u32 val, rpe;
4788
Jani Nikula64936252013-05-22 15:36:20 +03004789 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004790 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03004791 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004792 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
4793
4794 return rpe;
4795}
4796
Ville Syrjälä03af2042014-06-28 02:03:53 +03004797static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004798{
Jani Nikula64936252013-05-22 15:36:20 +03004799 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07004800}
4801
Imre Deakae484342014-03-31 15:10:44 +03004802/* Check that the pctx buffer wasn't move under us. */
4803static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
4804{
4805 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
4806
4807 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
4808 dev_priv->vlv_pctx->stolen->start);
4809}
4810
Deepak S38807742014-05-23 21:00:15 +05304811
4812/* Check that the pcbr address is not empty. */
4813static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
4814{
4815 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
4816
4817 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
4818}
4819
4820static void cherryview_setup_pctx(struct drm_device *dev)
4821{
4822 struct drm_i915_private *dev_priv = dev->dev_private;
4823 unsigned long pctx_paddr, paddr;
4824 struct i915_gtt *gtt = &dev_priv->gtt;
4825 u32 pcbr;
4826 int pctx_size = 32*1024;
4827
4828 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
4829
4830 pcbr = I915_READ(VLV_PCBR);
4831 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02004832 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05304833 paddr = (dev_priv->mm.stolen_base +
4834 (gtt->stolen_size - pctx_size));
4835
4836 pctx_paddr = (paddr & (~4095));
4837 I915_WRITE(VLV_PCBR, pctx_paddr);
4838 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02004839
4840 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05304841}
4842
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004843static void valleyview_setup_pctx(struct drm_device *dev)
4844{
4845 struct drm_i915_private *dev_priv = dev->dev_private;
4846 struct drm_i915_gem_object *pctx;
4847 unsigned long pctx_paddr;
4848 u32 pcbr;
4849 int pctx_size = 24*1024;
4850
Imre Deak17b0c1f2014-02-11 21:39:06 +02004851 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
4852
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004853 pcbr = I915_READ(VLV_PCBR);
4854 if (pcbr) {
4855 /* BIOS set it up already, grab the pre-alloc'd space */
4856 int pcbr_offset;
4857
4858 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
4859 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
4860 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02004861 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004862 pctx_size);
4863 goto out;
4864 }
4865
Ville Syrjäläce611ef2014-11-07 21:33:46 +02004866 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
4867
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004868 /*
4869 * From the Gunit register HAS:
4870 * The Gfx driver is expected to program this register and ensure
4871 * proper allocation within Gfx stolen memory. For example, this
4872 * register should be programmed such than the PCBR range does not
4873 * overlap with other ranges, such as the frame buffer, protected
4874 * memory, or any other relevant ranges.
4875 */
4876 pctx = i915_gem_object_create_stolen(dev, pctx_size);
4877 if (!pctx) {
4878 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
4879 return;
4880 }
4881
4882 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
4883 I915_WRITE(VLV_PCBR, pctx_paddr);
4884
4885out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02004886 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004887 dev_priv->vlv_pctx = pctx;
4888}
4889
Imre Deakae484342014-03-31 15:10:44 +03004890static void valleyview_cleanup_pctx(struct drm_device *dev)
4891{
4892 struct drm_i915_private *dev_priv = dev->dev_private;
4893
4894 if (WARN_ON(!dev_priv->vlv_pctx))
4895 return;
4896
4897 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
4898 dev_priv->vlv_pctx = NULL;
4899}
4900
Imre Deak4e805192014-04-14 20:24:41 +03004901static void valleyview_init_gt_powersave(struct drm_device *dev)
4902{
4903 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03004904 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03004905
4906 valleyview_setup_pctx(dev);
4907
4908 mutex_lock(&dev_priv->rps.hw_lock);
4909
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03004910 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
4911 switch ((val >> 6) & 3) {
4912 case 0:
4913 case 1:
4914 dev_priv->mem_freq = 800;
4915 break;
4916 case 2:
4917 dev_priv->mem_freq = 1066;
4918 break;
4919 case 3:
4920 dev_priv->mem_freq = 1333;
4921 break;
4922 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02004923 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03004924
Imre Deak4e805192014-04-14 20:24:41 +03004925 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
4926 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
4927 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004928 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03004929 dev_priv->rps.max_freq);
4930
4931 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
4932 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004933 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03004934 dev_priv->rps.efficient_freq);
4935
Deepak Sf8f2b002014-07-10 13:16:21 +05304936 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
4937 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004938 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05304939 dev_priv->rps.rp1_freq);
4940
Imre Deak4e805192014-04-14 20:24:41 +03004941 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
4942 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004943 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03004944 dev_priv->rps.min_freq);
4945
Chris Wilsonaed242f2015-03-18 09:48:21 +00004946 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4947
Imre Deak4e805192014-04-14 20:24:41 +03004948 /* Preserve min/max settings in case of re-init */
4949 if (dev_priv->rps.max_freq_softlimit == 0)
4950 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4951
4952 if (dev_priv->rps.min_freq_softlimit == 0)
4953 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
4954
4955 mutex_unlock(&dev_priv->rps.hw_lock);
4956}
4957
Deepak S38807742014-05-23 21:00:15 +05304958static void cherryview_init_gt_powersave(struct drm_device *dev)
4959{
Deepak S2b6b3a02014-05-27 15:59:30 +05304960 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03004961 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05304962
Deepak S38807742014-05-23 21:00:15 +05304963 cherryview_setup_pctx(dev);
Deepak S2b6b3a02014-05-27 15:59:30 +05304964
4965 mutex_lock(&dev_priv->rps.hw_lock);
4966
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02004967 mutex_lock(&dev_priv->dpio_lock);
4968 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
4969 mutex_unlock(&dev_priv->dpio_lock);
4970
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03004971 switch ((val >> 2) & 0x7) {
4972 case 0:
4973 case 1:
4974 dev_priv->rps.cz_freq = 200;
4975 dev_priv->mem_freq = 1600;
4976 break;
4977 case 2:
4978 dev_priv->rps.cz_freq = 267;
4979 dev_priv->mem_freq = 1600;
4980 break;
4981 case 3:
4982 dev_priv->rps.cz_freq = 333;
4983 dev_priv->mem_freq = 2000;
4984 break;
4985 case 4:
4986 dev_priv->rps.cz_freq = 320;
4987 dev_priv->mem_freq = 1600;
4988 break;
4989 case 5:
4990 dev_priv->rps.cz_freq = 400;
4991 dev_priv->mem_freq = 1600;
4992 break;
4993 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02004994 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03004995
Deepak S2b6b3a02014-05-27 15:59:30 +05304996 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
4997 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
4998 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004999 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305000 dev_priv->rps.max_freq);
5001
5002 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5003 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005004 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305005 dev_priv->rps.efficient_freq);
5006
Deepak S7707df42014-07-12 18:46:14 +05305007 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5008 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005009 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305010 dev_priv->rps.rp1_freq);
5011
Deepak S5b7c91b2015-05-09 18:15:46 +05305012 /* PUnit validated range is only [RPe, RP0] */
5013 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305014 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005015 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305016 dev_priv->rps.min_freq);
5017
Ville Syrjälä1c147622014-08-18 14:42:43 +03005018 WARN_ONCE((dev_priv->rps.max_freq |
5019 dev_priv->rps.efficient_freq |
5020 dev_priv->rps.rp1_freq |
5021 dev_priv->rps.min_freq) & 1,
5022 "Odd GPU freq values\n");
5023
Chris Wilsonaed242f2015-03-18 09:48:21 +00005024 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5025
Deepak S2b6b3a02014-05-27 15:59:30 +05305026 /* Preserve min/max settings in case of re-init */
5027 if (dev_priv->rps.max_freq_softlimit == 0)
5028 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5029
5030 if (dev_priv->rps.min_freq_softlimit == 0)
5031 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5032
5033 mutex_unlock(&dev_priv->rps.hw_lock);
Deepak S38807742014-05-23 21:00:15 +05305034}
5035
Imre Deak4e805192014-04-14 20:24:41 +03005036static void valleyview_cleanup_gt_powersave(struct drm_device *dev)
5037{
5038 valleyview_cleanup_pctx(dev);
5039}
5040
Deepak S38807742014-05-23 21:00:15 +05305041static void cherryview_enable_rps(struct drm_device *dev)
5042{
5043 struct drm_i915_private *dev_priv = dev->dev_private;
5044 struct intel_engine_cs *ring;
Deepak S2b6b3a02014-05-27 15:59:30 +05305045 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305046 int i;
5047
5048 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5049
5050 gtfifodbg = I915_READ(GTFIFODBG);
5051 if (gtfifodbg) {
5052 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5053 gtfifodbg);
5054 I915_WRITE(GTFIFODBG, gtfifodbg);
5055 }
5056
5057 cherryview_check_pctx(dev_priv);
5058
5059 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5060 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005061 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305062
Ville Syrjälä160614a2015-01-19 13:50:47 +02005063 /* Disable RC states. */
5064 I915_WRITE(GEN6_RC_CONTROL, 0);
5065
Deepak S38807742014-05-23 21:00:15 +05305066 /* 2a: Program RC6 thresholds.*/
5067 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5068 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5069 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5070
5071 for_each_ring(ring, dev_priv, i)
5072 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5073 I915_WRITE(GEN6_RC_SLEEP, 0);
5074
Deepak Sf4f71c72015-03-28 15:23:35 +05305075 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
5076 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05305077
5078 /* allows RC6 residency counter to work */
5079 I915_WRITE(VLV_COUNTER_CONTROL,
5080 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5081 VLV_MEDIA_RC6_COUNT_EN |
5082 VLV_RENDER_RC6_COUNT_EN));
5083
5084 /* For now we assume BIOS is allocating and populating the PCBR */
5085 pcbr = I915_READ(VLV_PCBR);
5086
Deepak S38807742014-05-23 21:00:15 +05305087 /* 3: Enable RC6 */
5088 if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) &&
5089 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005090 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305091
5092 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5093
Deepak S2b6b3a02014-05-27 15:59:30 +05305094 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005095 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305096 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5097 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5098 I915_WRITE(GEN6_RP_UP_EI, 66000);
5099 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5100
5101 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5102
5103 /* 5: Enable RPS */
5104 I915_WRITE(GEN6_RP_CONTROL,
5105 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005106 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305107 GEN6_RP_ENABLE |
5108 GEN6_RP_UP_BUSY_AVG |
5109 GEN6_RP_DOWN_IDLE_AVG);
5110
Deepak S3ef62342015-04-29 08:36:24 +05305111 /* Setting Fixed Bias */
5112 val = VLV_OVERRIDE_EN |
5113 VLV_SOC_TDP_EN |
5114 CHV_BIAS_CPU_50_SOC_50;
5115 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5116
Deepak S2b6b3a02014-05-27 15:59:30 +05305117 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5118
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005119 /* RPS code assumes GPLL is used */
5120 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5121
Ville Syrjäläc8e96272014-11-07 21:33:44 +02005122 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
Deepak S2b6b3a02014-05-27 15:59:30 +05305123 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5124
5125 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
5126 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005127 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305128 dev_priv->rps.cur_freq);
5129
5130 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005131 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305132 dev_priv->rps.efficient_freq);
5133
5134 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
5135
Mika Kuoppala59bad942015-01-16 11:34:40 +02005136 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305137}
5138
Jesse Barnes0a073b82013-04-17 15:54:58 -07005139static void valleyview_enable_rps(struct drm_device *dev)
5140{
5141 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005142 struct intel_engine_cs *ring;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07005143 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005144 int i;
5145
5146 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5147
Imre Deakae484342014-03-31 15:10:44 +03005148 valleyview_check_pctx(dev_priv);
5149
Jesse Barnes0a073b82013-04-17 15:54:58 -07005150 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07005151 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5152 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005153 I915_WRITE(GTFIFODBG, gtfifodbg);
5154 }
5155
Deepak Sc8d9a592013-11-23 14:55:42 +05305156 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005157 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005158
Ville Syrjälä160614a2015-01-19 13:50:47 +02005159 /* Disable RC states. */
5160 I915_WRITE(GEN6_RC_CONTROL, 0);
5161
Ville Syrjäläcad725f2015-01-19 13:50:48 +02005162 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005163 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5164 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5165 I915_WRITE(GEN6_RP_UP_EI, 66000);
5166 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5167
5168 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5169
5170 I915_WRITE(GEN6_RP_CONTROL,
5171 GEN6_RP_MEDIA_TURBO |
5172 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5173 GEN6_RP_MEDIA_IS_GFX |
5174 GEN6_RP_ENABLE |
5175 GEN6_RP_UP_BUSY_AVG |
5176 GEN6_RP_DOWN_IDLE_CONT);
5177
5178 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
5179 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5180 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5181
5182 for_each_ring(ring, dev_priv, i)
5183 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5184
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08005185 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005186
5187 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07005188 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04005189 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
5190 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07005191 VLV_MEDIA_RC6_COUNT_EN |
5192 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04005193
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005194 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08005195 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07005196
5197 intel_print_rc6_info(dev, rc6_mode);
5198
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005199 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005200
Deepak S3ef62342015-04-29 08:36:24 +05305201 /* Setting Fixed Bias */
5202 val = VLV_OVERRIDE_EN |
5203 VLV_SOC_TDP_EN |
5204 VLV_BIAS_CPU_125_SOC_875;
5205 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5206
Jani Nikula64936252013-05-22 15:36:20 +03005207 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005208
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005209 /* RPS code assumes GPLL is used */
5210 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5211
Ville Syrjäläc8e96272014-11-07 21:33:44 +02005212 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
Jesse Barnes0a073b82013-04-17 15:54:58 -07005213 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5214
Ben Widawskyb39fb292014-03-19 18:31:11 -07005215 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03005216 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005217 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005218 dev_priv->rps.cur_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005219
Ville Syrjälä73008b92013-06-25 19:21:01 +03005220 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005221 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005222 dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005223
Ben Widawskyb39fb292014-03-19 18:31:11 -07005224 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005225
Mika Kuoppala59bad942015-01-16 11:34:40 +02005226 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005227}
5228
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005229static unsigned long intel_pxfreq(u32 vidfreq)
5230{
5231 unsigned long freq;
5232 int div = (vidfreq & 0x3f0000) >> 16;
5233 int post = (vidfreq & 0x3000) >> 12;
5234 int pre = (vidfreq & 0x7);
5235
5236 if (!pre)
5237 return 0;
5238
5239 freq = ((div * 133333) / ((1<<post) * pre));
5240
5241 return freq;
5242}
5243
Daniel Vettereb48eb02012-04-26 23:28:12 +02005244static const struct cparams {
5245 u16 i;
5246 u16 t;
5247 u16 m;
5248 u16 c;
5249} cparams[] = {
5250 { 1, 1333, 301, 28664 },
5251 { 1, 1066, 294, 24460 },
5252 { 1, 800, 294, 25192 },
5253 { 0, 1333, 276, 27605 },
5254 { 0, 1066, 276, 27605 },
5255 { 0, 800, 231, 23784 },
5256};
5257
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005258static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005259{
5260 u64 total_count, diff, ret;
5261 u32 count1, count2, count3, m = 0, c = 0;
5262 unsigned long now = jiffies_to_msecs(jiffies), diff1;
5263 int i;
5264
Daniel Vetter02d71952012-08-09 16:44:54 +02005265 assert_spin_locked(&mchdev_lock);
5266
Daniel Vetter20e4d402012-08-08 23:35:39 +02005267 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005268
5269 /* Prevent division-by-zero if we are asking too fast.
5270 * Also, we don't get interesting results if we are polling
5271 * faster than once in 10ms, so just return the saved value
5272 * in such cases.
5273 */
5274 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02005275 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005276
5277 count1 = I915_READ(DMIEC);
5278 count2 = I915_READ(DDREC);
5279 count3 = I915_READ(CSIEC);
5280
5281 total_count = count1 + count2 + count3;
5282
5283 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02005284 if (total_count < dev_priv->ips.last_count1) {
5285 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005286 diff += total_count;
5287 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005288 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005289 }
5290
5291 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005292 if (cparams[i].i == dev_priv->ips.c_m &&
5293 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02005294 m = cparams[i].m;
5295 c = cparams[i].c;
5296 break;
5297 }
5298 }
5299
5300 diff = div_u64(diff, diff1);
5301 ret = ((m * diff) + c);
5302 ret = div_u64(ret, 10);
5303
Daniel Vetter20e4d402012-08-08 23:35:39 +02005304 dev_priv->ips.last_count1 = total_count;
5305 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005306
Daniel Vetter20e4d402012-08-08 23:35:39 +02005307 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005308
5309 return ret;
5310}
5311
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005312unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
5313{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005314 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005315 unsigned long val;
5316
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005317 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005318 return 0;
5319
5320 spin_lock_irq(&mchdev_lock);
5321
5322 val = __i915_chipset_val(dev_priv);
5323
5324 spin_unlock_irq(&mchdev_lock);
5325
5326 return val;
5327}
5328
Daniel Vettereb48eb02012-04-26 23:28:12 +02005329unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
5330{
5331 unsigned long m, x, b;
5332 u32 tsfs;
5333
5334 tsfs = I915_READ(TSFS);
5335
5336 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
5337 x = I915_READ8(TR1);
5338
5339 b = tsfs & TSFS_INTR_MASK;
5340
5341 return ((m * x) / 127) - b;
5342}
5343
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005344static int _pxvid_to_vd(u8 pxvid)
5345{
5346 if (pxvid == 0)
5347 return 0;
5348
5349 if (pxvid >= 8 && pxvid < 31)
5350 pxvid = 31;
5351
5352 return (pxvid + 2) * 125;
5353}
5354
5355static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005356{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005357 struct drm_device *dev = dev_priv->dev;
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005358 const int vd = _pxvid_to_vd(pxvid);
5359 const int vm = vd - 1125;
5360
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005361 if (INTEL_INFO(dev)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005362 return vm > 0 ? vm : 0;
5363
5364 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005365}
5366
Daniel Vetter02d71952012-08-09 16:44:54 +02005367static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005368{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005369 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005370 u32 count;
5371
Daniel Vetter02d71952012-08-09 16:44:54 +02005372 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005373
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005374 now = ktime_get_raw_ns();
5375 diffms = now - dev_priv->ips.last_time2;
5376 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005377
5378 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02005379 if (!diffms)
5380 return;
5381
5382 count = I915_READ(GFXEC);
5383
Daniel Vetter20e4d402012-08-08 23:35:39 +02005384 if (count < dev_priv->ips.last_count2) {
5385 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005386 diff += count;
5387 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005388 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005389 }
5390
Daniel Vetter20e4d402012-08-08 23:35:39 +02005391 dev_priv->ips.last_count2 = count;
5392 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005393
5394 /* More magic constants... */
5395 diff = diff * 1181;
5396 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005397 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005398}
5399
Daniel Vetter02d71952012-08-09 16:44:54 +02005400void i915_update_gfx_val(struct drm_i915_private *dev_priv)
5401{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005402 struct drm_device *dev = dev_priv->dev;
5403
5404 if (INTEL_INFO(dev)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02005405 return;
5406
Daniel Vetter92703882012-08-09 16:46:01 +02005407 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005408
5409 __i915_update_gfx_val(dev_priv);
5410
Daniel Vetter92703882012-08-09 16:46:01 +02005411 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005412}
5413
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005414static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005415{
5416 unsigned long t, corr, state1, corr2, state2;
5417 u32 pxvid, ext_v;
5418
Daniel Vetter02d71952012-08-09 16:44:54 +02005419 assert_spin_locked(&mchdev_lock);
5420
Ben Widawskyb39fb292014-03-19 18:31:11 -07005421 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_freq * 4));
Daniel Vettereb48eb02012-04-26 23:28:12 +02005422 pxvid = (pxvid >> 24) & 0x7f;
5423 ext_v = pvid_to_extvid(dev_priv, pxvid);
5424
5425 state1 = ext_v;
5426
5427 t = i915_mch_val(dev_priv);
5428
5429 /* Revel in the empirically derived constants */
5430
5431 /* Correction factor in 1/100000 units */
5432 if (t > 80)
5433 corr = ((t * 2349) + 135940);
5434 else if (t >= 50)
5435 corr = ((t * 964) + 29317);
5436 else /* < 50 */
5437 corr = ((t * 301) + 1004);
5438
5439 corr = corr * ((150142 * state1) / 10000 - 78642);
5440 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02005441 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005442
5443 state2 = (corr2 * state1) / 10000;
5444 state2 /= 100; /* convert to mW */
5445
Daniel Vetter02d71952012-08-09 16:44:54 +02005446 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005447
Daniel Vetter20e4d402012-08-08 23:35:39 +02005448 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005449}
5450
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005451unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
5452{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005453 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005454 unsigned long val;
5455
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005456 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005457 return 0;
5458
5459 spin_lock_irq(&mchdev_lock);
5460
5461 val = __i915_gfx_val(dev_priv);
5462
5463 spin_unlock_irq(&mchdev_lock);
5464
5465 return val;
5466}
5467
Daniel Vettereb48eb02012-04-26 23:28:12 +02005468/**
5469 * i915_read_mch_val - return value for IPS use
5470 *
5471 * Calculate and return a value for the IPS driver to use when deciding whether
5472 * we have thermal and power headroom to increase CPU or GPU power budget.
5473 */
5474unsigned long i915_read_mch_val(void)
5475{
5476 struct drm_i915_private *dev_priv;
5477 unsigned long chipset_val, graphics_val, ret = 0;
5478
Daniel Vetter92703882012-08-09 16:46:01 +02005479 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005480 if (!i915_mch_dev)
5481 goto out_unlock;
5482 dev_priv = i915_mch_dev;
5483
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005484 chipset_val = __i915_chipset_val(dev_priv);
5485 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005486
5487 ret = chipset_val + graphics_val;
5488
5489out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005490 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005491
5492 return ret;
5493}
5494EXPORT_SYMBOL_GPL(i915_read_mch_val);
5495
5496/**
5497 * i915_gpu_raise - raise GPU frequency limit
5498 *
5499 * Raise the limit; IPS indicates we have thermal headroom.
5500 */
5501bool i915_gpu_raise(void)
5502{
5503 struct drm_i915_private *dev_priv;
5504 bool ret = true;
5505
Daniel Vetter92703882012-08-09 16:46:01 +02005506 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005507 if (!i915_mch_dev) {
5508 ret = false;
5509 goto out_unlock;
5510 }
5511 dev_priv = i915_mch_dev;
5512
Daniel Vetter20e4d402012-08-08 23:35:39 +02005513 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
5514 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005515
5516out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005517 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005518
5519 return ret;
5520}
5521EXPORT_SYMBOL_GPL(i915_gpu_raise);
5522
5523/**
5524 * i915_gpu_lower - lower GPU frequency limit
5525 *
5526 * IPS indicates we're close to a thermal limit, so throttle back the GPU
5527 * frequency maximum.
5528 */
5529bool i915_gpu_lower(void)
5530{
5531 struct drm_i915_private *dev_priv;
5532 bool ret = true;
5533
Daniel Vetter92703882012-08-09 16:46:01 +02005534 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005535 if (!i915_mch_dev) {
5536 ret = false;
5537 goto out_unlock;
5538 }
5539 dev_priv = i915_mch_dev;
5540
Daniel Vetter20e4d402012-08-08 23:35:39 +02005541 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
5542 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005543
5544out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005545 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005546
5547 return ret;
5548}
5549EXPORT_SYMBOL_GPL(i915_gpu_lower);
5550
5551/**
5552 * i915_gpu_busy - indicate GPU business to IPS
5553 *
5554 * Tell the IPS driver whether or not the GPU is busy.
5555 */
5556bool i915_gpu_busy(void)
5557{
5558 struct drm_i915_private *dev_priv;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005559 struct intel_engine_cs *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005560 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01005561 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005562
Daniel Vetter92703882012-08-09 16:46:01 +02005563 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005564 if (!i915_mch_dev)
5565 goto out_unlock;
5566 dev_priv = i915_mch_dev;
5567
Chris Wilsonf047e392012-07-21 12:31:41 +01005568 for_each_ring(ring, dev_priv, i)
5569 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005570
5571out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005572 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005573
5574 return ret;
5575}
5576EXPORT_SYMBOL_GPL(i915_gpu_busy);
5577
5578/**
5579 * i915_gpu_turbo_disable - disable graphics turbo
5580 *
5581 * Disable graphics turbo by resetting the max frequency and setting the
5582 * current frequency to the default.
5583 */
5584bool i915_gpu_turbo_disable(void)
5585{
5586 struct drm_i915_private *dev_priv;
5587 bool ret = true;
5588
Daniel Vetter92703882012-08-09 16:46:01 +02005589 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005590 if (!i915_mch_dev) {
5591 ret = false;
5592 goto out_unlock;
5593 }
5594 dev_priv = i915_mch_dev;
5595
Daniel Vetter20e4d402012-08-08 23:35:39 +02005596 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005597
Daniel Vetter20e4d402012-08-08 23:35:39 +02005598 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02005599 ret = false;
5600
5601out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005602 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005603
5604 return ret;
5605}
5606EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
5607
5608/**
5609 * Tells the intel_ips driver that the i915 driver is now loaded, if
5610 * IPS got loaded first.
5611 *
5612 * This awkward dance is so that neither module has to depend on the
5613 * other in order for IPS to do the appropriate communication of
5614 * GPU turbo limits to i915.
5615 */
5616static void
5617ips_ping_for_i915_load(void)
5618{
5619 void (*link)(void);
5620
5621 link = symbol_get(ips_link_to_i915_driver);
5622 if (link) {
5623 link();
5624 symbol_put(ips_link_to_i915_driver);
5625 }
5626}
5627
5628void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
5629{
Daniel Vetter02d71952012-08-09 16:44:54 +02005630 /* We only register the i915 ips part with intel-ips once everything is
5631 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02005632 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005633 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02005634 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005635
5636 ips_ping_for_i915_load();
5637}
5638
5639void intel_gpu_ips_teardown(void)
5640{
Daniel Vetter92703882012-08-09 16:46:01 +02005641 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005642 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02005643 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005644}
Deepak S76c3552f2014-01-30 23:08:16 +05305645
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005646static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005647{
5648 struct drm_i915_private *dev_priv = dev->dev_private;
5649 u32 lcfuse;
5650 u8 pxw[16];
5651 int i;
5652
5653 /* Disable to program */
5654 I915_WRITE(ECR, 0);
5655 POSTING_READ(ECR);
5656
5657 /* Program energy weights for various events */
5658 I915_WRITE(SDEW, 0x15040d00);
5659 I915_WRITE(CSIEW0, 0x007f0000);
5660 I915_WRITE(CSIEW1, 0x1e220004);
5661 I915_WRITE(CSIEW2, 0x04000004);
5662
5663 for (i = 0; i < 5; i++)
5664 I915_WRITE(PEW + (i * 4), 0);
5665 for (i = 0; i < 3; i++)
5666 I915_WRITE(DEW + (i * 4), 0);
5667
5668 /* Program P-state weights to account for frequency power adjustment */
5669 for (i = 0; i < 16; i++) {
5670 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
5671 unsigned long freq = intel_pxfreq(pxvidfreq);
5672 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
5673 PXVFREQ_PX_SHIFT;
5674 unsigned long val;
5675
5676 val = vid * vid;
5677 val *= (freq / 1000);
5678 val *= 255;
5679 val /= (127*127*900);
5680 if (val > 0xff)
5681 DRM_ERROR("bad pxval: %ld\n", val);
5682 pxw[i] = val;
5683 }
5684 /* Render standby states get 0 weight */
5685 pxw[14] = 0;
5686 pxw[15] = 0;
5687
5688 for (i = 0; i < 4; i++) {
5689 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
5690 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
5691 I915_WRITE(PXW + (i * 4), val);
5692 }
5693
5694 /* Adjust magic regs to magic values (more experimental results) */
5695 I915_WRITE(OGW0, 0);
5696 I915_WRITE(OGW1, 0);
5697 I915_WRITE(EG0, 0x00007f00);
5698 I915_WRITE(EG1, 0x0000000e);
5699 I915_WRITE(EG2, 0x000e0000);
5700 I915_WRITE(EG3, 0x68000300);
5701 I915_WRITE(EG4, 0x42000000);
5702 I915_WRITE(EG5, 0x00140031);
5703 I915_WRITE(EG6, 0);
5704 I915_WRITE(EG7, 0);
5705
5706 for (i = 0; i < 8; i++)
5707 I915_WRITE(PXWL + (i * 4), 0);
5708
5709 /* Enable PMON + select events */
5710 I915_WRITE(ECR, 0x80000019);
5711
5712 lcfuse = I915_READ(LCFUSE02);
5713
Daniel Vetter20e4d402012-08-08 23:35:39 +02005714 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005715}
5716
Imre Deakae484342014-03-31 15:10:44 +03005717void intel_init_gt_powersave(struct drm_device *dev)
5718{
Imre Deake6069ca2014-04-18 16:01:02 +03005719 i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6);
5720
Deepak S38807742014-05-23 21:00:15 +05305721 if (IS_CHERRYVIEW(dev))
5722 cherryview_init_gt_powersave(dev);
5723 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03005724 valleyview_init_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03005725}
5726
5727void intel_cleanup_gt_powersave(struct drm_device *dev)
5728{
Deepak S38807742014-05-23 21:00:15 +05305729 if (IS_CHERRYVIEW(dev))
5730 return;
5731 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03005732 valleyview_cleanup_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03005733}
5734
Imre Deakdbea3ce2014-12-15 18:59:28 +02005735static void gen6_suspend_rps(struct drm_device *dev)
5736{
5737 struct drm_i915_private *dev_priv = dev->dev_private;
5738
5739 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
5740
Akash Goel4c2a8892015-03-06 11:07:24 +05305741 gen6_disable_rps_interrupts(dev);
Imre Deakdbea3ce2014-12-15 18:59:28 +02005742}
5743
Jesse Barnes156c7ca2014-06-12 08:35:45 -07005744/**
5745 * intel_suspend_gt_powersave - suspend PM work and helper threads
5746 * @dev: drm device
5747 *
5748 * We don't want to disable RC6 or other features here, we just want
5749 * to make sure any work we've queued has finished and won't bother
5750 * us while we're suspended.
5751 */
5752void intel_suspend_gt_powersave(struct drm_device *dev)
5753{
5754 struct drm_i915_private *dev_priv = dev->dev_private;
5755
Imre Deakd4d70aa2014-11-19 15:30:04 +02005756 if (INTEL_INFO(dev)->gen < 6)
5757 return;
5758
Imre Deakdbea3ce2014-12-15 18:59:28 +02005759 gen6_suspend_rps(dev);
Deepak Sb47adc12014-06-20 20:03:02 +05305760
5761 /* Force GPU to min freq during suspend */
5762 gen6_rps_idle(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07005763}
5764
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005765void intel_disable_gt_powersave(struct drm_device *dev)
5766{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005767 struct drm_i915_private *dev_priv = dev->dev_private;
5768
Daniel Vetter930ebb42012-06-29 23:32:16 +02005769 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005770 ironlake_disable_drps(dev);
Deepak S38807742014-05-23 21:00:15 +05305771 } else if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter10d8d362014-06-12 17:48:52 +02005772 intel_suspend_gt_powersave(dev);
Imre Deake4948372014-05-12 18:35:04 +03005773
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005774 mutex_lock(&dev_priv->rps.hw_lock);
Zhe Wang20e49362014-11-04 17:07:05 +00005775 if (INTEL_INFO(dev)->gen >= 9)
5776 gen9_disable_rps(dev);
5777 else if (IS_CHERRYVIEW(dev))
Deepak S38807742014-05-23 21:00:15 +05305778 cherryview_disable_rps(dev);
5779 else if (IS_VALLEYVIEW(dev))
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005780 valleyview_disable_rps(dev);
5781 else
5782 gen6_disable_rps(dev);
Imre Deake5347702014-11-19 15:30:02 +02005783
Chris Wilsonc0951f02013-10-10 21:58:50 +01005784 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005785 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02005786 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005787}
5788
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005789static void intel_gen6_powersave_work(struct work_struct *work)
5790{
5791 struct drm_i915_private *dev_priv =
5792 container_of(work, struct drm_i915_private,
5793 rps.delayed_resume_work.work);
5794 struct drm_device *dev = dev_priv->dev;
5795
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005796 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005797
Akash Goel4c2a8892015-03-06 11:07:24 +05305798 gen6_reset_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02005799
Deepak S38807742014-05-23 21:00:15 +05305800 if (IS_CHERRYVIEW(dev)) {
5801 cherryview_enable_rps(dev);
5802 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -07005803 valleyview_enable_rps(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00005804 } else if (INTEL_INFO(dev)->gen >= 9) {
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005805 gen9_enable_rc6(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00005806 gen9_enable_rps(dev);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005807 __gen6_update_ring_freq(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005808 } else if (IS_BROADWELL(dev)) {
5809 gen8_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005810 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005811 } else {
5812 gen6_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005813 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005814 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00005815
5816 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
5817 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
5818
5819 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
5820 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
5821
Chris Wilsonc0951f02013-10-10 21:58:50 +01005822 dev_priv->rps.enabled = true;
Imre Deak3cc134e2014-11-19 15:30:03 +02005823
Akash Goel4c2a8892015-03-06 11:07:24 +05305824 gen6_enable_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02005825
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005826 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deakc6df39b2014-04-14 20:24:29 +03005827
5828 intel_runtime_pm_put(dev_priv);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005829}
5830
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005831void intel_enable_gt_powersave(struct drm_device *dev)
5832{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005833 struct drm_i915_private *dev_priv = dev->dev_private;
5834
Yu Zhangf61018b2015-02-10 19:05:52 +08005835 /* Powersaving is controlled by the host when inside a VM */
5836 if (intel_vgpu_active(dev))
5837 return;
5838
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005839 if (IS_IRONLAKE_M(dev)) {
Imre Deakdc1d0132014-04-14 20:24:28 +03005840 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005841 ironlake_enable_drps(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005842 intel_init_emon(dev);
Imre Deakdc1d0132014-04-14 20:24:28 +03005843 mutex_unlock(&dev->struct_mutex);
Deepak S38807742014-05-23 21:00:15 +05305844 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005845 /*
5846 * PCU communication is slow and this doesn't need to be
5847 * done at any specific time, so do this out of our fast path
5848 * to make resume and init faster.
Imre Deakc6df39b2014-04-14 20:24:29 +03005849 *
5850 * We depend on the HW RC6 power context save/restore
5851 * mechanism when entering D3 through runtime PM suspend. So
5852 * disable RPM until RPS/RC6 is properly setup. We can only
5853 * get here via the driver load/system resume/runtime resume
5854 * paths, so the _noresume version is enough (and in case of
5855 * runtime resume it's necessary).
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005856 */
Imre Deakc6df39b2014-04-14 20:24:29 +03005857 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
5858 round_jiffies_up_relative(HZ)))
5859 intel_runtime_pm_get_noresume(dev_priv);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005860 }
5861}
5862
Imre Deakc6df39b2014-04-14 20:24:29 +03005863void intel_reset_gt_powersave(struct drm_device *dev)
5864{
5865 struct drm_i915_private *dev_priv = dev->dev_private;
5866
Imre Deakdbea3ce2014-12-15 18:59:28 +02005867 if (INTEL_INFO(dev)->gen < 6)
5868 return;
5869
5870 gen6_suspend_rps(dev);
Imre Deakc6df39b2014-04-14 20:24:29 +03005871 dev_priv->rps.enabled = false;
Imre Deakc6df39b2014-04-14 20:24:29 +03005872}
5873
Daniel Vetter3107bd42012-10-31 22:52:31 +01005874static void ibx_init_clock_gating(struct drm_device *dev)
5875{
5876 struct drm_i915_private *dev_priv = dev->dev_private;
5877
5878 /*
5879 * On Ibex Peak and Cougar Point, we need to disable clock
5880 * gating for the panel power sequencer or it will fail to
5881 * start up when no ports are active.
5882 */
5883 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
5884}
5885
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005886static void g4x_disable_trickle_feed(struct drm_device *dev)
5887{
5888 struct drm_i915_private *dev_priv = dev->dev_private;
5889 int pipe;
5890
Damien Lespiau055e3932014-08-18 13:49:10 +01005891 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005892 I915_WRITE(DSPCNTR(pipe),
5893 I915_READ(DSPCNTR(pipe)) |
5894 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03005895 intel_flush_primary_plane(dev_priv, pipe);
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005896 }
5897}
5898
Ville Syrjälä017636c2013-12-05 15:51:37 +02005899static void ilk_init_lp_watermarks(struct drm_device *dev)
5900{
5901 struct drm_i915_private *dev_priv = dev->dev_private;
5902
5903 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
5904 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
5905 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
5906
5907 /*
5908 * Don't touch WM1S_LP_EN here.
5909 * Doing so could cause underruns.
5910 */
5911}
5912
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03005913static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005914{
5915 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01005916 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005917
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01005918 /*
5919 * Required for FBC
5920 * WaFbcDisableDpfcClockGating:ilk
5921 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01005922 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
5923 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
5924 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005925
5926 I915_WRITE(PCH_3DCGDIS0,
5927 MARIUNIT_CLOCK_GATE_DISABLE |
5928 SVSMUNIT_CLOCK_GATE_DISABLE);
5929 I915_WRITE(PCH_3DCGDIS1,
5930 VFMUNIT_CLOCK_GATE_DISABLE);
5931
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005932 /*
5933 * According to the spec the following bits should be set in
5934 * order to enable memory self-refresh
5935 * The bit 22/21 of 0x42004
5936 * The bit 5 of 0x42020
5937 * The bit 15 of 0x45000
5938 */
5939 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5940 (I915_READ(ILK_DISPLAY_CHICKEN2) |
5941 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01005942 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005943 I915_WRITE(DISP_ARB_CTL,
5944 (I915_READ(DISP_ARB_CTL) |
5945 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02005946
5947 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005948
5949 /*
5950 * Based on the document from hardware guys the following bits
5951 * should be set unconditionally in order to enable FBC.
5952 * The bit 22 of 0x42000
5953 * The bit 22 of 0x42004
5954 * The bit 7,8,9 of 0x42020.
5955 */
5956 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01005957 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005958 I915_WRITE(ILK_DISPLAY_CHICKEN1,
5959 I915_READ(ILK_DISPLAY_CHICKEN1) |
5960 ILK_FBCQ_DIS);
5961 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5962 I915_READ(ILK_DISPLAY_CHICKEN2) |
5963 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005964 }
5965
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01005966 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
5967
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03005968 I915_WRITE(ILK_DISPLAY_CHICKEN2,
5969 I915_READ(ILK_DISPLAY_CHICKEN2) |
5970 ILK_ELPIN_409_SELECT);
5971 I915_WRITE(_3D_CHICKEN2,
5972 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
5973 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02005974
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01005975 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02005976 I915_WRITE(CACHE_MODE_0,
5977 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01005978
Akash Goel4e046322014-04-04 17:14:38 +05305979 /* WaDisable_RenderCache_OperationalFlush:ilk */
5980 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
5981
Ville Syrjälä0e088b82013-06-07 10:47:04 +03005982 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03005983
Daniel Vetter3107bd42012-10-31 22:52:31 +01005984 ibx_init_clock_gating(dev);
5985}
5986
5987static void cpt_init_clock_gating(struct drm_device *dev)
5988{
5989 struct drm_i915_private *dev_priv = dev->dev_private;
5990 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03005991 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01005992
5993 /*
5994 * On Ibex Peak and Cougar Point, we need to disable clock
5995 * gating for the panel power sequencer or it will fail to
5996 * start up when no ports are active.
5997 */
Jesse Barnescd664072013-10-02 10:34:19 -07005998 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
5999 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6000 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006001 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6002 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006003 /* The below fixes the weird display corruption, a few pixels shifted
6004 * downward, on (only) LVDS of some HP laptops with IVY.
6005 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006006 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006007 val = I915_READ(TRANS_CHICKEN2(pipe));
6008 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6009 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006010 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006011 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006012 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6013 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6014 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006015 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6016 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006017 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006018 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006019 I915_WRITE(TRANS_CHICKEN1(pipe),
6020 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6021 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006022}
6023
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006024static void gen6_check_mch_setup(struct drm_device *dev)
6025{
6026 struct drm_i915_private *dev_priv = dev->dev_private;
6027 uint32_t tmp;
6028
6029 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006030 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6031 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6032 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006033}
6034
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006035static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006036{
6037 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006038 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006039
Damien Lespiau231e54f2012-10-19 17:55:41 +01006040 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006041
6042 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6043 I915_READ(ILK_DISPLAY_CHICKEN2) |
6044 ILK_ELPIN_409_SELECT);
6045
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006046 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006047 I915_WRITE(_3D_CHICKEN,
6048 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6049
Akash Goel4e046322014-04-04 17:14:38 +05306050 /* WaDisable_RenderCache_OperationalFlush:snb */
6051 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6052
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006053 /*
6054 * BSpec recoomends 8x4 when MSAA is used,
6055 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006056 *
6057 * Note that PS/WM thread counts depend on the WIZ hashing
6058 * disable bit, which we don't touch here, but it's good
6059 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006060 */
6061 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006062 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006063
Ville Syrjälä017636c2013-12-05 15:51:37 +02006064 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006065
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006066 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006067 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006068
6069 I915_WRITE(GEN6_UCGCTL1,
6070 I915_READ(GEN6_UCGCTL1) |
6071 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6072 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6073
6074 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6075 * gating disable must be set. Failure to set it results in
6076 * flickering pixels due to Z write ordering failures after
6077 * some amount of runtime in the Mesa "fire" demo, and Unigine
6078 * Sanctuary and Tropics, and apparently anything else with
6079 * alpha test or pixel discard.
6080 *
6081 * According to the spec, bit 11 (RCCUNIT) must also be set,
6082 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006083 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006084 * WaDisableRCCUnitClockGating:snb
6085 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006086 */
6087 I915_WRITE(GEN6_UCGCTL2,
6088 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6089 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6090
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006091 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006092 I915_WRITE(_3D_CHICKEN3,
6093 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006094
6095 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006096 * Bspec says:
6097 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6098 * 3DSTATE_SF number of SF output attributes is more than 16."
6099 */
6100 I915_WRITE(_3D_CHICKEN3,
6101 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6102
6103 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006104 * According to the spec the following bits should be
6105 * set in order to enable memory self-refresh and fbc:
6106 * The bit21 and bit22 of 0x42000
6107 * The bit21 and bit22 of 0x42004
6108 * The bit5 and bit7 of 0x42020
6109 * The bit14 of 0x70180
6110 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006111 *
6112 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006113 */
6114 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6115 I915_READ(ILK_DISPLAY_CHICKEN1) |
6116 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6117 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6118 I915_READ(ILK_DISPLAY_CHICKEN2) |
6119 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006120 I915_WRITE(ILK_DSPCLK_GATE_D,
6121 I915_READ(ILK_DSPCLK_GATE_D) |
6122 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6123 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006124
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006125 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006126
Daniel Vetter3107bd42012-10-31 22:52:31 +01006127 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006128
6129 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006130}
6131
6132static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6133{
6134 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
6135
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006136 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006137 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006138 *
6139 * This actually overrides the dispatch
6140 * mode for all thread types.
6141 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006142 reg &= ~GEN7_FF_SCHED_MASK;
6143 reg |= GEN7_FF_TS_SCHED_HW;
6144 reg |= GEN7_FF_VS_SCHED_HW;
6145 reg |= GEN7_FF_DS_SCHED_HW;
6146
6147 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6148}
6149
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006150static void lpt_init_clock_gating(struct drm_device *dev)
6151{
6152 struct drm_i915_private *dev_priv = dev->dev_private;
6153
6154 /*
6155 * TODO: this bit should only be enabled when really needed, then
6156 * disabled when not needed anymore in order to save power.
6157 */
6158 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
6159 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6160 I915_READ(SOUTH_DSPCLK_GATE_D) |
6161 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006162
6163 /* WADPOClockGatingDisable:hsw */
6164 I915_WRITE(_TRANSA_CHICKEN1,
6165 I915_READ(_TRANSA_CHICKEN1) |
6166 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006167}
6168
Imre Deak7d708ee2013-04-17 14:04:50 +03006169static void lpt_suspend_hw(struct drm_device *dev)
6170{
6171 struct drm_i915_private *dev_priv = dev->dev_private;
6172
6173 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
6174 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
6175
6176 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6177 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6178 }
6179}
6180
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006181static void broadwell_init_clock_gating(struct drm_device *dev)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006182{
6183 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00006184 enum pipe pipe;
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006185 uint32_t misccpctl;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006186
Ville Syrjälä7ad0dba2015-05-19 20:32:55 +03006187 ilk_init_lp_watermarks(dev);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006188
Ben Widawskyab57fff2013-12-12 15:28:04 -08006189 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006190 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006191
Ben Widawskyab57fff2013-12-12 15:28:04 -08006192 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006193 I915_WRITE(CHICKEN_PAR1_1,
6194 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6195
Ben Widawskyab57fff2013-12-12 15:28:04 -08006196 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006197 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006198 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006199 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006200 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006201 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006202
Ben Widawskyab57fff2013-12-12 15:28:04 -08006203 /* WaVSRefCountFullforceMissDisable:bdw */
6204 /* WaDSRefCountFullforceMissDisable:bdw */
6205 I915_WRITE(GEN7_FF_THREAD_MODE,
6206 I915_READ(GEN7_FF_THREAD_MODE) &
6207 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006208
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006209 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6210 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006211
6212 /* WaDisableSDEUnitClockGating:bdw */
6213 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6214 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006215
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006216 /*
6217 * WaProgramL3SqcReg1Default:bdw
6218 * WaTempDisableDOPClkGating:bdw
6219 */
6220 misccpctl = I915_READ(GEN7_MISCCPCTL);
6221 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6222 I915_WRITE(GEN8_L3SQCREG1, BDW_WA_L3SQCREG1_DEFAULT);
6223 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6224
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006225 /*
6226 * WaGttCachingOffByDefault:bdw
6227 * GTT cache may not work with big pages, so if those
6228 * are ever enabled GTT cache may need to be disabled.
6229 */
6230 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
6231
Paulo Zanoni89d6b2b2014-08-21 17:09:36 -03006232 lpt_init_clock_gating(dev);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006233}
6234
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006235static void haswell_init_clock_gating(struct drm_device *dev)
6236{
6237 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006238
Ville Syrjälä017636c2013-12-05 15:51:37 +02006239 ilk_init_lp_watermarks(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006240
Francisco Jerezf3fc4882013-10-02 15:53:16 -07006241 /* L3 caching of data atomics doesn't work -- disable it. */
6242 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6243 I915_WRITE(HSW_ROW_CHICKEN3,
6244 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6245
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006246 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006247 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6248 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6249 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6250
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02006251 /* WaVSRefCountFullforceMissDisable:hsw */
6252 I915_WRITE(GEN7_FF_THREAD_MODE,
6253 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006254
Akash Goel4e046322014-04-04 17:14:38 +05306255 /* WaDisable_RenderCache_OperationalFlush:hsw */
6256 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6257
Chia-I Wufe27c602014-01-28 13:29:33 +08006258 /* enable HiZ Raw Stall Optimization */
6259 I915_WRITE(CACHE_MODE_0_GEN7,
6260 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6261
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006262 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006263 I915_WRITE(CACHE_MODE_1,
6264 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006265
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006266 /*
6267 * BSpec recommends 8x4 when MSAA is used,
6268 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006269 *
6270 * Note that PS/WM thread counts depend on the WIZ hashing
6271 * disable bit, which we don't touch here, but it's good
6272 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006273 */
6274 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006275 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006276
Kenneth Graunke94411592014-12-31 16:23:00 -08006277 /* WaSampleCChickenBitEnable:hsw */
6278 I915_WRITE(HALF_SLICE_CHICKEN3,
6279 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
6280
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006281 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07006282 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
6283
Paulo Zanoni90a88642013-05-03 17:23:45 -03006284 /* WaRsPkgCStateDisplayPMReq:hsw */
6285 I915_WRITE(CHICKEN_PAR1_1,
6286 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006287
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006288 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006289}
6290
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006291static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006292{
6293 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07006294 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006295
Ville Syrjälä017636c2013-12-05 15:51:37 +02006296 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006297
Damien Lespiau231e54f2012-10-19 17:55:41 +01006298 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006299
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006300 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05006301 I915_WRITE(_3D_CHICKEN3,
6302 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6303
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006304 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006305 I915_WRITE(IVB_CHICKEN3,
6306 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6307 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6308
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006309 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07006310 if (IS_IVB_GT1(dev))
6311 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
6312 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006313
Akash Goel4e046322014-04-04 17:14:38 +05306314 /* WaDisable_RenderCache_OperationalFlush:ivb */
6315 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6316
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006317 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006318 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
6319 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
6320
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006321 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006322 I915_WRITE(GEN7_L3CNTLREG1,
6323 GEN7_WA_FOR_GEN7_L3_CONTROL);
6324 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07006325 GEN7_WA_L3_CHICKEN_MODE);
6326 if (IS_IVB_GT1(dev))
6327 I915_WRITE(GEN7_ROW_CHICKEN2,
6328 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006329 else {
6330 /* must write both registers */
6331 I915_WRITE(GEN7_ROW_CHICKEN2,
6332 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07006333 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
6334 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006335 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006336
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006337 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05006338 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6339 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6340
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02006341 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006342 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006343 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006344 */
6345 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02006346 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006347
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006348 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006349 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6350 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6351 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6352
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006353 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006354
6355 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02006356
Chris Wilson22721342014-03-04 09:41:43 +00006357 if (0) { /* causes HiZ corruption on ivb:gt1 */
6358 /* enable HiZ Raw Stall Optimization */
6359 I915_WRITE(CACHE_MODE_0_GEN7,
6360 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6361 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08006362
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006363 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02006364 I915_WRITE(CACHE_MODE_1,
6365 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07006366
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006367 /*
6368 * BSpec recommends 8x4 when MSAA is used,
6369 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006370 *
6371 * Note that PS/WM thread counts depend on the WIZ hashing
6372 * disable bit, which we don't touch here, but it's good
6373 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006374 */
6375 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006376 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006377
Ben Widawsky20848222012-05-04 18:58:59 -07006378 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
6379 snpcr &= ~GEN6_MBC_SNPCR_MASK;
6380 snpcr |= GEN6_MBC_SNPCR_MED;
6381 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006382
Ben Widawskyab5c6082013-04-05 13:12:41 -07006383 if (!HAS_PCH_NOP(dev))
6384 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006385
6386 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006387}
6388
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006389static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv)
6390{
6391 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6392
6393 /*
6394 * Disable trickle feed and enable pnd deadline calculation
6395 */
6396 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
6397 I915_WRITE(CBR1_VLV, 0);
6398}
6399
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006400static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006401{
6402 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006403
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006404 vlv_init_display_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006405
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006406 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05006407 I915_WRITE(_3D_CHICKEN3,
6408 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6409
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006410 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006411 I915_WRITE(IVB_CHICKEN3,
6412 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6413 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6414
Ville Syrjäläfad7d362014-01-22 21:32:39 +02006415 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006416 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07006417 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08006418 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
6419 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006420
Akash Goel4e046322014-04-04 17:14:38 +05306421 /* WaDisable_RenderCache_OperationalFlush:vlv */
6422 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6423
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006424 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05006425 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6426 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6427
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006428 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07006429 I915_WRITE(GEN7_ROW_CHICKEN2,
6430 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
6431
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006432 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006433 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6434 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6435 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6436
Ville Syrjälä46680e02014-01-22 21:33:01 +02006437 gen7_setup_fixed_func_scheduler(dev_priv);
6438
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006439 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006440 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006441 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006442 */
6443 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006444 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006445
Akash Goelc98f5062014-03-24 23:00:07 +05306446 /* WaDisableL3Bank2xClockGate:vlv
6447 * Disabling L3 clock gating- MMIO 940c[25] = 1
6448 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
6449 I915_WRITE(GEN7_UCGCTL4,
6450 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07006451
Ville Syrjäläafd58e72014-01-22 21:33:03 +02006452 /*
6453 * BSpec says this must be set, even though
6454 * WaDisable4x2SubspanOptimization isn't listed for VLV.
6455 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02006456 I915_WRITE(CACHE_MODE_1,
6457 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07006458
6459 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02006460 * BSpec recommends 8x4 when MSAA is used,
6461 * however in practice 16x4 seems fastest.
6462 *
6463 * Note that PS/WM thread counts depend on the WIZ hashing
6464 * disable bit, which we don't touch here, but it's good
6465 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
6466 */
6467 I915_WRITE(GEN7_GT_MODE,
6468 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
6469
6470 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02006471 * WaIncreaseL3CreditsForVLVB0:vlv
6472 * This is the hardware default actually.
6473 */
6474 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
6475
6476 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006477 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07006478 * Disable clock gating on th GCFG unit to prevent a delay
6479 * in the reporting of vblank events.
6480 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02006481 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006482}
6483
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006484static void cherryview_init_clock_gating(struct drm_device *dev)
6485{
6486 struct drm_i915_private *dev_priv = dev->dev_private;
6487
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006488 vlv_init_display_clock_gating(dev_priv);
Ville Syrjälädd811e72014-04-09 13:28:33 +03006489
Ville Syrjälä232ce332014-04-09 13:28:35 +03006490 /* WaVSRefCountFullforceMissDisable:chv */
6491 /* WaDSRefCountFullforceMissDisable:chv */
6492 I915_WRITE(GEN7_FF_THREAD_MODE,
6493 I915_READ(GEN7_FF_THREAD_MODE) &
6494 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03006495
6496 /* WaDisableSemaphoreAndSyncFlipWait:chv */
6497 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6498 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03006499
6500 /* WaDisableCSUnitClockGating:chv */
6501 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
6502 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03006503
6504 /* WaDisableSDEUnitClockGating:chv */
6505 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6506 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006507
6508 /*
6509 * GTT cache may not work with big pages, so if those
6510 * are ever enabled GTT cache may need to be disabled.
6511 */
6512 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006513}
6514
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006515static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006516{
6517 struct drm_i915_private *dev_priv = dev->dev_private;
6518 uint32_t dspclk_gate;
6519
6520 I915_WRITE(RENCLK_GATE_D1, 0);
6521 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6522 GS_UNIT_CLOCK_GATE_DISABLE |
6523 CL_UNIT_CLOCK_GATE_DISABLE);
6524 I915_WRITE(RAMCLK_GATE_D, 0);
6525 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6526 OVRUNIT_CLOCK_GATE_DISABLE |
6527 OVCUNIT_CLOCK_GATE_DISABLE;
6528 if (IS_GM45(dev))
6529 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
6530 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02006531
6532 /* WaDisableRenderCachePipelinedFlush */
6533 I915_WRITE(CACHE_MODE_0,
6534 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03006535
Akash Goel4e046322014-04-04 17:14:38 +05306536 /* WaDisable_RenderCache_OperationalFlush:g4x */
6537 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6538
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006539 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006540}
6541
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006542static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006543{
6544 struct drm_i915_private *dev_priv = dev->dev_private;
6545
6546 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
6547 I915_WRITE(RENCLK_GATE_D2, 0);
6548 I915_WRITE(DSPCLK_GATE_D, 0);
6549 I915_WRITE(RAMCLK_GATE_D, 0);
6550 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006551 I915_WRITE(MI_ARB_STATE,
6552 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306553
6554 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6555 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006556}
6557
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006558static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006559{
6560 struct drm_i915_private *dev_priv = dev->dev_private;
6561
6562 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
6563 I965_RCC_CLOCK_GATE_DISABLE |
6564 I965_RCPB_CLOCK_GATE_DISABLE |
6565 I965_ISC_CLOCK_GATE_DISABLE |
6566 I965_FBC_CLOCK_GATE_DISABLE);
6567 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006568 I915_WRITE(MI_ARB_STATE,
6569 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306570
6571 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6572 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006573}
6574
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006575static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006576{
6577 struct drm_i915_private *dev_priv = dev->dev_private;
6578 u32 dstate = I915_READ(D_STATE);
6579
6580 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
6581 DSTATE_DOT_CLOCK_GATING;
6582 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01006583
6584 if (IS_PINEVIEW(dev))
6585 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02006586
6587 /* IIR "flip pending" means done if this bit is set */
6588 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02006589
6590 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02006591 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02006592
6593 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
6594 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03006595
6596 I915_WRITE(MI_ARB_STATE,
6597 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006598}
6599
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006600static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006601{
6602 struct drm_i915_private *dev_priv = dev->dev_private;
6603
6604 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02006605
6606 /* interrupts should cause a wake up from C3 */
6607 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
6608 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03006609
6610 I915_WRITE(MEM_MODE,
6611 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006612}
6613
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006614static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006615{
6616 struct drm_i915_private *dev_priv = dev->dev_private;
6617
6618 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03006619
6620 I915_WRITE(MEM_MODE,
6621 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
6622 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006623}
6624
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006625void intel_init_clock_gating(struct drm_device *dev)
6626{
6627 struct drm_i915_private *dev_priv = dev->dev_private;
6628
Damien Lespiauc57e3552015-02-09 19:33:05 +00006629 if (dev_priv->display.init_clock_gating)
6630 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006631}
6632
Imre Deak7d708ee2013-04-17 14:04:50 +03006633void intel_suspend_hw(struct drm_device *dev)
6634{
6635 if (HAS_PCH_LPT(dev))
6636 lpt_suspend_hw(dev);
6637}
6638
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006639/* Set up chip specific power management-related functions */
6640void intel_init_pm(struct drm_device *dev)
6641{
6642 struct drm_i915_private *dev_priv = dev->dev_private;
6643
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02006644 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006645
Daniel Vetterc921aba2012-04-26 23:28:17 +02006646 /* For cxsr */
6647 if (IS_PINEVIEW(dev))
6648 i915_pineview_get_mem_freq(dev);
6649 else if (IS_GEN5(dev))
6650 i915_ironlake_get_mem_freq(dev);
6651
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006652 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00006653 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00006654 skl_setup_wm_latency(dev);
6655
Imre Deaka82abe42015-03-27 14:00:04 +02006656 if (IS_BROXTON(dev))
6657 dev_priv->display.init_clock_gating =
6658 bxt_init_clock_gating;
6659 else if (IS_SKYLAKE(dev))
6660 dev_priv->display.init_clock_gating =
6661 skl_init_clock_gating;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00006662 dev_priv->display.update_wm = skl_update_wm;
6663 dev_priv->display.update_sprite_wm = skl_update_sprite_wm;
Damien Lespiauc83155a2014-03-28 00:18:35 +05306664 } else if (HAS_PCH_SPLIT(dev)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00006665 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03006666
Ville Syrjäläbd602542014-01-07 16:14:10 +02006667 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
6668 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
6669 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
6670 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
6671 dev_priv->display.update_wm = ilk_update_wm;
6672 dev_priv->display.update_sprite_wm = ilk_update_sprite_wm;
6673 } else {
6674 DRM_DEBUG_KMS("Failed to read display plane latency. "
6675 "Disable CxSR\n");
6676 }
6677
6678 if (IS_GEN5(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006679 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02006680 else if (IS_GEN6(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006681 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02006682 else if (IS_IVYBRIDGE(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006683 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02006684 else if (IS_HASWELL(dev))
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006685 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02006686 else if (INTEL_INFO(dev)->gen == 8)
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006687 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006688 } else if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläae801522015-03-05 21:19:49 +02006689 dev_priv->display.update_wm = valleyview_update_wm;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05306690 dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006691 dev_priv->display.init_clock_gating =
6692 cherryview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006693 } else if (IS_VALLEYVIEW(dev)) {
6694 dev_priv->display.update_wm = valleyview_update_wm;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05306695 dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006696 dev_priv->display.init_clock_gating =
6697 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006698 } else if (IS_PINEVIEW(dev)) {
6699 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
6700 dev_priv->is_ddr3,
6701 dev_priv->fsb_freq,
6702 dev_priv->mem_freq)) {
6703 DRM_INFO("failed to find known CxSR latency "
6704 "(found ddr%s fsb freq %d, mem freq %d), "
6705 "disabling CxSR\n",
6706 (dev_priv->is_ddr3 == 1) ? "3" : "2",
6707 dev_priv->fsb_freq, dev_priv->mem_freq);
6708 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03006709 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006710 dev_priv->display.update_wm = NULL;
6711 } else
6712 dev_priv->display.update_wm = pineview_update_wm;
6713 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
6714 } else if (IS_G4X(dev)) {
6715 dev_priv->display.update_wm = g4x_update_wm;
6716 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
6717 } else if (IS_GEN4(dev)) {
6718 dev_priv->display.update_wm = i965_update_wm;
6719 if (IS_CRESTLINE(dev))
6720 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
6721 else if (IS_BROADWATER(dev))
6722 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
6723 } else if (IS_GEN3(dev)) {
6724 dev_priv->display.update_wm = i9xx_update_wm;
6725 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
6726 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02006727 } else if (IS_GEN2(dev)) {
6728 if (INTEL_INFO(dev)->num_pipes == 1) {
6729 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006730 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02006731 } else {
6732 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006733 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02006734 }
6735
6736 if (IS_I85X(dev) || IS_I865G(dev))
6737 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
6738 else
6739 dev_priv->display.init_clock_gating = i830_init_clock_gating;
6740 } else {
6741 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006742 }
6743}
6744
Tom O'Rourke151a49d2014-11-13 18:50:10 -08006745int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07006746{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006747 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07006748
6749 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
6750 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
6751 return -EAGAIN;
6752 }
6753
6754 I915_WRITE(GEN6_PCODE_DATA, *val);
Damien Lespiaudddab342014-11-13 17:51:50 +00006755 I915_WRITE(GEN6_PCODE_DATA1, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07006756 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
6757
6758 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6759 500)) {
6760 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
6761 return -ETIMEDOUT;
6762 }
6763
6764 *val = I915_READ(GEN6_PCODE_DATA);
6765 I915_WRITE(GEN6_PCODE_DATA, 0);
6766
6767 return 0;
6768}
6769
Tom O'Rourke151a49d2014-11-13 18:50:10 -08006770int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07006771{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006772 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07006773
6774 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
6775 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
6776 return -EAGAIN;
6777 }
6778
6779 I915_WRITE(GEN6_PCODE_DATA, val);
6780 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
6781
6782 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6783 500)) {
6784 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
6785 return -ETIMEDOUT;
6786 }
6787
6788 I915_WRITE(GEN6_PCODE_DATA, 0);
6789
6790 return 0;
6791}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07006792
Ville Syrjälädd06f882014-11-10 22:55:12 +02006793static int vlv_gpu_freq_div(unsigned int czclk_freq)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006794{
Ville Syrjälädd06f882014-11-10 22:55:12 +02006795 switch (czclk_freq) {
6796 case 200:
6797 return 10;
6798 case 267:
6799 return 12;
6800 case 320:
6801 case 333:
Ville Syrjälädd06f882014-11-10 22:55:12 +02006802 return 16;
Ville Syrjäläab3fb152014-11-10 22:55:15 +02006803 case 400:
6804 return 20;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006805 default:
6806 return -1;
6807 }
Ville Syrjälädd06f882014-11-10 22:55:12 +02006808}
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006809
Ville Syrjälädd06f882014-11-10 22:55:12 +02006810static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
6811{
6812 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
6813
6814 div = vlv_gpu_freq_div(czclk_freq);
6815 if (div < 0)
6816 return div;
6817
6818 return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006819}
6820
Fengguang Wub55dd642014-07-12 11:21:39 +02006821static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006822{
Ville Syrjälädd06f882014-11-10 22:55:12 +02006823 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006824
Ville Syrjälädd06f882014-11-10 22:55:12 +02006825 mul = vlv_gpu_freq_div(czclk_freq);
6826 if (mul < 0)
6827 return mul;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006828
Ville Syrjälädd06f882014-11-10 22:55:12 +02006829 return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006830}
6831
Fengguang Wub55dd642014-07-12 11:21:39 +02006832static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05306833{
Ville Syrjälädd06f882014-11-10 22:55:12 +02006834 int div, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05306835
Ville Syrjälädd06f882014-11-10 22:55:12 +02006836 div = vlv_gpu_freq_div(czclk_freq) / 2;
6837 if (div < 0)
6838 return div;
Deepak S22b1b2f2014-07-12 14:54:33 +05306839
Ville Syrjälädd06f882014-11-10 22:55:12 +02006840 return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05306841}
6842
Fengguang Wub55dd642014-07-12 11:21:39 +02006843static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05306844{
Ville Syrjälädd06f882014-11-10 22:55:12 +02006845 int mul, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05306846
Ville Syrjälädd06f882014-11-10 22:55:12 +02006847 mul = vlv_gpu_freq_div(czclk_freq) / 2;
6848 if (mul < 0)
6849 return mul;
Deepak S22b1b2f2014-07-12 14:54:33 +05306850
Ville Syrjälä1c147622014-08-18 14:42:43 +03006851 /* CHV needs even values */
Ville Syrjälädd06f882014-11-10 22:55:12 +02006852 return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05306853}
6854
Ville Syrjälä616bc822015-01-23 21:04:25 +02006855int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
6856{
Akash Goel80b6dda2015-03-06 11:07:15 +05306857 if (IS_GEN9(dev_priv->dev))
6858 return (val * GT_FREQUENCY_MULTIPLIER) / GEN9_FREQ_SCALER;
6859 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02006860 return chv_gpu_freq(dev_priv, val);
6861 else if (IS_VALLEYVIEW(dev_priv->dev))
6862 return byt_gpu_freq(dev_priv, val);
6863 else
6864 return val * GT_FREQUENCY_MULTIPLIER;
6865}
6866
Ville Syrjälä616bc822015-01-23 21:04:25 +02006867int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
6868{
Akash Goel80b6dda2015-03-06 11:07:15 +05306869 if (IS_GEN9(dev_priv->dev))
6870 return (val * GEN9_FREQ_SCALER) / GT_FREQUENCY_MULTIPLIER;
6871 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02006872 return chv_freq_opcode(dev_priv, val);
Deepak S22b1b2f2014-07-12 14:54:33 +05306873 else if (IS_VALLEYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02006874 return byt_freq_opcode(dev_priv, val);
6875 else
6876 return val / GT_FREQUENCY_MULTIPLIER;
Deepak S22b1b2f2014-07-12 14:54:33 +05306877}
6878
Chris Wilson6ad790c2015-04-07 16:20:31 +01006879struct request_boost {
6880 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02006881 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01006882};
6883
6884static void __intel_rps_boost_work(struct work_struct *work)
6885{
6886 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01006887 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01006888
Chris Wilsone61b9952015-04-27 13:41:24 +01006889 if (!i915_gem_request_completed(req, true))
6890 gen6_rps_boost(to_i915(req->ring->dev), NULL,
6891 req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01006892
Chris Wilsone61b9952015-04-27 13:41:24 +01006893 i915_gem_request_unreference__unlocked(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01006894 kfree(boost);
6895}
6896
6897void intel_queue_rps_boost_for_request(struct drm_device *dev,
Daniel Vettereed29a52015-05-21 14:21:25 +02006898 struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01006899{
6900 struct request_boost *boost;
6901
Daniel Vettereed29a52015-05-21 14:21:25 +02006902 if (req == NULL || INTEL_INFO(dev)->gen < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01006903 return;
6904
Chris Wilsone61b9952015-04-27 13:41:24 +01006905 if (i915_gem_request_completed(req, true))
6906 return;
6907
Chris Wilson6ad790c2015-04-07 16:20:31 +01006908 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
6909 if (boost == NULL)
6910 return;
6911
Daniel Vettereed29a52015-05-21 14:21:25 +02006912 i915_gem_request_reference(req);
6913 boost->req = req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01006914
6915 INIT_WORK(&boost->work, __intel_rps_boost_work);
6916 queue_work(to_i915(dev)->wq, &boost->work);
6917}
6918
Daniel Vetterf742a552013-12-06 10:17:53 +01006919void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01006920{
6921 struct drm_i915_private *dev_priv = dev->dev_private;
6922
Daniel Vetterf742a552013-12-06 10:17:53 +01006923 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01006924 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01006925
Chris Wilson907b28c2013-07-19 20:36:52 +01006926 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
6927 intel_gen6_powersave_work);
Chris Wilson1854d5c2015-04-07 16:20:32 +01006928 INIT_LIST_HEAD(&dev_priv->rps.clients);
Chris Wilson2e1b8732015-04-27 13:41:22 +01006929 INIT_LIST_HEAD(&dev_priv->rps.semaphores.link);
6930 INIT_LIST_HEAD(&dev_priv->rps.mmioflips.link);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03006931
Paulo Zanoni33688d92014-03-07 20:08:19 -03006932 dev_priv->pm.suspended = false;
Chris Wilson907b28c2013-07-19 20:36:52 +01006933}