blob: 8ea4768dcf10c7a7f889265666a7fc832071244a [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äcfb41412015-03-05 21:19:51 +0200338 if (IS_CHERRYVIEW(dev))
339 chv_set_memory_pm5(dev_priv, enable);
Imre Deak5209b1f2014-07-01 12:36:17 +0300340 } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) {
341 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300342 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300343 } else if (IS_PINEVIEW(dev)) {
344 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
345 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
346 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300347 POSTING_READ(DSPFW3);
Imre Deak5209b1f2014-07-01 12:36:17 +0300348 } else if (IS_I945G(dev) || IS_I945GM(dev)) {
349 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
350 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
351 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300352 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300353 } else if (IS_I915GM(dev)) {
354 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
355 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
356 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300357 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300358 } else {
359 return;
360 }
361
362 DRM_DEBUG_KMS("memory self-refresh is %s\n",
363 enable ? "enabled" : "disabled");
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300364}
365
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200366
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300367/*
368 * Latency for FIFO fetches is dependent on several factors:
369 * - memory configuration (speed, channels)
370 * - chipset
371 * - current MCH state
372 * It can be fairly high in some situations, so here we assume a fairly
373 * pessimal value. It's a tradeoff between extra memory fetches (if we
374 * set this value too high, the FIFO will fetch frequently to stay full)
375 * and power consumption (set it too low to save power and we might see
376 * FIFO underruns and display "flicker").
377 *
378 * A value of 5us seems to be a good balance; safe for very low end
379 * platforms but not overly aggressive on lower latency configs.
380 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100381static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300382
Ville Syrjäläb5004722015-03-05 21:19:47 +0200383#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
384 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
385
386static int vlv_get_fifo_size(struct drm_device *dev,
387 enum pipe pipe, int plane)
388{
389 struct drm_i915_private *dev_priv = dev->dev_private;
390 int sprite0_start, sprite1_start, size;
391
392 switch (pipe) {
393 uint32_t dsparb, dsparb2, dsparb3;
394 case PIPE_A:
395 dsparb = I915_READ(DSPARB);
396 dsparb2 = I915_READ(DSPARB2);
397 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
398 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
399 break;
400 case PIPE_B:
401 dsparb = I915_READ(DSPARB);
402 dsparb2 = I915_READ(DSPARB2);
403 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
404 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
405 break;
406 case PIPE_C:
407 dsparb2 = I915_READ(DSPARB2);
408 dsparb3 = I915_READ(DSPARB3);
409 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
410 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
411 break;
412 default:
413 return 0;
414 }
415
416 switch (plane) {
417 case 0:
418 size = sprite0_start;
419 break;
420 case 1:
421 size = sprite1_start - sprite0_start;
422 break;
423 case 2:
424 size = 512 - 1 - sprite1_start;
425 break;
426 default:
427 return 0;
428 }
429
430 DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n",
431 pipe_name(pipe), plane == 0 ? "primary" : "sprite",
432 plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1),
433 size);
434
435 return size;
436}
437
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300438static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300439{
440 struct drm_i915_private *dev_priv = dev->dev_private;
441 uint32_t dsparb = I915_READ(DSPARB);
442 int size;
443
444 size = dsparb & 0x7f;
445 if (plane)
446 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
447
448 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
449 plane ? "B" : "A", size);
450
451 return size;
452}
453
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200454static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300455{
456 struct drm_i915_private *dev_priv = dev->dev_private;
457 uint32_t dsparb = I915_READ(DSPARB);
458 int size;
459
460 size = dsparb & 0x1ff;
461 if (plane)
462 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
463 size >>= 1; /* Convert to cachelines */
464
465 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
466 plane ? "B" : "A", size);
467
468 return size;
469}
470
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300471static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300472{
473 struct drm_i915_private *dev_priv = dev->dev_private;
474 uint32_t dsparb = I915_READ(DSPARB);
475 int size;
476
477 size = dsparb & 0x7f;
478 size >>= 2; /* Convert to cachelines */
479
480 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
481 plane ? "B" : "A",
482 size);
483
484 return size;
485}
486
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300487/* Pineview has different values for various configs */
488static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300489 .fifo_size = PINEVIEW_DISPLAY_FIFO,
490 .max_wm = PINEVIEW_MAX_WM,
491 .default_wm = PINEVIEW_DFT_WM,
492 .guard_size = PINEVIEW_GUARD_WM,
493 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300494};
495static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300496 .fifo_size = PINEVIEW_DISPLAY_FIFO,
497 .max_wm = PINEVIEW_MAX_WM,
498 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
499 .guard_size = PINEVIEW_GUARD_WM,
500 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300501};
502static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300503 .fifo_size = PINEVIEW_CURSOR_FIFO,
504 .max_wm = PINEVIEW_CURSOR_MAX_WM,
505 .default_wm = PINEVIEW_CURSOR_DFT_WM,
506 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
507 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300508};
509static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300510 .fifo_size = PINEVIEW_CURSOR_FIFO,
511 .max_wm = PINEVIEW_CURSOR_MAX_WM,
512 .default_wm = PINEVIEW_CURSOR_DFT_WM,
513 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
514 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300515};
516static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300517 .fifo_size = G4X_FIFO_SIZE,
518 .max_wm = G4X_MAX_WM,
519 .default_wm = G4X_MAX_WM,
520 .guard_size = 2,
521 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300522};
523static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300524 .fifo_size = I965_CURSOR_FIFO,
525 .max_wm = I965_CURSOR_MAX_WM,
526 .default_wm = I965_CURSOR_DFT_WM,
527 .guard_size = 2,
528 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300529};
530static const struct intel_watermark_params valleyview_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300531 .fifo_size = VALLEYVIEW_FIFO_SIZE,
532 .max_wm = VALLEYVIEW_MAX_WM,
533 .default_wm = VALLEYVIEW_MAX_WM,
534 .guard_size = 2,
535 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300536};
537static const struct intel_watermark_params valleyview_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300538 .fifo_size = I965_CURSOR_FIFO,
539 .max_wm = VALLEYVIEW_CURSOR_MAX_WM,
540 .default_wm = I965_CURSOR_DFT_WM,
541 .guard_size = 2,
542 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300543};
544static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300545 .fifo_size = I965_CURSOR_FIFO,
546 .max_wm = I965_CURSOR_MAX_WM,
547 .default_wm = I965_CURSOR_DFT_WM,
548 .guard_size = 2,
549 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300550};
551static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300552 .fifo_size = I945_FIFO_SIZE,
553 .max_wm = I915_MAX_WM,
554 .default_wm = 1,
555 .guard_size = 2,
556 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300557};
558static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300559 .fifo_size = I915_FIFO_SIZE,
560 .max_wm = I915_MAX_WM,
561 .default_wm = 1,
562 .guard_size = 2,
563 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300564};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300565static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300566 .fifo_size = I855GM_FIFO_SIZE,
567 .max_wm = I915_MAX_WM,
568 .default_wm = 1,
569 .guard_size = 2,
570 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300571};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300572static const struct intel_watermark_params i830_bc_wm_info = {
573 .fifo_size = I855GM_FIFO_SIZE,
574 .max_wm = I915_MAX_WM/2,
575 .default_wm = 1,
576 .guard_size = 2,
577 .cacheline_size = I830_FIFO_LINE_SIZE,
578};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200579static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300580 .fifo_size = I830_FIFO_SIZE,
581 .max_wm = I915_MAX_WM,
582 .default_wm = 1,
583 .guard_size = 2,
584 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300585};
586
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300587/**
588 * intel_calculate_wm - calculate watermark level
589 * @clock_in_khz: pixel clock
590 * @wm: chip FIFO params
591 * @pixel_size: display pixel size
592 * @latency_ns: memory latency for the platform
593 *
594 * Calculate the watermark level (the level at which the display plane will
595 * start fetching from memory again). Each chip has a different display
596 * FIFO size and allocation, so the caller needs to figure that out and pass
597 * in the correct intel_watermark_params structure.
598 *
599 * As the pixel clock runs, the FIFO will be drained at a rate that depends
600 * on the pixel size. When it reaches the watermark level, it'll start
601 * fetching FIFO line sized based chunks from memory until the FIFO fills
602 * past the watermark point. If the FIFO drains completely, a FIFO underrun
603 * will occur, and a display engine hang could result.
604 */
605static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
606 const struct intel_watermark_params *wm,
607 int fifo_size,
608 int pixel_size,
609 unsigned long latency_ns)
610{
611 long entries_required, wm_size;
612
613 /*
614 * Note: we need to make sure we don't overflow for various clock &
615 * latency values.
616 * clocks go from a few thousand to several hundred thousand.
617 * latency is usually a few thousand
618 */
619 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
620 1000;
621 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
622
623 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
624
625 wm_size = fifo_size - (entries_required + wm->guard_size);
626
627 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
628
629 /* Don't promote wm_size to unsigned... */
630 if (wm_size > (long)wm->max_wm)
631 wm_size = wm->max_wm;
632 if (wm_size <= 0)
633 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300634
635 /*
636 * Bspec seems to indicate that the value shouldn't be lower than
637 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
638 * Lets go for 8 which is the burst size since certain platforms
639 * already use a hardcoded 8 (which is what the spec says should be
640 * done).
641 */
642 if (wm_size <= 8)
643 wm_size = 8;
644
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300645 return wm_size;
646}
647
648static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
649{
650 struct drm_crtc *crtc, *enabled = NULL;
651
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100652 for_each_crtc(dev, crtc) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000653 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300654 if (enabled)
655 return NULL;
656 enabled = crtc;
657 }
658 }
659
660 return enabled;
661}
662
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300663static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300664{
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300665 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300666 struct drm_i915_private *dev_priv = dev->dev_private;
667 struct drm_crtc *crtc;
668 const struct cxsr_latency *latency;
669 u32 reg;
670 unsigned long wm;
671
672 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
673 dev_priv->fsb_freq, dev_priv->mem_freq);
674 if (!latency) {
675 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300676 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300677 return;
678 }
679
680 crtc = single_enabled_crtc(dev);
681 if (crtc) {
Damien Lespiau241bfc32013-09-25 16:45:37 +0100682 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -0800683 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100684 int clock;
685
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200686 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100687 clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300688
689 /* Display SR */
690 wm = intel_calculate_wm(clock, &pineview_display_wm,
691 pineview_display_wm.fifo_size,
692 pixel_size, latency->display_sr);
693 reg = I915_READ(DSPFW1);
694 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200695 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300696 I915_WRITE(DSPFW1, reg);
697 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
698
699 /* cursor SR */
700 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
701 pineview_display_wm.fifo_size,
702 pixel_size, latency->cursor_sr);
703 reg = I915_READ(DSPFW3);
704 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200705 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300706 I915_WRITE(DSPFW3, reg);
707
708 /* Display HPLL off SR */
709 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
710 pineview_display_hplloff_wm.fifo_size,
711 pixel_size, latency->display_hpll_disable);
712 reg = I915_READ(DSPFW3);
713 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200714 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300715 I915_WRITE(DSPFW3, reg);
716
717 /* cursor HPLL off SR */
718 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
719 pineview_display_hplloff_wm.fifo_size,
720 pixel_size, latency->cursor_hpll_disable);
721 reg = I915_READ(DSPFW3);
722 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200723 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300724 I915_WRITE(DSPFW3, reg);
725 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
726
Imre Deak5209b1f2014-07-01 12:36:17 +0300727 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300728 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300729 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300730 }
731}
732
733static bool g4x_compute_wm0(struct drm_device *dev,
734 int plane,
735 const struct intel_watermark_params *display,
736 int display_latency_ns,
737 const struct intel_watermark_params *cursor,
738 int cursor_latency_ns,
739 int *plane_wm,
740 int *cursor_wm)
741{
742 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300743 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300744 int htotal, hdisplay, clock, pixel_size;
745 int line_time_us, line_count;
746 int entries, tlb_miss;
747
748 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +0000749 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300750 *cursor_wm = cursor->guard_size;
751 *plane_wm = display->guard_size;
752 return false;
753 }
754
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200755 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100756 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800757 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200758 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800759 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300760
761 /* Use the small buffer method to calculate plane watermark */
762 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
763 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
764 if (tlb_miss > 0)
765 entries += tlb_miss;
766 entries = DIV_ROUND_UP(entries, display->cacheline_size);
767 *plane_wm = entries + display->guard_size;
768 if (*plane_wm > (int)display->max_wm)
769 *plane_wm = display->max_wm;
770
771 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200772 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300773 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Matt Roper3dd512f2015-02-27 10:12:00 -0800774 entries = line_count * crtc->cursor->state->crtc_w * pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300775 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
776 if (tlb_miss > 0)
777 entries += tlb_miss;
778 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
779 *cursor_wm = entries + cursor->guard_size;
780 if (*cursor_wm > (int)cursor->max_wm)
781 *cursor_wm = (int)cursor->max_wm;
782
783 return true;
784}
785
786/*
787 * Check the wm result.
788 *
789 * If any calculated watermark values is larger than the maximum value that
790 * can be programmed into the associated watermark register, that watermark
791 * must be disabled.
792 */
793static bool g4x_check_srwm(struct drm_device *dev,
794 int display_wm, int cursor_wm,
795 const struct intel_watermark_params *display,
796 const struct intel_watermark_params *cursor)
797{
798 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
799 display_wm, cursor_wm);
800
801 if (display_wm > display->max_wm) {
802 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
803 display_wm, display->max_wm);
804 return false;
805 }
806
807 if (cursor_wm > cursor->max_wm) {
808 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
809 cursor_wm, cursor->max_wm);
810 return false;
811 }
812
813 if (!(display_wm || cursor_wm)) {
814 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
815 return false;
816 }
817
818 return true;
819}
820
821static bool g4x_compute_srwm(struct drm_device *dev,
822 int plane,
823 int latency_ns,
824 const struct intel_watermark_params *display,
825 const struct intel_watermark_params *cursor,
826 int *display_wm, int *cursor_wm)
827{
828 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300829 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300830 int hdisplay, htotal, pixel_size, clock;
831 unsigned long line_time_us;
832 int line_count, line_size;
833 int small, large;
834 int entries;
835
836 if (!latency_ns) {
837 *display_wm = *cursor_wm = 0;
838 return false;
839 }
840
841 crtc = intel_get_crtc_for_plane(dev, plane);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200842 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100843 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800844 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200845 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800846 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300847
Ville Syrjälä922044c2014-02-14 14:18:57 +0200848 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300849 line_count = (latency_ns / line_time_us + 1000) / 1000;
850 line_size = hdisplay * pixel_size;
851
852 /* Use the minimum of the small and large buffer method for primary */
853 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
854 large = line_count * line_size;
855
856 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
857 *display_wm = entries + display->guard_size;
858
859 /* calculate the self-refresh watermark for display cursor */
Matt Roper3dd512f2015-02-27 10:12:00 -0800860 entries = line_count * pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300861 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
862 *cursor_wm = entries + cursor->guard_size;
863
864 return g4x_check_srwm(dev,
865 *display_wm, *cursor_wm,
866 display, cursor);
867}
868
Ville Syrjälä15665972015-03-10 16:16:28 +0200869#define FW_WM_VLV(value, plane) \
870 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
871
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200872static void vlv_write_wm_values(struct intel_crtc *crtc,
873 const struct vlv_wm_values *wm)
874{
875 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
876 enum pipe pipe = crtc->pipe;
877
878 I915_WRITE(VLV_DDL(pipe),
879 (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) |
880 (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) |
881 (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) |
882 (wm->ddl[pipe].primary << DDL_PLANE_SHIFT));
883
Ville Syrjäläae801522015-03-05 21:19:49 +0200884 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200885 FW_WM(wm->sr.plane, SR) |
886 FW_WM(wm->pipe[PIPE_B].cursor, CURSORB) |
887 FW_WM_VLV(wm->pipe[PIPE_B].primary, PLANEB) |
888 FW_WM_VLV(wm->pipe[PIPE_A].primary, PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200889 I915_WRITE(DSPFW2,
Ville Syrjälä15665972015-03-10 16:16:28 +0200890 FW_WM_VLV(wm->pipe[PIPE_A].sprite[1], SPRITEB) |
891 FW_WM(wm->pipe[PIPE_A].cursor, CURSORA) |
892 FW_WM_VLV(wm->pipe[PIPE_A].sprite[0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200893 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200894 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200895
896 if (IS_CHERRYVIEW(dev_priv)) {
897 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200898 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
899 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200900 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200901 FW_WM_VLV(wm->pipe[PIPE_C].sprite[1], SPRITEF) |
902 FW_WM_VLV(wm->pipe[PIPE_C].sprite[0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200903 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200904 FW_WM_VLV(wm->pipe[PIPE_C].primary, PLANEC) |
905 FW_WM(wm->pipe[PIPE_C].cursor, CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200906 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200907 FW_WM(wm->sr.plane >> 9, SR_HI) |
908 FW_WM(wm->pipe[PIPE_C].sprite[1] >> 8, SPRITEF_HI) |
909 FW_WM(wm->pipe[PIPE_C].sprite[0] >> 8, SPRITEE_HI) |
910 FW_WM(wm->pipe[PIPE_C].primary >> 8, PLANEC_HI) |
911 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
912 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
913 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
914 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
915 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
916 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200917 } else {
918 I915_WRITE(DSPFW7,
Ville Syrjälä15665972015-03-10 16:16:28 +0200919 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
920 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200921 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200922 FW_WM(wm->sr.plane >> 9, SR_HI) |
923 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
924 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
925 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
926 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
927 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
928 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200929 }
930
931 POSTING_READ(DSPFW1);
932
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200933 dev_priv->wm.vlv = *wm;
934}
935
Ville Syrjälä15665972015-03-10 16:16:28 +0200936#undef FW_WM_VLV
937
Ville Syrjälä341c5262015-03-05 21:19:44 +0200938static uint8_t vlv_compute_drain_latency(struct drm_crtc *crtc,
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200939 struct drm_plane *plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300940{
Rodrigo Vivi5e56ba42014-10-17 08:05:08 -0700941 struct drm_device *dev = crtc->dev;
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200942 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
943 int entries, prec_mult, drain_latency, pixel_size;
944 int clock = intel_crtc->config->base.adjusted_mode.crtc_clock;
Ville Syrjälä341c5262015-03-05 21:19:44 +0200945 const int high_precision = IS_CHERRYVIEW(dev) ? 16 : 64;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300946
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200947 /*
948 * FIXME the plane might have an fb
949 * but be invisible (eg. due to clipping)
950 */
951 if (!intel_crtc->active || !plane->state->fb)
952 return 0;
953
Gajanan Bhat0948c262014-08-07 01:58:24 +0530954 if (WARN(clock == 0, "Pixel clock is zero!\n"))
Ville Syrjälä341c5262015-03-05 21:19:44 +0200955 return 0;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300956
Ville Syrjälä883a3d22015-03-05 21:19:46 +0200957 pixel_size = drm_format_plane_cpp(plane->state->fb->pixel_format, 0);
958
Gajanan Bhat0948c262014-08-07 01:58:24 +0530959 if (WARN(pixel_size == 0, "Pixel size is zero!\n"))
Ville Syrjälä341c5262015-03-05 21:19:44 +0200960 return 0;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300961
Gajanan Bhata398e9c2014-08-05 23:15:54 +0530962 entries = DIV_ROUND_UP(clock, 1000) * pixel_size;
Ville Syrjäläabfc00b2015-03-05 21:19:43 +0200963
Ville Syrjälä341c5262015-03-05 21:19:44 +0200964 prec_mult = high_precision;
965 drain_latency = 64 * prec_mult * 4 / entries;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300966
Ville Syrjälä341c5262015-03-05 21:19:44 +0200967 if (drain_latency > DRAIN_LATENCY_MASK) {
968 prec_mult /= 2;
969 drain_latency = 64 * prec_mult * 4 / entries;
Ville Syrjäläabfc00b2015-03-05 21:19:43 +0200970 }
971
Ville Syrjälä341c5262015-03-05 21:19:44 +0200972 if (drain_latency > DRAIN_LATENCY_MASK)
973 drain_latency = DRAIN_LATENCY_MASK;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300974
Ville Syrjälä341c5262015-03-05 21:19:44 +0200975 return drain_latency | (prec_mult == high_precision ?
976 DDL_PRECISION_HIGH : DDL_PRECISION_LOW);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300977}
978
Ville Syrjäläae801522015-03-05 21:19:49 +0200979static int vlv_compute_wm(struct intel_crtc *crtc,
980 struct intel_plane *plane,
981 int fifo_size)
982{
983 int clock, entries, pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300984
Ville Syrjäläae801522015-03-05 21:19:49 +0200985 /*
986 * FIXME the plane might have an fb
987 * but be invisible (eg. due to clipping)
988 */
989 if (!crtc->active || !plane->base.state->fb)
990 return 0;
991
992 pixel_size = drm_format_plane_cpp(plane->base.state->fb->pixel_format, 0);
993 clock = crtc->config->base.adjusted_mode.crtc_clock;
994
995 entries = DIV_ROUND_UP(clock, 1000) * pixel_size;
996
997 /*
998 * Set up the watermark such that we don't start issuing memory
999 * requests until we are within PND's max deadline value (256us).
1000 * Idea being to be idle as long as possible while still taking
1001 * advatange of PND's deadline scheduling. The limit of 8
1002 * cachelines (used when the FIFO will anyway drain in less time
1003 * than 256us) should match what we would be done if trickle
1004 * feed were enabled.
1005 */
1006 return fifo_size - clamp(DIV_ROUND_UP(256 * entries, 64), 0, fifo_size - 8);
1007}
1008
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03001009enum vlv_wm_level {
1010 VLV_WM_LEVEL_PM2,
1011 VLV_WM_LEVEL_PM5,
1012 VLV_WM_LEVEL_DDR_DVFS,
1013 CHV_WM_NUM_LEVELS,
1014 VLV_WM_NUM_LEVELS = 1,
1015};
1016
Ville Syrjäläae801522015-03-05 21:19:49 +02001017static bool vlv_compute_sr_wm(struct drm_device *dev,
1018 struct vlv_wm_values *wm)
1019{
1020 struct drm_i915_private *dev_priv = to_i915(dev);
1021 struct drm_crtc *crtc;
1022 enum pipe pipe = INVALID_PIPE;
1023 int num_planes = 0;
1024 int fifo_size = 0;
1025 struct intel_plane *plane;
1026
1027 wm->sr.cursor = wm->sr.plane = 0;
1028
1029 crtc = single_enabled_crtc(dev);
1030 /* maxfifo not supported on pipe C */
1031 if (crtc && to_intel_crtc(crtc)->pipe != PIPE_C) {
1032 pipe = to_intel_crtc(crtc)->pipe;
1033 num_planes = !!wm->pipe[pipe].primary +
1034 !!wm->pipe[pipe].sprite[0] +
1035 !!wm->pipe[pipe].sprite[1];
1036 fifo_size = INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
1037 }
1038
1039 if (fifo_size == 0 || num_planes > 1)
1040 return false;
1041
1042 wm->sr.cursor = vlv_compute_wm(to_intel_crtc(crtc),
1043 to_intel_plane(crtc->cursor), 0x3f);
1044
1045 list_for_each_entry(plane, &dev->mode_config.plane_list, base.head) {
1046 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1047 continue;
1048
1049 if (plane->pipe != pipe)
1050 continue;
1051
1052 wm->sr.plane = vlv_compute_wm(to_intel_crtc(crtc),
1053 plane, fifo_size);
1054 if (wm->sr.plane != 0)
1055 break;
1056 }
1057
1058 return true;
1059}
1060
1061static void valleyview_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001062{
Rodrigo Vivi5e56ba42014-10-17 08:05:08 -07001063 struct drm_device *dev = crtc->dev;
1064 struct drm_i915_private *dev_priv = dev->dev_private;
Gajanan Bhat0948c262014-08-07 01:58:24 +05301065 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Gajanan Bhat0948c262014-08-07 01:58:24 +05301066 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläae801522015-03-05 21:19:49 +02001067 bool cxsr_enabled;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001068 struct vlv_wm_values wm = dev_priv->wm.vlv;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001069
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001070 wm.ddl[pipe].primary = vlv_compute_drain_latency(crtc, crtc->primary);
Ville Syrjäläae801522015-03-05 21:19:49 +02001071 wm.pipe[pipe].primary = vlv_compute_wm(intel_crtc,
1072 to_intel_plane(crtc->primary),
1073 vlv_get_fifo_size(dev, pipe, 0));
1074
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001075 wm.ddl[pipe].cursor = vlv_compute_drain_latency(crtc, crtc->cursor);
Ville Syrjäläae801522015-03-05 21:19:49 +02001076 wm.pipe[pipe].cursor = vlv_compute_wm(intel_crtc,
1077 to_intel_plane(crtc->cursor),
1078 0x3f);
1079
1080 cxsr_enabled = vlv_compute_sr_wm(dev, &wm);
1081
1082 if (memcmp(&wm, &dev_priv->wm.vlv, sizeof(wm)) == 0)
1083 return;
1084
1085 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1086 "SR: plane=%d, cursor=%d\n", pipe_name(pipe),
1087 wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1088 wm.sr.plane, wm.sr.cursor);
1089
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +02001090 /*
1091 * FIXME DDR DVFS introduces massive memory latencies which
1092 * are not known to system agent so any deadline specified
1093 * by the display may not be respected. To support DDR DVFS
1094 * the watermark code needs to be rewritten to essentially
1095 * bypass deadline mechanism and rely solely on the
1096 * watermarks. For now disable DDR DVFS.
1097 */
1098 if (IS_CHERRYVIEW(dev_priv))
1099 chv_set_memory_dvfs(dev_priv, false);
1100
Ville Syrjäläae801522015-03-05 21:19:49 +02001101 if (!cxsr_enabled)
1102 intel_set_memory_cxsr(dev_priv, false);
Gajanan Bhat0948c262014-08-07 01:58:24 +05301103
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001104 vlv_write_wm_values(intel_crtc, &wm);
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001105
1106 if (cxsr_enabled)
1107 intel_set_memory_cxsr(dev_priv, true);
1108}
1109
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301110static void valleyview_update_sprite_wm(struct drm_plane *plane,
1111 struct drm_crtc *crtc,
1112 uint32_t sprite_width,
1113 uint32_t sprite_height,
1114 int pixel_size,
1115 bool enabled, bool scaled)
1116{
1117 struct drm_device *dev = crtc->dev;
1118 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001119 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1120 enum pipe pipe = intel_crtc->pipe;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301121 int sprite = to_intel_plane(plane)->plane;
Ville Syrjäläae801522015-03-05 21:19:49 +02001122 bool cxsr_enabled;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001123 struct vlv_wm_values wm = dev_priv->wm.vlv;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301124
Ville Syrjäläae801522015-03-05 21:19:49 +02001125 if (enabled) {
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001126 wm.ddl[pipe].sprite[sprite] =
Ville Syrjälä883a3d22015-03-05 21:19:46 +02001127 vlv_compute_drain_latency(crtc, plane);
Ville Syrjäläae801522015-03-05 21:19:49 +02001128
1129 wm.pipe[pipe].sprite[sprite] =
1130 vlv_compute_wm(intel_crtc,
1131 to_intel_plane(plane),
1132 vlv_get_fifo_size(dev, pipe, sprite+1));
1133 } else {
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001134 wm.ddl[pipe].sprite[sprite] = 0;
Ville Syrjäläae801522015-03-05 21:19:49 +02001135 wm.pipe[pipe].sprite[sprite] = 0;
1136 }
1137
1138 cxsr_enabled = vlv_compute_sr_wm(dev, &wm);
1139
1140 if (memcmp(&wm, &dev_priv->wm.vlv, sizeof(wm)) == 0)
1141 return;
1142
1143 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: sprite %c=%d, "
1144 "SR: plane=%d, cursor=%d\n", pipe_name(pipe),
1145 sprite_name(pipe, sprite),
1146 wm.pipe[pipe].sprite[sprite],
1147 wm.sr.plane, wm.sr.cursor);
1148
1149 if (!cxsr_enabled)
1150 intel_set_memory_cxsr(dev_priv, false);
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301151
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001152 vlv_write_wm_values(intel_crtc, &wm);
Ville Syrjäläae801522015-03-05 21:19:49 +02001153
1154 if (cxsr_enabled)
1155 intel_set_memory_cxsr(dev_priv, true);
Gajanan Bhat01e184c2014-08-07 17:03:30 +05301156}
1157
Ville Syrjäläae801522015-03-05 21:19:49 +02001158#define single_plane_enabled(mask) is_power_of_2(mask)
1159
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001160static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001161{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001162 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001163 static const int sr_latency_ns = 12000;
1164 struct drm_i915_private *dev_priv = dev->dev_private;
1165 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1166 int plane_sr, cursor_sr;
1167 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001168 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001169
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001170 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001171 &g4x_wm_info, pessimal_latency_ns,
1172 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001173 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001174 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001175
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001176 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001177 &g4x_wm_info, pessimal_latency_ns,
1178 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001179 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001180 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001181
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001182 if (single_plane_enabled(enabled) &&
1183 g4x_compute_srwm(dev, ffs(enabled) - 1,
1184 sr_latency_ns,
1185 &g4x_wm_info,
1186 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001187 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001188 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001189 } else {
Imre Deak98584252014-06-13 14:54:20 +03001190 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001191 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001192 plane_sr = cursor_sr = 0;
1193 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001194
Ville Syrjäläa5043452014-06-28 02:04:18 +03001195 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1196 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001197 planea_wm, cursora_wm,
1198 planeb_wm, cursorb_wm,
1199 plane_sr, cursor_sr);
1200
1201 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001202 FW_WM(plane_sr, SR) |
1203 FW_WM(cursorb_wm, CURSORB) |
1204 FW_WM(planeb_wm, PLANEB) |
1205 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001206 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001207 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001208 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001209 /* HPLL off in SR has some issues on G4x... disable it */
1210 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001211 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001212 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001213
1214 if (cxsr_enabled)
1215 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001216}
1217
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001218static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001219{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001220 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001221 struct drm_i915_private *dev_priv = dev->dev_private;
1222 struct drm_crtc *crtc;
1223 int srwm = 1;
1224 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001225 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001226
1227 /* Calc sr entries for one plane configs */
1228 crtc = single_enabled_crtc(dev);
1229 if (crtc) {
1230 /* self-refresh has much higher latency */
1231 static const int sr_latency_ns = 12000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001232 const struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001233 &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001234 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001235 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001236 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001237 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001238 unsigned long line_time_us;
1239 int entries;
1240
Ville Syrjälä922044c2014-02-14 14:18:57 +02001241 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001242
1243 /* Use ns/us then divide to preserve precision */
1244 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1245 pixel_size * hdisplay;
1246 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1247 srwm = I965_FIFO_SIZE - entries;
1248 if (srwm < 0)
1249 srwm = 1;
1250 srwm &= 0x1ff;
1251 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1252 entries, srwm);
1253
1254 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Matt Roper3dd512f2015-02-27 10:12:00 -08001255 pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001256 entries = DIV_ROUND_UP(entries,
1257 i965_cursor_wm_info.cacheline_size);
1258 cursor_sr = i965_cursor_wm_info.fifo_size -
1259 (entries + i965_cursor_wm_info.guard_size);
1260
1261 if (cursor_sr > i965_cursor_wm_info.max_wm)
1262 cursor_sr = i965_cursor_wm_info.max_wm;
1263
1264 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1265 "cursor %d\n", srwm, cursor_sr);
1266
Imre Deak98584252014-06-13 14:54:20 +03001267 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001268 } else {
Imre Deak98584252014-06-13 14:54:20 +03001269 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001270 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001271 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001272 }
1273
1274 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1275 srwm);
1276
1277 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001278 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1279 FW_WM(8, CURSORB) |
1280 FW_WM(8, PLANEB) |
1281 FW_WM(8, PLANEA));
1282 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1283 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001284 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001285 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001286
1287 if (cxsr_enabled)
1288 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001289}
1290
Ville Syrjäläf4998962015-03-10 17:02:21 +02001291#undef FW_WM
1292
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001293static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001294{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001295 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001296 struct drm_i915_private *dev_priv = dev->dev_private;
1297 const struct intel_watermark_params *wm_info;
1298 uint32_t fwater_lo;
1299 uint32_t fwater_hi;
1300 int cwm, srwm = 1;
1301 int fifo_size;
1302 int planea_wm, planeb_wm;
1303 struct drm_crtc *crtc, *enabled = NULL;
1304
1305 if (IS_I945GM(dev))
1306 wm_info = &i945_wm_info;
1307 else if (!IS_GEN2(dev))
1308 wm_info = &i915_wm_info;
1309 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001310 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001311
1312 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1313 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001314 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001315 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001316 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001317 if (IS_GEN2(dev))
1318 cpp = 4;
1319
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001320 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001321 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001322 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001323 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001324 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001325 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001326 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001327 if (planea_wm > (long)wm_info->max_wm)
1328 planea_wm = wm_info->max_wm;
1329 }
1330
1331 if (IS_GEN2(dev))
1332 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001333
1334 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1335 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001336 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001337 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001338 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001339 if (IS_GEN2(dev))
1340 cpp = 4;
1341
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001342 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001343 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001344 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001345 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001346 if (enabled == NULL)
1347 enabled = crtc;
1348 else
1349 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001350 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001351 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001352 if (planeb_wm > (long)wm_info->max_wm)
1353 planeb_wm = wm_info->max_wm;
1354 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001355
1356 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1357
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001358 if (IS_I915GM(dev) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001359 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001360
Matt Roper59bea882015-02-27 10:12:01 -08001361 obj = intel_fb_obj(enabled->primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001362
1363 /* self-refresh seems busted with untiled */
Matt Roper2ff8fde2014-07-08 07:50:07 -07001364 if (obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001365 enabled = NULL;
1366 }
1367
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001368 /*
1369 * Overlay gets an aggressive default since video jitter is bad.
1370 */
1371 cwm = 2;
1372
1373 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001374 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001375
1376 /* Calc sr entries for one plane configs */
1377 if (HAS_FW_BLC(dev) && enabled) {
1378 /* self-refresh has much higher latency */
1379 static const int sr_latency_ns = 6000;
Ville Syrjälä4fe85902013-09-04 18:25:22 +03001380 const struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001381 &to_intel_crtc(enabled)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001382 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001383 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001384 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001385 int pixel_size = enabled->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001386 unsigned long line_time_us;
1387 int entries;
1388
Ville Syrjälä922044c2014-02-14 14:18:57 +02001389 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001390
1391 /* Use ns/us then divide to preserve precision */
1392 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1393 pixel_size * hdisplay;
1394 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1395 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1396 srwm = wm_info->fifo_size - entries;
1397 if (srwm < 0)
1398 srwm = 1;
1399
1400 if (IS_I945G(dev) || IS_I945GM(dev))
1401 I915_WRITE(FW_BLC_SELF,
1402 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1403 else if (IS_I915GM(dev))
1404 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1405 }
1406
1407 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1408 planea_wm, planeb_wm, cwm, srwm);
1409
1410 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1411 fwater_hi = (cwm & 0x1f);
1412
1413 /* Set request length to 8 cachelines per fetch */
1414 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1415 fwater_hi = fwater_hi | (1 << 8);
1416
1417 I915_WRITE(FW_BLC, fwater_lo);
1418 I915_WRITE(FW_BLC2, fwater_hi);
1419
Imre Deak5209b1f2014-07-01 12:36:17 +03001420 if (enabled)
1421 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001422}
1423
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001424static void i845_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001425{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001426 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001427 struct drm_i915_private *dev_priv = dev->dev_private;
1428 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001429 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001430 uint32_t fwater_lo;
1431 int planea_wm;
1432
1433 crtc = single_enabled_crtc(dev);
1434 if (crtc == NULL)
1435 return;
1436
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001437 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001438 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001439 &i845_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001440 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001441 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001442 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1443 fwater_lo |= (3<<8) | planea_wm;
1444
1445 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1446
1447 I915_WRITE(FW_BLC, fwater_lo);
1448}
1449
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001450uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001451{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001452 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001453
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001454 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001455
1456 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1457 * adjust the pixel_rate here. */
1458
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001459 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001460 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001461 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001462
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001463 pipe_w = pipe_config->pipe_src_w;
1464 pipe_h = pipe_config->pipe_src_h;
1465
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001466 pfit_w = (pfit_size >> 16) & 0xFFFF;
1467 pfit_h = pfit_size & 0xFFFF;
1468 if (pipe_w < pfit_w)
1469 pipe_w = pfit_w;
1470 if (pipe_h < pfit_h)
1471 pipe_h = pfit_h;
1472
1473 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1474 pfit_w * pfit_h);
1475 }
1476
1477 return pixel_rate;
1478}
1479
Ville Syrjälä37126462013-08-01 16:18:55 +03001480/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001481static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001482 uint32_t latency)
1483{
1484 uint64_t ret;
1485
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001486 if (WARN(latency == 0, "Latency value missing\n"))
1487 return UINT_MAX;
1488
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001489 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
1490 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1491
1492 return ret;
1493}
1494
Ville Syrjälä37126462013-08-01 16:18:55 +03001495/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001496static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001497 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
1498 uint32_t latency)
1499{
1500 uint32_t ret;
1501
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001502 if (WARN(latency == 0, "Latency value missing\n"))
1503 return UINT_MAX;
1504
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001505 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
1506 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
1507 ret = DIV_ROUND_UP(ret, 64) + 2;
1508 return ret;
1509}
1510
Ville Syrjälä23297042013-07-05 11:57:17 +03001511static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001512 uint8_t bytes_per_pixel)
1513{
1514 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
1515}
1516
Pradeep Bhat2ac96d22014-11-04 17:06:40 +00001517struct skl_pipe_wm_parameters {
1518 bool active;
1519 uint32_t pipe_htotal;
1520 uint32_t pixel_rate; /* in KHz */
1521 struct intel_plane_wm_parameters plane[I915_MAX_PLANES];
1522 struct intel_plane_wm_parameters cursor;
1523};
1524
Imre Deak820c1982013-12-17 14:46:36 +02001525struct ilk_pipe_wm_parameters {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001526 bool active;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001527 uint32_t pipe_htotal;
1528 uint32_t pixel_rate;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001529 struct intel_plane_wm_parameters pri;
1530 struct intel_plane_wm_parameters spr;
1531 struct intel_plane_wm_parameters cur;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001532};
1533
Imre Deak820c1982013-12-17 14:46:36 +02001534struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001535 uint16_t pri;
1536 uint16_t spr;
1537 uint16_t cur;
1538 uint16_t fbc;
1539};
1540
Ville Syrjälä240264f2013-08-07 13:29:12 +03001541/* used in computing the new watermarks state */
1542struct intel_wm_config {
1543 unsigned int num_pipes_active;
1544 bool sprites_enabled;
1545 bool sprites_scaled;
Ville Syrjälä240264f2013-08-07 13:29:12 +03001546};
1547
Ville Syrjälä37126462013-08-01 16:18:55 +03001548/*
1549 * For both WM_PIPE and WM_LP.
1550 * mem_value must be in 0.1us units.
1551 */
Imre Deak820c1982013-12-17 14:46:36 +02001552static uint32_t ilk_compute_pri_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001553 uint32_t mem_value,
1554 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001555{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001556 uint32_t method1, method2;
1557
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001558 if (!params->active || !params->pri.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001559 return 0;
1560
Ville Syrjälä23297042013-07-05 11:57:17 +03001561 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001562 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001563 mem_value);
1564
1565 if (!is_lp)
1566 return method1;
1567
Ville Syrjälä23297042013-07-05 11:57:17 +03001568 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001569 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001570 params->pri.horiz_pixels,
1571 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001572 mem_value);
1573
1574 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001575}
1576
Ville Syrjälä37126462013-08-01 16:18:55 +03001577/*
1578 * For both WM_PIPE and WM_LP.
1579 * mem_value must be in 0.1us units.
1580 */
Imre Deak820c1982013-12-17 14:46:36 +02001581static uint32_t ilk_compute_spr_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001582 uint32_t mem_value)
1583{
1584 uint32_t method1, method2;
1585
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001586 if (!params->active || !params->spr.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001587 return 0;
1588
Ville Syrjälä23297042013-07-05 11:57:17 +03001589 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001590 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001591 mem_value);
Ville Syrjälä23297042013-07-05 11:57:17 +03001592 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001593 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001594 params->spr.horiz_pixels,
1595 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001596 mem_value);
1597 return min(method1, method2);
1598}
1599
Ville Syrjälä37126462013-08-01 16:18:55 +03001600/*
1601 * For both WM_PIPE and WM_LP.
1602 * mem_value must be in 0.1us units.
1603 */
Imre Deak820c1982013-12-17 14:46:36 +02001604static uint32_t ilk_compute_cur_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001605 uint32_t mem_value)
1606{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001607 if (!params->active || !params->cur.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001608 return 0;
1609
Ville Syrjälä23297042013-07-05 11:57:17 +03001610 return ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001611 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001612 params->cur.horiz_pixels,
1613 params->cur.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001614 mem_value);
1615}
1616
Paulo Zanonicca32e92013-05-31 11:45:06 -03001617/* Only for WM_LP. */
Imre Deak820c1982013-12-17 14:46:36 +02001618static uint32_t ilk_compute_fbc_wm(const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001619 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001620{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001621 if (!params->active || !params->pri.enabled)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001622 return 0;
1623
Ville Syrjälä23297042013-07-05 11:57:17 +03001624 return ilk_wm_fbc(pri_val,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001625 params->pri.horiz_pixels,
1626 params->pri.bytes_per_pixel);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001627}
1628
Ville Syrjälä158ae642013-08-07 13:28:19 +03001629static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1630{
Ville Syrjälä416f4722013-11-02 21:07:46 -07001631 if (INTEL_INFO(dev)->gen >= 8)
1632 return 3072;
1633 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001634 return 768;
1635 else
1636 return 512;
1637}
1638
Ville Syrjälä4e975082014-03-07 18:32:11 +02001639static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1640 int level, bool is_sprite)
1641{
1642 if (INTEL_INFO(dev)->gen >= 8)
1643 /* BDW primary/sprite plane watermarks */
1644 return level == 0 ? 255 : 2047;
1645 else if (INTEL_INFO(dev)->gen >= 7)
1646 /* IVB/HSW primary/sprite plane watermarks */
1647 return level == 0 ? 127 : 1023;
1648 else if (!is_sprite)
1649 /* ILK/SNB primary plane watermarks */
1650 return level == 0 ? 127 : 511;
1651 else
1652 /* ILK/SNB sprite plane watermarks */
1653 return level == 0 ? 63 : 255;
1654}
1655
1656static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1657 int level)
1658{
1659 if (INTEL_INFO(dev)->gen >= 7)
1660 return level == 0 ? 63 : 255;
1661 else
1662 return level == 0 ? 31 : 63;
1663}
1664
1665static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1666{
1667 if (INTEL_INFO(dev)->gen >= 8)
1668 return 31;
1669 else
1670 return 15;
1671}
1672
Ville Syrjälä158ae642013-08-07 13:28:19 +03001673/* Calculate the maximum primary/sprite plane watermark */
1674static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1675 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001676 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001677 enum intel_ddb_partitioning ddb_partitioning,
1678 bool is_sprite)
1679{
1680 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001681
1682 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001683 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001684 return 0;
1685
1686 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001687 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001688 fifo_size /= INTEL_INFO(dev)->num_pipes;
1689
1690 /*
1691 * For some reason the non self refresh
1692 * FIFO size is only half of the self
1693 * refresh FIFO size on ILK/SNB.
1694 */
1695 if (INTEL_INFO(dev)->gen <= 6)
1696 fifo_size /= 2;
1697 }
1698
Ville Syrjälä240264f2013-08-07 13:29:12 +03001699 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001700 /* level 0 is always calculated with 1:1 split */
1701 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1702 if (is_sprite)
1703 fifo_size *= 5;
1704 fifo_size /= 6;
1705 } else {
1706 fifo_size /= 2;
1707 }
1708 }
1709
1710 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001711 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001712}
1713
1714/* Calculate the maximum cursor plane watermark */
1715static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001716 int level,
1717 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001718{
1719 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001720 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001721 return 64;
1722
1723 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001724 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001725}
1726
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001727static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001728 int level,
1729 const struct intel_wm_config *config,
1730 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001731 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001732{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001733 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1734 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1735 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02001736 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001737}
1738
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001739static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
1740 int level,
1741 struct ilk_wm_maximums *max)
1742{
1743 max->pri = ilk_plane_wm_reg_max(dev, level, false);
1744 max->spr = ilk_plane_wm_reg_max(dev, level, true);
1745 max->cur = ilk_cursor_wm_reg_max(dev, level);
1746 max->fbc = ilk_fbc_wm_reg_max(dev);
1747}
1748
Ville Syrjäläd9395652013-10-09 19:18:10 +03001749static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001750 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001751 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001752{
1753 bool ret;
1754
1755 /* already determined to be invalid? */
1756 if (!result->enable)
1757 return false;
1758
1759 result->enable = result->pri_val <= max->pri &&
1760 result->spr_val <= max->spr &&
1761 result->cur_val <= max->cur;
1762
1763 ret = result->enable;
1764
1765 /*
1766 * HACK until we can pre-compute everything,
1767 * and thus fail gracefully if LP0 watermarks
1768 * are exceeded...
1769 */
1770 if (level == 0 && !result->enable) {
1771 if (result->pri_val > max->pri)
1772 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
1773 level, result->pri_val, max->pri);
1774 if (result->spr_val > max->spr)
1775 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
1776 level, result->spr_val, max->spr);
1777 if (result->cur_val > max->cur)
1778 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
1779 level, result->cur_val, max->cur);
1780
1781 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
1782 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
1783 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
1784 result->enable = true;
1785 }
1786
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001787 return ret;
1788}
1789
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001790static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03001791 int level,
Imre Deak820c1982013-12-17 14:46:36 +02001792 const struct ilk_pipe_wm_parameters *p,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03001793 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03001794{
1795 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
1796 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
1797 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
1798
1799 /* WM1+ latency values stored in 0.5us units */
1800 if (level > 0) {
1801 pri_latency *= 5;
1802 spr_latency *= 5;
1803 cur_latency *= 5;
1804 }
1805
1806 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
1807 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
1808 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
1809 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
1810 result->enable = true;
1811}
1812
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001813static uint32_t
1814hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001815{
1816 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03001817 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001818 struct drm_display_mode *mode = &intel_crtc->config->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03001819 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001820
Matt Roper3ef00282015-03-09 10:19:24 -07001821 if (!intel_crtc->active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001822 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03001823
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001824 /* The WM are computed with base on how long it takes to fill a single
1825 * row at the given clock rate, multiplied by 8.
1826 * */
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001827 linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
1828 mode->crtc_clock);
1829 ips_linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8,
Ville Syrjälä05024da2015-06-03 15:45:08 +03001830 dev_priv->cdclk_freq);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001831
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001832 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
1833 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03001834}
1835
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001836static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03001837{
1838 struct drm_i915_private *dev_priv = dev->dev_private;
1839
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001840 if (IS_GEN9(dev)) {
1841 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00001842 int ret, i;
Vandana Kannan367294b2014-11-04 17:06:46 +00001843 int level, max_level = ilk_wm_max_level(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001844
1845 /* read the first set of memory latencies[0:3] */
1846 val = 0; /* data0 to be programmed to 0 for first set */
1847 mutex_lock(&dev_priv->rps.hw_lock);
1848 ret = sandybridge_pcode_read(dev_priv,
1849 GEN9_PCODE_READ_MEM_LATENCY,
1850 &val);
1851 mutex_unlock(&dev_priv->rps.hw_lock);
1852
1853 if (ret) {
1854 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
1855 return;
1856 }
1857
1858 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
1859 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
1860 GEN9_MEM_LATENCY_LEVEL_MASK;
1861 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
1862 GEN9_MEM_LATENCY_LEVEL_MASK;
1863 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
1864 GEN9_MEM_LATENCY_LEVEL_MASK;
1865
1866 /* read the second set of memory latencies[4:7] */
1867 val = 1; /* data0 to be programmed to 1 for second set */
1868 mutex_lock(&dev_priv->rps.hw_lock);
1869 ret = sandybridge_pcode_read(dev_priv,
1870 GEN9_PCODE_READ_MEM_LATENCY,
1871 &val);
1872 mutex_unlock(&dev_priv->rps.hw_lock);
1873 if (ret) {
1874 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
1875 return;
1876 }
1877
1878 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
1879 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
1880 GEN9_MEM_LATENCY_LEVEL_MASK;
1881 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
1882 GEN9_MEM_LATENCY_LEVEL_MASK;
1883 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
1884 GEN9_MEM_LATENCY_LEVEL_MASK;
1885
Vandana Kannan367294b2014-11-04 17:06:46 +00001886 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00001887 * WaWmMemoryReadLatency:skl
1888 *
Vandana Kannan367294b2014-11-04 17:06:46 +00001889 * punit doesn't take into account the read latency so we need
1890 * to add 2us to the various latency levels we retrieve from
1891 * the punit.
1892 * - W0 is a bit special in that it's the only level that
1893 * can't be disabled if we want to have display working, so
1894 * we always add 2us there.
1895 * - For levels >=1, punit returns 0us latency when they are
1896 * disabled, so we respect that and don't add 2us then
Vandana Kannan4f947382014-11-04 17:06:47 +00001897 *
1898 * Additionally, if a level n (n > 1) has a 0us latency, all
1899 * levels m (m >= n) need to be disabled. We make sure to
1900 * sanitize the values out of the punit to satisfy this
1901 * requirement.
Vandana Kannan367294b2014-11-04 17:06:46 +00001902 */
1903 wm[0] += 2;
1904 for (level = 1; level <= max_level; level++)
1905 if (wm[level] != 0)
1906 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00001907 else {
1908 for (i = level + 1; i <= max_level; i++)
1909 wm[i] = 0;
Vandana Kannan367294b2014-11-04 17:06:46 +00001910
Vandana Kannan4f947382014-11-04 17:06:47 +00001911 break;
1912 }
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001913 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03001914 uint64_t sskpd = I915_READ64(MCH_SSKPD);
1915
1916 wm[0] = (sskpd >> 56) & 0xFF;
1917 if (wm[0] == 0)
1918 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03001919 wm[1] = (sskpd >> 4) & 0xFF;
1920 wm[2] = (sskpd >> 12) & 0xFF;
1921 wm[3] = (sskpd >> 20) & 0x1FF;
1922 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03001923 } else if (INTEL_INFO(dev)->gen >= 6) {
1924 uint32_t sskpd = I915_READ(MCH_SSKPD);
1925
1926 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
1927 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
1928 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
1929 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03001930 } else if (INTEL_INFO(dev)->gen >= 5) {
1931 uint32_t mltr = I915_READ(MLTR_ILK);
1932
1933 /* ILK primary LP0 latency is 700 ns */
1934 wm[0] = 7;
1935 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
1936 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03001937 }
1938}
1939
Ville Syrjälä53615a52013-08-01 16:18:50 +03001940static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
1941{
1942 /* ILK sprite LP0 latency is 1300 ns */
1943 if (INTEL_INFO(dev)->gen == 5)
1944 wm[0] = 13;
1945}
1946
1947static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
1948{
1949 /* ILK cursor LP0 latency is 1300 ns */
1950 if (INTEL_INFO(dev)->gen == 5)
1951 wm[0] = 13;
1952
1953 /* WaDoubleCursorLP3Latency:ivb */
1954 if (IS_IVYBRIDGE(dev))
1955 wm[3] *= 2;
1956}
1957
Damien Lespiau546c81f2014-05-13 15:30:26 +01001958int ilk_wm_max_level(const struct drm_device *dev)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03001959{
1960 /* how many WM levels are we expecting */
Damien Lespiaub6e742f2015-05-09 02:05:55 +01001961 if (INTEL_INFO(dev)->gen >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001962 return 7;
1963 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03001964 return 4;
1965 else if (INTEL_INFO(dev)->gen >= 6)
1966 return 3;
1967 else
1968 return 2;
1969}
Daniel Vetter7526ed72014-09-29 15:07:19 +02001970
Ville Syrjälä26ec9712013-08-01 16:18:52 +03001971static void intel_print_wm_latency(struct drm_device *dev,
1972 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001973 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03001974{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03001975 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03001976
1977 for (level = 0; level <= max_level; level++) {
1978 unsigned int latency = wm[level];
1979
1980 if (latency == 0) {
1981 DRM_ERROR("%s WM%d latency not provided\n",
1982 name, level);
1983 continue;
1984 }
1985
Pradeep Bhat2af30a52014-11-04 17:06:38 +00001986 /*
1987 * - latencies are in us on gen9.
1988 * - before then, WM1+ latency values are in 0.5us units
1989 */
1990 if (IS_GEN9(dev))
1991 latency *= 10;
1992 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03001993 latency *= 5;
1994
1995 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
1996 name, level, wm[level],
1997 latency / 10, latency % 10);
1998 }
1999}
2000
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002001static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2002 uint16_t wm[5], uint16_t min)
2003{
2004 int level, max_level = ilk_wm_max_level(dev_priv->dev);
2005
2006 if (wm[0] >= min)
2007 return false;
2008
2009 wm[0] = max(wm[0], min);
2010 for (level = 1; level <= max_level; level++)
2011 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2012
2013 return true;
2014}
2015
2016static void snb_wm_latency_quirk(struct drm_device *dev)
2017{
2018 struct drm_i915_private *dev_priv = dev->dev_private;
2019 bool changed;
2020
2021 /*
2022 * The BIOS provided WM memory latency values are often
2023 * inadequate for high resolution displays. Adjust them.
2024 */
2025 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2026 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2027 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2028
2029 if (!changed)
2030 return;
2031
2032 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
2033 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2034 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2035 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
2036}
2037
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002038static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002039{
2040 struct drm_i915_private *dev_priv = dev->dev_private;
2041
2042 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2043
2044 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2045 sizeof(dev_priv->wm.pri_latency));
2046 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2047 sizeof(dev_priv->wm.pri_latency));
2048
2049 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2050 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002051
2052 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2053 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2054 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002055
2056 if (IS_GEN6(dev))
2057 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002058}
2059
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002060static void skl_setup_wm_latency(struct drm_device *dev)
2061{
2062 struct drm_i915_private *dev_priv = dev->dev_private;
2063
2064 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
2065 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
2066}
2067
Imre Deak820c1982013-12-17 14:46:36 +02002068static void ilk_compute_wm_parameters(struct drm_crtc *crtc,
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002069 struct ilk_pipe_wm_parameters *p)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002070{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002071 struct drm_device *dev = crtc->dev;
2072 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2073 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002074 struct drm_plane *plane;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002075
Matt Roper3ef00282015-03-09 10:19:24 -07002076 if (!intel_crtc->active)
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002077 return;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002078
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002079 p->active = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002080 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03002081 p->pixel_rate = ilk_pipe_pixel_rate(intel_crtc->config);
Matt Roperc9f038a2015-03-09 11:06:02 -07002082
Thomas Gummerer54da6912015-05-14 09:16:39 +02002083 if (crtc->primary->state->fb)
Matt Roperc9f038a2015-03-09 11:06:02 -07002084 p->pri.bytes_per_pixel =
2085 crtc->primary->state->fb->bits_per_pixel / 8;
Thomas Gummerer54da6912015-05-14 09:16:39 +02002086 else
2087 p->pri.bytes_per_pixel = 4;
Matt Roperc9f038a2015-03-09 11:06:02 -07002088
Thomas Gummerer54da6912015-05-14 09:16:39 +02002089 p->cur.bytes_per_pixel = 4;
2090 /*
2091 * TODO: for now, assume primary and cursor planes are always enabled.
2092 * Setting them to false makes the screen flicker.
2093 */
2094 p->pri.enabled = true;
2095 p->cur.enabled = true;
2096
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002097 p->pri.horiz_pixels = intel_crtc->config->pipe_src_w;
Matt Roper3dd512f2015-02-27 10:12:00 -08002098 p->cur.horiz_pixels = intel_crtc->base.cursor->state->crtc_w;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002099
Matt Roperaf2b6532014-04-01 15:22:32 -07002100 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002101 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002102
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002103 if (intel_plane->pipe == pipe) {
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002104 p->spr = intel_plane->wm;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002105 break;
2106 }
2107 }
2108}
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002109
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002110static void ilk_compute_wm_config(struct drm_device *dev,
2111 struct intel_wm_config *config)
2112{
2113 struct intel_crtc *intel_crtc;
2114
2115 /* Compute the currently _active_ config */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002116 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002117 const struct intel_pipe_wm *wm = &intel_crtc->wm.active;
2118
2119 if (!wm->pipe_enabled)
2120 continue;
2121
2122 config->sprites_enabled |= wm->sprites_enabled;
2123 config->sprites_scaled |= wm->sprites_scaled;
2124 config->num_pipes_active++;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002125 }
2126}
2127
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002128/* Compute new watermarks for the pipe */
2129static bool intel_compute_pipe_wm(struct drm_crtc *crtc,
Imre Deak820c1982013-12-17 14:46:36 +02002130 const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002131 struct intel_pipe_wm *pipe_wm)
2132{
2133 struct drm_device *dev = crtc->dev;
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002134 const struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002135 int level, max_level = ilk_wm_max_level(dev);
2136 /* LP0 watermark maximums depend on this pipe alone */
2137 struct intel_wm_config config = {
2138 .num_pipes_active = 1,
2139 .sprites_enabled = params->spr.enabled,
2140 .sprites_scaled = params->spr.scaled,
2141 };
Imre Deak820c1982013-12-17 14:46:36 +02002142 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002143
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002144 pipe_wm->pipe_enabled = params->active;
2145 pipe_wm->sprites_enabled = params->spr.enabled;
2146 pipe_wm->sprites_scaled = params->spr.scaled;
2147
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002148 /* ILK/SNB: LP2+ watermarks only w/o sprites */
2149 if (INTEL_INFO(dev)->gen <= 6 && params->spr.enabled)
2150 max_level = 1;
2151
2152 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
2153 if (params->spr.scaled)
2154 max_level = 0;
2155
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002156 ilk_compute_wm_level(dev_priv, 0, params, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002157
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002158 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02002159 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002160
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002161 /* LP0 watermarks always use 1/2 DDB partitioning */
2162 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2163
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002164 /* At least LP0 must be valid */
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002165 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]))
2166 return false;
2167
2168 ilk_compute_wm_reg_maximums(dev, 1, &max);
2169
2170 for (level = 1; level <= max_level; level++) {
2171 struct intel_wm_level wm = {};
2172
2173 ilk_compute_wm_level(dev_priv, level, params, &wm);
2174
2175 /*
2176 * Disable any watermark level that exceeds the
2177 * register maximums since such watermarks are
2178 * always invalid.
2179 */
2180 if (!ilk_validate_wm_level(level, &max, &wm))
2181 break;
2182
2183 pipe_wm->wm[level] = wm;
2184 }
2185
2186 return true;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002187}
2188
2189/*
2190 * Merge the watermarks from all active pipes for a specific level.
2191 */
2192static void ilk_merge_wm_level(struct drm_device *dev,
2193 int level,
2194 struct intel_wm_level *ret_wm)
2195{
2196 const struct intel_crtc *intel_crtc;
2197
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002198 ret_wm->enable = true;
2199
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002200 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002201 const struct intel_pipe_wm *active = &intel_crtc->wm.active;
2202 const struct intel_wm_level *wm = &active->wm[level];
2203
2204 if (!active->pipe_enabled)
2205 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002206
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002207 /*
2208 * The watermark values may have been used in the past,
2209 * so we must maintain them in the registers for some
2210 * time even if the level is now disabled.
2211 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002212 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002213 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002214
2215 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2216 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2217 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2218 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2219 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002220}
2221
2222/*
2223 * Merge all low power watermarks for all active pipes.
2224 */
2225static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002226 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002227 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002228 struct intel_pipe_wm *merged)
2229{
2230 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002231 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002232
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002233 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2234 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2235 config->num_pipes_active > 1)
2236 return;
2237
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002238 /* ILK: FBC WM must be disabled always */
2239 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002240
2241 /* merge each WM1+ level */
2242 for (level = 1; level <= max_level; level++) {
2243 struct intel_wm_level *wm = &merged->wm[level];
2244
2245 ilk_merge_wm_level(dev, level, wm);
2246
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002247 if (level > last_enabled_level)
2248 wm->enable = false;
2249 else if (!ilk_validate_wm_level(level, max, wm))
2250 /* make sure all following levels get disabled */
2251 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002252
2253 /*
2254 * The spec says it is preferred to disable
2255 * FBC WMs instead of disabling a WM level.
2256 */
2257 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002258 if (wm->enable)
2259 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002260 wm->fbc_val = 0;
2261 }
2262 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002263
2264 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2265 /*
2266 * FIXME this is racy. FBC might get enabled later.
2267 * What we should check here is whether FBC can be
2268 * enabled sometime later.
2269 */
2270 if (IS_GEN5(dev) && !merged->fbc_wm_enabled && intel_fbc_enabled(dev)) {
2271 for (level = 2; level <= max_level; level++) {
2272 struct intel_wm_level *wm = &merged->wm[level];
2273
2274 wm->enable = false;
2275 }
2276 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002277}
2278
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002279static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2280{
2281 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2282 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2283}
2284
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002285/* The value we need to program into the WM_LPx latency field */
2286static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2287{
2288 struct drm_i915_private *dev_priv = dev->dev_private;
2289
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002290 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002291 return 2 * level;
2292 else
2293 return dev_priv->wm.pri_latency[level];
2294}
2295
Imre Deak820c1982013-12-17 14:46:36 +02002296static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002297 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002298 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002299 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002300{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002301 struct intel_crtc *intel_crtc;
2302 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002303
Ville Syrjälä0362c782013-10-09 19:17:57 +03002304 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002305 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002306
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002307 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002308 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002309 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002310
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002311 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002312
Ville Syrjälä0362c782013-10-09 19:17:57 +03002313 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002314
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002315 /*
2316 * Maintain the watermark values even if the level is
2317 * disabled. Doing otherwise could cause underruns.
2318 */
2319 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002320 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002321 (r->pri_val << WM1_LP_SR_SHIFT) |
2322 r->cur_val;
2323
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002324 if (r->enable)
2325 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2326
Ville Syrjälä416f4722013-11-02 21:07:46 -07002327 if (INTEL_INFO(dev)->gen >= 8)
2328 results->wm_lp[wm_lp - 1] |=
2329 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2330 else
2331 results->wm_lp[wm_lp - 1] |=
2332 r->fbc_val << WM1_LP_FBC_SHIFT;
2333
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002334 /*
2335 * Always set WM1S_LP_EN when spr_val != 0, even if the
2336 * level is disabled. Doing otherwise could cause underruns.
2337 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002338 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2339 WARN_ON(wm_lp != 1);
2340 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2341 } else
2342 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002343 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002344
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002345 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002346 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002347 enum pipe pipe = intel_crtc->pipe;
2348 const struct intel_wm_level *r =
2349 &intel_crtc->wm.active.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002350
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002351 if (WARN_ON(!r->enable))
2352 continue;
2353
2354 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
2355
2356 results->wm_pipe[pipe] =
2357 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2358 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2359 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002360 }
2361}
2362
Paulo Zanoni861f3382013-05-31 10:19:21 -03002363/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2364 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002365static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002366 struct intel_pipe_wm *r1,
2367 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002368{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002369 int level, max_level = ilk_wm_max_level(dev);
2370 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002371
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002372 for (level = 1; level <= max_level; level++) {
2373 if (r1->wm[level].enable)
2374 level1 = level;
2375 if (r2->wm[level].enable)
2376 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002377 }
2378
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002379 if (level1 == level2) {
2380 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002381 return r2;
2382 else
2383 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002384 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002385 return r1;
2386 } else {
2387 return r2;
2388 }
2389}
2390
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002391/* dirty bits used to track which watermarks need changes */
2392#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2393#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2394#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2395#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2396#define WM_DIRTY_FBC (1 << 24)
2397#define WM_DIRTY_DDB (1 << 25)
2398
Damien Lespiau055e3932014-08-18 13:49:10 +01002399static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002400 const struct ilk_wm_values *old,
2401 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002402{
2403 unsigned int dirty = 0;
2404 enum pipe pipe;
2405 int wm_lp;
2406
Damien Lespiau055e3932014-08-18 13:49:10 +01002407 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002408 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2409 dirty |= WM_DIRTY_LINETIME(pipe);
2410 /* Must disable LP1+ watermarks too */
2411 dirty |= WM_DIRTY_LP_ALL;
2412 }
2413
2414 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2415 dirty |= WM_DIRTY_PIPE(pipe);
2416 /* Must disable LP1+ watermarks too */
2417 dirty |= WM_DIRTY_LP_ALL;
2418 }
2419 }
2420
2421 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2422 dirty |= WM_DIRTY_FBC;
2423 /* Must disable LP1+ watermarks too */
2424 dirty |= WM_DIRTY_LP_ALL;
2425 }
2426
2427 if (old->partitioning != new->partitioning) {
2428 dirty |= WM_DIRTY_DDB;
2429 /* Must disable LP1+ watermarks too */
2430 dirty |= WM_DIRTY_LP_ALL;
2431 }
2432
2433 /* LP1+ watermarks already deemed dirty, no need to continue */
2434 if (dirty & WM_DIRTY_LP_ALL)
2435 return dirty;
2436
2437 /* Find the lowest numbered LP1+ watermark in need of an update... */
2438 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2439 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2440 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2441 break;
2442 }
2443
2444 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2445 for (; wm_lp <= 3; wm_lp++)
2446 dirty |= WM_DIRTY_LP(wm_lp);
2447
2448 return dirty;
2449}
2450
Ville Syrjälä8553c182013-12-05 15:51:39 +02002451static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2452 unsigned int dirty)
2453{
Imre Deak820c1982013-12-17 14:46:36 +02002454 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002455 bool changed = false;
2456
2457 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2458 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2459 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2460 changed = true;
2461 }
2462 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2463 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2464 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2465 changed = true;
2466 }
2467 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2468 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2469 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2470 changed = true;
2471 }
2472
2473 /*
2474 * Don't touch WM1S_LP_EN here.
2475 * Doing so could cause underruns.
2476 */
2477
2478 return changed;
2479}
2480
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002481/*
2482 * The spec says we shouldn't write when we don't need, because every write
2483 * causes WMs to be re-evaluated, expending some power.
2484 */
Imre Deak820c1982013-12-17 14:46:36 +02002485static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2486 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002487{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002488 struct drm_device *dev = dev_priv->dev;
Imre Deak820c1982013-12-17 14:46:36 +02002489 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002490 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002491 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002492
Damien Lespiau055e3932014-08-18 13:49:10 +01002493 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002494 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002495 return;
2496
Ville Syrjälä8553c182013-12-05 15:51:39 +02002497 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002498
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002499 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002500 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002501 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002502 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002503 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002504 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2505
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002506 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002507 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002508 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002509 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002510 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002511 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2512
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002513 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002514 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002515 val = I915_READ(WM_MISC);
2516 if (results->partitioning == INTEL_DDB_PART_1_2)
2517 val &= ~WM_MISC_DATA_PARTITION_5_6;
2518 else
2519 val |= WM_MISC_DATA_PARTITION_5_6;
2520 I915_WRITE(WM_MISC, val);
2521 } else {
2522 val = I915_READ(DISP_ARB_CTL2);
2523 if (results->partitioning == INTEL_DDB_PART_1_2)
2524 val &= ~DISP_DATA_PARTITION_5_6;
2525 else
2526 val |= DISP_DATA_PARTITION_5_6;
2527 I915_WRITE(DISP_ARB_CTL2, val);
2528 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002529 }
2530
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002531 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002532 val = I915_READ(DISP_ARB_CTL);
2533 if (results->enable_fbc_wm)
2534 val &= ~DISP_FBC_WM_DIS;
2535 else
2536 val |= DISP_FBC_WM_DIS;
2537 I915_WRITE(DISP_ARB_CTL, val);
2538 }
2539
Imre Deak954911e2013-12-17 14:46:34 +02002540 if (dirty & WM_DIRTY_LP(1) &&
2541 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2542 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2543
2544 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002545 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2546 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2547 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2548 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2549 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002550
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002551 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002552 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002553 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002554 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002555 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002556 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002557
2558 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002559}
2560
Ville Syrjälä8553c182013-12-05 15:51:39 +02002561static bool ilk_disable_lp_wm(struct drm_device *dev)
2562{
2563 struct drm_i915_private *dev_priv = dev->dev_private;
2564
2565 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2566}
2567
Damien Lespiaub9cec072014-11-04 17:06:43 +00002568/*
2569 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
2570 * different active planes.
2571 */
2572
2573#define SKL_DDB_SIZE 896 /* in blocks */
Damien Lespiau43d735a2015-03-17 11:39:34 +02002574#define BXT_DDB_SIZE 512
Damien Lespiaub9cec072014-11-04 17:06:43 +00002575
2576static void
2577skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
2578 struct drm_crtc *for_crtc,
2579 const struct intel_wm_config *config,
2580 const struct skl_pipe_wm_parameters *params,
2581 struct skl_ddb_entry *alloc /* out */)
2582{
2583 struct drm_crtc *crtc;
2584 unsigned int pipe_size, ddb_size;
2585 int nth_active_pipe;
2586
2587 if (!params->active) {
2588 alloc->start = 0;
2589 alloc->end = 0;
2590 return;
2591 }
2592
Damien Lespiau43d735a2015-03-17 11:39:34 +02002593 if (IS_BROXTON(dev))
2594 ddb_size = BXT_DDB_SIZE;
2595 else
2596 ddb_size = SKL_DDB_SIZE;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002597
2598 ddb_size -= 4; /* 4 blocks for bypass path allocation */
2599
2600 nth_active_pipe = 0;
2601 for_each_crtc(dev, crtc) {
Matt Roper3ef00282015-03-09 10:19:24 -07002602 if (!to_intel_crtc(crtc)->active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002603 continue;
2604
2605 if (crtc == for_crtc)
2606 break;
2607
2608 nth_active_pipe++;
2609 }
2610
2611 pipe_size = ddb_size / config->num_pipes_active;
2612 alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active;
Damien Lespiau16160e32014-11-04 17:06:53 +00002613 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002614}
2615
2616static unsigned int skl_cursor_allocation(const struct intel_wm_config *config)
2617{
2618 if (config->num_pipes_active == 1)
2619 return 32;
2620
2621 return 8;
2622}
2623
Damien Lespiaua269c582014-11-04 17:06:49 +00002624static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
2625{
2626 entry->start = reg & 0x3ff;
2627 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00002628 if (entry->end)
2629 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00002630}
2631
Damien Lespiau08db6652014-11-04 17:06:52 +00002632void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2633 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00002634{
Damien Lespiaua269c582014-11-04 17:06:49 +00002635 enum pipe pipe;
2636 int plane;
2637 u32 val;
2638
2639 for_each_pipe(dev_priv, pipe) {
Damien Lespiaudd740782015-02-28 14:54:08 +00002640 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00002641 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
2642 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
2643 val);
2644 }
2645
2646 val = I915_READ(CUR_BUF_CFG(pipe));
2647 skl_ddb_entry_init_from_hw(&ddb->cursor[pipe], val);
2648 }
2649}
2650
Damien Lespiaub9cec072014-11-04 17:06:43 +00002651static unsigned int
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002652skl_plane_relative_data_rate(const struct intel_plane_wm_parameters *p, int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002653{
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002654
2655 /* for planar format */
2656 if (p->y_bytes_per_pixel) {
2657 if (y) /* y-plane data rate */
2658 return p->horiz_pixels * p->vert_pixels * p->y_bytes_per_pixel;
2659 else /* uv-plane data rate */
2660 return (p->horiz_pixels/2) * (p->vert_pixels/2) * p->bytes_per_pixel;
2661 }
2662
2663 /* for packed formats */
Damien Lespiaub9cec072014-11-04 17:06:43 +00002664 return p->horiz_pixels * p->vert_pixels * p->bytes_per_pixel;
2665}
2666
2667/*
2668 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
2669 * a 8192x4096@32bpp framebuffer:
2670 * 3 * 4096 * 8192 * 4 < 2^32
2671 */
2672static unsigned int
2673skl_get_total_relative_data_rate(struct intel_crtc *intel_crtc,
2674 const struct skl_pipe_wm_parameters *params)
2675{
2676 unsigned int total_data_rate = 0;
2677 int plane;
2678
2679 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2680 const struct intel_plane_wm_parameters *p;
2681
2682 p = &params->plane[plane];
2683 if (!p->enabled)
2684 continue;
2685
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002686 total_data_rate += skl_plane_relative_data_rate(p, 0); /* packed/uv */
2687 if (p->y_bytes_per_pixel) {
2688 total_data_rate += skl_plane_relative_data_rate(p, 1); /* y-plane */
2689 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00002690 }
2691
2692 return total_data_rate;
2693}
2694
2695static void
2696skl_allocate_pipe_ddb(struct drm_crtc *crtc,
2697 const struct intel_wm_config *config,
2698 const struct skl_pipe_wm_parameters *params,
2699 struct skl_ddb_allocation *ddb /* out */)
2700{
2701 struct drm_device *dev = crtc->dev;
Damien Lespiaudd740782015-02-28 14:54:08 +00002702 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002703 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2704 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002705 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002706 uint16_t alloc_size, start, cursor_blocks;
Damien Lespiau80958152015-02-09 13:35:10 +00002707 uint16_t minimum[I915_MAX_PLANES];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002708 uint16_t y_minimum[I915_MAX_PLANES];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002709 unsigned int total_data_rate;
2710 int plane;
2711
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002712 skl_ddb_get_pipe_allocation_limits(dev, crtc, config, params, alloc);
2713 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002714 if (alloc_size == 0) {
2715 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
2716 memset(&ddb->cursor[pipe], 0, sizeof(ddb->cursor[pipe]));
2717 return;
2718 }
2719
2720 cursor_blocks = skl_cursor_allocation(config);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002721 ddb->cursor[pipe].start = alloc->end - cursor_blocks;
2722 ddb->cursor[pipe].end = alloc->end;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002723
2724 alloc_size -= cursor_blocks;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002725 alloc->end -= cursor_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002726
Damien Lespiau80958152015-02-09 13:35:10 +00002727 /* 1. Allocate the mininum required blocks for each active plane */
Damien Lespiaudd740782015-02-28 14:54:08 +00002728 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau80958152015-02-09 13:35:10 +00002729 const struct intel_plane_wm_parameters *p;
2730
2731 p = &params->plane[plane];
2732 if (!p->enabled)
2733 continue;
2734
2735 minimum[plane] = 8;
2736 alloc_size -= minimum[plane];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002737 y_minimum[plane] = p->y_bytes_per_pixel ? 8 : 0;
2738 alloc_size -= y_minimum[plane];
Damien Lespiau80958152015-02-09 13:35:10 +00002739 }
2740
Damien Lespiaub9cec072014-11-04 17:06:43 +00002741 /*
Damien Lespiau80958152015-02-09 13:35:10 +00002742 * 2. Distribute the remaining space in proportion to the amount of
2743 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00002744 *
2745 * FIXME: we may not allocate every single block here.
2746 */
2747 total_data_rate = skl_get_total_relative_data_rate(intel_crtc, params);
2748
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002749 start = alloc->start;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002750 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2751 const struct intel_plane_wm_parameters *p;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002752 unsigned int data_rate, y_data_rate;
2753 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002754
2755 p = &params->plane[plane];
2756 if (!p->enabled)
2757 continue;
2758
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002759 data_rate = skl_plane_relative_data_rate(p, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002760
2761 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002762 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00002763 * promote the expression to 64 bits to avoid overflowing, the
2764 * result is < available as data_rate / total_data_rate < 1
2765 */
Damien Lespiau80958152015-02-09 13:35:10 +00002766 plane_blocks = minimum[plane];
2767 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
2768 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002769
2770 ddb->plane[pipe][plane].start = start;
Damien Lespiau16160e32014-11-04 17:06:53 +00002771 ddb->plane[pipe][plane].end = start + plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002772
2773 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002774
2775 /*
2776 * allocation for y_plane part of planar format:
2777 */
2778 if (p->y_bytes_per_pixel) {
2779 y_data_rate = skl_plane_relative_data_rate(p, 1);
2780 y_plane_blocks = y_minimum[plane];
2781 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
2782 total_data_rate);
2783
2784 ddb->y_plane[pipe][plane].start = start;
2785 ddb->y_plane[pipe][plane].end = start + y_plane_blocks;
2786
2787 start += y_plane_blocks;
2788 }
2789
Damien Lespiaub9cec072014-11-04 17:06:43 +00002790 }
2791
2792}
2793
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02002794static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002795{
2796 /* TODO: Take into account the scalers once we support them */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02002797 return config->base.adjusted_mode.crtc_clock;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002798}
2799
2800/*
2801 * The max latency should be 257 (max the punit can code is 255 and we add 2us
2802 * for the read latency) and bytes_per_pixel should always be <= 8, so that
2803 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
2804 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
2805*/
2806static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
2807 uint32_t latency)
2808{
2809 uint32_t wm_intermediate_val, ret;
2810
2811 if (latency == 0)
2812 return UINT_MAX;
2813
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002814 wm_intermediate_val = latency * pixel_rate * bytes_per_pixel / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002815 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
2816
2817 return ret;
2818}
2819
2820static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
2821 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002822 uint64_t tiling, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002823{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002824 uint32_t ret;
2825 uint32_t plane_bytes_per_line, plane_blocks_per_line;
2826 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002827
2828 if (latency == 0)
2829 return UINT_MAX;
2830
2831 plane_bytes_per_line = horiz_pixels * bytes_per_pixel;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002832
2833 if (tiling == I915_FORMAT_MOD_Y_TILED ||
2834 tiling == I915_FORMAT_MOD_Yf_TILED) {
2835 plane_bytes_per_line *= 4;
2836 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
2837 plane_blocks_per_line /= 4;
2838 } else {
2839 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
2840 }
2841
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002842 wm_intermediate_val = latency * pixel_rate;
2843 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002844 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002845
2846 return ret;
2847}
2848
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002849static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb,
2850 const struct intel_crtc *intel_crtc)
2851{
2852 struct drm_device *dev = intel_crtc->base.dev;
2853 struct drm_i915_private *dev_priv = dev->dev_private;
2854 const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
2855 enum pipe pipe = intel_crtc->pipe;
2856
2857 if (memcmp(new_ddb->plane[pipe], cur_ddb->plane[pipe],
2858 sizeof(new_ddb->plane[pipe])))
2859 return true;
2860
2861 if (memcmp(&new_ddb->cursor[pipe], &cur_ddb->cursor[pipe],
2862 sizeof(new_ddb->cursor[pipe])))
2863 return true;
2864
2865 return false;
2866}
2867
2868static void skl_compute_wm_global_parameters(struct drm_device *dev,
2869 struct intel_wm_config *config)
2870{
2871 struct drm_crtc *crtc;
2872 struct drm_plane *plane;
2873
2874 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
Matt Roper3ef00282015-03-09 10:19:24 -07002875 config->num_pipes_active += to_intel_crtc(crtc)->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002876
2877 /* FIXME: I don't think we need those two global parameters on SKL */
2878 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2879 struct intel_plane *intel_plane = to_intel_plane(plane);
2880
2881 config->sprites_enabled |= intel_plane->wm.enabled;
2882 config->sprites_scaled |= intel_plane->wm.scaled;
2883 }
2884}
2885
2886static void skl_compute_wm_pipe_parameters(struct drm_crtc *crtc,
2887 struct skl_pipe_wm_parameters *p)
2888{
2889 struct drm_device *dev = crtc->dev;
2890 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2891 enum pipe pipe = intel_crtc->pipe;
2892 struct drm_plane *plane;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002893 struct drm_framebuffer *fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002894 int i = 1; /* Index for sprite planes start */
2895
Matt Roper3ef00282015-03-09 10:19:24 -07002896 p->active = intel_crtc->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002897 if (p->active) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002898 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
2899 p->pixel_rate = skl_pipe_pixel_rate(intel_crtc->config);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002900
Matt Roperc9f038a2015-03-09 11:06:02 -07002901 fb = crtc->primary->state->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002902 /* For planar: Bpp is for uv plane, y_Bpp is for y plane */
Matt Roperc9f038a2015-03-09 11:06:02 -07002903 if (fb) {
2904 p->plane[0].enabled = true;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002905 p->plane[0].bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
2906 drm_format_plane_cpp(fb->pixel_format, 1) : fb->bits_per_pixel / 8;
2907 p->plane[0].y_bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
2908 drm_format_plane_cpp(fb->pixel_format, 0) : 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07002909 p->plane[0].tiling = fb->modifier[0];
2910 } else {
2911 p->plane[0].enabled = false;
2912 p->plane[0].bytes_per_pixel = 0;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002913 p->plane[0].y_bytes_per_pixel = 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07002914 p->plane[0].tiling = DRM_FORMAT_MOD_NONE;
2915 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002916 p->plane[0].horiz_pixels = intel_crtc->config->pipe_src_w;
2917 p->plane[0].vert_pixels = intel_crtc->config->pipe_src_h;
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00002918 p->plane[0].rotation = crtc->primary->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002919
Matt Roperc9f038a2015-03-09 11:06:02 -07002920 fb = crtc->cursor->state->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002921 p->cursor.y_bytes_per_pixel = 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07002922 if (fb) {
2923 p->cursor.enabled = true;
2924 p->cursor.bytes_per_pixel = fb->bits_per_pixel / 8;
2925 p->cursor.horiz_pixels = crtc->cursor->state->crtc_w;
2926 p->cursor.vert_pixels = crtc->cursor->state->crtc_h;
2927 } else {
2928 p->cursor.enabled = false;
2929 p->cursor.bytes_per_pixel = 0;
2930 p->cursor.horiz_pixels = 64;
2931 p->cursor.vert_pixels = 64;
2932 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002933 }
2934
2935 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
2936 struct intel_plane *intel_plane = to_intel_plane(plane);
2937
Sonika Jindala712f8e2014-12-09 10:59:15 +05302938 if (intel_plane->pipe == pipe &&
2939 plane->type == DRM_PLANE_TYPE_OVERLAY)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002940 p->plane[i++] = intel_plane->wm;
2941 }
2942}
2943
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002944static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
2945 struct skl_pipe_wm_parameters *p,
Damien Lespiauafb024a2014-11-04 17:06:59 +00002946 struct intel_plane_wm_parameters *p_params,
2947 uint16_t ddb_allocation,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002948 int level,
Damien Lespiauafb024a2014-11-04 17:06:59 +00002949 uint16_t *out_blocks, /* out */
2950 uint8_t *out_lines /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002951{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002952 uint32_t latency = dev_priv->wm.skl_latency[level];
2953 uint32_t method1, method2;
2954 uint32_t plane_bytes_per_line, plane_blocks_per_line;
2955 uint32_t res_blocks, res_lines;
2956 uint32_t selected_result;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002957 uint8_t bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002958
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002959 if (latency == 0 || !p->active || !p_params->enabled)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002960 return false;
2961
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002962 bytes_per_pixel = p_params->y_bytes_per_pixel ?
2963 p_params->y_bytes_per_pixel :
2964 p_params->bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002965 method1 = skl_wm_method1(p->pixel_rate,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002966 bytes_per_pixel,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002967 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002968 method2 = skl_wm_method2(p->pixel_rate,
2969 p->pipe_htotal,
2970 p_params->horiz_pixels,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002971 bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002972 p_params->tiling,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002973 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002974
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002975 plane_bytes_per_line = p_params->horiz_pixels * bytes_per_pixel;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00002976 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00002977
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002978 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
2979 p_params->tiling == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00002980 uint32_t min_scanlines = 4;
2981 uint32_t y_tile_minimum;
2982 if (intel_rotation_90_or_270(p_params->rotation)) {
2983 switch (p_params->bytes_per_pixel) {
2984 case 1:
2985 min_scanlines = 16;
2986 break;
2987 case 2:
2988 min_scanlines = 8;
2989 break;
2990 case 8:
2991 WARN(1, "Unsupported pixel depth for rotation");
kbuild test robot2f0b5792015-03-26 22:30:21 +08002992 }
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00002993 }
2994 y_tile_minimum = plane_blocks_per_line * min_scanlines;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00002995 selected_result = max(method2, y_tile_minimum);
2996 } else {
2997 if ((ddb_allocation / plane_blocks_per_line) >= 1)
2998 selected_result = min(method1, method2);
2999 else
3000 selected_result = method1;
3001 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003002
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003003 res_blocks = selected_result + 1;
3004 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003005
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003006 if (level >= 1 && level <= 7) {
3007 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
3008 p_params->tiling == I915_FORMAT_MOD_Yf_TILED)
3009 res_lines += 4;
3010 else
3011 res_blocks++;
3012 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003013
3014 if (res_blocks >= ddb_allocation || res_lines > 31)
Damien Lespiaue6d66172014-11-04 17:06:55 +00003015 return false;
3016
3017 *out_blocks = res_blocks;
3018 *out_lines = res_lines;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003019
3020 return true;
3021}
3022
3023static void skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3024 struct skl_ddb_allocation *ddb,
3025 struct skl_pipe_wm_parameters *p,
3026 enum pipe pipe,
3027 int level,
3028 int num_planes,
3029 struct skl_wm_level *result)
3030{
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003031 uint16_t ddb_blocks;
3032 int i;
3033
3034 for (i = 0; i < num_planes; i++) {
3035 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
3036
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003037 result->plane_en[i] = skl_compute_plane_wm(dev_priv,
3038 p, &p->plane[i],
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003039 ddb_blocks,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003040 level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003041 &result->plane_res_b[i],
3042 &result->plane_res_l[i]);
3043 }
3044
3045 ddb_blocks = skl_ddb_entry_size(&ddb->cursor[pipe]);
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003046 result->cursor_en = skl_compute_plane_wm(dev_priv, p, &p->cursor,
3047 ddb_blocks, level,
3048 &result->cursor_res_b,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003049 &result->cursor_res_l);
3050}
3051
Damien Lespiau407b50f2014-11-04 17:06:57 +00003052static uint32_t
3053skl_compute_linetime_wm(struct drm_crtc *crtc, struct skl_pipe_wm_parameters *p)
3054{
Matt Roper3ef00282015-03-09 10:19:24 -07003055 if (!to_intel_crtc(crtc)->active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003056 return 0;
3057
3058 return DIV_ROUND_UP(8 * p->pipe_htotal * 1000, p->pixel_rate);
3059
3060}
3061
3062static void skl_compute_transition_wm(struct drm_crtc *crtc,
3063 struct skl_pipe_wm_parameters *params,
Damien Lespiau9414f562014-11-04 17:06:58 +00003064 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003065{
Damien Lespiau9414f562014-11-04 17:06:58 +00003066 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3067 int i;
3068
Damien Lespiau407b50f2014-11-04 17:06:57 +00003069 if (!params->active)
3070 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003071
3072 /* Until we know more, just disable transition WMs */
3073 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3074 trans_wm->plane_en[i] = false;
3075 trans_wm->cursor_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003076}
3077
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003078static void skl_compute_pipe_wm(struct drm_crtc *crtc,
3079 struct skl_ddb_allocation *ddb,
3080 struct skl_pipe_wm_parameters *params,
3081 struct skl_pipe_wm *pipe_wm)
3082{
3083 struct drm_device *dev = crtc->dev;
3084 const struct drm_i915_private *dev_priv = dev->dev_private;
3085 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3086 int level, max_level = ilk_wm_max_level(dev);
3087
3088 for (level = 0; level <= max_level; level++) {
3089 skl_compute_wm_level(dev_priv, ddb, params, intel_crtc->pipe,
3090 level, intel_num_planes(intel_crtc),
3091 &pipe_wm->wm[level]);
3092 }
3093 pipe_wm->linetime = skl_compute_linetime_wm(crtc, params);
3094
Damien Lespiau9414f562014-11-04 17:06:58 +00003095 skl_compute_transition_wm(crtc, params, &pipe_wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003096}
3097
3098static void skl_compute_wm_results(struct drm_device *dev,
3099 struct skl_pipe_wm_parameters *p,
3100 struct skl_pipe_wm *p_wm,
3101 struct skl_wm_values *r,
3102 struct intel_crtc *intel_crtc)
3103{
3104 int level, max_level = ilk_wm_max_level(dev);
3105 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau9414f562014-11-04 17:06:58 +00003106 uint32_t temp;
3107 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003108
3109 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003110 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3111 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003112
3113 temp |= p_wm->wm[level].plane_res_l[i] <<
3114 PLANE_WM_LINES_SHIFT;
3115 temp |= p_wm->wm[level].plane_res_b[i];
3116 if (p_wm->wm[level].plane_en[i])
3117 temp |= PLANE_WM_EN;
3118
3119 r->plane[pipe][i][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003120 }
3121
3122 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003123
3124 temp |= p_wm->wm[level].cursor_res_l << PLANE_WM_LINES_SHIFT;
3125 temp |= p_wm->wm[level].cursor_res_b;
3126
3127 if (p_wm->wm[level].cursor_en)
3128 temp |= PLANE_WM_EN;
3129
3130 r->cursor[pipe][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003131
3132 }
3133
Damien Lespiau9414f562014-11-04 17:06:58 +00003134 /* transition WMs */
3135 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3136 temp = 0;
3137 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
3138 temp |= p_wm->trans_wm.plane_res_b[i];
3139 if (p_wm->trans_wm.plane_en[i])
3140 temp |= PLANE_WM_EN;
3141
3142 r->plane_trans[pipe][i] = temp;
3143 }
3144
3145 temp = 0;
3146 temp |= p_wm->trans_wm.cursor_res_l << PLANE_WM_LINES_SHIFT;
3147 temp |= p_wm->trans_wm.cursor_res_b;
3148 if (p_wm->trans_wm.cursor_en)
3149 temp |= PLANE_WM_EN;
3150
3151 r->cursor_trans[pipe] = temp;
3152
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003153 r->wm_linetime[pipe] = p_wm->linetime;
3154}
3155
Damien Lespiau16160e32014-11-04 17:06:53 +00003156static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, uint32_t reg,
3157 const struct skl_ddb_entry *entry)
3158{
3159 if (entry->end)
3160 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3161 else
3162 I915_WRITE(reg, 0);
3163}
3164
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003165static void skl_write_wm_values(struct drm_i915_private *dev_priv,
3166 const struct skl_wm_values *new)
3167{
3168 struct drm_device *dev = dev_priv->dev;
3169 struct intel_crtc *crtc;
3170
3171 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
3172 int i, level, max_level = ilk_wm_max_level(dev);
3173 enum pipe pipe = crtc->pipe;
3174
Damien Lespiau5d374d92014-11-04 17:07:00 +00003175 if (!new->dirty[pipe])
3176 continue;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003177
Damien Lespiau5d374d92014-11-04 17:07:00 +00003178 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
3179
3180 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003181 for (i = 0; i < intel_num_planes(crtc); i++)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003182 I915_WRITE(PLANE_WM(pipe, i, level),
3183 new->plane[pipe][i][level]);
3184 I915_WRITE(CUR_WM(pipe, level),
3185 new->cursor[pipe][level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003186 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003187 for (i = 0; i < intel_num_planes(crtc); i++)
3188 I915_WRITE(PLANE_WM_TRANS(pipe, i),
3189 new->plane_trans[pipe][i]);
3190 I915_WRITE(CUR_WM_TRANS(pipe), new->cursor_trans[pipe]);
3191
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003192 for (i = 0; i < intel_num_planes(crtc); i++) {
Damien Lespiau5d374d92014-11-04 17:07:00 +00003193 skl_ddb_entry_write(dev_priv,
3194 PLANE_BUF_CFG(pipe, i),
3195 &new->ddb.plane[pipe][i]);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003196 skl_ddb_entry_write(dev_priv,
3197 PLANE_NV12_BUF_CFG(pipe, i),
3198 &new->ddb.y_plane[pipe][i]);
3199 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003200
3201 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
3202 &new->ddb.cursor[pipe]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003203 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003204}
3205
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003206/*
3207 * When setting up a new DDB allocation arrangement, we need to correctly
3208 * sequence the times at which the new allocations for the pipes are taken into
3209 * account or we'll have pipes fetching from space previously allocated to
3210 * another pipe.
3211 *
3212 * Roughly the sequence looks like:
3213 * 1. re-allocate the pipe(s) with the allocation being reduced and not
3214 * overlapping with a previous light-up pipe (another way to put it is:
3215 * pipes with their new allocation strickly included into their old ones).
3216 * 2. re-allocate the other pipes that get their allocation reduced
3217 * 3. allocate the pipes having their allocation increased
3218 *
3219 * Steps 1. and 2. are here to take care of the following case:
3220 * - Initially DDB looks like this:
3221 * | B | C |
3222 * - enable pipe A.
3223 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
3224 * allocation
3225 * | A | B | C |
3226 *
3227 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
3228 */
3229
Damien Lespiaud21b7952014-11-04 17:07:03 +00003230static void
3231skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003232{
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003233 int plane;
3234
Damien Lespiaud21b7952014-11-04 17:07:03 +00003235 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
3236
Damien Lespiaudd740782015-02-28 14:54:08 +00003237 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003238 I915_WRITE(PLANE_SURF(pipe, plane),
3239 I915_READ(PLANE_SURF(pipe, plane)));
3240 }
3241 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3242}
3243
3244static bool
3245skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
3246 const struct skl_ddb_allocation *new,
3247 enum pipe pipe)
3248{
3249 uint16_t old_size, new_size;
3250
3251 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
3252 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
3253
3254 return old_size != new_size &&
3255 new->pipe[pipe].start >= old->pipe[pipe].start &&
3256 new->pipe[pipe].end <= old->pipe[pipe].end;
3257}
3258
3259static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
3260 struct skl_wm_values *new_values)
3261{
3262 struct drm_device *dev = dev_priv->dev;
3263 struct skl_ddb_allocation *cur_ddb, *new_ddb;
Ville Syrjäläc929cb42015-04-02 18:28:07 +03003264 bool reallocated[I915_MAX_PIPES] = {};
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003265 struct intel_crtc *crtc;
3266 enum pipe pipe;
3267
3268 new_ddb = &new_values->ddb;
3269 cur_ddb = &dev_priv->wm.skl_hw.ddb;
3270
3271 /*
3272 * First pass: flush the pipes with the new allocation contained into
3273 * the old space.
3274 *
3275 * We'll wait for the vblank on those pipes to ensure we can safely
3276 * re-allocate the freed space without this pipe fetching from it.
3277 */
3278 for_each_intel_crtc(dev, crtc) {
3279 if (!crtc->active)
3280 continue;
3281
3282 pipe = crtc->pipe;
3283
3284 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
3285 continue;
3286
Damien Lespiaud21b7952014-11-04 17:07:03 +00003287 skl_wm_flush_pipe(dev_priv, pipe, 1);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003288 intel_wait_for_vblank(dev, pipe);
3289
3290 reallocated[pipe] = true;
3291 }
3292
3293
3294 /*
3295 * Second pass: flush the pipes that are having their allocation
3296 * reduced, but overlapping with a previous allocation.
3297 *
3298 * Here as well we need to wait for the vblank to make sure the freed
3299 * space is not used anymore.
3300 */
3301 for_each_intel_crtc(dev, crtc) {
3302 if (!crtc->active)
3303 continue;
3304
3305 pipe = crtc->pipe;
3306
3307 if (reallocated[pipe])
3308 continue;
3309
3310 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3311 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
Damien Lespiaud21b7952014-11-04 17:07:03 +00003312 skl_wm_flush_pipe(dev_priv, pipe, 2);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003313 intel_wait_for_vblank(dev, pipe);
Sonika Jindald9d8e6b2014-12-11 17:58:15 +05303314 reallocated[pipe] = true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003315 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003316 }
3317
3318 /*
3319 * Third pass: flush the pipes that got more space allocated.
3320 *
3321 * We don't need to actively wait for the update here, next vblank
3322 * will just get more DDB space with the correct WM values.
3323 */
3324 for_each_intel_crtc(dev, crtc) {
3325 if (!crtc->active)
3326 continue;
3327
3328 pipe = crtc->pipe;
3329
3330 /*
3331 * At this point, only the pipes more space than before are
3332 * left to re-allocate.
3333 */
3334 if (reallocated[pipe])
3335 continue;
3336
Damien Lespiaud21b7952014-11-04 17:07:03 +00003337 skl_wm_flush_pipe(dev_priv, pipe, 3);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003338 }
3339}
3340
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003341static bool skl_update_pipe_wm(struct drm_crtc *crtc,
3342 struct skl_pipe_wm_parameters *params,
3343 struct intel_wm_config *config,
3344 struct skl_ddb_allocation *ddb, /* out */
3345 struct skl_pipe_wm *pipe_wm /* out */)
3346{
3347 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3348
3349 skl_compute_wm_pipe_parameters(crtc, params);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003350 skl_allocate_pipe_ddb(crtc, config, params, ddb);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003351 skl_compute_pipe_wm(crtc, ddb, params, pipe_wm);
3352
3353 if (!memcmp(&intel_crtc->wm.skl_active, pipe_wm, sizeof(*pipe_wm)))
3354 return false;
3355
3356 intel_crtc->wm.skl_active = *pipe_wm;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003357
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003358 return true;
3359}
3360
3361static void skl_update_other_pipe_wm(struct drm_device *dev,
3362 struct drm_crtc *crtc,
3363 struct intel_wm_config *config,
3364 struct skl_wm_values *r)
3365{
3366 struct intel_crtc *intel_crtc;
3367 struct intel_crtc *this_crtc = to_intel_crtc(crtc);
3368
3369 /*
3370 * If the WM update hasn't changed the allocation for this_crtc (the
3371 * crtc we are currently computing the new WM values for), other
3372 * enabled crtcs will keep the same allocation and we don't need to
3373 * recompute anything for them.
3374 */
3375 if (!skl_ddb_allocation_changed(&r->ddb, this_crtc))
3376 return;
3377
3378 /*
3379 * Otherwise, because of this_crtc being freshly enabled/disabled, the
3380 * other active pipes need new DDB allocation and WM values.
3381 */
3382 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
3383 base.head) {
3384 struct skl_pipe_wm_parameters params = {};
3385 struct skl_pipe_wm pipe_wm = {};
3386 bool wm_changed;
3387
3388 if (this_crtc->pipe == intel_crtc->pipe)
3389 continue;
3390
3391 if (!intel_crtc->active)
3392 continue;
3393
3394 wm_changed = skl_update_pipe_wm(&intel_crtc->base,
3395 &params, config,
3396 &r->ddb, &pipe_wm);
3397
3398 /*
3399 * If we end up re-computing the other pipe WM values, it's
3400 * because it was really needed, so we expect the WM values to
3401 * be different.
3402 */
3403 WARN_ON(!wm_changed);
3404
3405 skl_compute_wm_results(dev, &params, &pipe_wm, r, intel_crtc);
3406 r->dirty[intel_crtc->pipe] = true;
3407 }
3408}
3409
3410static void skl_update_wm(struct drm_crtc *crtc)
3411{
3412 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3413 struct drm_device *dev = crtc->dev;
3414 struct drm_i915_private *dev_priv = dev->dev_private;
3415 struct skl_pipe_wm_parameters params = {};
3416 struct skl_wm_values *results = &dev_priv->wm.skl_results;
3417 struct skl_pipe_wm pipe_wm = {};
3418 struct intel_wm_config config = {};
3419
3420 memset(results, 0, sizeof(*results));
3421
3422 skl_compute_wm_global_parameters(dev, &config);
3423
3424 if (!skl_update_pipe_wm(crtc, &params, &config,
3425 &results->ddb, &pipe_wm))
3426 return;
3427
3428 skl_compute_wm_results(dev, &params, &pipe_wm, results, intel_crtc);
3429 results->dirty[intel_crtc->pipe] = true;
3430
3431 skl_update_other_pipe_wm(dev, crtc, &config, results);
3432 skl_write_wm_values(dev_priv, results);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003433 skl_flush_wm_values(dev_priv, results);
Damien Lespiau53b0deb2014-11-04 17:06:48 +00003434
3435 /* store the new configuration */
3436 dev_priv->wm.skl_hw = *results;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003437}
3438
3439static void
3440skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc,
3441 uint32_t sprite_width, uint32_t sprite_height,
3442 int pixel_size, bool enabled, bool scaled)
3443{
3444 struct intel_plane *intel_plane = to_intel_plane(plane);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003445 struct drm_framebuffer *fb = plane->state->fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003446
3447 intel_plane->wm.enabled = enabled;
3448 intel_plane->wm.scaled = scaled;
3449 intel_plane->wm.horiz_pixels = sprite_width;
3450 intel_plane->wm.vert_pixels = sprite_height;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003451 intel_plane->wm.tiling = DRM_FORMAT_MOD_NONE;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003452
3453 /* For planar: Bpp is for UV plane, y_Bpp is for Y plane */
3454 intel_plane->wm.bytes_per_pixel =
3455 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3456 drm_format_plane_cpp(plane->state->fb->pixel_format, 1) : pixel_size;
3457 intel_plane->wm.y_bytes_per_pixel =
3458 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3459 drm_format_plane_cpp(plane->state->fb->pixel_format, 0) : 0;
3460
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003461 /*
3462 * Framebuffer can be NULL on plane disable, but it does not
3463 * matter for watermarks if we assume no tiling in that case.
3464 */
3465 if (fb)
3466 intel_plane->wm.tiling = fb->modifier[0];
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003467 intel_plane->wm.rotation = plane->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003468
3469 skl_update_wm(crtc);
3470}
3471
Imre Deak820c1982013-12-17 14:46:36 +02003472static void ilk_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003473{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003474 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003475 struct drm_device *dev = crtc->dev;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003476 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003477 struct ilk_wm_maximums max;
3478 struct ilk_pipe_wm_parameters params = {};
3479 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003480 enum intel_ddb_partitioning partitioning;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003481 struct intel_pipe_wm pipe_wm = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003482 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003483 struct intel_wm_config config = {};
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003484
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003485 ilk_compute_wm_parameters(crtc, &params);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003486
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003487 intel_compute_pipe_wm(crtc, &params, &pipe_wm);
3488
3489 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
3490 return;
3491
3492 intel_crtc->wm.active = pipe_wm;
3493
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003494 ilk_compute_wm_config(dev, &config);
3495
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003496 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003497 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03003498
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003499 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03003500 if (INTEL_INFO(dev)->gen >= 7 &&
3501 config.num_pipes_active == 1 && config.sprites_enabled) {
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003502 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003503 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003504
Imre Deak820c1982013-12-17 14:46:36 +02003505 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003506 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003507 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003508 }
3509
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003510 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003511 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003512
Imre Deak820c1982013-12-17 14:46:36 +02003513 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003514
Imre Deak820c1982013-12-17 14:46:36 +02003515 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003516}
3517
Damien Lespiaued57cb82014-07-15 09:21:24 +02003518static void
3519ilk_update_sprite_wm(struct drm_plane *plane,
3520 struct drm_crtc *crtc,
3521 uint32_t sprite_width, uint32_t sprite_height,
3522 int pixel_size, bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03003523{
Ville Syrjälä8553c182013-12-05 15:51:39 +02003524 struct drm_device *dev = plane->dev;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003525 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003526
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003527 intel_plane->wm.enabled = enabled;
3528 intel_plane->wm.scaled = scaled;
3529 intel_plane->wm.horiz_pixels = sprite_width;
Damien Lespiaued57cb82014-07-15 09:21:24 +02003530 intel_plane->wm.vert_pixels = sprite_width;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003531 intel_plane->wm.bytes_per_pixel = pixel_size;
Paulo Zanoni526682e2013-05-24 11:59:18 -03003532
Ville Syrjälä8553c182013-12-05 15:51:39 +02003533 /*
3534 * IVB workaround: must disable low power watermarks for at least
3535 * one frame before enabling scaling. LP watermarks can be re-enabled
3536 * when scaling is disabled.
3537 *
3538 * WaCxSRDisabledForSpriteScaling:ivb
3539 */
3540 if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev))
3541 intel_wait_for_vblank(dev, intel_plane->pipe);
3542
Imre Deak820c1982013-12-17 14:46:36 +02003543 ilk_update_wm(crtc);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003544}
3545
Pradeep Bhat30789992014-11-04 17:06:45 +00003546static void skl_pipe_wm_active_state(uint32_t val,
3547 struct skl_pipe_wm *active,
3548 bool is_transwm,
3549 bool is_cursor,
3550 int i,
3551 int level)
3552{
3553 bool is_enabled = (val & PLANE_WM_EN) != 0;
3554
3555 if (!is_transwm) {
3556 if (!is_cursor) {
3557 active->wm[level].plane_en[i] = is_enabled;
3558 active->wm[level].plane_res_b[i] =
3559 val & PLANE_WM_BLOCKS_MASK;
3560 active->wm[level].plane_res_l[i] =
3561 (val >> PLANE_WM_LINES_SHIFT) &
3562 PLANE_WM_LINES_MASK;
3563 } else {
3564 active->wm[level].cursor_en = is_enabled;
3565 active->wm[level].cursor_res_b =
3566 val & PLANE_WM_BLOCKS_MASK;
3567 active->wm[level].cursor_res_l =
3568 (val >> PLANE_WM_LINES_SHIFT) &
3569 PLANE_WM_LINES_MASK;
3570 }
3571 } else {
3572 if (!is_cursor) {
3573 active->trans_wm.plane_en[i] = is_enabled;
3574 active->trans_wm.plane_res_b[i] =
3575 val & PLANE_WM_BLOCKS_MASK;
3576 active->trans_wm.plane_res_l[i] =
3577 (val >> PLANE_WM_LINES_SHIFT) &
3578 PLANE_WM_LINES_MASK;
3579 } else {
3580 active->trans_wm.cursor_en = is_enabled;
3581 active->trans_wm.cursor_res_b =
3582 val & PLANE_WM_BLOCKS_MASK;
3583 active->trans_wm.cursor_res_l =
3584 (val >> PLANE_WM_LINES_SHIFT) &
3585 PLANE_WM_LINES_MASK;
3586 }
3587 }
3588}
3589
3590static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3591{
3592 struct drm_device *dev = crtc->dev;
3593 struct drm_i915_private *dev_priv = dev->dev_private;
3594 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
3595 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3596 struct skl_pipe_wm *active = &intel_crtc->wm.skl_active;
3597 enum pipe pipe = intel_crtc->pipe;
3598 int level, i, max_level;
3599 uint32_t temp;
3600
3601 max_level = ilk_wm_max_level(dev);
3602
3603 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3604
3605 for (level = 0; level <= max_level; level++) {
3606 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3607 hw->plane[pipe][i][level] =
3608 I915_READ(PLANE_WM(pipe, i, level));
3609 hw->cursor[pipe][level] = I915_READ(CUR_WM(pipe, level));
3610 }
3611
3612 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3613 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
3614 hw->cursor_trans[pipe] = I915_READ(CUR_WM_TRANS(pipe));
3615
Matt Roper3ef00282015-03-09 10:19:24 -07003616 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00003617 return;
3618
3619 hw->dirty[pipe] = true;
3620
3621 active->linetime = hw->wm_linetime[pipe];
3622
3623 for (level = 0; level <= max_level; level++) {
3624 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3625 temp = hw->plane[pipe][i][level];
3626 skl_pipe_wm_active_state(temp, active, false,
3627 false, i, level);
3628 }
3629 temp = hw->cursor[pipe][level];
3630 skl_pipe_wm_active_state(temp, active, false, true, i, level);
3631 }
3632
3633 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3634 temp = hw->plane_trans[pipe][i];
3635 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
3636 }
3637
3638 temp = hw->cursor_trans[pipe];
3639 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
3640}
3641
3642void skl_wm_get_hw_state(struct drm_device *dev)
3643{
Damien Lespiaua269c582014-11-04 17:06:49 +00003644 struct drm_i915_private *dev_priv = dev->dev_private;
3645 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00003646 struct drm_crtc *crtc;
3647
Damien Lespiaua269c582014-11-04 17:06:49 +00003648 skl_ddb_get_hw_state(dev_priv, ddb);
Pradeep Bhat30789992014-11-04 17:06:45 +00003649 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3650 skl_pipe_wm_get_hw_state(crtc);
3651}
3652
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003653static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3654{
3655 struct drm_device *dev = crtc->dev;
3656 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003657 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003658 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3659 struct intel_pipe_wm *active = &intel_crtc->wm.active;
3660 enum pipe pipe = intel_crtc->pipe;
3661 static const unsigned int wm0_pipe_reg[] = {
3662 [PIPE_A] = WM0_PIPEA_ILK,
3663 [PIPE_B] = WM0_PIPEB_ILK,
3664 [PIPE_C] = WM0_PIPEC_IVB,
3665 };
3666
3667 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003668 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02003669 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003670
Matt Roper3ef00282015-03-09 10:19:24 -07003671 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003672
3673 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003674 u32 tmp = hw->wm_pipe[pipe];
3675
3676 /*
3677 * For active pipes LP0 watermark is marked as
3678 * enabled, and LP1+ watermaks as disabled since
3679 * we can't really reverse compute them in case
3680 * multiple pipes are active.
3681 */
3682 active->wm[0].enable = true;
3683 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3684 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3685 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3686 active->linetime = hw->wm_linetime[pipe];
3687 } else {
3688 int level, max_level = ilk_wm_max_level(dev);
3689
3690 /*
3691 * For inactive pipes, all watermark levels
3692 * should be marked as enabled but zeroed,
3693 * which is what we'd compute them to.
3694 */
3695 for (level = 0; level <= max_level; level++)
3696 active->wm[level].enable = true;
3697 }
3698}
3699
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03003700#define _FW_WM(value, plane) \
3701 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
3702#define _FW_WM_VLV(value, plane) \
3703 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
3704
3705static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
3706 struct vlv_wm_values *wm)
3707{
3708 enum pipe pipe;
3709 uint32_t tmp;
3710
3711 for_each_pipe(dev_priv, pipe) {
3712 tmp = I915_READ(VLV_DDL(pipe));
3713
3714 wm->ddl[pipe].primary =
3715 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3716 wm->ddl[pipe].cursor =
3717 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3718 wm->ddl[pipe].sprite[0] =
3719 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3720 wm->ddl[pipe].sprite[1] =
3721 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3722 }
3723
3724 tmp = I915_READ(DSPFW1);
3725 wm->sr.plane = _FW_WM(tmp, SR);
3726 wm->pipe[PIPE_B].cursor = _FW_WM(tmp, CURSORB);
3727 wm->pipe[PIPE_B].primary = _FW_WM_VLV(tmp, PLANEB);
3728 wm->pipe[PIPE_A].primary = _FW_WM_VLV(tmp, PLANEA);
3729
3730 tmp = I915_READ(DSPFW2);
3731 wm->pipe[PIPE_A].sprite[1] = _FW_WM_VLV(tmp, SPRITEB);
3732 wm->pipe[PIPE_A].cursor = _FW_WM(tmp, CURSORA);
3733 wm->pipe[PIPE_A].sprite[0] = _FW_WM_VLV(tmp, SPRITEA);
3734
3735 tmp = I915_READ(DSPFW3);
3736 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
3737
3738 if (IS_CHERRYVIEW(dev_priv)) {
3739 tmp = I915_READ(DSPFW7_CHV);
3740 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
3741 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
3742
3743 tmp = I915_READ(DSPFW8_CHV);
3744 wm->pipe[PIPE_C].sprite[1] = _FW_WM_VLV(tmp, SPRITEF);
3745 wm->pipe[PIPE_C].sprite[0] = _FW_WM_VLV(tmp, SPRITEE);
3746
3747 tmp = I915_READ(DSPFW9_CHV);
3748 wm->pipe[PIPE_C].primary = _FW_WM_VLV(tmp, PLANEC);
3749 wm->pipe[PIPE_C].cursor = _FW_WM(tmp, CURSORC);
3750
3751 tmp = I915_READ(DSPHOWM);
3752 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
3753 wm->pipe[PIPE_C].sprite[1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
3754 wm->pipe[PIPE_C].sprite[0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
3755 wm->pipe[PIPE_C].primary |= _FW_WM(tmp, PLANEC_HI) << 8;
3756 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
3757 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
3758 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
3759 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
3760 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
3761 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
3762 } else {
3763 tmp = I915_READ(DSPFW7);
3764 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
3765 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
3766
3767 tmp = I915_READ(DSPHOWM);
3768 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
3769 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
3770 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
3771 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
3772 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
3773 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
3774 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
3775 }
3776}
3777
3778#undef _FW_WM
3779#undef _FW_WM_VLV
3780
3781void vlv_wm_get_hw_state(struct drm_device *dev)
3782{
3783 struct drm_i915_private *dev_priv = to_i915(dev);
3784 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
3785 struct intel_plane *plane;
3786 enum pipe pipe;
3787 u32 val;
3788
3789 vlv_read_wm_values(dev_priv, wm);
3790
3791 for_each_intel_plane(dev, plane) {
3792 switch (plane->base.type) {
3793 int sprite;
3794 case DRM_PLANE_TYPE_CURSOR:
3795 plane->wm.fifo_size = 63;
3796 break;
3797 case DRM_PLANE_TYPE_PRIMARY:
3798 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, 0);
3799 break;
3800 case DRM_PLANE_TYPE_OVERLAY:
3801 sprite = plane->plane;
3802 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, sprite + 1);
3803 break;
3804 }
3805 }
3806
3807 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
3808 wm->level = VLV_WM_LEVEL_PM2;
3809
3810 if (IS_CHERRYVIEW(dev_priv)) {
3811 mutex_lock(&dev_priv->rps.hw_lock);
3812
3813 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
3814 if (val & DSP_MAXFIFO_PM5_ENABLE)
3815 wm->level = VLV_WM_LEVEL_PM5;
3816
3817 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
3818 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
3819 wm->level = VLV_WM_LEVEL_DDR_DVFS;
3820
3821 mutex_unlock(&dev_priv->rps.hw_lock);
3822 }
3823
3824 for_each_pipe(dev_priv, pipe)
3825 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
3826 pipe_name(pipe), wm->pipe[pipe].primary, wm->pipe[pipe].cursor,
3827 wm->pipe[pipe].sprite[0], wm->pipe[pipe].sprite[1]);
3828
3829 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
3830 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
3831}
3832
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003833void ilk_wm_get_hw_state(struct drm_device *dev)
3834{
3835 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003836 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003837 struct drm_crtc *crtc;
3838
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01003839 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003840 ilk_pipe_wm_get_hw_state(crtc);
3841
3842 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
3843 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
3844 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
3845
3846 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02003847 if (INTEL_INFO(dev)->gen >= 7) {
3848 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
3849 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
3850 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003851
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003852 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003853 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
3854 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
3855 else if (IS_IVYBRIDGE(dev))
3856 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
3857 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003858
3859 hw->enable_fbc_wm =
3860 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
3861}
3862
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003863/**
3864 * intel_update_watermarks - update FIFO watermark values based on current modes
3865 *
3866 * Calculate watermark values for the various WM regs based on current mode
3867 * and plane configuration.
3868 *
3869 * There are several cases to deal with here:
3870 * - normal (i.e. non-self-refresh)
3871 * - self-refresh (SR) mode
3872 * - lines are large relative to FIFO size (buffer can hold up to 2)
3873 * - lines are small relative to FIFO size (buffer can hold more than 2
3874 * lines), so need to account for TLB latency
3875 *
3876 * The normal calculation is:
3877 * watermark = dotclock * bytes per pixel * latency
3878 * where latency is platform & configuration dependent (we assume pessimal
3879 * values here).
3880 *
3881 * The SR calculation is:
3882 * watermark = (trunc(latency/line time)+1) * surface width *
3883 * bytes per pixel
3884 * where
3885 * line time = htotal / dotclock
3886 * surface width = hdisplay for normal plane and 64 for cursor
3887 * and latency is assumed to be high, as above.
3888 *
3889 * The final value programmed to the register should always be rounded up,
3890 * and include an extra 2 entries to account for clock crossings.
3891 *
3892 * We don't use the sprite, so we can ignore that. And on Crestline we have
3893 * to set the non-SR watermarks to 8.
3894 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003895void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003896{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003897 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003898
3899 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003900 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003901}
3902
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003903void intel_update_sprite_watermarks(struct drm_plane *plane,
3904 struct drm_crtc *crtc,
Damien Lespiaued57cb82014-07-15 09:21:24 +02003905 uint32_t sprite_width,
3906 uint32_t sprite_height,
3907 int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003908 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003909{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003910 struct drm_i915_private *dev_priv = plane->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003911
3912 if (dev_priv->display.update_sprite_wm)
Damien Lespiaued57cb82014-07-15 09:21:24 +02003913 dev_priv->display.update_sprite_wm(plane, crtc,
3914 sprite_width, sprite_height,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03003915 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03003916}
3917
Daniel Vetter92703882012-08-09 16:46:01 +02003918/**
3919 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02003920 */
3921DEFINE_SPINLOCK(mchdev_lock);
3922
3923/* Global for IPS driver to get at the current i915 device. Protected by
3924 * mchdev_lock. */
3925static struct drm_i915_private *i915_mch_dev;
3926
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003927bool ironlake_set_drps(struct drm_device *dev, u8 val)
3928{
3929 struct drm_i915_private *dev_priv = dev->dev_private;
3930 u16 rgvswctl;
3931
Daniel Vetter92703882012-08-09 16:46:01 +02003932 assert_spin_locked(&mchdev_lock);
3933
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003934 rgvswctl = I915_READ16(MEMSWCTL);
3935 if (rgvswctl & MEMCTL_CMD_STS) {
3936 DRM_DEBUG("gpu busy, RCS change rejected\n");
3937 return false; /* still busy with another command */
3938 }
3939
3940 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
3941 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
3942 I915_WRITE16(MEMSWCTL, rgvswctl);
3943 POSTING_READ16(MEMSWCTL);
3944
3945 rgvswctl |= MEMCTL_CMD_STS;
3946 I915_WRITE16(MEMSWCTL, rgvswctl);
3947
3948 return true;
3949}
3950
Daniel Vetter8090c6b2012-06-24 16:42:32 +02003951static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003952{
3953 struct drm_i915_private *dev_priv = dev->dev_private;
3954 u32 rgvmodectl = I915_READ(MEMMODECTL);
3955 u8 fmax, fmin, fstart, vstart;
3956
Daniel Vetter92703882012-08-09 16:46:01 +02003957 spin_lock_irq(&mchdev_lock);
3958
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003959 /* Enable temp reporting */
3960 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
3961 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
3962
3963 /* 100ms RC evaluation intervals */
3964 I915_WRITE(RCUPEI, 100000);
3965 I915_WRITE(RCDNEI, 100000);
3966
3967 /* Set max/min thresholds to 90ms and 80ms respectively */
3968 I915_WRITE(RCBMAXAVG, 90000);
3969 I915_WRITE(RCBMINAVG, 80000);
3970
3971 I915_WRITE(MEMIHYST, 1);
3972
3973 /* Set up min, max, and cur for interrupt handling */
3974 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
3975 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
3976 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
3977 MEMMODE_FSTART_SHIFT;
3978
3979 vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >>
3980 PXVFREQ_PX_SHIFT;
3981
Daniel Vetter20e4d402012-08-08 23:35:39 +02003982 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
3983 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003984
Daniel Vetter20e4d402012-08-08 23:35:39 +02003985 dev_priv->ips.max_delay = fstart;
3986 dev_priv->ips.min_delay = fmin;
3987 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03003988
3989 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
3990 fmax, fmin, fstart);
3991
3992 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
3993
3994 /*
3995 * Interrupts will be enabled in ironlake_irq_postinstall
3996 */
3997
3998 I915_WRITE(VIDSTART, vstart);
3999 POSTING_READ(VIDSTART);
4000
4001 rgvmodectl |= MEMMODE_SWMODE_EN;
4002 I915_WRITE(MEMMODECTL, rgvmodectl);
4003
Daniel Vetter92703882012-08-09 16:46:01 +02004004 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004005 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetter92703882012-08-09 16:46:01 +02004006 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004007
4008 ironlake_set_drps(dev, fstart);
4009
Daniel Vetter20e4d402012-08-08 23:35:39 +02004010 dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) +
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004011 I915_READ(0x112e0);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004012 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
4013 dev_priv->ips.last_count2 = I915_READ(0x112f4);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004014 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004015
4016 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004017}
4018
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004019static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004020{
4021 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02004022 u16 rgvswctl;
4023
4024 spin_lock_irq(&mchdev_lock);
4025
4026 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004027
4028 /* Ack interrupts, disable EFC interrupt */
4029 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4030 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4031 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4032 I915_WRITE(DEIIR, DE_PCU_EVENT);
4033 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4034
4035 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004036 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetter92703882012-08-09 16:46:01 +02004037 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004038 rgvswctl |= MEMCTL_CMD_STS;
4039 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetter92703882012-08-09 16:46:01 +02004040 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004041
Daniel Vetter92703882012-08-09 16:46:01 +02004042 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004043}
4044
Daniel Vetteracbe9472012-07-26 11:50:05 +02004045/* There's a funny hw issue where the hw returns all 0 when reading from
4046 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4047 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4048 * all limits and the gpu stuck at whatever frequency it is at atm).
4049 */
Akash Goel74ef1172015-03-06 11:07:19 +05304050static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004051{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004052 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004053
Daniel Vetter20b46e52012-07-26 11:16:14 +02004054 /* Only set the down limit when we've reached the lowest level to avoid
4055 * getting more interrupts, otherwise leave this clear. This prevents a
4056 * race in the hw when coming out of rc6: There's a tiny window where
4057 * the hw runs at the minimal clock before selecting the desired
4058 * frequency, if the down threshold expires in that window we will not
4059 * receive a down interrupt. */
Akash Goel74ef1172015-03-06 11:07:19 +05304060 if (IS_GEN9(dev_priv->dev)) {
4061 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4062 if (val <= dev_priv->rps.min_freq_softlimit)
4063 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4064 } else {
4065 limits = dev_priv->rps.max_freq_softlimit << 24;
4066 if (val <= dev_priv->rps.min_freq_softlimit)
4067 limits |= dev_priv->rps.min_freq_softlimit << 16;
4068 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004069
4070 return limits;
4071}
4072
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004073static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4074{
4075 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304076 u32 threshold_up = 0, threshold_down = 0; /* in % */
4077 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004078
4079 new_power = dev_priv->rps.power;
4080 switch (dev_priv->rps.power) {
4081 case LOW_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004082 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004083 new_power = BETWEEN;
4084 break;
4085
4086 case BETWEEN:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004087 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004088 new_power = LOW_POWER;
Ben Widawskyb39fb292014-03-19 18:31:11 -07004089 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004090 new_power = HIGH_POWER;
4091 break;
4092
4093 case HIGH_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004094 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 +01004095 new_power = BETWEEN;
4096 break;
4097 }
4098 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004099 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004100 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004101 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004102 new_power = HIGH_POWER;
4103 if (new_power == dev_priv->rps.power)
4104 return;
4105
4106 /* Note the units here are not exactly 1us, but 1280ns. */
4107 switch (new_power) {
4108 case LOW_POWER:
4109 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304110 ei_up = 16000;
4111 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004112
4113 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304114 ei_down = 32000;
4115 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004116 break;
4117
4118 case BETWEEN:
4119 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304120 ei_up = 13000;
4121 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004122
4123 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304124 ei_down = 32000;
4125 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004126 break;
4127
4128 case HIGH_POWER:
4129 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304130 ei_up = 10000;
4131 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004132
4133 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304134 ei_down = 32000;
4135 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004136 break;
4137 }
4138
Akash Goel8a586432015-03-06 11:07:18 +05304139 I915_WRITE(GEN6_RP_UP_EI,
4140 GT_INTERVAL_FROM_US(dev_priv, ei_up));
4141 I915_WRITE(GEN6_RP_UP_THRESHOLD,
4142 GT_INTERVAL_FROM_US(dev_priv, (ei_up * threshold_up / 100)));
4143
4144 I915_WRITE(GEN6_RP_DOWN_EI,
4145 GT_INTERVAL_FROM_US(dev_priv, ei_down));
4146 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
4147 GT_INTERVAL_FROM_US(dev_priv, (ei_down * threshold_down / 100)));
4148
4149 I915_WRITE(GEN6_RP_CONTROL,
4150 GEN6_RP_MEDIA_TURBO |
4151 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4152 GEN6_RP_MEDIA_IS_GFX |
4153 GEN6_RP_ENABLE |
4154 GEN6_RP_UP_BUSY_AVG |
4155 GEN6_RP_DOWN_IDLE_AVG);
4156
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004157 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004158 dev_priv->rps.up_threshold = threshold_up;
4159 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004160 dev_priv->rps.last_adj = 0;
4161}
4162
Chris Wilson2876ce72014-03-28 08:03:34 +00004163static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4164{
4165 u32 mask = 0;
4166
4167 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004168 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004169 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004170 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004171
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004172 mask &= dev_priv->pm_rps_events;
4173
Imre Deak59d02a12014-12-19 19:33:26 +02004174 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004175}
4176
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004177/* gen6_set_rps is called to update the frequency request, but should also be
4178 * called when the range (min_delay and max_delay) is modified so that we can
4179 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004180static void gen6_set_rps(struct drm_device *dev, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004181{
4182 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004183
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004184 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004185 WARN_ON(val > dev_priv->rps.max_freq);
4186 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004187
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004188 /* min/max delay may still have been modified so be sure to
4189 * write the limits value.
4190 */
4191 if (val != dev_priv->rps.cur_freq) {
4192 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004193
Akash Goel57041952015-03-06 11:07:17 +05304194 if (IS_GEN9(dev))
4195 I915_WRITE(GEN6_RPNSWREQ,
4196 GEN9_FREQUENCY(val));
4197 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004198 I915_WRITE(GEN6_RPNSWREQ,
4199 HSW_FREQUENCY(val));
4200 else
4201 I915_WRITE(GEN6_RPNSWREQ,
4202 GEN6_FREQUENCY(val) |
4203 GEN6_OFFSET(0) |
4204 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004205 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004206
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004207 /* Make sure we continue to get interrupts
4208 * until we hit the minimum or maximum frequencies.
4209 */
Akash Goel74ef1172015-03-06 11:07:19 +05304210 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004211 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004212
Ben Widawskyd5570a72012-09-07 19:43:41 -07004213 POSTING_READ(GEN6_RPNSWREQ);
4214
Ben Widawskyb39fb292014-03-19 18:31:11 -07004215 dev_priv->rps.cur_freq = val;
Daniel Vetterbe2cde92012-08-30 13:26:48 +02004216 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004217}
4218
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004219static void valleyview_set_rps(struct drm_device *dev, u8 val)
4220{
4221 struct drm_i915_private *dev_priv = dev->dev_private;
4222
4223 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004224 WARN_ON(val > dev_priv->rps.max_freq);
4225 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004226
4227 if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1),
4228 "Odd GPU freq value\n"))
4229 val &= ~1;
4230
Chris Wilson8fb55192015-04-07 16:20:28 +01004231 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004232 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004233 if (!IS_CHERRYVIEW(dev_priv))
4234 gen6_set_rps_thresholds(dev_priv, val);
4235 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004236
4237 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4238
4239 dev_priv->rps.cur_freq = val;
4240 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4241}
4242
Deepak Sa7f6e232015-05-09 18:04:44 +05304243/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304244 *
4245 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304246 * 1. Forcewake Media well.
4247 * 2. Request idle freq.
4248 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304249*/
4250static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4251{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004252 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304253
Chris Wilsonaed242f2015-03-18 09:48:21 +00004254 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304255 return;
4256
Deepak Sa7f6e232015-05-09 18:04:44 +05304257 /* Wake up the media well, as that takes a lot less
4258 * power than the Render well. */
4259 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
4260 valleyview_set_rps(dev_priv->dev, val);
4261 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05304262}
4263
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004264void gen6_rps_busy(struct drm_i915_private *dev_priv)
4265{
4266 mutex_lock(&dev_priv->rps.hw_lock);
4267 if (dev_priv->rps.enabled) {
4268 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4269 gen6_rps_reset_ei(dev_priv);
4270 I915_WRITE(GEN6_PMINTRMSK,
4271 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
4272 }
4273 mutex_unlock(&dev_priv->rps.hw_lock);
4274}
4275
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004276void gen6_rps_idle(struct drm_i915_private *dev_priv)
4277{
Damien Lespiau691bb712013-12-12 14:36:36 +00004278 struct drm_device *dev = dev_priv->dev;
4279
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004280 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004281 if (dev_priv->rps.enabled) {
Ville Syrjälä21a11ff2015-01-27 16:36:15 +02004282 if (IS_VALLEYVIEW(dev))
Deepak S76c3552f2014-01-30 23:08:16 +05304283 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004284 else
Chris Wilsonaed242f2015-03-18 09:48:21 +00004285 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004286 dev_priv->rps.last_adj = 0;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004287 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004288 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004289 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004290
Chris Wilson8d3afd72015-05-21 21:01:47 +01004291 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004292 while (!list_empty(&dev_priv->rps.clients))
4293 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004294 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004295}
4296
Chris Wilson1854d5c2015-04-07 16:20:32 +01004297void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01004298 struct intel_rps_client *rps,
4299 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004300{
Chris Wilson8d3afd72015-05-21 21:01:47 +01004301 /* This is intentionally racy! We peek at the state here, then
4302 * validate inside the RPS worker.
4303 */
4304 if (!(dev_priv->mm.busy &&
4305 dev_priv->rps.enabled &&
4306 dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit))
4307 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004308
Chris Wilsone61b9952015-04-27 13:41:24 +01004309 /* Force a RPS boost (and don't count it against the client) if
4310 * the GPU is severely congested.
4311 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004312 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01004313 rps = NULL;
4314
Chris Wilson8d3afd72015-05-21 21:01:47 +01004315 spin_lock(&dev_priv->rps.client_lock);
4316 if (rps == NULL || list_empty(&rps->link)) {
4317 spin_lock_irq(&dev_priv->irq_lock);
4318 if (dev_priv->rps.interrupts_enabled) {
4319 dev_priv->rps.client_boost = true;
4320 queue_work(dev_priv->wq, &dev_priv->rps.work);
4321 }
4322 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004323
Chris Wilson2e1b8732015-04-27 13:41:22 +01004324 if (rps != NULL) {
4325 list_add(&rps->link, &dev_priv->rps.clients);
4326 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01004327 } else
4328 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01004329 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004330 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004331}
4332
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004333void intel_set_rps(struct drm_device *dev, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004334{
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004335 if (IS_VALLEYVIEW(dev))
4336 valleyview_set_rps(dev, val);
4337 else
4338 gen6_set_rps(dev, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004339}
4340
Zhe Wang20e49362014-11-04 17:07:05 +00004341static void gen9_disable_rps(struct drm_device *dev)
4342{
4343 struct drm_i915_private *dev_priv = dev->dev_private;
4344
4345 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004346 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004347}
4348
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004349static void gen6_disable_rps(struct drm_device *dev)
4350{
4351 struct drm_i915_private *dev_priv = dev->dev_private;
4352
4353 I915_WRITE(GEN6_RC_CONTROL, 0);
4354 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004355}
4356
Deepak S38807742014-05-23 21:00:15 +05304357static void cherryview_disable_rps(struct drm_device *dev)
4358{
4359 struct drm_i915_private *dev_priv = dev->dev_private;
4360
4361 I915_WRITE(GEN6_RC_CONTROL, 0);
4362}
4363
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004364static void valleyview_disable_rps(struct drm_device *dev)
4365{
4366 struct drm_i915_private *dev_priv = dev->dev_private;
4367
Deepak S98a2e5f2014-08-18 10:35:27 -07004368 /* we're doing forcewake before Disabling RC6,
4369 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02004370 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07004371
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004372 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004373
Mika Kuoppala59bad942015-01-16 11:34:40 +02004374 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004375}
4376
Ben Widawskydc39fff2013-10-18 12:32:07 -07004377static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
4378{
Imre Deak91ca6892014-04-14 20:24:25 +03004379 if (IS_VALLEYVIEW(dev)) {
4380 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
4381 mode = GEN6_RC_CTL_RC6_ENABLE;
4382 else
4383 mode = 0;
4384 }
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004385 if (HAS_RC6p(dev))
4386 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
4387 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
4388 (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
4389 (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
4390
4391 else
4392 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
4393 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off");
Ben Widawskydc39fff2013-10-18 12:32:07 -07004394}
4395
Imre Deake6069ca2014-04-18 16:01:02 +03004396static int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004397{
Daniel Vettere7d66d82015-06-15 23:23:54 +02004398 /* No RC6 before Ironlake and code is gone for ilk. */
4399 if (INTEL_INFO(dev)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03004400 return 0;
4401
Daniel Vetter456470e2012-08-08 23:35:40 +02004402 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03004403 if (enable_rc6 >= 0) {
4404 int mask;
4405
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004406 if (HAS_RC6p(dev))
Imre Deake6069ca2014-04-18 16:01:02 +03004407 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
4408 INTEL_RC6pp_ENABLE;
4409 else
4410 mask = INTEL_RC6_ENABLE;
4411
4412 if ((enable_rc6 & mask) != enable_rc6)
Daniel Vetter8dfd1f02014-08-04 11:15:56 +02004413 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
4414 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03004415
4416 return enable_rc6 & mask;
4417 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004418
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004419 if (IS_IVYBRIDGE(dev))
Ben Widawskycca84a12014-01-28 20:25:38 -08004420 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004421
4422 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004423}
4424
Imre Deake6069ca2014-04-18 16:01:02 +03004425int intel_enable_rc6(const struct drm_device *dev)
4426{
4427 return i915.enable_rc6;
4428}
4429
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004430static void gen6_init_rps_frequencies(struct drm_device *dev)
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004431{
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004432 struct drm_i915_private *dev_priv = dev->dev_private;
4433 uint32_t rp_state_cap;
4434 u32 ddcc_status = 0;
4435 int ret;
4436
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004437 /* All of these values are in units of 50MHz */
4438 dev_priv->rps.cur_freq = 0;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004439 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Bob Paauwe35040562015-06-25 14:54:07 -07004440 if (IS_BROXTON(dev)) {
4441 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
4442 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
4443 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4444 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
4445 } else {
4446 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
4447 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
4448 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4449 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
4450 }
4451
Akash Goelcee991c2015-03-06 11:07:16 +05304452 if (IS_SKYLAKE(dev)) {
4453 /* Store the frequency values in 16.66 MHZ units, which is
4454 the natural hardware unit for SKL */
4455 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
4456 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
4457 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
4458 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004459 /* hw_max = RP0 until we check for overclocking */
4460 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
4461
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004462 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
4463 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
4464 ret = sandybridge_pcode_read(dev_priv,
4465 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
4466 &ddcc_status);
4467 if (0 == ret)
4468 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08004469 clamp_t(u8,
4470 ((ddcc_status >> 8) & 0xff),
4471 dev_priv->rps.min_freq,
4472 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004473 }
4474
Chris Wilsonaed242f2015-03-18 09:48:21 +00004475 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4476
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004477 /* Preserve min/max settings in case of re-init */
4478 if (dev_priv->rps.max_freq_softlimit == 0)
4479 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4480
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004481 if (dev_priv->rps.min_freq_softlimit == 0) {
4482 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4483 dev_priv->rps.min_freq_softlimit =
Ville Syrjälä813b5e62015-03-25 19:27:16 +02004484 max_t(int, dev_priv->rps.efficient_freq,
4485 intel_freq_opcode(dev_priv, 450));
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004486 else
4487 dev_priv->rps.min_freq_softlimit =
4488 dev_priv->rps.min_freq;
4489 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004490}
4491
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004492/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Zhe Wang20e49362014-11-04 17:07:05 +00004493static void gen9_enable_rps(struct drm_device *dev)
4494{
4495 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004496
4497 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4498
Damien Lespiauba1c5542015-01-16 18:07:26 +00004499 gen6_init_rps_frequencies(dev);
4500
Akash Goel0beb0592015-03-06 11:07:20 +05304501 /* Program defaults and thresholds for RPS*/
4502 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4503 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004504
Akash Goel0beb0592015-03-06 11:07:20 +05304505 /* 1 second timeout*/
4506 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
4507 GT_INTERVAL_FROM_US(dev_priv, 1000000));
4508
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004509 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004510
Akash Goel0beb0592015-03-06 11:07:20 +05304511 /* Leaning on the below call to gen6_set_rps to program/setup the
4512 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
4513 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
4514 dev_priv->rps.power = HIGH_POWER; /* force a reset */
4515 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004516
4517 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4518}
4519
4520static void gen9_enable_rc6(struct drm_device *dev)
4521{
4522 struct drm_i915_private *dev_priv = dev->dev_private;
Zhe Wang20e49362014-11-04 17:07:05 +00004523 struct intel_engine_cs *ring;
4524 uint32_t rc6_mask = 0;
4525 int unused;
4526
4527 /* 1a: Software RC state - RC0 */
4528 I915_WRITE(GEN6_RC_STATE, 0);
4529
4530 /* 1b: Get forcewake during program sequence. Although the driver
4531 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004532 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004533
4534 /* 2a: Disable RC states. */
4535 I915_WRITE(GEN6_RC_CONTROL, 0);
4536
4537 /* 2b: Program RC6 thresholds.*/
4538 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
4539 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4540 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4541 for_each_ring(ring, dev_priv, unused)
4542 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4543 I915_WRITE(GEN6_RC_SLEEP, 0);
4544 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
4545
Zhe Wang38c23522015-01-20 12:23:04 +00004546 /* 2c: Program Coarse Power Gating Policies. */
4547 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
4548 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
4549
Zhe Wang20e49362014-11-04 17:07:05 +00004550 /* 3a: Enable RC6 */
4551 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4552 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
4553 DRM_INFO("RC6 %s\n", (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4554 "on" : "off");
4555 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4556 GEN6_RC_CTL_EI_MODE(1) |
4557 rc6_mask);
4558
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304559 /*
4560 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
4561 * WaDisableRenderPowerGating:skl,bxt - Render PG need to be disabled with RC6.
4562 */
Sagar Kamblea4104c52015-04-10 14:11:29 +05304563 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304564 GEN9_MEDIA_PG_ENABLE : 0);
Sagar Kamblea4104c52015-04-10 14:11:29 +05304565
Zhe Wang38c23522015-01-20 12:23:04 +00004566
Mika Kuoppala59bad942015-01-16 11:34:40 +02004567 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004568
4569}
4570
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004571static void gen8_enable_rps(struct drm_device *dev)
4572{
4573 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004574 struct intel_engine_cs *ring;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004575 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004576 int unused;
4577
4578 /* 1a: Software RC state - RC0 */
4579 I915_WRITE(GEN6_RC_STATE, 0);
4580
4581 /* 1c & 1d: Get forcewake during program sequence. Although the driver
4582 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004583 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004584
4585 /* 2a: Disable RC states. */
4586 I915_WRITE(GEN6_RC_CONTROL, 0);
4587
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004588 /* Initialize rps frequencies */
4589 gen6_init_rps_frequencies(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004590
4591 /* 2b: Program RC6 thresholds.*/
4592 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
4593 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4594 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4595 for_each_ring(ring, dev_priv, unused)
4596 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4597 I915_WRITE(GEN6_RC_SLEEP, 0);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004598 if (IS_BROADWELL(dev))
4599 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
4600 else
4601 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004602
4603 /* 3: Enable RC6 */
4604 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4605 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Ben Widawskyabbf9d22014-01-28 20:25:41 -08004606 intel_print_rc6_info(dev, rc6_mask);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004607 if (IS_BROADWELL(dev))
4608 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4609 GEN7_RC_CTL_TO_MODE |
4610 rc6_mask);
4611 else
4612 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4613 GEN6_RC_CTL_EI_MODE(1) |
4614 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004615
4616 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07004617 I915_WRITE(GEN6_RPNSWREQ,
4618 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
4619 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4620 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02004621 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
4622 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004623
Daniel Vetter7526ed72014-09-29 15:07:19 +02004624 /* Docs recommend 900MHz, and 300 MHz respectively */
4625 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
4626 dev_priv->rps.max_freq_softlimit << 24 |
4627 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004628
Daniel Vetter7526ed72014-09-29 15:07:19 +02004629 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
4630 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
4631 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
4632 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004633
Daniel Vetter7526ed72014-09-29 15:07:19 +02004634 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004635
4636 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02004637 I915_WRITE(GEN6_RP_CONTROL,
4638 GEN6_RP_MEDIA_TURBO |
4639 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4640 GEN6_RP_MEDIA_IS_GFX |
4641 GEN6_RP_ENABLE |
4642 GEN6_RP_UP_BUSY_AVG |
4643 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004644
Daniel Vetter7526ed72014-09-29 15:07:19 +02004645 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004646
Tom O'Rourkec7f31532014-11-19 14:21:54 -08004647 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004648 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004649
Mika Kuoppala59bad942015-01-16 11:34:40 +02004650 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004651}
4652
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004653static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004654{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004655 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004656 struct intel_engine_cs *ring;
Ben Widawskyd060c162014-03-19 18:31:08 -07004657 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004658 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004659 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07004660 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004661
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004662 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004663
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004664 /* Here begins a magic sequence of register writes to enable
4665 * auto-downclocking.
4666 *
4667 * Perhaps there might be some value in exposing these to
4668 * userspace...
4669 */
4670 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004671
4672 /* Clear the DBG now so we don't confuse earlier errors */
4673 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
4674 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
4675 I915_WRITE(GTFIFODBG, gtfifodbg);
4676 }
4677
Mika Kuoppala59bad942015-01-16 11:34:40 +02004678 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004679
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004680 /* Initialize rps frequencies */
4681 gen6_init_rps_frequencies(dev);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004682
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004683 /* disable the counters and set deterministic thresholds */
4684 I915_WRITE(GEN6_RC_CONTROL, 0);
4685
4686 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
4687 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
4688 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
4689 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4690 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4691
Chris Wilsonb4519512012-05-11 14:29:30 +01004692 for_each_ring(ring, dev_priv, i)
4693 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004694
4695 I915_WRITE(GEN6_RC_SLEEP, 0);
4696 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Daniel Vetter29c78f62013-11-16 16:04:26 +01004697 if (IS_IVYBRIDGE(dev))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07004698 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
4699 else
4700 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08004701 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004702 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
4703
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004704 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004705 rc6_mode = intel_enable_rc6(dev_priv->dev);
4706 if (rc6_mode & INTEL_RC6_ENABLE)
4707 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
4708
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004709 /* We don't use those on Haswell */
4710 if (!IS_HASWELL(dev)) {
4711 if (rc6_mode & INTEL_RC6p_ENABLE)
4712 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004713
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004714 if (rc6_mode & INTEL_RC6pp_ENABLE)
4715 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
4716 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004717
Ben Widawskydc39fff2013-10-18 12:32:07 -07004718 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004719
4720 I915_WRITE(GEN6_RC_CONTROL,
4721 rc6_mask |
4722 GEN6_RC_CTL_EI_MODE(1) |
4723 GEN6_RC_CTL_HW_ENABLE);
4724
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004725 /* Power down if completely idle for over 50ms */
4726 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004727 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004728
Ben Widawsky42c05262012-09-26 10:34:00 -07004729 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawskyd060c162014-03-19 18:31:08 -07004730 if (ret)
Ben Widawsky42c05262012-09-26 10:34:00 -07004731 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Ben Widawskyd060c162014-03-19 18:31:08 -07004732
4733 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
4734 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
4735 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskyb39fb292014-03-19 18:31:11 -07004736 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
Ben Widawskyd060c162014-03-19 18:31:08 -07004737 (pcu_mbox & 0xff) * 50);
Ben Widawskyb39fb292014-03-19 18:31:11 -07004738 dev_priv->rps.max_freq = pcu_mbox & 0xff;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004739 }
4740
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004741 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004742 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004743
Ben Widawsky31643d52012-09-26 10:34:01 -07004744 rc6vids = 0;
4745 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
4746 if (IS_GEN6(dev) && ret) {
4747 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
4748 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
4749 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
4750 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
4751 rc6vids &= 0xffff00;
4752 rc6vids |= GEN6_ENCODE_RC6_VID(450);
4753 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
4754 if (ret)
4755 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
4756 }
4757
Mika Kuoppala59bad942015-01-16 11:34:40 +02004758 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004759}
4760
Imre Deakc2bc2fc2014-04-18 16:16:23 +03004761static void __gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004762{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004763 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004764 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01004765 unsigned int gpu_freq;
4766 unsigned int max_ia_freq, min_ring_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004767 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03004768 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004769
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004770 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004771
Ben Widawskyeda79642013-10-07 17:15:48 -03004772 policy = cpufreq_cpu_get(0);
4773 if (policy) {
4774 max_ia_freq = policy->cpuinfo.max_freq;
4775 cpufreq_cpu_put(policy);
4776 } else {
4777 /*
4778 * Default to measured freq if none found, PCU will ensure we
4779 * don't go over
4780 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004781 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03004782 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004783
4784 /* Convert from kHz to MHz */
4785 max_ia_freq /= 1000;
4786
Ben Widawsky153b4b952013-10-22 22:05:09 -07004787 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07004788 /* convert DDR frequency from units of 266.6MHz to bandwidth */
4789 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01004790
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004791 /*
4792 * For each potential GPU frequency, load a ring frequency we'd like
4793 * to use for memory access. We do this by specifying the IA frequency
4794 * the PCU should use as a reference to determine the ring frequency.
4795 */
Tom O'Rourke6985b352014-11-19 14:21:55 -08004796 for (gpu_freq = dev_priv->rps.max_freq; gpu_freq >= dev_priv->rps.min_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004797 gpu_freq--) {
Tom O'Rourke6985b352014-11-19 14:21:55 -08004798 int diff = dev_priv->rps.max_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01004799 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004800
Ben Widawsky46c764d2013-11-02 21:07:49 -07004801 if (INTEL_INFO(dev)->gen >= 8) {
4802 /* max(2 * GT, DDR). NB: GT is 50MHz units */
4803 ring_freq = max(min_ring_freq, gpu_freq);
4804 } else if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07004805 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01004806 ring_freq = max(min_ring_freq, ring_freq);
4807 /* leave ia_freq as the default, chosen by cpufreq */
4808 } else {
4809 /* On older processors, there is no separate ring
4810 * clock domain, so in order to boost the bandwidth
4811 * of the ring, we need to upclock the CPU (ia_freq).
4812 *
4813 * For GPU frequencies less than 750MHz,
4814 * just use the lowest ring freq.
4815 */
4816 if (gpu_freq < min_freq)
4817 ia_freq = 800;
4818 else
4819 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
4820 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
4821 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004822
Ben Widawsky42c05262012-09-26 10:34:00 -07004823 sandybridge_pcode_write(dev_priv,
4824 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01004825 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
4826 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
4827 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004828 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004829}
4830
Imre Deakc2bc2fc2014-04-18 16:16:23 +03004831void gen6_update_ring_freq(struct drm_device *dev)
4832{
4833 struct drm_i915_private *dev_priv = dev->dev_private;
4834
4835 if (INTEL_INFO(dev)->gen < 6 || IS_VALLEYVIEW(dev))
4836 return;
4837
4838 mutex_lock(&dev_priv->rps.hw_lock);
4839 __gen6_update_ring_freq(dev);
4840 mutex_unlock(&dev_priv->rps.hw_lock);
4841}
4842
Ville Syrjälä03af2042014-06-28 02:03:53 +03004843static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05304844{
Deepak S095acd52015-01-17 11:05:59 +05304845 struct drm_device *dev = dev_priv->dev;
Deepak S2b6b3a02014-05-27 15:59:30 +05304846 u32 val, rp0;
4847
Deepak S095acd52015-01-17 11:05:59 +05304848 if (dev->pdev->revision >= 0x20) {
4849 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05304850
Deepak S095acd52015-01-17 11:05:59 +05304851 switch (INTEL_INFO(dev)->eu_total) {
4852 case 8:
4853 /* (2 * 4) config */
4854 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
4855 break;
4856 case 12:
4857 /* (2 * 6) config */
4858 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
4859 break;
4860 case 16:
4861 /* (2 * 8) config */
4862 default:
4863 /* Setting (2 * 8) Min RP0 for any other combination */
4864 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
4865 break;
4866 }
4867 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
4868 } else {
4869 /* For pre-production hardware */
4870 val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG);
4871 rp0 = (val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
4872 PUNIT_GPU_STATUS_MAX_FREQ_MASK;
4873 }
Deepak S2b6b3a02014-05-27 15:59:30 +05304874 return rp0;
4875}
4876
4877static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
4878{
4879 u32 val, rpe;
4880
4881 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
4882 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
4883
4884 return rpe;
4885}
4886
Deepak S7707df42014-07-12 18:46:14 +05304887static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
4888{
Deepak S095acd52015-01-17 11:05:59 +05304889 struct drm_device *dev = dev_priv->dev;
Deepak S7707df42014-07-12 18:46:14 +05304890 u32 val, rp1;
4891
Deepak S095acd52015-01-17 11:05:59 +05304892 if (dev->pdev->revision >= 0x20) {
4893 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
4894 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
4895 } else {
4896 /* For pre-production hardware */
4897 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
4898 rp1 = ((val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
4899 PUNIT_GPU_STATUS_MAX_FREQ_MASK);
4900 }
Deepak S7707df42014-07-12 18:46:14 +05304901 return rp1;
4902}
4903
Deepak Sf8f2b002014-07-10 13:16:21 +05304904static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
4905{
4906 u32 val, rp1;
4907
4908 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
4909
4910 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
4911
4912 return rp1;
4913}
4914
Ville Syrjälä03af2042014-06-28 02:03:53 +03004915static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004916{
4917 u32 val, rp0;
4918
Jani Nikula64936252013-05-22 15:36:20 +03004919 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004920
4921 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
4922 /* Clamp to max */
4923 rp0 = min_t(u32, rp0, 0xea);
4924
4925 return rp0;
4926}
4927
4928static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
4929{
4930 u32 val, rpe;
4931
Jani Nikula64936252013-05-22 15:36:20 +03004932 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004933 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03004934 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004935 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
4936
4937 return rpe;
4938}
4939
Ville Syrjälä03af2042014-06-28 02:03:53 +03004940static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004941{
Jani Nikula64936252013-05-22 15:36:20 +03004942 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07004943}
4944
Imre Deakae484342014-03-31 15:10:44 +03004945/* Check that the pctx buffer wasn't move under us. */
4946static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
4947{
4948 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
4949
4950 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
4951 dev_priv->vlv_pctx->stolen->start);
4952}
4953
Deepak S38807742014-05-23 21:00:15 +05304954
4955/* Check that the pcbr address is not empty. */
4956static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
4957{
4958 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
4959
4960 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
4961}
4962
4963static void cherryview_setup_pctx(struct drm_device *dev)
4964{
4965 struct drm_i915_private *dev_priv = dev->dev_private;
4966 unsigned long pctx_paddr, paddr;
4967 struct i915_gtt *gtt = &dev_priv->gtt;
4968 u32 pcbr;
4969 int pctx_size = 32*1024;
4970
4971 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
4972
4973 pcbr = I915_READ(VLV_PCBR);
4974 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02004975 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05304976 paddr = (dev_priv->mm.stolen_base +
4977 (gtt->stolen_size - pctx_size));
4978
4979 pctx_paddr = (paddr & (~4095));
4980 I915_WRITE(VLV_PCBR, pctx_paddr);
4981 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02004982
4983 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05304984}
4985
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004986static void valleyview_setup_pctx(struct drm_device *dev)
4987{
4988 struct drm_i915_private *dev_priv = dev->dev_private;
4989 struct drm_i915_gem_object *pctx;
4990 unsigned long pctx_paddr;
4991 u32 pcbr;
4992 int pctx_size = 24*1024;
4993
Imre Deak17b0c1f2014-02-11 21:39:06 +02004994 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
4995
Jesse Barnesc9cddff2013-05-08 10:45:13 -07004996 pcbr = I915_READ(VLV_PCBR);
4997 if (pcbr) {
4998 /* BIOS set it up already, grab the pre-alloc'd space */
4999 int pcbr_offset;
5000
5001 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
5002 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
5003 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005004 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005005 pctx_size);
5006 goto out;
5007 }
5008
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005009 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5010
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005011 /*
5012 * From the Gunit register HAS:
5013 * The Gfx driver is expected to program this register and ensure
5014 * proper allocation within Gfx stolen memory. For example, this
5015 * register should be programmed such than the PCBR range does not
5016 * overlap with other ranges, such as the frame buffer, protected
5017 * memory, or any other relevant ranges.
5018 */
5019 pctx = i915_gem_object_create_stolen(dev, pctx_size);
5020 if (!pctx) {
5021 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
5022 return;
5023 }
5024
5025 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5026 I915_WRITE(VLV_PCBR, pctx_paddr);
5027
5028out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005029 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005030 dev_priv->vlv_pctx = pctx;
5031}
5032
Imre Deakae484342014-03-31 15:10:44 +03005033static void valleyview_cleanup_pctx(struct drm_device *dev)
5034{
5035 struct drm_i915_private *dev_priv = dev->dev_private;
5036
5037 if (WARN_ON(!dev_priv->vlv_pctx))
5038 return;
5039
5040 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
5041 dev_priv->vlv_pctx = NULL;
5042}
5043
Imre Deak4e805192014-04-14 20:24:41 +03005044static void valleyview_init_gt_powersave(struct drm_device *dev)
5045{
5046 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005047 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005048
5049 valleyview_setup_pctx(dev);
5050
5051 mutex_lock(&dev_priv->rps.hw_lock);
5052
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005053 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5054 switch ((val >> 6) & 3) {
5055 case 0:
5056 case 1:
5057 dev_priv->mem_freq = 800;
5058 break;
5059 case 2:
5060 dev_priv->mem_freq = 1066;
5061 break;
5062 case 3:
5063 dev_priv->mem_freq = 1333;
5064 break;
5065 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005066 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005067
Imre Deak4e805192014-04-14 20:24:41 +03005068 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5069 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5070 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005071 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005072 dev_priv->rps.max_freq);
5073
5074 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5075 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005076 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005077 dev_priv->rps.efficient_freq);
5078
Deepak Sf8f2b002014-07-10 13:16:21 +05305079 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5080 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005081 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305082 dev_priv->rps.rp1_freq);
5083
Imre Deak4e805192014-04-14 20:24:41 +03005084 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5085 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005086 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005087 dev_priv->rps.min_freq);
5088
Chris Wilsonaed242f2015-03-18 09:48:21 +00005089 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5090
Imre Deak4e805192014-04-14 20:24:41 +03005091 /* Preserve min/max settings in case of re-init */
5092 if (dev_priv->rps.max_freq_softlimit == 0)
5093 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5094
5095 if (dev_priv->rps.min_freq_softlimit == 0)
5096 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5097
5098 mutex_unlock(&dev_priv->rps.hw_lock);
5099}
5100
Deepak S38807742014-05-23 21:00:15 +05305101static void cherryview_init_gt_powersave(struct drm_device *dev)
5102{
Deepak S2b6b3a02014-05-27 15:59:30 +05305103 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005104 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305105
Deepak S38807742014-05-23 21:00:15 +05305106 cherryview_setup_pctx(dev);
Deepak S2b6b3a02014-05-27 15:59:30 +05305107
5108 mutex_lock(&dev_priv->rps.hw_lock);
5109
Ville Syrjäläa5805162015-05-26 20:42:30 +03005110 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005111 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005112 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005113
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005114 switch ((val >> 2) & 0x7) {
5115 case 0:
5116 case 1:
5117 dev_priv->rps.cz_freq = 200;
5118 dev_priv->mem_freq = 1600;
5119 break;
5120 case 2:
5121 dev_priv->rps.cz_freq = 267;
5122 dev_priv->mem_freq = 1600;
5123 break;
5124 case 3:
5125 dev_priv->rps.cz_freq = 333;
5126 dev_priv->mem_freq = 2000;
5127 break;
5128 case 4:
5129 dev_priv->rps.cz_freq = 320;
5130 dev_priv->mem_freq = 1600;
5131 break;
5132 case 5:
5133 dev_priv->rps.cz_freq = 400;
5134 dev_priv->mem_freq = 1600;
5135 break;
5136 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005137 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005138
Deepak S2b6b3a02014-05-27 15:59:30 +05305139 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5140 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5141 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005142 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305143 dev_priv->rps.max_freq);
5144
5145 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5146 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005147 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305148 dev_priv->rps.efficient_freq);
5149
Deepak S7707df42014-07-12 18:46:14 +05305150 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5151 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005152 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305153 dev_priv->rps.rp1_freq);
5154
Deepak S5b7c91b2015-05-09 18:15:46 +05305155 /* PUnit validated range is only [RPe, RP0] */
5156 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305157 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005158 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305159 dev_priv->rps.min_freq);
5160
Ville Syrjälä1c147622014-08-18 14:42:43 +03005161 WARN_ONCE((dev_priv->rps.max_freq |
5162 dev_priv->rps.efficient_freq |
5163 dev_priv->rps.rp1_freq |
5164 dev_priv->rps.min_freq) & 1,
5165 "Odd GPU freq values\n");
5166
Chris Wilsonaed242f2015-03-18 09:48:21 +00005167 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5168
Deepak S2b6b3a02014-05-27 15:59:30 +05305169 /* Preserve min/max settings in case of re-init */
5170 if (dev_priv->rps.max_freq_softlimit == 0)
5171 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5172
5173 if (dev_priv->rps.min_freq_softlimit == 0)
5174 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5175
5176 mutex_unlock(&dev_priv->rps.hw_lock);
Deepak S38807742014-05-23 21:00:15 +05305177}
5178
Imre Deak4e805192014-04-14 20:24:41 +03005179static void valleyview_cleanup_gt_powersave(struct drm_device *dev)
5180{
5181 valleyview_cleanup_pctx(dev);
5182}
5183
Deepak S38807742014-05-23 21:00:15 +05305184static void cherryview_enable_rps(struct drm_device *dev)
5185{
5186 struct drm_i915_private *dev_priv = dev->dev_private;
5187 struct intel_engine_cs *ring;
Deepak S2b6b3a02014-05-27 15:59:30 +05305188 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305189 int i;
5190
5191 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5192
5193 gtfifodbg = I915_READ(GTFIFODBG);
5194 if (gtfifodbg) {
5195 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5196 gtfifodbg);
5197 I915_WRITE(GTFIFODBG, gtfifodbg);
5198 }
5199
5200 cherryview_check_pctx(dev_priv);
5201
5202 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5203 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005204 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305205
Ville Syrjälä160614a2015-01-19 13:50:47 +02005206 /* Disable RC states. */
5207 I915_WRITE(GEN6_RC_CONTROL, 0);
5208
Deepak S38807742014-05-23 21:00:15 +05305209 /* 2a: Program RC6 thresholds.*/
5210 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5211 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5212 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5213
5214 for_each_ring(ring, dev_priv, i)
5215 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5216 I915_WRITE(GEN6_RC_SLEEP, 0);
5217
Deepak Sf4f71c72015-03-28 15:23:35 +05305218 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
5219 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05305220
5221 /* allows RC6 residency counter to work */
5222 I915_WRITE(VLV_COUNTER_CONTROL,
5223 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5224 VLV_MEDIA_RC6_COUNT_EN |
5225 VLV_RENDER_RC6_COUNT_EN));
5226
5227 /* For now we assume BIOS is allocating and populating the PCBR */
5228 pcbr = I915_READ(VLV_PCBR);
5229
Deepak S38807742014-05-23 21:00:15 +05305230 /* 3: Enable RC6 */
5231 if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) &&
5232 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005233 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305234
5235 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5236
Deepak S2b6b3a02014-05-27 15:59:30 +05305237 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005238 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305239 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5240 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5241 I915_WRITE(GEN6_RP_UP_EI, 66000);
5242 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5243
5244 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5245
5246 /* 5: Enable RPS */
5247 I915_WRITE(GEN6_RP_CONTROL,
5248 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005249 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305250 GEN6_RP_ENABLE |
5251 GEN6_RP_UP_BUSY_AVG |
5252 GEN6_RP_DOWN_IDLE_AVG);
5253
Deepak S3ef62342015-04-29 08:36:24 +05305254 /* Setting Fixed Bias */
5255 val = VLV_OVERRIDE_EN |
5256 VLV_SOC_TDP_EN |
5257 CHV_BIAS_CPU_50_SOC_50;
5258 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5259
Deepak S2b6b3a02014-05-27 15:59:30 +05305260 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5261
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005262 /* RPS code assumes GPLL is used */
5263 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5264
Ville Syrjäläc8e96272014-11-07 21:33:44 +02005265 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
Deepak S2b6b3a02014-05-27 15:59:30 +05305266 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5267
5268 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
5269 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005270 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305271 dev_priv->rps.cur_freq);
5272
5273 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005274 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305275 dev_priv->rps.efficient_freq);
5276
5277 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
5278
Mika Kuoppala59bad942015-01-16 11:34:40 +02005279 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305280}
5281
Jesse Barnes0a073b82013-04-17 15:54:58 -07005282static void valleyview_enable_rps(struct drm_device *dev)
5283{
5284 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005285 struct intel_engine_cs *ring;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07005286 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005287 int i;
5288
5289 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5290
Imre Deakae484342014-03-31 15:10:44 +03005291 valleyview_check_pctx(dev_priv);
5292
Jesse Barnes0a073b82013-04-17 15:54:58 -07005293 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07005294 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5295 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005296 I915_WRITE(GTFIFODBG, gtfifodbg);
5297 }
5298
Deepak Sc8d9a592013-11-23 14:55:42 +05305299 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005300 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005301
Ville Syrjälä160614a2015-01-19 13:50:47 +02005302 /* Disable RC states. */
5303 I915_WRITE(GEN6_RC_CONTROL, 0);
5304
Ville Syrjäläcad725f2015-01-19 13:50:48 +02005305 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005306 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5307 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5308 I915_WRITE(GEN6_RP_UP_EI, 66000);
5309 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5310
5311 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5312
5313 I915_WRITE(GEN6_RP_CONTROL,
5314 GEN6_RP_MEDIA_TURBO |
5315 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5316 GEN6_RP_MEDIA_IS_GFX |
5317 GEN6_RP_ENABLE |
5318 GEN6_RP_UP_BUSY_AVG |
5319 GEN6_RP_DOWN_IDLE_CONT);
5320
5321 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
5322 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5323 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5324
5325 for_each_ring(ring, dev_priv, i)
5326 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5327
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08005328 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005329
5330 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07005331 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04005332 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
5333 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07005334 VLV_MEDIA_RC6_COUNT_EN |
5335 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04005336
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005337 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08005338 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07005339
5340 intel_print_rc6_info(dev, rc6_mode);
5341
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005342 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005343
Deepak S3ef62342015-04-29 08:36:24 +05305344 /* Setting Fixed Bias */
5345 val = VLV_OVERRIDE_EN |
5346 VLV_SOC_TDP_EN |
5347 VLV_BIAS_CPU_125_SOC_875;
5348 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5349
Jani Nikula64936252013-05-22 15:36:20 +03005350 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005351
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005352 /* RPS code assumes GPLL is used */
5353 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5354
Ville Syrjäläc8e96272014-11-07 21:33:44 +02005355 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no");
Jesse Barnes0a073b82013-04-17 15:54:58 -07005356 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5357
Ben Widawskyb39fb292014-03-19 18:31:11 -07005358 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03005359 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005360 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005361 dev_priv->rps.cur_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005362
Ville Syrjälä73008b92013-06-25 19:21:01 +03005363 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005364 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005365 dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005366
Ben Widawskyb39fb292014-03-19 18:31:11 -07005367 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005368
Mika Kuoppala59bad942015-01-16 11:34:40 +02005369 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005370}
5371
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005372static unsigned long intel_pxfreq(u32 vidfreq)
5373{
5374 unsigned long freq;
5375 int div = (vidfreq & 0x3f0000) >> 16;
5376 int post = (vidfreq & 0x3000) >> 12;
5377 int pre = (vidfreq & 0x7);
5378
5379 if (!pre)
5380 return 0;
5381
5382 freq = ((div * 133333) / ((1<<post) * pre));
5383
5384 return freq;
5385}
5386
Daniel Vettereb48eb02012-04-26 23:28:12 +02005387static const struct cparams {
5388 u16 i;
5389 u16 t;
5390 u16 m;
5391 u16 c;
5392} cparams[] = {
5393 { 1, 1333, 301, 28664 },
5394 { 1, 1066, 294, 24460 },
5395 { 1, 800, 294, 25192 },
5396 { 0, 1333, 276, 27605 },
5397 { 0, 1066, 276, 27605 },
5398 { 0, 800, 231, 23784 },
5399};
5400
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005401static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005402{
5403 u64 total_count, diff, ret;
5404 u32 count1, count2, count3, m = 0, c = 0;
5405 unsigned long now = jiffies_to_msecs(jiffies), diff1;
5406 int i;
5407
Daniel Vetter02d71952012-08-09 16:44:54 +02005408 assert_spin_locked(&mchdev_lock);
5409
Daniel Vetter20e4d402012-08-08 23:35:39 +02005410 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005411
5412 /* Prevent division-by-zero if we are asking too fast.
5413 * Also, we don't get interesting results if we are polling
5414 * faster than once in 10ms, so just return the saved value
5415 * in such cases.
5416 */
5417 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02005418 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005419
5420 count1 = I915_READ(DMIEC);
5421 count2 = I915_READ(DDREC);
5422 count3 = I915_READ(CSIEC);
5423
5424 total_count = count1 + count2 + count3;
5425
5426 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02005427 if (total_count < dev_priv->ips.last_count1) {
5428 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005429 diff += total_count;
5430 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005431 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005432 }
5433
5434 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005435 if (cparams[i].i == dev_priv->ips.c_m &&
5436 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02005437 m = cparams[i].m;
5438 c = cparams[i].c;
5439 break;
5440 }
5441 }
5442
5443 diff = div_u64(diff, diff1);
5444 ret = ((m * diff) + c);
5445 ret = div_u64(ret, 10);
5446
Daniel Vetter20e4d402012-08-08 23:35:39 +02005447 dev_priv->ips.last_count1 = total_count;
5448 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005449
Daniel Vetter20e4d402012-08-08 23:35:39 +02005450 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005451
5452 return ret;
5453}
5454
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005455unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
5456{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005457 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005458 unsigned long val;
5459
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005460 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005461 return 0;
5462
5463 spin_lock_irq(&mchdev_lock);
5464
5465 val = __i915_chipset_val(dev_priv);
5466
5467 spin_unlock_irq(&mchdev_lock);
5468
5469 return val;
5470}
5471
Daniel Vettereb48eb02012-04-26 23:28:12 +02005472unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
5473{
5474 unsigned long m, x, b;
5475 u32 tsfs;
5476
5477 tsfs = I915_READ(TSFS);
5478
5479 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
5480 x = I915_READ8(TR1);
5481
5482 b = tsfs & TSFS_INTR_MASK;
5483
5484 return ((m * x) / 127) - b;
5485}
5486
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005487static int _pxvid_to_vd(u8 pxvid)
5488{
5489 if (pxvid == 0)
5490 return 0;
5491
5492 if (pxvid >= 8 && pxvid < 31)
5493 pxvid = 31;
5494
5495 return (pxvid + 2) * 125;
5496}
5497
5498static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005499{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005500 struct drm_device *dev = dev_priv->dev;
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005501 const int vd = _pxvid_to_vd(pxvid);
5502 const int vm = vd - 1125;
5503
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005504 if (INTEL_INFO(dev)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005505 return vm > 0 ? vm : 0;
5506
5507 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005508}
5509
Daniel Vetter02d71952012-08-09 16:44:54 +02005510static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005511{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005512 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005513 u32 count;
5514
Daniel Vetter02d71952012-08-09 16:44:54 +02005515 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005516
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005517 now = ktime_get_raw_ns();
5518 diffms = now - dev_priv->ips.last_time2;
5519 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005520
5521 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02005522 if (!diffms)
5523 return;
5524
5525 count = I915_READ(GFXEC);
5526
Daniel Vetter20e4d402012-08-08 23:35:39 +02005527 if (count < dev_priv->ips.last_count2) {
5528 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005529 diff += count;
5530 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005531 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005532 }
5533
Daniel Vetter20e4d402012-08-08 23:35:39 +02005534 dev_priv->ips.last_count2 = count;
5535 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005536
5537 /* More magic constants... */
5538 diff = diff * 1181;
5539 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005540 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005541}
5542
Daniel Vetter02d71952012-08-09 16:44:54 +02005543void i915_update_gfx_val(struct drm_i915_private *dev_priv)
5544{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005545 struct drm_device *dev = dev_priv->dev;
5546
5547 if (INTEL_INFO(dev)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02005548 return;
5549
Daniel Vetter92703882012-08-09 16:46:01 +02005550 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005551
5552 __i915_update_gfx_val(dev_priv);
5553
Daniel Vetter92703882012-08-09 16:46:01 +02005554 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005555}
5556
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005557static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005558{
5559 unsigned long t, corr, state1, corr2, state2;
5560 u32 pxvid, ext_v;
5561
Daniel Vetter02d71952012-08-09 16:44:54 +02005562 assert_spin_locked(&mchdev_lock);
5563
Ben Widawskyb39fb292014-03-19 18:31:11 -07005564 pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_freq * 4));
Daniel Vettereb48eb02012-04-26 23:28:12 +02005565 pxvid = (pxvid >> 24) & 0x7f;
5566 ext_v = pvid_to_extvid(dev_priv, pxvid);
5567
5568 state1 = ext_v;
5569
5570 t = i915_mch_val(dev_priv);
5571
5572 /* Revel in the empirically derived constants */
5573
5574 /* Correction factor in 1/100000 units */
5575 if (t > 80)
5576 corr = ((t * 2349) + 135940);
5577 else if (t >= 50)
5578 corr = ((t * 964) + 29317);
5579 else /* < 50 */
5580 corr = ((t * 301) + 1004);
5581
5582 corr = corr * ((150142 * state1) / 10000 - 78642);
5583 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02005584 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005585
5586 state2 = (corr2 * state1) / 10000;
5587 state2 /= 100; /* convert to mW */
5588
Daniel Vetter02d71952012-08-09 16:44:54 +02005589 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005590
Daniel Vetter20e4d402012-08-08 23:35:39 +02005591 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005592}
5593
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005594unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
5595{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005596 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005597 unsigned long val;
5598
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005599 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005600 return 0;
5601
5602 spin_lock_irq(&mchdev_lock);
5603
5604 val = __i915_gfx_val(dev_priv);
5605
5606 spin_unlock_irq(&mchdev_lock);
5607
5608 return val;
5609}
5610
Daniel Vettereb48eb02012-04-26 23:28:12 +02005611/**
5612 * i915_read_mch_val - return value for IPS use
5613 *
5614 * Calculate and return a value for the IPS driver to use when deciding whether
5615 * we have thermal and power headroom to increase CPU or GPU power budget.
5616 */
5617unsigned long i915_read_mch_val(void)
5618{
5619 struct drm_i915_private *dev_priv;
5620 unsigned long chipset_val, graphics_val, ret = 0;
5621
Daniel Vetter92703882012-08-09 16:46:01 +02005622 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005623 if (!i915_mch_dev)
5624 goto out_unlock;
5625 dev_priv = i915_mch_dev;
5626
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005627 chipset_val = __i915_chipset_val(dev_priv);
5628 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005629
5630 ret = chipset_val + graphics_val;
5631
5632out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005633 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005634
5635 return ret;
5636}
5637EXPORT_SYMBOL_GPL(i915_read_mch_val);
5638
5639/**
5640 * i915_gpu_raise - raise GPU frequency limit
5641 *
5642 * Raise the limit; IPS indicates we have thermal headroom.
5643 */
5644bool i915_gpu_raise(void)
5645{
5646 struct drm_i915_private *dev_priv;
5647 bool ret = true;
5648
Daniel Vetter92703882012-08-09 16:46:01 +02005649 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005650 if (!i915_mch_dev) {
5651 ret = false;
5652 goto out_unlock;
5653 }
5654 dev_priv = i915_mch_dev;
5655
Daniel Vetter20e4d402012-08-08 23:35:39 +02005656 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
5657 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005658
5659out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005660 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005661
5662 return ret;
5663}
5664EXPORT_SYMBOL_GPL(i915_gpu_raise);
5665
5666/**
5667 * i915_gpu_lower - lower GPU frequency limit
5668 *
5669 * IPS indicates we're close to a thermal limit, so throttle back the GPU
5670 * frequency maximum.
5671 */
5672bool i915_gpu_lower(void)
5673{
5674 struct drm_i915_private *dev_priv;
5675 bool ret = true;
5676
Daniel Vetter92703882012-08-09 16:46:01 +02005677 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005678 if (!i915_mch_dev) {
5679 ret = false;
5680 goto out_unlock;
5681 }
5682 dev_priv = i915_mch_dev;
5683
Daniel Vetter20e4d402012-08-08 23:35:39 +02005684 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
5685 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005686
5687out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005688 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005689
5690 return ret;
5691}
5692EXPORT_SYMBOL_GPL(i915_gpu_lower);
5693
5694/**
5695 * i915_gpu_busy - indicate GPU business to IPS
5696 *
5697 * Tell the IPS driver whether or not the GPU is busy.
5698 */
5699bool i915_gpu_busy(void)
5700{
5701 struct drm_i915_private *dev_priv;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005702 struct intel_engine_cs *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005703 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01005704 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005705
Daniel Vetter92703882012-08-09 16:46:01 +02005706 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005707 if (!i915_mch_dev)
5708 goto out_unlock;
5709 dev_priv = i915_mch_dev;
5710
Chris Wilsonf047e392012-07-21 12:31:41 +01005711 for_each_ring(ring, dev_priv, i)
5712 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005713
5714out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005715 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005716
5717 return ret;
5718}
5719EXPORT_SYMBOL_GPL(i915_gpu_busy);
5720
5721/**
5722 * i915_gpu_turbo_disable - disable graphics turbo
5723 *
5724 * Disable graphics turbo by resetting the max frequency and setting the
5725 * current frequency to the default.
5726 */
5727bool i915_gpu_turbo_disable(void)
5728{
5729 struct drm_i915_private *dev_priv;
5730 bool ret = true;
5731
Daniel Vetter92703882012-08-09 16:46:01 +02005732 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005733 if (!i915_mch_dev) {
5734 ret = false;
5735 goto out_unlock;
5736 }
5737 dev_priv = i915_mch_dev;
5738
Daniel Vetter20e4d402012-08-08 23:35:39 +02005739 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005740
Daniel Vetter20e4d402012-08-08 23:35:39 +02005741 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02005742 ret = false;
5743
5744out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005745 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005746
5747 return ret;
5748}
5749EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
5750
5751/**
5752 * Tells the intel_ips driver that the i915 driver is now loaded, if
5753 * IPS got loaded first.
5754 *
5755 * This awkward dance is so that neither module has to depend on the
5756 * other in order for IPS to do the appropriate communication of
5757 * GPU turbo limits to i915.
5758 */
5759static void
5760ips_ping_for_i915_load(void)
5761{
5762 void (*link)(void);
5763
5764 link = symbol_get(ips_link_to_i915_driver);
5765 if (link) {
5766 link();
5767 symbol_put(ips_link_to_i915_driver);
5768 }
5769}
5770
5771void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
5772{
Daniel Vetter02d71952012-08-09 16:44:54 +02005773 /* We only register the i915 ips part with intel-ips once everything is
5774 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02005775 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005776 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02005777 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005778
5779 ips_ping_for_i915_load();
5780}
5781
5782void intel_gpu_ips_teardown(void)
5783{
Daniel Vetter92703882012-08-09 16:46:01 +02005784 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005785 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02005786 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005787}
Deepak S76c3552f2014-01-30 23:08:16 +05305788
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005789static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005790{
5791 struct drm_i915_private *dev_priv = dev->dev_private;
5792 u32 lcfuse;
5793 u8 pxw[16];
5794 int i;
5795
5796 /* Disable to program */
5797 I915_WRITE(ECR, 0);
5798 POSTING_READ(ECR);
5799
5800 /* Program energy weights for various events */
5801 I915_WRITE(SDEW, 0x15040d00);
5802 I915_WRITE(CSIEW0, 0x007f0000);
5803 I915_WRITE(CSIEW1, 0x1e220004);
5804 I915_WRITE(CSIEW2, 0x04000004);
5805
5806 for (i = 0; i < 5; i++)
5807 I915_WRITE(PEW + (i * 4), 0);
5808 for (i = 0; i < 3; i++)
5809 I915_WRITE(DEW + (i * 4), 0);
5810
5811 /* Program P-state weights to account for frequency power adjustment */
5812 for (i = 0; i < 16; i++) {
5813 u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4));
5814 unsigned long freq = intel_pxfreq(pxvidfreq);
5815 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
5816 PXVFREQ_PX_SHIFT;
5817 unsigned long val;
5818
5819 val = vid * vid;
5820 val *= (freq / 1000);
5821 val *= 255;
5822 val /= (127*127*900);
5823 if (val > 0xff)
5824 DRM_ERROR("bad pxval: %ld\n", val);
5825 pxw[i] = val;
5826 }
5827 /* Render standby states get 0 weight */
5828 pxw[14] = 0;
5829 pxw[15] = 0;
5830
5831 for (i = 0; i < 4; i++) {
5832 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
5833 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
5834 I915_WRITE(PXW + (i * 4), val);
5835 }
5836
5837 /* Adjust magic regs to magic values (more experimental results) */
5838 I915_WRITE(OGW0, 0);
5839 I915_WRITE(OGW1, 0);
5840 I915_WRITE(EG0, 0x00007f00);
5841 I915_WRITE(EG1, 0x0000000e);
5842 I915_WRITE(EG2, 0x000e0000);
5843 I915_WRITE(EG3, 0x68000300);
5844 I915_WRITE(EG4, 0x42000000);
5845 I915_WRITE(EG5, 0x00140031);
5846 I915_WRITE(EG6, 0);
5847 I915_WRITE(EG7, 0);
5848
5849 for (i = 0; i < 8; i++)
5850 I915_WRITE(PXWL + (i * 4), 0);
5851
5852 /* Enable PMON + select events */
5853 I915_WRITE(ECR, 0x80000019);
5854
5855 lcfuse = I915_READ(LCFUSE02);
5856
Daniel Vetter20e4d402012-08-08 23:35:39 +02005857 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005858}
5859
Imre Deakae484342014-03-31 15:10:44 +03005860void intel_init_gt_powersave(struct drm_device *dev)
5861{
Imre Deake6069ca2014-04-18 16:01:02 +03005862 i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6);
5863
Deepak S38807742014-05-23 21:00:15 +05305864 if (IS_CHERRYVIEW(dev))
5865 cherryview_init_gt_powersave(dev);
5866 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03005867 valleyview_init_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03005868}
5869
5870void intel_cleanup_gt_powersave(struct drm_device *dev)
5871{
Deepak S38807742014-05-23 21:00:15 +05305872 if (IS_CHERRYVIEW(dev))
5873 return;
5874 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03005875 valleyview_cleanup_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03005876}
5877
Imre Deakdbea3ce2014-12-15 18:59:28 +02005878static void gen6_suspend_rps(struct drm_device *dev)
5879{
5880 struct drm_i915_private *dev_priv = dev->dev_private;
5881
5882 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
5883
Akash Goel4c2a8892015-03-06 11:07:24 +05305884 gen6_disable_rps_interrupts(dev);
Imre Deakdbea3ce2014-12-15 18:59:28 +02005885}
5886
Jesse Barnes156c7ca2014-06-12 08:35:45 -07005887/**
5888 * intel_suspend_gt_powersave - suspend PM work and helper threads
5889 * @dev: drm device
5890 *
5891 * We don't want to disable RC6 or other features here, we just want
5892 * to make sure any work we've queued has finished and won't bother
5893 * us while we're suspended.
5894 */
5895void intel_suspend_gt_powersave(struct drm_device *dev)
5896{
5897 struct drm_i915_private *dev_priv = dev->dev_private;
5898
Imre Deakd4d70aa2014-11-19 15:30:04 +02005899 if (INTEL_INFO(dev)->gen < 6)
5900 return;
5901
Imre Deakdbea3ce2014-12-15 18:59:28 +02005902 gen6_suspend_rps(dev);
Deepak Sb47adc12014-06-20 20:03:02 +05305903
5904 /* Force GPU to min freq during suspend */
5905 gen6_rps_idle(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07005906}
5907
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005908void intel_disable_gt_powersave(struct drm_device *dev)
5909{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005910 struct drm_i915_private *dev_priv = dev->dev_private;
5911
Daniel Vetter930ebb42012-06-29 23:32:16 +02005912 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005913 ironlake_disable_drps(dev);
Deepak S38807742014-05-23 21:00:15 +05305914 } else if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter10d8d362014-06-12 17:48:52 +02005915 intel_suspend_gt_powersave(dev);
Imre Deake4948372014-05-12 18:35:04 +03005916
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005917 mutex_lock(&dev_priv->rps.hw_lock);
Zhe Wang20e49362014-11-04 17:07:05 +00005918 if (INTEL_INFO(dev)->gen >= 9)
5919 gen9_disable_rps(dev);
5920 else if (IS_CHERRYVIEW(dev))
Deepak S38807742014-05-23 21:00:15 +05305921 cherryview_disable_rps(dev);
5922 else if (IS_VALLEYVIEW(dev))
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005923 valleyview_disable_rps(dev);
5924 else
5925 gen6_disable_rps(dev);
Imre Deake5347702014-11-19 15:30:02 +02005926
Chris Wilsonc0951f02013-10-10 21:58:50 +01005927 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005928 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02005929 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005930}
5931
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005932static void intel_gen6_powersave_work(struct work_struct *work)
5933{
5934 struct drm_i915_private *dev_priv =
5935 container_of(work, struct drm_i915_private,
5936 rps.delayed_resume_work.work);
5937 struct drm_device *dev = dev_priv->dev;
5938
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005939 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005940
Akash Goel4c2a8892015-03-06 11:07:24 +05305941 gen6_reset_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02005942
Deepak S38807742014-05-23 21:00:15 +05305943 if (IS_CHERRYVIEW(dev)) {
5944 cherryview_enable_rps(dev);
5945 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -07005946 valleyview_enable_rps(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00005947 } else if (INTEL_INFO(dev)->gen >= 9) {
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005948 gen9_enable_rc6(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00005949 gen9_enable_rps(dev);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005950 __gen6_update_ring_freq(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005951 } else if (IS_BROADWELL(dev)) {
5952 gen8_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005953 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005954 } else {
5955 gen6_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005956 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005957 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00005958
5959 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
5960 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
5961
5962 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
5963 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
5964
Chris Wilsonc0951f02013-10-10 21:58:50 +01005965 dev_priv->rps.enabled = true;
Imre Deak3cc134e2014-11-19 15:30:03 +02005966
Akash Goel4c2a8892015-03-06 11:07:24 +05305967 gen6_enable_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02005968
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005969 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deakc6df39b2014-04-14 20:24:29 +03005970
5971 intel_runtime_pm_put(dev_priv);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005972}
5973
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005974void intel_enable_gt_powersave(struct drm_device *dev)
5975{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005976 struct drm_i915_private *dev_priv = dev->dev_private;
5977
Yu Zhangf61018b2015-02-10 19:05:52 +08005978 /* Powersaving is controlled by the host when inside a VM */
5979 if (intel_vgpu_active(dev))
5980 return;
5981
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005982 if (IS_IRONLAKE_M(dev)) {
Imre Deakdc1d0132014-04-14 20:24:28 +03005983 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005984 ironlake_enable_drps(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02005985 intel_init_emon(dev);
Imre Deakdc1d0132014-04-14 20:24:28 +03005986 mutex_unlock(&dev->struct_mutex);
Deepak S38807742014-05-23 21:00:15 +05305987 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005988 /*
5989 * PCU communication is slow and this doesn't need to be
5990 * done at any specific time, so do this out of our fast path
5991 * to make resume and init faster.
Imre Deakc6df39b2014-04-14 20:24:29 +03005992 *
5993 * We depend on the HW RC6 power context save/restore
5994 * mechanism when entering D3 through runtime PM suspend. So
5995 * disable RPM until RPS/RC6 is properly setup. We can only
5996 * get here via the driver load/system resume/runtime resume
5997 * paths, so the _noresume version is enough (and in case of
5998 * runtime resume it's necessary).
Jesse Barnes1a01ab32012-11-02 11:14:00 -07005999 */
Imre Deakc6df39b2014-04-14 20:24:29 +03006000 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
6001 round_jiffies_up_relative(HZ)))
6002 intel_runtime_pm_get_noresume(dev_priv);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006003 }
6004}
6005
Imre Deakc6df39b2014-04-14 20:24:29 +03006006void intel_reset_gt_powersave(struct drm_device *dev)
6007{
6008 struct drm_i915_private *dev_priv = dev->dev_private;
6009
Imre Deakdbea3ce2014-12-15 18:59:28 +02006010 if (INTEL_INFO(dev)->gen < 6)
6011 return;
6012
6013 gen6_suspend_rps(dev);
Imre Deakc6df39b2014-04-14 20:24:29 +03006014 dev_priv->rps.enabled = false;
Imre Deakc6df39b2014-04-14 20:24:29 +03006015}
6016
Daniel Vetter3107bd42012-10-31 22:52:31 +01006017static void ibx_init_clock_gating(struct drm_device *dev)
6018{
6019 struct drm_i915_private *dev_priv = dev->dev_private;
6020
6021 /*
6022 * On Ibex Peak and Cougar Point, we need to disable clock
6023 * gating for the panel power sequencer or it will fail to
6024 * start up when no ports are active.
6025 */
6026 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6027}
6028
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006029static void g4x_disable_trickle_feed(struct drm_device *dev)
6030{
6031 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006032 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006033
Damien Lespiau055e3932014-08-18 13:49:10 +01006034 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006035 I915_WRITE(DSPCNTR(pipe),
6036 I915_READ(DSPCNTR(pipe)) |
6037 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006038
6039 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6040 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006041 }
6042}
6043
Ville Syrjälä017636c2013-12-05 15:51:37 +02006044static void ilk_init_lp_watermarks(struct drm_device *dev)
6045{
6046 struct drm_i915_private *dev_priv = dev->dev_private;
6047
6048 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6049 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6050 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6051
6052 /*
6053 * Don't touch WM1S_LP_EN here.
6054 * Doing so could cause underruns.
6055 */
6056}
6057
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006058static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006059{
6060 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006061 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006062
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006063 /*
6064 * Required for FBC
6065 * WaFbcDisableDpfcClockGating:ilk
6066 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006067 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6068 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6069 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006070
6071 I915_WRITE(PCH_3DCGDIS0,
6072 MARIUNIT_CLOCK_GATE_DISABLE |
6073 SVSMUNIT_CLOCK_GATE_DISABLE);
6074 I915_WRITE(PCH_3DCGDIS1,
6075 VFMUNIT_CLOCK_GATE_DISABLE);
6076
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006077 /*
6078 * According to the spec the following bits should be set in
6079 * order to enable memory self-refresh
6080 * The bit 22/21 of 0x42004
6081 * The bit 5 of 0x42020
6082 * The bit 15 of 0x45000
6083 */
6084 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6085 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6086 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006087 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006088 I915_WRITE(DISP_ARB_CTL,
6089 (I915_READ(DISP_ARB_CTL) |
6090 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006091
6092 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006093
6094 /*
6095 * Based on the document from hardware guys the following bits
6096 * should be set unconditionally in order to enable FBC.
6097 * The bit 22 of 0x42000
6098 * The bit 22 of 0x42004
6099 * The bit 7,8,9 of 0x42020.
6100 */
6101 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006102 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006103 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6104 I915_READ(ILK_DISPLAY_CHICKEN1) |
6105 ILK_FBCQ_DIS);
6106 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6107 I915_READ(ILK_DISPLAY_CHICKEN2) |
6108 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006109 }
6110
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006111 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6112
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006113 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6114 I915_READ(ILK_DISPLAY_CHICKEN2) |
6115 ILK_ELPIN_409_SELECT);
6116 I915_WRITE(_3D_CHICKEN2,
6117 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6118 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006119
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006120 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006121 I915_WRITE(CACHE_MODE_0,
6122 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006123
Akash Goel4e046322014-04-04 17:14:38 +05306124 /* WaDisable_RenderCache_OperationalFlush:ilk */
6125 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6126
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006127 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006128
Daniel Vetter3107bd42012-10-31 22:52:31 +01006129 ibx_init_clock_gating(dev);
6130}
6131
6132static void cpt_init_clock_gating(struct drm_device *dev)
6133{
6134 struct drm_i915_private *dev_priv = dev->dev_private;
6135 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006136 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006137
6138 /*
6139 * On Ibex Peak and Cougar Point, we need to disable clock
6140 * gating for the panel power sequencer or it will fail to
6141 * start up when no ports are active.
6142 */
Jesse Barnescd664072013-10-02 10:34:19 -07006143 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6144 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6145 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006146 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6147 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006148 /* The below fixes the weird display corruption, a few pixels shifted
6149 * downward, on (only) LVDS of some HP laptops with IVY.
6150 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006151 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006152 val = I915_READ(TRANS_CHICKEN2(pipe));
6153 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6154 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006155 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006156 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006157 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6158 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6159 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006160 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6161 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006162 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006163 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006164 I915_WRITE(TRANS_CHICKEN1(pipe),
6165 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6166 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006167}
6168
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006169static void gen6_check_mch_setup(struct drm_device *dev)
6170{
6171 struct drm_i915_private *dev_priv = dev->dev_private;
6172 uint32_t tmp;
6173
6174 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006175 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6176 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6177 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006178}
6179
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006180static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006181{
6182 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006183 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006184
Damien Lespiau231e54f2012-10-19 17:55:41 +01006185 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006186
6187 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6188 I915_READ(ILK_DISPLAY_CHICKEN2) |
6189 ILK_ELPIN_409_SELECT);
6190
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006191 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006192 I915_WRITE(_3D_CHICKEN,
6193 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6194
Akash Goel4e046322014-04-04 17:14:38 +05306195 /* WaDisable_RenderCache_OperationalFlush:snb */
6196 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6197
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006198 /*
6199 * BSpec recoomends 8x4 when MSAA is used,
6200 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006201 *
6202 * Note that PS/WM thread counts depend on the WIZ hashing
6203 * disable bit, which we don't touch here, but it's good
6204 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006205 */
6206 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006207 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006208
Ville Syrjälä017636c2013-12-05 15:51:37 +02006209 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006210
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006211 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006212 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006213
6214 I915_WRITE(GEN6_UCGCTL1,
6215 I915_READ(GEN6_UCGCTL1) |
6216 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6217 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6218
6219 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6220 * gating disable must be set. Failure to set it results in
6221 * flickering pixels due to Z write ordering failures after
6222 * some amount of runtime in the Mesa "fire" demo, and Unigine
6223 * Sanctuary and Tropics, and apparently anything else with
6224 * alpha test or pixel discard.
6225 *
6226 * According to the spec, bit 11 (RCCUNIT) must also be set,
6227 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006228 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006229 * WaDisableRCCUnitClockGating:snb
6230 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006231 */
6232 I915_WRITE(GEN6_UCGCTL2,
6233 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6234 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6235
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006236 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006237 I915_WRITE(_3D_CHICKEN3,
6238 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006239
6240 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006241 * Bspec says:
6242 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6243 * 3DSTATE_SF number of SF output attributes is more than 16."
6244 */
6245 I915_WRITE(_3D_CHICKEN3,
6246 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6247
6248 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006249 * According to the spec the following bits should be
6250 * set in order to enable memory self-refresh and fbc:
6251 * The bit21 and bit22 of 0x42000
6252 * The bit21 and bit22 of 0x42004
6253 * The bit5 and bit7 of 0x42020
6254 * The bit14 of 0x70180
6255 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006256 *
6257 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006258 */
6259 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6260 I915_READ(ILK_DISPLAY_CHICKEN1) |
6261 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6262 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6263 I915_READ(ILK_DISPLAY_CHICKEN2) |
6264 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006265 I915_WRITE(ILK_DSPCLK_GATE_D,
6266 I915_READ(ILK_DSPCLK_GATE_D) |
6267 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6268 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006269
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006270 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006271
Daniel Vetter3107bd42012-10-31 22:52:31 +01006272 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006273
6274 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006275}
6276
6277static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6278{
6279 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
6280
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006281 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006282 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006283 *
6284 * This actually overrides the dispatch
6285 * mode for all thread types.
6286 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006287 reg &= ~GEN7_FF_SCHED_MASK;
6288 reg |= GEN7_FF_TS_SCHED_HW;
6289 reg |= GEN7_FF_VS_SCHED_HW;
6290 reg |= GEN7_FF_DS_SCHED_HW;
6291
6292 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6293}
6294
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006295static void lpt_init_clock_gating(struct drm_device *dev)
6296{
6297 struct drm_i915_private *dev_priv = dev->dev_private;
6298
6299 /*
6300 * TODO: this bit should only be enabled when really needed, then
6301 * disabled when not needed anymore in order to save power.
6302 */
6303 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE)
6304 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6305 I915_READ(SOUTH_DSPCLK_GATE_D) |
6306 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006307
6308 /* WADPOClockGatingDisable:hsw */
6309 I915_WRITE(_TRANSA_CHICKEN1,
6310 I915_READ(_TRANSA_CHICKEN1) |
6311 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006312}
6313
Imre Deak7d708ee2013-04-17 14:04:50 +03006314static void lpt_suspend_hw(struct drm_device *dev)
6315{
6316 struct drm_i915_private *dev_priv = dev->dev_private;
6317
6318 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
6319 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
6320
6321 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6322 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6323 }
6324}
6325
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006326static void broadwell_init_clock_gating(struct drm_device *dev)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006327{
6328 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00006329 enum pipe pipe;
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006330 uint32_t misccpctl;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006331
Ville Syrjälä7ad0dba2015-05-19 20:32:55 +03006332 ilk_init_lp_watermarks(dev);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006333
Ben Widawskyab57fff2013-12-12 15:28:04 -08006334 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006335 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006336
Ben Widawskyab57fff2013-12-12 15:28:04 -08006337 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006338 I915_WRITE(CHICKEN_PAR1_1,
6339 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6340
Ben Widawskyab57fff2013-12-12 15:28:04 -08006341 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006342 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006343 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006344 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006345 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006346 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006347
Ben Widawskyab57fff2013-12-12 15:28:04 -08006348 /* WaVSRefCountFullforceMissDisable:bdw */
6349 /* WaDSRefCountFullforceMissDisable:bdw */
6350 I915_WRITE(GEN7_FF_THREAD_MODE,
6351 I915_READ(GEN7_FF_THREAD_MODE) &
6352 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006353
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006354 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6355 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006356
6357 /* WaDisableSDEUnitClockGating:bdw */
6358 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6359 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006360
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006361 /*
6362 * WaProgramL3SqcReg1Default:bdw
6363 * WaTempDisableDOPClkGating:bdw
6364 */
6365 misccpctl = I915_READ(GEN7_MISCCPCTL);
6366 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6367 I915_WRITE(GEN8_L3SQCREG1, BDW_WA_L3SQCREG1_DEFAULT);
6368 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6369
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006370 /*
6371 * WaGttCachingOffByDefault:bdw
6372 * GTT cache may not work with big pages, so if those
6373 * are ever enabled GTT cache may need to be disabled.
6374 */
6375 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
6376
Paulo Zanoni89d6b2b2014-08-21 17:09:36 -03006377 lpt_init_clock_gating(dev);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006378}
6379
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006380static void haswell_init_clock_gating(struct drm_device *dev)
6381{
6382 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006383
Ville Syrjälä017636c2013-12-05 15:51:37 +02006384 ilk_init_lp_watermarks(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006385
Francisco Jerezf3fc4882013-10-02 15:53:16 -07006386 /* L3 caching of data atomics doesn't work -- disable it. */
6387 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6388 I915_WRITE(HSW_ROW_CHICKEN3,
6389 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6390
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006391 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006392 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6393 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6394 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6395
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02006396 /* WaVSRefCountFullforceMissDisable:hsw */
6397 I915_WRITE(GEN7_FF_THREAD_MODE,
6398 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006399
Akash Goel4e046322014-04-04 17:14:38 +05306400 /* WaDisable_RenderCache_OperationalFlush:hsw */
6401 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6402
Chia-I Wufe27c602014-01-28 13:29:33 +08006403 /* enable HiZ Raw Stall Optimization */
6404 I915_WRITE(CACHE_MODE_0_GEN7,
6405 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6406
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006407 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006408 I915_WRITE(CACHE_MODE_1,
6409 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006410
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006411 /*
6412 * BSpec recommends 8x4 when MSAA is used,
6413 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006414 *
6415 * Note that PS/WM thread counts depend on the WIZ hashing
6416 * disable bit, which we don't touch here, but it's good
6417 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006418 */
6419 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006420 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006421
Kenneth Graunke94411592014-12-31 16:23:00 -08006422 /* WaSampleCChickenBitEnable:hsw */
6423 I915_WRITE(HALF_SLICE_CHICKEN3,
6424 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
6425
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006426 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07006427 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
6428
Paulo Zanoni90a88642013-05-03 17:23:45 -03006429 /* WaRsPkgCStateDisplayPMReq:hsw */
6430 I915_WRITE(CHICKEN_PAR1_1,
6431 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006432
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006433 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006434}
6435
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006436static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006437{
6438 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07006439 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006440
Ville Syrjälä017636c2013-12-05 15:51:37 +02006441 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006442
Damien Lespiau231e54f2012-10-19 17:55:41 +01006443 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006444
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006445 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05006446 I915_WRITE(_3D_CHICKEN3,
6447 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6448
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006449 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006450 I915_WRITE(IVB_CHICKEN3,
6451 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6452 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6453
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006454 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07006455 if (IS_IVB_GT1(dev))
6456 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
6457 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006458
Akash Goel4e046322014-04-04 17:14:38 +05306459 /* WaDisable_RenderCache_OperationalFlush:ivb */
6460 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6461
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006462 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006463 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
6464 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
6465
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006466 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006467 I915_WRITE(GEN7_L3CNTLREG1,
6468 GEN7_WA_FOR_GEN7_L3_CONTROL);
6469 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07006470 GEN7_WA_L3_CHICKEN_MODE);
6471 if (IS_IVB_GT1(dev))
6472 I915_WRITE(GEN7_ROW_CHICKEN2,
6473 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006474 else {
6475 /* must write both registers */
6476 I915_WRITE(GEN7_ROW_CHICKEN2,
6477 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07006478 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
6479 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006480 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006481
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006482 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05006483 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6484 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6485
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02006486 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006487 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006488 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006489 */
6490 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02006491 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006492
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006493 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006494 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6495 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6496 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6497
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006498 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006499
6500 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02006501
Chris Wilson22721342014-03-04 09:41:43 +00006502 if (0) { /* causes HiZ corruption on ivb:gt1 */
6503 /* enable HiZ Raw Stall Optimization */
6504 I915_WRITE(CACHE_MODE_0_GEN7,
6505 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6506 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08006507
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006508 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02006509 I915_WRITE(CACHE_MODE_1,
6510 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07006511
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006512 /*
6513 * BSpec recommends 8x4 when MSAA is used,
6514 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006515 *
6516 * Note that PS/WM thread counts depend on the WIZ hashing
6517 * disable bit, which we don't touch here, but it's good
6518 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006519 */
6520 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006521 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006522
Ben Widawsky20848222012-05-04 18:58:59 -07006523 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
6524 snpcr &= ~GEN6_MBC_SNPCR_MASK;
6525 snpcr |= GEN6_MBC_SNPCR_MED;
6526 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006527
Ben Widawskyab5c6082013-04-05 13:12:41 -07006528 if (!HAS_PCH_NOP(dev))
6529 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006530
6531 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006532}
6533
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006534static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv)
6535{
6536 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6537
6538 /*
6539 * Disable trickle feed and enable pnd deadline calculation
6540 */
6541 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
6542 I915_WRITE(CBR1_VLV, 0);
6543}
6544
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006545static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006546{
6547 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006548
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006549 vlv_init_display_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006550
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006551 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05006552 I915_WRITE(_3D_CHICKEN3,
6553 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6554
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006555 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006556 I915_WRITE(IVB_CHICKEN3,
6557 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6558 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6559
Ville Syrjäläfad7d362014-01-22 21:32:39 +02006560 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006561 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07006562 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08006563 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
6564 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006565
Akash Goel4e046322014-04-04 17:14:38 +05306566 /* WaDisable_RenderCache_OperationalFlush:vlv */
6567 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6568
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006569 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05006570 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6571 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6572
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006573 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07006574 I915_WRITE(GEN7_ROW_CHICKEN2,
6575 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
6576
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006577 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006578 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6579 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6580 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6581
Ville Syrjälä46680e02014-01-22 21:33:01 +02006582 gen7_setup_fixed_func_scheduler(dev_priv);
6583
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006584 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006585 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006586 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006587 */
6588 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006589 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006590
Akash Goelc98f5062014-03-24 23:00:07 +05306591 /* WaDisableL3Bank2xClockGate:vlv
6592 * Disabling L3 clock gating- MMIO 940c[25] = 1
6593 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
6594 I915_WRITE(GEN7_UCGCTL4,
6595 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07006596
Ville Syrjäläafd58e72014-01-22 21:33:03 +02006597 /*
6598 * BSpec says this must be set, even though
6599 * WaDisable4x2SubspanOptimization isn't listed for VLV.
6600 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02006601 I915_WRITE(CACHE_MODE_1,
6602 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07006603
6604 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02006605 * BSpec recommends 8x4 when MSAA is used,
6606 * however in practice 16x4 seems fastest.
6607 *
6608 * Note that PS/WM thread counts depend on the WIZ hashing
6609 * disable bit, which we don't touch here, but it's good
6610 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
6611 */
6612 I915_WRITE(GEN7_GT_MODE,
6613 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
6614
6615 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02006616 * WaIncreaseL3CreditsForVLVB0:vlv
6617 * This is the hardware default actually.
6618 */
6619 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
6620
6621 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006622 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07006623 * Disable clock gating on th GCFG unit to prevent a delay
6624 * in the reporting of vblank events.
6625 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02006626 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006627}
6628
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006629static void cherryview_init_clock_gating(struct drm_device *dev)
6630{
6631 struct drm_i915_private *dev_priv = dev->dev_private;
6632
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006633 vlv_init_display_clock_gating(dev_priv);
Ville Syrjälädd811e72014-04-09 13:28:33 +03006634
Ville Syrjälä232ce332014-04-09 13:28:35 +03006635 /* WaVSRefCountFullforceMissDisable:chv */
6636 /* WaDSRefCountFullforceMissDisable:chv */
6637 I915_WRITE(GEN7_FF_THREAD_MODE,
6638 I915_READ(GEN7_FF_THREAD_MODE) &
6639 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03006640
6641 /* WaDisableSemaphoreAndSyncFlipWait:chv */
6642 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6643 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03006644
6645 /* WaDisableCSUnitClockGating:chv */
6646 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
6647 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03006648
6649 /* WaDisableSDEUnitClockGating:chv */
6650 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6651 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006652
6653 /*
6654 * GTT cache may not work with big pages, so if those
6655 * are ever enabled GTT cache may need to be disabled.
6656 */
6657 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006658}
6659
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006660static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006661{
6662 struct drm_i915_private *dev_priv = dev->dev_private;
6663 uint32_t dspclk_gate;
6664
6665 I915_WRITE(RENCLK_GATE_D1, 0);
6666 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6667 GS_UNIT_CLOCK_GATE_DISABLE |
6668 CL_UNIT_CLOCK_GATE_DISABLE);
6669 I915_WRITE(RAMCLK_GATE_D, 0);
6670 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6671 OVRUNIT_CLOCK_GATE_DISABLE |
6672 OVCUNIT_CLOCK_GATE_DISABLE;
6673 if (IS_GM45(dev))
6674 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
6675 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02006676
6677 /* WaDisableRenderCachePipelinedFlush */
6678 I915_WRITE(CACHE_MODE_0,
6679 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03006680
Akash Goel4e046322014-04-04 17:14:38 +05306681 /* WaDisable_RenderCache_OperationalFlush:g4x */
6682 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6683
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006684 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006685}
6686
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006687static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006688{
6689 struct drm_i915_private *dev_priv = dev->dev_private;
6690
6691 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
6692 I915_WRITE(RENCLK_GATE_D2, 0);
6693 I915_WRITE(DSPCLK_GATE_D, 0);
6694 I915_WRITE(RAMCLK_GATE_D, 0);
6695 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006696 I915_WRITE(MI_ARB_STATE,
6697 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306698
6699 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6700 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006701}
6702
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006703static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006704{
6705 struct drm_i915_private *dev_priv = dev->dev_private;
6706
6707 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
6708 I965_RCC_CLOCK_GATE_DISABLE |
6709 I965_RCPB_CLOCK_GATE_DISABLE |
6710 I965_ISC_CLOCK_GATE_DISABLE |
6711 I965_FBC_CLOCK_GATE_DISABLE);
6712 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006713 I915_WRITE(MI_ARB_STATE,
6714 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306715
6716 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6717 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006718}
6719
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006720static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006721{
6722 struct drm_i915_private *dev_priv = dev->dev_private;
6723 u32 dstate = I915_READ(D_STATE);
6724
6725 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
6726 DSTATE_DOT_CLOCK_GATING;
6727 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01006728
6729 if (IS_PINEVIEW(dev))
6730 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02006731
6732 /* IIR "flip pending" means done if this bit is set */
6733 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02006734
6735 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02006736 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02006737
6738 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
6739 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03006740
6741 I915_WRITE(MI_ARB_STATE,
6742 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006743}
6744
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006745static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006746{
6747 struct drm_i915_private *dev_priv = dev->dev_private;
6748
6749 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02006750
6751 /* interrupts should cause a wake up from C3 */
6752 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
6753 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03006754
6755 I915_WRITE(MEM_MODE,
6756 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006757}
6758
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006759static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006760{
6761 struct drm_i915_private *dev_priv = dev->dev_private;
6762
6763 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03006764
6765 I915_WRITE(MEM_MODE,
6766 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
6767 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006768}
6769
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006770void intel_init_clock_gating(struct drm_device *dev)
6771{
6772 struct drm_i915_private *dev_priv = dev->dev_private;
6773
Damien Lespiauc57e3552015-02-09 19:33:05 +00006774 if (dev_priv->display.init_clock_gating)
6775 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006776}
6777
Imre Deak7d708ee2013-04-17 14:04:50 +03006778void intel_suspend_hw(struct drm_device *dev)
6779{
6780 if (HAS_PCH_LPT(dev))
6781 lpt_suspend_hw(dev);
6782}
6783
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006784/* Set up chip specific power management-related functions */
6785void intel_init_pm(struct drm_device *dev)
6786{
6787 struct drm_i915_private *dev_priv = dev->dev_private;
6788
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02006789 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006790
Daniel Vetterc921aba2012-04-26 23:28:17 +02006791 /* For cxsr */
6792 if (IS_PINEVIEW(dev))
6793 i915_pineview_get_mem_freq(dev);
6794 else if (IS_GEN5(dev))
6795 i915_ironlake_get_mem_freq(dev);
6796
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006797 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00006798 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00006799 skl_setup_wm_latency(dev);
6800
Imre Deaka82abe42015-03-27 14:00:04 +02006801 if (IS_BROXTON(dev))
6802 dev_priv->display.init_clock_gating =
6803 bxt_init_clock_gating;
6804 else if (IS_SKYLAKE(dev))
6805 dev_priv->display.init_clock_gating =
6806 skl_init_clock_gating;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00006807 dev_priv->display.update_wm = skl_update_wm;
6808 dev_priv->display.update_sprite_wm = skl_update_sprite_wm;
Damien Lespiauc83155a2014-03-28 00:18:35 +05306809 } else if (HAS_PCH_SPLIT(dev)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00006810 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03006811
Ville Syrjäläbd602542014-01-07 16:14:10 +02006812 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
6813 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
6814 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
6815 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
6816 dev_priv->display.update_wm = ilk_update_wm;
6817 dev_priv->display.update_sprite_wm = ilk_update_sprite_wm;
6818 } else {
6819 DRM_DEBUG_KMS("Failed to read display plane latency. "
6820 "Disable CxSR\n");
6821 }
6822
6823 if (IS_GEN5(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006824 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02006825 else if (IS_GEN6(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006826 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02006827 else if (IS_IVYBRIDGE(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006828 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02006829 else if (IS_HASWELL(dev))
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006830 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02006831 else if (INTEL_INFO(dev)->gen == 8)
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006832 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006833 } else if (IS_CHERRYVIEW(dev)) {
Ville Syrjäläae801522015-03-05 21:19:49 +02006834 dev_priv->display.update_wm = valleyview_update_wm;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05306835 dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006836 dev_priv->display.init_clock_gating =
6837 cherryview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006838 } else if (IS_VALLEYVIEW(dev)) {
6839 dev_priv->display.update_wm = valleyview_update_wm;
Gajanan Bhat01e184c2014-08-07 17:03:30 +05306840 dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006841 dev_priv->display.init_clock_gating =
6842 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006843 } else if (IS_PINEVIEW(dev)) {
6844 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
6845 dev_priv->is_ddr3,
6846 dev_priv->fsb_freq,
6847 dev_priv->mem_freq)) {
6848 DRM_INFO("failed to find known CxSR latency "
6849 "(found ddr%s fsb freq %d, mem freq %d), "
6850 "disabling CxSR\n",
6851 (dev_priv->is_ddr3 == 1) ? "3" : "2",
6852 dev_priv->fsb_freq, dev_priv->mem_freq);
6853 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03006854 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006855 dev_priv->display.update_wm = NULL;
6856 } else
6857 dev_priv->display.update_wm = pineview_update_wm;
6858 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
6859 } else if (IS_G4X(dev)) {
6860 dev_priv->display.update_wm = g4x_update_wm;
6861 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
6862 } else if (IS_GEN4(dev)) {
6863 dev_priv->display.update_wm = i965_update_wm;
6864 if (IS_CRESTLINE(dev))
6865 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
6866 else if (IS_BROADWATER(dev))
6867 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
6868 } else if (IS_GEN3(dev)) {
6869 dev_priv->display.update_wm = i9xx_update_wm;
6870 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
6871 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02006872 } else if (IS_GEN2(dev)) {
6873 if (INTEL_INFO(dev)->num_pipes == 1) {
6874 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006875 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02006876 } else {
6877 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006878 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02006879 }
6880
6881 if (IS_I85X(dev) || IS_I865G(dev))
6882 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
6883 else
6884 dev_priv->display.init_clock_gating = i830_init_clock_gating;
6885 } else {
6886 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006887 }
6888}
6889
Tom O'Rourke151a49d2014-11-13 18:50:10 -08006890int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07006891{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006892 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07006893
6894 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
6895 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
6896 return -EAGAIN;
6897 }
6898
6899 I915_WRITE(GEN6_PCODE_DATA, *val);
Damien Lespiaudddab342014-11-13 17:51:50 +00006900 I915_WRITE(GEN6_PCODE_DATA1, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07006901 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
6902
6903 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6904 500)) {
6905 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
6906 return -ETIMEDOUT;
6907 }
6908
6909 *val = I915_READ(GEN6_PCODE_DATA);
6910 I915_WRITE(GEN6_PCODE_DATA, 0);
6911
6912 return 0;
6913}
6914
Tom O'Rourke151a49d2014-11-13 18:50:10 -08006915int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07006916{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006917 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07006918
6919 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
6920 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
6921 return -EAGAIN;
6922 }
6923
6924 I915_WRITE(GEN6_PCODE_DATA, val);
6925 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
6926
6927 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
6928 500)) {
6929 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
6930 return -ETIMEDOUT;
6931 }
6932
6933 I915_WRITE(GEN6_PCODE_DATA, 0);
6934
6935 return 0;
6936}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07006937
Ville Syrjälädd06f882014-11-10 22:55:12 +02006938static int vlv_gpu_freq_div(unsigned int czclk_freq)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006939{
Ville Syrjälädd06f882014-11-10 22:55:12 +02006940 switch (czclk_freq) {
6941 case 200:
6942 return 10;
6943 case 267:
6944 return 12;
6945 case 320:
6946 case 333:
Ville Syrjälädd06f882014-11-10 22:55:12 +02006947 return 16;
Ville Syrjäläab3fb152014-11-10 22:55:15 +02006948 case 400:
6949 return 20;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006950 default:
6951 return -1;
6952 }
Ville Syrjälädd06f882014-11-10 22:55:12 +02006953}
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006954
Ville Syrjälädd06f882014-11-10 22:55:12 +02006955static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
6956{
6957 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
6958
6959 div = vlv_gpu_freq_div(czclk_freq);
6960 if (div < 0)
6961 return div;
6962
6963 return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006964}
6965
Fengguang Wub55dd642014-07-12 11:21:39 +02006966static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006967{
Ville Syrjälädd06f882014-11-10 22:55:12 +02006968 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006969
Ville Syrjälädd06f882014-11-10 22:55:12 +02006970 mul = vlv_gpu_freq_div(czclk_freq);
6971 if (mul < 0)
6972 return mul;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006973
Ville Syrjälädd06f882014-11-10 22:55:12 +02006974 return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07006975}
6976
Fengguang Wub55dd642014-07-12 11:21:39 +02006977static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05306978{
Ville Syrjälädd06f882014-11-10 22:55:12 +02006979 int div, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05306980
Ville Syrjälädd06f882014-11-10 22:55:12 +02006981 div = vlv_gpu_freq_div(czclk_freq) / 2;
6982 if (div < 0)
6983 return div;
Deepak S22b1b2f2014-07-12 14:54:33 +05306984
Ville Syrjälädd06f882014-11-10 22:55:12 +02006985 return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05306986}
6987
Fengguang Wub55dd642014-07-12 11:21:39 +02006988static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05306989{
Ville Syrjälädd06f882014-11-10 22:55:12 +02006990 int mul, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05306991
Ville Syrjälädd06f882014-11-10 22:55:12 +02006992 mul = vlv_gpu_freq_div(czclk_freq) / 2;
6993 if (mul < 0)
6994 return mul;
Deepak S22b1b2f2014-07-12 14:54:33 +05306995
Ville Syrjälä1c147622014-08-18 14:42:43 +03006996 /* CHV needs even values */
Ville Syrjälädd06f882014-11-10 22:55:12 +02006997 return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05306998}
6999
Ville Syrjälä616bc822015-01-23 21:04:25 +02007000int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7001{
Akash Goel80b6dda2015-03-06 11:07:15 +05307002 if (IS_GEN9(dev_priv->dev))
7003 return (val * GT_FREQUENCY_MULTIPLIER) / GEN9_FREQ_SCALER;
7004 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007005 return chv_gpu_freq(dev_priv, val);
7006 else if (IS_VALLEYVIEW(dev_priv->dev))
7007 return byt_gpu_freq(dev_priv, val);
7008 else
7009 return val * GT_FREQUENCY_MULTIPLIER;
7010}
7011
Ville Syrjälä616bc822015-01-23 21:04:25 +02007012int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7013{
Akash Goel80b6dda2015-03-06 11:07:15 +05307014 if (IS_GEN9(dev_priv->dev))
7015 return (val * GEN9_FREQ_SCALER) / GT_FREQUENCY_MULTIPLIER;
7016 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007017 return chv_freq_opcode(dev_priv, val);
Deepak S22b1b2f2014-07-12 14:54:33 +05307018 else if (IS_VALLEYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007019 return byt_freq_opcode(dev_priv, val);
7020 else
7021 return val / GT_FREQUENCY_MULTIPLIER;
Deepak S22b1b2f2014-07-12 14:54:33 +05307022}
7023
Chris Wilson6ad790c2015-04-07 16:20:31 +01007024struct request_boost {
7025 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02007026 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007027};
7028
7029static void __intel_rps_boost_work(struct work_struct *work)
7030{
7031 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01007032 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007033
Chris Wilsone61b9952015-04-27 13:41:24 +01007034 if (!i915_gem_request_completed(req, true))
7035 gen6_rps_boost(to_i915(req->ring->dev), NULL,
7036 req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007037
Chris Wilsone61b9952015-04-27 13:41:24 +01007038 i915_gem_request_unreference__unlocked(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007039 kfree(boost);
7040}
7041
7042void intel_queue_rps_boost_for_request(struct drm_device *dev,
Daniel Vettereed29a52015-05-21 14:21:25 +02007043 struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007044{
7045 struct request_boost *boost;
7046
Daniel Vettereed29a52015-05-21 14:21:25 +02007047 if (req == NULL || INTEL_INFO(dev)->gen < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007048 return;
7049
Chris Wilsone61b9952015-04-27 13:41:24 +01007050 if (i915_gem_request_completed(req, true))
7051 return;
7052
Chris Wilson6ad790c2015-04-07 16:20:31 +01007053 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
7054 if (boost == NULL)
7055 return;
7056
Daniel Vettereed29a52015-05-21 14:21:25 +02007057 i915_gem_request_reference(req);
7058 boost->req = req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007059
7060 INIT_WORK(&boost->work, __intel_rps_boost_work);
7061 queue_work(to_i915(dev)->wq, &boost->work);
7062}
7063
Daniel Vetterf742a552013-12-06 10:17:53 +01007064void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01007065{
7066 struct drm_i915_private *dev_priv = dev->dev_private;
7067
Daniel Vetterf742a552013-12-06 10:17:53 +01007068 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01007069 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01007070
Chris Wilson907b28c2013-07-19 20:36:52 +01007071 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
7072 intel_gen6_powersave_work);
Chris Wilson1854d5c2015-04-07 16:20:32 +01007073 INIT_LIST_HEAD(&dev_priv->rps.clients);
Chris Wilson2e1b8732015-04-27 13:41:22 +01007074 INIT_LIST_HEAD(&dev_priv->rps.semaphores.link);
7075 INIT_LIST_HEAD(&dev_priv->rps.mmioflips.link);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03007076
Paulo Zanoni33688d92014-03-07 20:08:19 -03007077 dev_priv->pm.suspended = false;
Chris Wilson907b28c2013-07-19 20:36:52 +01007078}