blob: a023b40c046b77be2c13d3cf31cf79ca033ca1eb [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);
Ville Syrjälä852eb002015-06-24 22:00:07 +0300338 dev_priv->wm.vlv.cxsr = enable;
Imre Deak5209b1f2014-07-01 12:36:17 +0300339 } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) {
340 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300341 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300342 } else if (IS_PINEVIEW(dev)) {
343 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
344 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
345 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300346 POSTING_READ(DSPFW3);
Imre Deak5209b1f2014-07-01 12:36:17 +0300347 } else if (IS_I945G(dev) || IS_I945GM(dev)) {
348 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
349 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
350 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300351 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300352 } else if (IS_I915GM(dev)) {
353 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
354 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
355 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300356 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300357 } else {
358 return;
359 }
360
361 DRM_DEBUG_KMS("memory self-refresh is %s\n",
362 enable ? "enabled" : "disabled");
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300363}
364
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200365
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300366/*
367 * Latency for FIFO fetches is dependent on several factors:
368 * - memory configuration (speed, channels)
369 * - chipset
370 * - current MCH state
371 * It can be fairly high in some situations, so here we assume a fairly
372 * pessimal value. It's a tradeoff between extra memory fetches (if we
373 * set this value too high, the FIFO will fetch frequently to stay full)
374 * and power consumption (set it too low to save power and we might see
375 * FIFO underruns and display "flicker").
376 *
377 * A value of 5us seems to be a good balance; safe for very low end
378 * platforms but not overly aggressive on lower latency configs.
379 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100380static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300381
Ville Syrjäläb5004722015-03-05 21:19:47 +0200382#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
383 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
384
385static int vlv_get_fifo_size(struct drm_device *dev,
386 enum pipe pipe, int plane)
387{
388 struct drm_i915_private *dev_priv = dev->dev_private;
389 int sprite0_start, sprite1_start, size;
390
391 switch (pipe) {
392 uint32_t dsparb, dsparb2, dsparb3;
393 case PIPE_A:
394 dsparb = I915_READ(DSPARB);
395 dsparb2 = I915_READ(DSPARB2);
396 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
397 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
398 break;
399 case PIPE_B:
400 dsparb = I915_READ(DSPARB);
401 dsparb2 = I915_READ(DSPARB2);
402 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
403 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
404 break;
405 case PIPE_C:
406 dsparb2 = I915_READ(DSPARB2);
407 dsparb3 = I915_READ(DSPARB3);
408 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
409 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
410 break;
411 default:
412 return 0;
413 }
414
415 switch (plane) {
416 case 0:
417 size = sprite0_start;
418 break;
419 case 1:
420 size = sprite1_start - sprite0_start;
421 break;
422 case 2:
423 size = 512 - 1 - sprite1_start;
424 break;
425 default:
426 return 0;
427 }
428
429 DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n",
430 pipe_name(pipe), plane == 0 ? "primary" : "sprite",
431 plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1),
432 size);
433
434 return size;
435}
436
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300437static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300438{
439 struct drm_i915_private *dev_priv = dev->dev_private;
440 uint32_t dsparb = I915_READ(DSPARB);
441 int size;
442
443 size = dsparb & 0x7f;
444 if (plane)
445 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
446
447 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
448 plane ? "B" : "A", size);
449
450 return size;
451}
452
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200453static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300454{
455 struct drm_i915_private *dev_priv = dev->dev_private;
456 uint32_t dsparb = I915_READ(DSPARB);
457 int size;
458
459 size = dsparb & 0x1ff;
460 if (plane)
461 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
462 size >>= 1; /* Convert to cachelines */
463
464 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
465 plane ? "B" : "A", size);
466
467 return size;
468}
469
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300470static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300471{
472 struct drm_i915_private *dev_priv = dev->dev_private;
473 uint32_t dsparb = I915_READ(DSPARB);
474 int size;
475
476 size = dsparb & 0x7f;
477 size >>= 2; /* Convert to cachelines */
478
479 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
480 plane ? "B" : "A",
481 size);
482
483 return size;
484}
485
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300486/* Pineview has different values for various configs */
487static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300488 .fifo_size = PINEVIEW_DISPLAY_FIFO,
489 .max_wm = PINEVIEW_MAX_WM,
490 .default_wm = PINEVIEW_DFT_WM,
491 .guard_size = PINEVIEW_GUARD_WM,
492 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300493};
494static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300495 .fifo_size = PINEVIEW_DISPLAY_FIFO,
496 .max_wm = PINEVIEW_MAX_WM,
497 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
498 .guard_size = PINEVIEW_GUARD_WM,
499 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300500};
501static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300502 .fifo_size = PINEVIEW_CURSOR_FIFO,
503 .max_wm = PINEVIEW_CURSOR_MAX_WM,
504 .default_wm = PINEVIEW_CURSOR_DFT_WM,
505 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
506 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300507};
508static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300509 .fifo_size = PINEVIEW_CURSOR_FIFO,
510 .max_wm = PINEVIEW_CURSOR_MAX_WM,
511 .default_wm = PINEVIEW_CURSOR_DFT_WM,
512 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
513 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300514};
515static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300516 .fifo_size = G4X_FIFO_SIZE,
517 .max_wm = G4X_MAX_WM,
518 .default_wm = G4X_MAX_WM,
519 .guard_size = 2,
520 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300521};
522static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300523 .fifo_size = I965_CURSOR_FIFO,
524 .max_wm = I965_CURSOR_MAX_WM,
525 .default_wm = I965_CURSOR_DFT_WM,
526 .guard_size = 2,
527 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300528};
529static const struct intel_watermark_params valleyview_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300530 .fifo_size = VALLEYVIEW_FIFO_SIZE,
531 .max_wm = VALLEYVIEW_MAX_WM,
532 .default_wm = VALLEYVIEW_MAX_WM,
533 .guard_size = 2,
534 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300535};
536static const struct intel_watermark_params valleyview_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300537 .fifo_size = I965_CURSOR_FIFO,
538 .max_wm = VALLEYVIEW_CURSOR_MAX_WM,
539 .default_wm = I965_CURSOR_DFT_WM,
540 .guard_size = 2,
541 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300542};
543static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300544 .fifo_size = I965_CURSOR_FIFO,
545 .max_wm = I965_CURSOR_MAX_WM,
546 .default_wm = I965_CURSOR_DFT_WM,
547 .guard_size = 2,
548 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300549};
550static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300551 .fifo_size = I945_FIFO_SIZE,
552 .max_wm = I915_MAX_WM,
553 .default_wm = 1,
554 .guard_size = 2,
555 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300556};
557static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300558 .fifo_size = I915_FIFO_SIZE,
559 .max_wm = I915_MAX_WM,
560 .default_wm = 1,
561 .guard_size = 2,
562 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300563};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300564static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300565 .fifo_size = I855GM_FIFO_SIZE,
566 .max_wm = I915_MAX_WM,
567 .default_wm = 1,
568 .guard_size = 2,
569 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300570};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300571static const struct intel_watermark_params i830_bc_wm_info = {
572 .fifo_size = I855GM_FIFO_SIZE,
573 .max_wm = I915_MAX_WM/2,
574 .default_wm = 1,
575 .guard_size = 2,
576 .cacheline_size = I830_FIFO_LINE_SIZE,
577};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200578static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300579 .fifo_size = I830_FIFO_SIZE,
580 .max_wm = I915_MAX_WM,
581 .default_wm = 1,
582 .guard_size = 2,
583 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300584};
585
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300586/**
587 * intel_calculate_wm - calculate watermark level
588 * @clock_in_khz: pixel clock
589 * @wm: chip FIFO params
590 * @pixel_size: display pixel size
591 * @latency_ns: memory latency for the platform
592 *
593 * Calculate the watermark level (the level at which the display plane will
594 * start fetching from memory again). Each chip has a different display
595 * FIFO size and allocation, so the caller needs to figure that out and pass
596 * in the correct intel_watermark_params structure.
597 *
598 * As the pixel clock runs, the FIFO will be drained at a rate that depends
599 * on the pixel size. When it reaches the watermark level, it'll start
600 * fetching FIFO line sized based chunks from memory until the FIFO fills
601 * past the watermark point. If the FIFO drains completely, a FIFO underrun
602 * will occur, and a display engine hang could result.
603 */
604static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
605 const struct intel_watermark_params *wm,
606 int fifo_size,
607 int pixel_size,
608 unsigned long latency_ns)
609{
610 long entries_required, wm_size;
611
612 /*
613 * Note: we need to make sure we don't overflow for various clock &
614 * latency values.
615 * clocks go from a few thousand to several hundred thousand.
616 * latency is usually a few thousand
617 */
618 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
619 1000;
620 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
621
622 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
623
624 wm_size = fifo_size - (entries_required + wm->guard_size);
625
626 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
627
628 /* Don't promote wm_size to unsigned... */
629 if (wm_size > (long)wm->max_wm)
630 wm_size = wm->max_wm;
631 if (wm_size <= 0)
632 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300633
634 /*
635 * Bspec seems to indicate that the value shouldn't be lower than
636 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
637 * Lets go for 8 which is the burst size since certain platforms
638 * already use a hardcoded 8 (which is what the spec says should be
639 * done).
640 */
641 if (wm_size <= 8)
642 wm_size = 8;
643
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300644 return wm_size;
645}
646
647static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
648{
649 struct drm_crtc *crtc, *enabled = NULL;
650
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100651 for_each_crtc(dev, crtc) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000652 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300653 if (enabled)
654 return NULL;
655 enabled = crtc;
656 }
657 }
658
659 return enabled;
660}
661
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300662static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300663{
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300664 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300665 struct drm_i915_private *dev_priv = dev->dev_private;
666 struct drm_crtc *crtc;
667 const struct cxsr_latency *latency;
668 u32 reg;
669 unsigned long wm;
670
671 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
672 dev_priv->fsb_freq, dev_priv->mem_freq);
673 if (!latency) {
674 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300675 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300676 return;
677 }
678
679 crtc = single_enabled_crtc(dev);
680 if (crtc) {
Damien Lespiau241bfc32013-09-25 16:45:37 +0100681 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -0800682 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100683 int clock;
684
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200685 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100686 clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300687
688 /* Display SR */
689 wm = intel_calculate_wm(clock, &pineview_display_wm,
690 pineview_display_wm.fifo_size,
691 pixel_size, latency->display_sr);
692 reg = I915_READ(DSPFW1);
693 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200694 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300695 I915_WRITE(DSPFW1, reg);
696 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
697
698 /* cursor SR */
699 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
700 pineview_display_wm.fifo_size,
701 pixel_size, latency->cursor_sr);
702 reg = I915_READ(DSPFW3);
703 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200704 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300705 I915_WRITE(DSPFW3, reg);
706
707 /* Display HPLL off SR */
708 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
709 pineview_display_hplloff_wm.fifo_size,
710 pixel_size, latency->display_hpll_disable);
711 reg = I915_READ(DSPFW3);
712 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200713 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300714 I915_WRITE(DSPFW3, reg);
715
716 /* cursor HPLL off SR */
717 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
718 pineview_display_hplloff_wm.fifo_size,
719 pixel_size, latency->cursor_hpll_disable);
720 reg = I915_READ(DSPFW3);
721 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200722 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300723 I915_WRITE(DSPFW3, reg);
724 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
725
Imre Deak5209b1f2014-07-01 12:36:17 +0300726 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300727 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300728 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300729 }
730}
731
732static bool g4x_compute_wm0(struct drm_device *dev,
733 int plane,
734 const struct intel_watermark_params *display,
735 int display_latency_ns,
736 const struct intel_watermark_params *cursor,
737 int cursor_latency_ns,
738 int *plane_wm,
739 int *cursor_wm)
740{
741 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300742 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300743 int htotal, hdisplay, clock, pixel_size;
744 int line_time_us, line_count;
745 int entries, tlb_miss;
746
747 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +0000748 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300749 *cursor_wm = cursor->guard_size;
750 *plane_wm = display->guard_size;
751 return false;
752 }
753
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200754 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100755 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800756 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200757 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800758 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300759
760 /* Use the small buffer method to calculate plane watermark */
761 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
762 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
763 if (tlb_miss > 0)
764 entries += tlb_miss;
765 entries = DIV_ROUND_UP(entries, display->cacheline_size);
766 *plane_wm = entries + display->guard_size;
767 if (*plane_wm > (int)display->max_wm)
768 *plane_wm = display->max_wm;
769
770 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200771 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300772 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Matt Roper3dd512f2015-02-27 10:12:00 -0800773 entries = line_count * crtc->cursor->state->crtc_w * pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300774 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
775 if (tlb_miss > 0)
776 entries += tlb_miss;
777 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
778 *cursor_wm = entries + cursor->guard_size;
779 if (*cursor_wm > (int)cursor->max_wm)
780 *cursor_wm = (int)cursor->max_wm;
781
782 return true;
783}
784
785/*
786 * Check the wm result.
787 *
788 * If any calculated watermark values is larger than the maximum value that
789 * can be programmed into the associated watermark register, that watermark
790 * must be disabled.
791 */
792static bool g4x_check_srwm(struct drm_device *dev,
793 int display_wm, int cursor_wm,
794 const struct intel_watermark_params *display,
795 const struct intel_watermark_params *cursor)
796{
797 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
798 display_wm, cursor_wm);
799
800 if (display_wm > display->max_wm) {
801 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
802 display_wm, display->max_wm);
803 return false;
804 }
805
806 if (cursor_wm > cursor->max_wm) {
807 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
808 cursor_wm, cursor->max_wm);
809 return false;
810 }
811
812 if (!(display_wm || cursor_wm)) {
813 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
814 return false;
815 }
816
817 return true;
818}
819
820static bool g4x_compute_srwm(struct drm_device *dev,
821 int plane,
822 int latency_ns,
823 const struct intel_watermark_params *display,
824 const struct intel_watermark_params *cursor,
825 int *display_wm, int *cursor_wm)
826{
827 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300828 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300829 int hdisplay, htotal, pixel_size, clock;
830 unsigned long line_time_us;
831 int line_count, line_size;
832 int small, large;
833 int entries;
834
835 if (!latency_ns) {
836 *display_wm = *cursor_wm = 0;
837 return false;
838 }
839
840 crtc = intel_get_crtc_for_plane(dev, plane);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200841 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100842 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800843 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200844 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800845 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300846
Ville Syrjälä922044c2014-02-14 14:18:57 +0200847 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300848 line_count = (latency_ns / line_time_us + 1000) / 1000;
849 line_size = hdisplay * pixel_size;
850
851 /* Use the minimum of the small and large buffer method for primary */
852 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
853 large = line_count * line_size;
854
855 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
856 *display_wm = entries + display->guard_size;
857
858 /* calculate the self-refresh watermark for display cursor */
Matt Roper3dd512f2015-02-27 10:12:00 -0800859 entries = line_count * pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300860 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
861 *cursor_wm = entries + cursor->guard_size;
862
863 return g4x_check_srwm(dev,
864 *display_wm, *cursor_wm,
865 display, cursor);
866}
867
Ville Syrjälä15665972015-03-10 16:16:28 +0200868#define FW_WM_VLV(value, plane) \
869 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
870
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200871static void vlv_write_wm_values(struct intel_crtc *crtc,
872 const struct vlv_wm_values *wm)
873{
874 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
875 enum pipe pipe = crtc->pipe;
876
877 I915_WRITE(VLV_DDL(pipe),
878 (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) |
879 (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) |
880 (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) |
881 (wm->ddl[pipe].primary << DDL_PLANE_SHIFT));
882
Ville Syrjäläae801522015-03-05 21:19:49 +0200883 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200884 FW_WM(wm->sr.plane, SR) |
885 FW_WM(wm->pipe[PIPE_B].cursor, CURSORB) |
886 FW_WM_VLV(wm->pipe[PIPE_B].primary, PLANEB) |
887 FW_WM_VLV(wm->pipe[PIPE_A].primary, PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200888 I915_WRITE(DSPFW2,
Ville Syrjälä15665972015-03-10 16:16:28 +0200889 FW_WM_VLV(wm->pipe[PIPE_A].sprite[1], SPRITEB) |
890 FW_WM(wm->pipe[PIPE_A].cursor, CURSORA) |
891 FW_WM_VLV(wm->pipe[PIPE_A].sprite[0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200892 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200893 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200894
895 if (IS_CHERRYVIEW(dev_priv)) {
896 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200897 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
898 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200899 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200900 FW_WM_VLV(wm->pipe[PIPE_C].sprite[1], SPRITEF) |
901 FW_WM_VLV(wm->pipe[PIPE_C].sprite[0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200902 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200903 FW_WM_VLV(wm->pipe[PIPE_C].primary, PLANEC) |
904 FW_WM(wm->pipe[PIPE_C].cursor, CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200905 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200906 FW_WM(wm->sr.plane >> 9, SR_HI) |
907 FW_WM(wm->pipe[PIPE_C].sprite[1] >> 8, SPRITEF_HI) |
908 FW_WM(wm->pipe[PIPE_C].sprite[0] >> 8, SPRITEE_HI) |
909 FW_WM(wm->pipe[PIPE_C].primary >> 8, PLANEC_HI) |
910 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
911 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
912 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
913 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
914 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
915 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200916 } else {
917 I915_WRITE(DSPFW7,
Ville Syrjälä15665972015-03-10 16:16:28 +0200918 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
919 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200920 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200921 FW_WM(wm->sr.plane >> 9, SR_HI) |
922 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
923 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
924 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
925 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
926 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
927 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200928 }
929
930 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200931}
932
Ville Syrjälä15665972015-03-10 16:16:28 +0200933#undef FW_WM_VLV
934
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300935enum vlv_wm_level {
936 VLV_WM_LEVEL_PM2,
937 VLV_WM_LEVEL_PM5,
938 VLV_WM_LEVEL_DDR_DVFS,
939 CHV_WM_NUM_LEVELS,
940 VLV_WM_NUM_LEVELS = 1,
941};
942
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300943/* latency must be in 0.1us units. */
944static unsigned int vlv_wm_method2(unsigned int pixel_rate,
945 unsigned int pipe_htotal,
946 unsigned int horiz_pixels,
947 unsigned int bytes_per_pixel,
948 unsigned int latency)
949{
950 unsigned int ret;
951
952 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
953 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
954 ret = DIV_ROUND_UP(ret, 64);
955
956 return ret;
957}
958
959static void vlv_setup_wm_latency(struct drm_device *dev)
960{
961 struct drm_i915_private *dev_priv = dev->dev_private;
962
963 /* all latencies in usec */
964 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
965
966 if (IS_CHERRYVIEW(dev_priv)) {
967 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
968 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
969 }
970}
971
972static uint16_t vlv_compute_wm_level(struct intel_plane *plane,
973 struct intel_crtc *crtc,
974 const struct intel_plane_state *state,
975 int level)
976{
977 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
978 int clock, htotal, pixel_size, width, wm;
979
980 if (dev_priv->wm.pri_latency[level] == 0)
981 return USHRT_MAX;
982
983 if (!state->visible)
984 return 0;
985
986 pixel_size = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
987 clock = crtc->config->base.adjusted_mode.crtc_clock;
988 htotal = crtc->config->base.adjusted_mode.crtc_htotal;
989 width = crtc->config->pipe_src_w;
990 if (WARN_ON(htotal == 0))
991 htotal = 1;
992
993 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
994 /*
995 * FIXME the formula gives values that are
996 * too big for the cursor FIFO, and hence we
997 * would never be able to use cursors. For
998 * now just hardcode the watermark.
999 */
1000 wm = 63;
1001 } else {
1002 wm = vlv_wm_method2(clock, htotal, width, pixel_size,
1003 dev_priv->wm.pri_latency[level] * 10);
1004 }
1005
1006 return min_t(int, wm, USHRT_MAX);
1007}
1008
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001009static void vlv_compute_fifo(struct intel_crtc *crtc)
1010{
1011 struct drm_device *dev = crtc->base.dev;
1012 struct vlv_wm_state *wm_state = &crtc->wm_state;
1013 struct intel_plane *plane;
1014 unsigned int total_rate = 0;
1015 const int fifo_size = 512 - 1;
1016 int fifo_extra, fifo_left = fifo_size;
1017
1018 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1019 struct intel_plane_state *state =
1020 to_intel_plane_state(plane->base.state);
1021
1022 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1023 continue;
1024
1025 if (state->visible) {
1026 wm_state->num_active_planes++;
1027 total_rate += drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1028 }
1029 }
1030
1031 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1032 struct intel_plane_state *state =
1033 to_intel_plane_state(plane->base.state);
1034 unsigned int rate;
1035
1036 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1037 plane->wm.fifo_size = 63;
1038 continue;
1039 }
1040
1041 if (!state->visible) {
1042 plane->wm.fifo_size = 0;
1043 continue;
1044 }
1045
1046 rate = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1047 plane->wm.fifo_size = fifo_size * rate / total_rate;
1048 fifo_left -= plane->wm.fifo_size;
1049 }
1050
1051 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1052
1053 /* spread the remainder evenly */
1054 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1055 int plane_extra;
1056
1057 if (fifo_left == 0)
1058 break;
1059
1060 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1061 continue;
1062
1063 /* give it all to the first plane if none are active */
1064 if (plane->wm.fifo_size == 0 &&
1065 wm_state->num_active_planes)
1066 continue;
1067
1068 plane_extra = min(fifo_extra, fifo_left);
1069 plane->wm.fifo_size += plane_extra;
1070 fifo_left -= plane_extra;
1071 }
1072
1073 WARN_ON(fifo_left != 0);
1074}
1075
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001076static void vlv_invert_wms(struct intel_crtc *crtc)
1077{
1078 struct vlv_wm_state *wm_state = &crtc->wm_state;
1079 int level;
1080
1081 for (level = 0; level < wm_state->num_levels; level++) {
1082 struct drm_device *dev = crtc->base.dev;
1083 const int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1084 struct intel_plane *plane;
1085
1086 wm_state->sr[level].plane = sr_fifo_size - wm_state->sr[level].plane;
1087 wm_state->sr[level].cursor = 63 - wm_state->sr[level].cursor;
1088
1089 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1090 switch (plane->base.type) {
1091 int sprite;
1092 case DRM_PLANE_TYPE_CURSOR:
1093 wm_state->wm[level].cursor = plane->wm.fifo_size -
1094 wm_state->wm[level].cursor;
1095 break;
1096 case DRM_PLANE_TYPE_PRIMARY:
1097 wm_state->wm[level].primary = plane->wm.fifo_size -
1098 wm_state->wm[level].primary;
1099 break;
1100 case DRM_PLANE_TYPE_OVERLAY:
1101 sprite = plane->plane;
1102 wm_state->wm[level].sprite[sprite] = plane->wm.fifo_size -
1103 wm_state->wm[level].sprite[sprite];
1104 break;
1105 }
1106 }
1107 }
1108}
1109
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001110static void vlv_compute_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001111{
1112 struct drm_device *dev = crtc->base.dev;
1113 struct vlv_wm_state *wm_state = &crtc->wm_state;
1114 struct intel_plane *plane;
1115 int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1116 int level;
1117
1118 memset(wm_state, 0, sizeof(*wm_state));
1119
Ville Syrjälä852eb002015-06-24 22:00:07 +03001120 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001121 if (IS_CHERRYVIEW(dev))
1122 wm_state->num_levels = CHV_WM_NUM_LEVELS;
1123 else
1124 wm_state->num_levels = VLV_WM_NUM_LEVELS;
1125
1126 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001127
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001128 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001129
1130 if (wm_state->num_active_planes != 1)
1131 wm_state->cxsr = false;
1132
1133 if (wm_state->cxsr) {
1134 for (level = 0; level < wm_state->num_levels; level++) {
1135 wm_state->sr[level].plane = sr_fifo_size;
1136 wm_state->sr[level].cursor = 63;
1137 }
1138 }
1139
1140 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1141 struct intel_plane_state *state =
1142 to_intel_plane_state(plane->base.state);
1143
1144 if (!state->visible)
1145 continue;
1146
1147 /* normal watermarks */
1148 for (level = 0; level < wm_state->num_levels; level++) {
1149 int wm = vlv_compute_wm_level(plane, crtc, state, level);
1150 int max_wm = plane->base.type == DRM_PLANE_TYPE_CURSOR ? 63 : 511;
1151
1152 /* hack */
1153 if (WARN_ON(level == 0 && wm > max_wm))
1154 wm = max_wm;
1155
1156 if (wm > plane->wm.fifo_size)
1157 break;
1158
1159 switch (plane->base.type) {
1160 int sprite;
1161 case DRM_PLANE_TYPE_CURSOR:
1162 wm_state->wm[level].cursor = wm;
1163 break;
1164 case DRM_PLANE_TYPE_PRIMARY:
1165 wm_state->wm[level].primary = wm;
1166 break;
1167 case DRM_PLANE_TYPE_OVERLAY:
1168 sprite = plane->plane;
1169 wm_state->wm[level].sprite[sprite] = wm;
1170 break;
1171 }
1172 }
1173
1174 wm_state->num_levels = level;
1175
1176 if (!wm_state->cxsr)
1177 continue;
1178
1179 /* maxfifo watermarks */
1180 switch (plane->base.type) {
1181 int sprite, level;
1182 case DRM_PLANE_TYPE_CURSOR:
1183 for (level = 0; level < wm_state->num_levels; level++)
1184 wm_state->sr[level].cursor =
1185 wm_state->sr[level].cursor;
1186 break;
1187 case DRM_PLANE_TYPE_PRIMARY:
1188 for (level = 0; level < wm_state->num_levels; level++)
1189 wm_state->sr[level].plane =
1190 min(wm_state->sr[level].plane,
1191 wm_state->wm[level].primary);
1192 break;
1193 case DRM_PLANE_TYPE_OVERLAY:
1194 sprite = plane->plane;
1195 for (level = 0; level < wm_state->num_levels; level++)
1196 wm_state->sr[level].plane =
1197 min(wm_state->sr[level].plane,
1198 wm_state->wm[level].sprite[sprite]);
1199 break;
1200 }
1201 }
1202
1203 /* clear any (partially) filled invalid levels */
1204 for (level = wm_state->num_levels; level < CHV_WM_NUM_LEVELS; level++) {
1205 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1206 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1207 }
1208
1209 vlv_invert_wms(crtc);
1210}
1211
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001212#define VLV_FIFO(plane, value) \
1213 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1214
1215static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1216{
1217 struct drm_device *dev = crtc->base.dev;
1218 struct drm_i915_private *dev_priv = to_i915(dev);
1219 struct intel_plane *plane;
1220 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1221
1222 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1223 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1224 WARN_ON(plane->wm.fifo_size != 63);
1225 continue;
1226 }
1227
1228 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
1229 sprite0_start = plane->wm.fifo_size;
1230 else if (plane->plane == 0)
1231 sprite1_start = sprite0_start + plane->wm.fifo_size;
1232 else
1233 fifo_size = sprite1_start + plane->wm.fifo_size;
1234 }
1235
1236 WARN_ON(fifo_size != 512 - 1);
1237
1238 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1239 pipe_name(crtc->pipe), sprite0_start,
1240 sprite1_start, fifo_size);
1241
1242 switch (crtc->pipe) {
1243 uint32_t dsparb, dsparb2, dsparb3;
1244 case PIPE_A:
1245 dsparb = I915_READ(DSPARB);
1246 dsparb2 = I915_READ(DSPARB2);
1247
1248 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1249 VLV_FIFO(SPRITEB, 0xff));
1250 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1251 VLV_FIFO(SPRITEB, sprite1_start));
1252
1253 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1254 VLV_FIFO(SPRITEB_HI, 0x1));
1255 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1256 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1257
1258 I915_WRITE(DSPARB, dsparb);
1259 I915_WRITE(DSPARB2, dsparb2);
1260 break;
1261 case PIPE_B:
1262 dsparb = I915_READ(DSPARB);
1263 dsparb2 = I915_READ(DSPARB2);
1264
1265 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1266 VLV_FIFO(SPRITED, 0xff));
1267 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1268 VLV_FIFO(SPRITED, sprite1_start));
1269
1270 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1271 VLV_FIFO(SPRITED_HI, 0xff));
1272 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1273 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1274
1275 I915_WRITE(DSPARB, dsparb);
1276 I915_WRITE(DSPARB2, dsparb2);
1277 break;
1278 case PIPE_C:
1279 dsparb3 = I915_READ(DSPARB3);
1280 dsparb2 = I915_READ(DSPARB2);
1281
1282 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1283 VLV_FIFO(SPRITEF, 0xff));
1284 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1285 VLV_FIFO(SPRITEF, sprite1_start));
1286
1287 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1288 VLV_FIFO(SPRITEF_HI, 0xff));
1289 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1290 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1291
1292 I915_WRITE(DSPARB3, dsparb3);
1293 I915_WRITE(DSPARB2, dsparb2);
1294 break;
1295 default:
1296 break;
1297 }
1298}
1299
1300#undef VLV_FIFO
1301
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001302static void vlv_merge_wm(struct drm_device *dev,
1303 struct vlv_wm_values *wm)
1304{
1305 struct intel_crtc *crtc;
1306 int num_active_crtcs = 0;
1307
1308 if (IS_CHERRYVIEW(dev))
1309 wm->level = VLV_WM_LEVEL_DDR_DVFS;
1310 else
1311 wm->level = VLV_WM_LEVEL_PM2;
1312 wm->cxsr = true;
1313
1314 for_each_intel_crtc(dev, crtc) {
1315 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1316
1317 if (!crtc->active)
1318 continue;
1319
1320 if (!wm_state->cxsr)
1321 wm->cxsr = false;
1322
1323 num_active_crtcs++;
1324 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1325 }
1326
1327 if (num_active_crtcs != 1)
1328 wm->cxsr = false;
1329
1330 for_each_intel_crtc(dev, crtc) {
1331 struct vlv_wm_state *wm_state = &crtc->wm_state;
1332 enum pipe pipe = crtc->pipe;
1333
1334 if (!crtc->active)
1335 continue;
1336
1337 wm->pipe[pipe] = wm_state->wm[wm->level];
1338 if (wm->cxsr)
1339 wm->sr = wm_state->sr[wm->level];
1340
1341 wm->ddl[pipe].primary = DDL_PRECISION_HIGH | 2;
1342 wm->ddl[pipe].sprite[0] = DDL_PRECISION_HIGH | 2;
1343 wm->ddl[pipe].sprite[1] = DDL_PRECISION_HIGH | 2;
1344 wm->ddl[pipe].cursor = DDL_PRECISION_HIGH | 2;
1345 }
1346}
1347
1348static void vlv_update_wm(struct drm_crtc *crtc)
1349{
1350 struct drm_device *dev = crtc->dev;
1351 struct drm_i915_private *dev_priv = dev->dev_private;
1352 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1353 enum pipe pipe = intel_crtc->pipe;
1354 struct vlv_wm_values wm = {};
1355
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001356 vlv_compute_wm(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001357 vlv_merge_wm(dev, &wm);
1358
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001359 if (memcmp(&dev_priv->wm.vlv, &wm, sizeof(wm)) == 0) {
1360 /* FIXME should be part of crtc atomic commit */
1361 vlv_pipe_set_fifo_size(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001362 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001363 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001364
1365 if (wm.level < VLV_WM_LEVEL_DDR_DVFS &&
1366 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_DDR_DVFS)
1367 chv_set_memory_dvfs(dev_priv, false);
1368
1369 if (wm.level < VLV_WM_LEVEL_PM5 &&
1370 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_PM5)
1371 chv_set_memory_pm5(dev_priv, false);
1372
Ville Syrjälä852eb002015-06-24 22:00:07 +03001373 if (!wm.cxsr && dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001374 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001375
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001376 /* FIXME should be part of crtc atomic commit */
1377 vlv_pipe_set_fifo_size(intel_crtc);
1378
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001379 vlv_write_wm_values(intel_crtc, &wm);
1380
1381 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1382 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
1383 pipe_name(pipe), wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1384 wm.pipe[pipe].sprite[0], wm.pipe[pipe].sprite[1],
1385 wm.sr.plane, wm.sr.cursor, wm.level, wm.cxsr);
1386
Ville Syrjälä852eb002015-06-24 22:00:07 +03001387 if (wm.cxsr && !dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001388 intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001389
1390 if (wm.level >= VLV_WM_LEVEL_PM5 &&
1391 dev_priv->wm.vlv.level < VLV_WM_LEVEL_PM5)
1392 chv_set_memory_pm5(dev_priv, true);
1393
1394 if (wm.level >= VLV_WM_LEVEL_DDR_DVFS &&
1395 dev_priv->wm.vlv.level < VLV_WM_LEVEL_DDR_DVFS)
1396 chv_set_memory_dvfs(dev_priv, true);
1397
1398 dev_priv->wm.vlv = wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001399}
1400
Ville Syrjäläae801522015-03-05 21:19:49 +02001401#define single_plane_enabled(mask) is_power_of_2(mask)
1402
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001403static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001404{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001405 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001406 static const int sr_latency_ns = 12000;
1407 struct drm_i915_private *dev_priv = dev->dev_private;
1408 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1409 int plane_sr, cursor_sr;
1410 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001411 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001412
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001413 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001414 &g4x_wm_info, pessimal_latency_ns,
1415 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001416 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001417 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001418
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001419 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001420 &g4x_wm_info, pessimal_latency_ns,
1421 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001422 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001423 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001424
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001425 if (single_plane_enabled(enabled) &&
1426 g4x_compute_srwm(dev, ffs(enabled) - 1,
1427 sr_latency_ns,
1428 &g4x_wm_info,
1429 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001430 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001431 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001432 } else {
Imre Deak98584252014-06-13 14:54:20 +03001433 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001434 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001435 plane_sr = cursor_sr = 0;
1436 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001437
Ville Syrjäläa5043452014-06-28 02:04:18 +03001438 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1439 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001440 planea_wm, cursora_wm,
1441 planeb_wm, cursorb_wm,
1442 plane_sr, cursor_sr);
1443
1444 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001445 FW_WM(plane_sr, SR) |
1446 FW_WM(cursorb_wm, CURSORB) |
1447 FW_WM(planeb_wm, PLANEB) |
1448 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001449 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001450 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001451 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001452 /* HPLL off in SR has some issues on G4x... disable it */
1453 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001454 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001455 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001456
1457 if (cxsr_enabled)
1458 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001459}
1460
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001461static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001462{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001463 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001464 struct drm_i915_private *dev_priv = dev->dev_private;
1465 struct drm_crtc *crtc;
1466 int srwm = 1;
1467 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001468 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001469
1470 /* Calc sr entries for one plane configs */
1471 crtc = single_enabled_crtc(dev);
1472 if (crtc) {
1473 /* self-refresh has much higher latency */
1474 static const int sr_latency_ns = 12000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001475 const struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001476 &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001477 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001478 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001479 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001480 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001481 unsigned long line_time_us;
1482 int entries;
1483
Ville Syrjälä922044c2014-02-14 14:18:57 +02001484 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001485
1486 /* Use ns/us then divide to preserve precision */
1487 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1488 pixel_size * hdisplay;
1489 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1490 srwm = I965_FIFO_SIZE - entries;
1491 if (srwm < 0)
1492 srwm = 1;
1493 srwm &= 0x1ff;
1494 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1495 entries, srwm);
1496
1497 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Matt Roper3dd512f2015-02-27 10:12:00 -08001498 pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001499 entries = DIV_ROUND_UP(entries,
1500 i965_cursor_wm_info.cacheline_size);
1501 cursor_sr = i965_cursor_wm_info.fifo_size -
1502 (entries + i965_cursor_wm_info.guard_size);
1503
1504 if (cursor_sr > i965_cursor_wm_info.max_wm)
1505 cursor_sr = i965_cursor_wm_info.max_wm;
1506
1507 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1508 "cursor %d\n", srwm, cursor_sr);
1509
Imre Deak98584252014-06-13 14:54:20 +03001510 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001511 } else {
Imre Deak98584252014-06-13 14:54:20 +03001512 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001513 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001514 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001515 }
1516
1517 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1518 srwm);
1519
1520 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001521 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1522 FW_WM(8, CURSORB) |
1523 FW_WM(8, PLANEB) |
1524 FW_WM(8, PLANEA));
1525 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1526 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001527 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001528 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001529
1530 if (cxsr_enabled)
1531 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001532}
1533
Ville Syrjäläf4998962015-03-10 17:02:21 +02001534#undef FW_WM
1535
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001536static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001537{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001538 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001539 struct drm_i915_private *dev_priv = dev->dev_private;
1540 const struct intel_watermark_params *wm_info;
1541 uint32_t fwater_lo;
1542 uint32_t fwater_hi;
1543 int cwm, srwm = 1;
1544 int fifo_size;
1545 int planea_wm, planeb_wm;
1546 struct drm_crtc *crtc, *enabled = NULL;
1547
1548 if (IS_I945GM(dev))
1549 wm_info = &i945_wm_info;
1550 else if (!IS_GEN2(dev))
1551 wm_info = &i915_wm_info;
1552 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001553 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001554
1555 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1556 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001557 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001558 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001559 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001560 if (IS_GEN2(dev))
1561 cpp = 4;
1562
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001563 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001564 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001565 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001566 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001567 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001568 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001569 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001570 if (planea_wm > (long)wm_info->max_wm)
1571 planea_wm = wm_info->max_wm;
1572 }
1573
1574 if (IS_GEN2(dev))
1575 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001576
1577 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1578 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001579 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001580 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001581 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001582 if (IS_GEN2(dev))
1583 cpp = 4;
1584
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001585 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001586 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001587 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001588 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001589 if (enabled == NULL)
1590 enabled = crtc;
1591 else
1592 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001593 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001594 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001595 if (planeb_wm > (long)wm_info->max_wm)
1596 planeb_wm = wm_info->max_wm;
1597 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001598
1599 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1600
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001601 if (IS_I915GM(dev) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001602 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001603
Matt Roper59bea882015-02-27 10:12:01 -08001604 obj = intel_fb_obj(enabled->primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001605
1606 /* self-refresh seems busted with untiled */
Matt Roper2ff8fde2014-07-08 07:50:07 -07001607 if (obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001608 enabled = NULL;
1609 }
1610
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001611 /*
1612 * Overlay gets an aggressive default since video jitter is bad.
1613 */
1614 cwm = 2;
1615
1616 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001617 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001618
1619 /* Calc sr entries for one plane configs */
1620 if (HAS_FW_BLC(dev) && enabled) {
1621 /* self-refresh has much higher latency */
1622 static const int sr_latency_ns = 6000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001623 const struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001624 &to_intel_crtc(enabled)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001625 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001626 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001627 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001628 int pixel_size = enabled->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001629 unsigned long line_time_us;
1630 int entries;
1631
Ville Syrjälä922044c2014-02-14 14:18:57 +02001632 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001633
1634 /* Use ns/us then divide to preserve precision */
1635 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1636 pixel_size * hdisplay;
1637 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1638 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1639 srwm = wm_info->fifo_size - entries;
1640 if (srwm < 0)
1641 srwm = 1;
1642
1643 if (IS_I945G(dev) || IS_I945GM(dev))
1644 I915_WRITE(FW_BLC_SELF,
1645 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1646 else if (IS_I915GM(dev))
1647 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1648 }
1649
1650 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1651 planea_wm, planeb_wm, cwm, srwm);
1652
1653 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1654 fwater_hi = (cwm & 0x1f);
1655
1656 /* Set request length to 8 cachelines per fetch */
1657 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1658 fwater_hi = fwater_hi | (1 << 8);
1659
1660 I915_WRITE(FW_BLC, fwater_lo);
1661 I915_WRITE(FW_BLC2, fwater_hi);
1662
Imre Deak5209b1f2014-07-01 12:36:17 +03001663 if (enabled)
1664 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001665}
1666
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001667static void i845_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001668{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001669 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001670 struct drm_i915_private *dev_priv = dev->dev_private;
1671 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001672 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001673 uint32_t fwater_lo;
1674 int planea_wm;
1675
1676 crtc = single_enabled_crtc(dev);
1677 if (crtc == NULL)
1678 return;
1679
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001680 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001681 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001682 &i845_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001683 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001684 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001685 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1686 fwater_lo |= (3<<8) | planea_wm;
1687
1688 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1689
1690 I915_WRITE(FW_BLC, fwater_lo);
1691}
1692
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001693uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001694{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001695 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001696
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001697 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001698
1699 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1700 * adjust the pixel_rate here. */
1701
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001702 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001703 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001704 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001705
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001706 pipe_w = pipe_config->pipe_src_w;
1707 pipe_h = pipe_config->pipe_src_h;
1708
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001709 pfit_w = (pfit_size >> 16) & 0xFFFF;
1710 pfit_h = pfit_size & 0xFFFF;
1711 if (pipe_w < pfit_w)
1712 pipe_w = pfit_w;
1713 if (pipe_h < pfit_h)
1714 pipe_h = pfit_h;
1715
1716 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1717 pfit_w * pfit_h);
1718 }
1719
1720 return pixel_rate;
1721}
1722
Ville Syrjälä37126462013-08-01 16:18:55 +03001723/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001724static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001725 uint32_t latency)
1726{
1727 uint64_t ret;
1728
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001729 if (WARN(latency == 0, "Latency value missing\n"))
1730 return UINT_MAX;
1731
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001732 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
1733 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1734
1735 return ret;
1736}
1737
Ville Syrjälä37126462013-08-01 16:18:55 +03001738/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001739static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001740 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
1741 uint32_t latency)
1742{
1743 uint32_t ret;
1744
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001745 if (WARN(latency == 0, "Latency value missing\n"))
1746 return UINT_MAX;
1747
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001748 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
1749 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
1750 ret = DIV_ROUND_UP(ret, 64) + 2;
1751 return ret;
1752}
1753
Ville Syrjälä23297042013-07-05 11:57:17 +03001754static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001755 uint8_t bytes_per_pixel)
1756{
1757 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
1758}
1759
Pradeep Bhat2ac96d22014-11-04 17:06:40 +00001760struct skl_pipe_wm_parameters {
1761 bool active;
1762 uint32_t pipe_htotal;
1763 uint32_t pixel_rate; /* in KHz */
1764 struct intel_plane_wm_parameters plane[I915_MAX_PLANES];
1765 struct intel_plane_wm_parameters cursor;
1766};
1767
Imre Deak820c1982013-12-17 14:46:36 +02001768struct ilk_pipe_wm_parameters {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001769 bool active;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001770 uint32_t pipe_htotal;
1771 uint32_t pixel_rate;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001772 struct intel_plane_wm_parameters pri;
1773 struct intel_plane_wm_parameters spr;
1774 struct intel_plane_wm_parameters cur;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001775};
1776
Imre Deak820c1982013-12-17 14:46:36 +02001777struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001778 uint16_t pri;
1779 uint16_t spr;
1780 uint16_t cur;
1781 uint16_t fbc;
1782};
1783
Ville Syrjälä240264f2013-08-07 13:29:12 +03001784/* used in computing the new watermarks state */
1785struct intel_wm_config {
1786 unsigned int num_pipes_active;
1787 bool sprites_enabled;
1788 bool sprites_scaled;
Ville Syrjälä240264f2013-08-07 13:29:12 +03001789};
1790
Ville Syrjälä37126462013-08-01 16:18:55 +03001791/*
1792 * For both WM_PIPE and WM_LP.
1793 * mem_value must be in 0.1us units.
1794 */
Imre Deak820c1982013-12-17 14:46:36 +02001795static uint32_t ilk_compute_pri_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001796 uint32_t mem_value,
1797 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001798{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001799 uint32_t method1, method2;
1800
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001801 if (!params->active || !params->pri.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001802 return 0;
1803
Ville Syrjälä23297042013-07-05 11:57:17 +03001804 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001805 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001806 mem_value);
1807
1808 if (!is_lp)
1809 return method1;
1810
Ville Syrjälä23297042013-07-05 11:57:17 +03001811 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001812 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001813 params->pri.horiz_pixels,
1814 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001815 mem_value);
1816
1817 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001818}
1819
Ville Syrjälä37126462013-08-01 16:18:55 +03001820/*
1821 * For both WM_PIPE and WM_LP.
1822 * mem_value must be in 0.1us units.
1823 */
Imre Deak820c1982013-12-17 14:46:36 +02001824static uint32_t ilk_compute_spr_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001825 uint32_t mem_value)
1826{
1827 uint32_t method1, method2;
1828
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001829 if (!params->active || !params->spr.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001830 return 0;
1831
Ville Syrjälä23297042013-07-05 11:57:17 +03001832 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001833 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001834 mem_value);
Ville Syrjälä23297042013-07-05 11:57:17 +03001835 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001836 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001837 params->spr.horiz_pixels,
1838 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001839 mem_value);
1840 return min(method1, method2);
1841}
1842
Ville Syrjälä37126462013-08-01 16:18:55 +03001843/*
1844 * For both WM_PIPE and WM_LP.
1845 * mem_value must be in 0.1us units.
1846 */
Imre Deak820c1982013-12-17 14:46:36 +02001847static uint32_t ilk_compute_cur_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001848 uint32_t mem_value)
1849{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001850 if (!params->active || !params->cur.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001851 return 0;
1852
Ville Syrjälä23297042013-07-05 11:57:17 +03001853 return ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001854 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001855 params->cur.horiz_pixels,
1856 params->cur.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001857 mem_value);
1858}
1859
Paulo Zanonicca32e92013-05-31 11:45:06 -03001860/* Only for WM_LP. */
Imre Deak820c1982013-12-17 14:46:36 +02001861static uint32_t ilk_compute_fbc_wm(const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001862 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001863{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001864 if (!params->active || !params->pri.enabled)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001865 return 0;
1866
Ville Syrjälä23297042013-07-05 11:57:17 +03001867 return ilk_wm_fbc(pri_val,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001868 params->pri.horiz_pixels,
1869 params->pri.bytes_per_pixel);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001870}
1871
Ville Syrjälä158ae642013-08-07 13:28:19 +03001872static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1873{
Ville Syrjälä416f4722013-11-02 21:07:46 -07001874 if (INTEL_INFO(dev)->gen >= 8)
1875 return 3072;
1876 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001877 return 768;
1878 else
1879 return 512;
1880}
1881
Ville Syrjälä4e975082014-03-07 18:32:11 +02001882static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1883 int level, bool is_sprite)
1884{
1885 if (INTEL_INFO(dev)->gen >= 8)
1886 /* BDW primary/sprite plane watermarks */
1887 return level == 0 ? 255 : 2047;
1888 else if (INTEL_INFO(dev)->gen >= 7)
1889 /* IVB/HSW primary/sprite plane watermarks */
1890 return level == 0 ? 127 : 1023;
1891 else if (!is_sprite)
1892 /* ILK/SNB primary plane watermarks */
1893 return level == 0 ? 127 : 511;
1894 else
1895 /* ILK/SNB sprite plane watermarks */
1896 return level == 0 ? 63 : 255;
1897}
1898
1899static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1900 int level)
1901{
1902 if (INTEL_INFO(dev)->gen >= 7)
1903 return level == 0 ? 63 : 255;
1904 else
1905 return level == 0 ? 31 : 63;
1906}
1907
1908static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1909{
1910 if (INTEL_INFO(dev)->gen >= 8)
1911 return 31;
1912 else
1913 return 15;
1914}
1915
Ville Syrjälä158ae642013-08-07 13:28:19 +03001916/* Calculate the maximum primary/sprite plane watermark */
1917static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1918 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001919 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001920 enum intel_ddb_partitioning ddb_partitioning,
1921 bool is_sprite)
1922{
1923 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001924
1925 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001926 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001927 return 0;
1928
1929 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001930 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001931 fifo_size /= INTEL_INFO(dev)->num_pipes;
1932
1933 /*
1934 * For some reason the non self refresh
1935 * FIFO size is only half of the self
1936 * refresh FIFO size on ILK/SNB.
1937 */
1938 if (INTEL_INFO(dev)->gen <= 6)
1939 fifo_size /= 2;
1940 }
1941
Ville Syrjälä240264f2013-08-07 13:29:12 +03001942 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001943 /* level 0 is always calculated with 1:1 split */
1944 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1945 if (is_sprite)
1946 fifo_size *= 5;
1947 fifo_size /= 6;
1948 } else {
1949 fifo_size /= 2;
1950 }
1951 }
1952
1953 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001954 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001955}
1956
1957/* Calculate the maximum cursor plane watermark */
1958static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001959 int level,
1960 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001961{
1962 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001963 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001964 return 64;
1965
1966 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001967 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001968}
1969
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001970static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001971 int level,
1972 const struct intel_wm_config *config,
1973 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001974 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001975{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001976 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1977 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1978 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02001979 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001980}
1981
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001982static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
1983 int level,
1984 struct ilk_wm_maximums *max)
1985{
1986 max->pri = ilk_plane_wm_reg_max(dev, level, false);
1987 max->spr = ilk_plane_wm_reg_max(dev, level, true);
1988 max->cur = ilk_cursor_wm_reg_max(dev, level);
1989 max->fbc = ilk_fbc_wm_reg_max(dev);
1990}
1991
Ville Syrjäläd9395652013-10-09 19:18:10 +03001992static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001993 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001994 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001995{
1996 bool ret;
1997
1998 /* already determined to be invalid? */
1999 if (!result->enable)
2000 return false;
2001
2002 result->enable = result->pri_val <= max->pri &&
2003 result->spr_val <= max->spr &&
2004 result->cur_val <= max->cur;
2005
2006 ret = result->enable;
2007
2008 /*
2009 * HACK until we can pre-compute everything,
2010 * and thus fail gracefully if LP0 watermarks
2011 * are exceeded...
2012 */
2013 if (level == 0 && !result->enable) {
2014 if (result->pri_val > max->pri)
2015 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2016 level, result->pri_val, max->pri);
2017 if (result->spr_val > max->spr)
2018 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2019 level, result->spr_val, max->spr);
2020 if (result->cur_val > max->cur)
2021 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2022 level, result->cur_val, max->cur);
2023
2024 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2025 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2026 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2027 result->enable = true;
2028 }
2029
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002030 return ret;
2031}
2032
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002033static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002034 int level,
Imre Deak820c1982013-12-17 14:46:36 +02002035 const struct ilk_pipe_wm_parameters *p,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002036 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002037{
2038 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2039 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2040 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2041
2042 /* WM1+ latency values stored in 0.5us units */
2043 if (level > 0) {
2044 pri_latency *= 5;
2045 spr_latency *= 5;
2046 cur_latency *= 5;
2047 }
2048
2049 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
2050 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
2051 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
2052 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
2053 result->enable = true;
2054}
2055
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002056static uint32_t
2057hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002058{
2059 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002060 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002061 struct drm_display_mode *mode = &intel_crtc->config->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002062 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002063
Matt Roper3ef00282015-03-09 10:19:24 -07002064 if (!intel_crtc->active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002065 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002066
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002067 /* The WM are computed with base on how long it takes to fill a single
2068 * row at the given clock rate, multiplied by 8.
2069 * */
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002070 linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
2071 mode->crtc_clock);
2072 ips_linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
Ville Syrjälä05024da2015-06-03 15:45:08 +03002073 dev_priv->cdclk_freq);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002074
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002075 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2076 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002077}
2078
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002079static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002080{
2081 struct drm_i915_private *dev_priv = dev->dev_private;
2082
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002083 if (IS_GEN9(dev)) {
2084 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002085 int ret, i;
Vandana Kannan367294b2014-11-04 17:06:46 +00002086 int level, max_level = ilk_wm_max_level(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002087
2088 /* read the first set of memory latencies[0:3] */
2089 val = 0; /* data0 to be programmed to 0 for first set */
2090 mutex_lock(&dev_priv->rps.hw_lock);
2091 ret = sandybridge_pcode_read(dev_priv,
2092 GEN9_PCODE_READ_MEM_LATENCY,
2093 &val);
2094 mutex_unlock(&dev_priv->rps.hw_lock);
2095
2096 if (ret) {
2097 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2098 return;
2099 }
2100
2101 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2102 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2103 GEN9_MEM_LATENCY_LEVEL_MASK;
2104 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2105 GEN9_MEM_LATENCY_LEVEL_MASK;
2106 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2107 GEN9_MEM_LATENCY_LEVEL_MASK;
2108
2109 /* read the second set of memory latencies[4:7] */
2110 val = 1; /* data0 to be programmed to 1 for second set */
2111 mutex_lock(&dev_priv->rps.hw_lock);
2112 ret = sandybridge_pcode_read(dev_priv,
2113 GEN9_PCODE_READ_MEM_LATENCY,
2114 &val);
2115 mutex_unlock(&dev_priv->rps.hw_lock);
2116 if (ret) {
2117 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2118 return;
2119 }
2120
2121 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2122 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2123 GEN9_MEM_LATENCY_LEVEL_MASK;
2124 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2125 GEN9_MEM_LATENCY_LEVEL_MASK;
2126 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2127 GEN9_MEM_LATENCY_LEVEL_MASK;
2128
Vandana Kannan367294b2014-11-04 17:06:46 +00002129 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00002130 * WaWmMemoryReadLatency:skl
2131 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002132 * punit doesn't take into account the read latency so we need
2133 * to add 2us to the various latency levels we retrieve from
2134 * the punit.
2135 * - W0 is a bit special in that it's the only level that
2136 * can't be disabled if we want to have display working, so
2137 * we always add 2us there.
2138 * - For levels >=1, punit returns 0us latency when they are
2139 * disabled, so we respect that and don't add 2us then
Vandana Kannan4f947382014-11-04 17:06:47 +00002140 *
2141 * Additionally, if a level n (n > 1) has a 0us latency, all
2142 * levels m (m >= n) need to be disabled. We make sure to
2143 * sanitize the values out of the punit to satisfy this
2144 * requirement.
Vandana Kannan367294b2014-11-04 17:06:46 +00002145 */
2146 wm[0] += 2;
2147 for (level = 1; level <= max_level; level++)
2148 if (wm[level] != 0)
2149 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002150 else {
2151 for (i = level + 1; i <= max_level; i++)
2152 wm[i] = 0;
Vandana Kannan367294b2014-11-04 17:06:46 +00002153
Vandana Kannan4f947382014-11-04 17:06:47 +00002154 break;
2155 }
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002156 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002157 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2158
2159 wm[0] = (sskpd >> 56) & 0xFF;
2160 if (wm[0] == 0)
2161 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002162 wm[1] = (sskpd >> 4) & 0xFF;
2163 wm[2] = (sskpd >> 12) & 0xFF;
2164 wm[3] = (sskpd >> 20) & 0x1FF;
2165 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002166 } else if (INTEL_INFO(dev)->gen >= 6) {
2167 uint32_t sskpd = I915_READ(MCH_SSKPD);
2168
2169 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2170 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2171 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2172 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002173 } else if (INTEL_INFO(dev)->gen >= 5) {
2174 uint32_t mltr = I915_READ(MLTR_ILK);
2175
2176 /* ILK primary LP0 latency is 700 ns */
2177 wm[0] = 7;
2178 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2179 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002180 }
2181}
2182
Ville Syrjälä53615a52013-08-01 16:18:50 +03002183static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2184{
2185 /* ILK sprite LP0 latency is 1300 ns */
2186 if (INTEL_INFO(dev)->gen == 5)
2187 wm[0] = 13;
2188}
2189
2190static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2191{
2192 /* ILK cursor LP0 latency is 1300 ns */
2193 if (INTEL_INFO(dev)->gen == 5)
2194 wm[0] = 13;
2195
2196 /* WaDoubleCursorLP3Latency:ivb */
2197 if (IS_IVYBRIDGE(dev))
2198 wm[3] *= 2;
2199}
2200
Damien Lespiau546c81f2014-05-13 15:30:26 +01002201int ilk_wm_max_level(const struct drm_device *dev)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002202{
2203 /* how many WM levels are we expecting */
Damien Lespiaub6e742f2015-05-09 02:05:55 +01002204 if (INTEL_INFO(dev)->gen >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002205 return 7;
2206 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002207 return 4;
2208 else if (INTEL_INFO(dev)->gen >= 6)
2209 return 3;
2210 else
2211 return 2;
2212}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002213
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002214static void intel_print_wm_latency(struct drm_device *dev,
2215 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002216 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002217{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002218 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002219
2220 for (level = 0; level <= max_level; level++) {
2221 unsigned int latency = wm[level];
2222
2223 if (latency == 0) {
2224 DRM_ERROR("%s WM%d latency not provided\n",
2225 name, level);
2226 continue;
2227 }
2228
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002229 /*
2230 * - latencies are in us on gen9.
2231 * - before then, WM1+ latency values are in 0.5us units
2232 */
2233 if (IS_GEN9(dev))
2234 latency *= 10;
2235 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002236 latency *= 5;
2237
2238 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2239 name, level, wm[level],
2240 latency / 10, latency % 10);
2241 }
2242}
2243
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002244static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2245 uint16_t wm[5], uint16_t min)
2246{
2247 int level, max_level = ilk_wm_max_level(dev_priv->dev);
2248
2249 if (wm[0] >= min)
2250 return false;
2251
2252 wm[0] = max(wm[0], min);
2253 for (level = 1; level <= max_level; level++)
2254 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2255
2256 return true;
2257}
2258
2259static void snb_wm_latency_quirk(struct drm_device *dev)
2260{
2261 struct drm_i915_private *dev_priv = dev->dev_private;
2262 bool changed;
2263
2264 /*
2265 * The BIOS provided WM memory latency values are often
2266 * inadequate for high resolution displays. Adjust them.
2267 */
2268 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2269 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2270 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2271
2272 if (!changed)
2273 return;
2274
2275 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
2276 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2277 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2278 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
2279}
2280
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002281static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002282{
2283 struct drm_i915_private *dev_priv = dev->dev_private;
2284
2285 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2286
2287 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2288 sizeof(dev_priv->wm.pri_latency));
2289 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2290 sizeof(dev_priv->wm.pri_latency));
2291
2292 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2293 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002294
2295 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2296 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2297 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002298
2299 if (IS_GEN6(dev))
2300 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002301}
2302
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002303static void skl_setup_wm_latency(struct drm_device *dev)
2304{
2305 struct drm_i915_private *dev_priv = dev->dev_private;
2306
2307 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
2308 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
2309}
2310
Imre Deak820c1982013-12-17 14:46:36 +02002311static void ilk_compute_wm_parameters(struct drm_crtc *crtc,
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002312 struct ilk_pipe_wm_parameters *p)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002313{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002314 struct drm_device *dev = crtc->dev;
2315 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2316 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002317 struct drm_plane *plane;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002318
Matt Roper3ef00282015-03-09 10:19:24 -07002319 if (!intel_crtc->active)
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002320 return;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002321
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002322 p->active = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002323 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03002324 p->pixel_rate = ilk_pipe_pixel_rate(intel_crtc->config);
Matt Roperc9f038a2015-03-09 11:06:02 -07002325
Thomas Gummerer54da6912015-05-14 09:16:39 +02002326 if (crtc->primary->state->fb)
Matt Roperc9f038a2015-03-09 11:06:02 -07002327 p->pri.bytes_per_pixel =
2328 crtc->primary->state->fb->bits_per_pixel / 8;
Thomas Gummerer54da6912015-05-14 09:16:39 +02002329 else
2330 p->pri.bytes_per_pixel = 4;
Matt Roperc9f038a2015-03-09 11:06:02 -07002331
Thomas Gummerer54da6912015-05-14 09:16:39 +02002332 p->cur.bytes_per_pixel = 4;
2333 /*
2334 * TODO: for now, assume primary and cursor planes are always enabled.
2335 * Setting them to false makes the screen flicker.
2336 */
2337 p->pri.enabled = true;
2338 p->cur.enabled = true;
2339
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002340 p->pri.horiz_pixels = intel_crtc->config->pipe_src_w;
Matt Roper3dd512f2015-02-27 10:12:00 -08002341 p->cur.horiz_pixels = intel_crtc->base.cursor->state->crtc_w;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002342
Matt Roperaf2b6532014-04-01 15:22:32 -07002343 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002344 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002345
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002346 if (intel_plane->pipe == pipe) {
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002347 p->spr = intel_plane->wm;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002348 break;
2349 }
2350 }
2351}
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002352
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002353static void ilk_compute_wm_config(struct drm_device *dev,
2354 struct intel_wm_config *config)
2355{
2356 struct intel_crtc *intel_crtc;
2357
2358 /* Compute the currently _active_ config */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002359 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002360 const struct intel_pipe_wm *wm = &intel_crtc->wm.active;
2361
2362 if (!wm->pipe_enabled)
2363 continue;
2364
2365 config->sprites_enabled |= wm->sprites_enabled;
2366 config->sprites_scaled |= wm->sprites_scaled;
2367 config->num_pipes_active++;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002368 }
2369}
2370
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002371/* Compute new watermarks for the pipe */
2372static bool intel_compute_pipe_wm(struct drm_crtc *crtc,
Imre Deak820c1982013-12-17 14:46:36 +02002373 const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002374 struct intel_pipe_wm *pipe_wm)
2375{
2376 struct drm_device *dev = crtc->dev;
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002377 const struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002378 int level, max_level = ilk_wm_max_level(dev);
2379 /* LP0 watermark maximums depend on this pipe alone */
2380 struct intel_wm_config config = {
2381 .num_pipes_active = 1,
2382 .sprites_enabled = params->spr.enabled,
2383 .sprites_scaled = params->spr.scaled,
2384 };
Imre Deak820c1982013-12-17 14:46:36 +02002385 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002386
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002387 pipe_wm->pipe_enabled = params->active;
2388 pipe_wm->sprites_enabled = params->spr.enabled;
2389 pipe_wm->sprites_scaled = params->spr.scaled;
2390
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002391 /* ILK/SNB: LP2+ watermarks only w/o sprites */
2392 if (INTEL_INFO(dev)->gen <= 6 && params->spr.enabled)
2393 max_level = 1;
2394
2395 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
2396 if (params->spr.scaled)
2397 max_level = 0;
2398
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002399 ilk_compute_wm_level(dev_priv, 0, params, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002400
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002401 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02002402 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002403
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002404 /* LP0 watermarks always use 1/2 DDB partitioning */
2405 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2406
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002407 /* At least LP0 must be valid */
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002408 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]))
2409 return false;
2410
2411 ilk_compute_wm_reg_maximums(dev, 1, &max);
2412
2413 for (level = 1; level <= max_level; level++) {
2414 struct intel_wm_level wm = {};
2415
2416 ilk_compute_wm_level(dev_priv, level, params, &wm);
2417
2418 /*
2419 * Disable any watermark level that exceeds the
2420 * register maximums since such watermarks are
2421 * always invalid.
2422 */
2423 if (!ilk_validate_wm_level(level, &max, &wm))
2424 break;
2425
2426 pipe_wm->wm[level] = wm;
2427 }
2428
2429 return true;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002430}
2431
2432/*
2433 * Merge the watermarks from all active pipes for a specific level.
2434 */
2435static void ilk_merge_wm_level(struct drm_device *dev,
2436 int level,
2437 struct intel_wm_level *ret_wm)
2438{
2439 const struct intel_crtc *intel_crtc;
2440
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002441 ret_wm->enable = true;
2442
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002443 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002444 const struct intel_pipe_wm *active = &intel_crtc->wm.active;
2445 const struct intel_wm_level *wm = &active->wm[level];
2446
2447 if (!active->pipe_enabled)
2448 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002449
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002450 /*
2451 * The watermark values may have been used in the past,
2452 * so we must maintain them in the registers for some
2453 * time even if the level is now disabled.
2454 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002455 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002456 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002457
2458 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2459 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2460 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2461 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2462 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002463}
2464
2465/*
2466 * Merge all low power watermarks for all active pipes.
2467 */
2468static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002469 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002470 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002471 struct intel_pipe_wm *merged)
2472{
2473 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002474 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002475
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002476 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2477 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2478 config->num_pipes_active > 1)
2479 return;
2480
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002481 /* ILK: FBC WM must be disabled always */
2482 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002483
2484 /* merge each WM1+ level */
2485 for (level = 1; level <= max_level; level++) {
2486 struct intel_wm_level *wm = &merged->wm[level];
2487
2488 ilk_merge_wm_level(dev, level, wm);
2489
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002490 if (level > last_enabled_level)
2491 wm->enable = false;
2492 else if (!ilk_validate_wm_level(level, max, wm))
2493 /* make sure all following levels get disabled */
2494 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002495
2496 /*
2497 * The spec says it is preferred to disable
2498 * FBC WMs instead of disabling a WM level.
2499 */
2500 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002501 if (wm->enable)
2502 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002503 wm->fbc_val = 0;
2504 }
2505 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002506
2507 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2508 /*
2509 * FIXME this is racy. FBC might get enabled later.
2510 * What we should check here is whether FBC can be
2511 * enabled sometime later.
2512 */
2513 if (IS_GEN5(dev) && !merged->fbc_wm_enabled && intel_fbc_enabled(dev)) {
2514 for (level = 2; level <= max_level; level++) {
2515 struct intel_wm_level *wm = &merged->wm[level];
2516
2517 wm->enable = false;
2518 }
2519 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002520}
2521
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002522static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2523{
2524 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2525 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2526}
2527
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002528/* The value we need to program into the WM_LPx latency field */
2529static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2530{
2531 struct drm_i915_private *dev_priv = dev->dev_private;
2532
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002533 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002534 return 2 * level;
2535 else
2536 return dev_priv->wm.pri_latency[level];
2537}
2538
Imre Deak820c1982013-12-17 14:46:36 +02002539static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002540 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002541 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002542 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002543{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002544 struct intel_crtc *intel_crtc;
2545 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002546
Ville Syrjälä0362c782013-10-09 19:17:57 +03002547 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002548 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002549
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002550 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002551 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002552 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002553
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002554 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002555
Ville Syrjälä0362c782013-10-09 19:17:57 +03002556 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002557
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002558 /*
2559 * Maintain the watermark values even if the level is
2560 * disabled. Doing otherwise could cause underruns.
2561 */
2562 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002563 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002564 (r->pri_val << WM1_LP_SR_SHIFT) |
2565 r->cur_val;
2566
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002567 if (r->enable)
2568 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2569
Ville Syrjälä416f4722013-11-02 21:07:46 -07002570 if (INTEL_INFO(dev)->gen >= 8)
2571 results->wm_lp[wm_lp - 1] |=
2572 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2573 else
2574 results->wm_lp[wm_lp - 1] |=
2575 r->fbc_val << WM1_LP_FBC_SHIFT;
2576
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002577 /*
2578 * Always set WM1S_LP_EN when spr_val != 0, even if the
2579 * level is disabled. Doing otherwise could cause underruns.
2580 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002581 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2582 WARN_ON(wm_lp != 1);
2583 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2584 } else
2585 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002586 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002587
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002588 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002589 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002590 enum pipe pipe = intel_crtc->pipe;
2591 const struct intel_wm_level *r =
2592 &intel_crtc->wm.active.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002593
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002594 if (WARN_ON(!r->enable))
2595 continue;
2596
2597 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
2598
2599 results->wm_pipe[pipe] =
2600 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2601 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2602 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002603 }
2604}
2605
Paulo Zanoni861f3382013-05-31 10:19:21 -03002606/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2607 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002608static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002609 struct intel_pipe_wm *r1,
2610 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002611{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002612 int level, max_level = ilk_wm_max_level(dev);
2613 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002614
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002615 for (level = 1; level <= max_level; level++) {
2616 if (r1->wm[level].enable)
2617 level1 = level;
2618 if (r2->wm[level].enable)
2619 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002620 }
2621
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002622 if (level1 == level2) {
2623 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002624 return r2;
2625 else
2626 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002627 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002628 return r1;
2629 } else {
2630 return r2;
2631 }
2632}
2633
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002634/* dirty bits used to track which watermarks need changes */
2635#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2636#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2637#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2638#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2639#define WM_DIRTY_FBC (1 << 24)
2640#define WM_DIRTY_DDB (1 << 25)
2641
Damien Lespiau055e3932014-08-18 13:49:10 +01002642static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002643 const struct ilk_wm_values *old,
2644 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002645{
2646 unsigned int dirty = 0;
2647 enum pipe pipe;
2648 int wm_lp;
2649
Damien Lespiau055e3932014-08-18 13:49:10 +01002650 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002651 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2652 dirty |= WM_DIRTY_LINETIME(pipe);
2653 /* Must disable LP1+ watermarks too */
2654 dirty |= WM_DIRTY_LP_ALL;
2655 }
2656
2657 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2658 dirty |= WM_DIRTY_PIPE(pipe);
2659 /* Must disable LP1+ watermarks too */
2660 dirty |= WM_DIRTY_LP_ALL;
2661 }
2662 }
2663
2664 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2665 dirty |= WM_DIRTY_FBC;
2666 /* Must disable LP1+ watermarks too */
2667 dirty |= WM_DIRTY_LP_ALL;
2668 }
2669
2670 if (old->partitioning != new->partitioning) {
2671 dirty |= WM_DIRTY_DDB;
2672 /* Must disable LP1+ watermarks too */
2673 dirty |= WM_DIRTY_LP_ALL;
2674 }
2675
2676 /* LP1+ watermarks already deemed dirty, no need to continue */
2677 if (dirty & WM_DIRTY_LP_ALL)
2678 return dirty;
2679
2680 /* Find the lowest numbered LP1+ watermark in need of an update... */
2681 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2682 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2683 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2684 break;
2685 }
2686
2687 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2688 for (; wm_lp <= 3; wm_lp++)
2689 dirty |= WM_DIRTY_LP(wm_lp);
2690
2691 return dirty;
2692}
2693
Ville Syrjälä8553c182013-12-05 15:51:39 +02002694static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2695 unsigned int dirty)
2696{
Imre Deak820c1982013-12-17 14:46:36 +02002697 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002698 bool changed = false;
2699
2700 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2701 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2702 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2703 changed = true;
2704 }
2705 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2706 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2707 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2708 changed = true;
2709 }
2710 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2711 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2712 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2713 changed = true;
2714 }
2715
2716 /*
2717 * Don't touch WM1S_LP_EN here.
2718 * Doing so could cause underruns.
2719 */
2720
2721 return changed;
2722}
2723
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002724/*
2725 * The spec says we shouldn't write when we don't need, because every write
2726 * causes WMs to be re-evaluated, expending some power.
2727 */
Imre Deak820c1982013-12-17 14:46:36 +02002728static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2729 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002730{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002731 struct drm_device *dev = dev_priv->dev;
Imre Deak820c1982013-12-17 14:46:36 +02002732 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002733 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002734 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002735
Damien Lespiau055e3932014-08-18 13:49:10 +01002736 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002737 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002738 return;
2739
Ville Syrjälä8553c182013-12-05 15:51:39 +02002740 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002741
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002742 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002743 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002744 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002745 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002746 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002747 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2748
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002749 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002750 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002751 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002752 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002753 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002754 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2755
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002756 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002757 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002758 val = I915_READ(WM_MISC);
2759 if (results->partitioning == INTEL_DDB_PART_1_2)
2760 val &= ~WM_MISC_DATA_PARTITION_5_6;
2761 else
2762 val |= WM_MISC_DATA_PARTITION_5_6;
2763 I915_WRITE(WM_MISC, val);
2764 } else {
2765 val = I915_READ(DISP_ARB_CTL2);
2766 if (results->partitioning == INTEL_DDB_PART_1_2)
2767 val &= ~DISP_DATA_PARTITION_5_6;
2768 else
2769 val |= DISP_DATA_PARTITION_5_6;
2770 I915_WRITE(DISP_ARB_CTL2, val);
2771 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002772 }
2773
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002774 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002775 val = I915_READ(DISP_ARB_CTL);
2776 if (results->enable_fbc_wm)
2777 val &= ~DISP_FBC_WM_DIS;
2778 else
2779 val |= DISP_FBC_WM_DIS;
2780 I915_WRITE(DISP_ARB_CTL, val);
2781 }
2782
Imre Deak954911e2013-12-17 14:46:34 +02002783 if (dirty & WM_DIRTY_LP(1) &&
2784 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2785 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2786
2787 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002788 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2789 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2790 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2791 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2792 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002793
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002794 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002795 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002796 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002797 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002798 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002799 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002800
2801 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002802}
2803
Ville Syrjälä8553c182013-12-05 15:51:39 +02002804static bool ilk_disable_lp_wm(struct drm_device *dev)
2805{
2806 struct drm_i915_private *dev_priv = dev->dev_private;
2807
2808 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2809}
2810
Damien Lespiaub9cec072014-11-04 17:06:43 +00002811/*
2812 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
2813 * different active planes.
2814 */
2815
2816#define SKL_DDB_SIZE 896 /* in blocks */
Damien Lespiau43d735a2015-03-17 11:39:34 +02002817#define BXT_DDB_SIZE 512
Damien Lespiaub9cec072014-11-04 17:06:43 +00002818
2819static void
2820skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
2821 struct drm_crtc *for_crtc,
2822 const struct intel_wm_config *config,
2823 const struct skl_pipe_wm_parameters *params,
2824 struct skl_ddb_entry *alloc /* out */)
2825{
2826 struct drm_crtc *crtc;
2827 unsigned int pipe_size, ddb_size;
2828 int nth_active_pipe;
2829
2830 if (!params->active) {
2831 alloc->start = 0;
2832 alloc->end = 0;
2833 return;
2834 }
2835
Damien Lespiau43d735a2015-03-17 11:39:34 +02002836 if (IS_BROXTON(dev))
2837 ddb_size = BXT_DDB_SIZE;
2838 else
2839 ddb_size = SKL_DDB_SIZE;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002840
2841 ddb_size -= 4; /* 4 blocks for bypass path allocation */
2842
2843 nth_active_pipe = 0;
2844 for_each_crtc(dev, crtc) {
Matt Roper3ef00282015-03-09 10:19:24 -07002845 if (!to_intel_crtc(crtc)->active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002846 continue;
2847
2848 if (crtc == for_crtc)
2849 break;
2850
2851 nth_active_pipe++;
2852 }
2853
2854 pipe_size = ddb_size / config->num_pipes_active;
2855 alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active;
Damien Lespiau16160e32014-11-04 17:06:53 +00002856 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002857}
2858
2859static unsigned int skl_cursor_allocation(const struct intel_wm_config *config)
2860{
2861 if (config->num_pipes_active == 1)
2862 return 32;
2863
2864 return 8;
2865}
2866
Damien Lespiaua269c582014-11-04 17:06:49 +00002867static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
2868{
2869 entry->start = reg & 0x3ff;
2870 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00002871 if (entry->end)
2872 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00002873}
2874
Damien Lespiau08db6652014-11-04 17:06:52 +00002875void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2876 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00002877{
Damien Lespiaua269c582014-11-04 17:06:49 +00002878 enum pipe pipe;
2879 int plane;
2880 u32 val;
2881
2882 for_each_pipe(dev_priv, pipe) {
Damien Lespiaudd740782015-02-28 14:54:08 +00002883 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00002884 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
2885 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
2886 val);
2887 }
2888
2889 val = I915_READ(CUR_BUF_CFG(pipe));
2890 skl_ddb_entry_init_from_hw(&ddb->cursor[pipe], val);
2891 }
2892}
2893
Damien Lespiaub9cec072014-11-04 17:06:43 +00002894static unsigned int
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002895skl_plane_relative_data_rate(const struct intel_plane_wm_parameters *p, int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002896{
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002897
2898 /* for planar format */
2899 if (p->y_bytes_per_pixel) {
2900 if (y) /* y-plane data rate */
2901 return p->horiz_pixels * p->vert_pixels * p->y_bytes_per_pixel;
2902 else /* uv-plane data rate */
2903 return (p->horiz_pixels/2) * (p->vert_pixels/2) * p->bytes_per_pixel;
2904 }
2905
2906 /* for packed formats */
Damien Lespiaub9cec072014-11-04 17:06:43 +00002907 return p->horiz_pixels * p->vert_pixels * p->bytes_per_pixel;
2908}
2909
2910/*
2911 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
2912 * a 8192x4096@32bpp framebuffer:
2913 * 3 * 4096 * 8192 * 4 < 2^32
2914 */
2915static unsigned int
2916skl_get_total_relative_data_rate(struct intel_crtc *intel_crtc,
2917 const struct skl_pipe_wm_parameters *params)
2918{
2919 unsigned int total_data_rate = 0;
2920 int plane;
2921
2922 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2923 const struct intel_plane_wm_parameters *p;
2924
2925 p = &params->plane[plane];
2926 if (!p->enabled)
2927 continue;
2928
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002929 total_data_rate += skl_plane_relative_data_rate(p, 0); /* packed/uv */
2930 if (p->y_bytes_per_pixel) {
2931 total_data_rate += skl_plane_relative_data_rate(p, 1); /* y-plane */
2932 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00002933 }
2934
2935 return total_data_rate;
2936}
2937
2938static void
2939skl_allocate_pipe_ddb(struct drm_crtc *crtc,
2940 const struct intel_wm_config *config,
2941 const struct skl_pipe_wm_parameters *params,
2942 struct skl_ddb_allocation *ddb /* out */)
2943{
2944 struct drm_device *dev = crtc->dev;
Damien Lespiaudd740782015-02-28 14:54:08 +00002945 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002946 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2947 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002948 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002949 uint16_t alloc_size, start, cursor_blocks;
Damien Lespiau80958152015-02-09 13:35:10 +00002950 uint16_t minimum[I915_MAX_PLANES];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002951 uint16_t y_minimum[I915_MAX_PLANES];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002952 unsigned int total_data_rate;
2953 int plane;
2954
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002955 skl_ddb_get_pipe_allocation_limits(dev, crtc, config, params, alloc);
2956 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002957 if (alloc_size == 0) {
2958 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
2959 memset(&ddb->cursor[pipe], 0, sizeof(ddb->cursor[pipe]));
2960 return;
2961 }
2962
2963 cursor_blocks = skl_cursor_allocation(config);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002964 ddb->cursor[pipe].start = alloc->end - cursor_blocks;
2965 ddb->cursor[pipe].end = alloc->end;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002966
2967 alloc_size -= cursor_blocks;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002968 alloc->end -= cursor_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002969
Damien Lespiau80958152015-02-09 13:35:10 +00002970 /* 1. Allocate the mininum required blocks for each active plane */
Damien Lespiaudd740782015-02-28 14:54:08 +00002971 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau80958152015-02-09 13:35:10 +00002972 const struct intel_plane_wm_parameters *p;
2973
2974 p = &params->plane[plane];
2975 if (!p->enabled)
2976 continue;
2977
2978 minimum[plane] = 8;
2979 alloc_size -= minimum[plane];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002980 y_minimum[plane] = p->y_bytes_per_pixel ? 8 : 0;
2981 alloc_size -= y_minimum[plane];
Damien Lespiau80958152015-02-09 13:35:10 +00002982 }
2983
Damien Lespiaub9cec072014-11-04 17:06:43 +00002984 /*
Damien Lespiau80958152015-02-09 13:35:10 +00002985 * 2. Distribute the remaining space in proportion to the amount of
2986 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00002987 *
2988 * FIXME: we may not allocate every single block here.
2989 */
2990 total_data_rate = skl_get_total_relative_data_rate(intel_crtc, params);
2991
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002992 start = alloc->start;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002993 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2994 const struct intel_plane_wm_parameters *p;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002995 unsigned int data_rate, y_data_rate;
2996 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002997
2998 p = &params->plane[plane];
2999 if (!p->enabled)
3000 continue;
3001
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003002 data_rate = skl_plane_relative_data_rate(p, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003003
3004 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003005 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003006 * promote the expression to 64 bits to avoid overflowing, the
3007 * result is < available as data_rate / total_data_rate < 1
3008 */
Damien Lespiau80958152015-02-09 13:35:10 +00003009 plane_blocks = minimum[plane];
3010 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3011 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003012
3013 ddb->plane[pipe][plane].start = start;
Damien Lespiau16160e32014-11-04 17:06:53 +00003014 ddb->plane[pipe][plane].end = start + plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003015
3016 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003017
3018 /*
3019 * allocation for y_plane part of planar format:
3020 */
3021 if (p->y_bytes_per_pixel) {
3022 y_data_rate = skl_plane_relative_data_rate(p, 1);
3023 y_plane_blocks = y_minimum[plane];
3024 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3025 total_data_rate);
3026
3027 ddb->y_plane[pipe][plane].start = start;
3028 ddb->y_plane[pipe][plane].end = start + y_plane_blocks;
3029
3030 start += y_plane_blocks;
3031 }
3032
Damien Lespiaub9cec072014-11-04 17:06:43 +00003033 }
3034
3035}
3036
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02003037static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003038{
3039 /* TODO: Take into account the scalers once we support them */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02003040 return config->base.adjusted_mode.crtc_clock;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003041}
3042
3043/*
3044 * The max latency should be 257 (max the punit can code is 255 and we add 2us
3045 * for the read latency) and bytes_per_pixel should always be <= 8, so that
3046 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3047 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3048*/
3049static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
3050 uint32_t latency)
3051{
3052 uint32_t wm_intermediate_val, ret;
3053
3054 if (latency == 0)
3055 return UINT_MAX;
3056
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003057 wm_intermediate_val = latency * pixel_rate * bytes_per_pixel / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003058 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
3059
3060 return ret;
3061}
3062
3063static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
3064 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003065 uint64_t tiling, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003066{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003067 uint32_t ret;
3068 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3069 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003070
3071 if (latency == 0)
3072 return UINT_MAX;
3073
3074 plane_bytes_per_line = horiz_pixels * bytes_per_pixel;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003075
3076 if (tiling == I915_FORMAT_MOD_Y_TILED ||
3077 tiling == I915_FORMAT_MOD_Yf_TILED) {
3078 plane_bytes_per_line *= 4;
3079 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3080 plane_blocks_per_line /= 4;
3081 } else {
3082 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3083 }
3084
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003085 wm_intermediate_val = latency * pixel_rate;
3086 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003087 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003088
3089 return ret;
3090}
3091
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003092static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb,
3093 const struct intel_crtc *intel_crtc)
3094{
3095 struct drm_device *dev = intel_crtc->base.dev;
3096 struct drm_i915_private *dev_priv = dev->dev_private;
3097 const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3098 enum pipe pipe = intel_crtc->pipe;
3099
3100 if (memcmp(new_ddb->plane[pipe], cur_ddb->plane[pipe],
3101 sizeof(new_ddb->plane[pipe])))
3102 return true;
3103
3104 if (memcmp(&new_ddb->cursor[pipe], &cur_ddb->cursor[pipe],
3105 sizeof(new_ddb->cursor[pipe])))
3106 return true;
3107
3108 return false;
3109}
3110
3111static void skl_compute_wm_global_parameters(struct drm_device *dev,
3112 struct intel_wm_config *config)
3113{
3114 struct drm_crtc *crtc;
3115 struct drm_plane *plane;
3116
3117 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
Matt Roper3ef00282015-03-09 10:19:24 -07003118 config->num_pipes_active += to_intel_crtc(crtc)->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003119
3120 /* FIXME: I don't think we need those two global parameters on SKL */
3121 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
3122 struct intel_plane *intel_plane = to_intel_plane(plane);
3123
3124 config->sprites_enabled |= intel_plane->wm.enabled;
3125 config->sprites_scaled |= intel_plane->wm.scaled;
3126 }
3127}
3128
3129static void skl_compute_wm_pipe_parameters(struct drm_crtc *crtc,
3130 struct skl_pipe_wm_parameters *p)
3131{
3132 struct drm_device *dev = crtc->dev;
3133 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3134 enum pipe pipe = intel_crtc->pipe;
3135 struct drm_plane *plane;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003136 struct drm_framebuffer *fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003137 int i = 1; /* Index for sprite planes start */
3138
Matt Roper3ef00282015-03-09 10:19:24 -07003139 p->active = intel_crtc->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003140 if (p->active) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003141 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
3142 p->pixel_rate = skl_pipe_pixel_rate(intel_crtc->config);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003143
Matt Roperc9f038a2015-03-09 11:06:02 -07003144 fb = crtc->primary->state->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003145 /* For planar: Bpp is for uv plane, y_Bpp is for y plane */
Matt Roperc9f038a2015-03-09 11:06:02 -07003146 if (fb) {
3147 p->plane[0].enabled = true;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003148 p->plane[0].bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
3149 drm_format_plane_cpp(fb->pixel_format, 1) : fb->bits_per_pixel / 8;
3150 p->plane[0].y_bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
3151 drm_format_plane_cpp(fb->pixel_format, 0) : 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07003152 p->plane[0].tiling = fb->modifier[0];
3153 } else {
3154 p->plane[0].enabled = false;
3155 p->plane[0].bytes_per_pixel = 0;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003156 p->plane[0].y_bytes_per_pixel = 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07003157 p->plane[0].tiling = DRM_FORMAT_MOD_NONE;
3158 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003159 p->plane[0].horiz_pixels = intel_crtc->config->pipe_src_w;
3160 p->plane[0].vert_pixels = intel_crtc->config->pipe_src_h;
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003161 p->plane[0].rotation = crtc->primary->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003162
Matt Roperc9f038a2015-03-09 11:06:02 -07003163 fb = crtc->cursor->state->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003164 p->cursor.y_bytes_per_pixel = 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07003165 if (fb) {
3166 p->cursor.enabled = true;
3167 p->cursor.bytes_per_pixel = fb->bits_per_pixel / 8;
3168 p->cursor.horiz_pixels = crtc->cursor->state->crtc_w;
3169 p->cursor.vert_pixels = crtc->cursor->state->crtc_h;
3170 } else {
3171 p->cursor.enabled = false;
3172 p->cursor.bytes_per_pixel = 0;
3173 p->cursor.horiz_pixels = 64;
3174 p->cursor.vert_pixels = 64;
3175 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003176 }
3177
3178 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
3179 struct intel_plane *intel_plane = to_intel_plane(plane);
3180
Sonika Jindala712f8e2014-12-09 10:59:15 +05303181 if (intel_plane->pipe == pipe &&
3182 plane->type == DRM_PLANE_TYPE_OVERLAY)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003183 p->plane[i++] = intel_plane->wm;
3184 }
3185}
3186
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003187static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3188 struct skl_pipe_wm_parameters *p,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003189 struct intel_plane_wm_parameters *p_params,
3190 uint16_t ddb_allocation,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003191 int level,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003192 uint16_t *out_blocks, /* out */
3193 uint8_t *out_lines /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003194{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003195 uint32_t latency = dev_priv->wm.skl_latency[level];
3196 uint32_t method1, method2;
3197 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3198 uint32_t res_blocks, res_lines;
3199 uint32_t selected_result;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003200 uint8_t bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003201
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003202 if (latency == 0 || !p->active || !p_params->enabled)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003203 return false;
3204
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003205 bytes_per_pixel = p_params->y_bytes_per_pixel ?
3206 p_params->y_bytes_per_pixel :
3207 p_params->bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003208 method1 = skl_wm_method1(p->pixel_rate,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003209 bytes_per_pixel,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003210 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003211 method2 = skl_wm_method2(p->pixel_rate,
3212 p->pipe_htotal,
3213 p_params->horiz_pixels,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003214 bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003215 p_params->tiling,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003216 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003217
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003218 plane_bytes_per_line = p_params->horiz_pixels * bytes_per_pixel;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003219 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003220
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003221 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
3222 p_params->tiling == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003223 uint32_t min_scanlines = 4;
3224 uint32_t y_tile_minimum;
3225 if (intel_rotation_90_or_270(p_params->rotation)) {
3226 switch (p_params->bytes_per_pixel) {
3227 case 1:
3228 min_scanlines = 16;
3229 break;
3230 case 2:
3231 min_scanlines = 8;
3232 break;
3233 case 8:
3234 WARN(1, "Unsupported pixel depth for rotation");
kbuild test robot2f0b5792015-03-26 22:30:21 +08003235 }
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003236 }
3237 y_tile_minimum = plane_blocks_per_line * min_scanlines;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003238 selected_result = max(method2, y_tile_minimum);
3239 } else {
3240 if ((ddb_allocation / plane_blocks_per_line) >= 1)
3241 selected_result = min(method1, method2);
3242 else
3243 selected_result = method1;
3244 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003245
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003246 res_blocks = selected_result + 1;
3247 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003248
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003249 if (level >= 1 && level <= 7) {
3250 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
3251 p_params->tiling == I915_FORMAT_MOD_Yf_TILED)
3252 res_lines += 4;
3253 else
3254 res_blocks++;
3255 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003256
3257 if (res_blocks >= ddb_allocation || res_lines > 31)
Damien Lespiaue6d66172014-11-04 17:06:55 +00003258 return false;
3259
3260 *out_blocks = res_blocks;
3261 *out_lines = res_lines;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003262
3263 return true;
3264}
3265
3266static void skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3267 struct skl_ddb_allocation *ddb,
3268 struct skl_pipe_wm_parameters *p,
3269 enum pipe pipe,
3270 int level,
3271 int num_planes,
3272 struct skl_wm_level *result)
3273{
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003274 uint16_t ddb_blocks;
3275 int i;
3276
3277 for (i = 0; i < num_planes; i++) {
3278 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
3279
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003280 result->plane_en[i] = skl_compute_plane_wm(dev_priv,
3281 p, &p->plane[i],
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003282 ddb_blocks,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003283 level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003284 &result->plane_res_b[i],
3285 &result->plane_res_l[i]);
3286 }
3287
3288 ddb_blocks = skl_ddb_entry_size(&ddb->cursor[pipe]);
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003289 result->cursor_en = skl_compute_plane_wm(dev_priv, p, &p->cursor,
3290 ddb_blocks, level,
3291 &result->cursor_res_b,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003292 &result->cursor_res_l);
3293}
3294
Damien Lespiau407b50f2014-11-04 17:06:57 +00003295static uint32_t
3296skl_compute_linetime_wm(struct drm_crtc *crtc, struct skl_pipe_wm_parameters *p)
3297{
Matt Roper3ef00282015-03-09 10:19:24 -07003298 if (!to_intel_crtc(crtc)->active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003299 return 0;
3300
3301 return DIV_ROUND_UP(8 * p->pipe_htotal * 1000, p->pixel_rate);
3302
3303}
3304
3305static void skl_compute_transition_wm(struct drm_crtc *crtc,
3306 struct skl_pipe_wm_parameters *params,
Damien Lespiau9414f562014-11-04 17:06:58 +00003307 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003308{
Damien Lespiau9414f562014-11-04 17:06:58 +00003309 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3310 int i;
3311
Damien Lespiau407b50f2014-11-04 17:06:57 +00003312 if (!params->active)
3313 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003314
3315 /* Until we know more, just disable transition WMs */
3316 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3317 trans_wm->plane_en[i] = false;
3318 trans_wm->cursor_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003319}
3320
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003321static void skl_compute_pipe_wm(struct drm_crtc *crtc,
3322 struct skl_ddb_allocation *ddb,
3323 struct skl_pipe_wm_parameters *params,
3324 struct skl_pipe_wm *pipe_wm)
3325{
3326 struct drm_device *dev = crtc->dev;
3327 const struct drm_i915_private *dev_priv = dev->dev_private;
3328 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3329 int level, max_level = ilk_wm_max_level(dev);
3330
3331 for (level = 0; level <= max_level; level++) {
3332 skl_compute_wm_level(dev_priv, ddb, params, intel_crtc->pipe,
3333 level, intel_num_planes(intel_crtc),
3334 &pipe_wm->wm[level]);
3335 }
3336 pipe_wm->linetime = skl_compute_linetime_wm(crtc, params);
3337
Damien Lespiau9414f562014-11-04 17:06:58 +00003338 skl_compute_transition_wm(crtc, params, &pipe_wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003339}
3340
3341static void skl_compute_wm_results(struct drm_device *dev,
3342 struct skl_pipe_wm_parameters *p,
3343 struct skl_pipe_wm *p_wm,
3344 struct skl_wm_values *r,
3345 struct intel_crtc *intel_crtc)
3346{
3347 int level, max_level = ilk_wm_max_level(dev);
3348 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau9414f562014-11-04 17:06:58 +00003349 uint32_t temp;
3350 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003351
3352 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003353 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3354 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003355
3356 temp |= p_wm->wm[level].plane_res_l[i] <<
3357 PLANE_WM_LINES_SHIFT;
3358 temp |= p_wm->wm[level].plane_res_b[i];
3359 if (p_wm->wm[level].plane_en[i])
3360 temp |= PLANE_WM_EN;
3361
3362 r->plane[pipe][i][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003363 }
3364
3365 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003366
3367 temp |= p_wm->wm[level].cursor_res_l << PLANE_WM_LINES_SHIFT;
3368 temp |= p_wm->wm[level].cursor_res_b;
3369
3370 if (p_wm->wm[level].cursor_en)
3371 temp |= PLANE_WM_EN;
3372
3373 r->cursor[pipe][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003374
3375 }
3376
Damien Lespiau9414f562014-11-04 17:06:58 +00003377 /* transition WMs */
3378 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3379 temp = 0;
3380 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
3381 temp |= p_wm->trans_wm.plane_res_b[i];
3382 if (p_wm->trans_wm.plane_en[i])
3383 temp |= PLANE_WM_EN;
3384
3385 r->plane_trans[pipe][i] = temp;
3386 }
3387
3388 temp = 0;
3389 temp |= p_wm->trans_wm.cursor_res_l << PLANE_WM_LINES_SHIFT;
3390 temp |= p_wm->trans_wm.cursor_res_b;
3391 if (p_wm->trans_wm.cursor_en)
3392 temp |= PLANE_WM_EN;
3393
3394 r->cursor_trans[pipe] = temp;
3395
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003396 r->wm_linetime[pipe] = p_wm->linetime;
3397}
3398
Damien Lespiau16160e32014-11-04 17:06:53 +00003399static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, uint32_t reg,
3400 const struct skl_ddb_entry *entry)
3401{
3402 if (entry->end)
3403 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3404 else
3405 I915_WRITE(reg, 0);
3406}
3407
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003408static void skl_write_wm_values(struct drm_i915_private *dev_priv,
3409 const struct skl_wm_values *new)
3410{
3411 struct drm_device *dev = dev_priv->dev;
3412 struct intel_crtc *crtc;
3413
3414 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
3415 int i, level, max_level = ilk_wm_max_level(dev);
3416 enum pipe pipe = crtc->pipe;
3417
Damien Lespiau5d374d92014-11-04 17:07:00 +00003418 if (!new->dirty[pipe])
3419 continue;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003420
Damien Lespiau5d374d92014-11-04 17:07:00 +00003421 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
3422
3423 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003424 for (i = 0; i < intel_num_planes(crtc); i++)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003425 I915_WRITE(PLANE_WM(pipe, i, level),
3426 new->plane[pipe][i][level]);
3427 I915_WRITE(CUR_WM(pipe, level),
3428 new->cursor[pipe][level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003429 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003430 for (i = 0; i < intel_num_planes(crtc); i++)
3431 I915_WRITE(PLANE_WM_TRANS(pipe, i),
3432 new->plane_trans[pipe][i]);
3433 I915_WRITE(CUR_WM_TRANS(pipe), new->cursor_trans[pipe]);
3434
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003435 for (i = 0; i < intel_num_planes(crtc); i++) {
Damien Lespiau5d374d92014-11-04 17:07:00 +00003436 skl_ddb_entry_write(dev_priv,
3437 PLANE_BUF_CFG(pipe, i),
3438 &new->ddb.plane[pipe][i]);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003439 skl_ddb_entry_write(dev_priv,
3440 PLANE_NV12_BUF_CFG(pipe, i),
3441 &new->ddb.y_plane[pipe][i]);
3442 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003443
3444 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
3445 &new->ddb.cursor[pipe]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003446 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003447}
3448
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003449/*
3450 * When setting up a new DDB allocation arrangement, we need to correctly
3451 * sequence the times at which the new allocations for the pipes are taken into
3452 * account or we'll have pipes fetching from space previously allocated to
3453 * another pipe.
3454 *
3455 * Roughly the sequence looks like:
3456 * 1. re-allocate the pipe(s) with the allocation being reduced and not
3457 * overlapping with a previous light-up pipe (another way to put it is:
3458 * pipes with their new allocation strickly included into their old ones).
3459 * 2. re-allocate the other pipes that get their allocation reduced
3460 * 3. allocate the pipes having their allocation increased
3461 *
3462 * Steps 1. and 2. are here to take care of the following case:
3463 * - Initially DDB looks like this:
3464 * | B | C |
3465 * - enable pipe A.
3466 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
3467 * allocation
3468 * | A | B | C |
3469 *
3470 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
3471 */
3472
Damien Lespiaud21b7952014-11-04 17:07:03 +00003473static void
3474skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003475{
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003476 int plane;
3477
Damien Lespiaud21b7952014-11-04 17:07:03 +00003478 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
3479
Damien Lespiaudd740782015-02-28 14:54:08 +00003480 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003481 I915_WRITE(PLANE_SURF(pipe, plane),
3482 I915_READ(PLANE_SURF(pipe, plane)));
3483 }
3484 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3485}
3486
3487static bool
3488skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
3489 const struct skl_ddb_allocation *new,
3490 enum pipe pipe)
3491{
3492 uint16_t old_size, new_size;
3493
3494 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
3495 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
3496
3497 return old_size != new_size &&
3498 new->pipe[pipe].start >= old->pipe[pipe].start &&
3499 new->pipe[pipe].end <= old->pipe[pipe].end;
3500}
3501
3502static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
3503 struct skl_wm_values *new_values)
3504{
3505 struct drm_device *dev = dev_priv->dev;
3506 struct skl_ddb_allocation *cur_ddb, *new_ddb;
Ville Syrjäläc929cb42015-04-02 18:28:07 +03003507 bool reallocated[I915_MAX_PIPES] = {};
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003508 struct intel_crtc *crtc;
3509 enum pipe pipe;
3510
3511 new_ddb = &new_values->ddb;
3512 cur_ddb = &dev_priv->wm.skl_hw.ddb;
3513
3514 /*
3515 * First pass: flush the pipes with the new allocation contained into
3516 * the old space.
3517 *
3518 * We'll wait for the vblank on those pipes to ensure we can safely
3519 * re-allocate the freed space without this pipe fetching from it.
3520 */
3521 for_each_intel_crtc(dev, crtc) {
3522 if (!crtc->active)
3523 continue;
3524
3525 pipe = crtc->pipe;
3526
3527 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
3528 continue;
3529
Damien Lespiaud21b7952014-11-04 17:07:03 +00003530 skl_wm_flush_pipe(dev_priv, pipe, 1);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003531 intel_wait_for_vblank(dev, pipe);
3532
3533 reallocated[pipe] = true;
3534 }
3535
3536
3537 /*
3538 * Second pass: flush the pipes that are having their allocation
3539 * reduced, but overlapping with a previous allocation.
3540 *
3541 * Here as well we need to wait for the vblank to make sure the freed
3542 * space is not used anymore.
3543 */
3544 for_each_intel_crtc(dev, crtc) {
3545 if (!crtc->active)
3546 continue;
3547
3548 pipe = crtc->pipe;
3549
3550 if (reallocated[pipe])
3551 continue;
3552
3553 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3554 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
Damien Lespiaud21b7952014-11-04 17:07:03 +00003555 skl_wm_flush_pipe(dev_priv, pipe, 2);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003556 intel_wait_for_vblank(dev, pipe);
Sonika Jindald9d8e6b2014-12-11 17:58:15 +05303557 reallocated[pipe] = true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003558 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003559 }
3560
3561 /*
3562 * Third pass: flush the pipes that got more space allocated.
3563 *
3564 * We don't need to actively wait for the update here, next vblank
3565 * will just get more DDB space with the correct WM values.
3566 */
3567 for_each_intel_crtc(dev, crtc) {
3568 if (!crtc->active)
3569 continue;
3570
3571 pipe = crtc->pipe;
3572
3573 /*
3574 * At this point, only the pipes more space than before are
3575 * left to re-allocate.
3576 */
3577 if (reallocated[pipe])
3578 continue;
3579
Damien Lespiaud21b7952014-11-04 17:07:03 +00003580 skl_wm_flush_pipe(dev_priv, pipe, 3);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003581 }
3582}
3583
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003584static bool skl_update_pipe_wm(struct drm_crtc *crtc,
3585 struct skl_pipe_wm_parameters *params,
3586 struct intel_wm_config *config,
3587 struct skl_ddb_allocation *ddb, /* out */
3588 struct skl_pipe_wm *pipe_wm /* out */)
3589{
3590 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3591
3592 skl_compute_wm_pipe_parameters(crtc, params);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003593 skl_allocate_pipe_ddb(crtc, config, params, ddb);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003594 skl_compute_pipe_wm(crtc, ddb, params, pipe_wm);
3595
3596 if (!memcmp(&intel_crtc->wm.skl_active, pipe_wm, sizeof(*pipe_wm)))
3597 return false;
3598
3599 intel_crtc->wm.skl_active = *pipe_wm;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003600
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003601 return true;
3602}
3603
3604static void skl_update_other_pipe_wm(struct drm_device *dev,
3605 struct drm_crtc *crtc,
3606 struct intel_wm_config *config,
3607 struct skl_wm_values *r)
3608{
3609 struct intel_crtc *intel_crtc;
3610 struct intel_crtc *this_crtc = to_intel_crtc(crtc);
3611
3612 /*
3613 * If the WM update hasn't changed the allocation for this_crtc (the
3614 * crtc we are currently computing the new WM values for), other
3615 * enabled crtcs will keep the same allocation and we don't need to
3616 * recompute anything for them.
3617 */
3618 if (!skl_ddb_allocation_changed(&r->ddb, this_crtc))
3619 return;
3620
3621 /*
3622 * Otherwise, because of this_crtc being freshly enabled/disabled, the
3623 * other active pipes need new DDB allocation and WM values.
3624 */
3625 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
3626 base.head) {
3627 struct skl_pipe_wm_parameters params = {};
3628 struct skl_pipe_wm pipe_wm = {};
3629 bool wm_changed;
3630
3631 if (this_crtc->pipe == intel_crtc->pipe)
3632 continue;
3633
3634 if (!intel_crtc->active)
3635 continue;
3636
3637 wm_changed = skl_update_pipe_wm(&intel_crtc->base,
3638 &params, config,
3639 &r->ddb, &pipe_wm);
3640
3641 /*
3642 * If we end up re-computing the other pipe WM values, it's
3643 * because it was really needed, so we expect the WM values to
3644 * be different.
3645 */
3646 WARN_ON(!wm_changed);
3647
3648 skl_compute_wm_results(dev, &params, &pipe_wm, r, intel_crtc);
3649 r->dirty[intel_crtc->pipe] = true;
3650 }
3651}
3652
3653static void skl_update_wm(struct drm_crtc *crtc)
3654{
3655 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3656 struct drm_device *dev = crtc->dev;
3657 struct drm_i915_private *dev_priv = dev->dev_private;
3658 struct skl_pipe_wm_parameters params = {};
3659 struct skl_wm_values *results = &dev_priv->wm.skl_results;
3660 struct skl_pipe_wm pipe_wm = {};
3661 struct intel_wm_config config = {};
3662
3663 memset(results, 0, sizeof(*results));
3664
3665 skl_compute_wm_global_parameters(dev, &config);
3666
3667 if (!skl_update_pipe_wm(crtc, &params, &config,
3668 &results->ddb, &pipe_wm))
3669 return;
3670
3671 skl_compute_wm_results(dev, &params, &pipe_wm, results, intel_crtc);
3672 results->dirty[intel_crtc->pipe] = true;
3673
3674 skl_update_other_pipe_wm(dev, crtc, &config, results);
3675 skl_write_wm_values(dev_priv, results);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003676 skl_flush_wm_values(dev_priv, results);
Damien Lespiau53b0deb2014-11-04 17:06:48 +00003677
3678 /* store the new configuration */
3679 dev_priv->wm.skl_hw = *results;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003680}
3681
3682static void
3683skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc,
3684 uint32_t sprite_width, uint32_t sprite_height,
3685 int pixel_size, bool enabled, bool scaled)
3686{
3687 struct intel_plane *intel_plane = to_intel_plane(plane);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003688 struct drm_framebuffer *fb = plane->state->fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003689
3690 intel_plane->wm.enabled = enabled;
3691 intel_plane->wm.scaled = scaled;
3692 intel_plane->wm.horiz_pixels = sprite_width;
3693 intel_plane->wm.vert_pixels = sprite_height;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003694 intel_plane->wm.tiling = DRM_FORMAT_MOD_NONE;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003695
3696 /* For planar: Bpp is for UV plane, y_Bpp is for Y plane */
3697 intel_plane->wm.bytes_per_pixel =
3698 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3699 drm_format_plane_cpp(plane->state->fb->pixel_format, 1) : pixel_size;
3700 intel_plane->wm.y_bytes_per_pixel =
3701 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3702 drm_format_plane_cpp(plane->state->fb->pixel_format, 0) : 0;
3703
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003704 /*
3705 * Framebuffer can be NULL on plane disable, but it does not
3706 * matter for watermarks if we assume no tiling in that case.
3707 */
3708 if (fb)
3709 intel_plane->wm.tiling = fb->modifier[0];
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003710 intel_plane->wm.rotation = plane->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003711
3712 skl_update_wm(crtc);
3713}
3714
Imre Deak820c1982013-12-17 14:46:36 +02003715static void ilk_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003716{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003717 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003718 struct drm_device *dev = crtc->dev;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003719 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003720 struct ilk_wm_maximums max;
3721 struct ilk_pipe_wm_parameters params = {};
3722 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003723 enum intel_ddb_partitioning partitioning;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003724 struct intel_pipe_wm pipe_wm = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003725 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003726 struct intel_wm_config config = {};
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003727
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003728 ilk_compute_wm_parameters(crtc, &params);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003729
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003730 intel_compute_pipe_wm(crtc, &params, &pipe_wm);
3731
3732 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
3733 return;
3734
3735 intel_crtc->wm.active = pipe_wm;
3736
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003737 ilk_compute_wm_config(dev, &config);
3738
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003739 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003740 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03003741
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003742 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03003743 if (INTEL_INFO(dev)->gen >= 7 &&
3744 config.num_pipes_active == 1 && config.sprites_enabled) {
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003745 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003746 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003747
Imre Deak820c1982013-12-17 14:46:36 +02003748 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003749 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003750 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003751 }
3752
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003753 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003754 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003755
Imre Deak820c1982013-12-17 14:46:36 +02003756 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003757
Imre Deak820c1982013-12-17 14:46:36 +02003758 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003759}
3760
Damien Lespiaued57cb82014-07-15 09:21:24 +02003761static void
3762ilk_update_sprite_wm(struct drm_plane *plane,
3763 struct drm_crtc *crtc,
3764 uint32_t sprite_width, uint32_t sprite_height,
3765 int pixel_size, bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03003766{
Ville Syrjälä8553c182013-12-05 15:51:39 +02003767 struct drm_device *dev = plane->dev;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003768 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003769
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003770 intel_plane->wm.enabled = enabled;
3771 intel_plane->wm.scaled = scaled;
3772 intel_plane->wm.horiz_pixels = sprite_width;
Damien Lespiaued57cb82014-07-15 09:21:24 +02003773 intel_plane->wm.vert_pixels = sprite_width;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003774 intel_plane->wm.bytes_per_pixel = pixel_size;
Paulo Zanoni526682e2013-05-24 11:59:18 -03003775
Ville Syrjälä8553c182013-12-05 15:51:39 +02003776 /*
3777 * IVB workaround: must disable low power watermarks for at least
3778 * one frame before enabling scaling. LP watermarks can be re-enabled
3779 * when scaling is disabled.
3780 *
3781 * WaCxSRDisabledForSpriteScaling:ivb
3782 */
3783 if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev))
3784 intel_wait_for_vblank(dev, intel_plane->pipe);
3785
Imre Deak820c1982013-12-17 14:46:36 +02003786 ilk_update_wm(crtc);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003787}
3788
Pradeep Bhat30789992014-11-04 17:06:45 +00003789static void skl_pipe_wm_active_state(uint32_t val,
3790 struct skl_pipe_wm *active,
3791 bool is_transwm,
3792 bool is_cursor,
3793 int i,
3794 int level)
3795{
3796 bool is_enabled = (val & PLANE_WM_EN) != 0;
3797
3798 if (!is_transwm) {
3799 if (!is_cursor) {
3800 active->wm[level].plane_en[i] = is_enabled;
3801 active->wm[level].plane_res_b[i] =
3802 val & PLANE_WM_BLOCKS_MASK;
3803 active->wm[level].plane_res_l[i] =
3804 (val >> PLANE_WM_LINES_SHIFT) &
3805 PLANE_WM_LINES_MASK;
3806 } else {
3807 active->wm[level].cursor_en = is_enabled;
3808 active->wm[level].cursor_res_b =
3809 val & PLANE_WM_BLOCKS_MASK;
3810 active->wm[level].cursor_res_l =
3811 (val >> PLANE_WM_LINES_SHIFT) &
3812 PLANE_WM_LINES_MASK;
3813 }
3814 } else {
3815 if (!is_cursor) {
3816 active->trans_wm.plane_en[i] = is_enabled;
3817 active->trans_wm.plane_res_b[i] =
3818 val & PLANE_WM_BLOCKS_MASK;
3819 active->trans_wm.plane_res_l[i] =
3820 (val >> PLANE_WM_LINES_SHIFT) &
3821 PLANE_WM_LINES_MASK;
3822 } else {
3823 active->trans_wm.cursor_en = is_enabled;
3824 active->trans_wm.cursor_res_b =
3825 val & PLANE_WM_BLOCKS_MASK;
3826 active->trans_wm.cursor_res_l =
3827 (val >> PLANE_WM_LINES_SHIFT) &
3828 PLANE_WM_LINES_MASK;
3829 }
3830 }
3831}
3832
3833static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3834{
3835 struct drm_device *dev = crtc->dev;
3836 struct drm_i915_private *dev_priv = dev->dev_private;
3837 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
3838 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3839 struct skl_pipe_wm *active = &intel_crtc->wm.skl_active;
3840 enum pipe pipe = intel_crtc->pipe;
3841 int level, i, max_level;
3842 uint32_t temp;
3843
3844 max_level = ilk_wm_max_level(dev);
3845
3846 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3847
3848 for (level = 0; level <= max_level; level++) {
3849 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3850 hw->plane[pipe][i][level] =
3851 I915_READ(PLANE_WM(pipe, i, level));
3852 hw->cursor[pipe][level] = I915_READ(CUR_WM(pipe, level));
3853 }
3854
3855 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3856 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
3857 hw->cursor_trans[pipe] = I915_READ(CUR_WM_TRANS(pipe));
3858
Matt Roper3ef00282015-03-09 10:19:24 -07003859 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00003860 return;
3861
3862 hw->dirty[pipe] = true;
3863
3864 active->linetime = hw->wm_linetime[pipe];
3865
3866 for (level = 0; level <= max_level; level++) {
3867 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3868 temp = hw->plane[pipe][i][level];
3869 skl_pipe_wm_active_state(temp, active, false,
3870 false, i, level);
3871 }
3872 temp = hw->cursor[pipe][level];
3873 skl_pipe_wm_active_state(temp, active, false, true, i, level);
3874 }
3875
3876 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3877 temp = hw->plane_trans[pipe][i];
3878 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
3879 }
3880
3881 temp = hw->cursor_trans[pipe];
3882 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
3883}
3884
3885void skl_wm_get_hw_state(struct drm_device *dev)
3886{
Damien Lespiaua269c582014-11-04 17:06:49 +00003887 struct drm_i915_private *dev_priv = dev->dev_private;
3888 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00003889 struct drm_crtc *crtc;
3890
Damien Lespiaua269c582014-11-04 17:06:49 +00003891 skl_ddb_get_hw_state(dev_priv, ddb);
Pradeep Bhat30789992014-11-04 17:06:45 +00003892 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3893 skl_pipe_wm_get_hw_state(crtc);
3894}
3895
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003896static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3897{
3898 struct drm_device *dev = crtc->dev;
3899 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003900 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003901 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3902 struct intel_pipe_wm *active = &intel_crtc->wm.active;
3903 enum pipe pipe = intel_crtc->pipe;
3904 static const unsigned int wm0_pipe_reg[] = {
3905 [PIPE_A] = WM0_PIPEA_ILK,
3906 [PIPE_B] = WM0_PIPEB_ILK,
3907 [PIPE_C] = WM0_PIPEC_IVB,
3908 };
3909
3910 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003911 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02003912 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003913
Matt Roper3ef00282015-03-09 10:19:24 -07003914 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003915
3916 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003917 u32 tmp = hw->wm_pipe[pipe];
3918
3919 /*
3920 * For active pipes LP0 watermark is marked as
3921 * enabled, and LP1+ watermaks as disabled since
3922 * we can't really reverse compute them in case
3923 * multiple pipes are active.
3924 */
3925 active->wm[0].enable = true;
3926 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3927 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3928 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3929 active->linetime = hw->wm_linetime[pipe];
3930 } else {
3931 int level, max_level = ilk_wm_max_level(dev);
3932
3933 /*
3934 * For inactive pipes, all watermark levels
3935 * should be marked as enabled but zeroed,
3936 * which is what we'd compute them to.
3937 */
3938 for (level = 0; level <= max_level; level++)
3939 active->wm[level].enable = true;
3940 }
3941}
3942
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03003943#define _FW_WM(value, plane) \
3944 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
3945#define _FW_WM_VLV(value, plane) \
3946 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
3947
3948static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
3949 struct vlv_wm_values *wm)
3950{
3951 enum pipe pipe;
3952 uint32_t tmp;
3953
3954 for_each_pipe(dev_priv, pipe) {
3955 tmp = I915_READ(VLV_DDL(pipe));
3956
3957 wm->ddl[pipe].primary =
3958 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3959 wm->ddl[pipe].cursor =
3960 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3961 wm->ddl[pipe].sprite[0] =
3962 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3963 wm->ddl[pipe].sprite[1] =
3964 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3965 }
3966
3967 tmp = I915_READ(DSPFW1);
3968 wm->sr.plane = _FW_WM(tmp, SR);
3969 wm->pipe[PIPE_B].cursor = _FW_WM(tmp, CURSORB);
3970 wm->pipe[PIPE_B].primary = _FW_WM_VLV(tmp, PLANEB);
3971 wm->pipe[PIPE_A].primary = _FW_WM_VLV(tmp, PLANEA);
3972
3973 tmp = I915_READ(DSPFW2);
3974 wm->pipe[PIPE_A].sprite[1] = _FW_WM_VLV(tmp, SPRITEB);
3975 wm->pipe[PIPE_A].cursor = _FW_WM(tmp, CURSORA);
3976 wm->pipe[PIPE_A].sprite[0] = _FW_WM_VLV(tmp, SPRITEA);
3977
3978 tmp = I915_READ(DSPFW3);
3979 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
3980
3981 if (IS_CHERRYVIEW(dev_priv)) {
3982 tmp = I915_READ(DSPFW7_CHV);
3983 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
3984 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
3985
3986 tmp = I915_READ(DSPFW8_CHV);
3987 wm->pipe[PIPE_C].sprite[1] = _FW_WM_VLV(tmp, SPRITEF);
3988 wm->pipe[PIPE_C].sprite[0] = _FW_WM_VLV(tmp, SPRITEE);
3989
3990 tmp = I915_READ(DSPFW9_CHV);
3991 wm->pipe[PIPE_C].primary = _FW_WM_VLV(tmp, PLANEC);
3992 wm->pipe[PIPE_C].cursor = _FW_WM(tmp, CURSORC);
3993
3994 tmp = I915_READ(DSPHOWM);
3995 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
3996 wm->pipe[PIPE_C].sprite[1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
3997 wm->pipe[PIPE_C].sprite[0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
3998 wm->pipe[PIPE_C].primary |= _FW_WM(tmp, PLANEC_HI) << 8;
3999 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4000 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4001 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4002 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4003 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4004 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4005 } else {
4006 tmp = I915_READ(DSPFW7);
4007 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
4008 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
4009
4010 tmp = I915_READ(DSPHOWM);
4011 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
4012 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4013 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4014 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4015 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4016 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4017 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4018 }
4019}
4020
4021#undef _FW_WM
4022#undef _FW_WM_VLV
4023
4024void vlv_wm_get_hw_state(struct drm_device *dev)
4025{
4026 struct drm_i915_private *dev_priv = to_i915(dev);
4027 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4028 struct intel_plane *plane;
4029 enum pipe pipe;
4030 u32 val;
4031
4032 vlv_read_wm_values(dev_priv, wm);
4033
4034 for_each_intel_plane(dev, plane) {
4035 switch (plane->base.type) {
4036 int sprite;
4037 case DRM_PLANE_TYPE_CURSOR:
4038 plane->wm.fifo_size = 63;
4039 break;
4040 case DRM_PLANE_TYPE_PRIMARY:
4041 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, 0);
4042 break;
4043 case DRM_PLANE_TYPE_OVERLAY:
4044 sprite = plane->plane;
4045 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, sprite + 1);
4046 break;
4047 }
4048 }
4049
4050 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4051 wm->level = VLV_WM_LEVEL_PM2;
4052
4053 if (IS_CHERRYVIEW(dev_priv)) {
4054 mutex_lock(&dev_priv->rps.hw_lock);
4055
4056 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4057 if (val & DSP_MAXFIFO_PM5_ENABLE)
4058 wm->level = VLV_WM_LEVEL_PM5;
4059
4060 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4061 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4062 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4063
4064 mutex_unlock(&dev_priv->rps.hw_lock);
4065 }
4066
4067 for_each_pipe(dev_priv, pipe)
4068 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
4069 pipe_name(pipe), wm->pipe[pipe].primary, wm->pipe[pipe].cursor,
4070 wm->pipe[pipe].sprite[0], wm->pipe[pipe].sprite[1]);
4071
4072 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4073 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4074}
4075
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004076void ilk_wm_get_hw_state(struct drm_device *dev)
4077{
4078 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02004079 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004080 struct drm_crtc *crtc;
4081
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004082 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004083 ilk_pipe_wm_get_hw_state(crtc);
4084
4085 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4086 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4087 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4088
4089 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004090 if (INTEL_INFO(dev)->gen >= 7) {
4091 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4092 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4093 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004094
Ville Syrjäläa42a5712014-01-07 16:14:08 +02004095 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004096 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4097 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
4098 else if (IS_IVYBRIDGE(dev))
4099 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4100 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004101
4102 hw->enable_fbc_wm =
4103 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4104}
4105
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004106/**
4107 * intel_update_watermarks - update FIFO watermark values based on current modes
4108 *
4109 * Calculate watermark values for the various WM regs based on current mode
4110 * and plane configuration.
4111 *
4112 * There are several cases to deal with here:
4113 * - normal (i.e. non-self-refresh)
4114 * - self-refresh (SR) mode
4115 * - lines are large relative to FIFO size (buffer can hold up to 2)
4116 * - lines are small relative to FIFO size (buffer can hold more than 2
4117 * lines), so need to account for TLB latency
4118 *
4119 * The normal calculation is:
4120 * watermark = dotclock * bytes per pixel * latency
4121 * where latency is platform & configuration dependent (we assume pessimal
4122 * values here).
4123 *
4124 * The SR calculation is:
4125 * watermark = (trunc(latency/line time)+1) * surface width *
4126 * bytes per pixel
4127 * where
4128 * line time = htotal / dotclock
4129 * surface width = hdisplay for normal plane and 64 for cursor
4130 * and latency is assumed to be high, as above.
4131 *
4132 * The final value programmed to the register should always be rounded up,
4133 * and include an extra 2 entries to account for clock crossings.
4134 *
4135 * We don't use the sprite, so we can ignore that. And on Crestline we have
4136 * to set the non-SR watermarks to 8.
4137 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004138void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004139{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004140 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004141
4142 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004143 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004144}
4145
Ville Syrjäläadf3d352013-08-06 22:24:11 +03004146void intel_update_sprite_watermarks(struct drm_plane *plane,
4147 struct drm_crtc *crtc,
Damien Lespiaued57cb82014-07-15 09:21:24 +02004148 uint32_t sprite_width,
4149 uint32_t sprite_height,
4150 int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03004151 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004152{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03004153 struct drm_i915_private *dev_priv = plane->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004154
4155 if (dev_priv->display.update_sprite_wm)
Damien Lespiaued57cb82014-07-15 09:21:24 +02004156 dev_priv->display.update_sprite_wm(plane, crtc,
4157 sprite_width, sprite_height,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03004158 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004159}
4160
Daniel Vetter92703882012-08-09 16:46:01 +02004161/**
4162 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004163 */
4164DEFINE_SPINLOCK(mchdev_lock);
4165
4166/* Global for IPS driver to get at the current i915 device. Protected by
4167 * mchdev_lock. */
4168static struct drm_i915_private *i915_mch_dev;
4169
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004170bool ironlake_set_drps(struct drm_device *dev, u8 val)
4171{
4172 struct drm_i915_private *dev_priv = dev->dev_private;
4173 u16 rgvswctl;
4174
Daniel Vetter92703882012-08-09 16:46:01 +02004175 assert_spin_locked(&mchdev_lock);
4176
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004177 rgvswctl = I915_READ16(MEMSWCTL);
4178 if (rgvswctl & MEMCTL_CMD_STS) {
4179 DRM_DEBUG("gpu busy, RCS change rejected\n");
4180 return false; /* still busy with another command */
4181 }
4182
4183 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4184 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4185 I915_WRITE16(MEMSWCTL, rgvswctl);
4186 POSTING_READ16(MEMSWCTL);
4187
4188 rgvswctl |= MEMCTL_CMD_STS;
4189 I915_WRITE16(MEMSWCTL, rgvswctl);
4190
4191 return true;
4192}
4193
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004194static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004195{
4196 struct drm_i915_private *dev_priv = dev->dev_private;
4197 u32 rgvmodectl = I915_READ(MEMMODECTL);
4198 u8 fmax, fmin, fstart, vstart;
4199
Daniel Vetter92703882012-08-09 16:46:01 +02004200 spin_lock_irq(&mchdev_lock);
4201
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004202 /* Enable temp reporting */
4203 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4204 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4205
4206 /* 100ms RC evaluation intervals */
4207 I915_WRITE(RCUPEI, 100000);
4208 I915_WRITE(RCDNEI, 100000);
4209
4210 /* Set max/min thresholds to 90ms and 80ms respectively */
4211 I915_WRITE(RCBMAXAVG, 90000);
4212 I915_WRITE(RCBMINAVG, 80000);
4213
4214 I915_WRITE(MEMIHYST, 1);
4215
4216 /* Set up min, max, and cur for interrupt handling */
4217 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4218 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4219 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4220 MEMMODE_FSTART_SHIFT;
4221
4222 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
4223 PXVFREQ_PX_SHIFT;
4224
Daniel Vetter20e4d402012-08-08 23:35:39 +02004225 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4226 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004227
Daniel Vetter20e4d402012-08-08 23:35:39 +02004228 dev_priv->ips.max_delay = fstart;
4229 dev_priv->ips.min_delay = fmin;
4230 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004231
4232 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4233 fmax, fmin, fstart);
4234
4235 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4236
4237 /*
4238 * Interrupts will be enabled in ironlake_irq_postinstall
4239 */
4240
4241 I915_WRITE(VIDSTART, vstart);
4242 POSTING_READ(VIDSTART);
4243
4244 rgvmodectl |= MEMMODE_SWMODE_EN;
4245 I915_WRITE(MEMMODECTL, rgvmodectl);
4246
Daniel Vetter92703882012-08-09 16:46:01 +02004247 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004248 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetter92703882012-08-09 16:46:01 +02004249 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004250
4251 ironlake_set_drps(dev, fstart);
4252
Daniel Vetter20e4d402012-08-08 23:35:39 +02004253 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004254 I915_READ(0x112e0);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004255 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
4256 dev_priv->ips.last_count2 = I915_READ(0x112f4);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004257 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004258
4259 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004260}
4261
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004262static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004263{
4264 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02004265 u16 rgvswctl;
4266
4267 spin_lock_irq(&mchdev_lock);
4268
4269 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004270
4271 /* Ack interrupts, disable EFC interrupt */
4272 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4273 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4274 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4275 I915_WRITE(DEIIR, DE_PCU_EVENT);
4276 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4277
4278 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004279 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetter92703882012-08-09 16:46:01 +02004280 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004281 rgvswctl |= MEMCTL_CMD_STS;
4282 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetter92703882012-08-09 16:46:01 +02004283 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004284
Daniel Vetter92703882012-08-09 16:46:01 +02004285 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004286}
4287
Daniel Vetteracbe9472012-07-26 11:50:05 +02004288/* There's a funny hw issue where the hw returns all 0 when reading from
4289 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4290 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4291 * all limits and the gpu stuck at whatever frequency it is at atm).
4292 */
Akash Goel74ef1172015-03-06 11:07:19 +05304293static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004294{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004295 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004296
Daniel Vetter20b46e52012-07-26 11:16:14 +02004297 /* Only set the down limit when we've reached the lowest level to avoid
4298 * getting more interrupts, otherwise leave this clear. This prevents a
4299 * race in the hw when coming out of rc6: There's a tiny window where
4300 * the hw runs at the minimal clock before selecting the desired
4301 * frequency, if the down threshold expires in that window we will not
4302 * receive a down interrupt. */
Akash Goel74ef1172015-03-06 11:07:19 +05304303 if (IS_GEN9(dev_priv->dev)) {
4304 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4305 if (val <= dev_priv->rps.min_freq_softlimit)
4306 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4307 } else {
4308 limits = dev_priv->rps.max_freq_softlimit << 24;
4309 if (val <= dev_priv->rps.min_freq_softlimit)
4310 limits |= dev_priv->rps.min_freq_softlimit << 16;
4311 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004312
4313 return limits;
4314}
4315
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004316static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4317{
4318 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304319 u32 threshold_up = 0, threshold_down = 0; /* in % */
4320 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004321
4322 new_power = dev_priv->rps.power;
4323 switch (dev_priv->rps.power) {
4324 case LOW_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004325 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004326 new_power = BETWEEN;
4327 break;
4328
4329 case BETWEEN:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004330 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004331 new_power = LOW_POWER;
Ben Widawskyb39fb292014-03-19 18:31:11 -07004332 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004333 new_power = HIGH_POWER;
4334 break;
4335
4336 case HIGH_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004337 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 +01004338 new_power = BETWEEN;
4339 break;
4340 }
4341 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004342 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004343 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004344 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004345 new_power = HIGH_POWER;
4346 if (new_power == dev_priv->rps.power)
4347 return;
4348
4349 /* Note the units here are not exactly 1us, but 1280ns. */
4350 switch (new_power) {
4351 case LOW_POWER:
4352 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304353 ei_up = 16000;
4354 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004355
4356 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304357 ei_down = 32000;
4358 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004359 break;
4360
4361 case BETWEEN:
4362 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304363 ei_up = 13000;
4364 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004365
4366 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304367 ei_down = 32000;
4368 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004369 break;
4370
4371 case HIGH_POWER:
4372 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304373 ei_up = 10000;
4374 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004375
4376 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304377 ei_down = 32000;
4378 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004379 break;
4380 }
4381
Akash Goel8a586432015-03-06 11:07:18 +05304382 I915_WRITE(GEN6_RP_UP_EI,
4383 GT_INTERVAL_FROM_US(dev_priv, ei_up));
4384 I915_WRITE(GEN6_RP_UP_THRESHOLD,
4385 GT_INTERVAL_FROM_US(dev_priv, (ei_up * threshold_up / 100)));
4386
4387 I915_WRITE(GEN6_RP_DOWN_EI,
4388 GT_INTERVAL_FROM_US(dev_priv, ei_down));
4389 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
4390 GT_INTERVAL_FROM_US(dev_priv, (ei_down * threshold_down / 100)));
4391
4392 I915_WRITE(GEN6_RP_CONTROL,
4393 GEN6_RP_MEDIA_TURBO |
4394 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4395 GEN6_RP_MEDIA_IS_GFX |
4396 GEN6_RP_ENABLE |
4397 GEN6_RP_UP_BUSY_AVG |
4398 GEN6_RP_DOWN_IDLE_AVG);
4399
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004400 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004401 dev_priv->rps.up_threshold = threshold_up;
4402 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004403 dev_priv->rps.last_adj = 0;
4404}
4405
Chris Wilson2876ce72014-03-28 08:03:34 +00004406static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4407{
4408 u32 mask = 0;
4409
4410 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004411 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004412 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004413 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004414
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004415 mask &= dev_priv->pm_rps_events;
4416
Imre Deak59d02a12014-12-19 19:33:26 +02004417 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004418}
4419
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004420/* gen6_set_rps is called to update the frequency request, but should also be
4421 * called when the range (min_delay and max_delay) is modified so that we can
4422 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004423static void gen6_set_rps(struct drm_device *dev, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004424{
4425 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004426
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004427 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004428 WARN_ON(val > dev_priv->rps.max_freq);
4429 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004430
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004431 /* min/max delay may still have been modified so be sure to
4432 * write the limits value.
4433 */
4434 if (val != dev_priv->rps.cur_freq) {
4435 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004436
Akash Goel57041952015-03-06 11:07:17 +05304437 if (IS_GEN9(dev))
4438 I915_WRITE(GEN6_RPNSWREQ,
4439 GEN9_FREQUENCY(val));
4440 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004441 I915_WRITE(GEN6_RPNSWREQ,
4442 HSW_FREQUENCY(val));
4443 else
4444 I915_WRITE(GEN6_RPNSWREQ,
4445 GEN6_FREQUENCY(val) |
4446 GEN6_OFFSET(0) |
4447 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004448 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004449
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004450 /* Make sure we continue to get interrupts
4451 * until we hit the minimum or maximum frequencies.
4452 */
Akash Goel74ef1172015-03-06 11:07:19 +05304453 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004454 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004455
Ben Widawskyd5570a72012-09-07 19:43:41 -07004456 POSTING_READ(GEN6_RPNSWREQ);
4457
Ben Widawskyb39fb292014-03-19 18:31:11 -07004458 dev_priv->rps.cur_freq = val;
Daniel Vetterbe2cde92012-08-30 13:26:48 +02004459 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004460}
4461
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004462static void valleyview_set_rps(struct drm_device *dev, u8 val)
4463{
4464 struct drm_i915_private *dev_priv = dev->dev_private;
4465
4466 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004467 WARN_ON(val > dev_priv->rps.max_freq);
4468 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004469
4470 if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1),
4471 "Odd GPU freq value\n"))
4472 val &= ~1;
4473
Chris Wilson8fb55192015-04-07 16:20:28 +01004474 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004475 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004476 if (!IS_CHERRYVIEW(dev_priv))
4477 gen6_set_rps_thresholds(dev_priv, val);
4478 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004479
4480 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4481
4482 dev_priv->rps.cur_freq = val;
4483 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4484}
4485
Deepak Sa7f6e232015-05-09 18:04:44 +05304486/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304487 *
4488 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304489 * 1. Forcewake Media well.
4490 * 2. Request idle freq.
4491 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304492*/
4493static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4494{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004495 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304496
Chris Wilsonaed242f2015-03-18 09:48:21 +00004497 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304498 return;
4499
Deepak Sa7f6e232015-05-09 18:04:44 +05304500 /* Wake up the media well, as that takes a lot less
4501 * power than the Render well. */
4502 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
4503 valleyview_set_rps(dev_priv->dev, val);
4504 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05304505}
4506
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004507void gen6_rps_busy(struct drm_i915_private *dev_priv)
4508{
4509 mutex_lock(&dev_priv->rps.hw_lock);
4510 if (dev_priv->rps.enabled) {
4511 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4512 gen6_rps_reset_ei(dev_priv);
4513 I915_WRITE(GEN6_PMINTRMSK,
4514 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
4515 }
4516 mutex_unlock(&dev_priv->rps.hw_lock);
4517}
4518
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004519void gen6_rps_idle(struct drm_i915_private *dev_priv)
4520{
Damien Lespiau691bb712013-12-12 14:36:36 +00004521 struct drm_device *dev = dev_priv->dev;
4522
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004523 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004524 if (dev_priv->rps.enabled) {
Ville Syrjälä21a11ff2015-01-27 16:36:15 +02004525 if (IS_VALLEYVIEW(dev))
Deepak S76c3552f2014-01-30 23:08:16 +05304526 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004527 else
Chris Wilsonaed242f2015-03-18 09:48:21 +00004528 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004529 dev_priv->rps.last_adj = 0;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004530 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004531 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004532 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004533
Chris Wilson8d3afd72015-05-21 21:01:47 +01004534 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004535 while (!list_empty(&dev_priv->rps.clients))
4536 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004537 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004538}
4539
Chris Wilson1854d5c2015-04-07 16:20:32 +01004540void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01004541 struct intel_rps_client *rps,
4542 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004543{
Chris Wilson8d3afd72015-05-21 21:01:47 +01004544 /* This is intentionally racy! We peek at the state here, then
4545 * validate inside the RPS worker.
4546 */
4547 if (!(dev_priv->mm.busy &&
4548 dev_priv->rps.enabled &&
4549 dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit))
4550 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004551
Chris Wilsone61b9952015-04-27 13:41:24 +01004552 /* Force a RPS boost (and don't count it against the client) if
4553 * the GPU is severely congested.
4554 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004555 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01004556 rps = NULL;
4557
Chris Wilson8d3afd72015-05-21 21:01:47 +01004558 spin_lock(&dev_priv->rps.client_lock);
4559 if (rps == NULL || list_empty(&rps->link)) {
4560 spin_lock_irq(&dev_priv->irq_lock);
4561 if (dev_priv->rps.interrupts_enabled) {
4562 dev_priv->rps.client_boost = true;
4563 queue_work(dev_priv->wq, &dev_priv->rps.work);
4564 }
4565 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004566
Chris Wilson2e1b8732015-04-27 13:41:22 +01004567 if (rps != NULL) {
4568 list_add(&rps->link, &dev_priv->rps.clients);
4569 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01004570 } else
4571 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01004572 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004573 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004574}
4575
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004576void intel_set_rps(struct drm_device *dev, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004577{
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004578 if (IS_VALLEYVIEW(dev))
4579 valleyview_set_rps(dev, val);
4580 else
4581 gen6_set_rps(dev, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004582}
4583
Zhe Wang20e49362014-11-04 17:07:05 +00004584static void gen9_disable_rps(struct drm_device *dev)
4585{
4586 struct drm_i915_private *dev_priv = dev->dev_private;
4587
4588 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004589 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004590}
4591
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004592static void gen6_disable_rps(struct drm_device *dev)
4593{
4594 struct drm_i915_private *dev_priv = dev->dev_private;
4595
4596 I915_WRITE(GEN6_RC_CONTROL, 0);
4597 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004598}
4599
Deepak S38807742014-05-23 21:00:15 +05304600static void cherryview_disable_rps(struct drm_device *dev)
4601{
4602 struct drm_i915_private *dev_priv = dev->dev_private;
4603
4604 I915_WRITE(GEN6_RC_CONTROL, 0);
4605}
4606
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004607static void valleyview_disable_rps(struct drm_device *dev)
4608{
4609 struct drm_i915_private *dev_priv = dev->dev_private;
4610
Deepak S98a2e5f2014-08-18 10:35:27 -07004611 /* we're doing forcewake before Disabling RC6,
4612 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02004613 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07004614
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004615 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004616
Mika Kuoppala59bad942015-01-16 11:34:40 +02004617 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004618}
4619
Ben Widawskydc39fff2013-10-18 12:32:07 -07004620static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
4621{
Imre Deak91ca6892014-04-14 20:24:25 +03004622 if (IS_VALLEYVIEW(dev)) {
4623 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
4624 mode = GEN6_RC_CTL_RC6_ENABLE;
4625 else
4626 mode = 0;
4627 }
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004628 if (HAS_RC6p(dev))
4629 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
4630 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
4631 (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
4632 (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
4633
4634 else
4635 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
4636 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off");
Ben Widawskydc39fff2013-10-18 12:32:07 -07004637}
4638
Imre Deake6069ca2014-04-18 16:01:02 +03004639static int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004640{
Daniel Vettere7d66d82015-06-15 23:23:54 +02004641 /* No RC6 before Ironlake and code is gone for ilk. */
4642 if (INTEL_INFO(dev)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03004643 return 0;
4644
Daniel Vetter456470e2012-08-08 23:35:40 +02004645 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03004646 if (enable_rc6 >= 0) {
4647 int mask;
4648
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004649 if (HAS_RC6p(dev))
Imre Deake6069ca2014-04-18 16:01:02 +03004650 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
4651 INTEL_RC6pp_ENABLE;
4652 else
4653 mask = INTEL_RC6_ENABLE;
4654
4655 if ((enable_rc6 & mask) != enable_rc6)
Daniel Vetter8dfd1f02014-08-04 11:15:56 +02004656 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
4657 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03004658
4659 return enable_rc6 & mask;
4660 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004661
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004662 if (IS_IVYBRIDGE(dev))
Ben Widawskycca84a12014-01-28 20:25:38 -08004663 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004664
4665 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004666}
4667
Imre Deake6069ca2014-04-18 16:01:02 +03004668int intel_enable_rc6(const struct drm_device *dev)
4669{
4670 return i915.enable_rc6;
4671}
4672
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004673static void gen6_init_rps_frequencies(struct drm_device *dev)
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004674{
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004675 struct drm_i915_private *dev_priv = dev->dev_private;
4676 uint32_t rp_state_cap;
4677 u32 ddcc_status = 0;
4678 int ret;
4679
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004680 /* All of these values are in units of 50MHz */
4681 dev_priv->rps.cur_freq = 0;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004682 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Bob Paauwe35040562015-06-25 14:54:07 -07004683 if (IS_BROXTON(dev)) {
4684 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
4685 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
4686 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4687 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
4688 } else {
4689 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
4690 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
4691 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4692 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
4693 }
4694
Akash Goelcee991c2015-03-06 11:07:16 +05304695 if (IS_SKYLAKE(dev)) {
4696 /* Store the frequency values in 16.66 MHZ units, which is
4697 the natural hardware unit for SKL */
4698 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
4699 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
4700 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
4701 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004702 /* hw_max = RP0 until we check for overclocking */
4703 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
4704
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004705 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
4706 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
4707 ret = sandybridge_pcode_read(dev_priv,
4708 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
4709 &ddcc_status);
4710 if (0 == ret)
4711 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08004712 clamp_t(u8,
4713 ((ddcc_status >> 8) & 0xff),
4714 dev_priv->rps.min_freq,
4715 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004716 }
4717
Chris Wilsonaed242f2015-03-18 09:48:21 +00004718 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4719
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004720 /* Preserve min/max settings in case of re-init */
4721 if (dev_priv->rps.max_freq_softlimit == 0)
4722 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4723
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004724 if (dev_priv->rps.min_freq_softlimit == 0) {
4725 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4726 dev_priv->rps.min_freq_softlimit =
Ville Syrjälä813b5e62015-03-25 19:27:16 +02004727 max_t(int, dev_priv->rps.efficient_freq,
4728 intel_freq_opcode(dev_priv, 450));
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004729 else
4730 dev_priv->rps.min_freq_softlimit =
4731 dev_priv->rps.min_freq;
4732 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004733}
4734
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004735/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Zhe Wang20e49362014-11-04 17:07:05 +00004736static void gen9_enable_rps(struct drm_device *dev)
4737{
4738 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004739
4740 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4741
Damien Lespiauba1c5542015-01-16 18:07:26 +00004742 gen6_init_rps_frequencies(dev);
4743
Akash Goel0beb0592015-03-06 11:07:20 +05304744 /* Program defaults and thresholds for RPS*/
4745 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4746 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004747
Akash Goel0beb0592015-03-06 11:07:20 +05304748 /* 1 second timeout*/
4749 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
4750 GT_INTERVAL_FROM_US(dev_priv, 1000000));
4751
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004752 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004753
Akash Goel0beb0592015-03-06 11:07:20 +05304754 /* Leaning on the below call to gen6_set_rps to program/setup the
4755 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
4756 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
4757 dev_priv->rps.power = HIGH_POWER; /* force a reset */
4758 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004759
4760 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4761}
4762
4763static void gen9_enable_rc6(struct drm_device *dev)
4764{
4765 struct drm_i915_private *dev_priv = dev->dev_private;
Zhe Wang20e49362014-11-04 17:07:05 +00004766 struct intel_engine_cs *ring;
4767 uint32_t rc6_mask = 0;
4768 int unused;
4769
4770 /* 1a: Software RC state - RC0 */
4771 I915_WRITE(GEN6_RC_STATE, 0);
4772
4773 /* 1b: Get forcewake during program sequence. Although the driver
4774 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004775 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004776
4777 /* 2a: Disable RC states. */
4778 I915_WRITE(GEN6_RC_CONTROL, 0);
4779
4780 /* 2b: Program RC6 thresholds.*/
4781 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
4782 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4783 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4784 for_each_ring(ring, dev_priv, unused)
4785 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4786 I915_WRITE(GEN6_RC_SLEEP, 0);
4787 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
4788
Zhe Wang38c23522015-01-20 12:23:04 +00004789 /* 2c: Program Coarse Power Gating Policies. */
4790 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
4791 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
4792
Zhe Wang20e49362014-11-04 17:07:05 +00004793 /* 3a: Enable RC6 */
4794 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4795 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
4796 DRM_INFO("RC6 %s\n", (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4797 "on" : "off");
4798 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4799 GEN6_RC_CTL_EI_MODE(1) |
4800 rc6_mask);
4801
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304802 /*
4803 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
4804 * WaDisableRenderPowerGating:skl,bxt - Render PG need to be disabled with RC6.
4805 */
Sagar Kamblea4104c52015-04-10 14:11:29 +05304806 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304807 GEN9_MEDIA_PG_ENABLE : 0);
Sagar Kamblea4104c52015-04-10 14:11:29 +05304808
Zhe Wang38c23522015-01-20 12:23:04 +00004809
Mika Kuoppala59bad942015-01-16 11:34:40 +02004810 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004811
4812}
4813
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004814static void gen8_enable_rps(struct drm_device *dev)
4815{
4816 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004817 struct intel_engine_cs *ring;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004818 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004819 int unused;
4820
4821 /* 1a: Software RC state - RC0 */
4822 I915_WRITE(GEN6_RC_STATE, 0);
4823
4824 /* 1c & 1d: Get forcewake during program sequence. Although the driver
4825 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004826 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004827
4828 /* 2a: Disable RC states. */
4829 I915_WRITE(GEN6_RC_CONTROL, 0);
4830
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004831 /* Initialize rps frequencies */
4832 gen6_init_rps_frequencies(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004833
4834 /* 2b: Program RC6 thresholds.*/
4835 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
4836 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4837 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4838 for_each_ring(ring, dev_priv, unused)
4839 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4840 I915_WRITE(GEN6_RC_SLEEP, 0);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004841 if (IS_BROADWELL(dev))
4842 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
4843 else
4844 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004845
4846 /* 3: Enable RC6 */
4847 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4848 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Ben Widawskyabbf9d22014-01-28 20:25:41 -08004849 intel_print_rc6_info(dev, rc6_mask);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004850 if (IS_BROADWELL(dev))
4851 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4852 GEN7_RC_CTL_TO_MODE |
4853 rc6_mask);
4854 else
4855 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4856 GEN6_RC_CTL_EI_MODE(1) |
4857 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004858
4859 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07004860 I915_WRITE(GEN6_RPNSWREQ,
4861 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
4862 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4863 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02004864 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
4865 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004866
Daniel Vetter7526ed72014-09-29 15:07:19 +02004867 /* Docs recommend 900MHz, and 300 MHz respectively */
4868 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
4869 dev_priv->rps.max_freq_softlimit << 24 |
4870 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004871
Daniel Vetter7526ed72014-09-29 15:07:19 +02004872 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
4873 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
4874 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
4875 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004876
Daniel Vetter7526ed72014-09-29 15:07:19 +02004877 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004878
4879 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02004880 I915_WRITE(GEN6_RP_CONTROL,
4881 GEN6_RP_MEDIA_TURBO |
4882 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4883 GEN6_RP_MEDIA_IS_GFX |
4884 GEN6_RP_ENABLE |
4885 GEN6_RP_UP_BUSY_AVG |
4886 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004887
Daniel Vetter7526ed72014-09-29 15:07:19 +02004888 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004889
Tom O'Rourkec7f31532014-11-19 14:21:54 -08004890 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004891 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004892
Mika Kuoppala59bad942015-01-16 11:34:40 +02004893 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004894}
4895
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004896static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004897{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004898 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004899 struct intel_engine_cs *ring;
Ben Widawskyd060c162014-03-19 18:31:08 -07004900 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004901 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004902 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07004903 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004904
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004905 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004906
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004907 /* Here begins a magic sequence of register writes to enable
4908 * auto-downclocking.
4909 *
4910 * Perhaps there might be some value in exposing these to
4911 * userspace...
4912 */
4913 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004914
4915 /* Clear the DBG now so we don't confuse earlier errors */
4916 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
4917 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
4918 I915_WRITE(GTFIFODBG, gtfifodbg);
4919 }
4920
Mika Kuoppala59bad942015-01-16 11:34:40 +02004921 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004922
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004923 /* Initialize rps frequencies */
4924 gen6_init_rps_frequencies(dev);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004925
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004926 /* disable the counters and set deterministic thresholds */
4927 I915_WRITE(GEN6_RC_CONTROL, 0);
4928
4929 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
4930 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
4931 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
4932 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4933 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4934
Chris Wilsonb4519512012-05-11 14:29:30 +01004935 for_each_ring(ring, dev_priv, i)
4936 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004937
4938 I915_WRITE(GEN6_RC_SLEEP, 0);
4939 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Daniel Vetter29c78f62013-11-16 16:04:26 +01004940 if (IS_IVYBRIDGE(dev))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07004941 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
4942 else
4943 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08004944 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004945 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
4946
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004947 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004948 rc6_mode = intel_enable_rc6(dev_priv->dev);
4949 if (rc6_mode & INTEL_RC6_ENABLE)
4950 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
4951
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004952 /* We don't use those on Haswell */
4953 if (!IS_HASWELL(dev)) {
4954 if (rc6_mode & INTEL_RC6p_ENABLE)
4955 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004956
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004957 if (rc6_mode & INTEL_RC6pp_ENABLE)
4958 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
4959 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004960
Ben Widawskydc39fff2013-10-18 12:32:07 -07004961 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004962
4963 I915_WRITE(GEN6_RC_CONTROL,
4964 rc6_mask |
4965 GEN6_RC_CTL_EI_MODE(1) |
4966 GEN6_RC_CTL_HW_ENABLE);
4967
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004968 /* Power down if completely idle for over 50ms */
4969 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004970 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004971
Ben Widawsky42c05262012-09-26 10:34:00 -07004972 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawskyd060c162014-03-19 18:31:08 -07004973 if (ret)
Ben Widawsky42c05262012-09-26 10:34:00 -07004974 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Ben Widawskyd060c162014-03-19 18:31:08 -07004975
4976 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
4977 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
4978 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskyb39fb292014-03-19 18:31:11 -07004979 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
Ben Widawskyd060c162014-03-19 18:31:08 -07004980 (pcu_mbox & 0xff) * 50);
Ben Widawskyb39fb292014-03-19 18:31:11 -07004981 dev_priv->rps.max_freq = pcu_mbox & 0xff;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004982 }
4983
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004984 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004985 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004986
Ben Widawsky31643d52012-09-26 10:34:01 -07004987 rc6vids = 0;
4988 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
4989 if (IS_GEN6(dev) && ret) {
4990 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
4991 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
4992 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
4993 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
4994 rc6vids &= 0xffff00;
4995 rc6vids |= GEN6_ENCODE_RC6_VID(450);
4996 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
4997 if (ret)
4998 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
4999 }
5000
Mika Kuoppala59bad942015-01-16 11:34:40 +02005001 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005002}
5003
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005004static void __gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005005{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005006 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005007 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005008 unsigned int gpu_freq;
5009 unsigned int max_ia_freq, min_ring_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005010 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005011 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005012
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005013 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005014
Ben Widawskyeda79642013-10-07 17:15:48 -03005015 policy = cpufreq_cpu_get(0);
5016 if (policy) {
5017 max_ia_freq = policy->cpuinfo.max_freq;
5018 cpufreq_cpu_put(policy);
5019 } else {
5020 /*
5021 * Default to measured freq if none found, PCU will ensure we
5022 * don't go over
5023 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005024 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005025 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005026
5027 /* Convert from kHz to MHz */
5028 max_ia_freq /= 1000;
5029
Ben Widawsky153b4b952013-10-22 22:05:09 -07005030 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005031 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5032 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005033
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005034 /*
5035 * For each potential GPU frequency, load a ring frequency we'd like
5036 * to use for memory access. We do this by specifying the IA frequency
5037 * the PCU should use as a reference to determine the ring frequency.
5038 */
Tom O'Rourke6985b352014-11-19 14:21:55 -08005039 for (gpu_freq = dev_priv->rps.max_freq; gpu_freq >= dev_priv->rps.min_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005040 gpu_freq--) {
Tom O'Rourke6985b352014-11-19 14:21:55 -08005041 int diff = dev_priv->rps.max_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005042 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005043
Ben Widawsky46c764d2013-11-02 21:07:49 -07005044 if (INTEL_INFO(dev)->gen >= 8) {
5045 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5046 ring_freq = max(min_ring_freq, gpu_freq);
5047 } else if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005048 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005049 ring_freq = max(min_ring_freq, ring_freq);
5050 /* leave ia_freq as the default, chosen by cpufreq */
5051 } else {
5052 /* On older processors, there is no separate ring
5053 * clock domain, so in order to boost the bandwidth
5054 * of the ring, we need to upclock the CPU (ia_freq).
5055 *
5056 * For GPU frequencies less than 750MHz,
5057 * just use the lowest ring freq.
5058 */
5059 if (gpu_freq < min_freq)
5060 ia_freq = 800;
5061 else
5062 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5063 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5064 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005065
Ben Widawsky42c05262012-09-26 10:34:00 -07005066 sandybridge_pcode_write(dev_priv,
5067 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005068 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5069 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5070 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005071 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005072}
5073
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005074void gen6_update_ring_freq(struct drm_device *dev)
5075{
5076 struct drm_i915_private *dev_priv = dev->dev_private;
5077
5078 if (INTEL_INFO(dev)->gen < 6 || IS_VALLEYVIEW(dev))
5079 return;
5080
5081 mutex_lock(&dev_priv->rps.hw_lock);
5082 __gen6_update_ring_freq(dev);
5083 mutex_unlock(&dev_priv->rps.hw_lock);
5084}
5085
Ville Syrjälä03af2042014-06-28 02:03:53 +03005086static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305087{
Deepak S095acd52015-01-17 11:05:59 +05305088 struct drm_device *dev = dev_priv->dev;
Deepak S2b6b3a02014-05-27 15:59:30 +05305089 u32 val, rp0;
5090
Deepak S095acd52015-01-17 11:05:59 +05305091 if (dev->pdev->revision >= 0x20) {
5092 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305093
Deepak S095acd52015-01-17 11:05:59 +05305094 switch (INTEL_INFO(dev)->eu_total) {
5095 case 8:
5096 /* (2 * 4) config */
5097 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5098 break;
5099 case 12:
5100 /* (2 * 6) config */
5101 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5102 break;
5103 case 16:
5104 /* (2 * 8) config */
5105 default:
5106 /* Setting (2 * 8) Min RP0 for any other combination */
5107 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5108 break;
5109 }
5110 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5111 } else {
5112 /* For pre-production hardware */
5113 val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG);
5114 rp0 = (val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
5115 PUNIT_GPU_STATUS_MAX_FREQ_MASK;
5116 }
Deepak S2b6b3a02014-05-27 15:59:30 +05305117 return rp0;
5118}
5119
5120static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5121{
5122 u32 val, rpe;
5123
5124 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5125 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5126
5127 return rpe;
5128}
5129
Deepak S7707df42014-07-12 18:46:14 +05305130static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5131{
Deepak S095acd52015-01-17 11:05:59 +05305132 struct drm_device *dev = dev_priv->dev;
Deepak S7707df42014-07-12 18:46:14 +05305133 u32 val, rp1;
5134
Deepak S095acd52015-01-17 11:05:59 +05305135 if (dev->pdev->revision >= 0x20) {
5136 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5137 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5138 } else {
5139 /* For pre-production hardware */
5140 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5141 rp1 = ((val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
5142 PUNIT_GPU_STATUS_MAX_FREQ_MASK);
5143 }
Deepak S7707df42014-07-12 18:46:14 +05305144 return rp1;
5145}
5146
Deepak Sf8f2b002014-07-10 13:16:21 +05305147static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5148{
5149 u32 val, rp1;
5150
5151 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5152
5153 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5154
5155 return rp1;
5156}
5157
Ville Syrjälä03af2042014-06-28 02:03:53 +03005158static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005159{
5160 u32 val, rp0;
5161
Jani Nikula64936252013-05-22 15:36:20 +03005162 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005163
5164 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5165 /* Clamp to max */
5166 rp0 = min_t(u32, rp0, 0xea);
5167
5168 return rp0;
5169}
5170
5171static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5172{
5173 u32 val, rpe;
5174
Jani Nikula64936252013-05-22 15:36:20 +03005175 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005176 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005177 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005178 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5179
5180 return rpe;
5181}
5182
Ville Syrjälä03af2042014-06-28 02:03:53 +03005183static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005184{
Jani Nikula64936252013-05-22 15:36:20 +03005185 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005186}
5187
Imre Deakae484342014-03-31 15:10:44 +03005188/* Check that the pctx buffer wasn't move under us. */
5189static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5190{
5191 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5192
5193 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5194 dev_priv->vlv_pctx->stolen->start);
5195}
5196
Deepak S38807742014-05-23 21:00:15 +05305197
5198/* Check that the pcbr address is not empty. */
5199static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5200{
5201 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5202
5203 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5204}
5205
5206static void cherryview_setup_pctx(struct drm_device *dev)
5207{
5208 struct drm_i915_private *dev_priv = dev->dev_private;
5209 unsigned long pctx_paddr, paddr;
5210 struct i915_gtt *gtt = &dev_priv->gtt;
5211 u32 pcbr;
5212 int pctx_size = 32*1024;
5213
5214 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5215
5216 pcbr = I915_READ(VLV_PCBR);
5217 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005218 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305219 paddr = (dev_priv->mm.stolen_base +
5220 (gtt->stolen_size - pctx_size));
5221
5222 pctx_paddr = (paddr & (~4095));
5223 I915_WRITE(VLV_PCBR, pctx_paddr);
5224 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005225
5226 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305227}
5228
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005229static void valleyview_setup_pctx(struct drm_device *dev)
5230{
5231 struct drm_i915_private *dev_priv = dev->dev_private;
5232 struct drm_i915_gem_object *pctx;
5233 unsigned long pctx_paddr;
5234 u32 pcbr;
5235 int pctx_size = 24*1024;
5236
Imre Deak17b0c1f2014-02-11 21:39:06 +02005237 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5238
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005239 pcbr = I915_READ(VLV_PCBR);
5240 if (pcbr) {
5241 /* BIOS set it up already, grab the pre-alloc'd space */
5242 int pcbr_offset;
5243
5244 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
5245 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
5246 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005247 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005248 pctx_size);
5249 goto out;
5250 }
5251
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005252 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5253
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005254 /*
5255 * From the Gunit register HAS:
5256 * The Gfx driver is expected to program this register and ensure
5257 * proper allocation within Gfx stolen memory. For example, this
5258 * register should be programmed such than the PCBR range does not
5259 * overlap with other ranges, such as the frame buffer, protected
5260 * memory, or any other relevant ranges.
5261 */
5262 pctx = i915_gem_object_create_stolen(dev, pctx_size);
5263 if (!pctx) {
5264 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
5265 return;
5266 }
5267
5268 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5269 I915_WRITE(VLV_PCBR, pctx_paddr);
5270
5271out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005272 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005273 dev_priv->vlv_pctx = pctx;
5274}
5275
Imre Deakae484342014-03-31 15:10:44 +03005276static void valleyview_cleanup_pctx(struct drm_device *dev)
5277{
5278 struct drm_i915_private *dev_priv = dev->dev_private;
5279
5280 if (WARN_ON(!dev_priv->vlv_pctx))
5281 return;
5282
5283 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
5284 dev_priv->vlv_pctx = NULL;
5285}
5286
Imre Deak4e805192014-04-14 20:24:41 +03005287static void valleyview_init_gt_powersave(struct drm_device *dev)
5288{
5289 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005290 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005291
5292 valleyview_setup_pctx(dev);
5293
5294 mutex_lock(&dev_priv->rps.hw_lock);
5295
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005296 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5297 switch ((val >> 6) & 3) {
5298 case 0:
5299 case 1:
5300 dev_priv->mem_freq = 800;
5301 break;
5302 case 2:
5303 dev_priv->mem_freq = 1066;
5304 break;
5305 case 3:
5306 dev_priv->mem_freq = 1333;
5307 break;
5308 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005309 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005310
Imre Deak4e805192014-04-14 20:24:41 +03005311 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5312 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5313 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005314 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005315 dev_priv->rps.max_freq);
5316
5317 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5318 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005319 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005320 dev_priv->rps.efficient_freq);
5321
Deepak Sf8f2b002014-07-10 13:16:21 +05305322 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5323 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005324 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305325 dev_priv->rps.rp1_freq);
5326
Imre Deak4e805192014-04-14 20:24:41 +03005327 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5328 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005329 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005330 dev_priv->rps.min_freq);
5331
Chris Wilsonaed242f2015-03-18 09:48:21 +00005332 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5333
Imre Deak4e805192014-04-14 20:24:41 +03005334 /* Preserve min/max settings in case of re-init */
5335 if (dev_priv->rps.max_freq_softlimit == 0)
5336 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5337
5338 if (dev_priv->rps.min_freq_softlimit == 0)
5339 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5340
5341 mutex_unlock(&dev_priv->rps.hw_lock);
5342}
5343
Deepak S38807742014-05-23 21:00:15 +05305344static void cherryview_init_gt_powersave(struct drm_device *dev)
5345{
Deepak S2b6b3a02014-05-27 15:59:30 +05305346 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005347 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305348
Deepak S38807742014-05-23 21:00:15 +05305349 cherryview_setup_pctx(dev);
Deepak S2b6b3a02014-05-27 15:59:30 +05305350
5351 mutex_lock(&dev_priv->rps.hw_lock);
5352
Ville Syrjäläa5805162015-05-26 20:42:30 +03005353 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005354 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005355 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005356
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005357 switch ((val >> 2) & 0x7) {
5358 case 0:
5359 case 1:
5360 dev_priv->rps.cz_freq = 200;
5361 dev_priv->mem_freq = 1600;
5362 break;
5363 case 2:
5364 dev_priv->rps.cz_freq = 267;
5365 dev_priv->mem_freq = 1600;
5366 break;
5367 case 3:
5368 dev_priv->rps.cz_freq = 333;
5369 dev_priv->mem_freq = 2000;
5370 break;
5371 case 4:
5372 dev_priv->rps.cz_freq = 320;
5373 dev_priv->mem_freq = 1600;
5374 break;
5375 case 5:
5376 dev_priv->rps.cz_freq = 400;
5377 dev_priv->mem_freq = 1600;
5378 break;
5379 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005380 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005381
Deepak S2b6b3a02014-05-27 15:59:30 +05305382 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5383 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5384 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005385 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305386 dev_priv->rps.max_freq);
5387
5388 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5389 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005390 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305391 dev_priv->rps.efficient_freq);
5392
Deepak S7707df42014-07-12 18:46:14 +05305393 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5394 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005395 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305396 dev_priv->rps.rp1_freq);
5397
Deepak S5b7c91b2015-05-09 18:15:46 +05305398 /* PUnit validated range is only [RPe, RP0] */
5399 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305400 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005401 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305402 dev_priv->rps.min_freq);
5403
Ville Syrjälä1c147622014-08-18 14:42:43 +03005404 WARN_ONCE((dev_priv->rps.max_freq |
5405 dev_priv->rps.efficient_freq |
5406 dev_priv->rps.rp1_freq |
5407 dev_priv->rps.min_freq) & 1,
5408 "Odd GPU freq values\n");
5409
Chris Wilsonaed242f2015-03-18 09:48:21 +00005410 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5411
Deepak S2b6b3a02014-05-27 15:59:30 +05305412 /* Preserve min/max settings in case of re-init */
5413 if (dev_priv->rps.max_freq_softlimit == 0)
5414 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5415
5416 if (dev_priv->rps.min_freq_softlimit == 0)
5417 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5418
5419 mutex_unlock(&dev_priv->rps.hw_lock);
Deepak S38807742014-05-23 21:00:15 +05305420}
5421
Imre Deak4e805192014-04-14 20:24:41 +03005422static void valleyview_cleanup_gt_powersave(struct drm_device *dev)
5423{
5424 valleyview_cleanup_pctx(dev);
5425}
5426
Deepak S38807742014-05-23 21:00:15 +05305427static void cherryview_enable_rps(struct drm_device *dev)
5428{
5429 struct drm_i915_private *dev_priv = dev->dev_private;
5430 struct intel_engine_cs *ring;
Deepak S2b6b3a02014-05-27 15:59:30 +05305431 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305432 int i;
5433
5434 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5435
5436 gtfifodbg = I915_READ(GTFIFODBG);
5437 if (gtfifodbg) {
5438 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5439 gtfifodbg);
5440 I915_WRITE(GTFIFODBG, gtfifodbg);
5441 }
5442
5443 cherryview_check_pctx(dev_priv);
5444
5445 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5446 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005447 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305448
Ville Syrjälä160614a2015-01-19 13:50:47 +02005449 /* Disable RC states. */
5450 I915_WRITE(GEN6_RC_CONTROL, 0);
5451
Deepak S38807742014-05-23 21:00:15 +05305452 /* 2a: Program RC6 thresholds.*/
5453 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5454 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5455 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5456
5457 for_each_ring(ring, dev_priv, i)
5458 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5459 I915_WRITE(GEN6_RC_SLEEP, 0);
5460
Deepak Sf4f71c72015-03-28 15:23:35 +05305461 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
5462 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05305463
5464 /* allows RC6 residency counter to work */
5465 I915_WRITE(VLV_COUNTER_CONTROL,
5466 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5467 VLV_MEDIA_RC6_COUNT_EN |
5468 VLV_RENDER_RC6_COUNT_EN));
5469
5470 /* For now we assume BIOS is allocating and populating the PCBR */
5471 pcbr = I915_READ(VLV_PCBR);
5472
Deepak S38807742014-05-23 21:00:15 +05305473 /* 3: Enable RC6 */
5474 if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) &&
5475 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005476 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305477
5478 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5479
Deepak S2b6b3a02014-05-27 15:59:30 +05305480 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005481 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305482 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5483 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5484 I915_WRITE(GEN6_RP_UP_EI, 66000);
5485 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5486
5487 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5488
5489 /* 5: Enable RPS */
5490 I915_WRITE(GEN6_RP_CONTROL,
5491 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005492 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305493 GEN6_RP_ENABLE |
5494 GEN6_RP_UP_BUSY_AVG |
5495 GEN6_RP_DOWN_IDLE_AVG);
5496
Deepak S3ef62342015-04-29 08:36:24 +05305497 /* Setting Fixed Bias */
5498 val = VLV_OVERRIDE_EN |
5499 VLV_SOC_TDP_EN |
5500 CHV_BIAS_CPU_50_SOC_50;
5501 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5502
Deepak S2b6b3a02014-05-27 15:59:30 +05305503 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5504
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005505 /* RPS code assumes GPLL is used */
5506 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5507
Ville Syrjäläc8e96272014-11-07 21:33:44 +02005508 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
Deepak S2b6b3a02014-05-27 15:59:30 +05305509 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5510
5511 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
5512 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005513 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305514 dev_priv->rps.cur_freq);
5515
5516 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005517 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305518 dev_priv->rps.efficient_freq);
5519
5520 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
5521
Mika Kuoppala59bad942015-01-16 11:34:40 +02005522 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305523}
5524
Jesse Barnes0a073b82013-04-17 15:54:58 -07005525static void valleyview_enable_rps(struct drm_device *dev)
5526{
5527 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005528 struct intel_engine_cs *ring;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07005529 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005530 int i;
5531
5532 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5533
Imre Deakae484342014-03-31 15:10:44 +03005534 valleyview_check_pctx(dev_priv);
5535
Jesse Barnes0a073b82013-04-17 15:54:58 -07005536 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07005537 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5538 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005539 I915_WRITE(GTFIFODBG, gtfifodbg);
5540 }
5541
Deepak Sc8d9a592013-11-23 14:55:42 +05305542 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005543 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005544
Ville Syrjälä160614a2015-01-19 13:50:47 +02005545 /* Disable RC states. */
5546 I915_WRITE(GEN6_RC_CONTROL, 0);
5547
Ville Syrjäläcad725f2015-01-19 13:50:48 +02005548 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005549 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5550 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5551 I915_WRITE(GEN6_RP_UP_EI, 66000);
5552 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5553
5554 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5555
5556 I915_WRITE(GEN6_RP_CONTROL,
5557 GEN6_RP_MEDIA_TURBO |
5558 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5559 GEN6_RP_MEDIA_IS_GFX |
5560 GEN6_RP_ENABLE |
5561 GEN6_RP_UP_BUSY_AVG |
5562 GEN6_RP_DOWN_IDLE_CONT);
5563
5564 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
5565 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5566 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5567
5568 for_each_ring(ring, dev_priv, i)
5569 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5570
Jesse Barnes2f0aa302013-11-15 09:32:11 -08005571 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005572
5573 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07005574 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04005575 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
5576 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07005577 VLV_MEDIA_RC6_COUNT_EN |
5578 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04005579
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005580 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08005581 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07005582
5583 intel_print_rc6_info(dev, rc6_mode);
5584
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005585 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005586
Deepak S3ef62342015-04-29 08:36:24 +05305587 /* Setting Fixed Bias */
5588 val = VLV_OVERRIDE_EN |
5589 VLV_SOC_TDP_EN |
5590 VLV_BIAS_CPU_125_SOC_875;
5591 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5592
Jani Nikula64936252013-05-22 15:36:20 +03005593 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005594
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005595 /* RPS code assumes GPLL is used */
5596 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5597
Ville Syrjäläc8e96272014-11-07 21:33:44 +02005598 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
Jesse Barnes0a073b82013-04-17 15:54:58 -07005599 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5600
Ben Widawskyb39fb292014-03-19 18:31:11 -07005601 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03005602 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005603 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005604 dev_priv->rps.cur_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005605
Ville Syrjälä73008b92013-06-25 19:21:01 +03005606 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005607 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005608 dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005609
Ben Widawskyb39fb292014-03-19 18:31:11 -07005610 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005611
Mika Kuoppala59bad942015-01-16 11:34:40 +02005612 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005613}
5614
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005615static unsigned long intel_pxfreq(u32 vidfreq)
5616{
5617 unsigned long freq;
5618 int div = (vidfreq & 0x3f0000) >> 16;
5619 int post = (vidfreq & 0x3000) >> 12;
5620 int pre = (vidfreq & 0x7);
5621
5622 if (!pre)
5623 return 0;
5624
5625 freq = ((div * 133333) / ((1<<post) * pre));
5626
5627 return freq;
5628}
5629
Daniel Vettereb48eb02012-04-26 23:28:12 +02005630static const struct cparams {
5631 u16 i;
5632 u16 t;
5633 u16 m;
5634 u16 c;
5635} cparams[] = {
5636 { 1, 1333, 301, 28664 },
5637 { 1, 1066, 294, 24460 },
5638 { 1, 800, 294, 25192 },
5639 { 0, 1333, 276, 27605 },
5640 { 0, 1066, 276, 27605 },
5641 { 0, 800, 231, 23784 },
5642};
5643
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005644static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005645{
5646 u64 total_count, diff, ret;
5647 u32 count1, count2, count3, m = 0, c = 0;
5648 unsigned long now = jiffies_to_msecs(jiffies), diff1;
5649 int i;
5650
Daniel Vetter02d71952012-08-09 16:44:54 +02005651 assert_spin_locked(&mchdev_lock);
5652
Daniel Vetter20e4d402012-08-08 23:35:39 +02005653 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005654
5655 /* Prevent division-by-zero if we are asking too fast.
5656 * Also, we don't get interesting results if we are polling
5657 * faster than once in 10ms, so just return the saved value
5658 * in such cases.
5659 */
5660 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02005661 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005662
5663 count1 = I915_READ(DMIEC);
5664 count2 = I915_READ(DDREC);
5665 count3 = I915_READ(CSIEC);
5666
5667 total_count = count1 + count2 + count3;
5668
5669 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02005670 if (total_count < dev_priv->ips.last_count1) {
5671 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005672 diff += total_count;
5673 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005674 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005675 }
5676
5677 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005678 if (cparams[i].i == dev_priv->ips.c_m &&
5679 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02005680 m = cparams[i].m;
5681 c = cparams[i].c;
5682 break;
5683 }
5684 }
5685
5686 diff = div_u64(diff, diff1);
5687 ret = ((m * diff) + c);
5688 ret = div_u64(ret, 10);
5689
Daniel Vetter20e4d402012-08-08 23:35:39 +02005690 dev_priv->ips.last_count1 = total_count;
5691 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005692
Daniel Vetter20e4d402012-08-08 23:35:39 +02005693 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005694
5695 return ret;
5696}
5697
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005698unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
5699{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005700 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005701 unsigned long val;
5702
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005703 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005704 return 0;
5705
5706 spin_lock_irq(&mchdev_lock);
5707
5708 val = __i915_chipset_val(dev_priv);
5709
5710 spin_unlock_irq(&mchdev_lock);
5711
5712 return val;
5713}
5714
Daniel Vettereb48eb02012-04-26 23:28:12 +02005715unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
5716{
5717 unsigned long m, x, b;
5718 u32 tsfs;
5719
5720 tsfs = I915_READ(TSFS);
5721
5722 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
5723 x = I915_READ8(TR1);
5724
5725 b = tsfs & TSFS_INTR_MASK;
5726
5727 return ((m * x) / 127) - b;
5728}
5729
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005730static int _pxvid_to_vd(u8 pxvid)
5731{
5732 if (pxvid == 0)
5733 return 0;
5734
5735 if (pxvid >= 8 && pxvid < 31)
5736 pxvid = 31;
5737
5738 return (pxvid + 2) * 125;
5739}
5740
5741static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005742{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005743 struct drm_device *dev = dev_priv->dev;
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005744 const int vd = _pxvid_to_vd(pxvid);
5745 const int vm = vd - 1125;
5746
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005747 if (INTEL_INFO(dev)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005748 return vm > 0 ? vm : 0;
5749
5750 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005751}
5752
Daniel Vetter02d71952012-08-09 16:44:54 +02005753static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005754{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005755 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005756 u32 count;
5757
Daniel Vetter02d71952012-08-09 16:44:54 +02005758 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005759
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005760 now = ktime_get_raw_ns();
5761 diffms = now - dev_priv->ips.last_time2;
5762 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005763
5764 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02005765 if (!diffms)
5766 return;
5767
5768 count = I915_READ(GFXEC);
5769
Daniel Vetter20e4d402012-08-08 23:35:39 +02005770 if (count < dev_priv->ips.last_count2) {
5771 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005772 diff += count;
5773 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005774 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005775 }
5776
Daniel Vetter20e4d402012-08-08 23:35:39 +02005777 dev_priv->ips.last_count2 = count;
5778 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005779
5780 /* More magic constants... */
5781 diff = diff * 1181;
5782 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005783 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005784}
5785
Daniel Vetter02d71952012-08-09 16:44:54 +02005786void i915_update_gfx_val(struct drm_i915_private *dev_priv)
5787{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005788 struct drm_device *dev = dev_priv->dev;
5789
5790 if (INTEL_INFO(dev)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02005791 return;
5792
Daniel Vetter92703882012-08-09 16:46:01 +02005793 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005794
5795 __i915_update_gfx_val(dev_priv);
5796
Daniel Vetter92703882012-08-09 16:46:01 +02005797 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005798}
5799
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005800static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005801{
5802 unsigned long t, corr, state1, corr2, state2;
5803 u32 pxvid, ext_v;
5804
Daniel Vetter02d71952012-08-09 16:44:54 +02005805 assert_spin_locked(&mchdev_lock);
5806
Ben Widawskyb39fb292014-03-19 18:31:11 -07005807 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_freq * 4));
Daniel Vettereb48eb02012-04-26 23:28:12 +02005808 pxvid = (pxvid >> 24) & 0x7f;
5809 ext_v = pvid_to_extvid(dev_priv, pxvid);
5810
5811 state1 = ext_v;
5812
5813 t = i915_mch_val(dev_priv);
5814
5815 /* Revel in the empirically derived constants */
5816
5817 /* Correction factor in 1/100000 units */
5818 if (t > 80)
5819 corr = ((t * 2349) + 135940);
5820 else if (t >= 50)
5821 corr = ((t * 964) + 29317);
5822 else /* < 50 */
5823 corr = ((t * 301) + 1004);
5824
5825 corr = corr * ((150142 * state1) / 10000 - 78642);
5826 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02005827 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005828
5829 state2 = (corr2 * state1) / 10000;
5830 state2 /= 100; /* convert to mW */
5831
Daniel Vetter02d71952012-08-09 16:44:54 +02005832 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005833
Daniel Vetter20e4d402012-08-08 23:35:39 +02005834 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005835}
5836
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005837unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
5838{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005839 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005840 unsigned long val;
5841
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005842 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005843 return 0;
5844
5845 spin_lock_irq(&mchdev_lock);
5846
5847 val = __i915_gfx_val(dev_priv);
5848
5849 spin_unlock_irq(&mchdev_lock);
5850
5851 return val;
5852}
5853
Daniel Vettereb48eb02012-04-26 23:28:12 +02005854/**
5855 * i915_read_mch_val - return value for IPS use
5856 *
5857 * Calculate and return a value for the IPS driver to use when deciding whether
5858 * we have thermal and power headroom to increase CPU or GPU power budget.
5859 */
5860unsigned long i915_read_mch_val(void)
5861{
5862 struct drm_i915_private *dev_priv;
5863 unsigned long chipset_val, graphics_val, ret = 0;
5864
Daniel Vetter92703882012-08-09 16:46:01 +02005865 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005866 if (!i915_mch_dev)
5867 goto out_unlock;
5868 dev_priv = i915_mch_dev;
5869
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005870 chipset_val = __i915_chipset_val(dev_priv);
5871 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005872
5873 ret = chipset_val + graphics_val;
5874
5875out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005876 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005877
5878 return ret;
5879}
5880EXPORT_SYMBOL_GPL(i915_read_mch_val);
5881
5882/**
5883 * i915_gpu_raise - raise GPU frequency limit
5884 *
5885 * Raise the limit; IPS indicates we have thermal headroom.
5886 */
5887bool i915_gpu_raise(void)
5888{
5889 struct drm_i915_private *dev_priv;
5890 bool ret = true;
5891
Daniel Vetter92703882012-08-09 16:46:01 +02005892 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005893 if (!i915_mch_dev) {
5894 ret = false;
5895 goto out_unlock;
5896 }
5897 dev_priv = i915_mch_dev;
5898
Daniel Vetter20e4d402012-08-08 23:35:39 +02005899 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
5900 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005901
5902out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005903 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005904
5905 return ret;
5906}
5907EXPORT_SYMBOL_GPL(i915_gpu_raise);
5908
5909/**
5910 * i915_gpu_lower - lower GPU frequency limit
5911 *
5912 * IPS indicates we're close to a thermal limit, so throttle back the GPU
5913 * frequency maximum.
5914 */
5915bool i915_gpu_lower(void)
5916{
5917 struct drm_i915_private *dev_priv;
5918 bool ret = true;
5919
Daniel Vetter92703882012-08-09 16:46:01 +02005920 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005921 if (!i915_mch_dev) {
5922 ret = false;
5923 goto out_unlock;
5924 }
5925 dev_priv = i915_mch_dev;
5926
Daniel Vetter20e4d402012-08-08 23:35:39 +02005927 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
5928 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005929
5930out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005931 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005932
5933 return ret;
5934}
5935EXPORT_SYMBOL_GPL(i915_gpu_lower);
5936
5937/**
5938 * i915_gpu_busy - indicate GPU business to IPS
5939 *
5940 * Tell the IPS driver whether or not the GPU is busy.
5941 */
5942bool i915_gpu_busy(void)
5943{
5944 struct drm_i915_private *dev_priv;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005945 struct intel_engine_cs *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005946 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01005947 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005948
Daniel Vetter92703882012-08-09 16:46:01 +02005949 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005950 if (!i915_mch_dev)
5951 goto out_unlock;
5952 dev_priv = i915_mch_dev;
5953
Chris Wilsonf047e392012-07-21 12:31:41 +01005954 for_each_ring(ring, dev_priv, i)
5955 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005956
5957out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005958 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005959
5960 return ret;
5961}
5962EXPORT_SYMBOL_GPL(i915_gpu_busy);
5963
5964/**
5965 * i915_gpu_turbo_disable - disable graphics turbo
5966 *
5967 * Disable graphics turbo by resetting the max frequency and setting the
5968 * current frequency to the default.
5969 */
5970bool i915_gpu_turbo_disable(void)
5971{
5972 struct drm_i915_private *dev_priv;
5973 bool ret = true;
5974
Daniel Vetter92703882012-08-09 16:46:01 +02005975 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005976 if (!i915_mch_dev) {
5977 ret = false;
5978 goto out_unlock;
5979 }
5980 dev_priv = i915_mch_dev;
5981
Daniel Vetter20e4d402012-08-08 23:35:39 +02005982 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005983
Daniel Vetter20e4d402012-08-08 23:35:39 +02005984 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02005985 ret = false;
5986
5987out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005988 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005989
5990 return ret;
5991}
5992EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
5993
5994/**
5995 * Tells the intel_ips driver that the i915 driver is now loaded, if
5996 * IPS got loaded first.
5997 *
5998 * This awkward dance is so that neither module has to depend on the
5999 * other in order for IPS to do the appropriate communication of
6000 * GPU turbo limits to i915.
6001 */
6002static void
6003ips_ping_for_i915_load(void)
6004{
6005 void (*link)(void);
6006
6007 link = symbol_get(ips_link_to_i915_driver);
6008 if (link) {
6009 link();
6010 symbol_put(ips_link_to_i915_driver);
6011 }
6012}
6013
6014void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6015{
Daniel Vetter02d71952012-08-09 16:44:54 +02006016 /* We only register the i915 ips part with intel-ips once everything is
6017 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006018 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006019 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006020 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006021
6022 ips_ping_for_i915_load();
6023}
6024
6025void intel_gpu_ips_teardown(void)
6026{
Daniel Vetter92703882012-08-09 16:46:01 +02006027 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006028 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006029 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006030}
Deepak S76c3552f2014-01-30 23:08:16 +05306031
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006032static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006033{
6034 struct drm_i915_private *dev_priv = dev->dev_private;
6035 u32 lcfuse;
6036 u8 pxw[16];
6037 int i;
6038
6039 /* Disable to program */
6040 I915_WRITE(ECR, 0);
6041 POSTING_READ(ECR);
6042
6043 /* Program energy weights for various events */
6044 I915_WRITE(SDEW, 0x15040d00);
6045 I915_WRITE(CSIEW0, 0x007f0000);
6046 I915_WRITE(CSIEW1, 0x1e220004);
6047 I915_WRITE(CSIEW2, 0x04000004);
6048
6049 for (i = 0; i < 5; i++)
6050 I915_WRITE(PEW + (i * 4), 0);
6051 for (i = 0; i < 3; i++)
6052 I915_WRITE(DEW + (i * 4), 0);
6053
6054 /* Program P-state weights to account for frequency power adjustment */
6055 for (i = 0; i < 16; i++) {
6056 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
6057 unsigned long freq = intel_pxfreq(pxvidfreq);
6058 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6059 PXVFREQ_PX_SHIFT;
6060 unsigned long val;
6061
6062 val = vid * vid;
6063 val *= (freq / 1000);
6064 val *= 255;
6065 val /= (127*127*900);
6066 if (val > 0xff)
6067 DRM_ERROR("bad pxval: %ld\n", val);
6068 pxw[i] = val;
6069 }
6070 /* Render standby states get 0 weight */
6071 pxw[14] = 0;
6072 pxw[15] = 0;
6073
6074 for (i = 0; i < 4; i++) {
6075 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6076 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
6077 I915_WRITE(PXW + (i * 4), val);
6078 }
6079
6080 /* Adjust magic regs to magic values (more experimental results) */
6081 I915_WRITE(OGW0, 0);
6082 I915_WRITE(OGW1, 0);
6083 I915_WRITE(EG0, 0x00007f00);
6084 I915_WRITE(EG1, 0x0000000e);
6085 I915_WRITE(EG2, 0x000e0000);
6086 I915_WRITE(EG3, 0x68000300);
6087 I915_WRITE(EG4, 0x42000000);
6088 I915_WRITE(EG5, 0x00140031);
6089 I915_WRITE(EG6, 0);
6090 I915_WRITE(EG7, 0);
6091
6092 for (i = 0; i < 8; i++)
6093 I915_WRITE(PXWL + (i * 4), 0);
6094
6095 /* Enable PMON + select events */
6096 I915_WRITE(ECR, 0x80000019);
6097
6098 lcfuse = I915_READ(LCFUSE02);
6099
Daniel Vetter20e4d402012-08-08 23:35:39 +02006100 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006101}
6102
Imre Deakae484342014-03-31 15:10:44 +03006103void intel_init_gt_powersave(struct drm_device *dev)
6104{
Imre Deake6069ca2014-04-18 16:01:02 +03006105 i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6);
6106
Deepak S38807742014-05-23 21:00:15 +05306107 if (IS_CHERRYVIEW(dev))
6108 cherryview_init_gt_powersave(dev);
6109 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006110 valleyview_init_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006111}
6112
6113void intel_cleanup_gt_powersave(struct drm_device *dev)
6114{
Deepak S38807742014-05-23 21:00:15 +05306115 if (IS_CHERRYVIEW(dev))
6116 return;
6117 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006118 valleyview_cleanup_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006119}
6120
Imre Deakdbea3ce2014-12-15 18:59:28 +02006121static void gen6_suspend_rps(struct drm_device *dev)
6122{
6123 struct drm_i915_private *dev_priv = dev->dev_private;
6124
6125 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
6126
Akash Goel4c2a8892015-03-06 11:07:24 +05306127 gen6_disable_rps_interrupts(dev);
Imre Deakdbea3ce2014-12-15 18:59:28 +02006128}
6129
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006130/**
6131 * intel_suspend_gt_powersave - suspend PM work and helper threads
6132 * @dev: drm device
6133 *
6134 * We don't want to disable RC6 or other features here, we just want
6135 * to make sure any work we've queued has finished and won't bother
6136 * us while we're suspended.
6137 */
6138void intel_suspend_gt_powersave(struct drm_device *dev)
6139{
6140 struct drm_i915_private *dev_priv = dev->dev_private;
6141
Imre Deakd4d70aa2014-11-19 15:30:04 +02006142 if (INTEL_INFO(dev)->gen < 6)
6143 return;
6144
Imre Deakdbea3ce2014-12-15 18:59:28 +02006145 gen6_suspend_rps(dev);
Deepak Sb47adc12014-06-20 20:03:02 +05306146
6147 /* Force GPU to min freq during suspend */
6148 gen6_rps_idle(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006149}
6150
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006151void intel_disable_gt_powersave(struct drm_device *dev)
6152{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006153 struct drm_i915_private *dev_priv = dev->dev_private;
6154
Daniel Vetter930ebb42012-06-29 23:32:16 +02006155 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006156 ironlake_disable_drps(dev);
Deepak S38807742014-05-23 21:00:15 +05306157 } else if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter10d8d362014-06-12 17:48:52 +02006158 intel_suspend_gt_powersave(dev);
Imre Deake4948372014-05-12 18:35:04 +03006159
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006160 mutex_lock(&dev_priv->rps.hw_lock);
Zhe Wang20e49362014-11-04 17:07:05 +00006161 if (INTEL_INFO(dev)->gen >= 9)
6162 gen9_disable_rps(dev);
6163 else if (IS_CHERRYVIEW(dev))
Deepak S38807742014-05-23 21:00:15 +05306164 cherryview_disable_rps(dev);
6165 else if (IS_VALLEYVIEW(dev))
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006166 valleyview_disable_rps(dev);
6167 else
6168 gen6_disable_rps(dev);
Imre Deake5347702014-11-19 15:30:02 +02006169
Chris Wilsonc0951f02013-10-10 21:58:50 +01006170 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006171 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02006172 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006173}
6174
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006175static void intel_gen6_powersave_work(struct work_struct *work)
6176{
6177 struct drm_i915_private *dev_priv =
6178 container_of(work, struct drm_i915_private,
6179 rps.delayed_resume_work.work);
6180 struct drm_device *dev = dev_priv->dev;
6181
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006182 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006183
Akash Goel4c2a8892015-03-06 11:07:24 +05306184 gen6_reset_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006185
Deepak S38807742014-05-23 21:00:15 +05306186 if (IS_CHERRYVIEW(dev)) {
6187 cherryview_enable_rps(dev);
6188 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -07006189 valleyview_enable_rps(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006190 } else if (INTEL_INFO(dev)->gen >= 9) {
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006191 gen9_enable_rc6(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006192 gen9_enable_rps(dev);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006193 __gen6_update_ring_freq(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006194 } else if (IS_BROADWELL(dev)) {
6195 gen8_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006196 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006197 } else {
6198 gen6_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006199 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006200 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006201
6202 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6203 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6204
6205 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6206 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6207
Chris Wilsonc0951f02013-10-10 21:58:50 +01006208 dev_priv->rps.enabled = true;
Imre Deak3cc134e2014-11-19 15:30:03 +02006209
Akash Goel4c2a8892015-03-06 11:07:24 +05306210 gen6_enable_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006211
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006212 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deakc6df39b2014-04-14 20:24:29 +03006213
6214 intel_runtime_pm_put(dev_priv);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006215}
6216
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006217void intel_enable_gt_powersave(struct drm_device *dev)
6218{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006219 struct drm_i915_private *dev_priv = dev->dev_private;
6220
Yu Zhangf61018b2015-02-10 19:05:52 +08006221 /* Powersaving is controlled by the host when inside a VM */
6222 if (intel_vgpu_active(dev))
6223 return;
6224
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006225 if (IS_IRONLAKE_M(dev)) {
Imre Deakdc1d0132014-04-14 20:24:28 +03006226 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006227 ironlake_enable_drps(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006228 intel_init_emon(dev);
Imre Deakdc1d0132014-04-14 20:24:28 +03006229 mutex_unlock(&dev->struct_mutex);
Deepak S38807742014-05-23 21:00:15 +05306230 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006231 /*
6232 * PCU communication is slow and this doesn't need to be
6233 * done at any specific time, so do this out of our fast path
6234 * to make resume and init faster.
Imre Deakc6df39b2014-04-14 20:24:29 +03006235 *
6236 * We depend on the HW RC6 power context save/restore
6237 * mechanism when entering D3 through runtime PM suspend. So
6238 * disable RPM until RPS/RC6 is properly setup. We can only
6239 * get here via the driver load/system resume/runtime resume
6240 * paths, so the _noresume version is enough (and in case of
6241 * runtime resume it's necessary).
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006242 */
Imre Deakc6df39b2014-04-14 20:24:29 +03006243 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
6244 round_jiffies_up_relative(HZ)))
6245 intel_runtime_pm_get_noresume(dev_priv);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006246 }
6247}
6248
Imre Deakc6df39b2014-04-14 20:24:29 +03006249void intel_reset_gt_powersave(struct drm_device *dev)
6250{
6251 struct drm_i915_private *dev_priv = dev->dev_private;
6252
Imre Deakdbea3ce2014-12-15 18:59:28 +02006253 if (INTEL_INFO(dev)->gen < 6)
6254 return;
6255
6256 gen6_suspend_rps(dev);
Imre Deakc6df39b2014-04-14 20:24:29 +03006257 dev_priv->rps.enabled = false;
Imre Deakc6df39b2014-04-14 20:24:29 +03006258}
6259
Daniel Vetter3107bd42012-10-31 22:52:31 +01006260static void ibx_init_clock_gating(struct drm_device *dev)
6261{
6262 struct drm_i915_private *dev_priv = dev->dev_private;
6263
6264 /*
6265 * On Ibex Peak and Cougar Point, we need to disable clock
6266 * gating for the panel power sequencer or it will fail to
6267 * start up when no ports are active.
6268 */
6269 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6270}
6271
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006272static void g4x_disable_trickle_feed(struct drm_device *dev)
6273{
6274 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006275 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006276
Damien Lespiau055e3932014-08-18 13:49:10 +01006277 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006278 I915_WRITE(DSPCNTR(pipe),
6279 I915_READ(DSPCNTR(pipe)) |
6280 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006281
6282 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6283 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006284 }
6285}
6286
Ville Syrjälä017636c2013-12-05 15:51:37 +02006287static void ilk_init_lp_watermarks(struct drm_device *dev)
6288{
6289 struct drm_i915_private *dev_priv = dev->dev_private;
6290
6291 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6292 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6293 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6294
6295 /*
6296 * Don't touch WM1S_LP_EN here.
6297 * Doing so could cause underruns.
6298 */
6299}
6300
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006301static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006302{
6303 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006304 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006305
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006306 /*
6307 * Required for FBC
6308 * WaFbcDisableDpfcClockGating:ilk
6309 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006310 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6311 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6312 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006313
6314 I915_WRITE(PCH_3DCGDIS0,
6315 MARIUNIT_CLOCK_GATE_DISABLE |
6316 SVSMUNIT_CLOCK_GATE_DISABLE);
6317 I915_WRITE(PCH_3DCGDIS1,
6318 VFMUNIT_CLOCK_GATE_DISABLE);
6319
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006320 /*
6321 * According to the spec the following bits should be set in
6322 * order to enable memory self-refresh
6323 * The bit 22/21 of 0x42004
6324 * The bit 5 of 0x42020
6325 * The bit 15 of 0x45000
6326 */
6327 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6328 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6329 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006330 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006331 I915_WRITE(DISP_ARB_CTL,
6332 (I915_READ(DISP_ARB_CTL) |
6333 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006334
6335 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006336
6337 /*
6338 * Based on the document from hardware guys the following bits
6339 * should be set unconditionally in order to enable FBC.
6340 * The bit 22 of 0x42000
6341 * The bit 22 of 0x42004
6342 * The bit 7,8,9 of 0x42020.
6343 */
6344 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006345 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006346 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6347 I915_READ(ILK_DISPLAY_CHICKEN1) |
6348 ILK_FBCQ_DIS);
6349 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6350 I915_READ(ILK_DISPLAY_CHICKEN2) |
6351 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006352 }
6353
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006354 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6355
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006356 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6357 I915_READ(ILK_DISPLAY_CHICKEN2) |
6358 ILK_ELPIN_409_SELECT);
6359 I915_WRITE(_3D_CHICKEN2,
6360 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6361 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006362
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006363 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006364 I915_WRITE(CACHE_MODE_0,
6365 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006366
Akash Goel4e046322014-04-04 17:14:38 +05306367 /* WaDisable_RenderCache_OperationalFlush:ilk */
6368 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6369
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006370 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006371
Daniel Vetter3107bd42012-10-31 22:52:31 +01006372 ibx_init_clock_gating(dev);
6373}
6374
6375static void cpt_init_clock_gating(struct drm_device *dev)
6376{
6377 struct drm_i915_private *dev_priv = dev->dev_private;
6378 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006379 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006380
6381 /*
6382 * On Ibex Peak and Cougar Point, we need to disable clock
6383 * gating for the panel power sequencer or it will fail to
6384 * start up when no ports are active.
6385 */
Jesse Barnescd664072013-10-02 10:34:19 -07006386 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6387 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6388 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006389 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6390 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006391 /* The below fixes the weird display corruption, a few pixels shifted
6392 * downward, on (only) LVDS of some HP laptops with IVY.
6393 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006394 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006395 val = I915_READ(TRANS_CHICKEN2(pipe));
6396 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6397 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006398 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006399 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006400 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6401 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6402 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006403 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6404 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006405 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006406 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006407 I915_WRITE(TRANS_CHICKEN1(pipe),
6408 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6409 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006410}
6411
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006412static void gen6_check_mch_setup(struct drm_device *dev)
6413{
6414 struct drm_i915_private *dev_priv = dev->dev_private;
6415 uint32_t tmp;
6416
6417 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006418 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6419 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6420 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006421}
6422
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006423static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006424{
6425 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006426 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006427
Damien Lespiau231e54f2012-10-19 17:55:41 +01006428 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006429
6430 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6431 I915_READ(ILK_DISPLAY_CHICKEN2) |
6432 ILK_ELPIN_409_SELECT);
6433
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006434 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006435 I915_WRITE(_3D_CHICKEN,
6436 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6437
Akash Goel4e046322014-04-04 17:14:38 +05306438 /* WaDisable_RenderCache_OperationalFlush:snb */
6439 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6440
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006441 /*
6442 * BSpec recoomends 8x4 when MSAA is used,
6443 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006444 *
6445 * Note that PS/WM thread counts depend on the WIZ hashing
6446 * disable bit, which we don't touch here, but it's good
6447 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006448 */
6449 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006450 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006451
Ville Syrjälä017636c2013-12-05 15:51:37 +02006452 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006453
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006454 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006455 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006456
6457 I915_WRITE(GEN6_UCGCTL1,
6458 I915_READ(GEN6_UCGCTL1) |
6459 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6460 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6461
6462 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6463 * gating disable must be set. Failure to set it results in
6464 * flickering pixels due to Z write ordering failures after
6465 * some amount of runtime in the Mesa "fire" demo, and Unigine
6466 * Sanctuary and Tropics, and apparently anything else with
6467 * alpha test or pixel discard.
6468 *
6469 * According to the spec, bit 11 (RCCUNIT) must also be set,
6470 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006471 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006472 * WaDisableRCCUnitClockGating:snb
6473 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006474 */
6475 I915_WRITE(GEN6_UCGCTL2,
6476 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6477 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6478
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006479 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006480 I915_WRITE(_3D_CHICKEN3,
6481 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006482
6483 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006484 * Bspec says:
6485 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6486 * 3DSTATE_SF number of SF output attributes is more than 16."
6487 */
6488 I915_WRITE(_3D_CHICKEN3,
6489 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6490
6491 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006492 * According to the spec the following bits should be
6493 * set in order to enable memory self-refresh and fbc:
6494 * The bit21 and bit22 of 0x42000
6495 * The bit21 and bit22 of 0x42004
6496 * The bit5 and bit7 of 0x42020
6497 * The bit14 of 0x70180
6498 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006499 *
6500 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006501 */
6502 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6503 I915_READ(ILK_DISPLAY_CHICKEN1) |
6504 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6505 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6506 I915_READ(ILK_DISPLAY_CHICKEN2) |
6507 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006508 I915_WRITE(ILK_DSPCLK_GATE_D,
6509 I915_READ(ILK_DSPCLK_GATE_D) |
6510 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6511 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006512
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006513 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006514
Daniel Vetter3107bd42012-10-31 22:52:31 +01006515 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006516
6517 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006518}
6519
6520static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6521{
6522 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
6523
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006524 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006525 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006526 *
6527 * This actually overrides the dispatch
6528 * mode for all thread types.
6529 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006530 reg &= ~GEN7_FF_SCHED_MASK;
6531 reg |= GEN7_FF_TS_SCHED_HW;
6532 reg |= GEN7_FF_VS_SCHED_HW;
6533 reg |= GEN7_FF_DS_SCHED_HW;
6534
6535 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6536}
6537
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006538static void lpt_init_clock_gating(struct drm_device *dev)
6539{
6540 struct drm_i915_private *dev_priv = dev->dev_private;
6541
6542 /*
6543 * TODO: this bit should only be enabled when really needed, then
6544 * disabled when not needed anymore in order to save power.
6545 */
6546 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
6547 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6548 I915_READ(SOUTH_DSPCLK_GATE_D) |
6549 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006550
6551 /* WADPOClockGatingDisable:hsw */
6552 I915_WRITE(_TRANSA_CHICKEN1,
6553 I915_READ(_TRANSA_CHICKEN1) |
6554 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006555}
6556
Imre Deak7d708ee2013-04-17 14:04:50 +03006557static void lpt_suspend_hw(struct drm_device *dev)
6558{
6559 struct drm_i915_private *dev_priv = dev->dev_private;
6560
6561 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
6562 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
6563
6564 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6565 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6566 }
6567}
6568
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006569static void broadwell_init_clock_gating(struct drm_device *dev)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006570{
6571 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00006572 enum pipe pipe;
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006573 uint32_t misccpctl;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006574
Ville Syrjälä7ad0dba2015-05-19 20:32:55 +03006575 ilk_init_lp_watermarks(dev);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006576
Ben Widawskyab57fff2013-12-12 15:28:04 -08006577 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006578 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006579
Ben Widawskyab57fff2013-12-12 15:28:04 -08006580 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006581 I915_WRITE(CHICKEN_PAR1_1,
6582 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6583
Ben Widawskyab57fff2013-12-12 15:28:04 -08006584 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006585 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006586 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006587 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006588 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006589 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006590
Ben Widawskyab57fff2013-12-12 15:28:04 -08006591 /* WaVSRefCountFullforceMissDisable:bdw */
6592 /* WaDSRefCountFullforceMissDisable:bdw */
6593 I915_WRITE(GEN7_FF_THREAD_MODE,
6594 I915_READ(GEN7_FF_THREAD_MODE) &
6595 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006596
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006597 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6598 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006599
6600 /* WaDisableSDEUnitClockGating:bdw */
6601 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6602 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006603
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006604 /*
6605 * WaProgramL3SqcReg1Default:bdw
6606 * WaTempDisableDOPClkGating:bdw
6607 */
6608 misccpctl = I915_READ(GEN7_MISCCPCTL);
6609 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6610 I915_WRITE(GEN8_L3SQCREG1, BDW_WA_L3SQCREG1_DEFAULT);
6611 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6612
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006613 /*
6614 * WaGttCachingOffByDefault:bdw
6615 * GTT cache may not work with big pages, so if those
6616 * are ever enabled GTT cache may need to be disabled.
6617 */
6618 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
6619
Paulo Zanoni89d6b2b2014-08-21 17:09:36 -03006620 lpt_init_clock_gating(dev);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006621}
6622
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006623static void haswell_init_clock_gating(struct drm_device *dev)
6624{
6625 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006626
Ville Syrjälä017636c2013-12-05 15:51:37 +02006627 ilk_init_lp_watermarks(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006628
Francisco Jerezf3fc4882013-10-02 15:53:16 -07006629 /* L3 caching of data atomics doesn't work -- disable it. */
6630 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6631 I915_WRITE(HSW_ROW_CHICKEN3,
6632 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6633
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006634 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006635 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6636 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6637 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6638
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02006639 /* WaVSRefCountFullforceMissDisable:hsw */
6640 I915_WRITE(GEN7_FF_THREAD_MODE,
6641 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006642
Akash Goel4e046322014-04-04 17:14:38 +05306643 /* WaDisable_RenderCache_OperationalFlush:hsw */
6644 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6645
Chia-I Wufe27c602014-01-28 13:29:33 +08006646 /* enable HiZ Raw Stall Optimization */
6647 I915_WRITE(CACHE_MODE_0_GEN7,
6648 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6649
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006650 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006651 I915_WRITE(CACHE_MODE_1,
6652 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006653
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006654 /*
6655 * BSpec recommends 8x4 when MSAA is used,
6656 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006657 *
6658 * Note that PS/WM thread counts depend on the WIZ hashing
6659 * disable bit, which we don't touch here, but it's good
6660 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006661 */
6662 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006663 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006664
Kenneth Graunke94411592014-12-31 16:23:00 -08006665 /* WaSampleCChickenBitEnable:hsw */
6666 I915_WRITE(HALF_SLICE_CHICKEN3,
6667 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
6668
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006669 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07006670 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
6671
Paulo Zanoni90a88642013-05-03 17:23:45 -03006672 /* WaRsPkgCStateDisplayPMReq:hsw */
6673 I915_WRITE(CHICKEN_PAR1_1,
6674 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006675
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006676 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006677}
6678
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006679static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006680{
6681 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07006682 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006683
Ville Syrjälä017636c2013-12-05 15:51:37 +02006684 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006685
Damien Lespiau231e54f2012-10-19 17:55:41 +01006686 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006687
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006688 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05006689 I915_WRITE(_3D_CHICKEN3,
6690 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6691
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006692 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006693 I915_WRITE(IVB_CHICKEN3,
6694 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6695 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6696
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006697 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07006698 if (IS_IVB_GT1(dev))
6699 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
6700 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006701
Akash Goel4e046322014-04-04 17:14:38 +05306702 /* WaDisable_RenderCache_OperationalFlush:ivb */
6703 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6704
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006705 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006706 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
6707 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
6708
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006709 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006710 I915_WRITE(GEN7_L3CNTLREG1,
6711 GEN7_WA_FOR_GEN7_L3_CONTROL);
6712 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07006713 GEN7_WA_L3_CHICKEN_MODE);
6714 if (IS_IVB_GT1(dev))
6715 I915_WRITE(GEN7_ROW_CHICKEN2,
6716 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006717 else {
6718 /* must write both registers */
6719 I915_WRITE(GEN7_ROW_CHICKEN2,
6720 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07006721 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
6722 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006723 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006724
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006725 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05006726 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6727 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6728
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02006729 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006730 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006731 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006732 */
6733 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02006734 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006735
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006736 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006737 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6738 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6739 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6740
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006741 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006742
6743 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02006744
Chris Wilson22721342014-03-04 09:41:43 +00006745 if (0) { /* causes HiZ corruption on ivb:gt1 */
6746 /* enable HiZ Raw Stall Optimization */
6747 I915_WRITE(CACHE_MODE_0_GEN7,
6748 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6749 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08006750
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006751 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02006752 I915_WRITE(CACHE_MODE_1,
6753 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07006754
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006755 /*
6756 * BSpec recommends 8x4 when MSAA is used,
6757 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006758 *
6759 * Note that PS/WM thread counts depend on the WIZ hashing
6760 * disable bit, which we don't touch here, but it's good
6761 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006762 */
6763 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006764 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006765
Ben Widawsky20848222012-05-04 18:58:59 -07006766 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
6767 snpcr &= ~GEN6_MBC_SNPCR_MASK;
6768 snpcr |= GEN6_MBC_SNPCR_MED;
6769 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006770
Ben Widawskyab5c6082013-04-05 13:12:41 -07006771 if (!HAS_PCH_NOP(dev))
6772 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006773
6774 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006775}
6776
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006777static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv)
6778{
6779 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6780
6781 /*
6782 * Disable trickle feed and enable pnd deadline calculation
6783 */
6784 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
6785 I915_WRITE(CBR1_VLV, 0);
6786}
6787
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006788static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006789{
6790 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006791
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006792 vlv_init_display_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006793
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006794 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05006795 I915_WRITE(_3D_CHICKEN3,
6796 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6797
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006798 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006799 I915_WRITE(IVB_CHICKEN3,
6800 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6801 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6802
Ville Syrjäläfad7d362014-01-22 21:32:39 +02006803 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006804 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07006805 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08006806 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
6807 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006808
Akash Goel4e046322014-04-04 17:14:38 +05306809 /* WaDisable_RenderCache_OperationalFlush:vlv */
6810 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6811
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006812 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05006813 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6814 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6815
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006816 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07006817 I915_WRITE(GEN7_ROW_CHICKEN2,
6818 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
6819
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006820 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006821 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6822 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6823 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6824
Ville Syrjälä46680e02014-01-22 21:33:01 +02006825 gen7_setup_fixed_func_scheduler(dev_priv);
6826
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006827 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006828 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006829 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006830 */
6831 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006832 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006833
Akash Goelc98f5062014-03-24 23:00:07 +05306834 /* WaDisableL3Bank2xClockGate:vlv
6835 * Disabling L3 clock gating- MMIO 940c[25] = 1
6836 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
6837 I915_WRITE(GEN7_UCGCTL4,
6838 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07006839
Ville Syrjäläafd58e72014-01-22 21:33:03 +02006840 /*
6841 * BSpec says this must be set, even though
6842 * WaDisable4x2SubspanOptimization isn't listed for VLV.
6843 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02006844 I915_WRITE(CACHE_MODE_1,
6845 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07006846
6847 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02006848 * BSpec recommends 8x4 when MSAA is used,
6849 * however in practice 16x4 seems fastest.
6850 *
6851 * Note that PS/WM thread counts depend on the WIZ hashing
6852 * disable bit, which we don't touch here, but it's good
6853 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
6854 */
6855 I915_WRITE(GEN7_GT_MODE,
6856 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
6857
6858 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02006859 * WaIncreaseL3CreditsForVLVB0:vlv
6860 * This is the hardware default actually.
6861 */
6862 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
6863
6864 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006865 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07006866 * Disable clock gating on th GCFG unit to prevent a delay
6867 * in the reporting of vblank events.
6868 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02006869 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006870}
6871
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006872static void cherryview_init_clock_gating(struct drm_device *dev)
6873{
6874 struct drm_i915_private *dev_priv = dev->dev_private;
6875
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006876 vlv_init_display_clock_gating(dev_priv);
Ville Syrjälädd811e72014-04-09 13:28:33 +03006877
Ville Syrjälä232ce332014-04-09 13:28:35 +03006878 /* WaVSRefCountFullforceMissDisable:chv */
6879 /* WaDSRefCountFullforceMissDisable:chv */
6880 I915_WRITE(GEN7_FF_THREAD_MODE,
6881 I915_READ(GEN7_FF_THREAD_MODE) &
6882 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03006883
6884 /* WaDisableSemaphoreAndSyncFlipWait:chv */
6885 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6886 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03006887
6888 /* WaDisableCSUnitClockGating:chv */
6889 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
6890 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03006891
6892 /* WaDisableSDEUnitClockGating:chv */
6893 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6894 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006895
6896 /*
6897 * GTT cache may not work with big pages, so if those
6898 * are ever enabled GTT cache may need to be disabled.
6899 */
6900 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006901}
6902
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006903static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006904{
6905 struct drm_i915_private *dev_priv = dev->dev_private;
6906 uint32_t dspclk_gate;
6907
6908 I915_WRITE(RENCLK_GATE_D1, 0);
6909 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6910 GS_UNIT_CLOCK_GATE_DISABLE |
6911 CL_UNIT_CLOCK_GATE_DISABLE);
6912 I915_WRITE(RAMCLK_GATE_D, 0);
6913 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6914 OVRUNIT_CLOCK_GATE_DISABLE |
6915 OVCUNIT_CLOCK_GATE_DISABLE;
6916 if (IS_GM45(dev))
6917 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
6918 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02006919
6920 /* WaDisableRenderCachePipelinedFlush */
6921 I915_WRITE(CACHE_MODE_0,
6922 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03006923
Akash Goel4e046322014-04-04 17:14:38 +05306924 /* WaDisable_RenderCache_OperationalFlush:g4x */
6925 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6926
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006927 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006928}
6929
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006930static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006931{
6932 struct drm_i915_private *dev_priv = dev->dev_private;
6933
6934 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
6935 I915_WRITE(RENCLK_GATE_D2, 0);
6936 I915_WRITE(DSPCLK_GATE_D, 0);
6937 I915_WRITE(RAMCLK_GATE_D, 0);
6938 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006939 I915_WRITE(MI_ARB_STATE,
6940 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306941
6942 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6943 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006944}
6945
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006946static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006947{
6948 struct drm_i915_private *dev_priv = dev->dev_private;
6949
6950 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
6951 I965_RCC_CLOCK_GATE_DISABLE |
6952 I965_RCPB_CLOCK_GATE_DISABLE |
6953 I965_ISC_CLOCK_GATE_DISABLE |
6954 I965_FBC_CLOCK_GATE_DISABLE);
6955 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006956 I915_WRITE(MI_ARB_STATE,
6957 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306958
6959 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6960 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006961}
6962
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006963static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006964{
6965 struct drm_i915_private *dev_priv = dev->dev_private;
6966 u32 dstate = I915_READ(D_STATE);
6967
6968 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
6969 DSTATE_DOT_CLOCK_GATING;
6970 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01006971
6972 if (IS_PINEVIEW(dev))
6973 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02006974
6975 /* IIR "flip pending" means done if this bit is set */
6976 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02006977
6978 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02006979 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02006980
6981 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
6982 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03006983
6984 I915_WRITE(MI_ARB_STATE,
6985 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006986}
6987
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006988static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006989{
6990 struct drm_i915_private *dev_priv = dev->dev_private;
6991
6992 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02006993
6994 /* interrupts should cause a wake up from C3 */
6995 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
6996 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03006997
6998 I915_WRITE(MEM_MODE,
6999 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007000}
7001
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007002static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007003{
7004 struct drm_i915_private *dev_priv = dev->dev_private;
7005
7006 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03007007
7008 I915_WRITE(MEM_MODE,
7009 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7010 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007011}
7012
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007013void intel_init_clock_gating(struct drm_device *dev)
7014{
7015 struct drm_i915_private *dev_priv = dev->dev_private;
7016
Damien Lespiauc57e3552015-02-09 19:33:05 +00007017 if (dev_priv->display.init_clock_gating)
7018 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007019}
7020
Imre Deak7d708ee2013-04-17 14:04:50 +03007021void intel_suspend_hw(struct drm_device *dev)
7022{
7023 if (HAS_PCH_LPT(dev))
7024 lpt_suspend_hw(dev);
7025}
7026
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007027/* Set up chip specific power management-related functions */
7028void intel_init_pm(struct drm_device *dev)
7029{
7030 struct drm_i915_private *dev_priv = dev->dev_private;
7031
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007032 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007033
Daniel Vetterc921aba2012-04-26 23:28:17 +02007034 /* For cxsr */
7035 if (IS_PINEVIEW(dev))
7036 i915_pineview_get_mem_freq(dev);
7037 else if (IS_GEN5(dev))
7038 i915_ironlake_get_mem_freq(dev);
7039
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007040 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00007041 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00007042 skl_setup_wm_latency(dev);
7043
Imre Deaka82abe42015-03-27 14:00:04 +02007044 if (IS_BROXTON(dev))
7045 dev_priv->display.init_clock_gating =
7046 bxt_init_clock_gating;
7047 else if (IS_SKYLAKE(dev))
7048 dev_priv->display.init_clock_gating =
7049 skl_init_clock_gating;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00007050 dev_priv->display.update_wm = skl_update_wm;
7051 dev_priv->display.update_sprite_wm = skl_update_sprite_wm;
Damien Lespiauc83155a2014-03-28 00:18:35 +05307052 } else if (HAS_PCH_SPLIT(dev)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00007053 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007054
Ville Syrjäläbd602542014-01-07 16:14:10 +02007055 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
7056 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
7057 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
7058 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
7059 dev_priv->display.update_wm = ilk_update_wm;
7060 dev_priv->display.update_sprite_wm = ilk_update_sprite_wm;
7061 } else {
7062 DRM_DEBUG_KMS("Failed to read display plane latency. "
7063 "Disable CxSR\n");
7064 }
7065
7066 if (IS_GEN5(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007067 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007068 else if (IS_GEN6(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007069 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007070 else if (IS_IVYBRIDGE(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007071 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007072 else if (IS_HASWELL(dev))
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007073 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007074 else if (INTEL_INFO(dev)->gen == 8)
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03007075 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007076 } else if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03007077 vlv_setup_wm_latency(dev);
7078
7079 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007080 dev_priv->display.init_clock_gating =
7081 cherryview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007082 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007083 vlv_setup_wm_latency(dev);
7084
7085 dev_priv->display.update_wm = vlv_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007086 dev_priv->display.init_clock_gating =
7087 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007088 } else if (IS_PINEVIEW(dev)) {
7089 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
7090 dev_priv->is_ddr3,
7091 dev_priv->fsb_freq,
7092 dev_priv->mem_freq)) {
7093 DRM_INFO("failed to find known CxSR latency "
7094 "(found ddr%s fsb freq %d, mem freq %d), "
7095 "disabling CxSR\n",
7096 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7097 dev_priv->fsb_freq, dev_priv->mem_freq);
7098 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007099 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007100 dev_priv->display.update_wm = NULL;
7101 } else
7102 dev_priv->display.update_wm = pineview_update_wm;
7103 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7104 } else if (IS_G4X(dev)) {
7105 dev_priv->display.update_wm = g4x_update_wm;
7106 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
7107 } else if (IS_GEN4(dev)) {
7108 dev_priv->display.update_wm = i965_update_wm;
7109 if (IS_CRESTLINE(dev))
7110 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
7111 else if (IS_BROADWATER(dev))
7112 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7113 } else if (IS_GEN3(dev)) {
7114 dev_priv->display.update_wm = i9xx_update_wm;
7115 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
7116 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007117 } else if (IS_GEN2(dev)) {
7118 if (INTEL_INFO(dev)->num_pipes == 1) {
7119 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007120 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007121 } else {
7122 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007123 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007124 }
7125
7126 if (IS_I85X(dev) || IS_I865G(dev))
7127 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7128 else
7129 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7130 } else {
7131 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007132 }
7133}
7134
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007135int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007136{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007137 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007138
7139 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7140 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7141 return -EAGAIN;
7142 }
7143
7144 I915_WRITE(GEN6_PCODE_DATA, *val);
Damien Lespiaudddab342014-11-13 17:51:50 +00007145 I915_WRITE(GEN6_PCODE_DATA1, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007146 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7147
7148 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7149 500)) {
7150 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7151 return -ETIMEDOUT;
7152 }
7153
7154 *val = I915_READ(GEN6_PCODE_DATA);
7155 I915_WRITE(GEN6_PCODE_DATA, 0);
7156
7157 return 0;
7158}
7159
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007160int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007161{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007162 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007163
7164 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7165 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7166 return -EAGAIN;
7167 }
7168
7169 I915_WRITE(GEN6_PCODE_DATA, val);
7170 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7171
7172 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7173 500)) {
7174 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7175 return -ETIMEDOUT;
7176 }
7177
7178 I915_WRITE(GEN6_PCODE_DATA, 0);
7179
7180 return 0;
7181}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007182
Ville Syrjälädd06f882014-11-10 22:55:12 +02007183static int vlv_gpu_freq_div(unsigned int czclk_freq)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007184{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007185 switch (czclk_freq) {
7186 case 200:
7187 return 10;
7188 case 267:
7189 return 12;
7190 case 320:
7191 case 333:
Ville Syrjälädd06f882014-11-10 22:55:12 +02007192 return 16;
Ville Syrjäläab3fb152014-11-10 22:55:15 +02007193 case 400:
7194 return 20;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007195 default:
7196 return -1;
7197 }
Ville Syrjälädd06f882014-11-10 22:55:12 +02007198}
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007199
Ville Syrjälädd06f882014-11-10 22:55:12 +02007200static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7201{
7202 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
7203
7204 div = vlv_gpu_freq_div(czclk_freq);
7205 if (div < 0)
7206 return div;
7207
7208 return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007209}
7210
Fengguang Wub55dd642014-07-12 11:21:39 +02007211static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007212{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007213 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007214
Ville Syrjälädd06f882014-11-10 22:55:12 +02007215 mul = vlv_gpu_freq_div(czclk_freq);
7216 if (mul < 0)
7217 return mul;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007218
Ville Syrjälädd06f882014-11-10 22:55:12 +02007219 return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007220}
7221
Fengguang Wub55dd642014-07-12 11:21:39 +02007222static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307223{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007224 int div, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05307225
Ville Syrjälädd06f882014-11-10 22:55:12 +02007226 div = vlv_gpu_freq_div(czclk_freq) / 2;
7227 if (div < 0)
7228 return div;
Deepak S22b1b2f2014-07-12 14:54:33 +05307229
Ville Syrjälädd06f882014-11-10 22:55:12 +02007230 return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307231}
7232
Fengguang Wub55dd642014-07-12 11:21:39 +02007233static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307234{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007235 int mul, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05307236
Ville Syrjälädd06f882014-11-10 22:55:12 +02007237 mul = vlv_gpu_freq_div(czclk_freq) / 2;
7238 if (mul < 0)
7239 return mul;
Deepak S22b1b2f2014-07-12 14:54:33 +05307240
Ville Syrjälä1c147622014-08-18 14:42:43 +03007241 /* CHV needs even values */
Ville Syrjälädd06f882014-11-10 22:55:12 +02007242 return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307243}
7244
Ville Syrjälä616bc822015-01-23 21:04:25 +02007245int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7246{
Akash Goel80b6dda2015-03-06 11:07:15 +05307247 if (IS_GEN9(dev_priv->dev))
7248 return (val * GT_FREQUENCY_MULTIPLIER) / GEN9_FREQ_SCALER;
7249 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007250 return chv_gpu_freq(dev_priv, val);
7251 else if (IS_VALLEYVIEW(dev_priv->dev))
7252 return byt_gpu_freq(dev_priv, val);
7253 else
7254 return val * GT_FREQUENCY_MULTIPLIER;
7255}
7256
Ville Syrjälä616bc822015-01-23 21:04:25 +02007257int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7258{
Akash Goel80b6dda2015-03-06 11:07:15 +05307259 if (IS_GEN9(dev_priv->dev))
7260 return (val * GEN9_FREQ_SCALER) / GT_FREQUENCY_MULTIPLIER;
7261 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007262 return chv_freq_opcode(dev_priv, val);
Deepak S22b1b2f2014-07-12 14:54:33 +05307263 else if (IS_VALLEYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007264 return byt_freq_opcode(dev_priv, val);
7265 else
7266 return val / GT_FREQUENCY_MULTIPLIER;
Deepak S22b1b2f2014-07-12 14:54:33 +05307267}
7268
Chris Wilson6ad790c2015-04-07 16:20:31 +01007269struct request_boost {
7270 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02007271 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007272};
7273
7274static void __intel_rps_boost_work(struct work_struct *work)
7275{
7276 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01007277 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007278
Chris Wilsone61b9952015-04-27 13:41:24 +01007279 if (!i915_gem_request_completed(req, true))
7280 gen6_rps_boost(to_i915(req->ring->dev), NULL,
7281 req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007282
Chris Wilsone61b9952015-04-27 13:41:24 +01007283 i915_gem_request_unreference__unlocked(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007284 kfree(boost);
7285}
7286
7287void intel_queue_rps_boost_for_request(struct drm_device *dev,
Daniel Vettereed29a52015-05-21 14:21:25 +02007288 struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007289{
7290 struct request_boost *boost;
7291
Daniel Vettereed29a52015-05-21 14:21:25 +02007292 if (req == NULL || INTEL_INFO(dev)->gen < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007293 return;
7294
Chris Wilsone61b9952015-04-27 13:41:24 +01007295 if (i915_gem_request_completed(req, true))
7296 return;
7297
Chris Wilson6ad790c2015-04-07 16:20:31 +01007298 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
7299 if (boost == NULL)
7300 return;
7301
Daniel Vettereed29a52015-05-21 14:21:25 +02007302 i915_gem_request_reference(req);
7303 boost->req = req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007304
7305 INIT_WORK(&boost->work, __intel_rps_boost_work);
7306 queue_work(to_i915(dev)->wq, &boost->work);
7307}
7308
Daniel Vetterf742a552013-12-06 10:17:53 +01007309void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01007310{
7311 struct drm_i915_private *dev_priv = dev->dev_private;
7312
Daniel Vetterf742a552013-12-06 10:17:53 +01007313 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01007314 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01007315
Chris Wilson907b28c2013-07-19 20:36:52 +01007316 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
7317 intel_gen6_powersave_work);
Chris Wilson1854d5c2015-04-07 16:20:32 +01007318 INIT_LIST_HEAD(&dev_priv->rps.clients);
Chris Wilson2e1b8732015-04-27 13:41:22 +01007319 INIT_LIST_HEAD(&dev_priv->rps.semaphores.link);
7320 INIT_LIST_HEAD(&dev_priv->rps.mmioflips.link);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03007321
Paulo Zanoni33688d92014-03-07 20:08:19 -03007322 dev_priv->pm.suspended = false;
Chris Wilson907b28c2013-07-19 20:36:52 +01007323}