blob: 23e5be9887a3785a15ae89d180ea93f7104c7216 [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äa7a6c492015-06-24 22:00:01 +0300337 POSTING_READ(FW_BLC_SELF_VLV);
Imre Deak5209b1f2014-07-01 12:36:17 +0300338 } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) {
339 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300340 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300341 } 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);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300345 POSTING_READ(DSPFW3);
Imre Deak5209b1f2014-07-01 12:36:17 +0300346 } else if (IS_I945G(dev) || IS_I945GM(dev)) {
347 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
348 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
349 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300350 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300351 } else if (IS_I915GM(dev)) {
352 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
353 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
354 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300355 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300356 } else {
357 return;
358 }
359
360 DRM_DEBUG_KMS("memory self-refresh is %s\n",
361 enable ? "enabled" : "disabled");
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300362}
363
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200364
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300365/*
366 * Latency for FIFO fetches is dependent on several factors:
367 * - memory configuration (speed, channels)
368 * - chipset
369 * - current MCH state
370 * It can be fairly high in some situations, so here we assume a fairly
371 * pessimal value. It's a tradeoff between extra memory fetches (if we
372 * set this value too high, the FIFO will fetch frequently to stay full)
373 * and power consumption (set it too low to save power and we might see
374 * FIFO underruns and display "flicker").
375 *
376 * A value of 5us seems to be a good balance; safe for very low end
377 * platforms but not overly aggressive on lower latency configs.
378 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100379static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300380
Ville Syrjäläb5004722015-03-05 21:19:47 +0200381#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
382 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
383
384static int vlv_get_fifo_size(struct drm_device *dev,
385 enum pipe pipe, int plane)
386{
387 struct drm_i915_private *dev_priv = dev->dev_private;
388 int sprite0_start, sprite1_start, size;
389
390 switch (pipe) {
391 uint32_t dsparb, dsparb2, dsparb3;
392 case PIPE_A:
393 dsparb = I915_READ(DSPARB);
394 dsparb2 = I915_READ(DSPARB2);
395 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
396 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
397 break;
398 case PIPE_B:
399 dsparb = I915_READ(DSPARB);
400 dsparb2 = I915_READ(DSPARB2);
401 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
402 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
403 break;
404 case PIPE_C:
405 dsparb2 = I915_READ(DSPARB2);
406 dsparb3 = I915_READ(DSPARB3);
407 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
408 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
409 break;
410 default:
411 return 0;
412 }
413
414 switch (plane) {
415 case 0:
416 size = sprite0_start;
417 break;
418 case 1:
419 size = sprite1_start - sprite0_start;
420 break;
421 case 2:
422 size = 512 - 1 - sprite1_start;
423 break;
424 default:
425 return 0;
426 }
427
428 DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n",
429 pipe_name(pipe), plane == 0 ? "primary" : "sprite",
430 plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1),
431 size);
432
433 return size;
434}
435
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300436static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300437{
438 struct drm_i915_private *dev_priv = dev->dev_private;
439 uint32_t dsparb = I915_READ(DSPARB);
440 int size;
441
442 size = dsparb & 0x7f;
443 if (plane)
444 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
445
446 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
447 plane ? "B" : "A", size);
448
449 return size;
450}
451
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200452static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300453{
454 struct drm_i915_private *dev_priv = dev->dev_private;
455 uint32_t dsparb = I915_READ(DSPARB);
456 int size;
457
458 size = dsparb & 0x1ff;
459 if (plane)
460 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
461 size >>= 1; /* Convert to cachelines */
462
463 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
464 plane ? "B" : "A", size);
465
466 return size;
467}
468
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300469static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300470{
471 struct drm_i915_private *dev_priv = dev->dev_private;
472 uint32_t dsparb = I915_READ(DSPARB);
473 int size;
474
475 size = dsparb & 0x7f;
476 size >>= 2; /* Convert to cachelines */
477
478 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
479 plane ? "B" : "A",
480 size);
481
482 return size;
483}
484
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300485/* Pineview has different values for various configs */
486static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300487 .fifo_size = PINEVIEW_DISPLAY_FIFO,
488 .max_wm = PINEVIEW_MAX_WM,
489 .default_wm = PINEVIEW_DFT_WM,
490 .guard_size = PINEVIEW_GUARD_WM,
491 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300492};
493static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300494 .fifo_size = PINEVIEW_DISPLAY_FIFO,
495 .max_wm = PINEVIEW_MAX_WM,
496 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
497 .guard_size = PINEVIEW_GUARD_WM,
498 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300499};
500static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300501 .fifo_size = PINEVIEW_CURSOR_FIFO,
502 .max_wm = PINEVIEW_CURSOR_MAX_WM,
503 .default_wm = PINEVIEW_CURSOR_DFT_WM,
504 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
505 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300506};
507static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300508 .fifo_size = PINEVIEW_CURSOR_FIFO,
509 .max_wm = PINEVIEW_CURSOR_MAX_WM,
510 .default_wm = PINEVIEW_CURSOR_DFT_WM,
511 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
512 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300513};
514static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300515 .fifo_size = G4X_FIFO_SIZE,
516 .max_wm = G4X_MAX_WM,
517 .default_wm = G4X_MAX_WM,
518 .guard_size = 2,
519 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300520};
521static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300522 .fifo_size = I965_CURSOR_FIFO,
523 .max_wm = I965_CURSOR_MAX_WM,
524 .default_wm = I965_CURSOR_DFT_WM,
525 .guard_size = 2,
526 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300527};
528static const struct intel_watermark_params valleyview_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300529 .fifo_size = VALLEYVIEW_FIFO_SIZE,
530 .max_wm = VALLEYVIEW_MAX_WM,
531 .default_wm = VALLEYVIEW_MAX_WM,
532 .guard_size = 2,
533 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300534};
535static const struct intel_watermark_params valleyview_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300536 .fifo_size = I965_CURSOR_FIFO,
537 .max_wm = VALLEYVIEW_CURSOR_MAX_WM,
538 .default_wm = I965_CURSOR_DFT_WM,
539 .guard_size = 2,
540 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300541};
542static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300543 .fifo_size = I965_CURSOR_FIFO,
544 .max_wm = I965_CURSOR_MAX_WM,
545 .default_wm = I965_CURSOR_DFT_WM,
546 .guard_size = 2,
547 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300548};
549static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300550 .fifo_size = I945_FIFO_SIZE,
551 .max_wm = I915_MAX_WM,
552 .default_wm = 1,
553 .guard_size = 2,
554 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300555};
556static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300557 .fifo_size = I915_FIFO_SIZE,
558 .max_wm = I915_MAX_WM,
559 .default_wm = 1,
560 .guard_size = 2,
561 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300562};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300563static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300564 .fifo_size = I855GM_FIFO_SIZE,
565 .max_wm = I915_MAX_WM,
566 .default_wm = 1,
567 .guard_size = 2,
568 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300569};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300570static const struct intel_watermark_params i830_bc_wm_info = {
571 .fifo_size = I855GM_FIFO_SIZE,
572 .max_wm = I915_MAX_WM/2,
573 .default_wm = 1,
574 .guard_size = 2,
575 .cacheline_size = I830_FIFO_LINE_SIZE,
576};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200577static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300578 .fifo_size = I830_FIFO_SIZE,
579 .max_wm = I915_MAX_WM,
580 .default_wm = 1,
581 .guard_size = 2,
582 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300583};
584
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300585/**
586 * intel_calculate_wm - calculate watermark level
587 * @clock_in_khz: pixel clock
588 * @wm: chip FIFO params
589 * @pixel_size: display pixel size
590 * @latency_ns: memory latency for the platform
591 *
592 * Calculate the watermark level (the level at which the display plane will
593 * start fetching from memory again). Each chip has a different display
594 * FIFO size and allocation, so the caller needs to figure that out and pass
595 * in the correct intel_watermark_params structure.
596 *
597 * As the pixel clock runs, the FIFO will be drained at a rate that depends
598 * on the pixel size. When it reaches the watermark level, it'll start
599 * fetching FIFO line sized based chunks from memory until the FIFO fills
600 * past the watermark point. If the FIFO drains completely, a FIFO underrun
601 * will occur, and a display engine hang could result.
602 */
603static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
604 const struct intel_watermark_params *wm,
605 int fifo_size,
606 int pixel_size,
607 unsigned long latency_ns)
608{
609 long entries_required, wm_size;
610
611 /*
612 * Note: we need to make sure we don't overflow for various clock &
613 * latency values.
614 * clocks go from a few thousand to several hundred thousand.
615 * latency is usually a few thousand
616 */
617 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
618 1000;
619 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
620
621 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
622
623 wm_size = fifo_size - (entries_required + wm->guard_size);
624
625 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
626
627 /* Don't promote wm_size to unsigned... */
628 if (wm_size > (long)wm->max_wm)
629 wm_size = wm->max_wm;
630 if (wm_size <= 0)
631 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300632
633 /*
634 * Bspec seems to indicate that the value shouldn't be lower than
635 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
636 * Lets go for 8 which is the burst size since certain platforms
637 * already use a hardcoded 8 (which is what the spec says should be
638 * done).
639 */
640 if (wm_size <= 8)
641 wm_size = 8;
642
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300643 return wm_size;
644}
645
646static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
647{
648 struct drm_crtc *crtc, *enabled = NULL;
649
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100650 for_each_crtc(dev, crtc) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000651 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300652 if (enabled)
653 return NULL;
654 enabled = crtc;
655 }
656 }
657
658 return enabled;
659}
660
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300661static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300662{
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300663 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300664 struct drm_i915_private *dev_priv = dev->dev_private;
665 struct drm_crtc *crtc;
666 const struct cxsr_latency *latency;
667 u32 reg;
668 unsigned long wm;
669
670 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
671 dev_priv->fsb_freq, dev_priv->mem_freq);
672 if (!latency) {
673 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300674 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300675 return;
676 }
677
678 crtc = single_enabled_crtc(dev);
679 if (crtc) {
Damien Lespiau241bfc32013-09-25 16:45:37 +0100680 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -0800681 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100682 int clock;
683
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200684 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100685 clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300686
687 /* Display SR */
688 wm = intel_calculate_wm(clock, &pineview_display_wm,
689 pineview_display_wm.fifo_size,
690 pixel_size, latency->display_sr);
691 reg = I915_READ(DSPFW1);
692 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200693 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300694 I915_WRITE(DSPFW1, reg);
695 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
696
697 /* cursor SR */
698 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
699 pineview_display_wm.fifo_size,
700 pixel_size, latency->cursor_sr);
701 reg = I915_READ(DSPFW3);
702 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200703 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300704 I915_WRITE(DSPFW3, reg);
705
706 /* Display HPLL off SR */
707 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
708 pineview_display_hplloff_wm.fifo_size,
709 pixel_size, latency->display_hpll_disable);
710 reg = I915_READ(DSPFW3);
711 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200712 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300713 I915_WRITE(DSPFW3, reg);
714
715 /* cursor HPLL off SR */
716 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
717 pineview_display_hplloff_wm.fifo_size,
718 pixel_size, latency->cursor_hpll_disable);
719 reg = I915_READ(DSPFW3);
720 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200721 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300722 I915_WRITE(DSPFW3, reg);
723 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
724
Imre Deak5209b1f2014-07-01 12:36:17 +0300725 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300726 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300727 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300728 }
729}
730
731static bool g4x_compute_wm0(struct drm_device *dev,
732 int plane,
733 const struct intel_watermark_params *display,
734 int display_latency_ns,
735 const struct intel_watermark_params *cursor,
736 int cursor_latency_ns,
737 int *plane_wm,
738 int *cursor_wm)
739{
740 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300741 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300742 int htotal, hdisplay, clock, pixel_size;
743 int line_time_us, line_count;
744 int entries, tlb_miss;
745
746 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +0000747 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300748 *cursor_wm = cursor->guard_size;
749 *plane_wm = display->guard_size;
750 return false;
751 }
752
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200753 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100754 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800755 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200756 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800757 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300758
759 /* Use the small buffer method to calculate plane watermark */
760 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
761 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
762 if (tlb_miss > 0)
763 entries += tlb_miss;
764 entries = DIV_ROUND_UP(entries, display->cacheline_size);
765 *plane_wm = entries + display->guard_size;
766 if (*plane_wm > (int)display->max_wm)
767 *plane_wm = display->max_wm;
768
769 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200770 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300771 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Matt Roper3dd512f2015-02-27 10:12:00 -0800772 entries = line_count * crtc->cursor->state->crtc_w * pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300773 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
774 if (tlb_miss > 0)
775 entries += tlb_miss;
776 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
777 *cursor_wm = entries + cursor->guard_size;
778 if (*cursor_wm > (int)cursor->max_wm)
779 *cursor_wm = (int)cursor->max_wm;
780
781 return true;
782}
783
784/*
785 * Check the wm result.
786 *
787 * If any calculated watermark values is larger than the maximum value that
788 * can be programmed into the associated watermark register, that watermark
789 * must be disabled.
790 */
791static bool g4x_check_srwm(struct drm_device *dev,
792 int display_wm, int cursor_wm,
793 const struct intel_watermark_params *display,
794 const struct intel_watermark_params *cursor)
795{
796 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
797 display_wm, cursor_wm);
798
799 if (display_wm > display->max_wm) {
800 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
801 display_wm, display->max_wm);
802 return false;
803 }
804
805 if (cursor_wm > cursor->max_wm) {
806 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
807 cursor_wm, cursor->max_wm);
808 return false;
809 }
810
811 if (!(display_wm || cursor_wm)) {
812 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
813 return false;
814 }
815
816 return true;
817}
818
819static bool g4x_compute_srwm(struct drm_device *dev,
820 int plane,
821 int latency_ns,
822 const struct intel_watermark_params *display,
823 const struct intel_watermark_params *cursor,
824 int *display_wm, int *cursor_wm)
825{
826 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300827 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300828 int hdisplay, htotal, pixel_size, clock;
829 unsigned long line_time_us;
830 int line_count, line_size;
831 int small, large;
832 int entries;
833
834 if (!latency_ns) {
835 *display_wm = *cursor_wm = 0;
836 return false;
837 }
838
839 crtc = intel_get_crtc_for_plane(dev, plane);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200840 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100841 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800842 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200843 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800844 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300845
Ville Syrjälä922044c2014-02-14 14:18:57 +0200846 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300847 line_count = (latency_ns / line_time_us + 1000) / 1000;
848 line_size = hdisplay * pixel_size;
849
850 /* Use the minimum of the small and large buffer method for primary */
851 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
852 large = line_count * line_size;
853
854 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
855 *display_wm = entries + display->guard_size;
856
857 /* calculate the self-refresh watermark for display cursor */
Matt Roper3dd512f2015-02-27 10:12:00 -0800858 entries = line_count * pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300859 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
860 *cursor_wm = entries + cursor->guard_size;
861
862 return g4x_check_srwm(dev,
863 *display_wm, *cursor_wm,
864 display, cursor);
865}
866
Ville Syrjälä15665972015-03-10 16:16:28 +0200867#define FW_WM_VLV(value, plane) \
868 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
869
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200870static void vlv_write_wm_values(struct intel_crtc *crtc,
871 const struct vlv_wm_values *wm)
872{
873 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
874 enum pipe pipe = crtc->pipe;
875
876 I915_WRITE(VLV_DDL(pipe),
877 (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) |
878 (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) |
879 (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) |
880 (wm->ddl[pipe].primary << DDL_PLANE_SHIFT));
881
Ville Syrjäläae801522015-03-05 21:19:49 +0200882 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200883 FW_WM(wm->sr.plane, SR) |
884 FW_WM(wm->pipe[PIPE_B].cursor, CURSORB) |
885 FW_WM_VLV(wm->pipe[PIPE_B].primary, PLANEB) |
886 FW_WM_VLV(wm->pipe[PIPE_A].primary, PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200887 I915_WRITE(DSPFW2,
Ville Syrjälä15665972015-03-10 16:16:28 +0200888 FW_WM_VLV(wm->pipe[PIPE_A].sprite[1], SPRITEB) |
889 FW_WM(wm->pipe[PIPE_A].cursor, CURSORA) |
890 FW_WM_VLV(wm->pipe[PIPE_A].sprite[0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200891 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200892 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200893
894 if (IS_CHERRYVIEW(dev_priv)) {
895 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200896 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
897 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200898 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200899 FW_WM_VLV(wm->pipe[PIPE_C].sprite[1], SPRITEF) |
900 FW_WM_VLV(wm->pipe[PIPE_C].sprite[0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200901 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200902 FW_WM_VLV(wm->pipe[PIPE_C].primary, PLANEC) |
903 FW_WM(wm->pipe[PIPE_C].cursor, CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200904 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200905 FW_WM(wm->sr.plane >> 9, SR_HI) |
906 FW_WM(wm->pipe[PIPE_C].sprite[1] >> 8, SPRITEF_HI) |
907 FW_WM(wm->pipe[PIPE_C].sprite[0] >> 8, SPRITEE_HI) |
908 FW_WM(wm->pipe[PIPE_C].primary >> 8, PLANEC_HI) |
909 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
910 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
911 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
912 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
913 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
914 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200915 } else {
916 I915_WRITE(DSPFW7,
Ville Syrjälä15665972015-03-10 16:16:28 +0200917 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
918 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200919 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200920 FW_WM(wm->sr.plane >> 9, SR_HI) |
921 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
922 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
923 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
924 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
925 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
926 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200927 }
928
929 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200930}
931
Ville Syrjälä15665972015-03-10 16:16:28 +0200932#undef FW_WM_VLV
933
Ville Syrjälä341c5262015-03-05 21:19:44 +0200934static uint8_t vlv_compute_drain_latency(struct drm_crtc *crtc,
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200935 struct drm_plane *plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300936{
Rodrigo Vivi5e56ba42014-10-17 08:05:08 -0700937 struct drm_device *dev = crtc->dev;
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200938 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
939 int entries, prec_mult, drain_latency, pixel_size;
940 int clock = intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä341c5262015-03-05 21:19:44 +0200941 const int high_precision = IS_CHERRYVIEW(dev) ? 16 : 64;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300942
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200943 /*
944 * FIXME the plane might have an fb
945 * but be invisible (eg. due to clipping)
946 */
947 if (!intel_crtc->active || !plane->state->fb)
948 return 0;
949
Gajanan Bhat0948c262014-08-07 01:58:24 +0530950 if (WARN(clock == 0, "Pixel clock is zero!\n"))
Ville Syrjälä341c5262015-03-05 21:19:44 +0200951 return 0;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300952
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200953 pixel_size = drm_format_plane_cpp(plane->state->fb->pixel_format, 0);
954
Gajanan Bhat0948c262014-08-07 01:58:24 +0530955 if (WARN(pixel_size == 0, "Pixel size is zero!\n"))
Ville Syrjälä341c5262015-03-05 21:19:44 +0200956 return 0;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300957
Gajanan Bhata398e9c2014-08-05 23:15:54 +0530958 entries = DIV_ROUND_UP(clock, 1000) * pixel_size;
Ville Syrjäläabfc00b2015-03-05 21:19:43 +0200959
Ville Syrjälä341c5262015-03-05 21:19:44 +0200960 prec_mult = high_precision;
961 drain_latency = 64 * prec_mult * 4 / entries;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300962
Ville Syrjälä341c5262015-03-05 21:19:44 +0200963 if (drain_latency > DRAIN_LATENCY_MASK) {
964 prec_mult /= 2;
965 drain_latency = 64 * prec_mult * 4 / entries;
Ville Syrjäläabfc00b2015-03-05 21:19:43 +0200966 }
967
Ville Syrjälä341c5262015-03-05 21:19:44 +0200968 if (drain_latency > DRAIN_LATENCY_MASK)
969 drain_latency = DRAIN_LATENCY_MASK;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300970
Ville Syrjälä341c5262015-03-05 21:19:44 +0200971 return drain_latency | (prec_mult == high_precision ?
972 DDL_PRECISION_HIGH : DDL_PRECISION_LOW);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300973}
974
Ville Syrjäläae801522015-03-05 21:19:49 +0200975static int vlv_compute_wm(struct intel_crtc *crtc,
976 struct intel_plane *plane,
977 int fifo_size)
978{
979 int clock, entries, pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300980
Ville Syrjäläae801522015-03-05 21:19:49 +0200981 /*
982 * FIXME the plane might have an fb
983 * but be invisible (eg. due to clipping)
984 */
985 if (!crtc->active || !plane->base.state->fb)
986 return 0;
987
988 pixel_size = drm_format_plane_cpp(plane->base.state->fb->pixel_format, 0);
989 clock = crtc->config->base.adjusted_mode.crtc_clock;
990
991 entries = DIV_ROUND_UP(clock, 1000) * pixel_size;
992
993 /*
994 * Set up the watermark such that we don't start issuing memory
995 * requests until we are within PND's max deadline value (256us).
996 * Idea being to be idle as long as possible while still taking
997 * advatange of PND's deadline scheduling. The limit of 8
998 * cachelines (used when the FIFO will anyway drain in less time
999 * than 256us) should match what we would be done if trickle
1000 * feed were enabled.
1001 */
1002 return fifo_size - clamp(DIV_ROUND_UP(256 * entries, 64), 0, fifo_size - 8);
1003}
1004
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03001005enum vlv_wm_level {
1006 VLV_WM_LEVEL_PM2,
1007 VLV_WM_LEVEL_PM5,
1008 VLV_WM_LEVEL_DDR_DVFS,
1009 CHV_WM_NUM_LEVELS,
1010 VLV_WM_NUM_LEVELS = 1,
1011};
1012
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001013/* latency must be in 0.1us units. */
1014static unsigned int vlv_wm_method2(unsigned int pixel_rate,
1015 unsigned int pipe_htotal,
1016 unsigned int horiz_pixels,
1017 unsigned int bytes_per_pixel,
1018 unsigned int latency)
1019{
1020 unsigned int ret;
1021
1022 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
1023 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
1024 ret = DIV_ROUND_UP(ret, 64);
1025
1026 return ret;
1027}
1028
1029static void vlv_setup_wm_latency(struct drm_device *dev)
1030{
1031 struct drm_i915_private *dev_priv = dev->dev_private;
1032
1033 /* all latencies in usec */
1034 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
1035
1036 if (IS_CHERRYVIEW(dev_priv)) {
1037 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
1038 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
1039 }
1040}
1041
1042static uint16_t vlv_compute_wm_level(struct intel_plane *plane,
1043 struct intel_crtc *crtc,
1044 const struct intel_plane_state *state,
1045 int level)
1046{
1047 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
1048 int clock, htotal, pixel_size, width, wm;
1049
1050 if (dev_priv->wm.pri_latency[level] == 0)
1051 return USHRT_MAX;
1052
1053 if (!state->visible)
1054 return 0;
1055
1056 pixel_size = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1057 clock = crtc->config->base.adjusted_mode.crtc_clock;
1058 htotal = crtc->config->base.adjusted_mode.crtc_htotal;
1059 width = crtc->config->pipe_src_w;
1060 if (WARN_ON(htotal == 0))
1061 htotal = 1;
1062
1063 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1064 /*
1065 * FIXME the formula gives values that are
1066 * too big for the cursor FIFO, and hence we
1067 * would never be able to use cursors. For
1068 * now just hardcode the watermark.
1069 */
1070 wm = 63;
1071 } else {
1072 wm = vlv_wm_method2(clock, htotal, width, pixel_size,
1073 dev_priv->wm.pri_latency[level] * 10);
1074 }
1075
1076 return min_t(int, wm, USHRT_MAX);
1077}
1078
Ville Syrjäläae801522015-03-05 21:19:49 +02001079static bool vlv_compute_sr_wm(struct drm_device *dev,
1080 struct vlv_wm_values *wm)
1081{
1082 struct drm_i915_private *dev_priv = to_i915(dev);
1083 struct drm_crtc *crtc;
1084 enum pipe pipe = INVALID_PIPE;
1085 int num_planes = 0;
1086 int fifo_size = 0;
1087 struct intel_plane *plane;
1088
1089 wm->sr.cursor = wm->sr.plane = 0;
1090
1091 crtc = single_enabled_crtc(dev);
1092 /* maxfifo not supported on pipe C */
1093 if (crtc && to_intel_crtc(crtc)->pipe != PIPE_C) {
1094 pipe = to_intel_crtc(crtc)->pipe;
1095 num_planes = !!wm->pipe[pipe].primary +
1096 !!wm->pipe[pipe].sprite[0] +
1097 !!wm->pipe[pipe].sprite[1];
1098 fifo_size = INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
1099 }
1100
1101 if (fifo_size == 0 || num_planes > 1)
1102 return false;
1103
1104 wm->sr.cursor = vlv_compute_wm(to_intel_crtc(crtc),
1105 to_intel_plane(crtc->cursor), 0x3f);
1106
1107 list_for_each_entry(plane, &dev->mode_config.plane_list, base.head) {
1108 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1109 continue;
1110
1111 if (plane->pipe != pipe)
1112 continue;
1113
1114 wm->sr.plane = vlv_compute_wm(to_intel_crtc(crtc),
1115 plane, fifo_size);
1116 if (wm->sr.plane != 0)
1117 break;
1118 }
1119
1120 return true;
1121}
1122
1123static void valleyview_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001124{
Rodrigo Vivi5e56ba42014-10-17 08:05:08 -07001125 struct drm_device *dev = crtc->dev;
1126 struct drm_i915_private *dev_priv = dev->dev_private;
Gajanan Bhat0948c262014-08-07 01:58:24 +05301127 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gajanan Bhat0948c262014-08-07 01:58:24 +05301128 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläae801522015-03-05 21:19:49 +02001129 bool cxsr_enabled;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001130 struct vlv_wm_values wm = dev_priv->wm.vlv;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001131
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001132 wm.ddl[pipe].primary = vlv_compute_drain_latency(crtc, crtc->primary);
Ville Syrjäläae801522015-03-05 21:19:49 +02001133 wm.pipe[pipe].primary = vlv_compute_wm(intel_crtc,
1134 to_intel_plane(crtc->primary),
1135 vlv_get_fifo_size(dev, pipe, 0));
1136
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001137 wm.ddl[pipe].cursor = vlv_compute_drain_latency(crtc, crtc->cursor);
Ville Syrjäläae801522015-03-05 21:19:49 +02001138 wm.pipe[pipe].cursor = vlv_compute_wm(intel_crtc,
1139 to_intel_plane(crtc->cursor),
1140 0x3f);
1141
1142 cxsr_enabled = vlv_compute_sr_wm(dev, &wm);
1143
1144 if (memcmp(&wm, &dev_priv->wm.vlv, sizeof(wm)) == 0)
1145 return;
1146
1147 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1148 "SR: plane=%d, cursor=%d\n", pipe_name(pipe),
1149 wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1150 wm.sr.plane, wm.sr.cursor);
1151
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +02001152 /*
1153 * FIXME DDR DVFS introduces massive memory latencies which
1154 * are not known to system agent so any deadline specified
1155 * by the display may not be respected. To support DDR DVFS
1156 * the watermark code needs to be rewritten to essentially
1157 * bypass deadline mechanism and rely solely on the
1158 * watermarks. For now disable DDR DVFS.
1159 */
1160 if (IS_CHERRYVIEW(dev_priv))
1161 chv_set_memory_dvfs(dev_priv, false);
1162
Ville Syrjäläae801522015-03-05 21:19:49 +02001163 if (!cxsr_enabled)
1164 intel_set_memory_cxsr(dev_priv, false);
Gajanan Bhat0948c262014-08-07 01:58:24 +05301165
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001166 vlv_write_wm_values(intel_crtc, &wm);
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001167
1168 if (cxsr_enabled)
1169 intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001170
1171 dev_priv->wm.vlv = wm;
1172}
1173
1174static void vlv_invert_wms(struct intel_crtc *crtc)
1175{
1176 struct vlv_wm_state *wm_state = &crtc->wm_state;
1177 int level;
1178
1179 for (level = 0; level < wm_state->num_levels; level++) {
1180 struct drm_device *dev = crtc->base.dev;
1181 const int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1182 struct intel_plane *plane;
1183
1184 wm_state->sr[level].plane = sr_fifo_size - wm_state->sr[level].plane;
1185 wm_state->sr[level].cursor = 63 - wm_state->sr[level].cursor;
1186
1187 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1188 switch (plane->base.type) {
1189 int sprite;
1190 case DRM_PLANE_TYPE_CURSOR:
1191 wm_state->wm[level].cursor = plane->wm.fifo_size -
1192 wm_state->wm[level].cursor;
1193 break;
1194 case DRM_PLANE_TYPE_PRIMARY:
1195 wm_state->wm[level].primary = plane->wm.fifo_size -
1196 wm_state->wm[level].primary;
1197 break;
1198 case DRM_PLANE_TYPE_OVERLAY:
1199 sprite = plane->plane;
1200 wm_state->wm[level].sprite[sprite] = plane->wm.fifo_size -
1201 wm_state->wm[level].sprite[sprite];
1202 break;
1203 }
1204 }
1205 }
1206}
1207
1208static void _vlv_compute_wm(struct intel_crtc *crtc)
1209{
1210 struct drm_device *dev = crtc->base.dev;
1211 struct vlv_wm_state *wm_state = &crtc->wm_state;
1212 struct intel_plane *plane;
1213 int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1214 int level;
1215
1216 memset(wm_state, 0, sizeof(*wm_state));
1217
1218 wm_state->cxsr = crtc->pipe != PIPE_C;
1219 if (IS_CHERRYVIEW(dev))
1220 wm_state->num_levels = CHV_WM_NUM_LEVELS;
1221 else
1222 wm_state->num_levels = VLV_WM_NUM_LEVELS;
1223
1224 wm_state->num_active_planes = 0;
1225 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1226 struct intel_plane_state *state =
1227 to_intel_plane_state(plane->base.state);
1228
1229 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1230 continue;
1231
1232 if (state->visible)
1233 wm_state->num_active_planes++;
1234 }
1235
1236 if (wm_state->num_active_planes != 1)
1237 wm_state->cxsr = false;
1238
1239 if (wm_state->cxsr) {
1240 for (level = 0; level < wm_state->num_levels; level++) {
1241 wm_state->sr[level].plane = sr_fifo_size;
1242 wm_state->sr[level].cursor = 63;
1243 }
1244 }
1245
1246 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1247 struct intel_plane_state *state =
1248 to_intel_plane_state(plane->base.state);
1249
1250 if (!state->visible)
1251 continue;
1252
1253 /* normal watermarks */
1254 for (level = 0; level < wm_state->num_levels; level++) {
1255 int wm = vlv_compute_wm_level(plane, crtc, state, level);
1256 int max_wm = plane->base.type == DRM_PLANE_TYPE_CURSOR ? 63 : 511;
1257
1258 /* hack */
1259 if (WARN_ON(level == 0 && wm > max_wm))
1260 wm = max_wm;
1261
1262 if (wm > plane->wm.fifo_size)
1263 break;
1264
1265 switch (plane->base.type) {
1266 int sprite;
1267 case DRM_PLANE_TYPE_CURSOR:
1268 wm_state->wm[level].cursor = wm;
1269 break;
1270 case DRM_PLANE_TYPE_PRIMARY:
1271 wm_state->wm[level].primary = wm;
1272 break;
1273 case DRM_PLANE_TYPE_OVERLAY:
1274 sprite = plane->plane;
1275 wm_state->wm[level].sprite[sprite] = wm;
1276 break;
1277 }
1278 }
1279
1280 wm_state->num_levels = level;
1281
1282 if (!wm_state->cxsr)
1283 continue;
1284
1285 /* maxfifo watermarks */
1286 switch (plane->base.type) {
1287 int sprite, level;
1288 case DRM_PLANE_TYPE_CURSOR:
1289 for (level = 0; level < wm_state->num_levels; level++)
1290 wm_state->sr[level].cursor =
1291 wm_state->sr[level].cursor;
1292 break;
1293 case DRM_PLANE_TYPE_PRIMARY:
1294 for (level = 0; level < wm_state->num_levels; level++)
1295 wm_state->sr[level].plane =
1296 min(wm_state->sr[level].plane,
1297 wm_state->wm[level].primary);
1298 break;
1299 case DRM_PLANE_TYPE_OVERLAY:
1300 sprite = plane->plane;
1301 for (level = 0; level < wm_state->num_levels; level++)
1302 wm_state->sr[level].plane =
1303 min(wm_state->sr[level].plane,
1304 wm_state->wm[level].sprite[sprite]);
1305 break;
1306 }
1307 }
1308
1309 /* clear any (partially) filled invalid levels */
1310 for (level = wm_state->num_levels; level < CHV_WM_NUM_LEVELS; level++) {
1311 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1312 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1313 }
1314
1315 vlv_invert_wms(crtc);
1316}
1317
1318static void vlv_merge_wm(struct drm_device *dev,
1319 struct vlv_wm_values *wm)
1320{
1321 struct intel_crtc *crtc;
1322 int num_active_crtcs = 0;
1323
1324 if (IS_CHERRYVIEW(dev))
1325 wm->level = VLV_WM_LEVEL_DDR_DVFS;
1326 else
1327 wm->level = VLV_WM_LEVEL_PM2;
1328 wm->cxsr = true;
1329
1330 for_each_intel_crtc(dev, crtc) {
1331 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1332
1333 if (!crtc->active)
1334 continue;
1335
1336 if (!wm_state->cxsr)
1337 wm->cxsr = false;
1338
1339 num_active_crtcs++;
1340 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1341 }
1342
1343 if (num_active_crtcs != 1)
1344 wm->cxsr = false;
1345
1346 for_each_intel_crtc(dev, crtc) {
1347 struct vlv_wm_state *wm_state = &crtc->wm_state;
1348 enum pipe pipe = crtc->pipe;
1349
1350 if (!crtc->active)
1351 continue;
1352
1353 wm->pipe[pipe] = wm_state->wm[wm->level];
1354 if (wm->cxsr)
1355 wm->sr = wm_state->sr[wm->level];
1356
1357 wm->ddl[pipe].primary = DDL_PRECISION_HIGH | 2;
1358 wm->ddl[pipe].sprite[0] = DDL_PRECISION_HIGH | 2;
1359 wm->ddl[pipe].sprite[1] = DDL_PRECISION_HIGH | 2;
1360 wm->ddl[pipe].cursor = DDL_PRECISION_HIGH | 2;
1361 }
1362}
1363
1364static void vlv_update_wm(struct drm_crtc *crtc)
1365{
1366 struct drm_device *dev = crtc->dev;
1367 struct drm_i915_private *dev_priv = dev->dev_private;
1368 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1369 enum pipe pipe = intel_crtc->pipe;
1370 struct vlv_wm_values wm = {};
1371
1372 _vlv_compute_wm(intel_crtc);
1373 vlv_merge_wm(dev, &wm);
1374
1375 if (memcmp(&dev_priv->wm.vlv, &wm, sizeof(wm)) == 0)
1376 return;
1377
1378 if (wm.level < VLV_WM_LEVEL_DDR_DVFS &&
1379 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_DDR_DVFS)
1380 chv_set_memory_dvfs(dev_priv, false);
1381
1382 if (wm.level < VLV_WM_LEVEL_PM5 &&
1383 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_PM5)
1384 chv_set_memory_pm5(dev_priv, false);
1385
1386 if (!wm.cxsr && dev_priv->wm.vlv.cxsr) {
1387 intel_set_memory_cxsr(dev_priv, false);
1388 intel_wait_for_vblank(dev, pipe);
1389 }
1390
1391 vlv_write_wm_values(intel_crtc, &wm);
1392
1393 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1394 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
1395 pipe_name(pipe), wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1396 wm.pipe[pipe].sprite[0], wm.pipe[pipe].sprite[1],
1397 wm.sr.plane, wm.sr.cursor, wm.level, wm.cxsr);
1398
1399 if (wm.cxsr && !dev_priv->wm.vlv.cxsr) {
1400 intel_wait_for_vblank(dev, pipe);
1401 intel_set_memory_cxsr(dev_priv, true);
1402 }
1403
1404 if (wm.level >= VLV_WM_LEVEL_PM5 &&
1405 dev_priv->wm.vlv.level < VLV_WM_LEVEL_PM5)
1406 chv_set_memory_pm5(dev_priv, true);
1407
1408 if (wm.level >= VLV_WM_LEVEL_DDR_DVFS &&
1409 dev_priv->wm.vlv.level < VLV_WM_LEVEL_DDR_DVFS)
1410 chv_set_memory_dvfs(dev_priv, true);
1411
1412 dev_priv->wm.vlv = wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001413}
1414
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301415static void valleyview_update_sprite_wm(struct drm_plane *plane,
1416 struct drm_crtc *crtc,
1417 uint32_t sprite_width,
1418 uint32_t sprite_height,
1419 int pixel_size,
1420 bool enabled, bool scaled)
1421{
1422 struct drm_device *dev = crtc->dev;
1423 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001424 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1425 enum pipe pipe = intel_crtc->pipe;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301426 int sprite = to_intel_plane(plane)->plane;
Ville Syrjäläae801522015-03-05 21:19:49 +02001427 bool cxsr_enabled;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001428 struct vlv_wm_values wm = dev_priv->wm.vlv;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301429
Ville Syrjäläae801522015-03-05 21:19:49 +02001430 if (enabled) {
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001431 wm.ddl[pipe].sprite[sprite] =
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001432 vlv_compute_drain_latency(crtc, plane);
Ville Syrjäläae801522015-03-05 21:19:49 +02001433
1434 wm.pipe[pipe].sprite[sprite] =
1435 vlv_compute_wm(intel_crtc,
1436 to_intel_plane(plane),
1437 vlv_get_fifo_size(dev, pipe, sprite+1));
1438 } else {
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001439 wm.ddl[pipe].sprite[sprite] = 0;
Ville Syrjäläae801522015-03-05 21:19:49 +02001440 wm.pipe[pipe].sprite[sprite] = 0;
1441 }
1442
1443 cxsr_enabled = vlv_compute_sr_wm(dev, &wm);
1444
1445 if (memcmp(&wm, &dev_priv->wm.vlv, sizeof(wm)) == 0)
1446 return;
1447
1448 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: sprite %c=%d, "
1449 "SR: plane=%d, cursor=%d\n", pipe_name(pipe),
1450 sprite_name(pipe, sprite),
1451 wm.pipe[pipe].sprite[sprite],
1452 wm.sr.plane, wm.sr.cursor);
1453
1454 if (!cxsr_enabled)
1455 intel_set_memory_cxsr(dev_priv, false);
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301456
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001457 vlv_write_wm_values(intel_crtc, &wm);
Ville Syrjäläae801522015-03-05 21:19:49 +02001458
1459 if (cxsr_enabled)
1460 intel_set_memory_cxsr(dev_priv, true);
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301461}
1462
Ville Syrjäläae801522015-03-05 21:19:49 +02001463#define single_plane_enabled(mask) is_power_of_2(mask)
1464
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001465static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001466{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001467 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001468 static const int sr_latency_ns = 12000;
1469 struct drm_i915_private *dev_priv = dev->dev_private;
1470 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1471 int plane_sr, cursor_sr;
1472 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001473 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001474
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001475 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001476 &g4x_wm_info, pessimal_latency_ns,
1477 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001478 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001479 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001480
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001481 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001482 &g4x_wm_info, pessimal_latency_ns,
1483 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001484 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001485 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001486
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001487 if (single_plane_enabled(enabled) &&
1488 g4x_compute_srwm(dev, ffs(enabled) - 1,
1489 sr_latency_ns,
1490 &g4x_wm_info,
1491 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001492 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001493 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001494 } else {
Imre Deak98584252014-06-13 14:54:20 +03001495 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001496 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001497 plane_sr = cursor_sr = 0;
1498 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001499
Ville Syrjäläa5043452014-06-28 02:04:18 +03001500 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1501 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001502 planea_wm, cursora_wm,
1503 planeb_wm, cursorb_wm,
1504 plane_sr, cursor_sr);
1505
1506 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001507 FW_WM(plane_sr, SR) |
1508 FW_WM(cursorb_wm, CURSORB) |
1509 FW_WM(planeb_wm, PLANEB) |
1510 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001511 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001512 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001513 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001514 /* HPLL off in SR has some issues on G4x... disable it */
1515 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001516 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001517 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001518
1519 if (cxsr_enabled)
1520 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001521}
1522
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001523static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001524{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001525 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001526 struct drm_i915_private *dev_priv = dev->dev_private;
1527 struct drm_crtc *crtc;
1528 int srwm = 1;
1529 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001530 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001531
1532 /* Calc sr entries for one plane configs */
1533 crtc = single_enabled_crtc(dev);
1534 if (crtc) {
1535 /* self-refresh has much higher latency */
1536 static const int sr_latency_ns = 12000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001537 const struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001538 &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001539 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001540 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001541 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001542 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001543 unsigned long line_time_us;
1544 int entries;
1545
Ville Syrjälä922044c2014-02-14 14:18:57 +02001546 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001547
1548 /* Use ns/us then divide to preserve precision */
1549 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1550 pixel_size * hdisplay;
1551 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1552 srwm = I965_FIFO_SIZE - entries;
1553 if (srwm < 0)
1554 srwm = 1;
1555 srwm &= 0x1ff;
1556 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1557 entries, srwm);
1558
1559 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Matt Roper3dd512f2015-02-27 10:12:00 -08001560 pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001561 entries = DIV_ROUND_UP(entries,
1562 i965_cursor_wm_info.cacheline_size);
1563 cursor_sr = i965_cursor_wm_info.fifo_size -
1564 (entries + i965_cursor_wm_info.guard_size);
1565
1566 if (cursor_sr > i965_cursor_wm_info.max_wm)
1567 cursor_sr = i965_cursor_wm_info.max_wm;
1568
1569 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1570 "cursor %d\n", srwm, cursor_sr);
1571
Imre Deak98584252014-06-13 14:54:20 +03001572 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001573 } else {
Imre Deak98584252014-06-13 14:54:20 +03001574 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001575 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001576 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001577 }
1578
1579 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1580 srwm);
1581
1582 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001583 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1584 FW_WM(8, CURSORB) |
1585 FW_WM(8, PLANEB) |
1586 FW_WM(8, PLANEA));
1587 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1588 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001589 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001590 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001591
1592 if (cxsr_enabled)
1593 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001594}
1595
Ville Syrjäläf4998962015-03-10 17:02:21 +02001596#undef FW_WM
1597
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001598static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001599{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001600 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001601 struct drm_i915_private *dev_priv = dev->dev_private;
1602 const struct intel_watermark_params *wm_info;
1603 uint32_t fwater_lo;
1604 uint32_t fwater_hi;
1605 int cwm, srwm = 1;
1606 int fifo_size;
1607 int planea_wm, planeb_wm;
1608 struct drm_crtc *crtc, *enabled = NULL;
1609
1610 if (IS_I945GM(dev))
1611 wm_info = &i945_wm_info;
1612 else if (!IS_GEN2(dev))
1613 wm_info = &i915_wm_info;
1614 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001615 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001616
1617 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1618 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001619 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001620 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001621 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001622 if (IS_GEN2(dev))
1623 cpp = 4;
1624
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001625 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001626 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001627 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001628 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001629 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001630 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001631 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001632 if (planea_wm > (long)wm_info->max_wm)
1633 planea_wm = wm_info->max_wm;
1634 }
1635
1636 if (IS_GEN2(dev))
1637 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001638
1639 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1640 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001641 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001642 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001643 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001644 if (IS_GEN2(dev))
1645 cpp = 4;
1646
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001647 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001648 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001649 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001650 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001651 if (enabled == NULL)
1652 enabled = crtc;
1653 else
1654 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001655 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001656 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001657 if (planeb_wm > (long)wm_info->max_wm)
1658 planeb_wm = wm_info->max_wm;
1659 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001660
1661 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1662
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001663 if (IS_I915GM(dev) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001664 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001665
Matt Roper59bea882015-02-27 10:12:01 -08001666 obj = intel_fb_obj(enabled->primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001667
1668 /* self-refresh seems busted with untiled */
Matt Roper2ff8fde2014-07-08 07:50:07 -07001669 if (obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001670 enabled = NULL;
1671 }
1672
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001673 /*
1674 * Overlay gets an aggressive default since video jitter is bad.
1675 */
1676 cwm = 2;
1677
1678 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001679 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001680
1681 /* Calc sr entries for one plane configs */
1682 if (HAS_FW_BLC(dev) && enabled) {
1683 /* self-refresh has much higher latency */
1684 static const int sr_latency_ns = 6000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001685 const struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001686 &to_intel_crtc(enabled)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001687 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001688 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001689 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001690 int pixel_size = enabled->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001691 unsigned long line_time_us;
1692 int entries;
1693
Ville Syrjälä922044c2014-02-14 14:18:57 +02001694 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001695
1696 /* Use ns/us then divide to preserve precision */
1697 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1698 pixel_size * hdisplay;
1699 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1700 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1701 srwm = wm_info->fifo_size - entries;
1702 if (srwm < 0)
1703 srwm = 1;
1704
1705 if (IS_I945G(dev) || IS_I945GM(dev))
1706 I915_WRITE(FW_BLC_SELF,
1707 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1708 else if (IS_I915GM(dev))
1709 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1710 }
1711
1712 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1713 planea_wm, planeb_wm, cwm, srwm);
1714
1715 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1716 fwater_hi = (cwm & 0x1f);
1717
1718 /* Set request length to 8 cachelines per fetch */
1719 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1720 fwater_hi = fwater_hi | (1 << 8);
1721
1722 I915_WRITE(FW_BLC, fwater_lo);
1723 I915_WRITE(FW_BLC2, fwater_hi);
1724
Imre Deak5209b1f2014-07-01 12:36:17 +03001725 if (enabled)
1726 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001727}
1728
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001729static void i845_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001730{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001731 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001732 struct drm_i915_private *dev_priv = dev->dev_private;
1733 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001734 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001735 uint32_t fwater_lo;
1736 int planea_wm;
1737
1738 crtc = single_enabled_crtc(dev);
1739 if (crtc == NULL)
1740 return;
1741
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001742 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001743 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001744 &i845_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001745 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001746 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001747 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1748 fwater_lo |= (3<<8) | planea_wm;
1749
1750 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1751
1752 I915_WRITE(FW_BLC, fwater_lo);
1753}
1754
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001755uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001756{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001757 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001758
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001759 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001760
1761 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1762 * adjust the pixel_rate here. */
1763
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001764 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001765 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001766 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001767
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001768 pipe_w = pipe_config->pipe_src_w;
1769 pipe_h = pipe_config->pipe_src_h;
1770
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001771 pfit_w = (pfit_size >> 16) & 0xFFFF;
1772 pfit_h = pfit_size & 0xFFFF;
1773 if (pipe_w < pfit_w)
1774 pipe_w = pfit_w;
1775 if (pipe_h < pfit_h)
1776 pipe_h = pfit_h;
1777
1778 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1779 pfit_w * pfit_h);
1780 }
1781
1782 return pixel_rate;
1783}
1784
Ville Syrjälä37126462013-08-01 16:18:55 +03001785/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001786static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001787 uint32_t latency)
1788{
1789 uint64_t ret;
1790
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001791 if (WARN(latency == 0, "Latency value missing\n"))
1792 return UINT_MAX;
1793
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001794 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
1795 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1796
1797 return ret;
1798}
1799
Ville Syrjälä37126462013-08-01 16:18:55 +03001800/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001801static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001802 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
1803 uint32_t latency)
1804{
1805 uint32_t ret;
1806
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001807 if (WARN(latency == 0, "Latency value missing\n"))
1808 return UINT_MAX;
1809
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001810 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
1811 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
1812 ret = DIV_ROUND_UP(ret, 64) + 2;
1813 return ret;
1814}
1815
Ville Syrjälä23297042013-07-05 11:57:17 +03001816static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001817 uint8_t bytes_per_pixel)
1818{
1819 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
1820}
1821
Pradeep Bhat2ac96d22014-11-04 17:06:40 +00001822struct skl_pipe_wm_parameters {
1823 bool active;
1824 uint32_t pipe_htotal;
1825 uint32_t pixel_rate; /* in KHz */
1826 struct intel_plane_wm_parameters plane[I915_MAX_PLANES];
1827 struct intel_plane_wm_parameters cursor;
1828};
1829
Imre Deak820c1982013-12-17 14:46:36 +02001830struct ilk_pipe_wm_parameters {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001831 bool active;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001832 uint32_t pipe_htotal;
1833 uint32_t pixel_rate;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001834 struct intel_plane_wm_parameters pri;
1835 struct intel_plane_wm_parameters spr;
1836 struct intel_plane_wm_parameters cur;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001837};
1838
Imre Deak820c1982013-12-17 14:46:36 +02001839struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001840 uint16_t pri;
1841 uint16_t spr;
1842 uint16_t cur;
1843 uint16_t fbc;
1844};
1845
Ville Syrjälä240264f2013-08-07 13:29:12 +03001846/* used in computing the new watermarks state */
1847struct intel_wm_config {
1848 unsigned int num_pipes_active;
1849 bool sprites_enabled;
1850 bool sprites_scaled;
Ville Syrjälä240264f2013-08-07 13:29:12 +03001851};
1852
Ville Syrjälä37126462013-08-01 16:18:55 +03001853/*
1854 * For both WM_PIPE and WM_LP.
1855 * mem_value must be in 0.1us units.
1856 */
Imre Deak820c1982013-12-17 14:46:36 +02001857static uint32_t ilk_compute_pri_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001858 uint32_t mem_value,
1859 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001860{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001861 uint32_t method1, method2;
1862
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001863 if (!params->active || !params->pri.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001864 return 0;
1865
Ville Syrjälä23297042013-07-05 11:57:17 +03001866 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001867 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001868 mem_value);
1869
1870 if (!is_lp)
1871 return method1;
1872
Ville Syrjälä23297042013-07-05 11:57:17 +03001873 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001874 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001875 params->pri.horiz_pixels,
1876 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001877 mem_value);
1878
1879 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001880}
1881
Ville Syrjälä37126462013-08-01 16:18:55 +03001882/*
1883 * For both WM_PIPE and WM_LP.
1884 * mem_value must be in 0.1us units.
1885 */
Imre Deak820c1982013-12-17 14:46:36 +02001886static uint32_t ilk_compute_spr_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001887 uint32_t mem_value)
1888{
1889 uint32_t method1, method2;
1890
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001891 if (!params->active || !params->spr.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001892 return 0;
1893
Ville Syrjälä23297042013-07-05 11:57:17 +03001894 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001895 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001896 mem_value);
Ville Syrjälä23297042013-07-05 11:57:17 +03001897 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001898 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001899 params->spr.horiz_pixels,
1900 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001901 mem_value);
1902 return min(method1, method2);
1903}
1904
Ville Syrjälä37126462013-08-01 16:18:55 +03001905/*
1906 * For both WM_PIPE and WM_LP.
1907 * mem_value must be in 0.1us units.
1908 */
Imre Deak820c1982013-12-17 14:46:36 +02001909static uint32_t ilk_compute_cur_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001910 uint32_t mem_value)
1911{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001912 if (!params->active || !params->cur.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001913 return 0;
1914
Ville Syrjälä23297042013-07-05 11:57:17 +03001915 return ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001916 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001917 params->cur.horiz_pixels,
1918 params->cur.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001919 mem_value);
1920}
1921
Paulo Zanonicca32e92013-05-31 11:45:06 -03001922/* Only for WM_LP. */
Imre Deak820c1982013-12-17 14:46:36 +02001923static uint32_t ilk_compute_fbc_wm(const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001924 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001925{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001926 if (!params->active || !params->pri.enabled)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001927 return 0;
1928
Ville Syrjälä23297042013-07-05 11:57:17 +03001929 return ilk_wm_fbc(pri_val,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001930 params->pri.horiz_pixels,
1931 params->pri.bytes_per_pixel);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001932}
1933
Ville Syrjälä158ae642013-08-07 13:28:19 +03001934static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1935{
Ville Syrjälä416f4722013-11-02 21:07:46 -07001936 if (INTEL_INFO(dev)->gen >= 8)
1937 return 3072;
1938 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001939 return 768;
1940 else
1941 return 512;
1942}
1943
Ville Syrjälä4e975082014-03-07 18:32:11 +02001944static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1945 int level, bool is_sprite)
1946{
1947 if (INTEL_INFO(dev)->gen >= 8)
1948 /* BDW primary/sprite plane watermarks */
1949 return level == 0 ? 255 : 2047;
1950 else if (INTEL_INFO(dev)->gen >= 7)
1951 /* IVB/HSW primary/sprite plane watermarks */
1952 return level == 0 ? 127 : 1023;
1953 else if (!is_sprite)
1954 /* ILK/SNB primary plane watermarks */
1955 return level == 0 ? 127 : 511;
1956 else
1957 /* ILK/SNB sprite plane watermarks */
1958 return level == 0 ? 63 : 255;
1959}
1960
1961static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1962 int level)
1963{
1964 if (INTEL_INFO(dev)->gen >= 7)
1965 return level == 0 ? 63 : 255;
1966 else
1967 return level == 0 ? 31 : 63;
1968}
1969
1970static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1971{
1972 if (INTEL_INFO(dev)->gen >= 8)
1973 return 31;
1974 else
1975 return 15;
1976}
1977
Ville Syrjälä158ae642013-08-07 13:28:19 +03001978/* Calculate the maximum primary/sprite plane watermark */
1979static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1980 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001981 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001982 enum intel_ddb_partitioning ddb_partitioning,
1983 bool is_sprite)
1984{
1985 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001986
1987 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001988 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001989 return 0;
1990
1991 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001992 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001993 fifo_size /= INTEL_INFO(dev)->num_pipes;
1994
1995 /*
1996 * For some reason the non self refresh
1997 * FIFO size is only half of the self
1998 * refresh FIFO size on ILK/SNB.
1999 */
2000 if (INTEL_INFO(dev)->gen <= 6)
2001 fifo_size /= 2;
2002 }
2003
Ville Syrjälä240264f2013-08-07 13:29:12 +03002004 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002005 /* level 0 is always calculated with 1:1 split */
2006 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2007 if (is_sprite)
2008 fifo_size *= 5;
2009 fifo_size /= 6;
2010 } else {
2011 fifo_size /= 2;
2012 }
2013 }
2014
2015 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02002016 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002017}
2018
2019/* Calculate the maximum cursor plane watermark */
2020static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002021 int level,
2022 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002023{
2024 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002025 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002026 return 64;
2027
2028 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02002029 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002030}
2031
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002032static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002033 int level,
2034 const struct intel_wm_config *config,
2035 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002036 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002037{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002038 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2039 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2040 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02002041 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002042}
2043
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002044static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
2045 int level,
2046 struct ilk_wm_maximums *max)
2047{
2048 max->pri = ilk_plane_wm_reg_max(dev, level, false);
2049 max->spr = ilk_plane_wm_reg_max(dev, level, true);
2050 max->cur = ilk_cursor_wm_reg_max(dev, level);
2051 max->fbc = ilk_fbc_wm_reg_max(dev);
2052}
2053
Ville Syrjäläd9395652013-10-09 19:18:10 +03002054static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002055 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002056 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002057{
2058 bool ret;
2059
2060 /* already determined to be invalid? */
2061 if (!result->enable)
2062 return false;
2063
2064 result->enable = result->pri_val <= max->pri &&
2065 result->spr_val <= max->spr &&
2066 result->cur_val <= max->cur;
2067
2068 ret = result->enable;
2069
2070 /*
2071 * HACK until we can pre-compute everything,
2072 * and thus fail gracefully if LP0 watermarks
2073 * are exceeded...
2074 */
2075 if (level == 0 && !result->enable) {
2076 if (result->pri_val > max->pri)
2077 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2078 level, result->pri_val, max->pri);
2079 if (result->spr_val > max->spr)
2080 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2081 level, result->spr_val, max->spr);
2082 if (result->cur_val > max->cur)
2083 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2084 level, result->cur_val, max->cur);
2085
2086 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2087 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2088 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2089 result->enable = true;
2090 }
2091
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002092 return ret;
2093}
2094
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002095static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002096 int level,
Imre Deak820c1982013-12-17 14:46:36 +02002097 const struct ilk_pipe_wm_parameters *p,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002098 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002099{
2100 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2101 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2102 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2103
2104 /* WM1+ latency values stored in 0.5us units */
2105 if (level > 0) {
2106 pri_latency *= 5;
2107 spr_latency *= 5;
2108 cur_latency *= 5;
2109 }
2110
2111 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
2112 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
2113 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
2114 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
2115 result->enable = true;
2116}
2117
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002118static uint32_t
2119hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002120{
2121 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002122 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002123 struct drm_display_mode *mode = &intel_crtc->config->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002124 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002125
Matt Roper3ef00282015-03-09 10:19:24 -07002126 if (!intel_crtc->active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002127 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002128
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002129 /* The WM are computed with base on how long it takes to fill a single
2130 * row at the given clock rate, multiplied by 8.
2131 * */
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002132 linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
2133 mode->crtc_clock);
2134 ips_linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
Ville Syrjälä05024da2015-06-03 15:45:08 +03002135 dev_priv->cdclk_freq);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002136
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002137 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2138 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002139}
2140
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002141static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002142{
2143 struct drm_i915_private *dev_priv = dev->dev_private;
2144
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002145 if (IS_GEN9(dev)) {
2146 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002147 int ret, i;
Vandana Kannan367294b2014-11-04 17:06:46 +00002148 int level, max_level = ilk_wm_max_level(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002149
2150 /* read the first set of memory latencies[0:3] */
2151 val = 0; /* data0 to be programmed to 0 for first set */
2152 mutex_lock(&dev_priv->rps.hw_lock);
2153 ret = sandybridge_pcode_read(dev_priv,
2154 GEN9_PCODE_READ_MEM_LATENCY,
2155 &val);
2156 mutex_unlock(&dev_priv->rps.hw_lock);
2157
2158 if (ret) {
2159 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2160 return;
2161 }
2162
2163 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2164 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2165 GEN9_MEM_LATENCY_LEVEL_MASK;
2166 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2167 GEN9_MEM_LATENCY_LEVEL_MASK;
2168 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2169 GEN9_MEM_LATENCY_LEVEL_MASK;
2170
2171 /* read the second set of memory latencies[4:7] */
2172 val = 1; /* data0 to be programmed to 1 for second set */
2173 mutex_lock(&dev_priv->rps.hw_lock);
2174 ret = sandybridge_pcode_read(dev_priv,
2175 GEN9_PCODE_READ_MEM_LATENCY,
2176 &val);
2177 mutex_unlock(&dev_priv->rps.hw_lock);
2178 if (ret) {
2179 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2180 return;
2181 }
2182
2183 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2184 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2185 GEN9_MEM_LATENCY_LEVEL_MASK;
2186 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2187 GEN9_MEM_LATENCY_LEVEL_MASK;
2188 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2189 GEN9_MEM_LATENCY_LEVEL_MASK;
2190
Vandana Kannan367294b2014-11-04 17:06:46 +00002191 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00002192 * WaWmMemoryReadLatency:skl
2193 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002194 * punit doesn't take into account the read latency so we need
2195 * to add 2us to the various latency levels we retrieve from
2196 * the punit.
2197 * - W0 is a bit special in that it's the only level that
2198 * can't be disabled if we want to have display working, so
2199 * we always add 2us there.
2200 * - For levels >=1, punit returns 0us latency when they are
2201 * disabled, so we respect that and don't add 2us then
Vandana Kannan4f947382014-11-04 17:06:47 +00002202 *
2203 * Additionally, if a level n (n > 1) has a 0us latency, all
2204 * levels m (m >= n) need to be disabled. We make sure to
2205 * sanitize the values out of the punit to satisfy this
2206 * requirement.
Vandana Kannan367294b2014-11-04 17:06:46 +00002207 */
2208 wm[0] += 2;
2209 for (level = 1; level <= max_level; level++)
2210 if (wm[level] != 0)
2211 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002212 else {
2213 for (i = level + 1; i <= max_level; i++)
2214 wm[i] = 0;
Vandana Kannan367294b2014-11-04 17:06:46 +00002215
Vandana Kannan4f947382014-11-04 17:06:47 +00002216 break;
2217 }
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002218 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002219 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2220
2221 wm[0] = (sskpd >> 56) & 0xFF;
2222 if (wm[0] == 0)
2223 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002224 wm[1] = (sskpd >> 4) & 0xFF;
2225 wm[2] = (sskpd >> 12) & 0xFF;
2226 wm[3] = (sskpd >> 20) & 0x1FF;
2227 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002228 } else if (INTEL_INFO(dev)->gen >= 6) {
2229 uint32_t sskpd = I915_READ(MCH_SSKPD);
2230
2231 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2232 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2233 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2234 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002235 } else if (INTEL_INFO(dev)->gen >= 5) {
2236 uint32_t mltr = I915_READ(MLTR_ILK);
2237
2238 /* ILK primary LP0 latency is 700 ns */
2239 wm[0] = 7;
2240 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2241 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002242 }
2243}
2244
Ville Syrjälä53615a52013-08-01 16:18:50 +03002245static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2246{
2247 /* ILK sprite LP0 latency is 1300 ns */
2248 if (INTEL_INFO(dev)->gen == 5)
2249 wm[0] = 13;
2250}
2251
2252static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2253{
2254 /* ILK cursor LP0 latency is 1300 ns */
2255 if (INTEL_INFO(dev)->gen == 5)
2256 wm[0] = 13;
2257
2258 /* WaDoubleCursorLP3Latency:ivb */
2259 if (IS_IVYBRIDGE(dev))
2260 wm[3] *= 2;
2261}
2262
Damien Lespiau546c81f2014-05-13 15:30:26 +01002263int ilk_wm_max_level(const struct drm_device *dev)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002264{
2265 /* how many WM levels are we expecting */
Damien Lespiaub6e742f2015-05-09 02:05:55 +01002266 if (INTEL_INFO(dev)->gen >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002267 return 7;
2268 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002269 return 4;
2270 else if (INTEL_INFO(dev)->gen >= 6)
2271 return 3;
2272 else
2273 return 2;
2274}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002275
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002276static void intel_print_wm_latency(struct drm_device *dev,
2277 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002278 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002279{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002280 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002281
2282 for (level = 0; level <= max_level; level++) {
2283 unsigned int latency = wm[level];
2284
2285 if (latency == 0) {
2286 DRM_ERROR("%s WM%d latency not provided\n",
2287 name, level);
2288 continue;
2289 }
2290
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002291 /*
2292 * - latencies are in us on gen9.
2293 * - before then, WM1+ latency values are in 0.5us units
2294 */
2295 if (IS_GEN9(dev))
2296 latency *= 10;
2297 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002298 latency *= 5;
2299
2300 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2301 name, level, wm[level],
2302 latency / 10, latency % 10);
2303 }
2304}
2305
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002306static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2307 uint16_t wm[5], uint16_t min)
2308{
2309 int level, max_level = ilk_wm_max_level(dev_priv->dev);
2310
2311 if (wm[0] >= min)
2312 return false;
2313
2314 wm[0] = max(wm[0], min);
2315 for (level = 1; level <= max_level; level++)
2316 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2317
2318 return true;
2319}
2320
2321static void snb_wm_latency_quirk(struct drm_device *dev)
2322{
2323 struct drm_i915_private *dev_priv = dev->dev_private;
2324 bool changed;
2325
2326 /*
2327 * The BIOS provided WM memory latency values are often
2328 * inadequate for high resolution displays. Adjust them.
2329 */
2330 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2331 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2332 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2333
2334 if (!changed)
2335 return;
2336
2337 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
2338 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2339 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2340 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
2341}
2342
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002343static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002344{
2345 struct drm_i915_private *dev_priv = dev->dev_private;
2346
2347 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2348
2349 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2350 sizeof(dev_priv->wm.pri_latency));
2351 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2352 sizeof(dev_priv->wm.pri_latency));
2353
2354 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2355 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002356
2357 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2358 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2359 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002360
2361 if (IS_GEN6(dev))
2362 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002363}
2364
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002365static void skl_setup_wm_latency(struct drm_device *dev)
2366{
2367 struct drm_i915_private *dev_priv = dev->dev_private;
2368
2369 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
2370 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
2371}
2372
Imre Deak820c1982013-12-17 14:46:36 +02002373static void ilk_compute_wm_parameters(struct drm_crtc *crtc,
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002374 struct ilk_pipe_wm_parameters *p)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002375{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002376 struct drm_device *dev = crtc->dev;
2377 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2378 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002379 struct drm_plane *plane;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002380
Matt Roper3ef00282015-03-09 10:19:24 -07002381 if (!intel_crtc->active)
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002382 return;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002383
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002384 p->active = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002385 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03002386 p->pixel_rate = ilk_pipe_pixel_rate(intel_crtc->config);
Matt Roperc9f038a2015-03-09 11:06:02 -07002387
Thomas Gummerer54da6912015-05-14 09:16:39 +02002388 if (crtc->primary->state->fb)
Matt Roperc9f038a2015-03-09 11:06:02 -07002389 p->pri.bytes_per_pixel =
2390 crtc->primary->state->fb->bits_per_pixel / 8;
Thomas Gummerer54da6912015-05-14 09:16:39 +02002391 else
2392 p->pri.bytes_per_pixel = 4;
Matt Roperc9f038a2015-03-09 11:06:02 -07002393
Thomas Gummerer54da6912015-05-14 09:16:39 +02002394 p->cur.bytes_per_pixel = 4;
2395 /*
2396 * TODO: for now, assume primary and cursor planes are always enabled.
2397 * Setting them to false makes the screen flicker.
2398 */
2399 p->pri.enabled = true;
2400 p->cur.enabled = true;
2401
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002402 p->pri.horiz_pixels = intel_crtc->config->pipe_src_w;
Matt Roper3dd512f2015-02-27 10:12:00 -08002403 p->cur.horiz_pixels = intel_crtc->base.cursor->state->crtc_w;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002404
Matt Roperaf2b6532014-04-01 15:22:32 -07002405 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002406 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002407
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002408 if (intel_plane->pipe == pipe) {
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002409 p->spr = intel_plane->wm;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002410 break;
2411 }
2412 }
2413}
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002414
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002415static void ilk_compute_wm_config(struct drm_device *dev,
2416 struct intel_wm_config *config)
2417{
2418 struct intel_crtc *intel_crtc;
2419
2420 /* Compute the currently _active_ config */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002421 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002422 const struct intel_pipe_wm *wm = &intel_crtc->wm.active;
2423
2424 if (!wm->pipe_enabled)
2425 continue;
2426
2427 config->sprites_enabled |= wm->sprites_enabled;
2428 config->sprites_scaled |= wm->sprites_scaled;
2429 config->num_pipes_active++;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002430 }
2431}
2432
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002433/* Compute new watermarks for the pipe */
2434static bool intel_compute_pipe_wm(struct drm_crtc *crtc,
Imre Deak820c1982013-12-17 14:46:36 +02002435 const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002436 struct intel_pipe_wm *pipe_wm)
2437{
2438 struct drm_device *dev = crtc->dev;
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002439 const struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002440 int level, max_level = ilk_wm_max_level(dev);
2441 /* LP0 watermark maximums depend on this pipe alone */
2442 struct intel_wm_config config = {
2443 .num_pipes_active = 1,
2444 .sprites_enabled = params->spr.enabled,
2445 .sprites_scaled = params->spr.scaled,
2446 };
Imre Deak820c1982013-12-17 14:46:36 +02002447 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002448
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002449 pipe_wm->pipe_enabled = params->active;
2450 pipe_wm->sprites_enabled = params->spr.enabled;
2451 pipe_wm->sprites_scaled = params->spr.scaled;
2452
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002453 /* ILK/SNB: LP2+ watermarks only w/o sprites */
2454 if (INTEL_INFO(dev)->gen <= 6 && params->spr.enabled)
2455 max_level = 1;
2456
2457 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
2458 if (params->spr.scaled)
2459 max_level = 0;
2460
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002461 ilk_compute_wm_level(dev_priv, 0, params, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002462
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002463 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02002464 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002465
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002466 /* LP0 watermarks always use 1/2 DDB partitioning */
2467 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2468
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002469 /* At least LP0 must be valid */
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002470 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]))
2471 return false;
2472
2473 ilk_compute_wm_reg_maximums(dev, 1, &max);
2474
2475 for (level = 1; level <= max_level; level++) {
2476 struct intel_wm_level wm = {};
2477
2478 ilk_compute_wm_level(dev_priv, level, params, &wm);
2479
2480 /*
2481 * Disable any watermark level that exceeds the
2482 * register maximums since such watermarks are
2483 * always invalid.
2484 */
2485 if (!ilk_validate_wm_level(level, &max, &wm))
2486 break;
2487
2488 pipe_wm->wm[level] = wm;
2489 }
2490
2491 return true;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002492}
2493
2494/*
2495 * Merge the watermarks from all active pipes for a specific level.
2496 */
2497static void ilk_merge_wm_level(struct drm_device *dev,
2498 int level,
2499 struct intel_wm_level *ret_wm)
2500{
2501 const struct intel_crtc *intel_crtc;
2502
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002503 ret_wm->enable = true;
2504
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002505 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002506 const struct intel_pipe_wm *active = &intel_crtc->wm.active;
2507 const struct intel_wm_level *wm = &active->wm[level];
2508
2509 if (!active->pipe_enabled)
2510 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002511
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002512 /*
2513 * The watermark values may have been used in the past,
2514 * so we must maintain them in the registers for some
2515 * time even if the level is now disabled.
2516 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002517 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002518 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002519
2520 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2521 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2522 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2523 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2524 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002525}
2526
2527/*
2528 * Merge all low power watermarks for all active pipes.
2529 */
2530static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002531 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002532 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002533 struct intel_pipe_wm *merged)
2534{
2535 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002536 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002537
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002538 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2539 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2540 config->num_pipes_active > 1)
2541 return;
2542
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002543 /* ILK: FBC WM must be disabled always */
2544 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002545
2546 /* merge each WM1+ level */
2547 for (level = 1; level <= max_level; level++) {
2548 struct intel_wm_level *wm = &merged->wm[level];
2549
2550 ilk_merge_wm_level(dev, level, wm);
2551
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002552 if (level > last_enabled_level)
2553 wm->enable = false;
2554 else if (!ilk_validate_wm_level(level, max, wm))
2555 /* make sure all following levels get disabled */
2556 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002557
2558 /*
2559 * The spec says it is preferred to disable
2560 * FBC WMs instead of disabling a WM level.
2561 */
2562 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002563 if (wm->enable)
2564 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002565 wm->fbc_val = 0;
2566 }
2567 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002568
2569 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2570 /*
2571 * FIXME this is racy. FBC might get enabled later.
2572 * What we should check here is whether FBC can be
2573 * enabled sometime later.
2574 */
2575 if (IS_GEN5(dev) && !merged->fbc_wm_enabled && intel_fbc_enabled(dev)) {
2576 for (level = 2; level <= max_level; level++) {
2577 struct intel_wm_level *wm = &merged->wm[level];
2578
2579 wm->enable = false;
2580 }
2581 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002582}
2583
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002584static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2585{
2586 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2587 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2588}
2589
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002590/* The value we need to program into the WM_LPx latency field */
2591static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2592{
2593 struct drm_i915_private *dev_priv = dev->dev_private;
2594
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002595 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002596 return 2 * level;
2597 else
2598 return dev_priv->wm.pri_latency[level];
2599}
2600
Imre Deak820c1982013-12-17 14:46:36 +02002601static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002602 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002603 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002604 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002605{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002606 struct intel_crtc *intel_crtc;
2607 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002608
Ville Syrjälä0362c782013-10-09 19:17:57 +03002609 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002610 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002611
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002612 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002613 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002614 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002615
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002616 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002617
Ville Syrjälä0362c782013-10-09 19:17:57 +03002618 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002619
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002620 /*
2621 * Maintain the watermark values even if the level is
2622 * disabled. Doing otherwise could cause underruns.
2623 */
2624 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002625 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002626 (r->pri_val << WM1_LP_SR_SHIFT) |
2627 r->cur_val;
2628
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002629 if (r->enable)
2630 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2631
Ville Syrjälä416f4722013-11-02 21:07:46 -07002632 if (INTEL_INFO(dev)->gen >= 8)
2633 results->wm_lp[wm_lp - 1] |=
2634 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2635 else
2636 results->wm_lp[wm_lp - 1] |=
2637 r->fbc_val << WM1_LP_FBC_SHIFT;
2638
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002639 /*
2640 * Always set WM1S_LP_EN when spr_val != 0, even if the
2641 * level is disabled. Doing otherwise could cause underruns.
2642 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002643 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2644 WARN_ON(wm_lp != 1);
2645 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2646 } else
2647 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002648 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002649
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002650 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002651 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002652 enum pipe pipe = intel_crtc->pipe;
2653 const struct intel_wm_level *r =
2654 &intel_crtc->wm.active.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002655
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002656 if (WARN_ON(!r->enable))
2657 continue;
2658
2659 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
2660
2661 results->wm_pipe[pipe] =
2662 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2663 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2664 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002665 }
2666}
2667
Paulo Zanoni861f3382013-05-31 10:19:21 -03002668/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2669 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002670static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002671 struct intel_pipe_wm *r1,
2672 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002673{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002674 int level, max_level = ilk_wm_max_level(dev);
2675 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002676
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002677 for (level = 1; level <= max_level; level++) {
2678 if (r1->wm[level].enable)
2679 level1 = level;
2680 if (r2->wm[level].enable)
2681 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002682 }
2683
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002684 if (level1 == level2) {
2685 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002686 return r2;
2687 else
2688 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002689 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002690 return r1;
2691 } else {
2692 return r2;
2693 }
2694}
2695
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002696/* dirty bits used to track which watermarks need changes */
2697#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2698#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2699#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2700#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2701#define WM_DIRTY_FBC (1 << 24)
2702#define WM_DIRTY_DDB (1 << 25)
2703
Damien Lespiau055e3932014-08-18 13:49:10 +01002704static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002705 const struct ilk_wm_values *old,
2706 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002707{
2708 unsigned int dirty = 0;
2709 enum pipe pipe;
2710 int wm_lp;
2711
Damien Lespiau055e3932014-08-18 13:49:10 +01002712 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002713 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2714 dirty |= WM_DIRTY_LINETIME(pipe);
2715 /* Must disable LP1+ watermarks too */
2716 dirty |= WM_DIRTY_LP_ALL;
2717 }
2718
2719 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2720 dirty |= WM_DIRTY_PIPE(pipe);
2721 /* Must disable LP1+ watermarks too */
2722 dirty |= WM_DIRTY_LP_ALL;
2723 }
2724 }
2725
2726 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2727 dirty |= WM_DIRTY_FBC;
2728 /* Must disable LP1+ watermarks too */
2729 dirty |= WM_DIRTY_LP_ALL;
2730 }
2731
2732 if (old->partitioning != new->partitioning) {
2733 dirty |= WM_DIRTY_DDB;
2734 /* Must disable LP1+ watermarks too */
2735 dirty |= WM_DIRTY_LP_ALL;
2736 }
2737
2738 /* LP1+ watermarks already deemed dirty, no need to continue */
2739 if (dirty & WM_DIRTY_LP_ALL)
2740 return dirty;
2741
2742 /* Find the lowest numbered LP1+ watermark in need of an update... */
2743 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2744 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2745 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2746 break;
2747 }
2748
2749 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2750 for (; wm_lp <= 3; wm_lp++)
2751 dirty |= WM_DIRTY_LP(wm_lp);
2752
2753 return dirty;
2754}
2755
Ville Syrjälä8553c182013-12-05 15:51:39 +02002756static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2757 unsigned int dirty)
2758{
Imre Deak820c1982013-12-17 14:46:36 +02002759 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002760 bool changed = false;
2761
2762 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2763 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2764 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2765 changed = true;
2766 }
2767 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2768 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2769 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2770 changed = true;
2771 }
2772 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2773 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2774 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2775 changed = true;
2776 }
2777
2778 /*
2779 * Don't touch WM1S_LP_EN here.
2780 * Doing so could cause underruns.
2781 */
2782
2783 return changed;
2784}
2785
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002786/*
2787 * The spec says we shouldn't write when we don't need, because every write
2788 * causes WMs to be re-evaluated, expending some power.
2789 */
Imre Deak820c1982013-12-17 14:46:36 +02002790static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2791 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002792{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002793 struct drm_device *dev = dev_priv->dev;
Imre Deak820c1982013-12-17 14:46:36 +02002794 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002795 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002796 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002797
Damien Lespiau055e3932014-08-18 13:49:10 +01002798 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002799 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002800 return;
2801
Ville Syrjälä8553c182013-12-05 15:51:39 +02002802 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002803
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002804 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002805 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002806 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002807 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002808 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002809 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2810
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002811 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002812 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002813 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002814 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002815 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002816 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2817
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002818 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002819 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002820 val = I915_READ(WM_MISC);
2821 if (results->partitioning == INTEL_DDB_PART_1_2)
2822 val &= ~WM_MISC_DATA_PARTITION_5_6;
2823 else
2824 val |= WM_MISC_DATA_PARTITION_5_6;
2825 I915_WRITE(WM_MISC, val);
2826 } else {
2827 val = I915_READ(DISP_ARB_CTL2);
2828 if (results->partitioning == INTEL_DDB_PART_1_2)
2829 val &= ~DISP_DATA_PARTITION_5_6;
2830 else
2831 val |= DISP_DATA_PARTITION_5_6;
2832 I915_WRITE(DISP_ARB_CTL2, val);
2833 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002834 }
2835
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002836 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002837 val = I915_READ(DISP_ARB_CTL);
2838 if (results->enable_fbc_wm)
2839 val &= ~DISP_FBC_WM_DIS;
2840 else
2841 val |= DISP_FBC_WM_DIS;
2842 I915_WRITE(DISP_ARB_CTL, val);
2843 }
2844
Imre Deak954911e2013-12-17 14:46:34 +02002845 if (dirty & WM_DIRTY_LP(1) &&
2846 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2847 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2848
2849 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002850 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2851 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2852 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2853 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2854 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002855
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002856 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002857 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002858 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002859 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002860 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002861 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002862
2863 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002864}
2865
Ville Syrjälä8553c182013-12-05 15:51:39 +02002866static bool ilk_disable_lp_wm(struct drm_device *dev)
2867{
2868 struct drm_i915_private *dev_priv = dev->dev_private;
2869
2870 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2871}
2872
Damien Lespiaub9cec072014-11-04 17:06:43 +00002873/*
2874 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
2875 * different active planes.
2876 */
2877
2878#define SKL_DDB_SIZE 896 /* in blocks */
Damien Lespiau43d735a2015-03-17 11:39:34 +02002879#define BXT_DDB_SIZE 512
Damien Lespiaub9cec072014-11-04 17:06:43 +00002880
2881static void
2882skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
2883 struct drm_crtc *for_crtc,
2884 const struct intel_wm_config *config,
2885 const struct skl_pipe_wm_parameters *params,
2886 struct skl_ddb_entry *alloc /* out */)
2887{
2888 struct drm_crtc *crtc;
2889 unsigned int pipe_size, ddb_size;
2890 int nth_active_pipe;
2891
2892 if (!params->active) {
2893 alloc->start = 0;
2894 alloc->end = 0;
2895 return;
2896 }
2897
Damien Lespiau43d735a2015-03-17 11:39:34 +02002898 if (IS_BROXTON(dev))
2899 ddb_size = BXT_DDB_SIZE;
2900 else
2901 ddb_size = SKL_DDB_SIZE;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002902
2903 ddb_size -= 4; /* 4 blocks for bypass path allocation */
2904
2905 nth_active_pipe = 0;
2906 for_each_crtc(dev, crtc) {
Matt Roper3ef00282015-03-09 10:19:24 -07002907 if (!to_intel_crtc(crtc)->active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002908 continue;
2909
2910 if (crtc == for_crtc)
2911 break;
2912
2913 nth_active_pipe++;
2914 }
2915
2916 pipe_size = ddb_size / config->num_pipes_active;
2917 alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active;
Damien Lespiau16160e32014-11-04 17:06:53 +00002918 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002919}
2920
2921static unsigned int skl_cursor_allocation(const struct intel_wm_config *config)
2922{
2923 if (config->num_pipes_active == 1)
2924 return 32;
2925
2926 return 8;
2927}
2928
Damien Lespiaua269c582014-11-04 17:06:49 +00002929static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
2930{
2931 entry->start = reg & 0x3ff;
2932 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00002933 if (entry->end)
2934 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00002935}
2936
Damien Lespiau08db6652014-11-04 17:06:52 +00002937void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2938 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00002939{
Damien Lespiaua269c582014-11-04 17:06:49 +00002940 enum pipe pipe;
2941 int plane;
2942 u32 val;
2943
2944 for_each_pipe(dev_priv, pipe) {
Damien Lespiaudd740782015-02-28 14:54:08 +00002945 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00002946 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
2947 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
2948 val);
2949 }
2950
2951 val = I915_READ(CUR_BUF_CFG(pipe));
2952 skl_ddb_entry_init_from_hw(&ddb->cursor[pipe], val);
2953 }
2954}
2955
Damien Lespiaub9cec072014-11-04 17:06:43 +00002956static unsigned int
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002957skl_plane_relative_data_rate(const struct intel_plane_wm_parameters *p, int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002958{
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002959
2960 /* for planar format */
2961 if (p->y_bytes_per_pixel) {
2962 if (y) /* y-plane data rate */
2963 return p->horiz_pixels * p->vert_pixels * p->y_bytes_per_pixel;
2964 else /* uv-plane data rate */
2965 return (p->horiz_pixels/2) * (p->vert_pixels/2) * p->bytes_per_pixel;
2966 }
2967
2968 /* for packed formats */
Damien Lespiaub9cec072014-11-04 17:06:43 +00002969 return p->horiz_pixels * p->vert_pixels * p->bytes_per_pixel;
2970}
2971
2972/*
2973 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
2974 * a 8192x4096@32bpp framebuffer:
2975 * 3 * 4096 * 8192 * 4 < 2^32
2976 */
2977static unsigned int
2978skl_get_total_relative_data_rate(struct intel_crtc *intel_crtc,
2979 const struct skl_pipe_wm_parameters *params)
2980{
2981 unsigned int total_data_rate = 0;
2982 int plane;
2983
2984 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2985 const struct intel_plane_wm_parameters *p;
2986
2987 p = &params->plane[plane];
2988 if (!p->enabled)
2989 continue;
2990
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002991 total_data_rate += skl_plane_relative_data_rate(p, 0); /* packed/uv */
2992 if (p->y_bytes_per_pixel) {
2993 total_data_rate += skl_plane_relative_data_rate(p, 1); /* y-plane */
2994 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00002995 }
2996
2997 return total_data_rate;
2998}
2999
3000static void
3001skl_allocate_pipe_ddb(struct drm_crtc *crtc,
3002 const struct intel_wm_config *config,
3003 const struct skl_pipe_wm_parameters *params,
3004 struct skl_ddb_allocation *ddb /* out */)
3005{
3006 struct drm_device *dev = crtc->dev;
Damien Lespiaudd740782015-02-28 14:54:08 +00003007 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003008 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3009 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003010 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003011 uint16_t alloc_size, start, cursor_blocks;
Damien Lespiau80958152015-02-09 13:35:10 +00003012 uint16_t minimum[I915_MAX_PLANES];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003013 uint16_t y_minimum[I915_MAX_PLANES];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003014 unsigned int total_data_rate;
3015 int plane;
3016
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003017 skl_ddb_get_pipe_allocation_limits(dev, crtc, config, params, alloc);
3018 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003019 if (alloc_size == 0) {
3020 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
3021 memset(&ddb->cursor[pipe], 0, sizeof(ddb->cursor[pipe]));
3022 return;
3023 }
3024
3025 cursor_blocks = skl_cursor_allocation(config);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003026 ddb->cursor[pipe].start = alloc->end - cursor_blocks;
3027 ddb->cursor[pipe].end = alloc->end;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003028
3029 alloc_size -= cursor_blocks;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003030 alloc->end -= cursor_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003031
Damien Lespiau80958152015-02-09 13:35:10 +00003032 /* 1. Allocate the mininum required blocks for each active plane */
Damien Lespiaudd740782015-02-28 14:54:08 +00003033 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau80958152015-02-09 13:35:10 +00003034 const struct intel_plane_wm_parameters *p;
3035
3036 p = &params->plane[plane];
3037 if (!p->enabled)
3038 continue;
3039
3040 minimum[plane] = 8;
3041 alloc_size -= minimum[plane];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003042 y_minimum[plane] = p->y_bytes_per_pixel ? 8 : 0;
3043 alloc_size -= y_minimum[plane];
Damien Lespiau80958152015-02-09 13:35:10 +00003044 }
3045
Damien Lespiaub9cec072014-11-04 17:06:43 +00003046 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003047 * 2. Distribute the remaining space in proportion to the amount of
3048 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003049 *
3050 * FIXME: we may not allocate every single block here.
3051 */
3052 total_data_rate = skl_get_total_relative_data_rate(intel_crtc, params);
3053
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003054 start = alloc->start;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003055 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
3056 const struct intel_plane_wm_parameters *p;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003057 unsigned int data_rate, y_data_rate;
3058 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003059
3060 p = &params->plane[plane];
3061 if (!p->enabled)
3062 continue;
3063
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003064 data_rate = skl_plane_relative_data_rate(p, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003065
3066 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003067 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003068 * promote the expression to 64 bits to avoid overflowing, the
3069 * result is < available as data_rate / total_data_rate < 1
3070 */
Damien Lespiau80958152015-02-09 13:35:10 +00003071 plane_blocks = minimum[plane];
3072 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3073 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003074
3075 ddb->plane[pipe][plane].start = start;
Damien Lespiau16160e32014-11-04 17:06:53 +00003076 ddb->plane[pipe][plane].end = start + plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003077
3078 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003079
3080 /*
3081 * allocation for y_plane part of planar format:
3082 */
3083 if (p->y_bytes_per_pixel) {
3084 y_data_rate = skl_plane_relative_data_rate(p, 1);
3085 y_plane_blocks = y_minimum[plane];
3086 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3087 total_data_rate);
3088
3089 ddb->y_plane[pipe][plane].start = start;
3090 ddb->y_plane[pipe][plane].end = start + y_plane_blocks;
3091
3092 start += y_plane_blocks;
3093 }
3094
Damien Lespiaub9cec072014-11-04 17:06:43 +00003095 }
3096
3097}
3098
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02003099static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003100{
3101 /* TODO: Take into account the scalers once we support them */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02003102 return config->base.adjusted_mode.crtc_clock;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003103}
3104
3105/*
3106 * The max latency should be 257 (max the punit can code is 255 and we add 2us
3107 * for the read latency) and bytes_per_pixel should always be <= 8, so that
3108 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3109 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3110*/
3111static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
3112 uint32_t latency)
3113{
3114 uint32_t wm_intermediate_val, ret;
3115
3116 if (latency == 0)
3117 return UINT_MAX;
3118
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003119 wm_intermediate_val = latency * pixel_rate * bytes_per_pixel / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003120 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
3121
3122 return ret;
3123}
3124
3125static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
3126 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003127 uint64_t tiling, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003128{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003129 uint32_t ret;
3130 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3131 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003132
3133 if (latency == 0)
3134 return UINT_MAX;
3135
3136 plane_bytes_per_line = horiz_pixels * bytes_per_pixel;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003137
3138 if (tiling == I915_FORMAT_MOD_Y_TILED ||
3139 tiling == I915_FORMAT_MOD_Yf_TILED) {
3140 plane_bytes_per_line *= 4;
3141 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3142 plane_blocks_per_line /= 4;
3143 } else {
3144 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3145 }
3146
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003147 wm_intermediate_val = latency * pixel_rate;
3148 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003149 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003150
3151 return ret;
3152}
3153
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003154static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb,
3155 const struct intel_crtc *intel_crtc)
3156{
3157 struct drm_device *dev = intel_crtc->base.dev;
3158 struct drm_i915_private *dev_priv = dev->dev_private;
3159 const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3160 enum pipe pipe = intel_crtc->pipe;
3161
3162 if (memcmp(new_ddb->plane[pipe], cur_ddb->plane[pipe],
3163 sizeof(new_ddb->plane[pipe])))
3164 return true;
3165
3166 if (memcmp(&new_ddb->cursor[pipe], &cur_ddb->cursor[pipe],
3167 sizeof(new_ddb->cursor[pipe])))
3168 return true;
3169
3170 return false;
3171}
3172
3173static void skl_compute_wm_global_parameters(struct drm_device *dev,
3174 struct intel_wm_config *config)
3175{
3176 struct drm_crtc *crtc;
3177 struct drm_plane *plane;
3178
3179 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
Matt Roper3ef00282015-03-09 10:19:24 -07003180 config->num_pipes_active += to_intel_crtc(crtc)->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003181
3182 /* FIXME: I don't think we need those two global parameters on SKL */
3183 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
3184 struct intel_plane *intel_plane = to_intel_plane(plane);
3185
3186 config->sprites_enabled |= intel_plane->wm.enabled;
3187 config->sprites_scaled |= intel_plane->wm.scaled;
3188 }
3189}
3190
3191static void skl_compute_wm_pipe_parameters(struct drm_crtc *crtc,
3192 struct skl_pipe_wm_parameters *p)
3193{
3194 struct drm_device *dev = crtc->dev;
3195 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3196 enum pipe pipe = intel_crtc->pipe;
3197 struct drm_plane *plane;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003198 struct drm_framebuffer *fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003199 int i = 1; /* Index for sprite planes start */
3200
Matt Roper3ef00282015-03-09 10:19:24 -07003201 p->active = intel_crtc->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003202 if (p->active) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003203 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
3204 p->pixel_rate = skl_pipe_pixel_rate(intel_crtc->config);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003205
Matt Roperc9f038a2015-03-09 11:06:02 -07003206 fb = crtc->primary->state->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003207 /* For planar: Bpp is for uv plane, y_Bpp is for y plane */
Matt Roperc9f038a2015-03-09 11:06:02 -07003208 if (fb) {
3209 p->plane[0].enabled = true;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003210 p->plane[0].bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
3211 drm_format_plane_cpp(fb->pixel_format, 1) : fb->bits_per_pixel / 8;
3212 p->plane[0].y_bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
3213 drm_format_plane_cpp(fb->pixel_format, 0) : 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07003214 p->plane[0].tiling = fb->modifier[0];
3215 } else {
3216 p->plane[0].enabled = false;
3217 p->plane[0].bytes_per_pixel = 0;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003218 p->plane[0].y_bytes_per_pixel = 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07003219 p->plane[0].tiling = DRM_FORMAT_MOD_NONE;
3220 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003221 p->plane[0].horiz_pixels = intel_crtc->config->pipe_src_w;
3222 p->plane[0].vert_pixels = intel_crtc->config->pipe_src_h;
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003223 p->plane[0].rotation = crtc->primary->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003224
Matt Roperc9f038a2015-03-09 11:06:02 -07003225 fb = crtc->cursor->state->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003226 p->cursor.y_bytes_per_pixel = 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07003227 if (fb) {
3228 p->cursor.enabled = true;
3229 p->cursor.bytes_per_pixel = fb->bits_per_pixel / 8;
3230 p->cursor.horiz_pixels = crtc->cursor->state->crtc_w;
3231 p->cursor.vert_pixels = crtc->cursor->state->crtc_h;
3232 } else {
3233 p->cursor.enabled = false;
3234 p->cursor.bytes_per_pixel = 0;
3235 p->cursor.horiz_pixels = 64;
3236 p->cursor.vert_pixels = 64;
3237 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003238 }
3239
3240 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
3241 struct intel_plane *intel_plane = to_intel_plane(plane);
3242
Sonika Jindala712f8e2014-12-09 10:59:15 +05303243 if (intel_plane->pipe == pipe &&
3244 plane->type == DRM_PLANE_TYPE_OVERLAY)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003245 p->plane[i++] = intel_plane->wm;
3246 }
3247}
3248
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003249static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3250 struct skl_pipe_wm_parameters *p,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003251 struct intel_plane_wm_parameters *p_params,
3252 uint16_t ddb_allocation,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003253 int level,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003254 uint16_t *out_blocks, /* out */
3255 uint8_t *out_lines /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003256{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003257 uint32_t latency = dev_priv->wm.skl_latency[level];
3258 uint32_t method1, method2;
3259 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3260 uint32_t res_blocks, res_lines;
3261 uint32_t selected_result;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003262 uint8_t bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003263
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003264 if (latency == 0 || !p->active || !p_params->enabled)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003265 return false;
3266
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003267 bytes_per_pixel = p_params->y_bytes_per_pixel ?
3268 p_params->y_bytes_per_pixel :
3269 p_params->bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003270 method1 = skl_wm_method1(p->pixel_rate,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003271 bytes_per_pixel,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003272 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003273 method2 = skl_wm_method2(p->pixel_rate,
3274 p->pipe_htotal,
3275 p_params->horiz_pixels,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003276 bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003277 p_params->tiling,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003278 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003279
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003280 plane_bytes_per_line = p_params->horiz_pixels * bytes_per_pixel;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003281 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003282
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003283 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
3284 p_params->tiling == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003285 uint32_t min_scanlines = 4;
3286 uint32_t y_tile_minimum;
3287 if (intel_rotation_90_or_270(p_params->rotation)) {
3288 switch (p_params->bytes_per_pixel) {
3289 case 1:
3290 min_scanlines = 16;
3291 break;
3292 case 2:
3293 min_scanlines = 8;
3294 break;
3295 case 8:
3296 WARN(1, "Unsupported pixel depth for rotation");
kbuild test robot2f0b5792015-03-26 22:30:21 +08003297 }
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003298 }
3299 y_tile_minimum = plane_blocks_per_line * min_scanlines;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003300 selected_result = max(method2, y_tile_minimum);
3301 } else {
3302 if ((ddb_allocation / plane_blocks_per_line) >= 1)
3303 selected_result = min(method1, method2);
3304 else
3305 selected_result = method1;
3306 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003307
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003308 res_blocks = selected_result + 1;
3309 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003310
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003311 if (level >= 1 && level <= 7) {
3312 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
3313 p_params->tiling == I915_FORMAT_MOD_Yf_TILED)
3314 res_lines += 4;
3315 else
3316 res_blocks++;
3317 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003318
3319 if (res_blocks >= ddb_allocation || res_lines > 31)
Damien Lespiaue6d66172014-11-04 17:06:55 +00003320 return false;
3321
3322 *out_blocks = res_blocks;
3323 *out_lines = res_lines;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003324
3325 return true;
3326}
3327
3328static void skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3329 struct skl_ddb_allocation *ddb,
3330 struct skl_pipe_wm_parameters *p,
3331 enum pipe pipe,
3332 int level,
3333 int num_planes,
3334 struct skl_wm_level *result)
3335{
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003336 uint16_t ddb_blocks;
3337 int i;
3338
3339 for (i = 0; i < num_planes; i++) {
3340 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
3341
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003342 result->plane_en[i] = skl_compute_plane_wm(dev_priv,
3343 p, &p->plane[i],
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003344 ddb_blocks,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003345 level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003346 &result->plane_res_b[i],
3347 &result->plane_res_l[i]);
3348 }
3349
3350 ddb_blocks = skl_ddb_entry_size(&ddb->cursor[pipe]);
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003351 result->cursor_en = skl_compute_plane_wm(dev_priv, p, &p->cursor,
3352 ddb_blocks, level,
3353 &result->cursor_res_b,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003354 &result->cursor_res_l);
3355}
3356
Damien Lespiau407b50f2014-11-04 17:06:57 +00003357static uint32_t
3358skl_compute_linetime_wm(struct drm_crtc *crtc, struct skl_pipe_wm_parameters *p)
3359{
Matt Roper3ef00282015-03-09 10:19:24 -07003360 if (!to_intel_crtc(crtc)->active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003361 return 0;
3362
3363 return DIV_ROUND_UP(8 * p->pipe_htotal * 1000, p->pixel_rate);
3364
3365}
3366
3367static void skl_compute_transition_wm(struct drm_crtc *crtc,
3368 struct skl_pipe_wm_parameters *params,
Damien Lespiau9414f562014-11-04 17:06:58 +00003369 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003370{
Damien Lespiau9414f562014-11-04 17:06:58 +00003371 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3372 int i;
3373
Damien Lespiau407b50f2014-11-04 17:06:57 +00003374 if (!params->active)
3375 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003376
3377 /* Until we know more, just disable transition WMs */
3378 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3379 trans_wm->plane_en[i] = false;
3380 trans_wm->cursor_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003381}
3382
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003383static void skl_compute_pipe_wm(struct drm_crtc *crtc,
3384 struct skl_ddb_allocation *ddb,
3385 struct skl_pipe_wm_parameters *params,
3386 struct skl_pipe_wm *pipe_wm)
3387{
3388 struct drm_device *dev = crtc->dev;
3389 const struct drm_i915_private *dev_priv = dev->dev_private;
3390 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3391 int level, max_level = ilk_wm_max_level(dev);
3392
3393 for (level = 0; level <= max_level; level++) {
3394 skl_compute_wm_level(dev_priv, ddb, params, intel_crtc->pipe,
3395 level, intel_num_planes(intel_crtc),
3396 &pipe_wm->wm[level]);
3397 }
3398 pipe_wm->linetime = skl_compute_linetime_wm(crtc, params);
3399
Damien Lespiau9414f562014-11-04 17:06:58 +00003400 skl_compute_transition_wm(crtc, params, &pipe_wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003401}
3402
3403static void skl_compute_wm_results(struct drm_device *dev,
3404 struct skl_pipe_wm_parameters *p,
3405 struct skl_pipe_wm *p_wm,
3406 struct skl_wm_values *r,
3407 struct intel_crtc *intel_crtc)
3408{
3409 int level, max_level = ilk_wm_max_level(dev);
3410 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau9414f562014-11-04 17:06:58 +00003411 uint32_t temp;
3412 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003413
3414 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003415 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3416 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003417
3418 temp |= p_wm->wm[level].plane_res_l[i] <<
3419 PLANE_WM_LINES_SHIFT;
3420 temp |= p_wm->wm[level].plane_res_b[i];
3421 if (p_wm->wm[level].plane_en[i])
3422 temp |= PLANE_WM_EN;
3423
3424 r->plane[pipe][i][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003425 }
3426
3427 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003428
3429 temp |= p_wm->wm[level].cursor_res_l << PLANE_WM_LINES_SHIFT;
3430 temp |= p_wm->wm[level].cursor_res_b;
3431
3432 if (p_wm->wm[level].cursor_en)
3433 temp |= PLANE_WM_EN;
3434
3435 r->cursor[pipe][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003436
3437 }
3438
Damien Lespiau9414f562014-11-04 17:06:58 +00003439 /* transition WMs */
3440 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3441 temp = 0;
3442 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
3443 temp |= p_wm->trans_wm.plane_res_b[i];
3444 if (p_wm->trans_wm.plane_en[i])
3445 temp |= PLANE_WM_EN;
3446
3447 r->plane_trans[pipe][i] = temp;
3448 }
3449
3450 temp = 0;
3451 temp |= p_wm->trans_wm.cursor_res_l << PLANE_WM_LINES_SHIFT;
3452 temp |= p_wm->trans_wm.cursor_res_b;
3453 if (p_wm->trans_wm.cursor_en)
3454 temp |= PLANE_WM_EN;
3455
3456 r->cursor_trans[pipe] = temp;
3457
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003458 r->wm_linetime[pipe] = p_wm->linetime;
3459}
3460
Damien Lespiau16160e32014-11-04 17:06:53 +00003461static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, uint32_t reg,
3462 const struct skl_ddb_entry *entry)
3463{
3464 if (entry->end)
3465 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3466 else
3467 I915_WRITE(reg, 0);
3468}
3469
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003470static void skl_write_wm_values(struct drm_i915_private *dev_priv,
3471 const struct skl_wm_values *new)
3472{
3473 struct drm_device *dev = dev_priv->dev;
3474 struct intel_crtc *crtc;
3475
3476 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
3477 int i, level, max_level = ilk_wm_max_level(dev);
3478 enum pipe pipe = crtc->pipe;
3479
Damien Lespiau5d374d92014-11-04 17:07:00 +00003480 if (!new->dirty[pipe])
3481 continue;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003482
Damien Lespiau5d374d92014-11-04 17:07:00 +00003483 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
3484
3485 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003486 for (i = 0; i < intel_num_planes(crtc); i++)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003487 I915_WRITE(PLANE_WM(pipe, i, level),
3488 new->plane[pipe][i][level]);
3489 I915_WRITE(CUR_WM(pipe, level),
3490 new->cursor[pipe][level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003491 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003492 for (i = 0; i < intel_num_planes(crtc); i++)
3493 I915_WRITE(PLANE_WM_TRANS(pipe, i),
3494 new->plane_trans[pipe][i]);
3495 I915_WRITE(CUR_WM_TRANS(pipe), new->cursor_trans[pipe]);
3496
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003497 for (i = 0; i < intel_num_planes(crtc); i++) {
Damien Lespiau5d374d92014-11-04 17:07:00 +00003498 skl_ddb_entry_write(dev_priv,
3499 PLANE_BUF_CFG(pipe, i),
3500 &new->ddb.plane[pipe][i]);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003501 skl_ddb_entry_write(dev_priv,
3502 PLANE_NV12_BUF_CFG(pipe, i),
3503 &new->ddb.y_plane[pipe][i]);
3504 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003505
3506 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
3507 &new->ddb.cursor[pipe]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003508 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003509}
3510
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003511/*
3512 * When setting up a new DDB allocation arrangement, we need to correctly
3513 * sequence the times at which the new allocations for the pipes are taken into
3514 * account or we'll have pipes fetching from space previously allocated to
3515 * another pipe.
3516 *
3517 * Roughly the sequence looks like:
3518 * 1. re-allocate the pipe(s) with the allocation being reduced and not
3519 * overlapping with a previous light-up pipe (another way to put it is:
3520 * pipes with their new allocation strickly included into their old ones).
3521 * 2. re-allocate the other pipes that get their allocation reduced
3522 * 3. allocate the pipes having their allocation increased
3523 *
3524 * Steps 1. and 2. are here to take care of the following case:
3525 * - Initially DDB looks like this:
3526 * | B | C |
3527 * - enable pipe A.
3528 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
3529 * allocation
3530 * | A | B | C |
3531 *
3532 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
3533 */
3534
Damien Lespiaud21b7952014-11-04 17:07:03 +00003535static void
3536skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003537{
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003538 int plane;
3539
Damien Lespiaud21b7952014-11-04 17:07:03 +00003540 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
3541
Damien Lespiaudd740782015-02-28 14:54:08 +00003542 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003543 I915_WRITE(PLANE_SURF(pipe, plane),
3544 I915_READ(PLANE_SURF(pipe, plane)));
3545 }
3546 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3547}
3548
3549static bool
3550skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
3551 const struct skl_ddb_allocation *new,
3552 enum pipe pipe)
3553{
3554 uint16_t old_size, new_size;
3555
3556 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
3557 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
3558
3559 return old_size != new_size &&
3560 new->pipe[pipe].start >= old->pipe[pipe].start &&
3561 new->pipe[pipe].end <= old->pipe[pipe].end;
3562}
3563
3564static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
3565 struct skl_wm_values *new_values)
3566{
3567 struct drm_device *dev = dev_priv->dev;
3568 struct skl_ddb_allocation *cur_ddb, *new_ddb;
Ville Syrjäläc929cb42015-04-02 18:28:07 +03003569 bool reallocated[I915_MAX_PIPES] = {};
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003570 struct intel_crtc *crtc;
3571 enum pipe pipe;
3572
3573 new_ddb = &new_values->ddb;
3574 cur_ddb = &dev_priv->wm.skl_hw.ddb;
3575
3576 /*
3577 * First pass: flush the pipes with the new allocation contained into
3578 * the old space.
3579 *
3580 * We'll wait for the vblank on those pipes to ensure we can safely
3581 * re-allocate the freed space without this pipe fetching from it.
3582 */
3583 for_each_intel_crtc(dev, crtc) {
3584 if (!crtc->active)
3585 continue;
3586
3587 pipe = crtc->pipe;
3588
3589 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
3590 continue;
3591
Damien Lespiaud21b7952014-11-04 17:07:03 +00003592 skl_wm_flush_pipe(dev_priv, pipe, 1);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003593 intel_wait_for_vblank(dev, pipe);
3594
3595 reallocated[pipe] = true;
3596 }
3597
3598
3599 /*
3600 * Second pass: flush the pipes that are having their allocation
3601 * reduced, but overlapping with a previous allocation.
3602 *
3603 * Here as well we need to wait for the vblank to make sure the freed
3604 * space is not used anymore.
3605 */
3606 for_each_intel_crtc(dev, crtc) {
3607 if (!crtc->active)
3608 continue;
3609
3610 pipe = crtc->pipe;
3611
3612 if (reallocated[pipe])
3613 continue;
3614
3615 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3616 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
Damien Lespiaud21b7952014-11-04 17:07:03 +00003617 skl_wm_flush_pipe(dev_priv, pipe, 2);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003618 intel_wait_for_vblank(dev, pipe);
Sonika Jindald9d8e6b2014-12-11 17:58:15 +05303619 reallocated[pipe] = true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003620 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003621 }
3622
3623 /*
3624 * Third pass: flush the pipes that got more space allocated.
3625 *
3626 * We don't need to actively wait for the update here, next vblank
3627 * will just get more DDB space with the correct WM values.
3628 */
3629 for_each_intel_crtc(dev, crtc) {
3630 if (!crtc->active)
3631 continue;
3632
3633 pipe = crtc->pipe;
3634
3635 /*
3636 * At this point, only the pipes more space than before are
3637 * left to re-allocate.
3638 */
3639 if (reallocated[pipe])
3640 continue;
3641
Damien Lespiaud21b7952014-11-04 17:07:03 +00003642 skl_wm_flush_pipe(dev_priv, pipe, 3);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003643 }
3644}
3645
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003646static bool skl_update_pipe_wm(struct drm_crtc *crtc,
3647 struct skl_pipe_wm_parameters *params,
3648 struct intel_wm_config *config,
3649 struct skl_ddb_allocation *ddb, /* out */
3650 struct skl_pipe_wm *pipe_wm /* out */)
3651{
3652 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3653
3654 skl_compute_wm_pipe_parameters(crtc, params);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003655 skl_allocate_pipe_ddb(crtc, config, params, ddb);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003656 skl_compute_pipe_wm(crtc, ddb, params, pipe_wm);
3657
3658 if (!memcmp(&intel_crtc->wm.skl_active, pipe_wm, sizeof(*pipe_wm)))
3659 return false;
3660
3661 intel_crtc->wm.skl_active = *pipe_wm;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003662
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003663 return true;
3664}
3665
3666static void skl_update_other_pipe_wm(struct drm_device *dev,
3667 struct drm_crtc *crtc,
3668 struct intel_wm_config *config,
3669 struct skl_wm_values *r)
3670{
3671 struct intel_crtc *intel_crtc;
3672 struct intel_crtc *this_crtc = to_intel_crtc(crtc);
3673
3674 /*
3675 * If the WM update hasn't changed the allocation for this_crtc (the
3676 * crtc we are currently computing the new WM values for), other
3677 * enabled crtcs will keep the same allocation and we don't need to
3678 * recompute anything for them.
3679 */
3680 if (!skl_ddb_allocation_changed(&r->ddb, this_crtc))
3681 return;
3682
3683 /*
3684 * Otherwise, because of this_crtc being freshly enabled/disabled, the
3685 * other active pipes need new DDB allocation and WM values.
3686 */
3687 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
3688 base.head) {
3689 struct skl_pipe_wm_parameters params = {};
3690 struct skl_pipe_wm pipe_wm = {};
3691 bool wm_changed;
3692
3693 if (this_crtc->pipe == intel_crtc->pipe)
3694 continue;
3695
3696 if (!intel_crtc->active)
3697 continue;
3698
3699 wm_changed = skl_update_pipe_wm(&intel_crtc->base,
3700 &params, config,
3701 &r->ddb, &pipe_wm);
3702
3703 /*
3704 * If we end up re-computing the other pipe WM values, it's
3705 * because it was really needed, so we expect the WM values to
3706 * be different.
3707 */
3708 WARN_ON(!wm_changed);
3709
3710 skl_compute_wm_results(dev, &params, &pipe_wm, r, intel_crtc);
3711 r->dirty[intel_crtc->pipe] = true;
3712 }
3713}
3714
3715static void skl_update_wm(struct drm_crtc *crtc)
3716{
3717 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3718 struct drm_device *dev = crtc->dev;
3719 struct drm_i915_private *dev_priv = dev->dev_private;
3720 struct skl_pipe_wm_parameters params = {};
3721 struct skl_wm_values *results = &dev_priv->wm.skl_results;
3722 struct skl_pipe_wm pipe_wm = {};
3723 struct intel_wm_config config = {};
3724
3725 memset(results, 0, sizeof(*results));
3726
3727 skl_compute_wm_global_parameters(dev, &config);
3728
3729 if (!skl_update_pipe_wm(crtc, &params, &config,
3730 &results->ddb, &pipe_wm))
3731 return;
3732
3733 skl_compute_wm_results(dev, &params, &pipe_wm, results, intel_crtc);
3734 results->dirty[intel_crtc->pipe] = true;
3735
3736 skl_update_other_pipe_wm(dev, crtc, &config, results);
3737 skl_write_wm_values(dev_priv, results);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003738 skl_flush_wm_values(dev_priv, results);
Damien Lespiau53b0deb2014-11-04 17:06:48 +00003739
3740 /* store the new configuration */
3741 dev_priv->wm.skl_hw = *results;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003742}
3743
3744static void
3745skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc,
3746 uint32_t sprite_width, uint32_t sprite_height,
3747 int pixel_size, bool enabled, bool scaled)
3748{
3749 struct intel_plane *intel_plane = to_intel_plane(plane);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003750 struct drm_framebuffer *fb = plane->state->fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003751
3752 intel_plane->wm.enabled = enabled;
3753 intel_plane->wm.scaled = scaled;
3754 intel_plane->wm.horiz_pixels = sprite_width;
3755 intel_plane->wm.vert_pixels = sprite_height;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003756 intel_plane->wm.tiling = DRM_FORMAT_MOD_NONE;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003757
3758 /* For planar: Bpp is for UV plane, y_Bpp is for Y plane */
3759 intel_plane->wm.bytes_per_pixel =
3760 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3761 drm_format_plane_cpp(plane->state->fb->pixel_format, 1) : pixel_size;
3762 intel_plane->wm.y_bytes_per_pixel =
3763 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3764 drm_format_plane_cpp(plane->state->fb->pixel_format, 0) : 0;
3765
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003766 /*
3767 * Framebuffer can be NULL on plane disable, but it does not
3768 * matter for watermarks if we assume no tiling in that case.
3769 */
3770 if (fb)
3771 intel_plane->wm.tiling = fb->modifier[0];
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003772 intel_plane->wm.rotation = plane->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003773
3774 skl_update_wm(crtc);
3775}
3776
Imre Deak820c1982013-12-17 14:46:36 +02003777static void ilk_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003778{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003779 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003780 struct drm_device *dev = crtc->dev;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003781 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003782 struct ilk_wm_maximums max;
3783 struct ilk_pipe_wm_parameters params = {};
3784 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003785 enum intel_ddb_partitioning partitioning;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003786 struct intel_pipe_wm pipe_wm = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003787 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003788 struct intel_wm_config config = {};
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003789
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003790 ilk_compute_wm_parameters(crtc, &params);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003791
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003792 intel_compute_pipe_wm(crtc, &params, &pipe_wm);
3793
3794 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
3795 return;
3796
3797 intel_crtc->wm.active = pipe_wm;
3798
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003799 ilk_compute_wm_config(dev, &config);
3800
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003801 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003802 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03003803
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003804 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03003805 if (INTEL_INFO(dev)->gen >= 7 &&
3806 config.num_pipes_active == 1 && config.sprites_enabled) {
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003807 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003808 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003809
Imre Deak820c1982013-12-17 14:46:36 +02003810 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003811 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003812 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003813 }
3814
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003815 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003816 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003817
Imre Deak820c1982013-12-17 14:46:36 +02003818 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003819
Imre Deak820c1982013-12-17 14:46:36 +02003820 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003821}
3822
Damien Lespiaued57cb82014-07-15 09:21:24 +02003823static void
3824ilk_update_sprite_wm(struct drm_plane *plane,
3825 struct drm_crtc *crtc,
3826 uint32_t sprite_width, uint32_t sprite_height,
3827 int pixel_size, bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03003828{
Ville Syrjälä8553c182013-12-05 15:51:39 +02003829 struct drm_device *dev = plane->dev;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003830 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003831
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003832 intel_plane->wm.enabled = enabled;
3833 intel_plane->wm.scaled = scaled;
3834 intel_plane->wm.horiz_pixels = sprite_width;
Damien Lespiaued57cb82014-07-15 09:21:24 +02003835 intel_plane->wm.vert_pixels = sprite_width;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003836 intel_plane->wm.bytes_per_pixel = pixel_size;
Paulo Zanoni526682e2013-05-24 11:59:18 -03003837
Ville Syrjälä8553c182013-12-05 15:51:39 +02003838 /*
3839 * IVB workaround: must disable low power watermarks for at least
3840 * one frame before enabling scaling. LP watermarks can be re-enabled
3841 * when scaling is disabled.
3842 *
3843 * WaCxSRDisabledForSpriteScaling:ivb
3844 */
3845 if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev))
3846 intel_wait_for_vblank(dev, intel_plane->pipe);
3847
Imre Deak820c1982013-12-17 14:46:36 +02003848 ilk_update_wm(crtc);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003849}
3850
Pradeep Bhat30789992014-11-04 17:06:45 +00003851static void skl_pipe_wm_active_state(uint32_t val,
3852 struct skl_pipe_wm *active,
3853 bool is_transwm,
3854 bool is_cursor,
3855 int i,
3856 int level)
3857{
3858 bool is_enabled = (val & PLANE_WM_EN) != 0;
3859
3860 if (!is_transwm) {
3861 if (!is_cursor) {
3862 active->wm[level].plane_en[i] = is_enabled;
3863 active->wm[level].plane_res_b[i] =
3864 val & PLANE_WM_BLOCKS_MASK;
3865 active->wm[level].plane_res_l[i] =
3866 (val >> PLANE_WM_LINES_SHIFT) &
3867 PLANE_WM_LINES_MASK;
3868 } else {
3869 active->wm[level].cursor_en = is_enabled;
3870 active->wm[level].cursor_res_b =
3871 val & PLANE_WM_BLOCKS_MASK;
3872 active->wm[level].cursor_res_l =
3873 (val >> PLANE_WM_LINES_SHIFT) &
3874 PLANE_WM_LINES_MASK;
3875 }
3876 } else {
3877 if (!is_cursor) {
3878 active->trans_wm.plane_en[i] = is_enabled;
3879 active->trans_wm.plane_res_b[i] =
3880 val & PLANE_WM_BLOCKS_MASK;
3881 active->trans_wm.plane_res_l[i] =
3882 (val >> PLANE_WM_LINES_SHIFT) &
3883 PLANE_WM_LINES_MASK;
3884 } else {
3885 active->trans_wm.cursor_en = is_enabled;
3886 active->trans_wm.cursor_res_b =
3887 val & PLANE_WM_BLOCKS_MASK;
3888 active->trans_wm.cursor_res_l =
3889 (val >> PLANE_WM_LINES_SHIFT) &
3890 PLANE_WM_LINES_MASK;
3891 }
3892 }
3893}
3894
3895static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3896{
3897 struct drm_device *dev = crtc->dev;
3898 struct drm_i915_private *dev_priv = dev->dev_private;
3899 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
3900 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3901 struct skl_pipe_wm *active = &intel_crtc->wm.skl_active;
3902 enum pipe pipe = intel_crtc->pipe;
3903 int level, i, max_level;
3904 uint32_t temp;
3905
3906 max_level = ilk_wm_max_level(dev);
3907
3908 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3909
3910 for (level = 0; level <= max_level; level++) {
3911 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3912 hw->plane[pipe][i][level] =
3913 I915_READ(PLANE_WM(pipe, i, level));
3914 hw->cursor[pipe][level] = I915_READ(CUR_WM(pipe, level));
3915 }
3916
3917 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3918 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
3919 hw->cursor_trans[pipe] = I915_READ(CUR_WM_TRANS(pipe));
3920
Matt Roper3ef00282015-03-09 10:19:24 -07003921 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00003922 return;
3923
3924 hw->dirty[pipe] = true;
3925
3926 active->linetime = hw->wm_linetime[pipe];
3927
3928 for (level = 0; level <= max_level; level++) {
3929 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3930 temp = hw->plane[pipe][i][level];
3931 skl_pipe_wm_active_state(temp, active, false,
3932 false, i, level);
3933 }
3934 temp = hw->cursor[pipe][level];
3935 skl_pipe_wm_active_state(temp, active, false, true, i, level);
3936 }
3937
3938 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3939 temp = hw->plane_trans[pipe][i];
3940 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
3941 }
3942
3943 temp = hw->cursor_trans[pipe];
3944 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
3945}
3946
3947void skl_wm_get_hw_state(struct drm_device *dev)
3948{
Damien Lespiaua269c582014-11-04 17:06:49 +00003949 struct drm_i915_private *dev_priv = dev->dev_private;
3950 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00003951 struct drm_crtc *crtc;
3952
Damien Lespiaua269c582014-11-04 17:06:49 +00003953 skl_ddb_get_hw_state(dev_priv, ddb);
Pradeep Bhat30789992014-11-04 17:06:45 +00003954 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3955 skl_pipe_wm_get_hw_state(crtc);
3956}
3957
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003958static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3959{
3960 struct drm_device *dev = crtc->dev;
3961 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003962 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003963 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3964 struct intel_pipe_wm *active = &intel_crtc->wm.active;
3965 enum pipe pipe = intel_crtc->pipe;
3966 static const unsigned int wm0_pipe_reg[] = {
3967 [PIPE_A] = WM0_PIPEA_ILK,
3968 [PIPE_B] = WM0_PIPEB_ILK,
3969 [PIPE_C] = WM0_PIPEC_IVB,
3970 };
3971
3972 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003973 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02003974 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003975
Matt Roper3ef00282015-03-09 10:19:24 -07003976 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003977
3978 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003979 u32 tmp = hw->wm_pipe[pipe];
3980
3981 /*
3982 * For active pipes LP0 watermark is marked as
3983 * enabled, and LP1+ watermaks as disabled since
3984 * we can't really reverse compute them in case
3985 * multiple pipes are active.
3986 */
3987 active->wm[0].enable = true;
3988 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3989 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3990 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3991 active->linetime = hw->wm_linetime[pipe];
3992 } else {
3993 int level, max_level = ilk_wm_max_level(dev);
3994
3995 /*
3996 * For inactive pipes, all watermark levels
3997 * should be marked as enabled but zeroed,
3998 * which is what we'd compute them to.
3999 */
4000 for (level = 0; level <= max_level; level++)
4001 active->wm[level].enable = true;
4002 }
4003}
4004
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004005#define _FW_WM(value, plane) \
4006 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
4007#define _FW_WM_VLV(value, plane) \
4008 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
4009
4010static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4011 struct vlv_wm_values *wm)
4012{
4013 enum pipe pipe;
4014 uint32_t tmp;
4015
4016 for_each_pipe(dev_priv, pipe) {
4017 tmp = I915_READ(VLV_DDL(pipe));
4018
4019 wm->ddl[pipe].primary =
4020 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4021 wm->ddl[pipe].cursor =
4022 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4023 wm->ddl[pipe].sprite[0] =
4024 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4025 wm->ddl[pipe].sprite[1] =
4026 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4027 }
4028
4029 tmp = I915_READ(DSPFW1);
4030 wm->sr.plane = _FW_WM(tmp, SR);
4031 wm->pipe[PIPE_B].cursor = _FW_WM(tmp, CURSORB);
4032 wm->pipe[PIPE_B].primary = _FW_WM_VLV(tmp, PLANEB);
4033 wm->pipe[PIPE_A].primary = _FW_WM_VLV(tmp, PLANEA);
4034
4035 tmp = I915_READ(DSPFW2);
4036 wm->pipe[PIPE_A].sprite[1] = _FW_WM_VLV(tmp, SPRITEB);
4037 wm->pipe[PIPE_A].cursor = _FW_WM(tmp, CURSORA);
4038 wm->pipe[PIPE_A].sprite[0] = _FW_WM_VLV(tmp, SPRITEA);
4039
4040 tmp = I915_READ(DSPFW3);
4041 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4042
4043 if (IS_CHERRYVIEW(dev_priv)) {
4044 tmp = I915_READ(DSPFW7_CHV);
4045 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
4046 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
4047
4048 tmp = I915_READ(DSPFW8_CHV);
4049 wm->pipe[PIPE_C].sprite[1] = _FW_WM_VLV(tmp, SPRITEF);
4050 wm->pipe[PIPE_C].sprite[0] = _FW_WM_VLV(tmp, SPRITEE);
4051
4052 tmp = I915_READ(DSPFW9_CHV);
4053 wm->pipe[PIPE_C].primary = _FW_WM_VLV(tmp, PLANEC);
4054 wm->pipe[PIPE_C].cursor = _FW_WM(tmp, CURSORC);
4055
4056 tmp = I915_READ(DSPHOWM);
4057 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
4058 wm->pipe[PIPE_C].sprite[1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4059 wm->pipe[PIPE_C].sprite[0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4060 wm->pipe[PIPE_C].primary |= _FW_WM(tmp, PLANEC_HI) << 8;
4061 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4062 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4063 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4064 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4065 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4066 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4067 } else {
4068 tmp = I915_READ(DSPFW7);
4069 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
4070 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
4071
4072 tmp = I915_READ(DSPHOWM);
4073 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
4074 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4075 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4076 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4077 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4078 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4079 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4080 }
4081}
4082
4083#undef _FW_WM
4084#undef _FW_WM_VLV
4085
4086void vlv_wm_get_hw_state(struct drm_device *dev)
4087{
4088 struct drm_i915_private *dev_priv = to_i915(dev);
4089 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4090 struct intel_plane *plane;
4091 enum pipe pipe;
4092 u32 val;
4093
4094 vlv_read_wm_values(dev_priv, wm);
4095
4096 for_each_intel_plane(dev, plane) {
4097 switch (plane->base.type) {
4098 int sprite;
4099 case DRM_PLANE_TYPE_CURSOR:
4100 plane->wm.fifo_size = 63;
4101 break;
4102 case DRM_PLANE_TYPE_PRIMARY:
4103 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, 0);
4104 break;
4105 case DRM_PLANE_TYPE_OVERLAY:
4106 sprite = plane->plane;
4107 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, sprite + 1);
4108 break;
4109 }
4110 }
4111
4112 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4113 wm->level = VLV_WM_LEVEL_PM2;
4114
4115 if (IS_CHERRYVIEW(dev_priv)) {
4116 mutex_lock(&dev_priv->rps.hw_lock);
4117
4118 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4119 if (val & DSP_MAXFIFO_PM5_ENABLE)
4120 wm->level = VLV_WM_LEVEL_PM5;
4121
4122 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4123 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4124 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4125
4126 mutex_unlock(&dev_priv->rps.hw_lock);
4127 }
4128
4129 for_each_pipe(dev_priv, pipe)
4130 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
4131 pipe_name(pipe), wm->pipe[pipe].primary, wm->pipe[pipe].cursor,
4132 wm->pipe[pipe].sprite[0], wm->pipe[pipe].sprite[1]);
4133
4134 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4135 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4136}
4137
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004138void ilk_wm_get_hw_state(struct drm_device *dev)
4139{
4140 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02004141 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004142 struct drm_crtc *crtc;
4143
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004144 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004145 ilk_pipe_wm_get_hw_state(crtc);
4146
4147 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4148 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4149 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4150
4151 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004152 if (INTEL_INFO(dev)->gen >= 7) {
4153 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4154 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4155 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004156
Ville Syrjäläa42a5712014-01-07 16:14:08 +02004157 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004158 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4159 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
4160 else if (IS_IVYBRIDGE(dev))
4161 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4162 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004163
4164 hw->enable_fbc_wm =
4165 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4166}
4167
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004168/**
4169 * intel_update_watermarks - update FIFO watermark values based on current modes
4170 *
4171 * Calculate watermark values for the various WM regs based on current mode
4172 * and plane configuration.
4173 *
4174 * There are several cases to deal with here:
4175 * - normal (i.e. non-self-refresh)
4176 * - self-refresh (SR) mode
4177 * - lines are large relative to FIFO size (buffer can hold up to 2)
4178 * - lines are small relative to FIFO size (buffer can hold more than 2
4179 * lines), so need to account for TLB latency
4180 *
4181 * The normal calculation is:
4182 * watermark = dotclock * bytes per pixel * latency
4183 * where latency is platform & configuration dependent (we assume pessimal
4184 * values here).
4185 *
4186 * The SR calculation is:
4187 * watermark = (trunc(latency/line time)+1) * surface width *
4188 * bytes per pixel
4189 * where
4190 * line time = htotal / dotclock
4191 * surface width = hdisplay for normal plane and 64 for cursor
4192 * and latency is assumed to be high, as above.
4193 *
4194 * The final value programmed to the register should always be rounded up,
4195 * and include an extra 2 entries to account for clock crossings.
4196 *
4197 * We don't use the sprite, so we can ignore that. And on Crestline we have
4198 * to set the non-SR watermarks to 8.
4199 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004200void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004201{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004202 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004203
4204 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004205 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004206}
4207
Ville Syrjäläadf3d352013-08-06 22:24:11 +03004208void intel_update_sprite_watermarks(struct drm_plane *plane,
4209 struct drm_crtc *crtc,
Damien Lespiaued57cb82014-07-15 09:21:24 +02004210 uint32_t sprite_width,
4211 uint32_t sprite_height,
4212 int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03004213 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004214{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03004215 struct drm_i915_private *dev_priv = plane->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004216
4217 if (dev_priv->display.update_sprite_wm)
Damien Lespiaued57cb82014-07-15 09:21:24 +02004218 dev_priv->display.update_sprite_wm(plane, crtc,
4219 sprite_width, sprite_height,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03004220 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004221}
4222
Daniel Vetter92703882012-08-09 16:46:01 +02004223/**
4224 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004225 */
4226DEFINE_SPINLOCK(mchdev_lock);
4227
4228/* Global for IPS driver to get at the current i915 device. Protected by
4229 * mchdev_lock. */
4230static struct drm_i915_private *i915_mch_dev;
4231
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004232bool ironlake_set_drps(struct drm_device *dev, u8 val)
4233{
4234 struct drm_i915_private *dev_priv = dev->dev_private;
4235 u16 rgvswctl;
4236
Daniel Vetter92703882012-08-09 16:46:01 +02004237 assert_spin_locked(&mchdev_lock);
4238
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004239 rgvswctl = I915_READ16(MEMSWCTL);
4240 if (rgvswctl & MEMCTL_CMD_STS) {
4241 DRM_DEBUG("gpu busy, RCS change rejected\n");
4242 return false; /* still busy with another command */
4243 }
4244
4245 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4246 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4247 I915_WRITE16(MEMSWCTL, rgvswctl);
4248 POSTING_READ16(MEMSWCTL);
4249
4250 rgvswctl |= MEMCTL_CMD_STS;
4251 I915_WRITE16(MEMSWCTL, rgvswctl);
4252
4253 return true;
4254}
4255
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004256static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004257{
4258 struct drm_i915_private *dev_priv = dev->dev_private;
4259 u32 rgvmodectl = I915_READ(MEMMODECTL);
4260 u8 fmax, fmin, fstart, vstart;
4261
Daniel Vetter92703882012-08-09 16:46:01 +02004262 spin_lock_irq(&mchdev_lock);
4263
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004264 /* Enable temp reporting */
4265 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4266 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4267
4268 /* 100ms RC evaluation intervals */
4269 I915_WRITE(RCUPEI, 100000);
4270 I915_WRITE(RCDNEI, 100000);
4271
4272 /* Set max/min thresholds to 90ms and 80ms respectively */
4273 I915_WRITE(RCBMAXAVG, 90000);
4274 I915_WRITE(RCBMINAVG, 80000);
4275
4276 I915_WRITE(MEMIHYST, 1);
4277
4278 /* Set up min, max, and cur for interrupt handling */
4279 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4280 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4281 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4282 MEMMODE_FSTART_SHIFT;
4283
4284 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
4285 PXVFREQ_PX_SHIFT;
4286
Daniel Vetter20e4d402012-08-08 23:35:39 +02004287 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4288 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004289
Daniel Vetter20e4d402012-08-08 23:35:39 +02004290 dev_priv->ips.max_delay = fstart;
4291 dev_priv->ips.min_delay = fmin;
4292 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004293
4294 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4295 fmax, fmin, fstart);
4296
4297 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4298
4299 /*
4300 * Interrupts will be enabled in ironlake_irq_postinstall
4301 */
4302
4303 I915_WRITE(VIDSTART, vstart);
4304 POSTING_READ(VIDSTART);
4305
4306 rgvmodectl |= MEMMODE_SWMODE_EN;
4307 I915_WRITE(MEMMODECTL, rgvmodectl);
4308
Daniel Vetter92703882012-08-09 16:46:01 +02004309 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004310 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetter92703882012-08-09 16:46:01 +02004311 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004312
4313 ironlake_set_drps(dev, fstart);
4314
Daniel Vetter20e4d402012-08-08 23:35:39 +02004315 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004316 I915_READ(0x112e0);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004317 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
4318 dev_priv->ips.last_count2 = I915_READ(0x112f4);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004319 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004320
4321 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004322}
4323
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004324static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004325{
4326 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02004327 u16 rgvswctl;
4328
4329 spin_lock_irq(&mchdev_lock);
4330
4331 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004332
4333 /* Ack interrupts, disable EFC interrupt */
4334 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4335 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4336 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4337 I915_WRITE(DEIIR, DE_PCU_EVENT);
4338 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4339
4340 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004341 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetter92703882012-08-09 16:46:01 +02004342 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004343 rgvswctl |= MEMCTL_CMD_STS;
4344 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetter92703882012-08-09 16:46:01 +02004345 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004346
Daniel Vetter92703882012-08-09 16:46:01 +02004347 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004348}
4349
Daniel Vetteracbe9472012-07-26 11:50:05 +02004350/* There's a funny hw issue where the hw returns all 0 when reading from
4351 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4352 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4353 * all limits and the gpu stuck at whatever frequency it is at atm).
4354 */
Akash Goel74ef1172015-03-06 11:07:19 +05304355static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004356{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004357 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004358
Daniel Vetter20b46e52012-07-26 11:16:14 +02004359 /* Only set the down limit when we've reached the lowest level to avoid
4360 * getting more interrupts, otherwise leave this clear. This prevents a
4361 * race in the hw when coming out of rc6: There's a tiny window where
4362 * the hw runs at the minimal clock before selecting the desired
4363 * frequency, if the down threshold expires in that window we will not
4364 * receive a down interrupt. */
Akash Goel74ef1172015-03-06 11:07:19 +05304365 if (IS_GEN9(dev_priv->dev)) {
4366 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4367 if (val <= dev_priv->rps.min_freq_softlimit)
4368 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4369 } else {
4370 limits = dev_priv->rps.max_freq_softlimit << 24;
4371 if (val <= dev_priv->rps.min_freq_softlimit)
4372 limits |= dev_priv->rps.min_freq_softlimit << 16;
4373 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004374
4375 return limits;
4376}
4377
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004378static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4379{
4380 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304381 u32 threshold_up = 0, threshold_down = 0; /* in % */
4382 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004383
4384 new_power = dev_priv->rps.power;
4385 switch (dev_priv->rps.power) {
4386 case LOW_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004387 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004388 new_power = BETWEEN;
4389 break;
4390
4391 case BETWEEN:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004392 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004393 new_power = LOW_POWER;
Ben Widawskyb39fb292014-03-19 18:31:11 -07004394 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004395 new_power = HIGH_POWER;
4396 break;
4397
4398 case HIGH_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004399 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 +01004400 new_power = BETWEEN;
4401 break;
4402 }
4403 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004404 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004405 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004406 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004407 new_power = HIGH_POWER;
4408 if (new_power == dev_priv->rps.power)
4409 return;
4410
4411 /* Note the units here are not exactly 1us, but 1280ns. */
4412 switch (new_power) {
4413 case LOW_POWER:
4414 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304415 ei_up = 16000;
4416 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004417
4418 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304419 ei_down = 32000;
4420 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004421 break;
4422
4423 case BETWEEN:
4424 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304425 ei_up = 13000;
4426 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004427
4428 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304429 ei_down = 32000;
4430 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004431 break;
4432
4433 case HIGH_POWER:
4434 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304435 ei_up = 10000;
4436 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004437
4438 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304439 ei_down = 32000;
4440 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004441 break;
4442 }
4443
Akash Goel8a586432015-03-06 11:07:18 +05304444 I915_WRITE(GEN6_RP_UP_EI,
4445 GT_INTERVAL_FROM_US(dev_priv, ei_up));
4446 I915_WRITE(GEN6_RP_UP_THRESHOLD,
4447 GT_INTERVAL_FROM_US(dev_priv, (ei_up * threshold_up / 100)));
4448
4449 I915_WRITE(GEN6_RP_DOWN_EI,
4450 GT_INTERVAL_FROM_US(dev_priv, ei_down));
4451 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
4452 GT_INTERVAL_FROM_US(dev_priv, (ei_down * threshold_down / 100)));
4453
4454 I915_WRITE(GEN6_RP_CONTROL,
4455 GEN6_RP_MEDIA_TURBO |
4456 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4457 GEN6_RP_MEDIA_IS_GFX |
4458 GEN6_RP_ENABLE |
4459 GEN6_RP_UP_BUSY_AVG |
4460 GEN6_RP_DOWN_IDLE_AVG);
4461
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004462 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004463 dev_priv->rps.up_threshold = threshold_up;
4464 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004465 dev_priv->rps.last_adj = 0;
4466}
4467
Chris Wilson2876ce72014-03-28 08:03:34 +00004468static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4469{
4470 u32 mask = 0;
4471
4472 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004473 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004474 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004475 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004476
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004477 mask &= dev_priv->pm_rps_events;
4478
Imre Deak59d02a12014-12-19 19:33:26 +02004479 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004480}
4481
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004482/* gen6_set_rps is called to update the frequency request, but should also be
4483 * called when the range (min_delay and max_delay) is modified so that we can
4484 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004485static void gen6_set_rps(struct drm_device *dev, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004486{
4487 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004488
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004489 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004490 WARN_ON(val > dev_priv->rps.max_freq);
4491 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004492
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004493 /* min/max delay may still have been modified so be sure to
4494 * write the limits value.
4495 */
4496 if (val != dev_priv->rps.cur_freq) {
4497 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004498
Akash Goel57041952015-03-06 11:07:17 +05304499 if (IS_GEN9(dev))
4500 I915_WRITE(GEN6_RPNSWREQ,
4501 GEN9_FREQUENCY(val));
4502 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004503 I915_WRITE(GEN6_RPNSWREQ,
4504 HSW_FREQUENCY(val));
4505 else
4506 I915_WRITE(GEN6_RPNSWREQ,
4507 GEN6_FREQUENCY(val) |
4508 GEN6_OFFSET(0) |
4509 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004510 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004511
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004512 /* Make sure we continue to get interrupts
4513 * until we hit the minimum or maximum frequencies.
4514 */
Akash Goel74ef1172015-03-06 11:07:19 +05304515 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004516 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004517
Ben Widawskyd5570a72012-09-07 19:43:41 -07004518 POSTING_READ(GEN6_RPNSWREQ);
4519
Ben Widawskyb39fb292014-03-19 18:31:11 -07004520 dev_priv->rps.cur_freq = val;
Daniel Vetterbe2cde92012-08-30 13:26:48 +02004521 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004522}
4523
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004524static void valleyview_set_rps(struct drm_device *dev, u8 val)
4525{
4526 struct drm_i915_private *dev_priv = dev->dev_private;
4527
4528 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004529 WARN_ON(val > dev_priv->rps.max_freq);
4530 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004531
4532 if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1),
4533 "Odd GPU freq value\n"))
4534 val &= ~1;
4535
Chris Wilson8fb55192015-04-07 16:20:28 +01004536 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004537 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004538 if (!IS_CHERRYVIEW(dev_priv))
4539 gen6_set_rps_thresholds(dev_priv, val);
4540 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004541
4542 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4543
4544 dev_priv->rps.cur_freq = val;
4545 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4546}
4547
Deepak Sa7f6e232015-05-09 18:04:44 +05304548/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304549 *
4550 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304551 * 1. Forcewake Media well.
4552 * 2. Request idle freq.
4553 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304554*/
4555static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4556{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004557 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304558
Chris Wilsonaed242f2015-03-18 09:48:21 +00004559 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304560 return;
4561
Deepak Sa7f6e232015-05-09 18:04:44 +05304562 /* Wake up the media well, as that takes a lot less
4563 * power than the Render well. */
4564 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
4565 valleyview_set_rps(dev_priv->dev, val);
4566 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05304567}
4568
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004569void gen6_rps_busy(struct drm_i915_private *dev_priv)
4570{
4571 mutex_lock(&dev_priv->rps.hw_lock);
4572 if (dev_priv->rps.enabled) {
4573 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4574 gen6_rps_reset_ei(dev_priv);
4575 I915_WRITE(GEN6_PMINTRMSK,
4576 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
4577 }
4578 mutex_unlock(&dev_priv->rps.hw_lock);
4579}
4580
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004581void gen6_rps_idle(struct drm_i915_private *dev_priv)
4582{
Damien Lespiau691bb712013-12-12 14:36:36 +00004583 struct drm_device *dev = dev_priv->dev;
4584
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004585 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004586 if (dev_priv->rps.enabled) {
Ville Syrjälä21a11ff2015-01-27 16:36:15 +02004587 if (IS_VALLEYVIEW(dev))
Deepak S76c3552f2014-01-30 23:08:16 +05304588 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004589 else
Chris Wilsonaed242f2015-03-18 09:48:21 +00004590 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004591 dev_priv->rps.last_adj = 0;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004592 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004593 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004594 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004595
Chris Wilson8d3afd72015-05-21 21:01:47 +01004596 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004597 while (!list_empty(&dev_priv->rps.clients))
4598 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004599 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004600}
4601
Chris Wilson1854d5c2015-04-07 16:20:32 +01004602void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01004603 struct intel_rps_client *rps,
4604 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004605{
Chris Wilson8d3afd72015-05-21 21:01:47 +01004606 /* This is intentionally racy! We peek at the state here, then
4607 * validate inside the RPS worker.
4608 */
4609 if (!(dev_priv->mm.busy &&
4610 dev_priv->rps.enabled &&
4611 dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit))
4612 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004613
Chris Wilsone61b9952015-04-27 13:41:24 +01004614 /* Force a RPS boost (and don't count it against the client) if
4615 * the GPU is severely congested.
4616 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004617 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01004618 rps = NULL;
4619
Chris Wilson8d3afd72015-05-21 21:01:47 +01004620 spin_lock(&dev_priv->rps.client_lock);
4621 if (rps == NULL || list_empty(&rps->link)) {
4622 spin_lock_irq(&dev_priv->irq_lock);
4623 if (dev_priv->rps.interrupts_enabled) {
4624 dev_priv->rps.client_boost = true;
4625 queue_work(dev_priv->wq, &dev_priv->rps.work);
4626 }
4627 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004628
Chris Wilson2e1b8732015-04-27 13:41:22 +01004629 if (rps != NULL) {
4630 list_add(&rps->link, &dev_priv->rps.clients);
4631 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01004632 } else
4633 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01004634 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004635 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004636}
4637
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004638void intel_set_rps(struct drm_device *dev, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004639{
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004640 if (IS_VALLEYVIEW(dev))
4641 valleyview_set_rps(dev, val);
4642 else
4643 gen6_set_rps(dev, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004644}
4645
Zhe Wang20e49362014-11-04 17:07:05 +00004646static void gen9_disable_rps(struct drm_device *dev)
4647{
4648 struct drm_i915_private *dev_priv = dev->dev_private;
4649
4650 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004651 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004652}
4653
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004654static void gen6_disable_rps(struct drm_device *dev)
4655{
4656 struct drm_i915_private *dev_priv = dev->dev_private;
4657
4658 I915_WRITE(GEN6_RC_CONTROL, 0);
4659 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004660}
4661
Deepak S38807742014-05-23 21:00:15 +05304662static void cherryview_disable_rps(struct drm_device *dev)
4663{
4664 struct drm_i915_private *dev_priv = dev->dev_private;
4665
4666 I915_WRITE(GEN6_RC_CONTROL, 0);
4667}
4668
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004669static void valleyview_disable_rps(struct drm_device *dev)
4670{
4671 struct drm_i915_private *dev_priv = dev->dev_private;
4672
Deepak S98a2e5f2014-08-18 10:35:27 -07004673 /* we're doing forcewake before Disabling RC6,
4674 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02004675 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07004676
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004677 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004678
Mika Kuoppala59bad942015-01-16 11:34:40 +02004679 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004680}
4681
Ben Widawskydc39fff2013-10-18 12:32:07 -07004682static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
4683{
Imre Deak91ca6892014-04-14 20:24:25 +03004684 if (IS_VALLEYVIEW(dev)) {
4685 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
4686 mode = GEN6_RC_CTL_RC6_ENABLE;
4687 else
4688 mode = 0;
4689 }
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004690 if (HAS_RC6p(dev))
4691 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
4692 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
4693 (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
4694 (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
4695
4696 else
4697 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
4698 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off");
Ben Widawskydc39fff2013-10-18 12:32:07 -07004699}
4700
Imre Deake6069ca2014-04-18 16:01:02 +03004701static int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004702{
Daniel Vettere7d66d82015-06-15 23:23:54 +02004703 /* No RC6 before Ironlake and code is gone for ilk. */
4704 if (INTEL_INFO(dev)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03004705 return 0;
4706
Daniel Vetter456470e2012-08-08 23:35:40 +02004707 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03004708 if (enable_rc6 >= 0) {
4709 int mask;
4710
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004711 if (HAS_RC6p(dev))
Imre Deake6069ca2014-04-18 16:01:02 +03004712 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
4713 INTEL_RC6pp_ENABLE;
4714 else
4715 mask = INTEL_RC6_ENABLE;
4716
4717 if ((enable_rc6 & mask) != enable_rc6)
Daniel Vetter8dfd1f02014-08-04 11:15:56 +02004718 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
4719 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03004720
4721 return enable_rc6 & mask;
4722 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004723
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004724 if (IS_IVYBRIDGE(dev))
Ben Widawskycca84a12014-01-28 20:25:38 -08004725 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004726
4727 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004728}
4729
Imre Deake6069ca2014-04-18 16:01:02 +03004730int intel_enable_rc6(const struct drm_device *dev)
4731{
4732 return i915.enable_rc6;
4733}
4734
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004735static void gen6_init_rps_frequencies(struct drm_device *dev)
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004736{
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004737 struct drm_i915_private *dev_priv = dev->dev_private;
4738 uint32_t rp_state_cap;
4739 u32 ddcc_status = 0;
4740 int ret;
4741
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004742 /* All of these values are in units of 50MHz */
4743 dev_priv->rps.cur_freq = 0;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004744 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Bob Paauwe35040562015-06-25 14:54:07 -07004745 if (IS_BROXTON(dev)) {
4746 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
4747 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
4748 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4749 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
4750 } else {
4751 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
4752 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
4753 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4754 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
4755 }
4756
Akash Goelcee991c2015-03-06 11:07:16 +05304757 if (IS_SKYLAKE(dev)) {
4758 /* Store the frequency values in 16.66 MHZ units, which is
4759 the natural hardware unit for SKL */
4760 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
4761 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
4762 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
4763 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004764 /* hw_max = RP0 until we check for overclocking */
4765 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
4766
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004767 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
4768 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
4769 ret = sandybridge_pcode_read(dev_priv,
4770 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
4771 &ddcc_status);
4772 if (0 == ret)
4773 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08004774 clamp_t(u8,
4775 ((ddcc_status >> 8) & 0xff),
4776 dev_priv->rps.min_freq,
4777 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004778 }
4779
Chris Wilsonaed242f2015-03-18 09:48:21 +00004780 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4781
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004782 /* Preserve min/max settings in case of re-init */
4783 if (dev_priv->rps.max_freq_softlimit == 0)
4784 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4785
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004786 if (dev_priv->rps.min_freq_softlimit == 0) {
4787 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4788 dev_priv->rps.min_freq_softlimit =
Ville Syrjälä813b5e62015-03-25 19:27:16 +02004789 max_t(int, dev_priv->rps.efficient_freq,
4790 intel_freq_opcode(dev_priv, 450));
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004791 else
4792 dev_priv->rps.min_freq_softlimit =
4793 dev_priv->rps.min_freq;
4794 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004795}
4796
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004797/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Zhe Wang20e49362014-11-04 17:07:05 +00004798static void gen9_enable_rps(struct drm_device *dev)
4799{
4800 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004801
4802 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4803
Damien Lespiauba1c5542015-01-16 18:07:26 +00004804 gen6_init_rps_frequencies(dev);
4805
Akash Goel0beb0592015-03-06 11:07:20 +05304806 /* Program defaults and thresholds for RPS*/
4807 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4808 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004809
Akash Goel0beb0592015-03-06 11:07:20 +05304810 /* 1 second timeout*/
4811 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
4812 GT_INTERVAL_FROM_US(dev_priv, 1000000));
4813
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004814 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004815
Akash Goel0beb0592015-03-06 11:07:20 +05304816 /* Leaning on the below call to gen6_set_rps to program/setup the
4817 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
4818 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
4819 dev_priv->rps.power = HIGH_POWER; /* force a reset */
4820 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004821
4822 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4823}
4824
4825static void gen9_enable_rc6(struct drm_device *dev)
4826{
4827 struct drm_i915_private *dev_priv = dev->dev_private;
Zhe Wang20e49362014-11-04 17:07:05 +00004828 struct intel_engine_cs *ring;
4829 uint32_t rc6_mask = 0;
4830 int unused;
4831
4832 /* 1a: Software RC state - RC0 */
4833 I915_WRITE(GEN6_RC_STATE, 0);
4834
4835 /* 1b: Get forcewake during program sequence. Although the driver
4836 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004837 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004838
4839 /* 2a: Disable RC states. */
4840 I915_WRITE(GEN6_RC_CONTROL, 0);
4841
4842 /* 2b: Program RC6 thresholds.*/
4843 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
4844 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4845 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4846 for_each_ring(ring, dev_priv, unused)
4847 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4848 I915_WRITE(GEN6_RC_SLEEP, 0);
4849 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
4850
Zhe Wang38c23522015-01-20 12:23:04 +00004851 /* 2c: Program Coarse Power Gating Policies. */
4852 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
4853 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
4854
Zhe Wang20e49362014-11-04 17:07:05 +00004855 /* 3a: Enable RC6 */
4856 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4857 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
4858 DRM_INFO("RC6 %s\n", (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4859 "on" : "off");
4860 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4861 GEN6_RC_CTL_EI_MODE(1) |
4862 rc6_mask);
4863
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304864 /*
4865 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
4866 * WaDisableRenderPowerGating:skl,bxt - Render PG need to be disabled with RC6.
4867 */
Sagar Kamblea4104c52015-04-10 14:11:29 +05304868 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304869 GEN9_MEDIA_PG_ENABLE : 0);
Sagar Kamblea4104c52015-04-10 14:11:29 +05304870
Zhe Wang38c23522015-01-20 12:23:04 +00004871
Mika Kuoppala59bad942015-01-16 11:34:40 +02004872 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004873
4874}
4875
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004876static void gen8_enable_rps(struct drm_device *dev)
4877{
4878 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004879 struct intel_engine_cs *ring;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004880 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004881 int unused;
4882
4883 /* 1a: Software RC state - RC0 */
4884 I915_WRITE(GEN6_RC_STATE, 0);
4885
4886 /* 1c & 1d: Get forcewake during program sequence. Although the driver
4887 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004888 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004889
4890 /* 2a: Disable RC states. */
4891 I915_WRITE(GEN6_RC_CONTROL, 0);
4892
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004893 /* Initialize rps frequencies */
4894 gen6_init_rps_frequencies(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004895
4896 /* 2b: Program RC6 thresholds.*/
4897 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
4898 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4899 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4900 for_each_ring(ring, dev_priv, unused)
4901 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4902 I915_WRITE(GEN6_RC_SLEEP, 0);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004903 if (IS_BROADWELL(dev))
4904 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
4905 else
4906 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004907
4908 /* 3: Enable RC6 */
4909 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4910 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Ben Widawskyabbf9d22014-01-28 20:25:41 -08004911 intel_print_rc6_info(dev, rc6_mask);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004912 if (IS_BROADWELL(dev))
4913 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4914 GEN7_RC_CTL_TO_MODE |
4915 rc6_mask);
4916 else
4917 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4918 GEN6_RC_CTL_EI_MODE(1) |
4919 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004920
4921 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07004922 I915_WRITE(GEN6_RPNSWREQ,
4923 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
4924 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4925 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02004926 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
4927 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004928
Daniel Vetter7526ed72014-09-29 15:07:19 +02004929 /* Docs recommend 900MHz, and 300 MHz respectively */
4930 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
4931 dev_priv->rps.max_freq_softlimit << 24 |
4932 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004933
Daniel Vetter7526ed72014-09-29 15:07:19 +02004934 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
4935 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
4936 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
4937 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004938
Daniel Vetter7526ed72014-09-29 15:07:19 +02004939 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004940
4941 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02004942 I915_WRITE(GEN6_RP_CONTROL,
4943 GEN6_RP_MEDIA_TURBO |
4944 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4945 GEN6_RP_MEDIA_IS_GFX |
4946 GEN6_RP_ENABLE |
4947 GEN6_RP_UP_BUSY_AVG |
4948 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004949
Daniel Vetter7526ed72014-09-29 15:07:19 +02004950 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004951
Tom O'Rourkec7f31532014-11-19 14:21:54 -08004952 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004953 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004954
Mika Kuoppala59bad942015-01-16 11:34:40 +02004955 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004956}
4957
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004958static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004959{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004960 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004961 struct intel_engine_cs *ring;
Ben Widawskyd060c162014-03-19 18:31:08 -07004962 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004963 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004964 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07004965 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004966
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004967 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004968
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004969 /* Here begins a magic sequence of register writes to enable
4970 * auto-downclocking.
4971 *
4972 * Perhaps there might be some value in exposing these to
4973 * userspace...
4974 */
4975 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004976
4977 /* Clear the DBG now so we don't confuse earlier errors */
4978 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
4979 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
4980 I915_WRITE(GTFIFODBG, gtfifodbg);
4981 }
4982
Mika Kuoppala59bad942015-01-16 11:34:40 +02004983 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004984
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004985 /* Initialize rps frequencies */
4986 gen6_init_rps_frequencies(dev);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004987
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004988 /* disable the counters and set deterministic thresholds */
4989 I915_WRITE(GEN6_RC_CONTROL, 0);
4990
4991 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
4992 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
4993 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
4994 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4995 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4996
Chris Wilsonb4519512012-05-11 14:29:30 +01004997 for_each_ring(ring, dev_priv, i)
4998 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004999
5000 I915_WRITE(GEN6_RC_SLEEP, 0);
5001 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Daniel Vetter29c78f62013-11-16 16:04:26 +01005002 if (IS_IVYBRIDGE(dev))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005003 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5004 else
5005 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005006 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005007 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5008
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005009 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005010 rc6_mode = intel_enable_rc6(dev_priv->dev);
5011 if (rc6_mode & INTEL_RC6_ENABLE)
5012 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5013
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005014 /* We don't use those on Haswell */
5015 if (!IS_HASWELL(dev)) {
5016 if (rc6_mode & INTEL_RC6p_ENABLE)
5017 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005018
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005019 if (rc6_mode & INTEL_RC6pp_ENABLE)
5020 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5021 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005022
Ben Widawskydc39fff2013-10-18 12:32:07 -07005023 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005024
5025 I915_WRITE(GEN6_RC_CONTROL,
5026 rc6_mask |
5027 GEN6_RC_CTL_EI_MODE(1) |
5028 GEN6_RC_CTL_HW_ENABLE);
5029
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005030 /* Power down if completely idle for over 50ms */
5031 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005032 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005033
Ben Widawsky42c05262012-09-26 10:34:00 -07005034 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawskyd060c162014-03-19 18:31:08 -07005035 if (ret)
Ben Widawsky42c05262012-09-26 10:34:00 -07005036 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Ben Widawskyd060c162014-03-19 18:31:08 -07005037
5038 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
5039 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
5040 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskyb39fb292014-03-19 18:31:11 -07005041 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
Ben Widawskyd060c162014-03-19 18:31:08 -07005042 (pcu_mbox & 0xff) * 50);
Ben Widawskyb39fb292014-03-19 18:31:11 -07005043 dev_priv->rps.max_freq = pcu_mbox & 0xff;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005044 }
5045
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005046 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00005047 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005048
Ben Widawsky31643d52012-09-26 10:34:01 -07005049 rc6vids = 0;
5050 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
5051 if (IS_GEN6(dev) && ret) {
5052 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
5053 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
5054 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5055 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5056 rc6vids &= 0xffff00;
5057 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5058 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5059 if (ret)
5060 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5061 }
5062
Mika Kuoppala59bad942015-01-16 11:34:40 +02005063 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005064}
5065
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005066static void __gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005067{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005068 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005069 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005070 unsigned int gpu_freq;
5071 unsigned int max_ia_freq, min_ring_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005072 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005073 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005074
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005075 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005076
Ben Widawskyeda79642013-10-07 17:15:48 -03005077 policy = cpufreq_cpu_get(0);
5078 if (policy) {
5079 max_ia_freq = policy->cpuinfo.max_freq;
5080 cpufreq_cpu_put(policy);
5081 } else {
5082 /*
5083 * Default to measured freq if none found, PCU will ensure we
5084 * don't go over
5085 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005086 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005087 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005088
5089 /* Convert from kHz to MHz */
5090 max_ia_freq /= 1000;
5091
Ben Widawsky153b4b952013-10-22 22:05:09 -07005092 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005093 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5094 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005095
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005096 /*
5097 * For each potential GPU frequency, load a ring frequency we'd like
5098 * to use for memory access. We do this by specifying the IA frequency
5099 * the PCU should use as a reference to determine the ring frequency.
5100 */
Tom O'Rourke6985b352014-11-19 14:21:55 -08005101 for (gpu_freq = dev_priv->rps.max_freq; gpu_freq >= dev_priv->rps.min_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005102 gpu_freq--) {
Tom O'Rourke6985b352014-11-19 14:21:55 -08005103 int diff = dev_priv->rps.max_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005104 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005105
Ben Widawsky46c764d2013-11-02 21:07:49 -07005106 if (INTEL_INFO(dev)->gen >= 8) {
5107 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5108 ring_freq = max(min_ring_freq, gpu_freq);
5109 } else if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005110 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005111 ring_freq = max(min_ring_freq, ring_freq);
5112 /* leave ia_freq as the default, chosen by cpufreq */
5113 } else {
5114 /* On older processors, there is no separate ring
5115 * clock domain, so in order to boost the bandwidth
5116 * of the ring, we need to upclock the CPU (ia_freq).
5117 *
5118 * For GPU frequencies less than 750MHz,
5119 * just use the lowest ring freq.
5120 */
5121 if (gpu_freq < min_freq)
5122 ia_freq = 800;
5123 else
5124 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5125 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5126 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005127
Ben Widawsky42c05262012-09-26 10:34:00 -07005128 sandybridge_pcode_write(dev_priv,
5129 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005130 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5131 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5132 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005133 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005134}
5135
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005136void gen6_update_ring_freq(struct drm_device *dev)
5137{
5138 struct drm_i915_private *dev_priv = dev->dev_private;
5139
5140 if (INTEL_INFO(dev)->gen < 6 || IS_VALLEYVIEW(dev))
5141 return;
5142
5143 mutex_lock(&dev_priv->rps.hw_lock);
5144 __gen6_update_ring_freq(dev);
5145 mutex_unlock(&dev_priv->rps.hw_lock);
5146}
5147
Ville Syrjälä03af2042014-06-28 02:03:53 +03005148static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305149{
Deepak S095acd52015-01-17 11:05:59 +05305150 struct drm_device *dev = dev_priv->dev;
Deepak S2b6b3a02014-05-27 15:59:30 +05305151 u32 val, rp0;
5152
Deepak S095acd52015-01-17 11:05:59 +05305153 if (dev->pdev->revision >= 0x20) {
5154 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305155
Deepak S095acd52015-01-17 11:05:59 +05305156 switch (INTEL_INFO(dev)->eu_total) {
5157 case 8:
5158 /* (2 * 4) config */
5159 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5160 break;
5161 case 12:
5162 /* (2 * 6) config */
5163 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5164 break;
5165 case 16:
5166 /* (2 * 8) config */
5167 default:
5168 /* Setting (2 * 8) Min RP0 for any other combination */
5169 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5170 break;
5171 }
5172 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5173 } else {
5174 /* For pre-production hardware */
5175 val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG);
5176 rp0 = (val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
5177 PUNIT_GPU_STATUS_MAX_FREQ_MASK;
5178 }
Deepak S2b6b3a02014-05-27 15:59:30 +05305179 return rp0;
5180}
5181
5182static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5183{
5184 u32 val, rpe;
5185
5186 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5187 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5188
5189 return rpe;
5190}
5191
Deepak S7707df42014-07-12 18:46:14 +05305192static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5193{
Deepak S095acd52015-01-17 11:05:59 +05305194 struct drm_device *dev = dev_priv->dev;
Deepak S7707df42014-07-12 18:46:14 +05305195 u32 val, rp1;
5196
Deepak S095acd52015-01-17 11:05:59 +05305197 if (dev->pdev->revision >= 0x20) {
5198 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5199 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5200 } else {
5201 /* For pre-production hardware */
5202 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5203 rp1 = ((val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
5204 PUNIT_GPU_STATUS_MAX_FREQ_MASK);
5205 }
Deepak S7707df42014-07-12 18:46:14 +05305206 return rp1;
5207}
5208
Deepak Sf8f2b002014-07-10 13:16:21 +05305209static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5210{
5211 u32 val, rp1;
5212
5213 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5214
5215 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5216
5217 return rp1;
5218}
5219
Ville Syrjälä03af2042014-06-28 02:03:53 +03005220static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005221{
5222 u32 val, rp0;
5223
Jani Nikula64936252013-05-22 15:36:20 +03005224 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005225
5226 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5227 /* Clamp to max */
5228 rp0 = min_t(u32, rp0, 0xea);
5229
5230 return rp0;
5231}
5232
5233static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5234{
5235 u32 val, rpe;
5236
Jani Nikula64936252013-05-22 15:36:20 +03005237 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005238 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005239 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005240 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5241
5242 return rpe;
5243}
5244
Ville Syrjälä03af2042014-06-28 02:03:53 +03005245static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005246{
Jani Nikula64936252013-05-22 15:36:20 +03005247 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005248}
5249
Imre Deakae484342014-03-31 15:10:44 +03005250/* Check that the pctx buffer wasn't move under us. */
5251static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5252{
5253 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5254
5255 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5256 dev_priv->vlv_pctx->stolen->start);
5257}
5258
Deepak S38807742014-05-23 21:00:15 +05305259
5260/* Check that the pcbr address is not empty. */
5261static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5262{
5263 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5264
5265 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5266}
5267
5268static void cherryview_setup_pctx(struct drm_device *dev)
5269{
5270 struct drm_i915_private *dev_priv = dev->dev_private;
5271 unsigned long pctx_paddr, paddr;
5272 struct i915_gtt *gtt = &dev_priv->gtt;
5273 u32 pcbr;
5274 int pctx_size = 32*1024;
5275
5276 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5277
5278 pcbr = I915_READ(VLV_PCBR);
5279 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005280 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305281 paddr = (dev_priv->mm.stolen_base +
5282 (gtt->stolen_size - pctx_size));
5283
5284 pctx_paddr = (paddr & (~4095));
5285 I915_WRITE(VLV_PCBR, pctx_paddr);
5286 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005287
5288 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305289}
5290
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005291static void valleyview_setup_pctx(struct drm_device *dev)
5292{
5293 struct drm_i915_private *dev_priv = dev->dev_private;
5294 struct drm_i915_gem_object *pctx;
5295 unsigned long pctx_paddr;
5296 u32 pcbr;
5297 int pctx_size = 24*1024;
5298
Imre Deak17b0c1f2014-02-11 21:39:06 +02005299 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5300
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005301 pcbr = I915_READ(VLV_PCBR);
5302 if (pcbr) {
5303 /* BIOS set it up already, grab the pre-alloc'd space */
5304 int pcbr_offset;
5305
5306 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
5307 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
5308 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005309 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005310 pctx_size);
5311 goto out;
5312 }
5313
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005314 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5315
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005316 /*
5317 * From the Gunit register HAS:
5318 * The Gfx driver is expected to program this register and ensure
5319 * proper allocation within Gfx stolen memory. For example, this
5320 * register should be programmed such than the PCBR range does not
5321 * overlap with other ranges, such as the frame buffer, protected
5322 * memory, or any other relevant ranges.
5323 */
5324 pctx = i915_gem_object_create_stolen(dev, pctx_size);
5325 if (!pctx) {
5326 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
5327 return;
5328 }
5329
5330 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5331 I915_WRITE(VLV_PCBR, pctx_paddr);
5332
5333out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005334 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005335 dev_priv->vlv_pctx = pctx;
5336}
5337
Imre Deakae484342014-03-31 15:10:44 +03005338static void valleyview_cleanup_pctx(struct drm_device *dev)
5339{
5340 struct drm_i915_private *dev_priv = dev->dev_private;
5341
5342 if (WARN_ON(!dev_priv->vlv_pctx))
5343 return;
5344
5345 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
5346 dev_priv->vlv_pctx = NULL;
5347}
5348
Imre Deak4e805192014-04-14 20:24:41 +03005349static void valleyview_init_gt_powersave(struct drm_device *dev)
5350{
5351 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005352 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005353
5354 valleyview_setup_pctx(dev);
5355
5356 mutex_lock(&dev_priv->rps.hw_lock);
5357
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005358 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5359 switch ((val >> 6) & 3) {
5360 case 0:
5361 case 1:
5362 dev_priv->mem_freq = 800;
5363 break;
5364 case 2:
5365 dev_priv->mem_freq = 1066;
5366 break;
5367 case 3:
5368 dev_priv->mem_freq = 1333;
5369 break;
5370 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005371 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005372
Imre Deak4e805192014-04-14 20:24:41 +03005373 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5374 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5375 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005376 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005377 dev_priv->rps.max_freq);
5378
5379 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5380 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005381 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005382 dev_priv->rps.efficient_freq);
5383
Deepak Sf8f2b002014-07-10 13:16:21 +05305384 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5385 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005386 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305387 dev_priv->rps.rp1_freq);
5388
Imre Deak4e805192014-04-14 20:24:41 +03005389 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5390 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005391 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005392 dev_priv->rps.min_freq);
5393
Chris Wilsonaed242f2015-03-18 09:48:21 +00005394 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5395
Imre Deak4e805192014-04-14 20:24:41 +03005396 /* Preserve min/max settings in case of re-init */
5397 if (dev_priv->rps.max_freq_softlimit == 0)
5398 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5399
5400 if (dev_priv->rps.min_freq_softlimit == 0)
5401 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5402
5403 mutex_unlock(&dev_priv->rps.hw_lock);
5404}
5405
Deepak S38807742014-05-23 21:00:15 +05305406static void cherryview_init_gt_powersave(struct drm_device *dev)
5407{
Deepak S2b6b3a02014-05-27 15:59:30 +05305408 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005409 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305410
Deepak S38807742014-05-23 21:00:15 +05305411 cherryview_setup_pctx(dev);
Deepak S2b6b3a02014-05-27 15:59:30 +05305412
5413 mutex_lock(&dev_priv->rps.hw_lock);
5414
Ville Syrjäläa5805162015-05-26 20:42:30 +03005415 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005416 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005417 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005418
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005419 switch ((val >> 2) & 0x7) {
5420 case 0:
5421 case 1:
5422 dev_priv->rps.cz_freq = 200;
5423 dev_priv->mem_freq = 1600;
5424 break;
5425 case 2:
5426 dev_priv->rps.cz_freq = 267;
5427 dev_priv->mem_freq = 1600;
5428 break;
5429 case 3:
5430 dev_priv->rps.cz_freq = 333;
5431 dev_priv->mem_freq = 2000;
5432 break;
5433 case 4:
5434 dev_priv->rps.cz_freq = 320;
5435 dev_priv->mem_freq = 1600;
5436 break;
5437 case 5:
5438 dev_priv->rps.cz_freq = 400;
5439 dev_priv->mem_freq = 1600;
5440 break;
5441 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005442 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005443
Deepak S2b6b3a02014-05-27 15:59:30 +05305444 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5445 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5446 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005447 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305448 dev_priv->rps.max_freq);
5449
5450 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5451 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005452 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305453 dev_priv->rps.efficient_freq);
5454
Deepak S7707df42014-07-12 18:46:14 +05305455 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5456 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005457 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305458 dev_priv->rps.rp1_freq);
5459
Deepak S5b7c91b2015-05-09 18:15:46 +05305460 /* PUnit validated range is only [RPe, RP0] */
5461 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305462 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005463 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305464 dev_priv->rps.min_freq);
5465
Ville Syrjälä1c147622014-08-18 14:42:43 +03005466 WARN_ONCE((dev_priv->rps.max_freq |
5467 dev_priv->rps.efficient_freq |
5468 dev_priv->rps.rp1_freq |
5469 dev_priv->rps.min_freq) & 1,
5470 "Odd GPU freq values\n");
5471
Chris Wilsonaed242f2015-03-18 09:48:21 +00005472 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5473
Deepak S2b6b3a02014-05-27 15:59:30 +05305474 /* Preserve min/max settings in case of re-init */
5475 if (dev_priv->rps.max_freq_softlimit == 0)
5476 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5477
5478 if (dev_priv->rps.min_freq_softlimit == 0)
5479 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5480
5481 mutex_unlock(&dev_priv->rps.hw_lock);
Deepak S38807742014-05-23 21:00:15 +05305482}
5483
Imre Deak4e805192014-04-14 20:24:41 +03005484static void valleyview_cleanup_gt_powersave(struct drm_device *dev)
5485{
5486 valleyview_cleanup_pctx(dev);
5487}
5488
Deepak S38807742014-05-23 21:00:15 +05305489static void cherryview_enable_rps(struct drm_device *dev)
5490{
5491 struct drm_i915_private *dev_priv = dev->dev_private;
5492 struct intel_engine_cs *ring;
Deepak S2b6b3a02014-05-27 15:59:30 +05305493 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305494 int i;
5495
5496 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5497
5498 gtfifodbg = I915_READ(GTFIFODBG);
5499 if (gtfifodbg) {
5500 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5501 gtfifodbg);
5502 I915_WRITE(GTFIFODBG, gtfifodbg);
5503 }
5504
5505 cherryview_check_pctx(dev_priv);
5506
5507 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5508 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005509 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305510
Ville Syrjälä160614a2015-01-19 13:50:47 +02005511 /* Disable RC states. */
5512 I915_WRITE(GEN6_RC_CONTROL, 0);
5513
Deepak S38807742014-05-23 21:00:15 +05305514 /* 2a: Program RC6 thresholds.*/
5515 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5516 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5517 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5518
5519 for_each_ring(ring, dev_priv, i)
5520 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5521 I915_WRITE(GEN6_RC_SLEEP, 0);
5522
Deepak Sf4f71c72015-03-28 15:23:35 +05305523 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
5524 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05305525
5526 /* allows RC6 residency counter to work */
5527 I915_WRITE(VLV_COUNTER_CONTROL,
5528 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5529 VLV_MEDIA_RC6_COUNT_EN |
5530 VLV_RENDER_RC6_COUNT_EN));
5531
5532 /* For now we assume BIOS is allocating and populating the PCBR */
5533 pcbr = I915_READ(VLV_PCBR);
5534
Deepak S38807742014-05-23 21:00:15 +05305535 /* 3: Enable RC6 */
5536 if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) &&
5537 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005538 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305539
5540 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5541
Deepak S2b6b3a02014-05-27 15:59:30 +05305542 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005543 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305544 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5545 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5546 I915_WRITE(GEN6_RP_UP_EI, 66000);
5547 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5548
5549 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5550
5551 /* 5: Enable RPS */
5552 I915_WRITE(GEN6_RP_CONTROL,
5553 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005554 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305555 GEN6_RP_ENABLE |
5556 GEN6_RP_UP_BUSY_AVG |
5557 GEN6_RP_DOWN_IDLE_AVG);
5558
Deepak S3ef62342015-04-29 08:36:24 +05305559 /* Setting Fixed Bias */
5560 val = VLV_OVERRIDE_EN |
5561 VLV_SOC_TDP_EN |
5562 CHV_BIAS_CPU_50_SOC_50;
5563 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5564
Deepak S2b6b3a02014-05-27 15:59:30 +05305565 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5566
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005567 /* RPS code assumes GPLL is used */
5568 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5569
Ville Syrjäläc8e96272014-11-07 21:33:44 +02005570 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
Deepak S2b6b3a02014-05-27 15:59:30 +05305571 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5572
5573 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
5574 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005575 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305576 dev_priv->rps.cur_freq);
5577
5578 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005579 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305580 dev_priv->rps.efficient_freq);
5581
5582 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
5583
Mika Kuoppala59bad942015-01-16 11:34:40 +02005584 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305585}
5586
Jesse Barnes0a073b82013-04-17 15:54:58 -07005587static void valleyview_enable_rps(struct drm_device *dev)
5588{
5589 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005590 struct intel_engine_cs *ring;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07005591 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005592 int i;
5593
5594 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5595
Imre Deakae484342014-03-31 15:10:44 +03005596 valleyview_check_pctx(dev_priv);
5597
Jesse Barnes0a073b82013-04-17 15:54:58 -07005598 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07005599 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5600 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005601 I915_WRITE(GTFIFODBG, gtfifodbg);
5602 }
5603
Deepak Sc8d9a592013-11-23 14:55:42 +05305604 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005605 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005606
Ville Syrjälä160614a2015-01-19 13:50:47 +02005607 /* Disable RC states. */
5608 I915_WRITE(GEN6_RC_CONTROL, 0);
5609
Ville Syrjäläcad725f2015-01-19 13:50:48 +02005610 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005611 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5612 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5613 I915_WRITE(GEN6_RP_UP_EI, 66000);
5614 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5615
5616 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5617
5618 I915_WRITE(GEN6_RP_CONTROL,
5619 GEN6_RP_MEDIA_TURBO |
5620 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5621 GEN6_RP_MEDIA_IS_GFX |
5622 GEN6_RP_ENABLE |
5623 GEN6_RP_UP_BUSY_AVG |
5624 GEN6_RP_DOWN_IDLE_CONT);
5625
5626 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
5627 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5628 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5629
5630 for_each_ring(ring, dev_priv, i)
5631 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5632
Jesse Barnes2f0aa302013-11-15 09:32:11 -08005633 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005634
5635 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07005636 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04005637 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
5638 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07005639 VLV_MEDIA_RC6_COUNT_EN |
5640 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04005641
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005642 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08005643 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07005644
5645 intel_print_rc6_info(dev, rc6_mode);
5646
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005647 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005648
Deepak S3ef62342015-04-29 08:36:24 +05305649 /* Setting Fixed Bias */
5650 val = VLV_OVERRIDE_EN |
5651 VLV_SOC_TDP_EN |
5652 VLV_BIAS_CPU_125_SOC_875;
5653 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5654
Jani Nikula64936252013-05-22 15:36:20 +03005655 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005656
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005657 /* RPS code assumes GPLL is used */
5658 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5659
Ville Syrjäläc8e96272014-11-07 21:33:44 +02005660 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
Jesse Barnes0a073b82013-04-17 15:54:58 -07005661 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5662
Ben Widawskyb39fb292014-03-19 18:31:11 -07005663 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03005664 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005665 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005666 dev_priv->rps.cur_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005667
Ville Syrjälä73008b92013-06-25 19:21:01 +03005668 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005669 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005670 dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005671
Ben Widawskyb39fb292014-03-19 18:31:11 -07005672 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005673
Mika Kuoppala59bad942015-01-16 11:34:40 +02005674 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005675}
5676
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005677static unsigned long intel_pxfreq(u32 vidfreq)
5678{
5679 unsigned long freq;
5680 int div = (vidfreq & 0x3f0000) >> 16;
5681 int post = (vidfreq & 0x3000) >> 12;
5682 int pre = (vidfreq & 0x7);
5683
5684 if (!pre)
5685 return 0;
5686
5687 freq = ((div * 133333) / ((1<<post) * pre));
5688
5689 return freq;
5690}
5691
Daniel Vettereb48eb02012-04-26 23:28:12 +02005692static const struct cparams {
5693 u16 i;
5694 u16 t;
5695 u16 m;
5696 u16 c;
5697} cparams[] = {
5698 { 1, 1333, 301, 28664 },
5699 { 1, 1066, 294, 24460 },
5700 { 1, 800, 294, 25192 },
5701 { 0, 1333, 276, 27605 },
5702 { 0, 1066, 276, 27605 },
5703 { 0, 800, 231, 23784 },
5704};
5705
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005706static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005707{
5708 u64 total_count, diff, ret;
5709 u32 count1, count2, count3, m = 0, c = 0;
5710 unsigned long now = jiffies_to_msecs(jiffies), diff1;
5711 int i;
5712
Daniel Vetter02d71952012-08-09 16:44:54 +02005713 assert_spin_locked(&mchdev_lock);
5714
Daniel Vetter20e4d402012-08-08 23:35:39 +02005715 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005716
5717 /* Prevent division-by-zero if we are asking too fast.
5718 * Also, we don't get interesting results if we are polling
5719 * faster than once in 10ms, so just return the saved value
5720 * in such cases.
5721 */
5722 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02005723 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005724
5725 count1 = I915_READ(DMIEC);
5726 count2 = I915_READ(DDREC);
5727 count3 = I915_READ(CSIEC);
5728
5729 total_count = count1 + count2 + count3;
5730
5731 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02005732 if (total_count < dev_priv->ips.last_count1) {
5733 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005734 diff += total_count;
5735 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005736 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005737 }
5738
5739 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005740 if (cparams[i].i == dev_priv->ips.c_m &&
5741 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02005742 m = cparams[i].m;
5743 c = cparams[i].c;
5744 break;
5745 }
5746 }
5747
5748 diff = div_u64(diff, diff1);
5749 ret = ((m * diff) + c);
5750 ret = div_u64(ret, 10);
5751
Daniel Vetter20e4d402012-08-08 23:35:39 +02005752 dev_priv->ips.last_count1 = total_count;
5753 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005754
Daniel Vetter20e4d402012-08-08 23:35:39 +02005755 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005756
5757 return ret;
5758}
5759
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005760unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
5761{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005762 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005763 unsigned long val;
5764
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005765 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005766 return 0;
5767
5768 spin_lock_irq(&mchdev_lock);
5769
5770 val = __i915_chipset_val(dev_priv);
5771
5772 spin_unlock_irq(&mchdev_lock);
5773
5774 return val;
5775}
5776
Daniel Vettereb48eb02012-04-26 23:28:12 +02005777unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
5778{
5779 unsigned long m, x, b;
5780 u32 tsfs;
5781
5782 tsfs = I915_READ(TSFS);
5783
5784 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
5785 x = I915_READ8(TR1);
5786
5787 b = tsfs & TSFS_INTR_MASK;
5788
5789 return ((m * x) / 127) - b;
5790}
5791
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005792static int _pxvid_to_vd(u8 pxvid)
5793{
5794 if (pxvid == 0)
5795 return 0;
5796
5797 if (pxvid >= 8 && pxvid < 31)
5798 pxvid = 31;
5799
5800 return (pxvid + 2) * 125;
5801}
5802
5803static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005804{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005805 struct drm_device *dev = dev_priv->dev;
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005806 const int vd = _pxvid_to_vd(pxvid);
5807 const int vm = vd - 1125;
5808
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005809 if (INTEL_INFO(dev)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005810 return vm > 0 ? vm : 0;
5811
5812 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005813}
5814
Daniel Vetter02d71952012-08-09 16:44:54 +02005815static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005816{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005817 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005818 u32 count;
5819
Daniel Vetter02d71952012-08-09 16:44:54 +02005820 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005821
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005822 now = ktime_get_raw_ns();
5823 diffms = now - dev_priv->ips.last_time2;
5824 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005825
5826 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02005827 if (!diffms)
5828 return;
5829
5830 count = I915_READ(GFXEC);
5831
Daniel Vetter20e4d402012-08-08 23:35:39 +02005832 if (count < dev_priv->ips.last_count2) {
5833 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005834 diff += count;
5835 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005836 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005837 }
5838
Daniel Vetter20e4d402012-08-08 23:35:39 +02005839 dev_priv->ips.last_count2 = count;
5840 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005841
5842 /* More magic constants... */
5843 diff = diff * 1181;
5844 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005845 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005846}
5847
Daniel Vetter02d71952012-08-09 16:44:54 +02005848void i915_update_gfx_val(struct drm_i915_private *dev_priv)
5849{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005850 struct drm_device *dev = dev_priv->dev;
5851
5852 if (INTEL_INFO(dev)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02005853 return;
5854
Daniel Vetter92703882012-08-09 16:46:01 +02005855 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005856
5857 __i915_update_gfx_val(dev_priv);
5858
Daniel Vetter92703882012-08-09 16:46:01 +02005859 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005860}
5861
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005862static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005863{
5864 unsigned long t, corr, state1, corr2, state2;
5865 u32 pxvid, ext_v;
5866
Daniel Vetter02d71952012-08-09 16:44:54 +02005867 assert_spin_locked(&mchdev_lock);
5868
Ben Widawskyb39fb292014-03-19 18:31:11 -07005869 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_freq * 4));
Daniel Vettereb48eb02012-04-26 23:28:12 +02005870 pxvid = (pxvid >> 24) & 0x7f;
5871 ext_v = pvid_to_extvid(dev_priv, pxvid);
5872
5873 state1 = ext_v;
5874
5875 t = i915_mch_val(dev_priv);
5876
5877 /* Revel in the empirically derived constants */
5878
5879 /* Correction factor in 1/100000 units */
5880 if (t > 80)
5881 corr = ((t * 2349) + 135940);
5882 else if (t >= 50)
5883 corr = ((t * 964) + 29317);
5884 else /* < 50 */
5885 corr = ((t * 301) + 1004);
5886
5887 corr = corr * ((150142 * state1) / 10000 - 78642);
5888 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02005889 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005890
5891 state2 = (corr2 * state1) / 10000;
5892 state2 /= 100; /* convert to mW */
5893
Daniel Vetter02d71952012-08-09 16:44:54 +02005894 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005895
Daniel Vetter20e4d402012-08-08 23:35:39 +02005896 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005897}
5898
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005899unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
5900{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005901 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005902 unsigned long val;
5903
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005904 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005905 return 0;
5906
5907 spin_lock_irq(&mchdev_lock);
5908
5909 val = __i915_gfx_val(dev_priv);
5910
5911 spin_unlock_irq(&mchdev_lock);
5912
5913 return val;
5914}
5915
Daniel Vettereb48eb02012-04-26 23:28:12 +02005916/**
5917 * i915_read_mch_val - return value for IPS use
5918 *
5919 * Calculate and return a value for the IPS driver to use when deciding whether
5920 * we have thermal and power headroom to increase CPU or GPU power budget.
5921 */
5922unsigned long i915_read_mch_val(void)
5923{
5924 struct drm_i915_private *dev_priv;
5925 unsigned long chipset_val, graphics_val, ret = 0;
5926
Daniel Vetter92703882012-08-09 16:46:01 +02005927 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005928 if (!i915_mch_dev)
5929 goto out_unlock;
5930 dev_priv = i915_mch_dev;
5931
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005932 chipset_val = __i915_chipset_val(dev_priv);
5933 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005934
5935 ret = chipset_val + graphics_val;
5936
5937out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005938 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005939
5940 return ret;
5941}
5942EXPORT_SYMBOL_GPL(i915_read_mch_val);
5943
5944/**
5945 * i915_gpu_raise - raise GPU frequency limit
5946 *
5947 * Raise the limit; IPS indicates we have thermal headroom.
5948 */
5949bool i915_gpu_raise(void)
5950{
5951 struct drm_i915_private *dev_priv;
5952 bool ret = true;
5953
Daniel Vetter92703882012-08-09 16:46:01 +02005954 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005955 if (!i915_mch_dev) {
5956 ret = false;
5957 goto out_unlock;
5958 }
5959 dev_priv = i915_mch_dev;
5960
Daniel Vetter20e4d402012-08-08 23:35:39 +02005961 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
5962 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005963
5964out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005965 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005966
5967 return ret;
5968}
5969EXPORT_SYMBOL_GPL(i915_gpu_raise);
5970
5971/**
5972 * i915_gpu_lower - lower GPU frequency limit
5973 *
5974 * IPS indicates we're close to a thermal limit, so throttle back the GPU
5975 * frequency maximum.
5976 */
5977bool i915_gpu_lower(void)
5978{
5979 struct drm_i915_private *dev_priv;
5980 bool ret = true;
5981
Daniel Vetter92703882012-08-09 16:46:01 +02005982 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005983 if (!i915_mch_dev) {
5984 ret = false;
5985 goto out_unlock;
5986 }
5987 dev_priv = i915_mch_dev;
5988
Daniel Vetter20e4d402012-08-08 23:35:39 +02005989 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
5990 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005991
5992out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005993 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005994
5995 return ret;
5996}
5997EXPORT_SYMBOL_GPL(i915_gpu_lower);
5998
5999/**
6000 * i915_gpu_busy - indicate GPU business to IPS
6001 *
6002 * Tell the IPS driver whether or not the GPU is busy.
6003 */
6004bool i915_gpu_busy(void)
6005{
6006 struct drm_i915_private *dev_priv;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01006007 struct intel_engine_cs *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006008 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01006009 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006010
Daniel Vetter92703882012-08-09 16:46:01 +02006011 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006012 if (!i915_mch_dev)
6013 goto out_unlock;
6014 dev_priv = i915_mch_dev;
6015
Chris Wilsonf047e392012-07-21 12:31:41 +01006016 for_each_ring(ring, dev_priv, i)
6017 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006018
6019out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006020 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006021
6022 return ret;
6023}
6024EXPORT_SYMBOL_GPL(i915_gpu_busy);
6025
6026/**
6027 * i915_gpu_turbo_disable - disable graphics turbo
6028 *
6029 * Disable graphics turbo by resetting the max frequency and setting the
6030 * current frequency to the default.
6031 */
6032bool i915_gpu_turbo_disable(void)
6033{
6034 struct drm_i915_private *dev_priv;
6035 bool ret = true;
6036
Daniel Vetter92703882012-08-09 16:46:01 +02006037 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006038 if (!i915_mch_dev) {
6039 ret = false;
6040 goto out_unlock;
6041 }
6042 dev_priv = i915_mch_dev;
6043
Daniel Vetter20e4d402012-08-08 23:35:39 +02006044 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006045
Daniel Vetter20e4d402012-08-08 23:35:39 +02006046 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006047 ret = false;
6048
6049out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006050 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006051
6052 return ret;
6053}
6054EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6055
6056/**
6057 * Tells the intel_ips driver that the i915 driver is now loaded, if
6058 * IPS got loaded first.
6059 *
6060 * This awkward dance is so that neither module has to depend on the
6061 * other in order for IPS to do the appropriate communication of
6062 * GPU turbo limits to i915.
6063 */
6064static void
6065ips_ping_for_i915_load(void)
6066{
6067 void (*link)(void);
6068
6069 link = symbol_get(ips_link_to_i915_driver);
6070 if (link) {
6071 link();
6072 symbol_put(ips_link_to_i915_driver);
6073 }
6074}
6075
6076void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6077{
Daniel Vetter02d71952012-08-09 16:44:54 +02006078 /* We only register the i915 ips part with intel-ips once everything is
6079 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006080 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006081 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006082 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006083
6084 ips_ping_for_i915_load();
6085}
6086
6087void intel_gpu_ips_teardown(void)
6088{
Daniel Vetter92703882012-08-09 16:46:01 +02006089 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006090 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006091 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006092}
Deepak S76c3552f2014-01-30 23:08:16 +05306093
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006094static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006095{
6096 struct drm_i915_private *dev_priv = dev->dev_private;
6097 u32 lcfuse;
6098 u8 pxw[16];
6099 int i;
6100
6101 /* Disable to program */
6102 I915_WRITE(ECR, 0);
6103 POSTING_READ(ECR);
6104
6105 /* Program energy weights for various events */
6106 I915_WRITE(SDEW, 0x15040d00);
6107 I915_WRITE(CSIEW0, 0x007f0000);
6108 I915_WRITE(CSIEW1, 0x1e220004);
6109 I915_WRITE(CSIEW2, 0x04000004);
6110
6111 for (i = 0; i < 5; i++)
6112 I915_WRITE(PEW + (i * 4), 0);
6113 for (i = 0; i < 3; i++)
6114 I915_WRITE(DEW + (i * 4), 0);
6115
6116 /* Program P-state weights to account for frequency power adjustment */
6117 for (i = 0; i < 16; i++) {
6118 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
6119 unsigned long freq = intel_pxfreq(pxvidfreq);
6120 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6121 PXVFREQ_PX_SHIFT;
6122 unsigned long val;
6123
6124 val = vid * vid;
6125 val *= (freq / 1000);
6126 val *= 255;
6127 val /= (127*127*900);
6128 if (val > 0xff)
6129 DRM_ERROR("bad pxval: %ld\n", val);
6130 pxw[i] = val;
6131 }
6132 /* Render standby states get 0 weight */
6133 pxw[14] = 0;
6134 pxw[15] = 0;
6135
6136 for (i = 0; i < 4; i++) {
6137 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6138 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
6139 I915_WRITE(PXW + (i * 4), val);
6140 }
6141
6142 /* Adjust magic regs to magic values (more experimental results) */
6143 I915_WRITE(OGW0, 0);
6144 I915_WRITE(OGW1, 0);
6145 I915_WRITE(EG0, 0x00007f00);
6146 I915_WRITE(EG1, 0x0000000e);
6147 I915_WRITE(EG2, 0x000e0000);
6148 I915_WRITE(EG3, 0x68000300);
6149 I915_WRITE(EG4, 0x42000000);
6150 I915_WRITE(EG5, 0x00140031);
6151 I915_WRITE(EG6, 0);
6152 I915_WRITE(EG7, 0);
6153
6154 for (i = 0; i < 8; i++)
6155 I915_WRITE(PXWL + (i * 4), 0);
6156
6157 /* Enable PMON + select events */
6158 I915_WRITE(ECR, 0x80000019);
6159
6160 lcfuse = I915_READ(LCFUSE02);
6161
Daniel Vetter20e4d402012-08-08 23:35:39 +02006162 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006163}
6164
Imre Deakae484342014-03-31 15:10:44 +03006165void intel_init_gt_powersave(struct drm_device *dev)
6166{
Imre Deake6069ca2014-04-18 16:01:02 +03006167 i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6);
6168
Deepak S38807742014-05-23 21:00:15 +05306169 if (IS_CHERRYVIEW(dev))
6170 cherryview_init_gt_powersave(dev);
6171 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006172 valleyview_init_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006173}
6174
6175void intel_cleanup_gt_powersave(struct drm_device *dev)
6176{
Deepak S38807742014-05-23 21:00:15 +05306177 if (IS_CHERRYVIEW(dev))
6178 return;
6179 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006180 valleyview_cleanup_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006181}
6182
Imre Deakdbea3ce2014-12-15 18:59:28 +02006183static void gen6_suspend_rps(struct drm_device *dev)
6184{
6185 struct drm_i915_private *dev_priv = dev->dev_private;
6186
6187 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
6188
Akash Goel4c2a8892015-03-06 11:07:24 +05306189 gen6_disable_rps_interrupts(dev);
Imre Deakdbea3ce2014-12-15 18:59:28 +02006190}
6191
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006192/**
6193 * intel_suspend_gt_powersave - suspend PM work and helper threads
6194 * @dev: drm device
6195 *
6196 * We don't want to disable RC6 or other features here, we just want
6197 * to make sure any work we've queued has finished and won't bother
6198 * us while we're suspended.
6199 */
6200void intel_suspend_gt_powersave(struct drm_device *dev)
6201{
6202 struct drm_i915_private *dev_priv = dev->dev_private;
6203
Imre Deakd4d70aa2014-11-19 15:30:04 +02006204 if (INTEL_INFO(dev)->gen < 6)
6205 return;
6206
Imre Deakdbea3ce2014-12-15 18:59:28 +02006207 gen6_suspend_rps(dev);
Deepak Sb47adc12014-06-20 20:03:02 +05306208
6209 /* Force GPU to min freq during suspend */
6210 gen6_rps_idle(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006211}
6212
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006213void intel_disable_gt_powersave(struct drm_device *dev)
6214{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006215 struct drm_i915_private *dev_priv = dev->dev_private;
6216
Daniel Vetter930ebb42012-06-29 23:32:16 +02006217 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006218 ironlake_disable_drps(dev);
Deepak S38807742014-05-23 21:00:15 +05306219 } else if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter10d8d362014-06-12 17:48:52 +02006220 intel_suspend_gt_powersave(dev);
Imre Deake4948372014-05-12 18:35:04 +03006221
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006222 mutex_lock(&dev_priv->rps.hw_lock);
Zhe Wang20e49362014-11-04 17:07:05 +00006223 if (INTEL_INFO(dev)->gen >= 9)
6224 gen9_disable_rps(dev);
6225 else if (IS_CHERRYVIEW(dev))
Deepak S38807742014-05-23 21:00:15 +05306226 cherryview_disable_rps(dev);
6227 else if (IS_VALLEYVIEW(dev))
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006228 valleyview_disable_rps(dev);
6229 else
6230 gen6_disable_rps(dev);
Imre Deake5347702014-11-19 15:30:02 +02006231
Chris Wilsonc0951f02013-10-10 21:58:50 +01006232 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006233 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02006234 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006235}
6236
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006237static void intel_gen6_powersave_work(struct work_struct *work)
6238{
6239 struct drm_i915_private *dev_priv =
6240 container_of(work, struct drm_i915_private,
6241 rps.delayed_resume_work.work);
6242 struct drm_device *dev = dev_priv->dev;
6243
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006244 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006245
Akash Goel4c2a8892015-03-06 11:07:24 +05306246 gen6_reset_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006247
Deepak S38807742014-05-23 21:00:15 +05306248 if (IS_CHERRYVIEW(dev)) {
6249 cherryview_enable_rps(dev);
6250 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -07006251 valleyview_enable_rps(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006252 } else if (INTEL_INFO(dev)->gen >= 9) {
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006253 gen9_enable_rc6(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006254 gen9_enable_rps(dev);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006255 __gen6_update_ring_freq(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006256 } else if (IS_BROADWELL(dev)) {
6257 gen8_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006258 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006259 } else {
6260 gen6_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006261 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006262 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006263
6264 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6265 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6266
6267 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6268 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6269
Chris Wilsonc0951f02013-10-10 21:58:50 +01006270 dev_priv->rps.enabled = true;
Imre Deak3cc134e2014-11-19 15:30:03 +02006271
Akash Goel4c2a8892015-03-06 11:07:24 +05306272 gen6_enable_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006273
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006274 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deakc6df39b2014-04-14 20:24:29 +03006275
6276 intel_runtime_pm_put(dev_priv);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006277}
6278
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006279void intel_enable_gt_powersave(struct drm_device *dev)
6280{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006281 struct drm_i915_private *dev_priv = dev->dev_private;
6282
Yu Zhangf61018b2015-02-10 19:05:52 +08006283 /* Powersaving is controlled by the host when inside a VM */
6284 if (intel_vgpu_active(dev))
6285 return;
6286
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006287 if (IS_IRONLAKE_M(dev)) {
Imre Deakdc1d0132014-04-14 20:24:28 +03006288 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006289 ironlake_enable_drps(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006290 intel_init_emon(dev);
Imre Deakdc1d0132014-04-14 20:24:28 +03006291 mutex_unlock(&dev->struct_mutex);
Deepak S38807742014-05-23 21:00:15 +05306292 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006293 /*
6294 * PCU communication is slow and this doesn't need to be
6295 * done at any specific time, so do this out of our fast path
6296 * to make resume and init faster.
Imre Deakc6df39b2014-04-14 20:24:29 +03006297 *
6298 * We depend on the HW RC6 power context save/restore
6299 * mechanism when entering D3 through runtime PM suspend. So
6300 * disable RPM until RPS/RC6 is properly setup. We can only
6301 * get here via the driver load/system resume/runtime resume
6302 * paths, so the _noresume version is enough (and in case of
6303 * runtime resume it's necessary).
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006304 */
Imre Deakc6df39b2014-04-14 20:24:29 +03006305 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
6306 round_jiffies_up_relative(HZ)))
6307 intel_runtime_pm_get_noresume(dev_priv);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006308 }
6309}
6310
Imre Deakc6df39b2014-04-14 20:24:29 +03006311void intel_reset_gt_powersave(struct drm_device *dev)
6312{
6313 struct drm_i915_private *dev_priv = dev->dev_private;
6314
Imre Deakdbea3ce2014-12-15 18:59:28 +02006315 if (INTEL_INFO(dev)->gen < 6)
6316 return;
6317
6318 gen6_suspend_rps(dev);
Imre Deakc6df39b2014-04-14 20:24:29 +03006319 dev_priv->rps.enabled = false;
Imre Deakc6df39b2014-04-14 20:24:29 +03006320}
6321
Daniel Vetter3107bd42012-10-31 22:52:31 +01006322static void ibx_init_clock_gating(struct drm_device *dev)
6323{
6324 struct drm_i915_private *dev_priv = dev->dev_private;
6325
6326 /*
6327 * On Ibex Peak and Cougar Point, we need to disable clock
6328 * gating for the panel power sequencer or it will fail to
6329 * start up when no ports are active.
6330 */
6331 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6332}
6333
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006334static void g4x_disable_trickle_feed(struct drm_device *dev)
6335{
6336 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006337 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006338
Damien Lespiau055e3932014-08-18 13:49:10 +01006339 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006340 I915_WRITE(DSPCNTR(pipe),
6341 I915_READ(DSPCNTR(pipe)) |
6342 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006343
6344 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6345 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006346 }
6347}
6348
Ville Syrjälä017636c2013-12-05 15:51:37 +02006349static void ilk_init_lp_watermarks(struct drm_device *dev)
6350{
6351 struct drm_i915_private *dev_priv = dev->dev_private;
6352
6353 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6354 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6355 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6356
6357 /*
6358 * Don't touch WM1S_LP_EN here.
6359 * Doing so could cause underruns.
6360 */
6361}
6362
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006363static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006364{
6365 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006366 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006367
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006368 /*
6369 * Required for FBC
6370 * WaFbcDisableDpfcClockGating:ilk
6371 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006372 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6373 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6374 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006375
6376 I915_WRITE(PCH_3DCGDIS0,
6377 MARIUNIT_CLOCK_GATE_DISABLE |
6378 SVSMUNIT_CLOCK_GATE_DISABLE);
6379 I915_WRITE(PCH_3DCGDIS1,
6380 VFMUNIT_CLOCK_GATE_DISABLE);
6381
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006382 /*
6383 * According to the spec the following bits should be set in
6384 * order to enable memory self-refresh
6385 * The bit 22/21 of 0x42004
6386 * The bit 5 of 0x42020
6387 * The bit 15 of 0x45000
6388 */
6389 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6390 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6391 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006392 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006393 I915_WRITE(DISP_ARB_CTL,
6394 (I915_READ(DISP_ARB_CTL) |
6395 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006396
6397 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006398
6399 /*
6400 * Based on the document from hardware guys the following bits
6401 * should be set unconditionally in order to enable FBC.
6402 * The bit 22 of 0x42000
6403 * The bit 22 of 0x42004
6404 * The bit 7,8,9 of 0x42020.
6405 */
6406 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006407 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006408 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6409 I915_READ(ILK_DISPLAY_CHICKEN1) |
6410 ILK_FBCQ_DIS);
6411 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6412 I915_READ(ILK_DISPLAY_CHICKEN2) |
6413 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006414 }
6415
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006416 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6417
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006418 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6419 I915_READ(ILK_DISPLAY_CHICKEN2) |
6420 ILK_ELPIN_409_SELECT);
6421 I915_WRITE(_3D_CHICKEN2,
6422 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6423 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006424
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006425 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006426 I915_WRITE(CACHE_MODE_0,
6427 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006428
Akash Goel4e046322014-04-04 17:14:38 +05306429 /* WaDisable_RenderCache_OperationalFlush:ilk */
6430 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6431
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006432 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006433
Daniel Vetter3107bd42012-10-31 22:52:31 +01006434 ibx_init_clock_gating(dev);
6435}
6436
6437static void cpt_init_clock_gating(struct drm_device *dev)
6438{
6439 struct drm_i915_private *dev_priv = dev->dev_private;
6440 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006441 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006442
6443 /*
6444 * On Ibex Peak and Cougar Point, we need to disable clock
6445 * gating for the panel power sequencer or it will fail to
6446 * start up when no ports are active.
6447 */
Jesse Barnescd664072013-10-02 10:34:19 -07006448 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6449 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6450 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006451 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6452 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006453 /* The below fixes the weird display corruption, a few pixels shifted
6454 * downward, on (only) LVDS of some HP laptops with IVY.
6455 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006456 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006457 val = I915_READ(TRANS_CHICKEN2(pipe));
6458 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6459 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006460 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006461 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006462 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6463 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6464 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006465 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6466 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006467 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006468 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006469 I915_WRITE(TRANS_CHICKEN1(pipe),
6470 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6471 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006472}
6473
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006474static void gen6_check_mch_setup(struct drm_device *dev)
6475{
6476 struct drm_i915_private *dev_priv = dev->dev_private;
6477 uint32_t tmp;
6478
6479 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006480 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6481 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6482 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006483}
6484
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006485static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006486{
6487 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006488 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006489
Damien Lespiau231e54f2012-10-19 17:55:41 +01006490 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006491
6492 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6493 I915_READ(ILK_DISPLAY_CHICKEN2) |
6494 ILK_ELPIN_409_SELECT);
6495
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006496 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006497 I915_WRITE(_3D_CHICKEN,
6498 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6499
Akash Goel4e046322014-04-04 17:14:38 +05306500 /* WaDisable_RenderCache_OperationalFlush:snb */
6501 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6502
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006503 /*
6504 * BSpec recoomends 8x4 when MSAA is used,
6505 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006506 *
6507 * Note that PS/WM thread counts depend on the WIZ hashing
6508 * disable bit, which we don't touch here, but it's good
6509 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006510 */
6511 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006512 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006513
Ville Syrjälä017636c2013-12-05 15:51:37 +02006514 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006515
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006516 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006517 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006518
6519 I915_WRITE(GEN6_UCGCTL1,
6520 I915_READ(GEN6_UCGCTL1) |
6521 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6522 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6523
6524 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6525 * gating disable must be set. Failure to set it results in
6526 * flickering pixels due to Z write ordering failures after
6527 * some amount of runtime in the Mesa "fire" demo, and Unigine
6528 * Sanctuary and Tropics, and apparently anything else with
6529 * alpha test or pixel discard.
6530 *
6531 * According to the spec, bit 11 (RCCUNIT) must also be set,
6532 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006533 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006534 * WaDisableRCCUnitClockGating:snb
6535 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006536 */
6537 I915_WRITE(GEN6_UCGCTL2,
6538 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6539 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6540
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006541 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006542 I915_WRITE(_3D_CHICKEN3,
6543 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006544
6545 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006546 * Bspec says:
6547 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6548 * 3DSTATE_SF number of SF output attributes is more than 16."
6549 */
6550 I915_WRITE(_3D_CHICKEN3,
6551 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6552
6553 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006554 * According to the spec the following bits should be
6555 * set in order to enable memory self-refresh and fbc:
6556 * The bit21 and bit22 of 0x42000
6557 * The bit21 and bit22 of 0x42004
6558 * The bit5 and bit7 of 0x42020
6559 * The bit14 of 0x70180
6560 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006561 *
6562 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006563 */
6564 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6565 I915_READ(ILK_DISPLAY_CHICKEN1) |
6566 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6567 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6568 I915_READ(ILK_DISPLAY_CHICKEN2) |
6569 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006570 I915_WRITE(ILK_DSPCLK_GATE_D,
6571 I915_READ(ILK_DSPCLK_GATE_D) |
6572 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6573 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006574
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006575 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006576
Daniel Vetter3107bd42012-10-31 22:52:31 +01006577 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006578
6579 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006580}
6581
6582static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6583{
6584 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
6585
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006586 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006587 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006588 *
6589 * This actually overrides the dispatch
6590 * mode for all thread types.
6591 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006592 reg &= ~GEN7_FF_SCHED_MASK;
6593 reg |= GEN7_FF_TS_SCHED_HW;
6594 reg |= GEN7_FF_VS_SCHED_HW;
6595 reg |= GEN7_FF_DS_SCHED_HW;
6596
6597 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6598}
6599
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006600static void lpt_init_clock_gating(struct drm_device *dev)
6601{
6602 struct drm_i915_private *dev_priv = dev->dev_private;
6603
6604 /*
6605 * TODO: this bit should only be enabled when really needed, then
6606 * disabled when not needed anymore in order to save power.
6607 */
6608 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
6609 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6610 I915_READ(SOUTH_DSPCLK_GATE_D) |
6611 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006612
6613 /* WADPOClockGatingDisable:hsw */
6614 I915_WRITE(_TRANSA_CHICKEN1,
6615 I915_READ(_TRANSA_CHICKEN1) |
6616 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006617}
6618
Imre Deak7d708ee2013-04-17 14:04:50 +03006619static void lpt_suspend_hw(struct drm_device *dev)
6620{
6621 struct drm_i915_private *dev_priv = dev->dev_private;
6622
6623 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
6624 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
6625
6626 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6627 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6628 }
6629}
6630
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006631static void broadwell_init_clock_gating(struct drm_device *dev)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006632{
6633 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00006634 enum pipe pipe;
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006635 uint32_t misccpctl;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006636
Ville Syrjälä7ad0dba2015-05-19 20:32:55 +03006637 ilk_init_lp_watermarks(dev);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006638
Ben Widawskyab57fff2013-12-12 15:28:04 -08006639 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006640 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006641
Ben Widawskyab57fff2013-12-12 15:28:04 -08006642 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006643 I915_WRITE(CHICKEN_PAR1_1,
6644 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6645
Ben Widawskyab57fff2013-12-12 15:28:04 -08006646 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006647 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006648 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006649 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006650 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006651 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006652
Ben Widawskyab57fff2013-12-12 15:28:04 -08006653 /* WaVSRefCountFullforceMissDisable:bdw */
6654 /* WaDSRefCountFullforceMissDisable:bdw */
6655 I915_WRITE(GEN7_FF_THREAD_MODE,
6656 I915_READ(GEN7_FF_THREAD_MODE) &
6657 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006658
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006659 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6660 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006661
6662 /* WaDisableSDEUnitClockGating:bdw */
6663 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6664 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006665
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006666 /*
6667 * WaProgramL3SqcReg1Default:bdw
6668 * WaTempDisableDOPClkGating:bdw
6669 */
6670 misccpctl = I915_READ(GEN7_MISCCPCTL);
6671 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6672 I915_WRITE(GEN8_L3SQCREG1, BDW_WA_L3SQCREG1_DEFAULT);
6673 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6674
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006675 /*
6676 * WaGttCachingOffByDefault:bdw
6677 * GTT cache may not work with big pages, so if those
6678 * are ever enabled GTT cache may need to be disabled.
6679 */
6680 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
6681
Paulo Zanoni89d6b2b2014-08-21 17:09:36 -03006682 lpt_init_clock_gating(dev);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006683}
6684
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006685static void haswell_init_clock_gating(struct drm_device *dev)
6686{
6687 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006688
Ville Syrjälä017636c2013-12-05 15:51:37 +02006689 ilk_init_lp_watermarks(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006690
Francisco Jerezf3fc4882013-10-02 15:53:16 -07006691 /* L3 caching of data atomics doesn't work -- disable it. */
6692 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6693 I915_WRITE(HSW_ROW_CHICKEN3,
6694 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6695
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006696 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006697 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6698 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6699 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6700
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02006701 /* WaVSRefCountFullforceMissDisable:hsw */
6702 I915_WRITE(GEN7_FF_THREAD_MODE,
6703 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006704
Akash Goel4e046322014-04-04 17:14:38 +05306705 /* WaDisable_RenderCache_OperationalFlush:hsw */
6706 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6707
Chia-I Wufe27c602014-01-28 13:29:33 +08006708 /* enable HiZ Raw Stall Optimization */
6709 I915_WRITE(CACHE_MODE_0_GEN7,
6710 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6711
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006712 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006713 I915_WRITE(CACHE_MODE_1,
6714 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006715
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006716 /*
6717 * BSpec recommends 8x4 when MSAA is used,
6718 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006719 *
6720 * Note that PS/WM thread counts depend on the WIZ hashing
6721 * disable bit, which we don't touch here, but it's good
6722 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006723 */
6724 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006725 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006726
Kenneth Graunke94411592014-12-31 16:23:00 -08006727 /* WaSampleCChickenBitEnable:hsw */
6728 I915_WRITE(HALF_SLICE_CHICKEN3,
6729 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
6730
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006731 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07006732 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
6733
Paulo Zanoni90a88642013-05-03 17:23:45 -03006734 /* WaRsPkgCStateDisplayPMReq:hsw */
6735 I915_WRITE(CHICKEN_PAR1_1,
6736 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006737
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006738 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006739}
6740
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006741static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006742{
6743 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07006744 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006745
Ville Syrjälä017636c2013-12-05 15:51:37 +02006746 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006747
Damien Lespiau231e54f2012-10-19 17:55:41 +01006748 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006749
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006750 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05006751 I915_WRITE(_3D_CHICKEN3,
6752 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6753
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006754 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006755 I915_WRITE(IVB_CHICKEN3,
6756 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6757 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6758
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006759 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07006760 if (IS_IVB_GT1(dev))
6761 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
6762 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006763
Akash Goel4e046322014-04-04 17:14:38 +05306764 /* WaDisable_RenderCache_OperationalFlush:ivb */
6765 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6766
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006767 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006768 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
6769 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
6770
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006771 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006772 I915_WRITE(GEN7_L3CNTLREG1,
6773 GEN7_WA_FOR_GEN7_L3_CONTROL);
6774 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07006775 GEN7_WA_L3_CHICKEN_MODE);
6776 if (IS_IVB_GT1(dev))
6777 I915_WRITE(GEN7_ROW_CHICKEN2,
6778 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006779 else {
6780 /* must write both registers */
6781 I915_WRITE(GEN7_ROW_CHICKEN2,
6782 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07006783 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
6784 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006785 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006786
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006787 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05006788 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6789 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6790
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02006791 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006792 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006793 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006794 */
6795 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02006796 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006797
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006798 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006799 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6800 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6801 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6802
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006803 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006804
6805 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02006806
Chris Wilson22721342014-03-04 09:41:43 +00006807 if (0) { /* causes HiZ corruption on ivb:gt1 */
6808 /* enable HiZ Raw Stall Optimization */
6809 I915_WRITE(CACHE_MODE_0_GEN7,
6810 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6811 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08006812
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006813 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02006814 I915_WRITE(CACHE_MODE_1,
6815 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07006816
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006817 /*
6818 * BSpec recommends 8x4 when MSAA is used,
6819 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006820 *
6821 * Note that PS/WM thread counts depend on the WIZ hashing
6822 * disable bit, which we don't touch here, but it's good
6823 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006824 */
6825 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006826 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006827
Ben Widawsky20848222012-05-04 18:58:59 -07006828 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
6829 snpcr &= ~GEN6_MBC_SNPCR_MASK;
6830 snpcr |= GEN6_MBC_SNPCR_MED;
6831 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006832
Ben Widawskyab5c6082013-04-05 13:12:41 -07006833 if (!HAS_PCH_NOP(dev))
6834 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006835
6836 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006837}
6838
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006839static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv)
6840{
6841 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6842
6843 /*
6844 * Disable trickle feed and enable pnd deadline calculation
6845 */
6846 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
6847 I915_WRITE(CBR1_VLV, 0);
6848}
6849
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006850static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006851{
6852 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006853
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006854 vlv_init_display_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006855
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006856 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05006857 I915_WRITE(_3D_CHICKEN3,
6858 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6859
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006860 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006861 I915_WRITE(IVB_CHICKEN3,
6862 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6863 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6864
Ville Syrjäläfad7d362014-01-22 21:32:39 +02006865 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006866 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07006867 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08006868 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
6869 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006870
Akash Goel4e046322014-04-04 17:14:38 +05306871 /* WaDisable_RenderCache_OperationalFlush:vlv */
6872 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6873
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006874 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05006875 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6876 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6877
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006878 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07006879 I915_WRITE(GEN7_ROW_CHICKEN2,
6880 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
6881
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006882 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006883 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6884 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6885 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6886
Ville Syrjälä46680e02014-01-22 21:33:01 +02006887 gen7_setup_fixed_func_scheduler(dev_priv);
6888
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006889 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006890 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006891 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006892 */
6893 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006894 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006895
Akash Goelc98f5062014-03-24 23:00:07 +05306896 /* WaDisableL3Bank2xClockGate:vlv
6897 * Disabling L3 clock gating- MMIO 940c[25] = 1
6898 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
6899 I915_WRITE(GEN7_UCGCTL4,
6900 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07006901
Ville Syrjäläafd58e72014-01-22 21:33:03 +02006902 /*
6903 * BSpec says this must be set, even though
6904 * WaDisable4x2SubspanOptimization isn't listed for VLV.
6905 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02006906 I915_WRITE(CACHE_MODE_1,
6907 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07006908
6909 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02006910 * BSpec recommends 8x4 when MSAA is used,
6911 * however in practice 16x4 seems fastest.
6912 *
6913 * Note that PS/WM thread counts depend on the WIZ hashing
6914 * disable bit, which we don't touch here, but it's good
6915 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
6916 */
6917 I915_WRITE(GEN7_GT_MODE,
6918 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
6919
6920 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02006921 * WaIncreaseL3CreditsForVLVB0:vlv
6922 * This is the hardware default actually.
6923 */
6924 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
6925
6926 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006927 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07006928 * Disable clock gating on th GCFG unit to prevent a delay
6929 * in the reporting of vblank events.
6930 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02006931 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006932}
6933
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006934static void cherryview_init_clock_gating(struct drm_device *dev)
6935{
6936 struct drm_i915_private *dev_priv = dev->dev_private;
6937
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006938 vlv_init_display_clock_gating(dev_priv);
Ville Syrjälädd811e72014-04-09 13:28:33 +03006939
Ville Syrjälä232ce332014-04-09 13:28:35 +03006940 /* WaVSRefCountFullforceMissDisable:chv */
6941 /* WaDSRefCountFullforceMissDisable:chv */
6942 I915_WRITE(GEN7_FF_THREAD_MODE,
6943 I915_READ(GEN7_FF_THREAD_MODE) &
6944 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03006945
6946 /* WaDisableSemaphoreAndSyncFlipWait:chv */
6947 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6948 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03006949
6950 /* WaDisableCSUnitClockGating:chv */
6951 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
6952 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03006953
6954 /* WaDisableSDEUnitClockGating:chv */
6955 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6956 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006957
6958 /*
6959 * GTT cache may not work with big pages, so if those
6960 * are ever enabled GTT cache may need to be disabled.
6961 */
6962 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006963}
6964
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006965static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006966{
6967 struct drm_i915_private *dev_priv = dev->dev_private;
6968 uint32_t dspclk_gate;
6969
6970 I915_WRITE(RENCLK_GATE_D1, 0);
6971 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6972 GS_UNIT_CLOCK_GATE_DISABLE |
6973 CL_UNIT_CLOCK_GATE_DISABLE);
6974 I915_WRITE(RAMCLK_GATE_D, 0);
6975 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6976 OVRUNIT_CLOCK_GATE_DISABLE |
6977 OVCUNIT_CLOCK_GATE_DISABLE;
6978 if (IS_GM45(dev))
6979 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
6980 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02006981
6982 /* WaDisableRenderCachePipelinedFlush */
6983 I915_WRITE(CACHE_MODE_0,
6984 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03006985
Akash Goel4e046322014-04-04 17:14:38 +05306986 /* WaDisable_RenderCache_OperationalFlush:g4x */
6987 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6988
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006989 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006990}
6991
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006992static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006993{
6994 struct drm_i915_private *dev_priv = dev->dev_private;
6995
6996 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
6997 I915_WRITE(RENCLK_GATE_D2, 0);
6998 I915_WRITE(DSPCLK_GATE_D, 0);
6999 I915_WRITE(RAMCLK_GATE_D, 0);
7000 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007001 I915_WRITE(MI_ARB_STATE,
7002 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307003
7004 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7005 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007006}
7007
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007008static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007009{
7010 struct drm_i915_private *dev_priv = dev->dev_private;
7011
7012 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7013 I965_RCC_CLOCK_GATE_DISABLE |
7014 I965_RCPB_CLOCK_GATE_DISABLE |
7015 I965_ISC_CLOCK_GATE_DISABLE |
7016 I965_FBC_CLOCK_GATE_DISABLE);
7017 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007018 I915_WRITE(MI_ARB_STATE,
7019 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307020
7021 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7022 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007023}
7024
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007025static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007026{
7027 struct drm_i915_private *dev_priv = dev->dev_private;
7028 u32 dstate = I915_READ(D_STATE);
7029
7030 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7031 DSTATE_DOT_CLOCK_GATING;
7032 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007033
7034 if (IS_PINEVIEW(dev))
7035 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007036
7037 /* IIR "flip pending" means done if this bit is set */
7038 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007039
7040 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007041 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007042
7043 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7044 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007045
7046 I915_WRITE(MI_ARB_STATE,
7047 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007048}
7049
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007050static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007051{
7052 struct drm_i915_private *dev_priv = dev->dev_private;
7053
7054 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007055
7056 /* interrupts should cause a wake up from C3 */
7057 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7058 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007059
7060 I915_WRITE(MEM_MODE,
7061 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007062}
7063
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007064static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007065{
7066 struct drm_i915_private *dev_priv = dev->dev_private;
7067
7068 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03007069
7070 I915_WRITE(MEM_MODE,
7071 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7072 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007073}
7074
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007075void intel_init_clock_gating(struct drm_device *dev)
7076{
7077 struct drm_i915_private *dev_priv = dev->dev_private;
7078
Damien Lespiauc57e3552015-02-09 19:33:05 +00007079 if (dev_priv->display.init_clock_gating)
7080 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007081}
7082
Imre Deak7d708ee2013-04-17 14:04:50 +03007083void intel_suspend_hw(struct drm_device *dev)
7084{
7085 if (HAS_PCH_LPT(dev))
7086 lpt_suspend_hw(dev);
7087}
7088
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007089/* Set up chip specific power management-related functions */
7090void intel_init_pm(struct drm_device *dev)
7091{
7092 struct drm_i915_private *dev_priv = dev->dev_private;
7093
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007094 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007095
Daniel Vetterc921aba2012-04-26 23:28:17 +02007096 /* For cxsr */
7097 if (IS_PINEVIEW(dev))
7098 i915_pineview_get_mem_freq(dev);
7099 else if (IS_GEN5(dev))
7100 i915_ironlake_get_mem_freq(dev);
7101
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007102 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00007103 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00007104 skl_setup_wm_latency(dev);
7105
Imre Deaka82abe42015-03-27 14:00:04 +02007106 if (IS_BROXTON(dev))
7107 dev_priv->display.init_clock_gating =
7108 bxt_init_clock_gating;
7109 else if (IS_SKYLAKE(dev))
7110 dev_priv->display.init_clock_gating =
7111 skl_init_clock_gating;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00007112 dev_priv->display.update_wm = skl_update_wm;
7113 dev_priv->display.update_sprite_wm = skl_update_sprite_wm;
Damien Lespiauc83155a2014-03-28 00:18:35 +05307114 } else if (HAS_PCH_SPLIT(dev)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00007115 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007116
Ville Syrjäläbd6025442014-01-07 16:14:10 +02007117 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
7118 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
7119 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
7120 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
7121 dev_priv->display.update_wm = ilk_update_wm;
7122 dev_priv->display.update_sprite_wm = ilk_update_sprite_wm;
7123 } else {
7124 DRM_DEBUG_KMS("Failed to read display plane latency. "
7125 "Disable CxSR\n");
7126 }
7127
7128 if (IS_GEN5(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007129 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
Ville Syrjäläbd6025442014-01-07 16:14:10 +02007130 else if (IS_GEN6(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007131 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Ville Syrjäläbd6025442014-01-07 16:14:10 +02007132 else if (IS_IVYBRIDGE(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007133 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Ville Syrjäläbd6025442014-01-07 16:14:10 +02007134 else if (IS_HASWELL(dev))
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007135 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ville Syrjäläbd6025442014-01-07 16:14:10 +02007136 else if (INTEL_INFO(dev)->gen == 8)
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03007137 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007138 } else if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03007139 vlv_setup_wm_latency(dev);
7140
7141 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007142 dev_priv->display.init_clock_gating =
7143 cherryview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007144 } else if (IS_VALLEYVIEW(dev)) {
7145 dev_priv->display.update_wm = valleyview_update_wm;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05307146 dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007147 dev_priv->display.init_clock_gating =
7148 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007149 } else if (IS_PINEVIEW(dev)) {
7150 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
7151 dev_priv->is_ddr3,
7152 dev_priv->fsb_freq,
7153 dev_priv->mem_freq)) {
7154 DRM_INFO("failed to find known CxSR latency "
7155 "(found ddr%s fsb freq %d, mem freq %d), "
7156 "disabling CxSR\n",
7157 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7158 dev_priv->fsb_freq, dev_priv->mem_freq);
7159 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007160 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007161 dev_priv->display.update_wm = NULL;
7162 } else
7163 dev_priv->display.update_wm = pineview_update_wm;
7164 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7165 } else if (IS_G4X(dev)) {
7166 dev_priv->display.update_wm = g4x_update_wm;
7167 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
7168 } else if (IS_GEN4(dev)) {
7169 dev_priv->display.update_wm = i965_update_wm;
7170 if (IS_CRESTLINE(dev))
7171 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
7172 else if (IS_BROADWATER(dev))
7173 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7174 } else if (IS_GEN3(dev)) {
7175 dev_priv->display.update_wm = i9xx_update_wm;
7176 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
7177 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007178 } else if (IS_GEN2(dev)) {
7179 if (INTEL_INFO(dev)->num_pipes == 1) {
7180 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007181 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007182 } else {
7183 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007184 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007185 }
7186
7187 if (IS_I85X(dev) || IS_I865G(dev))
7188 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7189 else
7190 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7191 } else {
7192 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007193 }
7194}
7195
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007196int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007197{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007198 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007199
7200 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7201 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7202 return -EAGAIN;
7203 }
7204
7205 I915_WRITE(GEN6_PCODE_DATA, *val);
Damien Lespiaudddab342014-11-13 17:51:50 +00007206 I915_WRITE(GEN6_PCODE_DATA1, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007207 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7208
7209 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7210 500)) {
7211 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7212 return -ETIMEDOUT;
7213 }
7214
7215 *val = I915_READ(GEN6_PCODE_DATA);
7216 I915_WRITE(GEN6_PCODE_DATA, 0);
7217
7218 return 0;
7219}
7220
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007221int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007222{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007223 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007224
7225 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7226 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7227 return -EAGAIN;
7228 }
7229
7230 I915_WRITE(GEN6_PCODE_DATA, val);
7231 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7232
7233 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7234 500)) {
7235 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7236 return -ETIMEDOUT;
7237 }
7238
7239 I915_WRITE(GEN6_PCODE_DATA, 0);
7240
7241 return 0;
7242}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007243
Ville Syrjälädd06f882014-11-10 22:55:12 +02007244static int vlv_gpu_freq_div(unsigned int czclk_freq)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007245{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007246 switch (czclk_freq) {
7247 case 200:
7248 return 10;
7249 case 267:
7250 return 12;
7251 case 320:
7252 case 333:
Ville Syrjälädd06f882014-11-10 22:55:12 +02007253 return 16;
Ville Syrjäläab3fb152014-11-10 22:55:15 +02007254 case 400:
7255 return 20;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007256 default:
7257 return -1;
7258 }
Ville Syrjälädd06f882014-11-10 22:55:12 +02007259}
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007260
Ville Syrjälädd06f882014-11-10 22:55:12 +02007261static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7262{
7263 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
7264
7265 div = vlv_gpu_freq_div(czclk_freq);
7266 if (div < 0)
7267 return div;
7268
7269 return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007270}
7271
Fengguang Wub55dd642014-07-12 11:21:39 +02007272static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007273{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007274 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007275
Ville Syrjälädd06f882014-11-10 22:55:12 +02007276 mul = vlv_gpu_freq_div(czclk_freq);
7277 if (mul < 0)
7278 return mul;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007279
Ville Syrjälädd06f882014-11-10 22:55:12 +02007280 return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007281}
7282
Fengguang Wub55dd642014-07-12 11:21:39 +02007283static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307284{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007285 int div, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05307286
Ville Syrjälädd06f882014-11-10 22:55:12 +02007287 div = vlv_gpu_freq_div(czclk_freq) / 2;
7288 if (div < 0)
7289 return div;
Deepak S22b1b2f2014-07-12 14:54:33 +05307290
Ville Syrjälädd06f882014-11-10 22:55:12 +02007291 return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307292}
7293
Fengguang Wub55dd642014-07-12 11:21:39 +02007294static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307295{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007296 int mul, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05307297
Ville Syrjälädd06f882014-11-10 22:55:12 +02007298 mul = vlv_gpu_freq_div(czclk_freq) / 2;
7299 if (mul < 0)
7300 return mul;
Deepak S22b1b2f2014-07-12 14:54:33 +05307301
Ville Syrjälä1c147622014-08-18 14:42:43 +03007302 /* CHV needs even values */
Ville Syrjälädd06f882014-11-10 22:55:12 +02007303 return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307304}
7305
Ville Syrjälä616bc822015-01-23 21:04:25 +02007306int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7307{
Akash Goel80b6dda2015-03-06 11:07:15 +05307308 if (IS_GEN9(dev_priv->dev))
7309 return (val * GT_FREQUENCY_MULTIPLIER) / GEN9_FREQ_SCALER;
7310 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007311 return chv_gpu_freq(dev_priv, val);
7312 else if (IS_VALLEYVIEW(dev_priv->dev))
7313 return byt_gpu_freq(dev_priv, val);
7314 else
7315 return val * GT_FREQUENCY_MULTIPLIER;
7316}
7317
Ville Syrjälä616bc822015-01-23 21:04:25 +02007318int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7319{
Akash Goel80b6dda2015-03-06 11:07:15 +05307320 if (IS_GEN9(dev_priv->dev))
7321 return (val * GEN9_FREQ_SCALER) / GT_FREQUENCY_MULTIPLIER;
7322 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007323 return chv_freq_opcode(dev_priv, val);
Deepak S22b1b2f2014-07-12 14:54:33 +05307324 else if (IS_VALLEYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007325 return byt_freq_opcode(dev_priv, val);
7326 else
7327 return val / GT_FREQUENCY_MULTIPLIER;
Deepak S22b1b2f2014-07-12 14:54:33 +05307328}
7329
Chris Wilson6ad790c2015-04-07 16:20:31 +01007330struct request_boost {
7331 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02007332 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007333};
7334
7335static void __intel_rps_boost_work(struct work_struct *work)
7336{
7337 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01007338 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007339
Chris Wilsone61b9952015-04-27 13:41:24 +01007340 if (!i915_gem_request_completed(req, true))
7341 gen6_rps_boost(to_i915(req->ring->dev), NULL,
7342 req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007343
Chris Wilsone61b9952015-04-27 13:41:24 +01007344 i915_gem_request_unreference__unlocked(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007345 kfree(boost);
7346}
7347
7348void intel_queue_rps_boost_for_request(struct drm_device *dev,
Daniel Vettereed29a52015-05-21 14:21:25 +02007349 struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007350{
7351 struct request_boost *boost;
7352
Daniel Vettereed29a52015-05-21 14:21:25 +02007353 if (req == NULL || INTEL_INFO(dev)->gen < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007354 return;
7355
Chris Wilsone61b9952015-04-27 13:41:24 +01007356 if (i915_gem_request_completed(req, true))
7357 return;
7358
Chris Wilson6ad790c2015-04-07 16:20:31 +01007359 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
7360 if (boost == NULL)
7361 return;
7362
Daniel Vettereed29a52015-05-21 14:21:25 +02007363 i915_gem_request_reference(req);
7364 boost->req = req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007365
7366 INIT_WORK(&boost->work, __intel_rps_boost_work);
7367 queue_work(to_i915(dev)->wq, &boost->work);
7368}
7369
Daniel Vetterf742a552013-12-06 10:17:53 +01007370void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01007371{
7372 struct drm_i915_private *dev_priv = dev->dev_private;
7373
Daniel Vetterf742a552013-12-06 10:17:53 +01007374 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01007375 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01007376
Chris Wilson907b28c2013-07-19 20:36:52 +01007377 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
7378 intel_gen6_powersave_work);
Chris Wilson1854d5c2015-04-07 16:20:32 +01007379 INIT_LIST_HEAD(&dev_priv->rps.clients);
Chris Wilson2e1b8732015-04-27 13:41:22 +01007380 INIT_LIST_HEAD(&dev_priv->rps.semaphores.link);
7381 INIT_LIST_HEAD(&dev_priv->rps.mmioflips.link);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03007382
Paulo Zanoni33688d92014-03-07 20:08:19 -03007383 dev_priv->pm.suspended = false;
Chris Wilson907b28c2013-07-19 20:36:52 +01007384}