blob: 49cca0b16cc665e95ef8d2848363a65de61e6d56 [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
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001174static void vlv_compute_fifo(struct intel_crtc *crtc)
1175{
1176 struct drm_device *dev = crtc->base.dev;
1177 struct vlv_wm_state *wm_state = &crtc->wm_state;
1178 struct intel_plane *plane;
1179 unsigned int total_rate = 0;
1180 const int fifo_size = 512 - 1;
1181 int fifo_extra, fifo_left = fifo_size;
1182
1183 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1184 struct intel_plane_state *state =
1185 to_intel_plane_state(plane->base.state);
1186
1187 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1188 continue;
1189
1190 if (state->visible) {
1191 wm_state->num_active_planes++;
1192 total_rate += drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1193 }
1194 }
1195
1196 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1197 struct intel_plane_state *state =
1198 to_intel_plane_state(plane->base.state);
1199 unsigned int rate;
1200
1201 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1202 plane->wm.fifo_size = 63;
1203 continue;
1204 }
1205
1206 if (!state->visible) {
1207 plane->wm.fifo_size = 0;
1208 continue;
1209 }
1210
1211 rate = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1212 plane->wm.fifo_size = fifo_size * rate / total_rate;
1213 fifo_left -= plane->wm.fifo_size;
1214 }
1215
1216 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1217
1218 /* spread the remainder evenly */
1219 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1220 int plane_extra;
1221
1222 if (fifo_left == 0)
1223 break;
1224
1225 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1226 continue;
1227
1228 /* give it all to the first plane if none are active */
1229 if (plane->wm.fifo_size == 0 &&
1230 wm_state->num_active_planes)
1231 continue;
1232
1233 plane_extra = min(fifo_extra, fifo_left);
1234 plane->wm.fifo_size += plane_extra;
1235 fifo_left -= plane_extra;
1236 }
1237
1238 WARN_ON(fifo_left != 0);
1239}
1240
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001241static void vlv_invert_wms(struct intel_crtc *crtc)
1242{
1243 struct vlv_wm_state *wm_state = &crtc->wm_state;
1244 int level;
1245
1246 for (level = 0; level < wm_state->num_levels; level++) {
1247 struct drm_device *dev = crtc->base.dev;
1248 const int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1249 struct intel_plane *plane;
1250
1251 wm_state->sr[level].plane = sr_fifo_size - wm_state->sr[level].plane;
1252 wm_state->sr[level].cursor = 63 - wm_state->sr[level].cursor;
1253
1254 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1255 switch (plane->base.type) {
1256 int sprite;
1257 case DRM_PLANE_TYPE_CURSOR:
1258 wm_state->wm[level].cursor = plane->wm.fifo_size -
1259 wm_state->wm[level].cursor;
1260 break;
1261 case DRM_PLANE_TYPE_PRIMARY:
1262 wm_state->wm[level].primary = plane->wm.fifo_size -
1263 wm_state->wm[level].primary;
1264 break;
1265 case DRM_PLANE_TYPE_OVERLAY:
1266 sprite = plane->plane;
1267 wm_state->wm[level].sprite[sprite] = plane->wm.fifo_size -
1268 wm_state->wm[level].sprite[sprite];
1269 break;
1270 }
1271 }
1272 }
1273}
1274
1275static void _vlv_compute_wm(struct intel_crtc *crtc)
1276{
1277 struct drm_device *dev = crtc->base.dev;
1278 struct vlv_wm_state *wm_state = &crtc->wm_state;
1279 struct intel_plane *plane;
1280 int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1281 int level;
1282
1283 memset(wm_state, 0, sizeof(*wm_state));
1284
1285 wm_state->cxsr = crtc->pipe != PIPE_C;
1286 if (IS_CHERRYVIEW(dev))
1287 wm_state->num_levels = CHV_WM_NUM_LEVELS;
1288 else
1289 wm_state->num_levels = VLV_WM_NUM_LEVELS;
1290
1291 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001292
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001293 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001294
1295 if (wm_state->num_active_planes != 1)
1296 wm_state->cxsr = false;
1297
1298 if (wm_state->cxsr) {
1299 for (level = 0; level < wm_state->num_levels; level++) {
1300 wm_state->sr[level].plane = sr_fifo_size;
1301 wm_state->sr[level].cursor = 63;
1302 }
1303 }
1304
1305 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1306 struct intel_plane_state *state =
1307 to_intel_plane_state(plane->base.state);
1308
1309 if (!state->visible)
1310 continue;
1311
1312 /* normal watermarks */
1313 for (level = 0; level < wm_state->num_levels; level++) {
1314 int wm = vlv_compute_wm_level(plane, crtc, state, level);
1315 int max_wm = plane->base.type == DRM_PLANE_TYPE_CURSOR ? 63 : 511;
1316
1317 /* hack */
1318 if (WARN_ON(level == 0 && wm > max_wm))
1319 wm = max_wm;
1320
1321 if (wm > plane->wm.fifo_size)
1322 break;
1323
1324 switch (plane->base.type) {
1325 int sprite;
1326 case DRM_PLANE_TYPE_CURSOR:
1327 wm_state->wm[level].cursor = wm;
1328 break;
1329 case DRM_PLANE_TYPE_PRIMARY:
1330 wm_state->wm[level].primary = wm;
1331 break;
1332 case DRM_PLANE_TYPE_OVERLAY:
1333 sprite = plane->plane;
1334 wm_state->wm[level].sprite[sprite] = wm;
1335 break;
1336 }
1337 }
1338
1339 wm_state->num_levels = level;
1340
1341 if (!wm_state->cxsr)
1342 continue;
1343
1344 /* maxfifo watermarks */
1345 switch (plane->base.type) {
1346 int sprite, level;
1347 case DRM_PLANE_TYPE_CURSOR:
1348 for (level = 0; level < wm_state->num_levels; level++)
1349 wm_state->sr[level].cursor =
1350 wm_state->sr[level].cursor;
1351 break;
1352 case DRM_PLANE_TYPE_PRIMARY:
1353 for (level = 0; level < wm_state->num_levels; level++)
1354 wm_state->sr[level].plane =
1355 min(wm_state->sr[level].plane,
1356 wm_state->wm[level].primary);
1357 break;
1358 case DRM_PLANE_TYPE_OVERLAY:
1359 sprite = plane->plane;
1360 for (level = 0; level < wm_state->num_levels; level++)
1361 wm_state->sr[level].plane =
1362 min(wm_state->sr[level].plane,
1363 wm_state->wm[level].sprite[sprite]);
1364 break;
1365 }
1366 }
1367
1368 /* clear any (partially) filled invalid levels */
1369 for (level = wm_state->num_levels; level < CHV_WM_NUM_LEVELS; level++) {
1370 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1371 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1372 }
1373
1374 vlv_invert_wms(crtc);
1375}
1376
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001377#define VLV_FIFO(plane, value) \
1378 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1379
1380static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1381{
1382 struct drm_device *dev = crtc->base.dev;
1383 struct drm_i915_private *dev_priv = to_i915(dev);
1384 struct intel_plane *plane;
1385 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1386
1387 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1388 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1389 WARN_ON(plane->wm.fifo_size != 63);
1390 continue;
1391 }
1392
1393 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
1394 sprite0_start = plane->wm.fifo_size;
1395 else if (plane->plane == 0)
1396 sprite1_start = sprite0_start + plane->wm.fifo_size;
1397 else
1398 fifo_size = sprite1_start + plane->wm.fifo_size;
1399 }
1400
1401 WARN_ON(fifo_size != 512 - 1);
1402
1403 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1404 pipe_name(crtc->pipe), sprite0_start,
1405 sprite1_start, fifo_size);
1406
1407 switch (crtc->pipe) {
1408 uint32_t dsparb, dsparb2, dsparb3;
1409 case PIPE_A:
1410 dsparb = I915_READ(DSPARB);
1411 dsparb2 = I915_READ(DSPARB2);
1412
1413 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1414 VLV_FIFO(SPRITEB, 0xff));
1415 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1416 VLV_FIFO(SPRITEB, sprite1_start));
1417
1418 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1419 VLV_FIFO(SPRITEB_HI, 0x1));
1420 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1421 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1422
1423 I915_WRITE(DSPARB, dsparb);
1424 I915_WRITE(DSPARB2, dsparb2);
1425 break;
1426 case PIPE_B:
1427 dsparb = I915_READ(DSPARB);
1428 dsparb2 = I915_READ(DSPARB2);
1429
1430 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1431 VLV_FIFO(SPRITED, 0xff));
1432 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1433 VLV_FIFO(SPRITED, sprite1_start));
1434
1435 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1436 VLV_FIFO(SPRITED_HI, 0xff));
1437 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1438 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1439
1440 I915_WRITE(DSPARB, dsparb);
1441 I915_WRITE(DSPARB2, dsparb2);
1442 break;
1443 case PIPE_C:
1444 dsparb3 = I915_READ(DSPARB3);
1445 dsparb2 = I915_READ(DSPARB2);
1446
1447 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1448 VLV_FIFO(SPRITEF, 0xff));
1449 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1450 VLV_FIFO(SPRITEF, sprite1_start));
1451
1452 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1453 VLV_FIFO(SPRITEF_HI, 0xff));
1454 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1455 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1456
1457 I915_WRITE(DSPARB3, dsparb3);
1458 I915_WRITE(DSPARB2, dsparb2);
1459 break;
1460 default:
1461 break;
1462 }
1463}
1464
1465#undef VLV_FIFO
1466
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001467static void vlv_merge_wm(struct drm_device *dev,
1468 struct vlv_wm_values *wm)
1469{
1470 struct intel_crtc *crtc;
1471 int num_active_crtcs = 0;
1472
1473 if (IS_CHERRYVIEW(dev))
1474 wm->level = VLV_WM_LEVEL_DDR_DVFS;
1475 else
1476 wm->level = VLV_WM_LEVEL_PM2;
1477 wm->cxsr = true;
1478
1479 for_each_intel_crtc(dev, crtc) {
1480 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1481
1482 if (!crtc->active)
1483 continue;
1484
1485 if (!wm_state->cxsr)
1486 wm->cxsr = false;
1487
1488 num_active_crtcs++;
1489 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1490 }
1491
1492 if (num_active_crtcs != 1)
1493 wm->cxsr = false;
1494
1495 for_each_intel_crtc(dev, crtc) {
1496 struct vlv_wm_state *wm_state = &crtc->wm_state;
1497 enum pipe pipe = crtc->pipe;
1498
1499 if (!crtc->active)
1500 continue;
1501
1502 wm->pipe[pipe] = wm_state->wm[wm->level];
1503 if (wm->cxsr)
1504 wm->sr = wm_state->sr[wm->level];
1505
1506 wm->ddl[pipe].primary = DDL_PRECISION_HIGH | 2;
1507 wm->ddl[pipe].sprite[0] = DDL_PRECISION_HIGH | 2;
1508 wm->ddl[pipe].sprite[1] = DDL_PRECISION_HIGH | 2;
1509 wm->ddl[pipe].cursor = DDL_PRECISION_HIGH | 2;
1510 }
1511}
1512
1513static void vlv_update_wm(struct drm_crtc *crtc)
1514{
1515 struct drm_device *dev = crtc->dev;
1516 struct drm_i915_private *dev_priv = dev->dev_private;
1517 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1518 enum pipe pipe = intel_crtc->pipe;
1519 struct vlv_wm_values wm = {};
1520
1521 _vlv_compute_wm(intel_crtc);
1522 vlv_merge_wm(dev, &wm);
1523
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001524 if (memcmp(&dev_priv->wm.vlv, &wm, sizeof(wm)) == 0) {
1525 /* FIXME should be part of crtc atomic commit */
1526 vlv_pipe_set_fifo_size(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001527 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001528 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001529
1530 if (wm.level < VLV_WM_LEVEL_DDR_DVFS &&
1531 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_DDR_DVFS)
1532 chv_set_memory_dvfs(dev_priv, false);
1533
1534 if (wm.level < VLV_WM_LEVEL_PM5 &&
1535 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_PM5)
1536 chv_set_memory_pm5(dev_priv, false);
1537
1538 if (!wm.cxsr && dev_priv->wm.vlv.cxsr) {
1539 intel_set_memory_cxsr(dev_priv, false);
1540 intel_wait_for_vblank(dev, pipe);
1541 }
1542
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001543 /* FIXME should be part of crtc atomic commit */
1544 vlv_pipe_set_fifo_size(intel_crtc);
1545
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001546 vlv_write_wm_values(intel_crtc, &wm);
1547
1548 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1549 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
1550 pipe_name(pipe), wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1551 wm.pipe[pipe].sprite[0], wm.pipe[pipe].sprite[1],
1552 wm.sr.plane, wm.sr.cursor, wm.level, wm.cxsr);
1553
1554 if (wm.cxsr && !dev_priv->wm.vlv.cxsr) {
1555 intel_wait_for_vblank(dev, pipe);
1556 intel_set_memory_cxsr(dev_priv, true);
1557 }
1558
1559 if (wm.level >= VLV_WM_LEVEL_PM5 &&
1560 dev_priv->wm.vlv.level < VLV_WM_LEVEL_PM5)
1561 chv_set_memory_pm5(dev_priv, true);
1562
1563 if (wm.level >= VLV_WM_LEVEL_DDR_DVFS &&
1564 dev_priv->wm.vlv.level < VLV_WM_LEVEL_DDR_DVFS)
1565 chv_set_memory_dvfs(dev_priv, true);
1566
1567 dev_priv->wm.vlv = wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001568}
1569
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301570static void valleyview_update_sprite_wm(struct drm_plane *plane,
1571 struct drm_crtc *crtc,
1572 uint32_t sprite_width,
1573 uint32_t sprite_height,
1574 int pixel_size,
1575 bool enabled, bool scaled)
1576{
1577 struct drm_device *dev = crtc->dev;
1578 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001579 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1580 enum pipe pipe = intel_crtc->pipe;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301581 int sprite = to_intel_plane(plane)->plane;
Ville Syrjäläae801522015-03-05 21:19:49 +02001582 bool cxsr_enabled;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001583 struct vlv_wm_values wm = dev_priv->wm.vlv;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301584
Ville Syrjäläae801522015-03-05 21:19:49 +02001585 if (enabled) {
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001586 wm.ddl[pipe].sprite[sprite] =
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001587 vlv_compute_drain_latency(crtc, plane);
Ville Syrjäläae801522015-03-05 21:19:49 +02001588
1589 wm.pipe[pipe].sprite[sprite] =
1590 vlv_compute_wm(intel_crtc,
1591 to_intel_plane(plane),
1592 vlv_get_fifo_size(dev, pipe, sprite+1));
1593 } else {
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001594 wm.ddl[pipe].sprite[sprite] = 0;
Ville Syrjäläae801522015-03-05 21:19:49 +02001595 wm.pipe[pipe].sprite[sprite] = 0;
1596 }
1597
1598 cxsr_enabled = vlv_compute_sr_wm(dev, &wm);
1599
1600 if (memcmp(&wm, &dev_priv->wm.vlv, sizeof(wm)) == 0)
1601 return;
1602
1603 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: sprite %c=%d, "
1604 "SR: plane=%d, cursor=%d\n", pipe_name(pipe),
1605 sprite_name(pipe, sprite),
1606 wm.pipe[pipe].sprite[sprite],
1607 wm.sr.plane, wm.sr.cursor);
1608
1609 if (!cxsr_enabled)
1610 intel_set_memory_cxsr(dev_priv, false);
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301611
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001612 vlv_write_wm_values(intel_crtc, &wm);
Ville Syrjäläae801522015-03-05 21:19:49 +02001613
1614 if (cxsr_enabled)
1615 intel_set_memory_cxsr(dev_priv, true);
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301616}
1617
Ville Syrjäläae801522015-03-05 21:19:49 +02001618#define single_plane_enabled(mask) is_power_of_2(mask)
1619
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001620static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001621{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001622 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001623 static const int sr_latency_ns = 12000;
1624 struct drm_i915_private *dev_priv = dev->dev_private;
1625 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1626 int plane_sr, cursor_sr;
1627 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001628 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001629
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001630 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001631 &g4x_wm_info, pessimal_latency_ns,
1632 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001633 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001634 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001635
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001636 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001637 &g4x_wm_info, pessimal_latency_ns,
1638 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001639 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001640 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001641
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001642 if (single_plane_enabled(enabled) &&
1643 g4x_compute_srwm(dev, ffs(enabled) - 1,
1644 sr_latency_ns,
1645 &g4x_wm_info,
1646 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001647 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001648 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001649 } else {
Imre Deak98584252014-06-13 14:54:20 +03001650 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001651 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001652 plane_sr = cursor_sr = 0;
1653 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001654
Ville Syrjäläa5043452014-06-28 02:04:18 +03001655 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1656 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001657 planea_wm, cursora_wm,
1658 planeb_wm, cursorb_wm,
1659 plane_sr, cursor_sr);
1660
1661 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001662 FW_WM(plane_sr, SR) |
1663 FW_WM(cursorb_wm, CURSORB) |
1664 FW_WM(planeb_wm, PLANEB) |
1665 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001666 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001667 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001668 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001669 /* HPLL off in SR has some issues on G4x... disable it */
1670 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001671 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001672 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001673
1674 if (cxsr_enabled)
1675 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001676}
1677
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001678static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001679{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001680 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001681 struct drm_i915_private *dev_priv = dev->dev_private;
1682 struct drm_crtc *crtc;
1683 int srwm = 1;
1684 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001685 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001686
1687 /* Calc sr entries for one plane configs */
1688 crtc = single_enabled_crtc(dev);
1689 if (crtc) {
1690 /* self-refresh has much higher latency */
1691 static const int sr_latency_ns = 12000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001692 const struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001693 &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001694 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001695 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001696 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001697 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001698 unsigned long line_time_us;
1699 int entries;
1700
Ville Syrjälä922044c2014-02-14 14:18:57 +02001701 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001702
1703 /* Use ns/us then divide to preserve precision */
1704 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1705 pixel_size * hdisplay;
1706 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1707 srwm = I965_FIFO_SIZE - entries;
1708 if (srwm < 0)
1709 srwm = 1;
1710 srwm &= 0x1ff;
1711 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1712 entries, srwm);
1713
1714 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Matt Roper3dd512f2015-02-27 10:12:00 -08001715 pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001716 entries = DIV_ROUND_UP(entries,
1717 i965_cursor_wm_info.cacheline_size);
1718 cursor_sr = i965_cursor_wm_info.fifo_size -
1719 (entries + i965_cursor_wm_info.guard_size);
1720
1721 if (cursor_sr > i965_cursor_wm_info.max_wm)
1722 cursor_sr = i965_cursor_wm_info.max_wm;
1723
1724 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1725 "cursor %d\n", srwm, cursor_sr);
1726
Imre Deak98584252014-06-13 14:54:20 +03001727 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001728 } else {
Imre Deak98584252014-06-13 14:54:20 +03001729 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001730 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001731 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001732 }
1733
1734 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1735 srwm);
1736
1737 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001738 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1739 FW_WM(8, CURSORB) |
1740 FW_WM(8, PLANEB) |
1741 FW_WM(8, PLANEA));
1742 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1743 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001744 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001745 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001746
1747 if (cxsr_enabled)
1748 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001749}
1750
Ville Syrjäläf4998962015-03-10 17:02:21 +02001751#undef FW_WM
1752
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001753static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001754{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001755 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001756 struct drm_i915_private *dev_priv = dev->dev_private;
1757 const struct intel_watermark_params *wm_info;
1758 uint32_t fwater_lo;
1759 uint32_t fwater_hi;
1760 int cwm, srwm = 1;
1761 int fifo_size;
1762 int planea_wm, planeb_wm;
1763 struct drm_crtc *crtc, *enabled = NULL;
1764
1765 if (IS_I945GM(dev))
1766 wm_info = &i945_wm_info;
1767 else if (!IS_GEN2(dev))
1768 wm_info = &i915_wm_info;
1769 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001770 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001771
1772 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1773 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001774 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001775 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001776 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001777 if (IS_GEN2(dev))
1778 cpp = 4;
1779
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001780 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001781 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001782 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001783 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001784 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001785 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001786 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001787 if (planea_wm > (long)wm_info->max_wm)
1788 planea_wm = wm_info->max_wm;
1789 }
1790
1791 if (IS_GEN2(dev))
1792 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001793
1794 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1795 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001796 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001797 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001798 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001799 if (IS_GEN2(dev))
1800 cpp = 4;
1801
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001802 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001803 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001804 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001805 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001806 if (enabled == NULL)
1807 enabled = crtc;
1808 else
1809 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001810 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001811 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001812 if (planeb_wm > (long)wm_info->max_wm)
1813 planeb_wm = wm_info->max_wm;
1814 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001815
1816 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1817
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001818 if (IS_I915GM(dev) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001819 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001820
Matt Roper59bea882015-02-27 10:12:01 -08001821 obj = intel_fb_obj(enabled->primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001822
1823 /* self-refresh seems busted with untiled */
Matt Roper2ff8fde2014-07-08 07:50:07 -07001824 if (obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001825 enabled = NULL;
1826 }
1827
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001828 /*
1829 * Overlay gets an aggressive default since video jitter is bad.
1830 */
1831 cwm = 2;
1832
1833 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001834 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001835
1836 /* Calc sr entries for one plane configs */
1837 if (HAS_FW_BLC(dev) && enabled) {
1838 /* self-refresh has much higher latency */
1839 static const int sr_latency_ns = 6000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001840 const struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001841 &to_intel_crtc(enabled)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001842 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001843 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001844 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001845 int pixel_size = enabled->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001846 unsigned long line_time_us;
1847 int entries;
1848
Ville Syrjälä922044c2014-02-14 14:18:57 +02001849 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001850
1851 /* Use ns/us then divide to preserve precision */
1852 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1853 pixel_size * hdisplay;
1854 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1855 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1856 srwm = wm_info->fifo_size - entries;
1857 if (srwm < 0)
1858 srwm = 1;
1859
1860 if (IS_I945G(dev) || IS_I945GM(dev))
1861 I915_WRITE(FW_BLC_SELF,
1862 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1863 else if (IS_I915GM(dev))
1864 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1865 }
1866
1867 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1868 planea_wm, planeb_wm, cwm, srwm);
1869
1870 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1871 fwater_hi = (cwm & 0x1f);
1872
1873 /* Set request length to 8 cachelines per fetch */
1874 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1875 fwater_hi = fwater_hi | (1 << 8);
1876
1877 I915_WRITE(FW_BLC, fwater_lo);
1878 I915_WRITE(FW_BLC2, fwater_hi);
1879
Imre Deak5209b1f2014-07-01 12:36:17 +03001880 if (enabled)
1881 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001882}
1883
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001884static void i845_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001885{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001886 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001887 struct drm_i915_private *dev_priv = dev->dev_private;
1888 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001889 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001890 uint32_t fwater_lo;
1891 int planea_wm;
1892
1893 crtc = single_enabled_crtc(dev);
1894 if (crtc == NULL)
1895 return;
1896
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001897 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001898 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001899 &i845_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001900 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001901 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001902 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1903 fwater_lo |= (3<<8) | planea_wm;
1904
1905 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1906
1907 I915_WRITE(FW_BLC, fwater_lo);
1908}
1909
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001910uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001911{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001912 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001913
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001914 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001915
1916 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1917 * adjust the pixel_rate here. */
1918
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001919 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001920 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001921 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001922
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001923 pipe_w = pipe_config->pipe_src_w;
1924 pipe_h = pipe_config->pipe_src_h;
1925
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001926 pfit_w = (pfit_size >> 16) & 0xFFFF;
1927 pfit_h = pfit_size & 0xFFFF;
1928 if (pipe_w < pfit_w)
1929 pipe_w = pfit_w;
1930 if (pipe_h < pfit_h)
1931 pipe_h = pfit_h;
1932
1933 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1934 pfit_w * pfit_h);
1935 }
1936
1937 return pixel_rate;
1938}
1939
Ville Syrjälä37126462013-08-01 16:18:55 +03001940/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001941static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001942 uint32_t latency)
1943{
1944 uint64_t ret;
1945
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001946 if (WARN(latency == 0, "Latency value missing\n"))
1947 return UINT_MAX;
1948
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001949 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
1950 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1951
1952 return ret;
1953}
1954
Ville Syrjälä37126462013-08-01 16:18:55 +03001955/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001956static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001957 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
1958 uint32_t latency)
1959{
1960 uint32_t ret;
1961
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001962 if (WARN(latency == 0, "Latency value missing\n"))
1963 return UINT_MAX;
1964
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001965 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
1966 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
1967 ret = DIV_ROUND_UP(ret, 64) + 2;
1968 return ret;
1969}
1970
Ville Syrjälä23297042013-07-05 11:57:17 +03001971static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001972 uint8_t bytes_per_pixel)
1973{
1974 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
1975}
1976
Pradeep Bhat2ac96d22014-11-04 17:06:40 +00001977struct skl_pipe_wm_parameters {
1978 bool active;
1979 uint32_t pipe_htotal;
1980 uint32_t pixel_rate; /* in KHz */
1981 struct intel_plane_wm_parameters plane[I915_MAX_PLANES];
1982 struct intel_plane_wm_parameters cursor;
1983};
1984
Imre Deak820c1982013-12-17 14:46:36 +02001985struct ilk_pipe_wm_parameters {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001986 bool active;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001987 uint32_t pipe_htotal;
1988 uint32_t pixel_rate;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001989 struct intel_plane_wm_parameters pri;
1990 struct intel_plane_wm_parameters spr;
1991 struct intel_plane_wm_parameters cur;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001992};
1993
Imre Deak820c1982013-12-17 14:46:36 +02001994struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001995 uint16_t pri;
1996 uint16_t spr;
1997 uint16_t cur;
1998 uint16_t fbc;
1999};
2000
Ville Syrjälä240264f2013-08-07 13:29:12 +03002001/* used in computing the new watermarks state */
2002struct intel_wm_config {
2003 unsigned int num_pipes_active;
2004 bool sprites_enabled;
2005 bool sprites_scaled;
Ville Syrjälä240264f2013-08-07 13:29:12 +03002006};
2007
Ville Syrjälä37126462013-08-01 16:18:55 +03002008/*
2009 * For both WM_PIPE and WM_LP.
2010 * mem_value must be in 0.1us units.
2011 */
Imre Deak820c1982013-12-17 14:46:36 +02002012static uint32_t ilk_compute_pri_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002013 uint32_t mem_value,
2014 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002015{
Paulo Zanonicca32e92013-05-31 11:45:06 -03002016 uint32_t method1, method2;
2017
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002018 if (!params->active || !params->pri.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002019 return 0;
2020
Ville Syrjälä23297042013-07-05 11:57:17 +03002021 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002022 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002023 mem_value);
2024
2025 if (!is_lp)
2026 return method1;
2027
Ville Syrjälä23297042013-07-05 11:57:17 +03002028 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002029 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002030 params->pri.horiz_pixels,
2031 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002032 mem_value);
2033
2034 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002035}
2036
Ville Syrjälä37126462013-08-01 16:18:55 +03002037/*
2038 * For both WM_PIPE and WM_LP.
2039 * mem_value must be in 0.1us units.
2040 */
Imre Deak820c1982013-12-17 14:46:36 +02002041static uint32_t ilk_compute_spr_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002042 uint32_t mem_value)
2043{
2044 uint32_t method1, method2;
2045
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002046 if (!params->active || !params->spr.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002047 return 0;
2048
Ville Syrjälä23297042013-07-05 11:57:17 +03002049 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002050 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002051 mem_value);
Ville Syrjälä23297042013-07-05 11:57:17 +03002052 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002053 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002054 params->spr.horiz_pixels,
2055 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002056 mem_value);
2057 return min(method1, method2);
2058}
2059
Ville Syrjälä37126462013-08-01 16:18:55 +03002060/*
2061 * For both WM_PIPE and WM_LP.
2062 * mem_value must be in 0.1us units.
2063 */
Imre Deak820c1982013-12-17 14:46:36 +02002064static uint32_t ilk_compute_cur_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002065 uint32_t mem_value)
2066{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002067 if (!params->active || !params->cur.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002068 return 0;
2069
Ville Syrjälä23297042013-07-05 11:57:17 +03002070 return ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002071 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002072 params->cur.horiz_pixels,
2073 params->cur.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002074 mem_value);
2075}
2076
Paulo Zanonicca32e92013-05-31 11:45:06 -03002077/* Only for WM_LP. */
Imre Deak820c1982013-12-17 14:46:36 +02002078static uint32_t ilk_compute_fbc_wm(const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002079 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002080{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002081 if (!params->active || !params->pri.enabled)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002082 return 0;
2083
Ville Syrjälä23297042013-07-05 11:57:17 +03002084 return ilk_wm_fbc(pri_val,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03002085 params->pri.horiz_pixels,
2086 params->pri.bytes_per_pixel);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002087}
2088
Ville Syrjälä158ae642013-08-07 13:28:19 +03002089static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
2090{
Ville Syrjälä416f4722013-11-02 21:07:46 -07002091 if (INTEL_INFO(dev)->gen >= 8)
2092 return 3072;
2093 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002094 return 768;
2095 else
2096 return 512;
2097}
2098
Ville Syrjälä4e975082014-03-07 18:32:11 +02002099static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
2100 int level, bool is_sprite)
2101{
2102 if (INTEL_INFO(dev)->gen >= 8)
2103 /* BDW primary/sprite plane watermarks */
2104 return level == 0 ? 255 : 2047;
2105 else if (INTEL_INFO(dev)->gen >= 7)
2106 /* IVB/HSW primary/sprite plane watermarks */
2107 return level == 0 ? 127 : 1023;
2108 else if (!is_sprite)
2109 /* ILK/SNB primary plane watermarks */
2110 return level == 0 ? 127 : 511;
2111 else
2112 /* ILK/SNB sprite plane watermarks */
2113 return level == 0 ? 63 : 255;
2114}
2115
2116static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
2117 int level)
2118{
2119 if (INTEL_INFO(dev)->gen >= 7)
2120 return level == 0 ? 63 : 255;
2121 else
2122 return level == 0 ? 31 : 63;
2123}
2124
2125static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
2126{
2127 if (INTEL_INFO(dev)->gen >= 8)
2128 return 31;
2129 else
2130 return 15;
2131}
2132
Ville Syrjälä158ae642013-08-07 13:28:19 +03002133/* Calculate the maximum primary/sprite plane watermark */
2134static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
2135 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002136 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002137 enum intel_ddb_partitioning ddb_partitioning,
2138 bool is_sprite)
2139{
2140 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002141
2142 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002143 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002144 return 0;
2145
2146 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002147 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002148 fifo_size /= INTEL_INFO(dev)->num_pipes;
2149
2150 /*
2151 * For some reason the non self refresh
2152 * FIFO size is only half of the self
2153 * refresh FIFO size on ILK/SNB.
2154 */
2155 if (INTEL_INFO(dev)->gen <= 6)
2156 fifo_size /= 2;
2157 }
2158
Ville Syrjälä240264f2013-08-07 13:29:12 +03002159 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002160 /* level 0 is always calculated with 1:1 split */
2161 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2162 if (is_sprite)
2163 fifo_size *= 5;
2164 fifo_size /= 6;
2165 } else {
2166 fifo_size /= 2;
2167 }
2168 }
2169
2170 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02002171 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002172}
2173
2174/* Calculate the maximum cursor plane watermark */
2175static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002176 int level,
2177 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002178{
2179 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002180 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002181 return 64;
2182
2183 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02002184 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002185}
2186
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002187static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002188 int level,
2189 const struct intel_wm_config *config,
2190 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002191 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002192{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002193 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2194 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2195 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02002196 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002197}
2198
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002199static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
2200 int level,
2201 struct ilk_wm_maximums *max)
2202{
2203 max->pri = ilk_plane_wm_reg_max(dev, level, false);
2204 max->spr = ilk_plane_wm_reg_max(dev, level, true);
2205 max->cur = ilk_cursor_wm_reg_max(dev, level);
2206 max->fbc = ilk_fbc_wm_reg_max(dev);
2207}
2208
Ville Syrjäläd9395652013-10-09 19:18:10 +03002209static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002210 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002211 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002212{
2213 bool ret;
2214
2215 /* already determined to be invalid? */
2216 if (!result->enable)
2217 return false;
2218
2219 result->enable = result->pri_val <= max->pri &&
2220 result->spr_val <= max->spr &&
2221 result->cur_val <= max->cur;
2222
2223 ret = result->enable;
2224
2225 /*
2226 * HACK until we can pre-compute everything,
2227 * and thus fail gracefully if LP0 watermarks
2228 * are exceeded...
2229 */
2230 if (level == 0 && !result->enable) {
2231 if (result->pri_val > max->pri)
2232 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2233 level, result->pri_val, max->pri);
2234 if (result->spr_val > max->spr)
2235 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2236 level, result->spr_val, max->spr);
2237 if (result->cur_val > max->cur)
2238 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2239 level, result->cur_val, max->cur);
2240
2241 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2242 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2243 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2244 result->enable = true;
2245 }
2246
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002247 return ret;
2248}
2249
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002250static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002251 int level,
Imre Deak820c1982013-12-17 14:46:36 +02002252 const struct ilk_pipe_wm_parameters *p,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002253 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002254{
2255 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2256 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2257 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2258
2259 /* WM1+ latency values stored in 0.5us units */
2260 if (level > 0) {
2261 pri_latency *= 5;
2262 spr_latency *= 5;
2263 cur_latency *= 5;
2264 }
2265
2266 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
2267 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
2268 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
2269 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
2270 result->enable = true;
2271}
2272
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002273static uint32_t
2274hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002275{
2276 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002277 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002278 struct drm_display_mode *mode = &intel_crtc->config->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002279 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002280
Matt Roper3ef00282015-03-09 10:19:24 -07002281 if (!intel_crtc->active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002282 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002283
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002284 /* The WM are computed with base on how long it takes to fill a single
2285 * row at the given clock rate, multiplied by 8.
2286 * */
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002287 linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
2288 mode->crtc_clock);
2289 ips_linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
Ville Syrjälä05024da2015-06-03 15:45:08 +03002290 dev_priv->cdclk_freq);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002291
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002292 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2293 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002294}
2295
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002296static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002297{
2298 struct drm_i915_private *dev_priv = dev->dev_private;
2299
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002300 if (IS_GEN9(dev)) {
2301 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002302 int ret, i;
Vandana Kannan367294b2014-11-04 17:06:46 +00002303 int level, max_level = ilk_wm_max_level(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002304
2305 /* read the first set of memory latencies[0:3] */
2306 val = 0; /* data0 to be programmed to 0 for first set */
2307 mutex_lock(&dev_priv->rps.hw_lock);
2308 ret = sandybridge_pcode_read(dev_priv,
2309 GEN9_PCODE_READ_MEM_LATENCY,
2310 &val);
2311 mutex_unlock(&dev_priv->rps.hw_lock);
2312
2313 if (ret) {
2314 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2315 return;
2316 }
2317
2318 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2319 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2320 GEN9_MEM_LATENCY_LEVEL_MASK;
2321 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2322 GEN9_MEM_LATENCY_LEVEL_MASK;
2323 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2324 GEN9_MEM_LATENCY_LEVEL_MASK;
2325
2326 /* read the second set of memory latencies[4:7] */
2327 val = 1; /* data0 to be programmed to 1 for second set */
2328 mutex_lock(&dev_priv->rps.hw_lock);
2329 ret = sandybridge_pcode_read(dev_priv,
2330 GEN9_PCODE_READ_MEM_LATENCY,
2331 &val);
2332 mutex_unlock(&dev_priv->rps.hw_lock);
2333 if (ret) {
2334 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2335 return;
2336 }
2337
2338 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2339 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2340 GEN9_MEM_LATENCY_LEVEL_MASK;
2341 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2342 GEN9_MEM_LATENCY_LEVEL_MASK;
2343 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2344 GEN9_MEM_LATENCY_LEVEL_MASK;
2345
Vandana Kannan367294b2014-11-04 17:06:46 +00002346 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00002347 * WaWmMemoryReadLatency:skl
2348 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002349 * punit doesn't take into account the read latency so we need
2350 * to add 2us to the various latency levels we retrieve from
2351 * the punit.
2352 * - W0 is a bit special in that it's the only level that
2353 * can't be disabled if we want to have display working, so
2354 * we always add 2us there.
2355 * - For levels >=1, punit returns 0us latency when they are
2356 * disabled, so we respect that and don't add 2us then
Vandana Kannan4f947382014-11-04 17:06:47 +00002357 *
2358 * Additionally, if a level n (n > 1) has a 0us latency, all
2359 * levels m (m >= n) need to be disabled. We make sure to
2360 * sanitize the values out of the punit to satisfy this
2361 * requirement.
Vandana Kannan367294b2014-11-04 17:06:46 +00002362 */
2363 wm[0] += 2;
2364 for (level = 1; level <= max_level; level++)
2365 if (wm[level] != 0)
2366 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002367 else {
2368 for (i = level + 1; i <= max_level; i++)
2369 wm[i] = 0;
Vandana Kannan367294b2014-11-04 17:06:46 +00002370
Vandana Kannan4f947382014-11-04 17:06:47 +00002371 break;
2372 }
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002373 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002374 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2375
2376 wm[0] = (sskpd >> 56) & 0xFF;
2377 if (wm[0] == 0)
2378 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002379 wm[1] = (sskpd >> 4) & 0xFF;
2380 wm[2] = (sskpd >> 12) & 0xFF;
2381 wm[3] = (sskpd >> 20) & 0x1FF;
2382 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002383 } else if (INTEL_INFO(dev)->gen >= 6) {
2384 uint32_t sskpd = I915_READ(MCH_SSKPD);
2385
2386 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2387 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2388 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2389 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002390 } else if (INTEL_INFO(dev)->gen >= 5) {
2391 uint32_t mltr = I915_READ(MLTR_ILK);
2392
2393 /* ILK primary LP0 latency is 700 ns */
2394 wm[0] = 7;
2395 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2396 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002397 }
2398}
2399
Ville Syrjälä53615a52013-08-01 16:18:50 +03002400static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2401{
2402 /* ILK sprite LP0 latency is 1300 ns */
2403 if (INTEL_INFO(dev)->gen == 5)
2404 wm[0] = 13;
2405}
2406
2407static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2408{
2409 /* ILK cursor LP0 latency is 1300 ns */
2410 if (INTEL_INFO(dev)->gen == 5)
2411 wm[0] = 13;
2412
2413 /* WaDoubleCursorLP3Latency:ivb */
2414 if (IS_IVYBRIDGE(dev))
2415 wm[3] *= 2;
2416}
2417
Damien Lespiau546c81f2014-05-13 15:30:26 +01002418int ilk_wm_max_level(const struct drm_device *dev)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002419{
2420 /* how many WM levels are we expecting */
Damien Lespiaub6e742f2015-05-09 02:05:55 +01002421 if (INTEL_INFO(dev)->gen >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002422 return 7;
2423 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002424 return 4;
2425 else if (INTEL_INFO(dev)->gen >= 6)
2426 return 3;
2427 else
2428 return 2;
2429}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002430
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002431static void intel_print_wm_latency(struct drm_device *dev,
2432 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002433 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002434{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002435 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002436
2437 for (level = 0; level <= max_level; level++) {
2438 unsigned int latency = wm[level];
2439
2440 if (latency == 0) {
2441 DRM_ERROR("%s WM%d latency not provided\n",
2442 name, level);
2443 continue;
2444 }
2445
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002446 /*
2447 * - latencies are in us on gen9.
2448 * - before then, WM1+ latency values are in 0.5us units
2449 */
2450 if (IS_GEN9(dev))
2451 latency *= 10;
2452 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002453 latency *= 5;
2454
2455 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2456 name, level, wm[level],
2457 latency / 10, latency % 10);
2458 }
2459}
2460
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002461static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2462 uint16_t wm[5], uint16_t min)
2463{
2464 int level, max_level = ilk_wm_max_level(dev_priv->dev);
2465
2466 if (wm[0] >= min)
2467 return false;
2468
2469 wm[0] = max(wm[0], min);
2470 for (level = 1; level <= max_level; level++)
2471 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2472
2473 return true;
2474}
2475
2476static void snb_wm_latency_quirk(struct drm_device *dev)
2477{
2478 struct drm_i915_private *dev_priv = dev->dev_private;
2479 bool changed;
2480
2481 /*
2482 * The BIOS provided WM memory latency values are often
2483 * inadequate for high resolution displays. Adjust them.
2484 */
2485 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2486 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2487 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2488
2489 if (!changed)
2490 return;
2491
2492 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
2493 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2494 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2495 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
2496}
2497
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002498static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002499{
2500 struct drm_i915_private *dev_priv = dev->dev_private;
2501
2502 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2503
2504 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2505 sizeof(dev_priv->wm.pri_latency));
2506 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2507 sizeof(dev_priv->wm.pri_latency));
2508
2509 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2510 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002511
2512 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2513 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2514 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002515
2516 if (IS_GEN6(dev))
2517 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002518}
2519
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002520static void skl_setup_wm_latency(struct drm_device *dev)
2521{
2522 struct drm_i915_private *dev_priv = dev->dev_private;
2523
2524 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
2525 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
2526}
2527
Imre Deak820c1982013-12-17 14:46:36 +02002528static void ilk_compute_wm_parameters(struct drm_crtc *crtc,
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002529 struct ilk_pipe_wm_parameters *p)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002530{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002531 struct drm_device *dev = crtc->dev;
2532 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2533 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002534 struct drm_plane *plane;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002535
Matt Roper3ef00282015-03-09 10:19:24 -07002536 if (!intel_crtc->active)
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002537 return;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002538
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002539 p->active = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002540 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03002541 p->pixel_rate = ilk_pipe_pixel_rate(intel_crtc->config);
Matt Roperc9f038a2015-03-09 11:06:02 -07002542
Thomas Gummerer54da6912015-05-14 09:16:39 +02002543 if (crtc->primary->state->fb)
Matt Roperc9f038a2015-03-09 11:06:02 -07002544 p->pri.bytes_per_pixel =
2545 crtc->primary->state->fb->bits_per_pixel / 8;
Thomas Gummerer54da6912015-05-14 09:16:39 +02002546 else
2547 p->pri.bytes_per_pixel = 4;
Matt Roperc9f038a2015-03-09 11:06:02 -07002548
Thomas Gummerer54da6912015-05-14 09:16:39 +02002549 p->cur.bytes_per_pixel = 4;
2550 /*
2551 * TODO: for now, assume primary and cursor planes are always enabled.
2552 * Setting them to false makes the screen flicker.
2553 */
2554 p->pri.enabled = true;
2555 p->cur.enabled = true;
2556
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002557 p->pri.horiz_pixels = intel_crtc->config->pipe_src_w;
Matt Roper3dd512f2015-02-27 10:12:00 -08002558 p->cur.horiz_pixels = intel_crtc->base.cursor->state->crtc_w;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002559
Matt Roperaf2b6532014-04-01 15:22:32 -07002560 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002561 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002562
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002563 if (intel_plane->pipe == pipe) {
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002564 p->spr = intel_plane->wm;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002565 break;
2566 }
2567 }
2568}
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002569
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002570static void ilk_compute_wm_config(struct drm_device *dev,
2571 struct intel_wm_config *config)
2572{
2573 struct intel_crtc *intel_crtc;
2574
2575 /* Compute the currently _active_ config */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002576 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002577 const struct intel_pipe_wm *wm = &intel_crtc->wm.active;
2578
2579 if (!wm->pipe_enabled)
2580 continue;
2581
2582 config->sprites_enabled |= wm->sprites_enabled;
2583 config->sprites_scaled |= wm->sprites_scaled;
2584 config->num_pipes_active++;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002585 }
2586}
2587
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002588/* Compute new watermarks for the pipe */
2589static bool intel_compute_pipe_wm(struct drm_crtc *crtc,
Imre Deak820c1982013-12-17 14:46:36 +02002590 const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002591 struct intel_pipe_wm *pipe_wm)
2592{
2593 struct drm_device *dev = crtc->dev;
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002594 const struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002595 int level, max_level = ilk_wm_max_level(dev);
2596 /* LP0 watermark maximums depend on this pipe alone */
2597 struct intel_wm_config config = {
2598 .num_pipes_active = 1,
2599 .sprites_enabled = params->spr.enabled,
2600 .sprites_scaled = params->spr.scaled,
2601 };
Imre Deak820c1982013-12-17 14:46:36 +02002602 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002603
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002604 pipe_wm->pipe_enabled = params->active;
2605 pipe_wm->sprites_enabled = params->spr.enabled;
2606 pipe_wm->sprites_scaled = params->spr.scaled;
2607
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002608 /* ILK/SNB: LP2+ watermarks only w/o sprites */
2609 if (INTEL_INFO(dev)->gen <= 6 && params->spr.enabled)
2610 max_level = 1;
2611
2612 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
2613 if (params->spr.scaled)
2614 max_level = 0;
2615
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002616 ilk_compute_wm_level(dev_priv, 0, params, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002617
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002618 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02002619 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002620
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002621 /* LP0 watermarks always use 1/2 DDB partitioning */
2622 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2623
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002624 /* At least LP0 must be valid */
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002625 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]))
2626 return false;
2627
2628 ilk_compute_wm_reg_maximums(dev, 1, &max);
2629
2630 for (level = 1; level <= max_level; level++) {
2631 struct intel_wm_level wm = {};
2632
2633 ilk_compute_wm_level(dev_priv, level, params, &wm);
2634
2635 /*
2636 * Disable any watermark level that exceeds the
2637 * register maximums since such watermarks are
2638 * always invalid.
2639 */
2640 if (!ilk_validate_wm_level(level, &max, &wm))
2641 break;
2642
2643 pipe_wm->wm[level] = wm;
2644 }
2645
2646 return true;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002647}
2648
2649/*
2650 * Merge the watermarks from all active pipes for a specific level.
2651 */
2652static void ilk_merge_wm_level(struct drm_device *dev,
2653 int level,
2654 struct intel_wm_level *ret_wm)
2655{
2656 const struct intel_crtc *intel_crtc;
2657
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002658 ret_wm->enable = true;
2659
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002660 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002661 const struct intel_pipe_wm *active = &intel_crtc->wm.active;
2662 const struct intel_wm_level *wm = &active->wm[level];
2663
2664 if (!active->pipe_enabled)
2665 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002666
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002667 /*
2668 * The watermark values may have been used in the past,
2669 * so we must maintain them in the registers for some
2670 * time even if the level is now disabled.
2671 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002672 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002673 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002674
2675 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2676 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2677 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2678 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2679 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002680}
2681
2682/*
2683 * Merge all low power watermarks for all active pipes.
2684 */
2685static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002686 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002687 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002688 struct intel_pipe_wm *merged)
2689{
2690 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002691 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002692
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002693 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2694 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2695 config->num_pipes_active > 1)
2696 return;
2697
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002698 /* ILK: FBC WM must be disabled always */
2699 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002700
2701 /* merge each WM1+ level */
2702 for (level = 1; level <= max_level; level++) {
2703 struct intel_wm_level *wm = &merged->wm[level];
2704
2705 ilk_merge_wm_level(dev, level, wm);
2706
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002707 if (level > last_enabled_level)
2708 wm->enable = false;
2709 else if (!ilk_validate_wm_level(level, max, wm))
2710 /* make sure all following levels get disabled */
2711 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002712
2713 /*
2714 * The spec says it is preferred to disable
2715 * FBC WMs instead of disabling a WM level.
2716 */
2717 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002718 if (wm->enable)
2719 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002720 wm->fbc_val = 0;
2721 }
2722 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002723
2724 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2725 /*
2726 * FIXME this is racy. FBC might get enabled later.
2727 * What we should check here is whether FBC can be
2728 * enabled sometime later.
2729 */
2730 if (IS_GEN5(dev) && !merged->fbc_wm_enabled && intel_fbc_enabled(dev)) {
2731 for (level = 2; level <= max_level; level++) {
2732 struct intel_wm_level *wm = &merged->wm[level];
2733
2734 wm->enable = false;
2735 }
2736 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002737}
2738
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002739static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2740{
2741 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2742 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2743}
2744
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002745/* The value we need to program into the WM_LPx latency field */
2746static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2747{
2748 struct drm_i915_private *dev_priv = dev->dev_private;
2749
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002750 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002751 return 2 * level;
2752 else
2753 return dev_priv->wm.pri_latency[level];
2754}
2755
Imre Deak820c1982013-12-17 14:46:36 +02002756static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002757 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002758 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002759 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002760{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002761 struct intel_crtc *intel_crtc;
2762 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002763
Ville Syrjälä0362c782013-10-09 19:17:57 +03002764 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002765 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002766
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002767 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002768 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002769 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002770
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002771 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002772
Ville Syrjälä0362c782013-10-09 19:17:57 +03002773 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002774
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002775 /*
2776 * Maintain the watermark values even if the level is
2777 * disabled. Doing otherwise could cause underruns.
2778 */
2779 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002780 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002781 (r->pri_val << WM1_LP_SR_SHIFT) |
2782 r->cur_val;
2783
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002784 if (r->enable)
2785 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2786
Ville Syrjälä416f4722013-11-02 21:07:46 -07002787 if (INTEL_INFO(dev)->gen >= 8)
2788 results->wm_lp[wm_lp - 1] |=
2789 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2790 else
2791 results->wm_lp[wm_lp - 1] |=
2792 r->fbc_val << WM1_LP_FBC_SHIFT;
2793
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002794 /*
2795 * Always set WM1S_LP_EN when spr_val != 0, even if the
2796 * level is disabled. Doing otherwise could cause underruns.
2797 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002798 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2799 WARN_ON(wm_lp != 1);
2800 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2801 } else
2802 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002803 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002804
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002805 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002806 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002807 enum pipe pipe = intel_crtc->pipe;
2808 const struct intel_wm_level *r =
2809 &intel_crtc->wm.active.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002810
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002811 if (WARN_ON(!r->enable))
2812 continue;
2813
2814 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
2815
2816 results->wm_pipe[pipe] =
2817 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2818 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2819 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002820 }
2821}
2822
Paulo Zanoni861f3382013-05-31 10:19:21 -03002823/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2824 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002825static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002826 struct intel_pipe_wm *r1,
2827 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002828{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002829 int level, max_level = ilk_wm_max_level(dev);
2830 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002831
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002832 for (level = 1; level <= max_level; level++) {
2833 if (r1->wm[level].enable)
2834 level1 = level;
2835 if (r2->wm[level].enable)
2836 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002837 }
2838
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002839 if (level1 == level2) {
2840 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002841 return r2;
2842 else
2843 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002844 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002845 return r1;
2846 } else {
2847 return r2;
2848 }
2849}
2850
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002851/* dirty bits used to track which watermarks need changes */
2852#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2853#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2854#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2855#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2856#define WM_DIRTY_FBC (1 << 24)
2857#define WM_DIRTY_DDB (1 << 25)
2858
Damien Lespiau055e3932014-08-18 13:49:10 +01002859static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002860 const struct ilk_wm_values *old,
2861 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002862{
2863 unsigned int dirty = 0;
2864 enum pipe pipe;
2865 int wm_lp;
2866
Damien Lespiau055e3932014-08-18 13:49:10 +01002867 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002868 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2869 dirty |= WM_DIRTY_LINETIME(pipe);
2870 /* Must disable LP1+ watermarks too */
2871 dirty |= WM_DIRTY_LP_ALL;
2872 }
2873
2874 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2875 dirty |= WM_DIRTY_PIPE(pipe);
2876 /* Must disable LP1+ watermarks too */
2877 dirty |= WM_DIRTY_LP_ALL;
2878 }
2879 }
2880
2881 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2882 dirty |= WM_DIRTY_FBC;
2883 /* Must disable LP1+ watermarks too */
2884 dirty |= WM_DIRTY_LP_ALL;
2885 }
2886
2887 if (old->partitioning != new->partitioning) {
2888 dirty |= WM_DIRTY_DDB;
2889 /* Must disable LP1+ watermarks too */
2890 dirty |= WM_DIRTY_LP_ALL;
2891 }
2892
2893 /* LP1+ watermarks already deemed dirty, no need to continue */
2894 if (dirty & WM_DIRTY_LP_ALL)
2895 return dirty;
2896
2897 /* Find the lowest numbered LP1+ watermark in need of an update... */
2898 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2899 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2900 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2901 break;
2902 }
2903
2904 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2905 for (; wm_lp <= 3; wm_lp++)
2906 dirty |= WM_DIRTY_LP(wm_lp);
2907
2908 return dirty;
2909}
2910
Ville Syrjälä8553c182013-12-05 15:51:39 +02002911static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2912 unsigned int dirty)
2913{
Imre Deak820c1982013-12-17 14:46:36 +02002914 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002915 bool changed = false;
2916
2917 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2918 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2919 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2920 changed = true;
2921 }
2922 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2923 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2924 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2925 changed = true;
2926 }
2927 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2928 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2929 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2930 changed = true;
2931 }
2932
2933 /*
2934 * Don't touch WM1S_LP_EN here.
2935 * Doing so could cause underruns.
2936 */
2937
2938 return changed;
2939}
2940
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002941/*
2942 * The spec says we shouldn't write when we don't need, because every write
2943 * causes WMs to be re-evaluated, expending some power.
2944 */
Imre Deak820c1982013-12-17 14:46:36 +02002945static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2946 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002947{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002948 struct drm_device *dev = dev_priv->dev;
Imre Deak820c1982013-12-17 14:46:36 +02002949 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002950 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002951 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002952
Damien Lespiau055e3932014-08-18 13:49:10 +01002953 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002954 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002955 return;
2956
Ville Syrjälä8553c182013-12-05 15:51:39 +02002957 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002958
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002959 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002960 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002961 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002962 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002963 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002964 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2965
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002966 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002967 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002968 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002969 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002970 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002971 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2972
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002973 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002974 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002975 val = I915_READ(WM_MISC);
2976 if (results->partitioning == INTEL_DDB_PART_1_2)
2977 val &= ~WM_MISC_DATA_PARTITION_5_6;
2978 else
2979 val |= WM_MISC_DATA_PARTITION_5_6;
2980 I915_WRITE(WM_MISC, val);
2981 } else {
2982 val = I915_READ(DISP_ARB_CTL2);
2983 if (results->partitioning == INTEL_DDB_PART_1_2)
2984 val &= ~DISP_DATA_PARTITION_5_6;
2985 else
2986 val |= DISP_DATA_PARTITION_5_6;
2987 I915_WRITE(DISP_ARB_CTL2, val);
2988 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002989 }
2990
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002991 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002992 val = I915_READ(DISP_ARB_CTL);
2993 if (results->enable_fbc_wm)
2994 val &= ~DISP_FBC_WM_DIS;
2995 else
2996 val |= DISP_FBC_WM_DIS;
2997 I915_WRITE(DISP_ARB_CTL, val);
2998 }
2999
Imre Deak954911e2013-12-17 14:46:34 +02003000 if (dirty & WM_DIRTY_LP(1) &&
3001 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
3002 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
3003
3004 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003005 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
3006 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
3007 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
3008 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
3009 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003010
Ville Syrjäläfacd6192013-12-05 15:51:33 +02003011 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003012 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02003013 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003014 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02003015 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003016 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003017
3018 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003019}
3020
Ville Syrjälä8553c182013-12-05 15:51:39 +02003021static bool ilk_disable_lp_wm(struct drm_device *dev)
3022{
3023 struct drm_i915_private *dev_priv = dev->dev_private;
3024
3025 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3026}
3027
Damien Lespiaub9cec072014-11-04 17:06:43 +00003028/*
3029 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
3030 * different active planes.
3031 */
3032
3033#define SKL_DDB_SIZE 896 /* in blocks */
Damien Lespiau43d735a2015-03-17 11:39:34 +02003034#define BXT_DDB_SIZE 512
Damien Lespiaub9cec072014-11-04 17:06:43 +00003035
3036static void
3037skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
3038 struct drm_crtc *for_crtc,
3039 const struct intel_wm_config *config,
3040 const struct skl_pipe_wm_parameters *params,
3041 struct skl_ddb_entry *alloc /* out */)
3042{
3043 struct drm_crtc *crtc;
3044 unsigned int pipe_size, ddb_size;
3045 int nth_active_pipe;
3046
3047 if (!params->active) {
3048 alloc->start = 0;
3049 alloc->end = 0;
3050 return;
3051 }
3052
Damien Lespiau43d735a2015-03-17 11:39:34 +02003053 if (IS_BROXTON(dev))
3054 ddb_size = BXT_DDB_SIZE;
3055 else
3056 ddb_size = SKL_DDB_SIZE;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003057
3058 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3059
3060 nth_active_pipe = 0;
3061 for_each_crtc(dev, crtc) {
Matt Roper3ef00282015-03-09 10:19:24 -07003062 if (!to_intel_crtc(crtc)->active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003063 continue;
3064
3065 if (crtc == for_crtc)
3066 break;
3067
3068 nth_active_pipe++;
3069 }
3070
3071 pipe_size = ddb_size / config->num_pipes_active;
3072 alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active;
Damien Lespiau16160e32014-11-04 17:06:53 +00003073 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003074}
3075
3076static unsigned int skl_cursor_allocation(const struct intel_wm_config *config)
3077{
3078 if (config->num_pipes_active == 1)
3079 return 32;
3080
3081 return 8;
3082}
3083
Damien Lespiaua269c582014-11-04 17:06:49 +00003084static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3085{
3086 entry->start = reg & 0x3ff;
3087 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003088 if (entry->end)
3089 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003090}
3091
Damien Lespiau08db6652014-11-04 17:06:52 +00003092void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3093 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003094{
Damien Lespiaua269c582014-11-04 17:06:49 +00003095 enum pipe pipe;
3096 int plane;
3097 u32 val;
3098
3099 for_each_pipe(dev_priv, pipe) {
Damien Lespiaudd740782015-02-28 14:54:08 +00003100 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00003101 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
3102 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
3103 val);
3104 }
3105
3106 val = I915_READ(CUR_BUF_CFG(pipe));
3107 skl_ddb_entry_init_from_hw(&ddb->cursor[pipe], val);
3108 }
3109}
3110
Damien Lespiaub9cec072014-11-04 17:06:43 +00003111static unsigned int
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003112skl_plane_relative_data_rate(const struct intel_plane_wm_parameters *p, int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003113{
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003114
3115 /* for planar format */
3116 if (p->y_bytes_per_pixel) {
3117 if (y) /* y-plane data rate */
3118 return p->horiz_pixels * p->vert_pixels * p->y_bytes_per_pixel;
3119 else /* uv-plane data rate */
3120 return (p->horiz_pixels/2) * (p->vert_pixels/2) * p->bytes_per_pixel;
3121 }
3122
3123 /* for packed formats */
Damien Lespiaub9cec072014-11-04 17:06:43 +00003124 return p->horiz_pixels * p->vert_pixels * p->bytes_per_pixel;
3125}
3126
3127/*
3128 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
3129 * a 8192x4096@32bpp framebuffer:
3130 * 3 * 4096 * 8192 * 4 < 2^32
3131 */
3132static unsigned int
3133skl_get_total_relative_data_rate(struct intel_crtc *intel_crtc,
3134 const struct skl_pipe_wm_parameters *params)
3135{
3136 unsigned int total_data_rate = 0;
3137 int plane;
3138
3139 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
3140 const struct intel_plane_wm_parameters *p;
3141
3142 p = &params->plane[plane];
3143 if (!p->enabled)
3144 continue;
3145
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003146 total_data_rate += skl_plane_relative_data_rate(p, 0); /* packed/uv */
3147 if (p->y_bytes_per_pixel) {
3148 total_data_rate += skl_plane_relative_data_rate(p, 1); /* y-plane */
3149 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00003150 }
3151
3152 return total_data_rate;
3153}
3154
3155static void
3156skl_allocate_pipe_ddb(struct drm_crtc *crtc,
3157 const struct intel_wm_config *config,
3158 const struct skl_pipe_wm_parameters *params,
3159 struct skl_ddb_allocation *ddb /* out */)
3160{
3161 struct drm_device *dev = crtc->dev;
Damien Lespiaudd740782015-02-28 14:54:08 +00003162 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003163 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3164 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003165 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003166 uint16_t alloc_size, start, cursor_blocks;
Damien Lespiau80958152015-02-09 13:35:10 +00003167 uint16_t minimum[I915_MAX_PLANES];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003168 uint16_t y_minimum[I915_MAX_PLANES];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003169 unsigned int total_data_rate;
3170 int plane;
3171
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003172 skl_ddb_get_pipe_allocation_limits(dev, crtc, config, params, alloc);
3173 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003174 if (alloc_size == 0) {
3175 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
3176 memset(&ddb->cursor[pipe], 0, sizeof(ddb->cursor[pipe]));
3177 return;
3178 }
3179
3180 cursor_blocks = skl_cursor_allocation(config);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003181 ddb->cursor[pipe].start = alloc->end - cursor_blocks;
3182 ddb->cursor[pipe].end = alloc->end;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003183
3184 alloc_size -= cursor_blocks;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003185 alloc->end -= cursor_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003186
Damien Lespiau80958152015-02-09 13:35:10 +00003187 /* 1. Allocate the mininum required blocks for each active plane */
Damien Lespiaudd740782015-02-28 14:54:08 +00003188 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau80958152015-02-09 13:35:10 +00003189 const struct intel_plane_wm_parameters *p;
3190
3191 p = &params->plane[plane];
3192 if (!p->enabled)
3193 continue;
3194
3195 minimum[plane] = 8;
3196 alloc_size -= minimum[plane];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003197 y_minimum[plane] = p->y_bytes_per_pixel ? 8 : 0;
3198 alloc_size -= y_minimum[plane];
Damien Lespiau80958152015-02-09 13:35:10 +00003199 }
3200
Damien Lespiaub9cec072014-11-04 17:06:43 +00003201 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003202 * 2. Distribute the remaining space in proportion to the amount of
3203 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003204 *
3205 * FIXME: we may not allocate every single block here.
3206 */
3207 total_data_rate = skl_get_total_relative_data_rate(intel_crtc, params);
3208
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003209 start = alloc->start;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003210 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
3211 const struct intel_plane_wm_parameters *p;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003212 unsigned int data_rate, y_data_rate;
3213 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003214
3215 p = &params->plane[plane];
3216 if (!p->enabled)
3217 continue;
3218
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003219 data_rate = skl_plane_relative_data_rate(p, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003220
3221 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003222 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003223 * promote the expression to 64 bits to avoid overflowing, the
3224 * result is < available as data_rate / total_data_rate < 1
3225 */
Damien Lespiau80958152015-02-09 13:35:10 +00003226 plane_blocks = minimum[plane];
3227 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3228 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003229
3230 ddb->plane[pipe][plane].start = start;
Damien Lespiau16160e32014-11-04 17:06:53 +00003231 ddb->plane[pipe][plane].end = start + plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003232
3233 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003234
3235 /*
3236 * allocation for y_plane part of planar format:
3237 */
3238 if (p->y_bytes_per_pixel) {
3239 y_data_rate = skl_plane_relative_data_rate(p, 1);
3240 y_plane_blocks = y_minimum[plane];
3241 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3242 total_data_rate);
3243
3244 ddb->y_plane[pipe][plane].start = start;
3245 ddb->y_plane[pipe][plane].end = start + y_plane_blocks;
3246
3247 start += y_plane_blocks;
3248 }
3249
Damien Lespiaub9cec072014-11-04 17:06:43 +00003250 }
3251
3252}
3253
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02003254static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003255{
3256 /* TODO: Take into account the scalers once we support them */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02003257 return config->base.adjusted_mode.crtc_clock;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003258}
3259
3260/*
3261 * The max latency should be 257 (max the punit can code is 255 and we add 2us
3262 * for the read latency) and bytes_per_pixel should always be <= 8, so that
3263 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3264 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3265*/
3266static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
3267 uint32_t latency)
3268{
3269 uint32_t wm_intermediate_val, ret;
3270
3271 if (latency == 0)
3272 return UINT_MAX;
3273
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003274 wm_intermediate_val = latency * pixel_rate * bytes_per_pixel / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003275 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
3276
3277 return ret;
3278}
3279
3280static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
3281 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003282 uint64_t tiling, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003283{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003284 uint32_t ret;
3285 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3286 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003287
3288 if (latency == 0)
3289 return UINT_MAX;
3290
3291 plane_bytes_per_line = horiz_pixels * bytes_per_pixel;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003292
3293 if (tiling == I915_FORMAT_MOD_Y_TILED ||
3294 tiling == I915_FORMAT_MOD_Yf_TILED) {
3295 plane_bytes_per_line *= 4;
3296 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3297 plane_blocks_per_line /= 4;
3298 } else {
3299 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3300 }
3301
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003302 wm_intermediate_val = latency * pixel_rate;
3303 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003304 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003305
3306 return ret;
3307}
3308
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003309static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb,
3310 const struct intel_crtc *intel_crtc)
3311{
3312 struct drm_device *dev = intel_crtc->base.dev;
3313 struct drm_i915_private *dev_priv = dev->dev_private;
3314 const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3315 enum pipe pipe = intel_crtc->pipe;
3316
3317 if (memcmp(new_ddb->plane[pipe], cur_ddb->plane[pipe],
3318 sizeof(new_ddb->plane[pipe])))
3319 return true;
3320
3321 if (memcmp(&new_ddb->cursor[pipe], &cur_ddb->cursor[pipe],
3322 sizeof(new_ddb->cursor[pipe])))
3323 return true;
3324
3325 return false;
3326}
3327
3328static void skl_compute_wm_global_parameters(struct drm_device *dev,
3329 struct intel_wm_config *config)
3330{
3331 struct drm_crtc *crtc;
3332 struct drm_plane *plane;
3333
3334 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
Matt Roper3ef00282015-03-09 10:19:24 -07003335 config->num_pipes_active += to_intel_crtc(crtc)->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003336
3337 /* FIXME: I don't think we need those two global parameters on SKL */
3338 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
3339 struct intel_plane *intel_plane = to_intel_plane(plane);
3340
3341 config->sprites_enabled |= intel_plane->wm.enabled;
3342 config->sprites_scaled |= intel_plane->wm.scaled;
3343 }
3344}
3345
3346static void skl_compute_wm_pipe_parameters(struct drm_crtc *crtc,
3347 struct skl_pipe_wm_parameters *p)
3348{
3349 struct drm_device *dev = crtc->dev;
3350 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3351 enum pipe pipe = intel_crtc->pipe;
3352 struct drm_plane *plane;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003353 struct drm_framebuffer *fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003354 int i = 1; /* Index for sprite planes start */
3355
Matt Roper3ef00282015-03-09 10:19:24 -07003356 p->active = intel_crtc->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003357 if (p->active) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003358 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
3359 p->pixel_rate = skl_pipe_pixel_rate(intel_crtc->config);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003360
Matt Roperc9f038a2015-03-09 11:06:02 -07003361 fb = crtc->primary->state->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003362 /* For planar: Bpp is for uv plane, y_Bpp is for y plane */
Matt Roperc9f038a2015-03-09 11:06:02 -07003363 if (fb) {
3364 p->plane[0].enabled = true;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003365 p->plane[0].bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
3366 drm_format_plane_cpp(fb->pixel_format, 1) : fb->bits_per_pixel / 8;
3367 p->plane[0].y_bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
3368 drm_format_plane_cpp(fb->pixel_format, 0) : 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07003369 p->plane[0].tiling = fb->modifier[0];
3370 } else {
3371 p->plane[0].enabled = false;
3372 p->plane[0].bytes_per_pixel = 0;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003373 p->plane[0].y_bytes_per_pixel = 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07003374 p->plane[0].tiling = DRM_FORMAT_MOD_NONE;
3375 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003376 p->plane[0].horiz_pixels = intel_crtc->config->pipe_src_w;
3377 p->plane[0].vert_pixels = intel_crtc->config->pipe_src_h;
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003378 p->plane[0].rotation = crtc->primary->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003379
Matt Roperc9f038a2015-03-09 11:06:02 -07003380 fb = crtc->cursor->state->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003381 p->cursor.y_bytes_per_pixel = 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07003382 if (fb) {
3383 p->cursor.enabled = true;
3384 p->cursor.bytes_per_pixel = fb->bits_per_pixel / 8;
3385 p->cursor.horiz_pixels = crtc->cursor->state->crtc_w;
3386 p->cursor.vert_pixels = crtc->cursor->state->crtc_h;
3387 } else {
3388 p->cursor.enabled = false;
3389 p->cursor.bytes_per_pixel = 0;
3390 p->cursor.horiz_pixels = 64;
3391 p->cursor.vert_pixels = 64;
3392 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003393 }
3394
3395 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
3396 struct intel_plane *intel_plane = to_intel_plane(plane);
3397
Sonika Jindala712f8e2014-12-09 10:59:15 +05303398 if (intel_plane->pipe == pipe &&
3399 plane->type == DRM_PLANE_TYPE_OVERLAY)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003400 p->plane[i++] = intel_plane->wm;
3401 }
3402}
3403
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003404static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3405 struct skl_pipe_wm_parameters *p,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003406 struct intel_plane_wm_parameters *p_params,
3407 uint16_t ddb_allocation,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003408 int level,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003409 uint16_t *out_blocks, /* out */
3410 uint8_t *out_lines /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003411{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003412 uint32_t latency = dev_priv->wm.skl_latency[level];
3413 uint32_t method1, method2;
3414 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3415 uint32_t res_blocks, res_lines;
3416 uint32_t selected_result;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003417 uint8_t bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003418
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003419 if (latency == 0 || !p->active || !p_params->enabled)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003420 return false;
3421
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003422 bytes_per_pixel = p_params->y_bytes_per_pixel ?
3423 p_params->y_bytes_per_pixel :
3424 p_params->bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003425 method1 = skl_wm_method1(p->pixel_rate,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003426 bytes_per_pixel,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003427 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003428 method2 = skl_wm_method2(p->pixel_rate,
3429 p->pipe_htotal,
3430 p_params->horiz_pixels,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003431 bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003432 p_params->tiling,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003433 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003434
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003435 plane_bytes_per_line = p_params->horiz_pixels * bytes_per_pixel;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003436 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003437
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003438 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
3439 p_params->tiling == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003440 uint32_t min_scanlines = 4;
3441 uint32_t y_tile_minimum;
3442 if (intel_rotation_90_or_270(p_params->rotation)) {
3443 switch (p_params->bytes_per_pixel) {
3444 case 1:
3445 min_scanlines = 16;
3446 break;
3447 case 2:
3448 min_scanlines = 8;
3449 break;
3450 case 8:
3451 WARN(1, "Unsupported pixel depth for rotation");
kbuild test robot2f0b5792015-03-26 22:30:21 +08003452 }
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003453 }
3454 y_tile_minimum = plane_blocks_per_line * min_scanlines;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003455 selected_result = max(method2, y_tile_minimum);
3456 } else {
3457 if ((ddb_allocation / plane_blocks_per_line) >= 1)
3458 selected_result = min(method1, method2);
3459 else
3460 selected_result = method1;
3461 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003462
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003463 res_blocks = selected_result + 1;
3464 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003465
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003466 if (level >= 1 && level <= 7) {
3467 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
3468 p_params->tiling == I915_FORMAT_MOD_Yf_TILED)
3469 res_lines += 4;
3470 else
3471 res_blocks++;
3472 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003473
3474 if (res_blocks >= ddb_allocation || res_lines > 31)
Damien Lespiaue6d66172014-11-04 17:06:55 +00003475 return false;
3476
3477 *out_blocks = res_blocks;
3478 *out_lines = res_lines;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003479
3480 return true;
3481}
3482
3483static void skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3484 struct skl_ddb_allocation *ddb,
3485 struct skl_pipe_wm_parameters *p,
3486 enum pipe pipe,
3487 int level,
3488 int num_planes,
3489 struct skl_wm_level *result)
3490{
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003491 uint16_t ddb_blocks;
3492 int i;
3493
3494 for (i = 0; i < num_planes; i++) {
3495 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
3496
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003497 result->plane_en[i] = skl_compute_plane_wm(dev_priv,
3498 p, &p->plane[i],
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003499 ddb_blocks,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003500 level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003501 &result->plane_res_b[i],
3502 &result->plane_res_l[i]);
3503 }
3504
3505 ddb_blocks = skl_ddb_entry_size(&ddb->cursor[pipe]);
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003506 result->cursor_en = skl_compute_plane_wm(dev_priv, p, &p->cursor,
3507 ddb_blocks, level,
3508 &result->cursor_res_b,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003509 &result->cursor_res_l);
3510}
3511
Damien Lespiau407b50f2014-11-04 17:06:57 +00003512static uint32_t
3513skl_compute_linetime_wm(struct drm_crtc *crtc, struct skl_pipe_wm_parameters *p)
3514{
Matt Roper3ef00282015-03-09 10:19:24 -07003515 if (!to_intel_crtc(crtc)->active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003516 return 0;
3517
3518 return DIV_ROUND_UP(8 * p->pipe_htotal * 1000, p->pixel_rate);
3519
3520}
3521
3522static void skl_compute_transition_wm(struct drm_crtc *crtc,
3523 struct skl_pipe_wm_parameters *params,
Damien Lespiau9414f562014-11-04 17:06:58 +00003524 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003525{
Damien Lespiau9414f562014-11-04 17:06:58 +00003526 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3527 int i;
3528
Damien Lespiau407b50f2014-11-04 17:06:57 +00003529 if (!params->active)
3530 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003531
3532 /* Until we know more, just disable transition WMs */
3533 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3534 trans_wm->plane_en[i] = false;
3535 trans_wm->cursor_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003536}
3537
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003538static void skl_compute_pipe_wm(struct drm_crtc *crtc,
3539 struct skl_ddb_allocation *ddb,
3540 struct skl_pipe_wm_parameters *params,
3541 struct skl_pipe_wm *pipe_wm)
3542{
3543 struct drm_device *dev = crtc->dev;
3544 const struct drm_i915_private *dev_priv = dev->dev_private;
3545 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3546 int level, max_level = ilk_wm_max_level(dev);
3547
3548 for (level = 0; level <= max_level; level++) {
3549 skl_compute_wm_level(dev_priv, ddb, params, intel_crtc->pipe,
3550 level, intel_num_planes(intel_crtc),
3551 &pipe_wm->wm[level]);
3552 }
3553 pipe_wm->linetime = skl_compute_linetime_wm(crtc, params);
3554
Damien Lespiau9414f562014-11-04 17:06:58 +00003555 skl_compute_transition_wm(crtc, params, &pipe_wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003556}
3557
3558static void skl_compute_wm_results(struct drm_device *dev,
3559 struct skl_pipe_wm_parameters *p,
3560 struct skl_pipe_wm *p_wm,
3561 struct skl_wm_values *r,
3562 struct intel_crtc *intel_crtc)
3563{
3564 int level, max_level = ilk_wm_max_level(dev);
3565 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau9414f562014-11-04 17:06:58 +00003566 uint32_t temp;
3567 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003568
3569 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003570 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3571 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003572
3573 temp |= p_wm->wm[level].plane_res_l[i] <<
3574 PLANE_WM_LINES_SHIFT;
3575 temp |= p_wm->wm[level].plane_res_b[i];
3576 if (p_wm->wm[level].plane_en[i])
3577 temp |= PLANE_WM_EN;
3578
3579 r->plane[pipe][i][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003580 }
3581
3582 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003583
3584 temp |= p_wm->wm[level].cursor_res_l << PLANE_WM_LINES_SHIFT;
3585 temp |= p_wm->wm[level].cursor_res_b;
3586
3587 if (p_wm->wm[level].cursor_en)
3588 temp |= PLANE_WM_EN;
3589
3590 r->cursor[pipe][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003591
3592 }
3593
Damien Lespiau9414f562014-11-04 17:06:58 +00003594 /* transition WMs */
3595 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3596 temp = 0;
3597 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
3598 temp |= p_wm->trans_wm.plane_res_b[i];
3599 if (p_wm->trans_wm.plane_en[i])
3600 temp |= PLANE_WM_EN;
3601
3602 r->plane_trans[pipe][i] = temp;
3603 }
3604
3605 temp = 0;
3606 temp |= p_wm->trans_wm.cursor_res_l << PLANE_WM_LINES_SHIFT;
3607 temp |= p_wm->trans_wm.cursor_res_b;
3608 if (p_wm->trans_wm.cursor_en)
3609 temp |= PLANE_WM_EN;
3610
3611 r->cursor_trans[pipe] = temp;
3612
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003613 r->wm_linetime[pipe] = p_wm->linetime;
3614}
3615
Damien Lespiau16160e32014-11-04 17:06:53 +00003616static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, uint32_t reg,
3617 const struct skl_ddb_entry *entry)
3618{
3619 if (entry->end)
3620 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3621 else
3622 I915_WRITE(reg, 0);
3623}
3624
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003625static void skl_write_wm_values(struct drm_i915_private *dev_priv,
3626 const struct skl_wm_values *new)
3627{
3628 struct drm_device *dev = dev_priv->dev;
3629 struct intel_crtc *crtc;
3630
3631 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
3632 int i, level, max_level = ilk_wm_max_level(dev);
3633 enum pipe pipe = crtc->pipe;
3634
Damien Lespiau5d374d92014-11-04 17:07:00 +00003635 if (!new->dirty[pipe])
3636 continue;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003637
Damien Lespiau5d374d92014-11-04 17:07:00 +00003638 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
3639
3640 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003641 for (i = 0; i < intel_num_planes(crtc); i++)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003642 I915_WRITE(PLANE_WM(pipe, i, level),
3643 new->plane[pipe][i][level]);
3644 I915_WRITE(CUR_WM(pipe, level),
3645 new->cursor[pipe][level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003646 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003647 for (i = 0; i < intel_num_planes(crtc); i++)
3648 I915_WRITE(PLANE_WM_TRANS(pipe, i),
3649 new->plane_trans[pipe][i]);
3650 I915_WRITE(CUR_WM_TRANS(pipe), new->cursor_trans[pipe]);
3651
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003652 for (i = 0; i < intel_num_planes(crtc); i++) {
Damien Lespiau5d374d92014-11-04 17:07:00 +00003653 skl_ddb_entry_write(dev_priv,
3654 PLANE_BUF_CFG(pipe, i),
3655 &new->ddb.plane[pipe][i]);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003656 skl_ddb_entry_write(dev_priv,
3657 PLANE_NV12_BUF_CFG(pipe, i),
3658 &new->ddb.y_plane[pipe][i]);
3659 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003660
3661 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
3662 &new->ddb.cursor[pipe]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003663 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003664}
3665
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003666/*
3667 * When setting up a new DDB allocation arrangement, we need to correctly
3668 * sequence the times at which the new allocations for the pipes are taken into
3669 * account or we'll have pipes fetching from space previously allocated to
3670 * another pipe.
3671 *
3672 * Roughly the sequence looks like:
3673 * 1. re-allocate the pipe(s) with the allocation being reduced and not
3674 * overlapping with a previous light-up pipe (another way to put it is:
3675 * pipes with their new allocation strickly included into their old ones).
3676 * 2. re-allocate the other pipes that get their allocation reduced
3677 * 3. allocate the pipes having their allocation increased
3678 *
3679 * Steps 1. and 2. are here to take care of the following case:
3680 * - Initially DDB looks like this:
3681 * | B | C |
3682 * - enable pipe A.
3683 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
3684 * allocation
3685 * | A | B | C |
3686 *
3687 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
3688 */
3689
Damien Lespiaud21b7952014-11-04 17:07:03 +00003690static void
3691skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003692{
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003693 int plane;
3694
Damien Lespiaud21b7952014-11-04 17:07:03 +00003695 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
3696
Damien Lespiaudd740782015-02-28 14:54:08 +00003697 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003698 I915_WRITE(PLANE_SURF(pipe, plane),
3699 I915_READ(PLANE_SURF(pipe, plane)));
3700 }
3701 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3702}
3703
3704static bool
3705skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
3706 const struct skl_ddb_allocation *new,
3707 enum pipe pipe)
3708{
3709 uint16_t old_size, new_size;
3710
3711 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
3712 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
3713
3714 return old_size != new_size &&
3715 new->pipe[pipe].start >= old->pipe[pipe].start &&
3716 new->pipe[pipe].end <= old->pipe[pipe].end;
3717}
3718
3719static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
3720 struct skl_wm_values *new_values)
3721{
3722 struct drm_device *dev = dev_priv->dev;
3723 struct skl_ddb_allocation *cur_ddb, *new_ddb;
Ville Syrjäläc929cb42015-04-02 18:28:07 +03003724 bool reallocated[I915_MAX_PIPES] = {};
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003725 struct intel_crtc *crtc;
3726 enum pipe pipe;
3727
3728 new_ddb = &new_values->ddb;
3729 cur_ddb = &dev_priv->wm.skl_hw.ddb;
3730
3731 /*
3732 * First pass: flush the pipes with the new allocation contained into
3733 * the old space.
3734 *
3735 * We'll wait for the vblank on those pipes to ensure we can safely
3736 * re-allocate the freed space without this pipe fetching from it.
3737 */
3738 for_each_intel_crtc(dev, crtc) {
3739 if (!crtc->active)
3740 continue;
3741
3742 pipe = crtc->pipe;
3743
3744 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
3745 continue;
3746
Damien Lespiaud21b7952014-11-04 17:07:03 +00003747 skl_wm_flush_pipe(dev_priv, pipe, 1);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003748 intel_wait_for_vblank(dev, pipe);
3749
3750 reallocated[pipe] = true;
3751 }
3752
3753
3754 /*
3755 * Second pass: flush the pipes that are having their allocation
3756 * reduced, but overlapping with a previous allocation.
3757 *
3758 * Here as well we need to wait for the vblank to make sure the freed
3759 * space is not used anymore.
3760 */
3761 for_each_intel_crtc(dev, crtc) {
3762 if (!crtc->active)
3763 continue;
3764
3765 pipe = crtc->pipe;
3766
3767 if (reallocated[pipe])
3768 continue;
3769
3770 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3771 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
Damien Lespiaud21b7952014-11-04 17:07:03 +00003772 skl_wm_flush_pipe(dev_priv, pipe, 2);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003773 intel_wait_for_vblank(dev, pipe);
Sonika Jindald9d8e6b2014-12-11 17:58:15 +05303774 reallocated[pipe] = true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003775 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003776 }
3777
3778 /*
3779 * Third pass: flush the pipes that got more space allocated.
3780 *
3781 * We don't need to actively wait for the update here, next vblank
3782 * will just get more DDB space with the correct WM values.
3783 */
3784 for_each_intel_crtc(dev, crtc) {
3785 if (!crtc->active)
3786 continue;
3787
3788 pipe = crtc->pipe;
3789
3790 /*
3791 * At this point, only the pipes more space than before are
3792 * left to re-allocate.
3793 */
3794 if (reallocated[pipe])
3795 continue;
3796
Damien Lespiaud21b7952014-11-04 17:07:03 +00003797 skl_wm_flush_pipe(dev_priv, pipe, 3);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003798 }
3799}
3800
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003801static bool skl_update_pipe_wm(struct drm_crtc *crtc,
3802 struct skl_pipe_wm_parameters *params,
3803 struct intel_wm_config *config,
3804 struct skl_ddb_allocation *ddb, /* out */
3805 struct skl_pipe_wm *pipe_wm /* out */)
3806{
3807 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3808
3809 skl_compute_wm_pipe_parameters(crtc, params);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003810 skl_allocate_pipe_ddb(crtc, config, params, ddb);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003811 skl_compute_pipe_wm(crtc, ddb, params, pipe_wm);
3812
3813 if (!memcmp(&intel_crtc->wm.skl_active, pipe_wm, sizeof(*pipe_wm)))
3814 return false;
3815
3816 intel_crtc->wm.skl_active = *pipe_wm;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003817
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003818 return true;
3819}
3820
3821static void skl_update_other_pipe_wm(struct drm_device *dev,
3822 struct drm_crtc *crtc,
3823 struct intel_wm_config *config,
3824 struct skl_wm_values *r)
3825{
3826 struct intel_crtc *intel_crtc;
3827 struct intel_crtc *this_crtc = to_intel_crtc(crtc);
3828
3829 /*
3830 * If the WM update hasn't changed the allocation for this_crtc (the
3831 * crtc we are currently computing the new WM values for), other
3832 * enabled crtcs will keep the same allocation and we don't need to
3833 * recompute anything for them.
3834 */
3835 if (!skl_ddb_allocation_changed(&r->ddb, this_crtc))
3836 return;
3837
3838 /*
3839 * Otherwise, because of this_crtc being freshly enabled/disabled, the
3840 * other active pipes need new DDB allocation and WM values.
3841 */
3842 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
3843 base.head) {
3844 struct skl_pipe_wm_parameters params = {};
3845 struct skl_pipe_wm pipe_wm = {};
3846 bool wm_changed;
3847
3848 if (this_crtc->pipe == intel_crtc->pipe)
3849 continue;
3850
3851 if (!intel_crtc->active)
3852 continue;
3853
3854 wm_changed = skl_update_pipe_wm(&intel_crtc->base,
3855 &params, config,
3856 &r->ddb, &pipe_wm);
3857
3858 /*
3859 * If we end up re-computing the other pipe WM values, it's
3860 * because it was really needed, so we expect the WM values to
3861 * be different.
3862 */
3863 WARN_ON(!wm_changed);
3864
3865 skl_compute_wm_results(dev, &params, &pipe_wm, r, intel_crtc);
3866 r->dirty[intel_crtc->pipe] = true;
3867 }
3868}
3869
3870static void skl_update_wm(struct drm_crtc *crtc)
3871{
3872 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3873 struct drm_device *dev = crtc->dev;
3874 struct drm_i915_private *dev_priv = dev->dev_private;
3875 struct skl_pipe_wm_parameters params = {};
3876 struct skl_wm_values *results = &dev_priv->wm.skl_results;
3877 struct skl_pipe_wm pipe_wm = {};
3878 struct intel_wm_config config = {};
3879
3880 memset(results, 0, sizeof(*results));
3881
3882 skl_compute_wm_global_parameters(dev, &config);
3883
3884 if (!skl_update_pipe_wm(crtc, &params, &config,
3885 &results->ddb, &pipe_wm))
3886 return;
3887
3888 skl_compute_wm_results(dev, &params, &pipe_wm, results, intel_crtc);
3889 results->dirty[intel_crtc->pipe] = true;
3890
3891 skl_update_other_pipe_wm(dev, crtc, &config, results);
3892 skl_write_wm_values(dev_priv, results);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003893 skl_flush_wm_values(dev_priv, results);
Damien Lespiau53b0deb2014-11-04 17:06:48 +00003894
3895 /* store the new configuration */
3896 dev_priv->wm.skl_hw = *results;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003897}
3898
3899static void
3900skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc,
3901 uint32_t sprite_width, uint32_t sprite_height,
3902 int pixel_size, bool enabled, bool scaled)
3903{
3904 struct intel_plane *intel_plane = to_intel_plane(plane);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003905 struct drm_framebuffer *fb = plane->state->fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003906
3907 intel_plane->wm.enabled = enabled;
3908 intel_plane->wm.scaled = scaled;
3909 intel_plane->wm.horiz_pixels = sprite_width;
3910 intel_plane->wm.vert_pixels = sprite_height;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003911 intel_plane->wm.tiling = DRM_FORMAT_MOD_NONE;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003912
3913 /* For planar: Bpp is for UV plane, y_Bpp is for Y plane */
3914 intel_plane->wm.bytes_per_pixel =
3915 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3916 drm_format_plane_cpp(plane->state->fb->pixel_format, 1) : pixel_size;
3917 intel_plane->wm.y_bytes_per_pixel =
3918 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3919 drm_format_plane_cpp(plane->state->fb->pixel_format, 0) : 0;
3920
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003921 /*
3922 * Framebuffer can be NULL on plane disable, but it does not
3923 * matter for watermarks if we assume no tiling in that case.
3924 */
3925 if (fb)
3926 intel_plane->wm.tiling = fb->modifier[0];
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003927 intel_plane->wm.rotation = plane->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003928
3929 skl_update_wm(crtc);
3930}
3931
Imre Deak820c1982013-12-17 14:46:36 +02003932static void ilk_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003933{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003934 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003935 struct drm_device *dev = crtc->dev;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003936 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003937 struct ilk_wm_maximums max;
3938 struct ilk_pipe_wm_parameters params = {};
3939 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003940 enum intel_ddb_partitioning partitioning;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003941 struct intel_pipe_wm pipe_wm = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003942 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003943 struct intel_wm_config config = {};
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003944
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003945 ilk_compute_wm_parameters(crtc, &params);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003946
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003947 intel_compute_pipe_wm(crtc, &params, &pipe_wm);
3948
3949 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
3950 return;
3951
3952 intel_crtc->wm.active = pipe_wm;
3953
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003954 ilk_compute_wm_config(dev, &config);
3955
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003956 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003957 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03003958
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003959 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03003960 if (INTEL_INFO(dev)->gen >= 7 &&
3961 config.num_pipes_active == 1 && config.sprites_enabled) {
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003962 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003963 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003964
Imre Deak820c1982013-12-17 14:46:36 +02003965 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003966 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003967 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003968 }
3969
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003970 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003971 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003972
Imre Deak820c1982013-12-17 14:46:36 +02003973 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003974
Imre Deak820c1982013-12-17 14:46:36 +02003975 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003976}
3977
Damien Lespiaued57cb82014-07-15 09:21:24 +02003978static void
3979ilk_update_sprite_wm(struct drm_plane *plane,
3980 struct drm_crtc *crtc,
3981 uint32_t sprite_width, uint32_t sprite_height,
3982 int pixel_size, bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03003983{
Ville Syrjälä8553c182013-12-05 15:51:39 +02003984 struct drm_device *dev = plane->dev;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003985 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003986
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003987 intel_plane->wm.enabled = enabled;
3988 intel_plane->wm.scaled = scaled;
3989 intel_plane->wm.horiz_pixels = sprite_width;
Damien Lespiaued57cb82014-07-15 09:21:24 +02003990 intel_plane->wm.vert_pixels = sprite_width;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003991 intel_plane->wm.bytes_per_pixel = pixel_size;
Paulo Zanoni526682e2013-05-24 11:59:18 -03003992
Ville Syrjälä8553c182013-12-05 15:51:39 +02003993 /*
3994 * IVB workaround: must disable low power watermarks for at least
3995 * one frame before enabling scaling. LP watermarks can be re-enabled
3996 * when scaling is disabled.
3997 *
3998 * WaCxSRDisabledForSpriteScaling:ivb
3999 */
4000 if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev))
4001 intel_wait_for_vblank(dev, intel_plane->pipe);
4002
Imre Deak820c1982013-12-17 14:46:36 +02004003 ilk_update_wm(crtc);
Paulo Zanoni526682e2013-05-24 11:59:18 -03004004}
4005
Pradeep Bhat30789992014-11-04 17:06:45 +00004006static void skl_pipe_wm_active_state(uint32_t val,
4007 struct skl_pipe_wm *active,
4008 bool is_transwm,
4009 bool is_cursor,
4010 int i,
4011 int level)
4012{
4013 bool is_enabled = (val & PLANE_WM_EN) != 0;
4014
4015 if (!is_transwm) {
4016 if (!is_cursor) {
4017 active->wm[level].plane_en[i] = is_enabled;
4018 active->wm[level].plane_res_b[i] =
4019 val & PLANE_WM_BLOCKS_MASK;
4020 active->wm[level].plane_res_l[i] =
4021 (val >> PLANE_WM_LINES_SHIFT) &
4022 PLANE_WM_LINES_MASK;
4023 } else {
4024 active->wm[level].cursor_en = is_enabled;
4025 active->wm[level].cursor_res_b =
4026 val & PLANE_WM_BLOCKS_MASK;
4027 active->wm[level].cursor_res_l =
4028 (val >> PLANE_WM_LINES_SHIFT) &
4029 PLANE_WM_LINES_MASK;
4030 }
4031 } else {
4032 if (!is_cursor) {
4033 active->trans_wm.plane_en[i] = is_enabled;
4034 active->trans_wm.plane_res_b[i] =
4035 val & PLANE_WM_BLOCKS_MASK;
4036 active->trans_wm.plane_res_l[i] =
4037 (val >> PLANE_WM_LINES_SHIFT) &
4038 PLANE_WM_LINES_MASK;
4039 } else {
4040 active->trans_wm.cursor_en = is_enabled;
4041 active->trans_wm.cursor_res_b =
4042 val & PLANE_WM_BLOCKS_MASK;
4043 active->trans_wm.cursor_res_l =
4044 (val >> PLANE_WM_LINES_SHIFT) &
4045 PLANE_WM_LINES_MASK;
4046 }
4047 }
4048}
4049
4050static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4051{
4052 struct drm_device *dev = crtc->dev;
4053 struct drm_i915_private *dev_priv = dev->dev_private;
4054 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
4055 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4056 struct skl_pipe_wm *active = &intel_crtc->wm.skl_active;
4057 enum pipe pipe = intel_crtc->pipe;
4058 int level, i, max_level;
4059 uint32_t temp;
4060
4061 max_level = ilk_wm_max_level(dev);
4062
4063 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
4064
4065 for (level = 0; level <= max_level; level++) {
4066 for (i = 0; i < intel_num_planes(intel_crtc); i++)
4067 hw->plane[pipe][i][level] =
4068 I915_READ(PLANE_WM(pipe, i, level));
4069 hw->cursor[pipe][level] = I915_READ(CUR_WM(pipe, level));
4070 }
4071
4072 for (i = 0; i < intel_num_planes(intel_crtc); i++)
4073 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
4074 hw->cursor_trans[pipe] = I915_READ(CUR_WM_TRANS(pipe));
4075
Matt Roper3ef00282015-03-09 10:19:24 -07004076 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00004077 return;
4078
4079 hw->dirty[pipe] = true;
4080
4081 active->linetime = hw->wm_linetime[pipe];
4082
4083 for (level = 0; level <= max_level; level++) {
4084 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
4085 temp = hw->plane[pipe][i][level];
4086 skl_pipe_wm_active_state(temp, active, false,
4087 false, i, level);
4088 }
4089 temp = hw->cursor[pipe][level];
4090 skl_pipe_wm_active_state(temp, active, false, true, i, level);
4091 }
4092
4093 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
4094 temp = hw->plane_trans[pipe][i];
4095 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
4096 }
4097
4098 temp = hw->cursor_trans[pipe];
4099 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
4100}
4101
4102void skl_wm_get_hw_state(struct drm_device *dev)
4103{
Damien Lespiaua269c582014-11-04 17:06:49 +00004104 struct drm_i915_private *dev_priv = dev->dev_private;
4105 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00004106 struct drm_crtc *crtc;
4107
Damien Lespiaua269c582014-11-04 17:06:49 +00004108 skl_ddb_get_hw_state(dev_priv, ddb);
Pradeep Bhat30789992014-11-04 17:06:45 +00004109 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
4110 skl_pipe_wm_get_hw_state(crtc);
4111}
4112
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004113static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4114{
4115 struct drm_device *dev = crtc->dev;
4116 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02004117 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004118 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4119 struct intel_pipe_wm *active = &intel_crtc->wm.active;
4120 enum pipe pipe = intel_crtc->pipe;
4121 static const unsigned int wm0_pipe_reg[] = {
4122 [PIPE_A] = WM0_PIPEA_ILK,
4123 [PIPE_B] = WM0_PIPEB_ILK,
4124 [PIPE_C] = WM0_PIPEC_IVB,
4125 };
4126
4127 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläa42a5712014-01-07 16:14:08 +02004128 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02004129 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004130
Matt Roper3ef00282015-03-09 10:19:24 -07004131 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02004132
4133 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004134 u32 tmp = hw->wm_pipe[pipe];
4135
4136 /*
4137 * For active pipes LP0 watermark is marked as
4138 * enabled, and LP1+ watermaks as disabled since
4139 * we can't really reverse compute them in case
4140 * multiple pipes are active.
4141 */
4142 active->wm[0].enable = true;
4143 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
4144 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
4145 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
4146 active->linetime = hw->wm_linetime[pipe];
4147 } else {
4148 int level, max_level = ilk_wm_max_level(dev);
4149
4150 /*
4151 * For inactive pipes, all watermark levels
4152 * should be marked as enabled but zeroed,
4153 * which is what we'd compute them to.
4154 */
4155 for (level = 0; level <= max_level; level++)
4156 active->wm[level].enable = true;
4157 }
4158}
4159
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004160#define _FW_WM(value, plane) \
4161 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
4162#define _FW_WM_VLV(value, plane) \
4163 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
4164
4165static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4166 struct vlv_wm_values *wm)
4167{
4168 enum pipe pipe;
4169 uint32_t tmp;
4170
4171 for_each_pipe(dev_priv, pipe) {
4172 tmp = I915_READ(VLV_DDL(pipe));
4173
4174 wm->ddl[pipe].primary =
4175 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4176 wm->ddl[pipe].cursor =
4177 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4178 wm->ddl[pipe].sprite[0] =
4179 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4180 wm->ddl[pipe].sprite[1] =
4181 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4182 }
4183
4184 tmp = I915_READ(DSPFW1);
4185 wm->sr.plane = _FW_WM(tmp, SR);
4186 wm->pipe[PIPE_B].cursor = _FW_WM(tmp, CURSORB);
4187 wm->pipe[PIPE_B].primary = _FW_WM_VLV(tmp, PLANEB);
4188 wm->pipe[PIPE_A].primary = _FW_WM_VLV(tmp, PLANEA);
4189
4190 tmp = I915_READ(DSPFW2);
4191 wm->pipe[PIPE_A].sprite[1] = _FW_WM_VLV(tmp, SPRITEB);
4192 wm->pipe[PIPE_A].cursor = _FW_WM(tmp, CURSORA);
4193 wm->pipe[PIPE_A].sprite[0] = _FW_WM_VLV(tmp, SPRITEA);
4194
4195 tmp = I915_READ(DSPFW3);
4196 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4197
4198 if (IS_CHERRYVIEW(dev_priv)) {
4199 tmp = I915_READ(DSPFW7_CHV);
4200 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
4201 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
4202
4203 tmp = I915_READ(DSPFW8_CHV);
4204 wm->pipe[PIPE_C].sprite[1] = _FW_WM_VLV(tmp, SPRITEF);
4205 wm->pipe[PIPE_C].sprite[0] = _FW_WM_VLV(tmp, SPRITEE);
4206
4207 tmp = I915_READ(DSPFW9_CHV);
4208 wm->pipe[PIPE_C].primary = _FW_WM_VLV(tmp, PLANEC);
4209 wm->pipe[PIPE_C].cursor = _FW_WM(tmp, CURSORC);
4210
4211 tmp = I915_READ(DSPHOWM);
4212 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
4213 wm->pipe[PIPE_C].sprite[1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4214 wm->pipe[PIPE_C].sprite[0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4215 wm->pipe[PIPE_C].primary |= _FW_WM(tmp, PLANEC_HI) << 8;
4216 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4217 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4218 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4219 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4220 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4221 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4222 } else {
4223 tmp = I915_READ(DSPFW7);
4224 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
4225 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
4226
4227 tmp = I915_READ(DSPHOWM);
4228 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
4229 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4230 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4231 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4232 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4233 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4234 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4235 }
4236}
4237
4238#undef _FW_WM
4239#undef _FW_WM_VLV
4240
4241void vlv_wm_get_hw_state(struct drm_device *dev)
4242{
4243 struct drm_i915_private *dev_priv = to_i915(dev);
4244 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4245 struct intel_plane *plane;
4246 enum pipe pipe;
4247 u32 val;
4248
4249 vlv_read_wm_values(dev_priv, wm);
4250
4251 for_each_intel_plane(dev, plane) {
4252 switch (plane->base.type) {
4253 int sprite;
4254 case DRM_PLANE_TYPE_CURSOR:
4255 plane->wm.fifo_size = 63;
4256 break;
4257 case DRM_PLANE_TYPE_PRIMARY:
4258 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, 0);
4259 break;
4260 case DRM_PLANE_TYPE_OVERLAY:
4261 sprite = plane->plane;
4262 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, sprite + 1);
4263 break;
4264 }
4265 }
4266
4267 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4268 wm->level = VLV_WM_LEVEL_PM2;
4269
4270 if (IS_CHERRYVIEW(dev_priv)) {
4271 mutex_lock(&dev_priv->rps.hw_lock);
4272
4273 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4274 if (val & DSP_MAXFIFO_PM5_ENABLE)
4275 wm->level = VLV_WM_LEVEL_PM5;
4276
4277 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4278 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4279 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4280
4281 mutex_unlock(&dev_priv->rps.hw_lock);
4282 }
4283
4284 for_each_pipe(dev_priv, pipe)
4285 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
4286 pipe_name(pipe), wm->pipe[pipe].primary, wm->pipe[pipe].cursor,
4287 wm->pipe[pipe].sprite[0], wm->pipe[pipe].sprite[1]);
4288
4289 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4290 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4291}
4292
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004293void ilk_wm_get_hw_state(struct drm_device *dev)
4294{
4295 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02004296 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004297 struct drm_crtc *crtc;
4298
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004299 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004300 ilk_pipe_wm_get_hw_state(crtc);
4301
4302 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4303 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4304 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4305
4306 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004307 if (INTEL_INFO(dev)->gen >= 7) {
4308 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4309 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4310 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004311
Ville Syrjäläa42a5712014-01-07 16:14:08 +02004312 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004313 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4314 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
4315 else if (IS_IVYBRIDGE(dev))
4316 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4317 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004318
4319 hw->enable_fbc_wm =
4320 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4321}
4322
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004323/**
4324 * intel_update_watermarks - update FIFO watermark values based on current modes
4325 *
4326 * Calculate watermark values for the various WM regs based on current mode
4327 * and plane configuration.
4328 *
4329 * There are several cases to deal with here:
4330 * - normal (i.e. non-self-refresh)
4331 * - self-refresh (SR) mode
4332 * - lines are large relative to FIFO size (buffer can hold up to 2)
4333 * - lines are small relative to FIFO size (buffer can hold more than 2
4334 * lines), so need to account for TLB latency
4335 *
4336 * The normal calculation is:
4337 * watermark = dotclock * bytes per pixel * latency
4338 * where latency is platform & configuration dependent (we assume pessimal
4339 * values here).
4340 *
4341 * The SR calculation is:
4342 * watermark = (trunc(latency/line time)+1) * surface width *
4343 * bytes per pixel
4344 * where
4345 * line time = htotal / dotclock
4346 * surface width = hdisplay for normal plane and 64 for cursor
4347 * and latency is assumed to be high, as above.
4348 *
4349 * The final value programmed to the register should always be rounded up,
4350 * and include an extra 2 entries to account for clock crossings.
4351 *
4352 * We don't use the sprite, so we can ignore that. And on Crestline we have
4353 * to set the non-SR watermarks to 8.
4354 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004355void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004356{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004357 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004358
4359 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004360 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004361}
4362
Ville Syrjäläadf3d352013-08-06 22:24:11 +03004363void intel_update_sprite_watermarks(struct drm_plane *plane,
4364 struct drm_crtc *crtc,
Damien Lespiaued57cb82014-07-15 09:21:24 +02004365 uint32_t sprite_width,
4366 uint32_t sprite_height,
4367 int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03004368 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004369{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03004370 struct drm_i915_private *dev_priv = plane->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004371
4372 if (dev_priv->display.update_sprite_wm)
Damien Lespiaued57cb82014-07-15 09:21:24 +02004373 dev_priv->display.update_sprite_wm(plane, crtc,
4374 sprite_width, sprite_height,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03004375 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004376}
4377
Daniel Vetter92703882012-08-09 16:46:01 +02004378/**
4379 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004380 */
4381DEFINE_SPINLOCK(mchdev_lock);
4382
4383/* Global for IPS driver to get at the current i915 device. Protected by
4384 * mchdev_lock. */
4385static struct drm_i915_private *i915_mch_dev;
4386
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004387bool ironlake_set_drps(struct drm_device *dev, u8 val)
4388{
4389 struct drm_i915_private *dev_priv = dev->dev_private;
4390 u16 rgvswctl;
4391
Daniel Vetter92703882012-08-09 16:46:01 +02004392 assert_spin_locked(&mchdev_lock);
4393
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004394 rgvswctl = I915_READ16(MEMSWCTL);
4395 if (rgvswctl & MEMCTL_CMD_STS) {
4396 DRM_DEBUG("gpu busy, RCS change rejected\n");
4397 return false; /* still busy with another command */
4398 }
4399
4400 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4401 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4402 I915_WRITE16(MEMSWCTL, rgvswctl);
4403 POSTING_READ16(MEMSWCTL);
4404
4405 rgvswctl |= MEMCTL_CMD_STS;
4406 I915_WRITE16(MEMSWCTL, rgvswctl);
4407
4408 return true;
4409}
4410
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004411static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004412{
4413 struct drm_i915_private *dev_priv = dev->dev_private;
4414 u32 rgvmodectl = I915_READ(MEMMODECTL);
4415 u8 fmax, fmin, fstart, vstart;
4416
Daniel Vetter92703882012-08-09 16:46:01 +02004417 spin_lock_irq(&mchdev_lock);
4418
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004419 /* Enable temp reporting */
4420 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4421 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4422
4423 /* 100ms RC evaluation intervals */
4424 I915_WRITE(RCUPEI, 100000);
4425 I915_WRITE(RCDNEI, 100000);
4426
4427 /* Set max/min thresholds to 90ms and 80ms respectively */
4428 I915_WRITE(RCBMAXAVG, 90000);
4429 I915_WRITE(RCBMINAVG, 80000);
4430
4431 I915_WRITE(MEMIHYST, 1);
4432
4433 /* Set up min, max, and cur for interrupt handling */
4434 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4435 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4436 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4437 MEMMODE_FSTART_SHIFT;
4438
4439 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
4440 PXVFREQ_PX_SHIFT;
4441
Daniel Vetter20e4d402012-08-08 23:35:39 +02004442 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4443 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004444
Daniel Vetter20e4d402012-08-08 23:35:39 +02004445 dev_priv->ips.max_delay = fstart;
4446 dev_priv->ips.min_delay = fmin;
4447 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004448
4449 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4450 fmax, fmin, fstart);
4451
4452 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4453
4454 /*
4455 * Interrupts will be enabled in ironlake_irq_postinstall
4456 */
4457
4458 I915_WRITE(VIDSTART, vstart);
4459 POSTING_READ(VIDSTART);
4460
4461 rgvmodectl |= MEMMODE_SWMODE_EN;
4462 I915_WRITE(MEMMODECTL, rgvmodectl);
4463
Daniel Vetter92703882012-08-09 16:46:01 +02004464 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004465 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetter92703882012-08-09 16:46:01 +02004466 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004467
4468 ironlake_set_drps(dev, fstart);
4469
Daniel Vetter20e4d402012-08-08 23:35:39 +02004470 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004471 I915_READ(0x112e0);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004472 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
4473 dev_priv->ips.last_count2 = I915_READ(0x112f4);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004474 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004475
4476 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004477}
4478
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004479static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004480{
4481 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02004482 u16 rgvswctl;
4483
4484 spin_lock_irq(&mchdev_lock);
4485
4486 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004487
4488 /* Ack interrupts, disable EFC interrupt */
4489 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4490 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4491 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4492 I915_WRITE(DEIIR, DE_PCU_EVENT);
4493 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4494
4495 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004496 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetter92703882012-08-09 16:46:01 +02004497 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004498 rgvswctl |= MEMCTL_CMD_STS;
4499 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetter92703882012-08-09 16:46:01 +02004500 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004501
Daniel Vetter92703882012-08-09 16:46:01 +02004502 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004503}
4504
Daniel Vetteracbe9472012-07-26 11:50:05 +02004505/* There's a funny hw issue where the hw returns all 0 when reading from
4506 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4507 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4508 * all limits and the gpu stuck at whatever frequency it is at atm).
4509 */
Akash Goel74ef1172015-03-06 11:07:19 +05304510static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004511{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004512 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004513
Daniel Vetter20b46e52012-07-26 11:16:14 +02004514 /* Only set the down limit when we've reached the lowest level to avoid
4515 * getting more interrupts, otherwise leave this clear. This prevents a
4516 * race in the hw when coming out of rc6: There's a tiny window where
4517 * the hw runs at the minimal clock before selecting the desired
4518 * frequency, if the down threshold expires in that window we will not
4519 * receive a down interrupt. */
Akash Goel74ef1172015-03-06 11:07:19 +05304520 if (IS_GEN9(dev_priv->dev)) {
4521 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4522 if (val <= dev_priv->rps.min_freq_softlimit)
4523 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4524 } else {
4525 limits = dev_priv->rps.max_freq_softlimit << 24;
4526 if (val <= dev_priv->rps.min_freq_softlimit)
4527 limits |= dev_priv->rps.min_freq_softlimit << 16;
4528 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004529
4530 return limits;
4531}
4532
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004533static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4534{
4535 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304536 u32 threshold_up = 0, threshold_down = 0; /* in % */
4537 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004538
4539 new_power = dev_priv->rps.power;
4540 switch (dev_priv->rps.power) {
4541 case LOW_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004542 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004543 new_power = BETWEEN;
4544 break;
4545
4546 case BETWEEN:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004547 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004548 new_power = LOW_POWER;
Ben Widawskyb39fb292014-03-19 18:31:11 -07004549 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004550 new_power = HIGH_POWER;
4551 break;
4552
4553 case HIGH_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004554 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 +01004555 new_power = BETWEEN;
4556 break;
4557 }
4558 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004559 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004560 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004561 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004562 new_power = HIGH_POWER;
4563 if (new_power == dev_priv->rps.power)
4564 return;
4565
4566 /* Note the units here are not exactly 1us, but 1280ns. */
4567 switch (new_power) {
4568 case LOW_POWER:
4569 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304570 ei_up = 16000;
4571 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004572
4573 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304574 ei_down = 32000;
4575 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004576 break;
4577
4578 case BETWEEN:
4579 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304580 ei_up = 13000;
4581 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004582
4583 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304584 ei_down = 32000;
4585 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004586 break;
4587
4588 case HIGH_POWER:
4589 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304590 ei_up = 10000;
4591 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004592
4593 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304594 ei_down = 32000;
4595 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004596 break;
4597 }
4598
Akash Goel8a586432015-03-06 11:07:18 +05304599 I915_WRITE(GEN6_RP_UP_EI,
4600 GT_INTERVAL_FROM_US(dev_priv, ei_up));
4601 I915_WRITE(GEN6_RP_UP_THRESHOLD,
4602 GT_INTERVAL_FROM_US(dev_priv, (ei_up * threshold_up / 100)));
4603
4604 I915_WRITE(GEN6_RP_DOWN_EI,
4605 GT_INTERVAL_FROM_US(dev_priv, ei_down));
4606 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
4607 GT_INTERVAL_FROM_US(dev_priv, (ei_down * threshold_down / 100)));
4608
4609 I915_WRITE(GEN6_RP_CONTROL,
4610 GEN6_RP_MEDIA_TURBO |
4611 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4612 GEN6_RP_MEDIA_IS_GFX |
4613 GEN6_RP_ENABLE |
4614 GEN6_RP_UP_BUSY_AVG |
4615 GEN6_RP_DOWN_IDLE_AVG);
4616
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004617 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004618 dev_priv->rps.up_threshold = threshold_up;
4619 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004620 dev_priv->rps.last_adj = 0;
4621}
4622
Chris Wilson2876ce72014-03-28 08:03:34 +00004623static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4624{
4625 u32 mask = 0;
4626
4627 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004628 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004629 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004630 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004631
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004632 mask &= dev_priv->pm_rps_events;
4633
Imre Deak59d02a12014-12-19 19:33:26 +02004634 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004635}
4636
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004637/* gen6_set_rps is called to update the frequency request, but should also be
4638 * called when the range (min_delay and max_delay) is modified so that we can
4639 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004640static void gen6_set_rps(struct drm_device *dev, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004641{
4642 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004643
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004644 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004645 WARN_ON(val > dev_priv->rps.max_freq);
4646 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004647
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004648 /* min/max delay may still have been modified so be sure to
4649 * write the limits value.
4650 */
4651 if (val != dev_priv->rps.cur_freq) {
4652 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004653
Akash Goel57041952015-03-06 11:07:17 +05304654 if (IS_GEN9(dev))
4655 I915_WRITE(GEN6_RPNSWREQ,
4656 GEN9_FREQUENCY(val));
4657 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004658 I915_WRITE(GEN6_RPNSWREQ,
4659 HSW_FREQUENCY(val));
4660 else
4661 I915_WRITE(GEN6_RPNSWREQ,
4662 GEN6_FREQUENCY(val) |
4663 GEN6_OFFSET(0) |
4664 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004665 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004666
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004667 /* Make sure we continue to get interrupts
4668 * until we hit the minimum or maximum frequencies.
4669 */
Akash Goel74ef1172015-03-06 11:07:19 +05304670 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004671 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004672
Ben Widawskyd5570a72012-09-07 19:43:41 -07004673 POSTING_READ(GEN6_RPNSWREQ);
4674
Ben Widawskyb39fb292014-03-19 18:31:11 -07004675 dev_priv->rps.cur_freq = val;
Daniel Vetterbe2cde92012-08-30 13:26:48 +02004676 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004677}
4678
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004679static void valleyview_set_rps(struct drm_device *dev, u8 val)
4680{
4681 struct drm_i915_private *dev_priv = dev->dev_private;
4682
4683 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004684 WARN_ON(val > dev_priv->rps.max_freq);
4685 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004686
4687 if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1),
4688 "Odd GPU freq value\n"))
4689 val &= ~1;
4690
Chris Wilson8fb55192015-04-07 16:20:28 +01004691 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004692 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004693 if (!IS_CHERRYVIEW(dev_priv))
4694 gen6_set_rps_thresholds(dev_priv, val);
4695 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004696
4697 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4698
4699 dev_priv->rps.cur_freq = val;
4700 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4701}
4702
Deepak Sa7f6e232015-05-09 18:04:44 +05304703/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304704 *
4705 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304706 * 1. Forcewake Media well.
4707 * 2. Request idle freq.
4708 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304709*/
4710static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4711{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004712 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304713
Chris Wilsonaed242f2015-03-18 09:48:21 +00004714 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304715 return;
4716
Deepak Sa7f6e232015-05-09 18:04:44 +05304717 /* Wake up the media well, as that takes a lot less
4718 * power than the Render well. */
4719 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
4720 valleyview_set_rps(dev_priv->dev, val);
4721 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05304722}
4723
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004724void gen6_rps_busy(struct drm_i915_private *dev_priv)
4725{
4726 mutex_lock(&dev_priv->rps.hw_lock);
4727 if (dev_priv->rps.enabled) {
4728 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4729 gen6_rps_reset_ei(dev_priv);
4730 I915_WRITE(GEN6_PMINTRMSK,
4731 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
4732 }
4733 mutex_unlock(&dev_priv->rps.hw_lock);
4734}
4735
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004736void gen6_rps_idle(struct drm_i915_private *dev_priv)
4737{
Damien Lespiau691bb712013-12-12 14:36:36 +00004738 struct drm_device *dev = dev_priv->dev;
4739
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004740 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004741 if (dev_priv->rps.enabled) {
Ville Syrjälä21a11ff2015-01-27 16:36:15 +02004742 if (IS_VALLEYVIEW(dev))
Deepak S76c3552f2014-01-30 23:08:16 +05304743 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004744 else
Chris Wilsonaed242f2015-03-18 09:48:21 +00004745 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004746 dev_priv->rps.last_adj = 0;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004747 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004748 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004749 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004750
Chris Wilson8d3afd72015-05-21 21:01:47 +01004751 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004752 while (!list_empty(&dev_priv->rps.clients))
4753 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004754 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004755}
4756
Chris Wilson1854d5c2015-04-07 16:20:32 +01004757void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01004758 struct intel_rps_client *rps,
4759 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004760{
Chris Wilson8d3afd72015-05-21 21:01:47 +01004761 /* This is intentionally racy! We peek at the state here, then
4762 * validate inside the RPS worker.
4763 */
4764 if (!(dev_priv->mm.busy &&
4765 dev_priv->rps.enabled &&
4766 dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit))
4767 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004768
Chris Wilsone61b9952015-04-27 13:41:24 +01004769 /* Force a RPS boost (and don't count it against the client) if
4770 * the GPU is severely congested.
4771 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004772 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01004773 rps = NULL;
4774
Chris Wilson8d3afd72015-05-21 21:01:47 +01004775 spin_lock(&dev_priv->rps.client_lock);
4776 if (rps == NULL || list_empty(&rps->link)) {
4777 spin_lock_irq(&dev_priv->irq_lock);
4778 if (dev_priv->rps.interrupts_enabled) {
4779 dev_priv->rps.client_boost = true;
4780 queue_work(dev_priv->wq, &dev_priv->rps.work);
4781 }
4782 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004783
Chris Wilson2e1b8732015-04-27 13:41:22 +01004784 if (rps != NULL) {
4785 list_add(&rps->link, &dev_priv->rps.clients);
4786 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01004787 } else
4788 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01004789 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004790 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004791}
4792
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004793void intel_set_rps(struct drm_device *dev, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004794{
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004795 if (IS_VALLEYVIEW(dev))
4796 valleyview_set_rps(dev, val);
4797 else
4798 gen6_set_rps(dev, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004799}
4800
Zhe Wang20e49362014-11-04 17:07:05 +00004801static void gen9_disable_rps(struct drm_device *dev)
4802{
4803 struct drm_i915_private *dev_priv = dev->dev_private;
4804
4805 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004806 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004807}
4808
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004809static void gen6_disable_rps(struct drm_device *dev)
4810{
4811 struct drm_i915_private *dev_priv = dev->dev_private;
4812
4813 I915_WRITE(GEN6_RC_CONTROL, 0);
4814 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004815}
4816
Deepak S38807742014-05-23 21:00:15 +05304817static void cherryview_disable_rps(struct drm_device *dev)
4818{
4819 struct drm_i915_private *dev_priv = dev->dev_private;
4820
4821 I915_WRITE(GEN6_RC_CONTROL, 0);
4822}
4823
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004824static void valleyview_disable_rps(struct drm_device *dev)
4825{
4826 struct drm_i915_private *dev_priv = dev->dev_private;
4827
Deepak S98a2e5f2014-08-18 10:35:27 -07004828 /* we're doing forcewake before Disabling RC6,
4829 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02004830 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07004831
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004832 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004833
Mika Kuoppala59bad942015-01-16 11:34:40 +02004834 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004835}
4836
Ben Widawskydc39fff2013-10-18 12:32:07 -07004837static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
4838{
Imre Deak91ca6892014-04-14 20:24:25 +03004839 if (IS_VALLEYVIEW(dev)) {
4840 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
4841 mode = GEN6_RC_CTL_RC6_ENABLE;
4842 else
4843 mode = 0;
4844 }
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004845 if (HAS_RC6p(dev))
4846 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
4847 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
4848 (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
4849 (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
4850
4851 else
4852 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
4853 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off");
Ben Widawskydc39fff2013-10-18 12:32:07 -07004854}
4855
Imre Deake6069ca2014-04-18 16:01:02 +03004856static int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004857{
Daniel Vettere7d66d82015-06-15 23:23:54 +02004858 /* No RC6 before Ironlake and code is gone for ilk. */
4859 if (INTEL_INFO(dev)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03004860 return 0;
4861
Daniel Vetter456470e2012-08-08 23:35:40 +02004862 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03004863 if (enable_rc6 >= 0) {
4864 int mask;
4865
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004866 if (HAS_RC6p(dev))
Imre Deake6069ca2014-04-18 16:01:02 +03004867 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
4868 INTEL_RC6pp_ENABLE;
4869 else
4870 mask = INTEL_RC6_ENABLE;
4871
4872 if ((enable_rc6 & mask) != enable_rc6)
Daniel Vetter8dfd1f02014-08-04 11:15:56 +02004873 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
4874 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03004875
4876 return enable_rc6 & mask;
4877 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004878
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004879 if (IS_IVYBRIDGE(dev))
Ben Widawskycca84a12014-01-28 20:25:38 -08004880 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004881
4882 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004883}
4884
Imre Deake6069ca2014-04-18 16:01:02 +03004885int intel_enable_rc6(const struct drm_device *dev)
4886{
4887 return i915.enable_rc6;
4888}
4889
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004890static void gen6_init_rps_frequencies(struct drm_device *dev)
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004891{
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004892 struct drm_i915_private *dev_priv = dev->dev_private;
4893 uint32_t rp_state_cap;
4894 u32 ddcc_status = 0;
4895 int ret;
4896
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004897 /* All of these values are in units of 50MHz */
4898 dev_priv->rps.cur_freq = 0;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004899 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Bob Paauwe35040562015-06-25 14:54:07 -07004900 if (IS_BROXTON(dev)) {
4901 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
4902 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
4903 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4904 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
4905 } else {
4906 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
4907 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
4908 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4909 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
4910 }
4911
Akash Goelcee991c2015-03-06 11:07:16 +05304912 if (IS_SKYLAKE(dev)) {
4913 /* Store the frequency values in 16.66 MHZ units, which is
4914 the natural hardware unit for SKL */
4915 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
4916 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
4917 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
4918 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004919 /* hw_max = RP0 until we check for overclocking */
4920 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
4921
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004922 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
4923 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
4924 ret = sandybridge_pcode_read(dev_priv,
4925 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
4926 &ddcc_status);
4927 if (0 == ret)
4928 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08004929 clamp_t(u8,
4930 ((ddcc_status >> 8) & 0xff),
4931 dev_priv->rps.min_freq,
4932 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004933 }
4934
Chris Wilsonaed242f2015-03-18 09:48:21 +00004935 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4936
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004937 /* Preserve min/max settings in case of re-init */
4938 if (dev_priv->rps.max_freq_softlimit == 0)
4939 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4940
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004941 if (dev_priv->rps.min_freq_softlimit == 0) {
4942 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4943 dev_priv->rps.min_freq_softlimit =
Ville Syrjälä813b5e62015-03-25 19:27:16 +02004944 max_t(int, dev_priv->rps.efficient_freq,
4945 intel_freq_opcode(dev_priv, 450));
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004946 else
4947 dev_priv->rps.min_freq_softlimit =
4948 dev_priv->rps.min_freq;
4949 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004950}
4951
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004952/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Zhe Wang20e49362014-11-04 17:07:05 +00004953static void gen9_enable_rps(struct drm_device *dev)
4954{
4955 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004956
4957 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4958
Damien Lespiauba1c5542015-01-16 18:07:26 +00004959 gen6_init_rps_frequencies(dev);
4960
Akash Goel0beb0592015-03-06 11:07:20 +05304961 /* Program defaults and thresholds for RPS*/
4962 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4963 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004964
Akash Goel0beb0592015-03-06 11:07:20 +05304965 /* 1 second timeout*/
4966 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
4967 GT_INTERVAL_FROM_US(dev_priv, 1000000));
4968
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004969 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004970
Akash Goel0beb0592015-03-06 11:07:20 +05304971 /* Leaning on the below call to gen6_set_rps to program/setup the
4972 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
4973 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
4974 dev_priv->rps.power = HIGH_POWER; /* force a reset */
4975 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004976
4977 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4978}
4979
4980static void gen9_enable_rc6(struct drm_device *dev)
4981{
4982 struct drm_i915_private *dev_priv = dev->dev_private;
Zhe Wang20e49362014-11-04 17:07:05 +00004983 struct intel_engine_cs *ring;
4984 uint32_t rc6_mask = 0;
4985 int unused;
4986
4987 /* 1a: Software RC state - RC0 */
4988 I915_WRITE(GEN6_RC_STATE, 0);
4989
4990 /* 1b: Get forcewake during program sequence. Although the driver
4991 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004992 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004993
4994 /* 2a: Disable RC states. */
4995 I915_WRITE(GEN6_RC_CONTROL, 0);
4996
4997 /* 2b: Program RC6 thresholds.*/
4998 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
4999 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5000 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5001 for_each_ring(ring, dev_priv, unused)
5002 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5003 I915_WRITE(GEN6_RC_SLEEP, 0);
5004 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
5005
Zhe Wang38c23522015-01-20 12:23:04 +00005006 /* 2c: Program Coarse Power Gating Policies. */
5007 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
5008 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
5009
Zhe Wang20e49362014-11-04 17:07:05 +00005010 /* 3a: Enable RC6 */
5011 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
5012 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
5013 DRM_INFO("RC6 %s\n", (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
5014 "on" : "off");
5015 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5016 GEN6_RC_CTL_EI_MODE(1) |
5017 rc6_mask);
5018
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305019 /*
5020 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
5021 * WaDisableRenderPowerGating:skl,bxt - Render PG need to be disabled with RC6.
5022 */
Sagar Kamblea4104c52015-04-10 14:11:29 +05305023 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305024 GEN9_MEDIA_PG_ENABLE : 0);
Sagar Kamblea4104c52015-04-10 14:11:29 +05305025
Zhe Wang38c23522015-01-20 12:23:04 +00005026
Mika Kuoppala59bad942015-01-16 11:34:40 +02005027 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005028
5029}
5030
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005031static void gen8_enable_rps(struct drm_device *dev)
5032{
5033 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005034 struct intel_engine_cs *ring;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005035 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005036 int unused;
5037
5038 /* 1a: Software RC state - RC0 */
5039 I915_WRITE(GEN6_RC_STATE, 0);
5040
5041 /* 1c & 1d: Get forcewake during program sequence. Although the driver
5042 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005043 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005044
5045 /* 2a: Disable RC states. */
5046 I915_WRITE(GEN6_RC_CONTROL, 0);
5047
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005048 /* Initialize rps frequencies */
5049 gen6_init_rps_frequencies(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005050
5051 /* 2b: Program RC6 thresholds.*/
5052 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5053 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5054 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5055 for_each_ring(ring, dev_priv, unused)
5056 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5057 I915_WRITE(GEN6_RC_SLEEP, 0);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005058 if (IS_BROADWELL(dev))
5059 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
5060 else
5061 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005062
5063 /* 3: Enable RC6 */
5064 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
5065 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Ben Widawskyabbf9d22014-01-28 20:25:41 -08005066 intel_print_rc6_info(dev, rc6_mask);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005067 if (IS_BROADWELL(dev))
5068 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5069 GEN7_RC_CTL_TO_MODE |
5070 rc6_mask);
5071 else
5072 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5073 GEN6_RC_CTL_EI_MODE(1) |
5074 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005075
5076 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07005077 I915_WRITE(GEN6_RPNSWREQ,
5078 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
5079 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5080 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02005081 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
5082 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005083
Daniel Vetter7526ed72014-09-29 15:07:19 +02005084 /* Docs recommend 900MHz, and 300 MHz respectively */
5085 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
5086 dev_priv->rps.max_freq_softlimit << 24 |
5087 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005088
Daniel Vetter7526ed72014-09-29 15:07:19 +02005089 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
5090 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
5091 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
5092 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005093
Daniel Vetter7526ed72014-09-29 15:07:19 +02005094 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005095
5096 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02005097 I915_WRITE(GEN6_RP_CONTROL,
5098 GEN6_RP_MEDIA_TURBO |
5099 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5100 GEN6_RP_MEDIA_IS_GFX |
5101 GEN6_RP_ENABLE |
5102 GEN6_RP_UP_BUSY_AVG |
5103 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005104
Daniel Vetter7526ed72014-09-29 15:07:19 +02005105 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005106
Tom O'Rourkec7f31532014-11-19 14:21:54 -08005107 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00005108 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005109
Mika Kuoppala59bad942015-01-16 11:34:40 +02005110 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005111}
5112
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005113static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005114{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005115 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005116 struct intel_engine_cs *ring;
Ben Widawskyd060c162014-03-19 18:31:08 -07005117 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005118 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005119 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07005120 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005121
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005122 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005123
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005124 /* Here begins a magic sequence of register writes to enable
5125 * auto-downclocking.
5126 *
5127 * Perhaps there might be some value in exposing these to
5128 * userspace...
5129 */
5130 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005131
5132 /* Clear the DBG now so we don't confuse earlier errors */
5133 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
5134 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
5135 I915_WRITE(GTFIFODBG, gtfifodbg);
5136 }
5137
Mika Kuoppala59bad942015-01-16 11:34:40 +02005138 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005139
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005140 /* Initialize rps frequencies */
5141 gen6_init_rps_frequencies(dev);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06005142
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005143 /* disable the counters and set deterministic thresholds */
5144 I915_WRITE(GEN6_RC_CONTROL, 0);
5145
5146 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5147 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5148 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5149 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5150 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5151
Chris Wilsonb4519512012-05-11 14:29:30 +01005152 for_each_ring(ring, dev_priv, i)
5153 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005154
5155 I915_WRITE(GEN6_RC_SLEEP, 0);
5156 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Daniel Vetter29c78f62013-11-16 16:04:26 +01005157 if (IS_IVYBRIDGE(dev))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005158 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5159 else
5160 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005161 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005162 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5163
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005164 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005165 rc6_mode = intel_enable_rc6(dev_priv->dev);
5166 if (rc6_mode & INTEL_RC6_ENABLE)
5167 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5168
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005169 /* We don't use those on Haswell */
5170 if (!IS_HASWELL(dev)) {
5171 if (rc6_mode & INTEL_RC6p_ENABLE)
5172 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005173
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005174 if (rc6_mode & INTEL_RC6pp_ENABLE)
5175 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5176 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005177
Ben Widawskydc39fff2013-10-18 12:32:07 -07005178 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005179
5180 I915_WRITE(GEN6_RC_CONTROL,
5181 rc6_mask |
5182 GEN6_RC_CTL_EI_MODE(1) |
5183 GEN6_RC_CTL_HW_ENABLE);
5184
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005185 /* Power down if completely idle for over 50ms */
5186 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005187 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005188
Ben Widawsky42c05262012-09-26 10:34:00 -07005189 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawskyd060c162014-03-19 18:31:08 -07005190 if (ret)
Ben Widawsky42c05262012-09-26 10:34:00 -07005191 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Ben Widawskyd060c162014-03-19 18:31:08 -07005192
5193 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
5194 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
5195 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskyb39fb292014-03-19 18:31:11 -07005196 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
Ben Widawskyd060c162014-03-19 18:31:08 -07005197 (pcu_mbox & 0xff) * 50);
Ben Widawskyb39fb292014-03-19 18:31:11 -07005198 dev_priv->rps.max_freq = pcu_mbox & 0xff;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005199 }
5200
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005201 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00005202 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005203
Ben Widawsky31643d52012-09-26 10:34:01 -07005204 rc6vids = 0;
5205 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
5206 if (IS_GEN6(dev) && ret) {
5207 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
5208 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
5209 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5210 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5211 rc6vids &= 0xffff00;
5212 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5213 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5214 if (ret)
5215 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5216 }
5217
Mika Kuoppala59bad942015-01-16 11:34:40 +02005218 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005219}
5220
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005221static void __gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005222{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005223 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005224 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005225 unsigned int gpu_freq;
5226 unsigned int max_ia_freq, min_ring_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005227 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005228 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005229
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005230 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005231
Ben Widawskyeda79642013-10-07 17:15:48 -03005232 policy = cpufreq_cpu_get(0);
5233 if (policy) {
5234 max_ia_freq = policy->cpuinfo.max_freq;
5235 cpufreq_cpu_put(policy);
5236 } else {
5237 /*
5238 * Default to measured freq if none found, PCU will ensure we
5239 * don't go over
5240 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005241 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005242 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005243
5244 /* Convert from kHz to MHz */
5245 max_ia_freq /= 1000;
5246
Ben Widawsky153b4b952013-10-22 22:05:09 -07005247 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005248 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5249 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005250
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005251 /*
5252 * For each potential GPU frequency, load a ring frequency we'd like
5253 * to use for memory access. We do this by specifying the IA frequency
5254 * the PCU should use as a reference to determine the ring frequency.
5255 */
Tom O'Rourke6985b352014-11-19 14:21:55 -08005256 for (gpu_freq = dev_priv->rps.max_freq; gpu_freq >= dev_priv->rps.min_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005257 gpu_freq--) {
Tom O'Rourke6985b352014-11-19 14:21:55 -08005258 int diff = dev_priv->rps.max_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005259 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005260
Ben Widawsky46c764d2013-11-02 21:07:49 -07005261 if (INTEL_INFO(dev)->gen >= 8) {
5262 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5263 ring_freq = max(min_ring_freq, gpu_freq);
5264 } else if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005265 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005266 ring_freq = max(min_ring_freq, ring_freq);
5267 /* leave ia_freq as the default, chosen by cpufreq */
5268 } else {
5269 /* On older processors, there is no separate ring
5270 * clock domain, so in order to boost the bandwidth
5271 * of the ring, we need to upclock the CPU (ia_freq).
5272 *
5273 * For GPU frequencies less than 750MHz,
5274 * just use the lowest ring freq.
5275 */
5276 if (gpu_freq < min_freq)
5277 ia_freq = 800;
5278 else
5279 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5280 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5281 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005282
Ben Widawsky42c05262012-09-26 10:34:00 -07005283 sandybridge_pcode_write(dev_priv,
5284 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005285 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5286 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5287 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005288 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005289}
5290
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005291void gen6_update_ring_freq(struct drm_device *dev)
5292{
5293 struct drm_i915_private *dev_priv = dev->dev_private;
5294
5295 if (INTEL_INFO(dev)->gen < 6 || IS_VALLEYVIEW(dev))
5296 return;
5297
5298 mutex_lock(&dev_priv->rps.hw_lock);
5299 __gen6_update_ring_freq(dev);
5300 mutex_unlock(&dev_priv->rps.hw_lock);
5301}
5302
Ville Syrjälä03af2042014-06-28 02:03:53 +03005303static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305304{
Deepak S095acd52015-01-17 11:05:59 +05305305 struct drm_device *dev = dev_priv->dev;
Deepak S2b6b3a02014-05-27 15:59:30 +05305306 u32 val, rp0;
5307
Deepak S095acd52015-01-17 11:05:59 +05305308 if (dev->pdev->revision >= 0x20) {
5309 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305310
Deepak S095acd52015-01-17 11:05:59 +05305311 switch (INTEL_INFO(dev)->eu_total) {
5312 case 8:
5313 /* (2 * 4) config */
5314 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5315 break;
5316 case 12:
5317 /* (2 * 6) config */
5318 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5319 break;
5320 case 16:
5321 /* (2 * 8) config */
5322 default:
5323 /* Setting (2 * 8) Min RP0 for any other combination */
5324 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5325 break;
5326 }
5327 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5328 } else {
5329 /* For pre-production hardware */
5330 val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG);
5331 rp0 = (val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
5332 PUNIT_GPU_STATUS_MAX_FREQ_MASK;
5333 }
Deepak S2b6b3a02014-05-27 15:59:30 +05305334 return rp0;
5335}
5336
5337static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5338{
5339 u32 val, rpe;
5340
5341 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5342 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5343
5344 return rpe;
5345}
5346
Deepak S7707df42014-07-12 18:46:14 +05305347static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5348{
Deepak S095acd52015-01-17 11:05:59 +05305349 struct drm_device *dev = dev_priv->dev;
Deepak S7707df42014-07-12 18:46:14 +05305350 u32 val, rp1;
5351
Deepak S095acd52015-01-17 11:05:59 +05305352 if (dev->pdev->revision >= 0x20) {
5353 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5354 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5355 } else {
5356 /* For pre-production hardware */
5357 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5358 rp1 = ((val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
5359 PUNIT_GPU_STATUS_MAX_FREQ_MASK);
5360 }
Deepak S7707df42014-07-12 18:46:14 +05305361 return rp1;
5362}
5363
Deepak Sf8f2b002014-07-10 13:16:21 +05305364static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5365{
5366 u32 val, rp1;
5367
5368 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5369
5370 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5371
5372 return rp1;
5373}
5374
Ville Syrjälä03af2042014-06-28 02:03:53 +03005375static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005376{
5377 u32 val, rp0;
5378
Jani Nikula64936252013-05-22 15:36:20 +03005379 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005380
5381 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5382 /* Clamp to max */
5383 rp0 = min_t(u32, rp0, 0xea);
5384
5385 return rp0;
5386}
5387
5388static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5389{
5390 u32 val, rpe;
5391
Jani Nikula64936252013-05-22 15:36:20 +03005392 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005393 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005394 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005395 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5396
5397 return rpe;
5398}
5399
Ville Syrjälä03af2042014-06-28 02:03:53 +03005400static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005401{
Jani Nikula64936252013-05-22 15:36:20 +03005402 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005403}
5404
Imre Deakae484342014-03-31 15:10:44 +03005405/* Check that the pctx buffer wasn't move under us. */
5406static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5407{
5408 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5409
5410 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5411 dev_priv->vlv_pctx->stolen->start);
5412}
5413
Deepak S38807742014-05-23 21:00:15 +05305414
5415/* Check that the pcbr address is not empty. */
5416static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5417{
5418 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5419
5420 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5421}
5422
5423static void cherryview_setup_pctx(struct drm_device *dev)
5424{
5425 struct drm_i915_private *dev_priv = dev->dev_private;
5426 unsigned long pctx_paddr, paddr;
5427 struct i915_gtt *gtt = &dev_priv->gtt;
5428 u32 pcbr;
5429 int pctx_size = 32*1024;
5430
5431 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5432
5433 pcbr = I915_READ(VLV_PCBR);
5434 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005435 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305436 paddr = (dev_priv->mm.stolen_base +
5437 (gtt->stolen_size - pctx_size));
5438
5439 pctx_paddr = (paddr & (~4095));
5440 I915_WRITE(VLV_PCBR, pctx_paddr);
5441 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005442
5443 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305444}
5445
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005446static void valleyview_setup_pctx(struct drm_device *dev)
5447{
5448 struct drm_i915_private *dev_priv = dev->dev_private;
5449 struct drm_i915_gem_object *pctx;
5450 unsigned long pctx_paddr;
5451 u32 pcbr;
5452 int pctx_size = 24*1024;
5453
Imre Deak17b0c1f2014-02-11 21:39:06 +02005454 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5455
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005456 pcbr = I915_READ(VLV_PCBR);
5457 if (pcbr) {
5458 /* BIOS set it up already, grab the pre-alloc'd space */
5459 int pcbr_offset;
5460
5461 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
5462 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
5463 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005464 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005465 pctx_size);
5466 goto out;
5467 }
5468
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005469 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5470
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005471 /*
5472 * From the Gunit register HAS:
5473 * The Gfx driver is expected to program this register and ensure
5474 * proper allocation within Gfx stolen memory. For example, this
5475 * register should be programmed such than the PCBR range does not
5476 * overlap with other ranges, such as the frame buffer, protected
5477 * memory, or any other relevant ranges.
5478 */
5479 pctx = i915_gem_object_create_stolen(dev, pctx_size);
5480 if (!pctx) {
5481 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
5482 return;
5483 }
5484
5485 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5486 I915_WRITE(VLV_PCBR, pctx_paddr);
5487
5488out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005489 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005490 dev_priv->vlv_pctx = pctx;
5491}
5492
Imre Deakae484342014-03-31 15:10:44 +03005493static void valleyview_cleanup_pctx(struct drm_device *dev)
5494{
5495 struct drm_i915_private *dev_priv = dev->dev_private;
5496
5497 if (WARN_ON(!dev_priv->vlv_pctx))
5498 return;
5499
5500 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
5501 dev_priv->vlv_pctx = NULL;
5502}
5503
Imre Deak4e805192014-04-14 20:24:41 +03005504static void valleyview_init_gt_powersave(struct drm_device *dev)
5505{
5506 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005507 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005508
5509 valleyview_setup_pctx(dev);
5510
5511 mutex_lock(&dev_priv->rps.hw_lock);
5512
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005513 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5514 switch ((val >> 6) & 3) {
5515 case 0:
5516 case 1:
5517 dev_priv->mem_freq = 800;
5518 break;
5519 case 2:
5520 dev_priv->mem_freq = 1066;
5521 break;
5522 case 3:
5523 dev_priv->mem_freq = 1333;
5524 break;
5525 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005526 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005527
Imre Deak4e805192014-04-14 20:24:41 +03005528 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5529 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5530 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005531 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005532 dev_priv->rps.max_freq);
5533
5534 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5535 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005536 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005537 dev_priv->rps.efficient_freq);
5538
Deepak Sf8f2b002014-07-10 13:16:21 +05305539 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5540 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005541 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305542 dev_priv->rps.rp1_freq);
5543
Imre Deak4e805192014-04-14 20:24:41 +03005544 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5545 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005546 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005547 dev_priv->rps.min_freq);
5548
Chris Wilsonaed242f2015-03-18 09:48:21 +00005549 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5550
Imre Deak4e805192014-04-14 20:24:41 +03005551 /* Preserve min/max settings in case of re-init */
5552 if (dev_priv->rps.max_freq_softlimit == 0)
5553 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5554
5555 if (dev_priv->rps.min_freq_softlimit == 0)
5556 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5557
5558 mutex_unlock(&dev_priv->rps.hw_lock);
5559}
5560
Deepak S38807742014-05-23 21:00:15 +05305561static void cherryview_init_gt_powersave(struct drm_device *dev)
5562{
Deepak S2b6b3a02014-05-27 15:59:30 +05305563 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005564 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305565
Deepak S38807742014-05-23 21:00:15 +05305566 cherryview_setup_pctx(dev);
Deepak S2b6b3a02014-05-27 15:59:30 +05305567
5568 mutex_lock(&dev_priv->rps.hw_lock);
5569
Ville Syrjäläa5805162015-05-26 20:42:30 +03005570 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005571 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005572 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005573
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005574 switch ((val >> 2) & 0x7) {
5575 case 0:
5576 case 1:
5577 dev_priv->rps.cz_freq = 200;
5578 dev_priv->mem_freq = 1600;
5579 break;
5580 case 2:
5581 dev_priv->rps.cz_freq = 267;
5582 dev_priv->mem_freq = 1600;
5583 break;
5584 case 3:
5585 dev_priv->rps.cz_freq = 333;
5586 dev_priv->mem_freq = 2000;
5587 break;
5588 case 4:
5589 dev_priv->rps.cz_freq = 320;
5590 dev_priv->mem_freq = 1600;
5591 break;
5592 case 5:
5593 dev_priv->rps.cz_freq = 400;
5594 dev_priv->mem_freq = 1600;
5595 break;
5596 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005597 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005598
Deepak S2b6b3a02014-05-27 15:59:30 +05305599 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5600 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5601 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005602 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305603 dev_priv->rps.max_freq);
5604
5605 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5606 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005607 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305608 dev_priv->rps.efficient_freq);
5609
Deepak S7707df42014-07-12 18:46:14 +05305610 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5611 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005612 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305613 dev_priv->rps.rp1_freq);
5614
Deepak S5b7c91b2015-05-09 18:15:46 +05305615 /* PUnit validated range is only [RPe, RP0] */
5616 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305617 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005618 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305619 dev_priv->rps.min_freq);
5620
Ville Syrjälä1c147622014-08-18 14:42:43 +03005621 WARN_ONCE((dev_priv->rps.max_freq |
5622 dev_priv->rps.efficient_freq |
5623 dev_priv->rps.rp1_freq |
5624 dev_priv->rps.min_freq) & 1,
5625 "Odd GPU freq values\n");
5626
Chris Wilsonaed242f2015-03-18 09:48:21 +00005627 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5628
Deepak S2b6b3a02014-05-27 15:59:30 +05305629 /* Preserve min/max settings in case of re-init */
5630 if (dev_priv->rps.max_freq_softlimit == 0)
5631 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5632
5633 if (dev_priv->rps.min_freq_softlimit == 0)
5634 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5635
5636 mutex_unlock(&dev_priv->rps.hw_lock);
Deepak S38807742014-05-23 21:00:15 +05305637}
5638
Imre Deak4e805192014-04-14 20:24:41 +03005639static void valleyview_cleanup_gt_powersave(struct drm_device *dev)
5640{
5641 valleyview_cleanup_pctx(dev);
5642}
5643
Deepak S38807742014-05-23 21:00:15 +05305644static void cherryview_enable_rps(struct drm_device *dev)
5645{
5646 struct drm_i915_private *dev_priv = dev->dev_private;
5647 struct intel_engine_cs *ring;
Deepak S2b6b3a02014-05-27 15:59:30 +05305648 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305649 int i;
5650
5651 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5652
5653 gtfifodbg = I915_READ(GTFIFODBG);
5654 if (gtfifodbg) {
5655 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5656 gtfifodbg);
5657 I915_WRITE(GTFIFODBG, gtfifodbg);
5658 }
5659
5660 cherryview_check_pctx(dev_priv);
5661
5662 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5663 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005664 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305665
Ville Syrjälä160614a2015-01-19 13:50:47 +02005666 /* Disable RC states. */
5667 I915_WRITE(GEN6_RC_CONTROL, 0);
5668
Deepak S38807742014-05-23 21:00:15 +05305669 /* 2a: Program RC6 thresholds.*/
5670 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5671 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5672 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5673
5674 for_each_ring(ring, dev_priv, i)
5675 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5676 I915_WRITE(GEN6_RC_SLEEP, 0);
5677
Deepak Sf4f71c72015-03-28 15:23:35 +05305678 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
5679 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05305680
5681 /* allows RC6 residency counter to work */
5682 I915_WRITE(VLV_COUNTER_CONTROL,
5683 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5684 VLV_MEDIA_RC6_COUNT_EN |
5685 VLV_RENDER_RC6_COUNT_EN));
5686
5687 /* For now we assume BIOS is allocating and populating the PCBR */
5688 pcbr = I915_READ(VLV_PCBR);
5689
Deepak S38807742014-05-23 21:00:15 +05305690 /* 3: Enable RC6 */
5691 if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) &&
5692 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005693 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305694
5695 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5696
Deepak S2b6b3a02014-05-27 15:59:30 +05305697 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005698 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305699 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5700 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5701 I915_WRITE(GEN6_RP_UP_EI, 66000);
5702 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5703
5704 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5705
5706 /* 5: Enable RPS */
5707 I915_WRITE(GEN6_RP_CONTROL,
5708 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005709 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305710 GEN6_RP_ENABLE |
5711 GEN6_RP_UP_BUSY_AVG |
5712 GEN6_RP_DOWN_IDLE_AVG);
5713
Deepak S3ef62342015-04-29 08:36:24 +05305714 /* Setting Fixed Bias */
5715 val = VLV_OVERRIDE_EN |
5716 VLV_SOC_TDP_EN |
5717 CHV_BIAS_CPU_50_SOC_50;
5718 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5719
Deepak S2b6b3a02014-05-27 15:59:30 +05305720 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5721
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005722 /* RPS code assumes GPLL is used */
5723 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5724
Ville Syrjäläc8e96272014-11-07 21:33:44 +02005725 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
Deepak S2b6b3a02014-05-27 15:59:30 +05305726 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5727
5728 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
5729 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005730 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305731 dev_priv->rps.cur_freq);
5732
5733 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005734 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305735 dev_priv->rps.efficient_freq);
5736
5737 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
5738
Mika Kuoppala59bad942015-01-16 11:34:40 +02005739 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305740}
5741
Jesse Barnes0a073b82013-04-17 15:54:58 -07005742static void valleyview_enable_rps(struct drm_device *dev)
5743{
5744 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005745 struct intel_engine_cs *ring;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07005746 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005747 int i;
5748
5749 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5750
Imre Deakae484342014-03-31 15:10:44 +03005751 valleyview_check_pctx(dev_priv);
5752
Jesse Barnes0a073b82013-04-17 15:54:58 -07005753 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07005754 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5755 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005756 I915_WRITE(GTFIFODBG, gtfifodbg);
5757 }
5758
Deepak Sc8d9a592013-11-23 14:55:42 +05305759 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005760 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005761
Ville Syrjälä160614a2015-01-19 13:50:47 +02005762 /* Disable RC states. */
5763 I915_WRITE(GEN6_RC_CONTROL, 0);
5764
Ville Syrjäläcad725f2015-01-19 13:50:48 +02005765 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005766 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5767 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5768 I915_WRITE(GEN6_RP_UP_EI, 66000);
5769 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5770
5771 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5772
5773 I915_WRITE(GEN6_RP_CONTROL,
5774 GEN6_RP_MEDIA_TURBO |
5775 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5776 GEN6_RP_MEDIA_IS_GFX |
5777 GEN6_RP_ENABLE |
5778 GEN6_RP_UP_BUSY_AVG |
5779 GEN6_RP_DOWN_IDLE_CONT);
5780
5781 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
5782 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5783 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5784
5785 for_each_ring(ring, dev_priv, i)
5786 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5787
Jesse Barnes2f0aa302013-11-15 09:32:11 -08005788 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005789
5790 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07005791 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04005792 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
5793 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07005794 VLV_MEDIA_RC6_COUNT_EN |
5795 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04005796
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005797 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08005798 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07005799
5800 intel_print_rc6_info(dev, rc6_mode);
5801
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005802 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005803
Deepak S3ef62342015-04-29 08:36:24 +05305804 /* Setting Fixed Bias */
5805 val = VLV_OVERRIDE_EN |
5806 VLV_SOC_TDP_EN |
5807 VLV_BIAS_CPU_125_SOC_875;
5808 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5809
Jani Nikula64936252013-05-22 15:36:20 +03005810 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005811
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005812 /* RPS code assumes GPLL is used */
5813 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5814
Ville Syrjäläc8e96272014-11-07 21:33:44 +02005815 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
Jesse Barnes0a073b82013-04-17 15:54:58 -07005816 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5817
Ben Widawskyb39fb292014-03-19 18:31:11 -07005818 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03005819 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005820 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005821 dev_priv->rps.cur_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005822
Ville Syrjälä73008b92013-06-25 19:21:01 +03005823 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005824 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005825 dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005826
Ben Widawskyb39fb292014-03-19 18:31:11 -07005827 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005828
Mika Kuoppala59bad942015-01-16 11:34:40 +02005829 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005830}
5831
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005832static unsigned long intel_pxfreq(u32 vidfreq)
5833{
5834 unsigned long freq;
5835 int div = (vidfreq & 0x3f0000) >> 16;
5836 int post = (vidfreq & 0x3000) >> 12;
5837 int pre = (vidfreq & 0x7);
5838
5839 if (!pre)
5840 return 0;
5841
5842 freq = ((div * 133333) / ((1<<post) * pre));
5843
5844 return freq;
5845}
5846
Daniel Vettereb48eb02012-04-26 23:28:12 +02005847static const struct cparams {
5848 u16 i;
5849 u16 t;
5850 u16 m;
5851 u16 c;
5852} cparams[] = {
5853 { 1, 1333, 301, 28664 },
5854 { 1, 1066, 294, 24460 },
5855 { 1, 800, 294, 25192 },
5856 { 0, 1333, 276, 27605 },
5857 { 0, 1066, 276, 27605 },
5858 { 0, 800, 231, 23784 },
5859};
5860
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005861static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005862{
5863 u64 total_count, diff, ret;
5864 u32 count1, count2, count3, m = 0, c = 0;
5865 unsigned long now = jiffies_to_msecs(jiffies), diff1;
5866 int i;
5867
Daniel Vetter02d71952012-08-09 16:44:54 +02005868 assert_spin_locked(&mchdev_lock);
5869
Daniel Vetter20e4d402012-08-08 23:35:39 +02005870 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005871
5872 /* Prevent division-by-zero if we are asking too fast.
5873 * Also, we don't get interesting results if we are polling
5874 * faster than once in 10ms, so just return the saved value
5875 * in such cases.
5876 */
5877 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02005878 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005879
5880 count1 = I915_READ(DMIEC);
5881 count2 = I915_READ(DDREC);
5882 count3 = I915_READ(CSIEC);
5883
5884 total_count = count1 + count2 + count3;
5885
5886 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02005887 if (total_count < dev_priv->ips.last_count1) {
5888 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005889 diff += total_count;
5890 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005891 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005892 }
5893
5894 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005895 if (cparams[i].i == dev_priv->ips.c_m &&
5896 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02005897 m = cparams[i].m;
5898 c = cparams[i].c;
5899 break;
5900 }
5901 }
5902
5903 diff = div_u64(diff, diff1);
5904 ret = ((m * diff) + c);
5905 ret = div_u64(ret, 10);
5906
Daniel Vetter20e4d402012-08-08 23:35:39 +02005907 dev_priv->ips.last_count1 = total_count;
5908 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005909
Daniel Vetter20e4d402012-08-08 23:35:39 +02005910 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005911
5912 return ret;
5913}
5914
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005915unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
5916{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005917 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005918 unsigned long val;
5919
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005920 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005921 return 0;
5922
5923 spin_lock_irq(&mchdev_lock);
5924
5925 val = __i915_chipset_val(dev_priv);
5926
5927 spin_unlock_irq(&mchdev_lock);
5928
5929 return val;
5930}
5931
Daniel Vettereb48eb02012-04-26 23:28:12 +02005932unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
5933{
5934 unsigned long m, x, b;
5935 u32 tsfs;
5936
5937 tsfs = I915_READ(TSFS);
5938
5939 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
5940 x = I915_READ8(TR1);
5941
5942 b = tsfs & TSFS_INTR_MASK;
5943
5944 return ((m * x) / 127) - b;
5945}
5946
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005947static int _pxvid_to_vd(u8 pxvid)
5948{
5949 if (pxvid == 0)
5950 return 0;
5951
5952 if (pxvid >= 8 && pxvid < 31)
5953 pxvid = 31;
5954
5955 return (pxvid + 2) * 125;
5956}
5957
5958static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005959{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005960 struct drm_device *dev = dev_priv->dev;
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005961 const int vd = _pxvid_to_vd(pxvid);
5962 const int vm = vd - 1125;
5963
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005964 if (INTEL_INFO(dev)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005965 return vm > 0 ? vm : 0;
5966
5967 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005968}
5969
Daniel Vetter02d71952012-08-09 16:44:54 +02005970static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005971{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005972 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005973 u32 count;
5974
Daniel Vetter02d71952012-08-09 16:44:54 +02005975 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005976
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005977 now = ktime_get_raw_ns();
5978 diffms = now - dev_priv->ips.last_time2;
5979 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005980
5981 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02005982 if (!diffms)
5983 return;
5984
5985 count = I915_READ(GFXEC);
5986
Daniel Vetter20e4d402012-08-08 23:35:39 +02005987 if (count < dev_priv->ips.last_count2) {
5988 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005989 diff += count;
5990 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005991 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005992 }
5993
Daniel Vetter20e4d402012-08-08 23:35:39 +02005994 dev_priv->ips.last_count2 = count;
5995 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005996
5997 /* More magic constants... */
5998 diff = diff * 1181;
5999 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02006000 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006001}
6002
Daniel Vetter02d71952012-08-09 16:44:54 +02006003void i915_update_gfx_val(struct drm_i915_private *dev_priv)
6004{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00006005 struct drm_device *dev = dev_priv->dev;
6006
6007 if (INTEL_INFO(dev)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02006008 return;
6009
Daniel Vetter92703882012-08-09 16:46:01 +02006010 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006011
6012 __i915_update_gfx_val(dev_priv);
6013
Daniel Vetter92703882012-08-09 16:46:01 +02006014 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006015}
6016
Chris Wilsonf531dcb2012-09-25 10:16:12 +01006017static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006018{
6019 unsigned long t, corr, state1, corr2, state2;
6020 u32 pxvid, ext_v;
6021
Daniel Vetter02d71952012-08-09 16:44:54 +02006022 assert_spin_locked(&mchdev_lock);
6023
Ben Widawskyb39fb292014-03-19 18:31:11 -07006024 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_freq * 4));
Daniel Vettereb48eb02012-04-26 23:28:12 +02006025 pxvid = (pxvid >> 24) & 0x7f;
6026 ext_v = pvid_to_extvid(dev_priv, pxvid);
6027
6028 state1 = ext_v;
6029
6030 t = i915_mch_val(dev_priv);
6031
6032 /* Revel in the empirically derived constants */
6033
6034 /* Correction factor in 1/100000 units */
6035 if (t > 80)
6036 corr = ((t * 2349) + 135940);
6037 else if (t >= 50)
6038 corr = ((t * 964) + 29317);
6039 else /* < 50 */
6040 corr = ((t * 301) + 1004);
6041
6042 corr = corr * ((150142 * state1) / 10000 - 78642);
6043 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02006044 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006045
6046 state2 = (corr2 * state1) / 10000;
6047 state2 /= 100; /* convert to mW */
6048
Daniel Vetter02d71952012-08-09 16:44:54 +02006049 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006050
Daniel Vetter20e4d402012-08-08 23:35:39 +02006051 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006052}
6053
Chris Wilsonf531dcb2012-09-25 10:16:12 +01006054unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
6055{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00006056 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01006057 unsigned long val;
6058
Damien Lespiau3d13ef22014-02-07 19:12:47 +00006059 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01006060 return 0;
6061
6062 spin_lock_irq(&mchdev_lock);
6063
6064 val = __i915_gfx_val(dev_priv);
6065
6066 spin_unlock_irq(&mchdev_lock);
6067
6068 return val;
6069}
6070
Daniel Vettereb48eb02012-04-26 23:28:12 +02006071/**
6072 * i915_read_mch_val - return value for IPS use
6073 *
6074 * Calculate and return a value for the IPS driver to use when deciding whether
6075 * we have thermal and power headroom to increase CPU or GPU power budget.
6076 */
6077unsigned long i915_read_mch_val(void)
6078{
6079 struct drm_i915_private *dev_priv;
6080 unsigned long chipset_val, graphics_val, ret = 0;
6081
Daniel Vetter92703882012-08-09 16:46:01 +02006082 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006083 if (!i915_mch_dev)
6084 goto out_unlock;
6085 dev_priv = i915_mch_dev;
6086
Chris Wilsonf531dcb2012-09-25 10:16:12 +01006087 chipset_val = __i915_chipset_val(dev_priv);
6088 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006089
6090 ret = chipset_val + graphics_val;
6091
6092out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006093 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006094
6095 return ret;
6096}
6097EXPORT_SYMBOL_GPL(i915_read_mch_val);
6098
6099/**
6100 * i915_gpu_raise - raise GPU frequency limit
6101 *
6102 * Raise the limit; IPS indicates we have thermal headroom.
6103 */
6104bool i915_gpu_raise(void)
6105{
6106 struct drm_i915_private *dev_priv;
6107 bool ret = true;
6108
Daniel Vetter92703882012-08-09 16:46:01 +02006109 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006110 if (!i915_mch_dev) {
6111 ret = false;
6112 goto out_unlock;
6113 }
6114 dev_priv = i915_mch_dev;
6115
Daniel Vetter20e4d402012-08-08 23:35:39 +02006116 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
6117 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006118
6119out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006120 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006121
6122 return ret;
6123}
6124EXPORT_SYMBOL_GPL(i915_gpu_raise);
6125
6126/**
6127 * i915_gpu_lower - lower GPU frequency limit
6128 *
6129 * IPS indicates we're close to a thermal limit, so throttle back the GPU
6130 * frequency maximum.
6131 */
6132bool i915_gpu_lower(void)
6133{
6134 struct drm_i915_private *dev_priv;
6135 bool ret = true;
6136
Daniel Vetter92703882012-08-09 16:46:01 +02006137 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006138 if (!i915_mch_dev) {
6139 ret = false;
6140 goto out_unlock;
6141 }
6142 dev_priv = i915_mch_dev;
6143
Daniel Vetter20e4d402012-08-08 23:35:39 +02006144 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
6145 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006146
6147out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006148 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006149
6150 return ret;
6151}
6152EXPORT_SYMBOL_GPL(i915_gpu_lower);
6153
6154/**
6155 * i915_gpu_busy - indicate GPU business to IPS
6156 *
6157 * Tell the IPS driver whether or not the GPU is busy.
6158 */
6159bool i915_gpu_busy(void)
6160{
6161 struct drm_i915_private *dev_priv;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01006162 struct intel_engine_cs *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006163 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01006164 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006165
Daniel Vetter92703882012-08-09 16:46:01 +02006166 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006167 if (!i915_mch_dev)
6168 goto out_unlock;
6169 dev_priv = i915_mch_dev;
6170
Chris Wilsonf047e392012-07-21 12:31:41 +01006171 for_each_ring(ring, dev_priv, i)
6172 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006173
6174out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006175 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006176
6177 return ret;
6178}
6179EXPORT_SYMBOL_GPL(i915_gpu_busy);
6180
6181/**
6182 * i915_gpu_turbo_disable - disable graphics turbo
6183 *
6184 * Disable graphics turbo by resetting the max frequency and setting the
6185 * current frequency to the default.
6186 */
6187bool i915_gpu_turbo_disable(void)
6188{
6189 struct drm_i915_private *dev_priv;
6190 bool ret = true;
6191
Daniel Vetter92703882012-08-09 16:46:01 +02006192 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006193 if (!i915_mch_dev) {
6194 ret = false;
6195 goto out_unlock;
6196 }
6197 dev_priv = i915_mch_dev;
6198
Daniel Vetter20e4d402012-08-08 23:35:39 +02006199 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006200
Daniel Vetter20e4d402012-08-08 23:35:39 +02006201 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006202 ret = false;
6203
6204out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006205 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006206
6207 return ret;
6208}
6209EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6210
6211/**
6212 * Tells the intel_ips driver that the i915 driver is now loaded, if
6213 * IPS got loaded first.
6214 *
6215 * This awkward dance is so that neither module has to depend on the
6216 * other in order for IPS to do the appropriate communication of
6217 * GPU turbo limits to i915.
6218 */
6219static void
6220ips_ping_for_i915_load(void)
6221{
6222 void (*link)(void);
6223
6224 link = symbol_get(ips_link_to_i915_driver);
6225 if (link) {
6226 link();
6227 symbol_put(ips_link_to_i915_driver);
6228 }
6229}
6230
6231void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6232{
Daniel Vetter02d71952012-08-09 16:44:54 +02006233 /* We only register the i915 ips part with intel-ips once everything is
6234 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006235 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006236 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006237 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006238
6239 ips_ping_for_i915_load();
6240}
6241
6242void intel_gpu_ips_teardown(void)
6243{
Daniel Vetter92703882012-08-09 16:46:01 +02006244 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006245 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006246 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006247}
Deepak S76c3552f2014-01-30 23:08:16 +05306248
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006249static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006250{
6251 struct drm_i915_private *dev_priv = dev->dev_private;
6252 u32 lcfuse;
6253 u8 pxw[16];
6254 int i;
6255
6256 /* Disable to program */
6257 I915_WRITE(ECR, 0);
6258 POSTING_READ(ECR);
6259
6260 /* Program energy weights for various events */
6261 I915_WRITE(SDEW, 0x15040d00);
6262 I915_WRITE(CSIEW0, 0x007f0000);
6263 I915_WRITE(CSIEW1, 0x1e220004);
6264 I915_WRITE(CSIEW2, 0x04000004);
6265
6266 for (i = 0; i < 5; i++)
6267 I915_WRITE(PEW + (i * 4), 0);
6268 for (i = 0; i < 3; i++)
6269 I915_WRITE(DEW + (i * 4), 0);
6270
6271 /* Program P-state weights to account for frequency power adjustment */
6272 for (i = 0; i < 16; i++) {
6273 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
6274 unsigned long freq = intel_pxfreq(pxvidfreq);
6275 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6276 PXVFREQ_PX_SHIFT;
6277 unsigned long val;
6278
6279 val = vid * vid;
6280 val *= (freq / 1000);
6281 val *= 255;
6282 val /= (127*127*900);
6283 if (val > 0xff)
6284 DRM_ERROR("bad pxval: %ld\n", val);
6285 pxw[i] = val;
6286 }
6287 /* Render standby states get 0 weight */
6288 pxw[14] = 0;
6289 pxw[15] = 0;
6290
6291 for (i = 0; i < 4; i++) {
6292 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6293 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
6294 I915_WRITE(PXW + (i * 4), val);
6295 }
6296
6297 /* Adjust magic regs to magic values (more experimental results) */
6298 I915_WRITE(OGW0, 0);
6299 I915_WRITE(OGW1, 0);
6300 I915_WRITE(EG0, 0x00007f00);
6301 I915_WRITE(EG1, 0x0000000e);
6302 I915_WRITE(EG2, 0x000e0000);
6303 I915_WRITE(EG3, 0x68000300);
6304 I915_WRITE(EG4, 0x42000000);
6305 I915_WRITE(EG5, 0x00140031);
6306 I915_WRITE(EG6, 0);
6307 I915_WRITE(EG7, 0);
6308
6309 for (i = 0; i < 8; i++)
6310 I915_WRITE(PXWL + (i * 4), 0);
6311
6312 /* Enable PMON + select events */
6313 I915_WRITE(ECR, 0x80000019);
6314
6315 lcfuse = I915_READ(LCFUSE02);
6316
Daniel Vetter20e4d402012-08-08 23:35:39 +02006317 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006318}
6319
Imre Deakae484342014-03-31 15:10:44 +03006320void intel_init_gt_powersave(struct drm_device *dev)
6321{
Imre Deake6069ca2014-04-18 16:01:02 +03006322 i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6);
6323
Deepak S38807742014-05-23 21:00:15 +05306324 if (IS_CHERRYVIEW(dev))
6325 cherryview_init_gt_powersave(dev);
6326 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006327 valleyview_init_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006328}
6329
6330void intel_cleanup_gt_powersave(struct drm_device *dev)
6331{
Deepak S38807742014-05-23 21:00:15 +05306332 if (IS_CHERRYVIEW(dev))
6333 return;
6334 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006335 valleyview_cleanup_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006336}
6337
Imre Deakdbea3ce2014-12-15 18:59:28 +02006338static void gen6_suspend_rps(struct drm_device *dev)
6339{
6340 struct drm_i915_private *dev_priv = dev->dev_private;
6341
6342 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
6343
Akash Goel4c2a8892015-03-06 11:07:24 +05306344 gen6_disable_rps_interrupts(dev);
Imre Deakdbea3ce2014-12-15 18:59:28 +02006345}
6346
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006347/**
6348 * intel_suspend_gt_powersave - suspend PM work and helper threads
6349 * @dev: drm device
6350 *
6351 * We don't want to disable RC6 or other features here, we just want
6352 * to make sure any work we've queued has finished and won't bother
6353 * us while we're suspended.
6354 */
6355void intel_suspend_gt_powersave(struct drm_device *dev)
6356{
6357 struct drm_i915_private *dev_priv = dev->dev_private;
6358
Imre Deakd4d70aa2014-11-19 15:30:04 +02006359 if (INTEL_INFO(dev)->gen < 6)
6360 return;
6361
Imre Deakdbea3ce2014-12-15 18:59:28 +02006362 gen6_suspend_rps(dev);
Deepak Sb47adc12014-06-20 20:03:02 +05306363
6364 /* Force GPU to min freq during suspend */
6365 gen6_rps_idle(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006366}
6367
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006368void intel_disable_gt_powersave(struct drm_device *dev)
6369{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006370 struct drm_i915_private *dev_priv = dev->dev_private;
6371
Daniel Vetter930ebb42012-06-29 23:32:16 +02006372 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006373 ironlake_disable_drps(dev);
Deepak S38807742014-05-23 21:00:15 +05306374 } else if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter10d8d362014-06-12 17:48:52 +02006375 intel_suspend_gt_powersave(dev);
Imre Deake4948372014-05-12 18:35:04 +03006376
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006377 mutex_lock(&dev_priv->rps.hw_lock);
Zhe Wang20e49362014-11-04 17:07:05 +00006378 if (INTEL_INFO(dev)->gen >= 9)
6379 gen9_disable_rps(dev);
6380 else if (IS_CHERRYVIEW(dev))
Deepak S38807742014-05-23 21:00:15 +05306381 cherryview_disable_rps(dev);
6382 else if (IS_VALLEYVIEW(dev))
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006383 valleyview_disable_rps(dev);
6384 else
6385 gen6_disable_rps(dev);
Imre Deake5347702014-11-19 15:30:02 +02006386
Chris Wilsonc0951f02013-10-10 21:58:50 +01006387 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006388 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02006389 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006390}
6391
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006392static void intel_gen6_powersave_work(struct work_struct *work)
6393{
6394 struct drm_i915_private *dev_priv =
6395 container_of(work, struct drm_i915_private,
6396 rps.delayed_resume_work.work);
6397 struct drm_device *dev = dev_priv->dev;
6398
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006399 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006400
Akash Goel4c2a8892015-03-06 11:07:24 +05306401 gen6_reset_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006402
Deepak S38807742014-05-23 21:00:15 +05306403 if (IS_CHERRYVIEW(dev)) {
6404 cherryview_enable_rps(dev);
6405 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -07006406 valleyview_enable_rps(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006407 } else if (INTEL_INFO(dev)->gen >= 9) {
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006408 gen9_enable_rc6(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006409 gen9_enable_rps(dev);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006410 __gen6_update_ring_freq(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006411 } else if (IS_BROADWELL(dev)) {
6412 gen8_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006413 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006414 } else {
6415 gen6_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006416 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006417 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006418
6419 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6420 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6421
6422 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6423 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6424
Chris Wilsonc0951f02013-10-10 21:58:50 +01006425 dev_priv->rps.enabled = true;
Imre Deak3cc134e2014-11-19 15:30:03 +02006426
Akash Goel4c2a8892015-03-06 11:07:24 +05306427 gen6_enable_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006428
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006429 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deakc6df39b2014-04-14 20:24:29 +03006430
6431 intel_runtime_pm_put(dev_priv);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006432}
6433
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006434void intel_enable_gt_powersave(struct drm_device *dev)
6435{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006436 struct drm_i915_private *dev_priv = dev->dev_private;
6437
Yu Zhangf61018b2015-02-10 19:05:52 +08006438 /* Powersaving is controlled by the host when inside a VM */
6439 if (intel_vgpu_active(dev))
6440 return;
6441
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006442 if (IS_IRONLAKE_M(dev)) {
Imre Deakdc1d0132014-04-14 20:24:28 +03006443 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006444 ironlake_enable_drps(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006445 intel_init_emon(dev);
Imre Deakdc1d0132014-04-14 20:24:28 +03006446 mutex_unlock(&dev->struct_mutex);
Deepak S38807742014-05-23 21:00:15 +05306447 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006448 /*
6449 * PCU communication is slow and this doesn't need to be
6450 * done at any specific time, so do this out of our fast path
6451 * to make resume and init faster.
Imre Deakc6df39b2014-04-14 20:24:29 +03006452 *
6453 * We depend on the HW RC6 power context save/restore
6454 * mechanism when entering D3 through runtime PM suspend. So
6455 * disable RPM until RPS/RC6 is properly setup. We can only
6456 * get here via the driver load/system resume/runtime resume
6457 * paths, so the _noresume version is enough (and in case of
6458 * runtime resume it's necessary).
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006459 */
Imre Deakc6df39b2014-04-14 20:24:29 +03006460 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
6461 round_jiffies_up_relative(HZ)))
6462 intel_runtime_pm_get_noresume(dev_priv);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006463 }
6464}
6465
Imre Deakc6df39b2014-04-14 20:24:29 +03006466void intel_reset_gt_powersave(struct drm_device *dev)
6467{
6468 struct drm_i915_private *dev_priv = dev->dev_private;
6469
Imre Deakdbea3ce2014-12-15 18:59:28 +02006470 if (INTEL_INFO(dev)->gen < 6)
6471 return;
6472
6473 gen6_suspend_rps(dev);
Imre Deakc6df39b2014-04-14 20:24:29 +03006474 dev_priv->rps.enabled = false;
Imre Deakc6df39b2014-04-14 20:24:29 +03006475}
6476
Daniel Vetter3107bd42012-10-31 22:52:31 +01006477static void ibx_init_clock_gating(struct drm_device *dev)
6478{
6479 struct drm_i915_private *dev_priv = dev->dev_private;
6480
6481 /*
6482 * On Ibex Peak and Cougar Point, we need to disable clock
6483 * gating for the panel power sequencer or it will fail to
6484 * start up when no ports are active.
6485 */
6486 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6487}
6488
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006489static void g4x_disable_trickle_feed(struct drm_device *dev)
6490{
6491 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006492 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006493
Damien Lespiau055e3932014-08-18 13:49:10 +01006494 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006495 I915_WRITE(DSPCNTR(pipe),
6496 I915_READ(DSPCNTR(pipe)) |
6497 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006498
6499 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6500 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006501 }
6502}
6503
Ville Syrjälä017636c2013-12-05 15:51:37 +02006504static void ilk_init_lp_watermarks(struct drm_device *dev)
6505{
6506 struct drm_i915_private *dev_priv = dev->dev_private;
6507
6508 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6509 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6510 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6511
6512 /*
6513 * Don't touch WM1S_LP_EN here.
6514 * Doing so could cause underruns.
6515 */
6516}
6517
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006518static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006519{
6520 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006521 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006522
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006523 /*
6524 * Required for FBC
6525 * WaFbcDisableDpfcClockGating:ilk
6526 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006527 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6528 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6529 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006530
6531 I915_WRITE(PCH_3DCGDIS0,
6532 MARIUNIT_CLOCK_GATE_DISABLE |
6533 SVSMUNIT_CLOCK_GATE_DISABLE);
6534 I915_WRITE(PCH_3DCGDIS1,
6535 VFMUNIT_CLOCK_GATE_DISABLE);
6536
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006537 /*
6538 * According to the spec the following bits should be set in
6539 * order to enable memory self-refresh
6540 * The bit 22/21 of 0x42004
6541 * The bit 5 of 0x42020
6542 * The bit 15 of 0x45000
6543 */
6544 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6545 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6546 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006547 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006548 I915_WRITE(DISP_ARB_CTL,
6549 (I915_READ(DISP_ARB_CTL) |
6550 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006551
6552 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006553
6554 /*
6555 * Based on the document from hardware guys the following bits
6556 * should be set unconditionally in order to enable FBC.
6557 * The bit 22 of 0x42000
6558 * The bit 22 of 0x42004
6559 * The bit 7,8,9 of 0x42020.
6560 */
6561 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006562 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006563 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6564 I915_READ(ILK_DISPLAY_CHICKEN1) |
6565 ILK_FBCQ_DIS);
6566 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6567 I915_READ(ILK_DISPLAY_CHICKEN2) |
6568 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006569 }
6570
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006571 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6572
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006573 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6574 I915_READ(ILK_DISPLAY_CHICKEN2) |
6575 ILK_ELPIN_409_SELECT);
6576 I915_WRITE(_3D_CHICKEN2,
6577 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6578 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006579
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006580 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006581 I915_WRITE(CACHE_MODE_0,
6582 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006583
Akash Goel4e046322014-04-04 17:14:38 +05306584 /* WaDisable_RenderCache_OperationalFlush:ilk */
6585 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6586
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006587 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006588
Daniel Vetter3107bd42012-10-31 22:52:31 +01006589 ibx_init_clock_gating(dev);
6590}
6591
6592static void cpt_init_clock_gating(struct drm_device *dev)
6593{
6594 struct drm_i915_private *dev_priv = dev->dev_private;
6595 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006596 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006597
6598 /*
6599 * On Ibex Peak and Cougar Point, we need to disable clock
6600 * gating for the panel power sequencer or it will fail to
6601 * start up when no ports are active.
6602 */
Jesse Barnescd664072013-10-02 10:34:19 -07006603 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6604 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6605 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006606 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6607 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006608 /* The below fixes the weird display corruption, a few pixels shifted
6609 * downward, on (only) LVDS of some HP laptops with IVY.
6610 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006611 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006612 val = I915_READ(TRANS_CHICKEN2(pipe));
6613 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6614 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006615 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006616 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006617 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6618 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6619 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006620 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6621 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006622 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006623 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006624 I915_WRITE(TRANS_CHICKEN1(pipe),
6625 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6626 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006627}
6628
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006629static void gen6_check_mch_setup(struct drm_device *dev)
6630{
6631 struct drm_i915_private *dev_priv = dev->dev_private;
6632 uint32_t tmp;
6633
6634 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006635 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6636 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6637 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006638}
6639
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006640static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006641{
6642 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006643 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006644
Damien Lespiau231e54f2012-10-19 17:55:41 +01006645 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006646
6647 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6648 I915_READ(ILK_DISPLAY_CHICKEN2) |
6649 ILK_ELPIN_409_SELECT);
6650
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006651 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006652 I915_WRITE(_3D_CHICKEN,
6653 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6654
Akash Goel4e046322014-04-04 17:14:38 +05306655 /* WaDisable_RenderCache_OperationalFlush:snb */
6656 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6657
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006658 /*
6659 * BSpec recoomends 8x4 when MSAA is used,
6660 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006661 *
6662 * Note that PS/WM thread counts depend on the WIZ hashing
6663 * disable bit, which we don't touch here, but it's good
6664 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006665 */
6666 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006667 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006668
Ville Syrjälä017636c2013-12-05 15:51:37 +02006669 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006670
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006671 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006672 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006673
6674 I915_WRITE(GEN6_UCGCTL1,
6675 I915_READ(GEN6_UCGCTL1) |
6676 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6677 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6678
6679 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6680 * gating disable must be set. Failure to set it results in
6681 * flickering pixels due to Z write ordering failures after
6682 * some amount of runtime in the Mesa "fire" demo, and Unigine
6683 * Sanctuary and Tropics, and apparently anything else with
6684 * alpha test or pixel discard.
6685 *
6686 * According to the spec, bit 11 (RCCUNIT) must also be set,
6687 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006688 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006689 * WaDisableRCCUnitClockGating:snb
6690 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006691 */
6692 I915_WRITE(GEN6_UCGCTL2,
6693 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6694 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6695
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006696 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006697 I915_WRITE(_3D_CHICKEN3,
6698 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006699
6700 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006701 * Bspec says:
6702 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6703 * 3DSTATE_SF number of SF output attributes is more than 16."
6704 */
6705 I915_WRITE(_3D_CHICKEN3,
6706 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6707
6708 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006709 * According to the spec the following bits should be
6710 * set in order to enable memory self-refresh and fbc:
6711 * The bit21 and bit22 of 0x42000
6712 * The bit21 and bit22 of 0x42004
6713 * The bit5 and bit7 of 0x42020
6714 * The bit14 of 0x70180
6715 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006716 *
6717 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006718 */
6719 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6720 I915_READ(ILK_DISPLAY_CHICKEN1) |
6721 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6722 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6723 I915_READ(ILK_DISPLAY_CHICKEN2) |
6724 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006725 I915_WRITE(ILK_DSPCLK_GATE_D,
6726 I915_READ(ILK_DSPCLK_GATE_D) |
6727 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6728 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006729
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006730 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006731
Daniel Vetter3107bd42012-10-31 22:52:31 +01006732 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006733
6734 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006735}
6736
6737static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6738{
6739 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
6740
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006741 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006742 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006743 *
6744 * This actually overrides the dispatch
6745 * mode for all thread types.
6746 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006747 reg &= ~GEN7_FF_SCHED_MASK;
6748 reg |= GEN7_FF_TS_SCHED_HW;
6749 reg |= GEN7_FF_VS_SCHED_HW;
6750 reg |= GEN7_FF_DS_SCHED_HW;
6751
6752 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6753}
6754
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006755static void lpt_init_clock_gating(struct drm_device *dev)
6756{
6757 struct drm_i915_private *dev_priv = dev->dev_private;
6758
6759 /*
6760 * TODO: this bit should only be enabled when really needed, then
6761 * disabled when not needed anymore in order to save power.
6762 */
6763 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
6764 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6765 I915_READ(SOUTH_DSPCLK_GATE_D) |
6766 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006767
6768 /* WADPOClockGatingDisable:hsw */
6769 I915_WRITE(_TRANSA_CHICKEN1,
6770 I915_READ(_TRANSA_CHICKEN1) |
6771 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006772}
6773
Imre Deak7d708ee2013-04-17 14:04:50 +03006774static void lpt_suspend_hw(struct drm_device *dev)
6775{
6776 struct drm_i915_private *dev_priv = dev->dev_private;
6777
6778 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
6779 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
6780
6781 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6782 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6783 }
6784}
6785
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006786static void broadwell_init_clock_gating(struct drm_device *dev)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006787{
6788 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00006789 enum pipe pipe;
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006790 uint32_t misccpctl;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006791
Ville Syrjälä7ad0dba2015-05-19 20:32:55 +03006792 ilk_init_lp_watermarks(dev);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006793
Ben Widawskyab57fff2013-12-12 15:28:04 -08006794 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006795 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006796
Ben Widawskyab57fff2013-12-12 15:28:04 -08006797 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006798 I915_WRITE(CHICKEN_PAR1_1,
6799 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6800
Ben Widawskyab57fff2013-12-12 15:28:04 -08006801 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006802 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006803 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006804 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006805 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006806 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006807
Ben Widawskyab57fff2013-12-12 15:28:04 -08006808 /* WaVSRefCountFullforceMissDisable:bdw */
6809 /* WaDSRefCountFullforceMissDisable:bdw */
6810 I915_WRITE(GEN7_FF_THREAD_MODE,
6811 I915_READ(GEN7_FF_THREAD_MODE) &
6812 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006813
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006814 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6815 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006816
6817 /* WaDisableSDEUnitClockGating:bdw */
6818 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6819 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006820
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006821 /*
6822 * WaProgramL3SqcReg1Default:bdw
6823 * WaTempDisableDOPClkGating:bdw
6824 */
6825 misccpctl = I915_READ(GEN7_MISCCPCTL);
6826 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6827 I915_WRITE(GEN8_L3SQCREG1, BDW_WA_L3SQCREG1_DEFAULT);
6828 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6829
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006830 /*
6831 * WaGttCachingOffByDefault:bdw
6832 * GTT cache may not work with big pages, so if those
6833 * are ever enabled GTT cache may need to be disabled.
6834 */
6835 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
6836
Paulo Zanoni89d6b2b2014-08-21 17:09:36 -03006837 lpt_init_clock_gating(dev);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006838}
6839
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006840static void haswell_init_clock_gating(struct drm_device *dev)
6841{
6842 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006843
Ville Syrjälä017636c2013-12-05 15:51:37 +02006844 ilk_init_lp_watermarks(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006845
Francisco Jerezf3fc4882013-10-02 15:53:16 -07006846 /* L3 caching of data atomics doesn't work -- disable it. */
6847 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6848 I915_WRITE(HSW_ROW_CHICKEN3,
6849 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6850
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006851 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006852 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6853 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6854 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6855
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02006856 /* WaVSRefCountFullforceMissDisable:hsw */
6857 I915_WRITE(GEN7_FF_THREAD_MODE,
6858 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006859
Akash Goel4e046322014-04-04 17:14:38 +05306860 /* WaDisable_RenderCache_OperationalFlush:hsw */
6861 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6862
Chia-I Wufe27c602014-01-28 13:29:33 +08006863 /* enable HiZ Raw Stall Optimization */
6864 I915_WRITE(CACHE_MODE_0_GEN7,
6865 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6866
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006867 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006868 I915_WRITE(CACHE_MODE_1,
6869 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006870
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006871 /*
6872 * BSpec recommends 8x4 when MSAA is used,
6873 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006874 *
6875 * Note that PS/WM thread counts depend on the WIZ hashing
6876 * disable bit, which we don't touch here, but it's good
6877 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006878 */
6879 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006880 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006881
Kenneth Graunke94411592014-12-31 16:23:00 -08006882 /* WaSampleCChickenBitEnable:hsw */
6883 I915_WRITE(HALF_SLICE_CHICKEN3,
6884 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
6885
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006886 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07006887 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
6888
Paulo Zanoni90a88642013-05-03 17:23:45 -03006889 /* WaRsPkgCStateDisplayPMReq:hsw */
6890 I915_WRITE(CHICKEN_PAR1_1,
6891 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006892
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006893 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006894}
6895
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006896static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006897{
6898 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07006899 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006900
Ville Syrjälä017636c2013-12-05 15:51:37 +02006901 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006902
Damien Lespiau231e54f2012-10-19 17:55:41 +01006903 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006904
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006905 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05006906 I915_WRITE(_3D_CHICKEN3,
6907 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6908
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006909 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006910 I915_WRITE(IVB_CHICKEN3,
6911 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6912 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6913
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006914 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07006915 if (IS_IVB_GT1(dev))
6916 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
6917 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006918
Akash Goel4e046322014-04-04 17:14:38 +05306919 /* WaDisable_RenderCache_OperationalFlush:ivb */
6920 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6921
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006922 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006923 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
6924 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
6925
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006926 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006927 I915_WRITE(GEN7_L3CNTLREG1,
6928 GEN7_WA_FOR_GEN7_L3_CONTROL);
6929 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07006930 GEN7_WA_L3_CHICKEN_MODE);
6931 if (IS_IVB_GT1(dev))
6932 I915_WRITE(GEN7_ROW_CHICKEN2,
6933 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006934 else {
6935 /* must write both registers */
6936 I915_WRITE(GEN7_ROW_CHICKEN2,
6937 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07006938 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
6939 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006940 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006941
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006942 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05006943 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6944 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6945
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02006946 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006947 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006948 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006949 */
6950 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02006951 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006952
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006953 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006954 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6955 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6956 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6957
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006958 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006959
6960 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02006961
Chris Wilson22721342014-03-04 09:41:43 +00006962 if (0) { /* causes HiZ corruption on ivb:gt1 */
6963 /* enable HiZ Raw Stall Optimization */
6964 I915_WRITE(CACHE_MODE_0_GEN7,
6965 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6966 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08006967
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006968 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02006969 I915_WRITE(CACHE_MODE_1,
6970 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07006971
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006972 /*
6973 * BSpec recommends 8x4 when MSAA is used,
6974 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006975 *
6976 * Note that PS/WM thread counts depend on the WIZ hashing
6977 * disable bit, which we don't touch here, but it's good
6978 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006979 */
6980 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006981 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006982
Ben Widawsky20848222012-05-04 18:58:59 -07006983 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
6984 snpcr &= ~GEN6_MBC_SNPCR_MASK;
6985 snpcr |= GEN6_MBC_SNPCR_MED;
6986 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006987
Ben Widawskyab5c6082013-04-05 13:12:41 -07006988 if (!HAS_PCH_NOP(dev))
6989 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006990
6991 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006992}
6993
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006994static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv)
6995{
6996 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6997
6998 /*
6999 * Disable trickle feed and enable pnd deadline calculation
7000 */
7001 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
7002 I915_WRITE(CBR1_VLV, 0);
7003}
7004
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007005static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007006{
7007 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007008
Ville Syrjäläc6beb132015-03-05 21:19:48 +02007009 vlv_init_display_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007010
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007011 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007012 I915_WRITE(_3D_CHICKEN3,
7013 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7014
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007015 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007016 I915_WRITE(IVB_CHICKEN3,
7017 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7018 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7019
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007020 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007021 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007022 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007023 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7024 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007025
Akash Goel4e046322014-04-04 17:14:38 +05307026 /* WaDisable_RenderCache_OperationalFlush:vlv */
7027 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7028
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007029 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007030 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7031 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7032
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007033 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007034 I915_WRITE(GEN7_ROW_CHICKEN2,
7035 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7036
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007037 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007038 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7039 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7040 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7041
Ville Syrjälä46680e02014-01-22 21:33:01 +02007042 gen7_setup_fixed_func_scheduler(dev_priv);
7043
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007044 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007045 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007046 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007047 */
7048 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007049 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007050
Akash Goelc98f5062014-03-24 23:00:07 +05307051 /* WaDisableL3Bank2xClockGate:vlv
7052 * Disabling L3 clock gating- MMIO 940c[25] = 1
7053 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7054 I915_WRITE(GEN7_UCGCTL4,
7055 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007056
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007057 /*
7058 * BSpec says this must be set, even though
7059 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7060 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007061 I915_WRITE(CACHE_MODE_1,
7062 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007063
7064 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007065 * BSpec recommends 8x4 when MSAA is used,
7066 * however in practice 16x4 seems fastest.
7067 *
7068 * Note that PS/WM thread counts depend on the WIZ hashing
7069 * disable bit, which we don't touch here, but it's good
7070 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7071 */
7072 I915_WRITE(GEN7_GT_MODE,
7073 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7074
7075 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007076 * WaIncreaseL3CreditsForVLVB0:vlv
7077 * This is the hardware default actually.
7078 */
7079 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7080
7081 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007082 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007083 * Disable clock gating on th GCFG unit to prevent a delay
7084 * in the reporting of vblank events.
7085 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007086 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007087}
7088
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007089static void cherryview_init_clock_gating(struct drm_device *dev)
7090{
7091 struct drm_i915_private *dev_priv = dev->dev_private;
7092
Ville Syrjäläc6beb132015-03-05 21:19:48 +02007093 vlv_init_display_clock_gating(dev_priv);
Ville Syrjälädd811e72014-04-09 13:28:33 +03007094
Ville Syrjälä232ce332014-04-09 13:28:35 +03007095 /* WaVSRefCountFullforceMissDisable:chv */
7096 /* WaDSRefCountFullforceMissDisable:chv */
7097 I915_WRITE(GEN7_FF_THREAD_MODE,
7098 I915_READ(GEN7_FF_THREAD_MODE) &
7099 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007100
7101 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7102 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7103 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007104
7105 /* WaDisableCSUnitClockGating:chv */
7106 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7107 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007108
7109 /* WaDisableSDEUnitClockGating:chv */
7110 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7111 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007112
7113 /*
7114 * GTT cache may not work with big pages, so if those
7115 * are ever enabled GTT cache may need to be disabled.
7116 */
7117 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007118}
7119
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007120static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007121{
7122 struct drm_i915_private *dev_priv = dev->dev_private;
7123 uint32_t dspclk_gate;
7124
7125 I915_WRITE(RENCLK_GATE_D1, 0);
7126 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7127 GS_UNIT_CLOCK_GATE_DISABLE |
7128 CL_UNIT_CLOCK_GATE_DISABLE);
7129 I915_WRITE(RAMCLK_GATE_D, 0);
7130 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7131 OVRUNIT_CLOCK_GATE_DISABLE |
7132 OVCUNIT_CLOCK_GATE_DISABLE;
7133 if (IS_GM45(dev))
7134 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7135 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007136
7137 /* WaDisableRenderCachePipelinedFlush */
7138 I915_WRITE(CACHE_MODE_0,
7139 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007140
Akash Goel4e046322014-04-04 17:14:38 +05307141 /* WaDisable_RenderCache_OperationalFlush:g4x */
7142 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7143
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007144 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007145}
7146
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007147static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007148{
7149 struct drm_i915_private *dev_priv = dev->dev_private;
7150
7151 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7152 I915_WRITE(RENCLK_GATE_D2, 0);
7153 I915_WRITE(DSPCLK_GATE_D, 0);
7154 I915_WRITE(RAMCLK_GATE_D, 0);
7155 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007156 I915_WRITE(MI_ARB_STATE,
7157 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307158
7159 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7160 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007161}
7162
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007163static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007164{
7165 struct drm_i915_private *dev_priv = dev->dev_private;
7166
7167 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7168 I965_RCC_CLOCK_GATE_DISABLE |
7169 I965_RCPB_CLOCK_GATE_DISABLE |
7170 I965_ISC_CLOCK_GATE_DISABLE |
7171 I965_FBC_CLOCK_GATE_DISABLE);
7172 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007173 I915_WRITE(MI_ARB_STATE,
7174 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307175
7176 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7177 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007178}
7179
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007180static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007181{
7182 struct drm_i915_private *dev_priv = dev->dev_private;
7183 u32 dstate = I915_READ(D_STATE);
7184
7185 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7186 DSTATE_DOT_CLOCK_GATING;
7187 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007188
7189 if (IS_PINEVIEW(dev))
7190 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007191
7192 /* IIR "flip pending" means done if this bit is set */
7193 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007194
7195 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007196 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007197
7198 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7199 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007200
7201 I915_WRITE(MI_ARB_STATE,
7202 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007203}
7204
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007205static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007206{
7207 struct drm_i915_private *dev_priv = dev->dev_private;
7208
7209 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007210
7211 /* interrupts should cause a wake up from C3 */
7212 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7213 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007214
7215 I915_WRITE(MEM_MODE,
7216 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007217}
7218
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007219static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007220{
7221 struct drm_i915_private *dev_priv = dev->dev_private;
7222
7223 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03007224
7225 I915_WRITE(MEM_MODE,
7226 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7227 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007228}
7229
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007230void intel_init_clock_gating(struct drm_device *dev)
7231{
7232 struct drm_i915_private *dev_priv = dev->dev_private;
7233
Damien Lespiauc57e3552015-02-09 19:33:05 +00007234 if (dev_priv->display.init_clock_gating)
7235 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007236}
7237
Imre Deak7d708ee2013-04-17 14:04:50 +03007238void intel_suspend_hw(struct drm_device *dev)
7239{
7240 if (HAS_PCH_LPT(dev))
7241 lpt_suspend_hw(dev);
7242}
7243
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007244/* Set up chip specific power management-related functions */
7245void intel_init_pm(struct drm_device *dev)
7246{
7247 struct drm_i915_private *dev_priv = dev->dev_private;
7248
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007249 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007250
Daniel Vetterc921aba2012-04-26 23:28:17 +02007251 /* For cxsr */
7252 if (IS_PINEVIEW(dev))
7253 i915_pineview_get_mem_freq(dev);
7254 else if (IS_GEN5(dev))
7255 i915_ironlake_get_mem_freq(dev);
7256
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007257 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00007258 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00007259 skl_setup_wm_latency(dev);
7260
Imre Deaka82abe42015-03-27 14:00:04 +02007261 if (IS_BROXTON(dev))
7262 dev_priv->display.init_clock_gating =
7263 bxt_init_clock_gating;
7264 else if (IS_SKYLAKE(dev))
7265 dev_priv->display.init_clock_gating =
7266 skl_init_clock_gating;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00007267 dev_priv->display.update_wm = skl_update_wm;
7268 dev_priv->display.update_sprite_wm = skl_update_sprite_wm;
Damien Lespiauc83155a2014-03-28 00:18:35 +05307269 } else if (HAS_PCH_SPLIT(dev)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00007270 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007271
Ville Syrjäläbd602542014-01-07 16:14:10 +02007272 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
7273 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
7274 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
7275 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
7276 dev_priv->display.update_wm = ilk_update_wm;
7277 dev_priv->display.update_sprite_wm = ilk_update_sprite_wm;
7278 } else {
7279 DRM_DEBUG_KMS("Failed to read display plane latency. "
7280 "Disable CxSR\n");
7281 }
7282
7283 if (IS_GEN5(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007284 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007285 else if (IS_GEN6(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007286 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007287 else if (IS_IVYBRIDGE(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007288 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007289 else if (IS_HASWELL(dev))
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007290 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007291 else if (INTEL_INFO(dev)->gen == 8)
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03007292 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007293 } else if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03007294 vlv_setup_wm_latency(dev);
7295
7296 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007297 dev_priv->display.init_clock_gating =
7298 cherryview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007299 } else if (IS_VALLEYVIEW(dev)) {
7300 dev_priv->display.update_wm = valleyview_update_wm;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05307301 dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007302 dev_priv->display.init_clock_gating =
7303 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007304 } else if (IS_PINEVIEW(dev)) {
7305 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
7306 dev_priv->is_ddr3,
7307 dev_priv->fsb_freq,
7308 dev_priv->mem_freq)) {
7309 DRM_INFO("failed to find known CxSR latency "
7310 "(found ddr%s fsb freq %d, mem freq %d), "
7311 "disabling CxSR\n",
7312 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7313 dev_priv->fsb_freq, dev_priv->mem_freq);
7314 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007315 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007316 dev_priv->display.update_wm = NULL;
7317 } else
7318 dev_priv->display.update_wm = pineview_update_wm;
7319 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7320 } else if (IS_G4X(dev)) {
7321 dev_priv->display.update_wm = g4x_update_wm;
7322 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
7323 } else if (IS_GEN4(dev)) {
7324 dev_priv->display.update_wm = i965_update_wm;
7325 if (IS_CRESTLINE(dev))
7326 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
7327 else if (IS_BROADWATER(dev))
7328 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7329 } else if (IS_GEN3(dev)) {
7330 dev_priv->display.update_wm = i9xx_update_wm;
7331 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
7332 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007333 } else if (IS_GEN2(dev)) {
7334 if (INTEL_INFO(dev)->num_pipes == 1) {
7335 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007336 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007337 } else {
7338 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007339 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007340 }
7341
7342 if (IS_I85X(dev) || IS_I865G(dev))
7343 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7344 else
7345 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7346 } else {
7347 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007348 }
7349}
7350
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007351int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007352{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007353 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007354
7355 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7356 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7357 return -EAGAIN;
7358 }
7359
7360 I915_WRITE(GEN6_PCODE_DATA, *val);
Damien Lespiaudddab342014-11-13 17:51:50 +00007361 I915_WRITE(GEN6_PCODE_DATA1, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007362 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7363
7364 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7365 500)) {
7366 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7367 return -ETIMEDOUT;
7368 }
7369
7370 *val = I915_READ(GEN6_PCODE_DATA);
7371 I915_WRITE(GEN6_PCODE_DATA, 0);
7372
7373 return 0;
7374}
7375
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007376int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007377{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007378 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007379
7380 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7381 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7382 return -EAGAIN;
7383 }
7384
7385 I915_WRITE(GEN6_PCODE_DATA, val);
7386 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7387
7388 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7389 500)) {
7390 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7391 return -ETIMEDOUT;
7392 }
7393
7394 I915_WRITE(GEN6_PCODE_DATA, 0);
7395
7396 return 0;
7397}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007398
Ville Syrjälädd06f882014-11-10 22:55:12 +02007399static int vlv_gpu_freq_div(unsigned int czclk_freq)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007400{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007401 switch (czclk_freq) {
7402 case 200:
7403 return 10;
7404 case 267:
7405 return 12;
7406 case 320:
7407 case 333:
Ville Syrjälädd06f882014-11-10 22:55:12 +02007408 return 16;
Ville Syrjäläab3fb152014-11-10 22:55:15 +02007409 case 400:
7410 return 20;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007411 default:
7412 return -1;
7413 }
Ville Syrjälädd06f882014-11-10 22:55:12 +02007414}
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007415
Ville Syrjälädd06f882014-11-10 22:55:12 +02007416static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7417{
7418 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
7419
7420 div = vlv_gpu_freq_div(czclk_freq);
7421 if (div < 0)
7422 return div;
7423
7424 return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007425}
7426
Fengguang Wub55dd642014-07-12 11:21:39 +02007427static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007428{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007429 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007430
Ville Syrjälädd06f882014-11-10 22:55:12 +02007431 mul = vlv_gpu_freq_div(czclk_freq);
7432 if (mul < 0)
7433 return mul;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007434
Ville Syrjälädd06f882014-11-10 22:55:12 +02007435 return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007436}
7437
Fengguang Wub55dd642014-07-12 11:21:39 +02007438static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307439{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007440 int div, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05307441
Ville Syrjälädd06f882014-11-10 22:55:12 +02007442 div = vlv_gpu_freq_div(czclk_freq) / 2;
7443 if (div < 0)
7444 return div;
Deepak S22b1b2f2014-07-12 14:54:33 +05307445
Ville Syrjälädd06f882014-11-10 22:55:12 +02007446 return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307447}
7448
Fengguang Wub55dd642014-07-12 11:21:39 +02007449static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307450{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007451 int mul, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05307452
Ville Syrjälädd06f882014-11-10 22:55:12 +02007453 mul = vlv_gpu_freq_div(czclk_freq) / 2;
7454 if (mul < 0)
7455 return mul;
Deepak S22b1b2f2014-07-12 14:54:33 +05307456
Ville Syrjälä1c147622014-08-18 14:42:43 +03007457 /* CHV needs even values */
Ville Syrjälädd06f882014-11-10 22:55:12 +02007458 return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307459}
7460
Ville Syrjälä616bc822015-01-23 21:04:25 +02007461int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7462{
Akash Goel80b6dda2015-03-06 11:07:15 +05307463 if (IS_GEN9(dev_priv->dev))
7464 return (val * GT_FREQUENCY_MULTIPLIER) / GEN9_FREQ_SCALER;
7465 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007466 return chv_gpu_freq(dev_priv, val);
7467 else if (IS_VALLEYVIEW(dev_priv->dev))
7468 return byt_gpu_freq(dev_priv, val);
7469 else
7470 return val * GT_FREQUENCY_MULTIPLIER;
7471}
7472
Ville Syrjälä616bc822015-01-23 21:04:25 +02007473int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7474{
Akash Goel80b6dda2015-03-06 11:07:15 +05307475 if (IS_GEN9(dev_priv->dev))
7476 return (val * GEN9_FREQ_SCALER) / GT_FREQUENCY_MULTIPLIER;
7477 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007478 return chv_freq_opcode(dev_priv, val);
Deepak S22b1b2f2014-07-12 14:54:33 +05307479 else if (IS_VALLEYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007480 return byt_freq_opcode(dev_priv, val);
7481 else
7482 return val / GT_FREQUENCY_MULTIPLIER;
Deepak S22b1b2f2014-07-12 14:54:33 +05307483}
7484
Chris Wilson6ad790c2015-04-07 16:20:31 +01007485struct request_boost {
7486 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02007487 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007488};
7489
7490static void __intel_rps_boost_work(struct work_struct *work)
7491{
7492 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01007493 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007494
Chris Wilsone61b9952015-04-27 13:41:24 +01007495 if (!i915_gem_request_completed(req, true))
7496 gen6_rps_boost(to_i915(req->ring->dev), NULL,
7497 req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007498
Chris Wilsone61b9952015-04-27 13:41:24 +01007499 i915_gem_request_unreference__unlocked(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007500 kfree(boost);
7501}
7502
7503void intel_queue_rps_boost_for_request(struct drm_device *dev,
Daniel Vettereed29a52015-05-21 14:21:25 +02007504 struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007505{
7506 struct request_boost *boost;
7507
Daniel Vettereed29a52015-05-21 14:21:25 +02007508 if (req == NULL || INTEL_INFO(dev)->gen < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007509 return;
7510
Chris Wilsone61b9952015-04-27 13:41:24 +01007511 if (i915_gem_request_completed(req, true))
7512 return;
7513
Chris Wilson6ad790c2015-04-07 16:20:31 +01007514 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
7515 if (boost == NULL)
7516 return;
7517
Daniel Vettereed29a52015-05-21 14:21:25 +02007518 i915_gem_request_reference(req);
7519 boost->req = req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007520
7521 INIT_WORK(&boost->work, __intel_rps_boost_work);
7522 queue_work(to_i915(dev)->wq, &boost->work);
7523}
7524
Daniel Vetterf742a552013-12-06 10:17:53 +01007525void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01007526{
7527 struct drm_i915_private *dev_priv = dev->dev_private;
7528
Daniel Vetterf742a552013-12-06 10:17:53 +01007529 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01007530 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01007531
Chris Wilson907b28c2013-07-19 20:36:52 +01007532 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
7533 intel_gen6_powersave_work);
Chris Wilson1854d5c2015-04-07 16:20:32 +01007534 INIT_LIST_HEAD(&dev_priv->rps.clients);
Chris Wilson2e1b8732015-04-27 13:41:22 +01007535 INIT_LIST_HEAD(&dev_priv->rps.semaphores.link);
7536 INIT_LIST_HEAD(&dev_priv->rps.mmioflips.link);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03007537
Paulo Zanoni33688d92014-03-07 20:08:19 -03007538 dev_priv->pm.suspended = false;
Chris Wilson907b28c2013-07-19 20:36:52 +01007539}