blob: c96055933064ff79e5d75dac4f752c370746739e [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);
Nick Hoath6381b552015-07-14 14:41:15 +010062
63 /* WaDisableKillLogic:bxt,skl */
64 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) |
65 ECOCHK_DIS_TLB);
Damien Lespiau77719d22015-02-09 19:33:13 +000066}
Damien Lespiau91e41d12014-03-26 17:42:50 +000067
Damien Lespiau45db2192015-02-09 19:33:09 +000068static void skl_init_clock_gating(struct drm_device *dev)
Damien Lespiauda2078c2013-02-13 15:27:27 +000069{
Damien Lespiauacd5c342014-03-26 16:55:46 +000070 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau3ca5da42014-03-26 18:18:01 +000071
Damien Lespiau77719d22015-02-09 19:33:13 +000072 gen9_init_clock_gating(dev);
73
Damien Lespiau669506e2015-02-26 18:20:38 +000074 if (INTEL_REVID(dev) <= SKL_REVID_B0) {
Hoath, Nicholas3dcd0202015-02-05 10:47:21 +000075 /*
76 * WaDisableSDEUnitClockGating:skl
Damien Lespiau9253c2e2015-02-09 19:33:10 +000077 * WaSetGAPSunitClckGateDisable:skl
Hoath, Nicholas3dcd0202015-02-05 10:47:21 +000078 */
79 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Damien Lespiau9253c2e2015-02-09 19:33:10 +000080 GEN8_GAPSUNIT_CLOCK_GATE_DISABLE |
Hoath, Nicholas3dcd0202015-02-05 10:47:21 +000081 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiauf9fc42f2015-02-26 18:20:39 +000082
83 /* WaDisableVFUnitClockGating:skl */
84 I915_WRITE(GEN6_UCGCTL2, I915_READ(GEN6_UCGCTL2) |
85 GEN6_VFUNIT_CLOCK_GATE_DISABLE);
Hoath, Nicholas3dcd0202015-02-05 10:47:21 +000086 }
Damien Lespiau8bc0ccf2015-02-09 19:33:18 +000087
Damien Lespiau2caa3b22015-02-09 19:33:20 +000088 if (INTEL_REVID(dev) <= SKL_REVID_D0) {
Damien Lespiau81e231a2015-02-09 19:33:19 +000089 /* WaDisableHDCInvalidation:skl */
90 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) |
91 BDW_DISABLE_HDC_INVALIDATION);
92
Damien Lespiau2caa3b22015-02-09 19:33:20 +000093 /* WaDisableChickenBitTSGBarrierAckForFFSliceCS:skl */
94 I915_WRITE(FF_SLICE_CS_CHICKEN2,
Damien Lespiauf1d3d342015-05-06 14:36:27 +010095 _MASKED_BIT_ENABLE(GEN9_TSG_BARRIER_ACK_DISABLE));
Damien Lespiau2caa3b22015-02-09 19:33:20 +000096 }
Damien Lespiau81e231a2015-02-09 19:33:19 +000097
Arun Siluverya4106a72015-07-14 15:01:29 +010098 /* GEN8_L3SQCREG4 has a dependency with WA batch so any new changes
99 * involving this register should also be added to WA batch as required.
100 */
Damien Lespiau8bc0ccf2015-02-09 19:33:18 +0000101 if (INTEL_REVID(dev) <= SKL_REVID_E0)
102 /* WaDisableLSQCROPERFforOCL:skl */
103 I915_WRITE(GEN8_L3SQCREG4, I915_READ(GEN8_L3SQCREG4) |
104 GEN8_LQSC_RO_PERF_DIS);
Arun Siluvery245d9662015-08-03 20:24:56 +0100105
106 /* WaEnableGapsTsvCreditFix:skl */
107 if (IS_SKYLAKE(dev) && (INTEL_REVID(dev) >= SKL_REVID_C0)) {
108 I915_WRITE(GEN8_GARBCNTL, (I915_READ(GEN8_GARBCNTL) |
109 GEN9_GAPS_TSV_CREDIT_DISABLE));
110 }
Damien Lespiauda2078c2013-02-13 15:27:27 +0000111}
112
Imre Deaka82abe42015-03-27 14:00:04 +0200113static void bxt_init_clock_gating(struct drm_device *dev)
114{
Imre Deak32608ca2015-03-11 11:10:27 +0200115 struct drm_i915_private *dev_priv = dev->dev_private;
116
Imre Deaka82abe42015-03-27 14:00:04 +0200117 gen9_init_clock_gating(dev);
Imre Deak32608ca2015-03-11 11:10:27 +0200118
Nick Hoatha7546152015-06-29 14:07:32 +0100119 /* WaDisableSDEUnitClockGating:bxt */
120 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
121 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
122
Imre Deak32608ca2015-03-11 11:10:27 +0200123 /*
124 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +0200125 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +0200126 */
Imre Deak32608ca2015-03-11 11:10:27 +0200127 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +0200128 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deak32608ca2015-03-11 11:10:27 +0200129
Arun Siluveryaa66c502015-09-25 14:33:40 +0100130 /* WaStoreMultiplePTEenable:bxt */
131 /* This is a requirement according to Hardware specification */
132 if (INTEL_REVID(dev) == BXT_REVID_A0)
Nick Hoatha7546152015-06-29 14:07:32 +0100133 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_TLBPF);
Arun Siluvery5b88aba2015-09-08 10:31:49 +0100134
135 /* WaSetClckGatingDisableMedia:bxt */
136 if (INTEL_REVID(dev) == BXT_REVID_A0) {
137 I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) &
138 ~GEN8_DOP_CLOCK_GATE_MEDIA_ENABLE));
139 }
Imre Deaka82abe42015-03-27 14:00:04 +0200140}
141
Daniel Vetterc921aba2012-04-26 23:28:17 +0200142static void i915_pineview_get_mem_freq(struct drm_device *dev)
143{
Jani Nikula50227e12014-03-31 14:27:21 +0300144 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200145 u32 tmp;
146
147 tmp = I915_READ(CLKCFG);
148
149 switch (tmp & CLKCFG_FSB_MASK) {
150 case CLKCFG_FSB_533:
151 dev_priv->fsb_freq = 533; /* 133*4 */
152 break;
153 case CLKCFG_FSB_800:
154 dev_priv->fsb_freq = 800; /* 200*4 */
155 break;
156 case CLKCFG_FSB_667:
157 dev_priv->fsb_freq = 667; /* 167*4 */
158 break;
159 case CLKCFG_FSB_400:
160 dev_priv->fsb_freq = 400; /* 100*4 */
161 break;
162 }
163
164 switch (tmp & CLKCFG_MEM_MASK) {
165 case CLKCFG_MEM_533:
166 dev_priv->mem_freq = 533;
167 break;
168 case CLKCFG_MEM_667:
169 dev_priv->mem_freq = 667;
170 break;
171 case CLKCFG_MEM_800:
172 dev_priv->mem_freq = 800;
173 break;
174 }
175
176 /* detect pineview DDR3 setting */
177 tmp = I915_READ(CSHRDDR3CTL);
178 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
179}
180
181static void i915_ironlake_get_mem_freq(struct drm_device *dev)
182{
Jani Nikula50227e12014-03-31 14:27:21 +0300183 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200184 u16 ddrpll, csipll;
185
186 ddrpll = I915_READ16(DDRMPLL1);
187 csipll = I915_READ16(CSIPLL0);
188
189 switch (ddrpll & 0xff) {
190 case 0xc:
191 dev_priv->mem_freq = 800;
192 break;
193 case 0x10:
194 dev_priv->mem_freq = 1066;
195 break;
196 case 0x14:
197 dev_priv->mem_freq = 1333;
198 break;
199 case 0x18:
200 dev_priv->mem_freq = 1600;
201 break;
202 default:
203 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
204 ddrpll & 0xff);
205 dev_priv->mem_freq = 0;
206 break;
207 }
208
Daniel Vetter20e4d402012-08-08 23:35:39 +0200209 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200210
211 switch (csipll & 0x3ff) {
212 case 0x00c:
213 dev_priv->fsb_freq = 3200;
214 break;
215 case 0x00e:
216 dev_priv->fsb_freq = 3733;
217 break;
218 case 0x010:
219 dev_priv->fsb_freq = 4266;
220 break;
221 case 0x012:
222 dev_priv->fsb_freq = 4800;
223 break;
224 case 0x014:
225 dev_priv->fsb_freq = 5333;
226 break;
227 case 0x016:
228 dev_priv->fsb_freq = 5866;
229 break;
230 case 0x018:
231 dev_priv->fsb_freq = 6400;
232 break;
233 default:
234 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
235 csipll & 0x3ff);
236 dev_priv->fsb_freq = 0;
237 break;
238 }
239
240 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200241 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200242 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200243 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200244 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200245 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200246 }
247}
248
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300249static const struct cxsr_latency cxsr_latency_table[] = {
250 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
251 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
252 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
253 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
254 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
255
256 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
257 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
258 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
259 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
260 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
261
262 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
263 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
264 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
265 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
266 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
267
268 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
269 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
270 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
271 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
272 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
273
274 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
275 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
276 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
277 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
278 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
279
280 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
281 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
282 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
283 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
284 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
285};
286
Daniel Vetter63c62272012-04-21 23:17:55 +0200287static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300288 int is_ddr3,
289 int fsb,
290 int mem)
291{
292 const struct cxsr_latency *latency;
293 int i;
294
295 if (fsb == 0 || mem == 0)
296 return NULL;
297
298 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
299 latency = &cxsr_latency_table[i];
300 if (is_desktop == latency->is_desktop &&
301 is_ddr3 == latency->is_ddr3 &&
302 fsb == latency->fsb_freq && mem == latency->mem_freq)
303 return latency;
304 }
305
306 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
307
308 return NULL;
309}
310
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200311static void chv_set_memory_dvfs(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_DDR_SETUP2);
318 if (enable)
319 val &= ~FORCE_DDR_HIGH_FREQ;
320 else
321 val |= FORCE_DDR_HIGH_FREQ;
322 val &= ~FORCE_DDR_LOW_FREQ;
323 val |= FORCE_DDR_FREQ_REQ_ACK;
324 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
325
326 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
327 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
328 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
329
330 mutex_unlock(&dev_priv->rps.hw_lock);
331}
332
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200333static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
334{
335 u32 val;
336
337 mutex_lock(&dev_priv->rps.hw_lock);
338
339 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
340 if (enable)
341 val |= DSP_MAXFIFO_PM5_ENABLE;
342 else
343 val &= ~DSP_MAXFIFO_PM5_ENABLE;
344 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
345
346 mutex_unlock(&dev_priv->rps.hw_lock);
347}
348
Ville Syrjäläf4998962015-03-10 17:02:21 +0200349#define FW_WM(value, plane) \
350 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
351
Imre Deak5209b1f2014-07-01 12:36:17 +0300352void intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300353{
Imre Deak5209b1f2014-07-01 12:36:17 +0300354 struct drm_device *dev = dev_priv->dev;
355 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300356
Imre Deak5209b1f2014-07-01 12:36:17 +0300357 if (IS_VALLEYVIEW(dev)) {
358 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300359 POSTING_READ(FW_BLC_SELF_VLV);
Ville Syrjälä852eb002015-06-24 22:00:07 +0300360 dev_priv->wm.vlv.cxsr = enable;
Imre Deak5209b1f2014-07-01 12:36:17 +0300361 } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) {
362 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300363 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300364 } else if (IS_PINEVIEW(dev)) {
365 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
366 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
367 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300368 POSTING_READ(DSPFW3);
Imre Deak5209b1f2014-07-01 12:36:17 +0300369 } else if (IS_I945G(dev) || IS_I945GM(dev)) {
370 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
371 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
372 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300373 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300374 } else if (IS_I915GM(dev)) {
375 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
376 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
377 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300378 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300379 } else {
380 return;
381 }
382
383 DRM_DEBUG_KMS("memory self-refresh is %s\n",
384 enable ? "enabled" : "disabled");
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300385}
386
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200387
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300388/*
389 * Latency for FIFO fetches is dependent on several factors:
390 * - memory configuration (speed, channels)
391 * - chipset
392 * - current MCH state
393 * It can be fairly high in some situations, so here we assume a fairly
394 * pessimal value. It's a tradeoff between extra memory fetches (if we
395 * set this value too high, the FIFO will fetch frequently to stay full)
396 * and power consumption (set it too low to save power and we might see
397 * FIFO underruns and display "flicker").
398 *
399 * A value of 5us seems to be a good balance; safe for very low end
400 * platforms but not overly aggressive on lower latency configs.
401 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100402static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300403
Ville Syrjäläb5004722015-03-05 21:19:47 +0200404#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
405 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
406
407static int vlv_get_fifo_size(struct drm_device *dev,
408 enum pipe pipe, int plane)
409{
410 struct drm_i915_private *dev_priv = dev->dev_private;
411 int sprite0_start, sprite1_start, size;
412
413 switch (pipe) {
414 uint32_t dsparb, dsparb2, dsparb3;
415 case PIPE_A:
416 dsparb = I915_READ(DSPARB);
417 dsparb2 = I915_READ(DSPARB2);
418 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
419 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
420 break;
421 case PIPE_B:
422 dsparb = I915_READ(DSPARB);
423 dsparb2 = I915_READ(DSPARB2);
424 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
425 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
426 break;
427 case PIPE_C:
428 dsparb2 = I915_READ(DSPARB2);
429 dsparb3 = I915_READ(DSPARB3);
430 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
431 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
432 break;
433 default:
434 return 0;
435 }
436
437 switch (plane) {
438 case 0:
439 size = sprite0_start;
440 break;
441 case 1:
442 size = sprite1_start - sprite0_start;
443 break;
444 case 2:
445 size = 512 - 1 - sprite1_start;
446 break;
447 default:
448 return 0;
449 }
450
451 DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n",
452 pipe_name(pipe), plane == 0 ? "primary" : "sprite",
453 plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1),
454 size);
455
456 return size;
457}
458
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300459static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300460{
461 struct drm_i915_private *dev_priv = dev->dev_private;
462 uint32_t dsparb = I915_READ(DSPARB);
463 int size;
464
465 size = dsparb & 0x7f;
466 if (plane)
467 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
468
469 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
470 plane ? "B" : "A", size);
471
472 return size;
473}
474
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200475static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300476{
477 struct drm_i915_private *dev_priv = dev->dev_private;
478 uint32_t dsparb = I915_READ(DSPARB);
479 int size;
480
481 size = dsparb & 0x1ff;
482 if (plane)
483 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
484 size >>= 1; /* Convert to cachelines */
485
486 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
487 plane ? "B" : "A", size);
488
489 return size;
490}
491
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300492static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300493{
494 struct drm_i915_private *dev_priv = dev->dev_private;
495 uint32_t dsparb = I915_READ(DSPARB);
496 int size;
497
498 size = dsparb & 0x7f;
499 size >>= 2; /* Convert to cachelines */
500
501 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
502 plane ? "B" : "A",
503 size);
504
505 return size;
506}
507
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300508/* Pineview has different values for various configs */
509static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300510 .fifo_size = PINEVIEW_DISPLAY_FIFO,
511 .max_wm = PINEVIEW_MAX_WM,
512 .default_wm = PINEVIEW_DFT_WM,
513 .guard_size = PINEVIEW_GUARD_WM,
514 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300515};
516static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300517 .fifo_size = PINEVIEW_DISPLAY_FIFO,
518 .max_wm = PINEVIEW_MAX_WM,
519 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
520 .guard_size = PINEVIEW_GUARD_WM,
521 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300522};
523static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300524 .fifo_size = PINEVIEW_CURSOR_FIFO,
525 .max_wm = PINEVIEW_CURSOR_MAX_WM,
526 .default_wm = PINEVIEW_CURSOR_DFT_WM,
527 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
528 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300529};
530static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300531 .fifo_size = PINEVIEW_CURSOR_FIFO,
532 .max_wm = PINEVIEW_CURSOR_MAX_WM,
533 .default_wm = PINEVIEW_CURSOR_DFT_WM,
534 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
535 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300536};
537static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300538 .fifo_size = G4X_FIFO_SIZE,
539 .max_wm = G4X_MAX_WM,
540 .default_wm = G4X_MAX_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 g4x_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 = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300550};
551static const struct intel_watermark_params valleyview_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300552 .fifo_size = VALLEYVIEW_FIFO_SIZE,
553 .max_wm = VALLEYVIEW_MAX_WM,
554 .default_wm = VALLEYVIEW_MAX_WM,
555 .guard_size = 2,
556 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300557};
558static const struct intel_watermark_params valleyview_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300559 .fifo_size = I965_CURSOR_FIFO,
560 .max_wm = VALLEYVIEW_CURSOR_MAX_WM,
561 .default_wm = I965_CURSOR_DFT_WM,
562 .guard_size = 2,
563 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300564};
565static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300566 .fifo_size = I965_CURSOR_FIFO,
567 .max_wm = I965_CURSOR_MAX_WM,
568 .default_wm = I965_CURSOR_DFT_WM,
569 .guard_size = 2,
570 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300571};
572static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300573 .fifo_size = I945_FIFO_SIZE,
574 .max_wm = I915_MAX_WM,
575 .default_wm = 1,
576 .guard_size = 2,
577 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300578};
579static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300580 .fifo_size = I915_FIFO_SIZE,
581 .max_wm = I915_MAX_WM,
582 .default_wm = 1,
583 .guard_size = 2,
584 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300585};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300586static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300587 .fifo_size = I855GM_FIFO_SIZE,
588 .max_wm = I915_MAX_WM,
589 .default_wm = 1,
590 .guard_size = 2,
591 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300592};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300593static const struct intel_watermark_params i830_bc_wm_info = {
594 .fifo_size = I855GM_FIFO_SIZE,
595 .max_wm = I915_MAX_WM/2,
596 .default_wm = 1,
597 .guard_size = 2,
598 .cacheline_size = I830_FIFO_LINE_SIZE,
599};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200600static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300601 .fifo_size = I830_FIFO_SIZE,
602 .max_wm = I915_MAX_WM,
603 .default_wm = 1,
604 .guard_size = 2,
605 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300606};
607
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300608/**
609 * intel_calculate_wm - calculate watermark level
610 * @clock_in_khz: pixel clock
611 * @wm: chip FIFO params
612 * @pixel_size: display pixel size
613 * @latency_ns: memory latency for the platform
614 *
615 * Calculate the watermark level (the level at which the display plane will
616 * start fetching from memory again). Each chip has a different display
617 * FIFO size and allocation, so the caller needs to figure that out and pass
618 * in the correct intel_watermark_params structure.
619 *
620 * As the pixel clock runs, the FIFO will be drained at a rate that depends
621 * on the pixel size. When it reaches the watermark level, it'll start
622 * fetching FIFO line sized based chunks from memory until the FIFO fills
623 * past the watermark point. If the FIFO drains completely, a FIFO underrun
624 * will occur, and a display engine hang could result.
625 */
626static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
627 const struct intel_watermark_params *wm,
628 int fifo_size,
629 int pixel_size,
630 unsigned long latency_ns)
631{
632 long entries_required, wm_size;
633
634 /*
635 * Note: we need to make sure we don't overflow for various clock &
636 * latency values.
637 * clocks go from a few thousand to several hundred thousand.
638 * latency is usually a few thousand
639 */
640 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
641 1000;
642 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
643
644 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
645
646 wm_size = fifo_size - (entries_required + wm->guard_size);
647
648 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
649
650 /* Don't promote wm_size to unsigned... */
651 if (wm_size > (long)wm->max_wm)
652 wm_size = wm->max_wm;
653 if (wm_size <= 0)
654 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300655
656 /*
657 * Bspec seems to indicate that the value shouldn't be lower than
658 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
659 * Lets go for 8 which is the burst size since certain platforms
660 * already use a hardcoded 8 (which is what the spec says should be
661 * done).
662 */
663 if (wm_size <= 8)
664 wm_size = 8;
665
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300666 return wm_size;
667}
668
669static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
670{
671 struct drm_crtc *crtc, *enabled = NULL;
672
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100673 for_each_crtc(dev, crtc) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000674 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300675 if (enabled)
676 return NULL;
677 enabled = crtc;
678 }
679 }
680
681 return enabled;
682}
683
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300684static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300685{
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300686 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300687 struct drm_i915_private *dev_priv = dev->dev_private;
688 struct drm_crtc *crtc;
689 const struct cxsr_latency *latency;
690 u32 reg;
691 unsigned long wm;
692
693 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
694 dev_priv->fsb_freq, dev_priv->mem_freq);
695 if (!latency) {
696 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300697 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300698 return;
699 }
700
701 crtc = single_enabled_crtc(dev);
702 if (crtc) {
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300703 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -0800704 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300705 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300706
707 /* Display SR */
708 wm = intel_calculate_wm(clock, &pineview_display_wm,
709 pineview_display_wm.fifo_size,
710 pixel_size, latency->display_sr);
711 reg = I915_READ(DSPFW1);
712 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200713 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300714 I915_WRITE(DSPFW1, reg);
715 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
716
717 /* cursor SR */
718 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
719 pineview_display_wm.fifo_size,
720 pixel_size, latency->cursor_sr);
721 reg = I915_READ(DSPFW3);
722 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200723 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300724 I915_WRITE(DSPFW3, reg);
725
726 /* Display HPLL off SR */
727 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
728 pineview_display_hplloff_wm.fifo_size,
729 pixel_size, latency->display_hpll_disable);
730 reg = I915_READ(DSPFW3);
731 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200732 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300733 I915_WRITE(DSPFW3, reg);
734
735 /* cursor HPLL off SR */
736 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
737 pineview_display_hplloff_wm.fifo_size,
738 pixel_size, latency->cursor_hpll_disable);
739 reg = I915_READ(DSPFW3);
740 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200741 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300742 I915_WRITE(DSPFW3, reg);
743 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
744
Imre Deak5209b1f2014-07-01 12:36:17 +0300745 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300746 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300747 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300748 }
749}
750
751static bool g4x_compute_wm0(struct drm_device *dev,
752 int plane,
753 const struct intel_watermark_params *display,
754 int display_latency_ns,
755 const struct intel_watermark_params *cursor,
756 int cursor_latency_ns,
757 int *plane_wm,
758 int *cursor_wm)
759{
760 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300761 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300762 int htotal, hdisplay, clock, pixel_size;
763 int line_time_us, line_count;
764 int entries, tlb_miss;
765
766 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +0000767 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300768 *cursor_wm = cursor->guard_size;
769 *plane_wm = display->guard_size;
770 return false;
771 }
772
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200773 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100774 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800775 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200776 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800777 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300778
779 /* Use the small buffer method to calculate plane watermark */
780 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
781 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
782 if (tlb_miss > 0)
783 entries += tlb_miss;
784 entries = DIV_ROUND_UP(entries, display->cacheline_size);
785 *plane_wm = entries + display->guard_size;
786 if (*plane_wm > (int)display->max_wm)
787 *plane_wm = display->max_wm;
788
789 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200790 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300791 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Matt Roper3dd512f2015-02-27 10:12:00 -0800792 entries = line_count * crtc->cursor->state->crtc_w * pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300793 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
794 if (tlb_miss > 0)
795 entries += tlb_miss;
796 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
797 *cursor_wm = entries + cursor->guard_size;
798 if (*cursor_wm > (int)cursor->max_wm)
799 *cursor_wm = (int)cursor->max_wm;
800
801 return true;
802}
803
804/*
805 * Check the wm result.
806 *
807 * If any calculated watermark values is larger than the maximum value that
808 * can be programmed into the associated watermark register, that watermark
809 * must be disabled.
810 */
811static bool g4x_check_srwm(struct drm_device *dev,
812 int display_wm, int cursor_wm,
813 const struct intel_watermark_params *display,
814 const struct intel_watermark_params *cursor)
815{
816 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
817 display_wm, cursor_wm);
818
819 if (display_wm > display->max_wm) {
820 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
821 display_wm, display->max_wm);
822 return false;
823 }
824
825 if (cursor_wm > cursor->max_wm) {
826 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
827 cursor_wm, cursor->max_wm);
828 return false;
829 }
830
831 if (!(display_wm || cursor_wm)) {
832 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
833 return false;
834 }
835
836 return true;
837}
838
839static bool g4x_compute_srwm(struct drm_device *dev,
840 int plane,
841 int latency_ns,
842 const struct intel_watermark_params *display,
843 const struct intel_watermark_params *cursor,
844 int *display_wm, int *cursor_wm)
845{
846 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300847 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300848 int hdisplay, htotal, pixel_size, clock;
849 unsigned long line_time_us;
850 int line_count, line_size;
851 int small, large;
852 int entries;
853
854 if (!latency_ns) {
855 *display_wm = *cursor_wm = 0;
856 return false;
857 }
858
859 crtc = intel_get_crtc_for_plane(dev, plane);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200860 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100861 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800862 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200863 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800864 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300865
Ville Syrjälä922044c2014-02-14 14:18:57 +0200866 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300867 line_count = (latency_ns / line_time_us + 1000) / 1000;
868 line_size = hdisplay * pixel_size;
869
870 /* Use the minimum of the small and large buffer method for primary */
871 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
872 large = line_count * line_size;
873
874 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
875 *display_wm = entries + display->guard_size;
876
877 /* calculate the self-refresh watermark for display cursor */
Matt Roper3dd512f2015-02-27 10:12:00 -0800878 entries = line_count * pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300879 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
880 *cursor_wm = entries + cursor->guard_size;
881
882 return g4x_check_srwm(dev,
883 *display_wm, *cursor_wm,
884 display, cursor);
885}
886
Ville Syrjälä15665972015-03-10 16:16:28 +0200887#define FW_WM_VLV(value, plane) \
888 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
889
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200890static void vlv_write_wm_values(struct intel_crtc *crtc,
891 const struct vlv_wm_values *wm)
892{
893 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
894 enum pipe pipe = crtc->pipe;
895
896 I915_WRITE(VLV_DDL(pipe),
897 (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) |
898 (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) |
899 (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) |
900 (wm->ddl[pipe].primary << DDL_PLANE_SHIFT));
901
Ville Syrjäläae801522015-03-05 21:19:49 +0200902 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200903 FW_WM(wm->sr.plane, SR) |
904 FW_WM(wm->pipe[PIPE_B].cursor, CURSORB) |
905 FW_WM_VLV(wm->pipe[PIPE_B].primary, PLANEB) |
906 FW_WM_VLV(wm->pipe[PIPE_A].primary, PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200907 I915_WRITE(DSPFW2,
Ville Syrjälä15665972015-03-10 16:16:28 +0200908 FW_WM_VLV(wm->pipe[PIPE_A].sprite[1], SPRITEB) |
909 FW_WM(wm->pipe[PIPE_A].cursor, CURSORA) |
910 FW_WM_VLV(wm->pipe[PIPE_A].sprite[0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200911 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200912 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200913
914 if (IS_CHERRYVIEW(dev_priv)) {
915 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200916 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
917 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200918 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200919 FW_WM_VLV(wm->pipe[PIPE_C].sprite[1], SPRITEF) |
920 FW_WM_VLV(wm->pipe[PIPE_C].sprite[0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200921 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200922 FW_WM_VLV(wm->pipe[PIPE_C].primary, PLANEC) |
923 FW_WM(wm->pipe[PIPE_C].cursor, CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200924 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200925 FW_WM(wm->sr.plane >> 9, SR_HI) |
926 FW_WM(wm->pipe[PIPE_C].sprite[1] >> 8, SPRITEF_HI) |
927 FW_WM(wm->pipe[PIPE_C].sprite[0] >> 8, SPRITEE_HI) |
928 FW_WM(wm->pipe[PIPE_C].primary >> 8, PLANEC_HI) |
929 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
930 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
931 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
932 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
933 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
934 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200935 } else {
936 I915_WRITE(DSPFW7,
Ville Syrjälä15665972015-03-10 16:16:28 +0200937 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
938 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200939 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200940 FW_WM(wm->sr.plane >> 9, SR_HI) |
941 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
942 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
943 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
944 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
945 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
946 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200947 }
948
Ville Syrjälä2cb389b2015-06-24 22:00:10 +0300949 /* zero (unused) WM1 watermarks */
950 I915_WRITE(DSPFW4, 0);
951 I915_WRITE(DSPFW5, 0);
952 I915_WRITE(DSPFW6, 0);
953 I915_WRITE(DSPHOWM1, 0);
954
Ville Syrjäläae801522015-03-05 21:19:49 +0200955 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200956}
957
Ville Syrjälä15665972015-03-10 16:16:28 +0200958#undef FW_WM_VLV
959
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300960enum vlv_wm_level {
961 VLV_WM_LEVEL_PM2,
962 VLV_WM_LEVEL_PM5,
963 VLV_WM_LEVEL_DDR_DVFS,
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300964};
965
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300966/* latency must be in 0.1us units. */
967static unsigned int vlv_wm_method2(unsigned int pixel_rate,
968 unsigned int pipe_htotal,
969 unsigned int horiz_pixels,
970 unsigned int bytes_per_pixel,
971 unsigned int latency)
972{
973 unsigned int ret;
974
975 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
976 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
977 ret = DIV_ROUND_UP(ret, 64);
978
979 return ret;
980}
981
982static void vlv_setup_wm_latency(struct drm_device *dev)
983{
984 struct drm_i915_private *dev_priv = dev->dev_private;
985
986 /* all latencies in usec */
987 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
988
Ville Syrjälä58590c12015-09-08 21:05:12 +0300989 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
990
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300991 if (IS_CHERRYVIEW(dev_priv)) {
992 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
993 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300994
995 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300996 }
997}
998
999static uint16_t vlv_compute_wm_level(struct intel_plane *plane,
1000 struct intel_crtc *crtc,
1001 const struct intel_plane_state *state,
1002 int level)
1003{
1004 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
1005 int clock, htotal, pixel_size, width, wm;
1006
1007 if (dev_priv->wm.pri_latency[level] == 0)
1008 return USHRT_MAX;
1009
1010 if (!state->visible)
1011 return 0;
1012
1013 pixel_size = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1014 clock = crtc->config->base.adjusted_mode.crtc_clock;
1015 htotal = crtc->config->base.adjusted_mode.crtc_htotal;
1016 width = crtc->config->pipe_src_w;
1017 if (WARN_ON(htotal == 0))
1018 htotal = 1;
1019
1020 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1021 /*
1022 * FIXME the formula gives values that are
1023 * too big for the cursor FIFO, and hence we
1024 * would never be able to use cursors. For
1025 * now just hardcode the watermark.
1026 */
1027 wm = 63;
1028 } else {
1029 wm = vlv_wm_method2(clock, htotal, width, pixel_size,
1030 dev_priv->wm.pri_latency[level] * 10);
1031 }
1032
1033 return min_t(int, wm, USHRT_MAX);
1034}
1035
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001036static void vlv_compute_fifo(struct intel_crtc *crtc)
1037{
1038 struct drm_device *dev = crtc->base.dev;
1039 struct vlv_wm_state *wm_state = &crtc->wm_state;
1040 struct intel_plane *plane;
1041 unsigned int total_rate = 0;
1042 const int fifo_size = 512 - 1;
1043 int fifo_extra, fifo_left = fifo_size;
1044
1045 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1046 struct intel_plane_state *state =
1047 to_intel_plane_state(plane->base.state);
1048
1049 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1050 continue;
1051
1052 if (state->visible) {
1053 wm_state->num_active_planes++;
1054 total_rate += drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1055 }
1056 }
1057
1058 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1059 struct intel_plane_state *state =
1060 to_intel_plane_state(plane->base.state);
1061 unsigned int rate;
1062
1063 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1064 plane->wm.fifo_size = 63;
1065 continue;
1066 }
1067
1068 if (!state->visible) {
1069 plane->wm.fifo_size = 0;
1070 continue;
1071 }
1072
1073 rate = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1074 plane->wm.fifo_size = fifo_size * rate / total_rate;
1075 fifo_left -= plane->wm.fifo_size;
1076 }
1077
1078 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1079
1080 /* spread the remainder evenly */
1081 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1082 int plane_extra;
1083
1084 if (fifo_left == 0)
1085 break;
1086
1087 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1088 continue;
1089
1090 /* give it all to the first plane if none are active */
1091 if (plane->wm.fifo_size == 0 &&
1092 wm_state->num_active_planes)
1093 continue;
1094
1095 plane_extra = min(fifo_extra, fifo_left);
1096 plane->wm.fifo_size += plane_extra;
1097 fifo_left -= plane_extra;
1098 }
1099
1100 WARN_ON(fifo_left != 0);
1101}
1102
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001103static void vlv_invert_wms(struct intel_crtc *crtc)
1104{
1105 struct vlv_wm_state *wm_state = &crtc->wm_state;
1106 int level;
1107
1108 for (level = 0; level < wm_state->num_levels; level++) {
1109 struct drm_device *dev = crtc->base.dev;
1110 const int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1111 struct intel_plane *plane;
1112
1113 wm_state->sr[level].plane = sr_fifo_size - wm_state->sr[level].plane;
1114 wm_state->sr[level].cursor = 63 - wm_state->sr[level].cursor;
1115
1116 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1117 switch (plane->base.type) {
1118 int sprite;
1119 case DRM_PLANE_TYPE_CURSOR:
1120 wm_state->wm[level].cursor = plane->wm.fifo_size -
1121 wm_state->wm[level].cursor;
1122 break;
1123 case DRM_PLANE_TYPE_PRIMARY:
1124 wm_state->wm[level].primary = plane->wm.fifo_size -
1125 wm_state->wm[level].primary;
1126 break;
1127 case DRM_PLANE_TYPE_OVERLAY:
1128 sprite = plane->plane;
1129 wm_state->wm[level].sprite[sprite] = plane->wm.fifo_size -
1130 wm_state->wm[level].sprite[sprite];
1131 break;
1132 }
1133 }
1134 }
1135}
1136
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001137static void vlv_compute_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001138{
1139 struct drm_device *dev = crtc->base.dev;
1140 struct vlv_wm_state *wm_state = &crtc->wm_state;
1141 struct intel_plane *plane;
1142 int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1143 int level;
1144
1145 memset(wm_state, 0, sizeof(*wm_state));
1146
Ville Syrjälä852eb002015-06-24 22:00:07 +03001147 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001148 wm_state->num_levels = to_i915(dev)->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001149
1150 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001151
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001152 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001153
1154 if (wm_state->num_active_planes != 1)
1155 wm_state->cxsr = false;
1156
1157 if (wm_state->cxsr) {
1158 for (level = 0; level < wm_state->num_levels; level++) {
1159 wm_state->sr[level].plane = sr_fifo_size;
1160 wm_state->sr[level].cursor = 63;
1161 }
1162 }
1163
1164 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1165 struct intel_plane_state *state =
1166 to_intel_plane_state(plane->base.state);
1167
1168 if (!state->visible)
1169 continue;
1170
1171 /* normal watermarks */
1172 for (level = 0; level < wm_state->num_levels; level++) {
1173 int wm = vlv_compute_wm_level(plane, crtc, state, level);
1174 int max_wm = plane->base.type == DRM_PLANE_TYPE_CURSOR ? 63 : 511;
1175
1176 /* hack */
1177 if (WARN_ON(level == 0 && wm > max_wm))
1178 wm = max_wm;
1179
1180 if (wm > plane->wm.fifo_size)
1181 break;
1182
1183 switch (plane->base.type) {
1184 int sprite;
1185 case DRM_PLANE_TYPE_CURSOR:
1186 wm_state->wm[level].cursor = wm;
1187 break;
1188 case DRM_PLANE_TYPE_PRIMARY:
1189 wm_state->wm[level].primary = wm;
1190 break;
1191 case DRM_PLANE_TYPE_OVERLAY:
1192 sprite = plane->plane;
1193 wm_state->wm[level].sprite[sprite] = wm;
1194 break;
1195 }
1196 }
1197
1198 wm_state->num_levels = level;
1199
1200 if (!wm_state->cxsr)
1201 continue;
1202
1203 /* maxfifo watermarks */
1204 switch (plane->base.type) {
1205 int sprite, level;
1206 case DRM_PLANE_TYPE_CURSOR:
1207 for (level = 0; level < wm_state->num_levels; level++)
1208 wm_state->sr[level].cursor =
1209 wm_state->sr[level].cursor;
1210 break;
1211 case DRM_PLANE_TYPE_PRIMARY:
1212 for (level = 0; level < wm_state->num_levels; level++)
1213 wm_state->sr[level].plane =
1214 min(wm_state->sr[level].plane,
1215 wm_state->wm[level].primary);
1216 break;
1217 case DRM_PLANE_TYPE_OVERLAY:
1218 sprite = plane->plane;
1219 for (level = 0; level < wm_state->num_levels; level++)
1220 wm_state->sr[level].plane =
1221 min(wm_state->sr[level].plane,
1222 wm_state->wm[level].sprite[sprite]);
1223 break;
1224 }
1225 }
1226
1227 /* clear any (partially) filled invalid levels */
Ville Syrjälä58590c12015-09-08 21:05:12 +03001228 for (level = wm_state->num_levels; level < to_i915(dev)->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001229 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1230 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1231 }
1232
1233 vlv_invert_wms(crtc);
1234}
1235
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001236#define VLV_FIFO(plane, value) \
1237 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1238
1239static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1240{
1241 struct drm_device *dev = crtc->base.dev;
1242 struct drm_i915_private *dev_priv = to_i915(dev);
1243 struct intel_plane *plane;
1244 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1245
1246 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1247 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1248 WARN_ON(plane->wm.fifo_size != 63);
1249 continue;
1250 }
1251
1252 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
1253 sprite0_start = plane->wm.fifo_size;
1254 else if (plane->plane == 0)
1255 sprite1_start = sprite0_start + plane->wm.fifo_size;
1256 else
1257 fifo_size = sprite1_start + plane->wm.fifo_size;
1258 }
1259
1260 WARN_ON(fifo_size != 512 - 1);
1261
1262 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1263 pipe_name(crtc->pipe), sprite0_start,
1264 sprite1_start, fifo_size);
1265
1266 switch (crtc->pipe) {
1267 uint32_t dsparb, dsparb2, dsparb3;
1268 case PIPE_A:
1269 dsparb = I915_READ(DSPARB);
1270 dsparb2 = I915_READ(DSPARB2);
1271
1272 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1273 VLV_FIFO(SPRITEB, 0xff));
1274 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1275 VLV_FIFO(SPRITEB, sprite1_start));
1276
1277 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1278 VLV_FIFO(SPRITEB_HI, 0x1));
1279 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1280 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1281
1282 I915_WRITE(DSPARB, dsparb);
1283 I915_WRITE(DSPARB2, dsparb2);
1284 break;
1285 case PIPE_B:
1286 dsparb = I915_READ(DSPARB);
1287 dsparb2 = I915_READ(DSPARB2);
1288
1289 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1290 VLV_FIFO(SPRITED, 0xff));
1291 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1292 VLV_FIFO(SPRITED, sprite1_start));
1293
1294 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1295 VLV_FIFO(SPRITED_HI, 0xff));
1296 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1297 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1298
1299 I915_WRITE(DSPARB, dsparb);
1300 I915_WRITE(DSPARB2, dsparb2);
1301 break;
1302 case PIPE_C:
1303 dsparb3 = I915_READ(DSPARB3);
1304 dsparb2 = I915_READ(DSPARB2);
1305
1306 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1307 VLV_FIFO(SPRITEF, 0xff));
1308 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1309 VLV_FIFO(SPRITEF, sprite1_start));
1310
1311 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1312 VLV_FIFO(SPRITEF_HI, 0xff));
1313 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1314 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1315
1316 I915_WRITE(DSPARB3, dsparb3);
1317 I915_WRITE(DSPARB2, dsparb2);
1318 break;
1319 default:
1320 break;
1321 }
1322}
1323
1324#undef VLV_FIFO
1325
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001326static void vlv_merge_wm(struct drm_device *dev,
1327 struct vlv_wm_values *wm)
1328{
1329 struct intel_crtc *crtc;
1330 int num_active_crtcs = 0;
1331
Ville Syrjälä58590c12015-09-08 21:05:12 +03001332 wm->level = to_i915(dev)->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001333 wm->cxsr = true;
1334
1335 for_each_intel_crtc(dev, crtc) {
1336 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1337
1338 if (!crtc->active)
1339 continue;
1340
1341 if (!wm_state->cxsr)
1342 wm->cxsr = false;
1343
1344 num_active_crtcs++;
1345 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1346 }
1347
1348 if (num_active_crtcs != 1)
1349 wm->cxsr = false;
1350
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001351 if (num_active_crtcs > 1)
1352 wm->level = VLV_WM_LEVEL_PM2;
1353
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001354 for_each_intel_crtc(dev, crtc) {
1355 struct vlv_wm_state *wm_state = &crtc->wm_state;
1356 enum pipe pipe = crtc->pipe;
1357
1358 if (!crtc->active)
1359 continue;
1360
1361 wm->pipe[pipe] = wm_state->wm[wm->level];
1362 if (wm->cxsr)
1363 wm->sr = wm_state->sr[wm->level];
1364
1365 wm->ddl[pipe].primary = DDL_PRECISION_HIGH | 2;
1366 wm->ddl[pipe].sprite[0] = DDL_PRECISION_HIGH | 2;
1367 wm->ddl[pipe].sprite[1] = DDL_PRECISION_HIGH | 2;
1368 wm->ddl[pipe].cursor = DDL_PRECISION_HIGH | 2;
1369 }
1370}
1371
1372static void vlv_update_wm(struct drm_crtc *crtc)
1373{
1374 struct drm_device *dev = crtc->dev;
1375 struct drm_i915_private *dev_priv = dev->dev_private;
1376 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1377 enum pipe pipe = intel_crtc->pipe;
1378 struct vlv_wm_values wm = {};
1379
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001380 vlv_compute_wm(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001381 vlv_merge_wm(dev, &wm);
1382
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001383 if (memcmp(&dev_priv->wm.vlv, &wm, sizeof(wm)) == 0) {
1384 /* FIXME should be part of crtc atomic commit */
1385 vlv_pipe_set_fifo_size(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001386 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001387 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001388
1389 if (wm.level < VLV_WM_LEVEL_DDR_DVFS &&
1390 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_DDR_DVFS)
1391 chv_set_memory_dvfs(dev_priv, false);
1392
1393 if (wm.level < VLV_WM_LEVEL_PM5 &&
1394 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_PM5)
1395 chv_set_memory_pm5(dev_priv, false);
1396
Ville Syrjälä852eb002015-06-24 22:00:07 +03001397 if (!wm.cxsr && dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001398 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001399
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001400 /* FIXME should be part of crtc atomic commit */
1401 vlv_pipe_set_fifo_size(intel_crtc);
1402
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001403 vlv_write_wm_values(intel_crtc, &wm);
1404
1405 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1406 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
1407 pipe_name(pipe), wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1408 wm.pipe[pipe].sprite[0], wm.pipe[pipe].sprite[1],
1409 wm.sr.plane, wm.sr.cursor, wm.level, wm.cxsr);
1410
Ville Syrjälä852eb002015-06-24 22:00:07 +03001411 if (wm.cxsr && !dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001412 intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001413
1414 if (wm.level >= VLV_WM_LEVEL_PM5 &&
1415 dev_priv->wm.vlv.level < VLV_WM_LEVEL_PM5)
1416 chv_set_memory_pm5(dev_priv, true);
1417
1418 if (wm.level >= VLV_WM_LEVEL_DDR_DVFS &&
1419 dev_priv->wm.vlv.level < VLV_WM_LEVEL_DDR_DVFS)
1420 chv_set_memory_dvfs(dev_priv, true);
1421
1422 dev_priv->wm.vlv = wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001423}
1424
Ville Syrjäläae801522015-03-05 21:19:49 +02001425#define single_plane_enabled(mask) is_power_of_2(mask)
1426
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001427static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001428{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001429 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001430 static const int sr_latency_ns = 12000;
1431 struct drm_i915_private *dev_priv = dev->dev_private;
1432 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1433 int plane_sr, cursor_sr;
1434 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001435 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001436
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001437 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001438 &g4x_wm_info, pessimal_latency_ns,
1439 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001440 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001441 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001442
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001443 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001444 &g4x_wm_info, pessimal_latency_ns,
1445 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001446 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001447 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001448
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001449 if (single_plane_enabled(enabled) &&
1450 g4x_compute_srwm(dev, ffs(enabled) - 1,
1451 sr_latency_ns,
1452 &g4x_wm_info,
1453 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001454 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001455 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001456 } else {
Imre Deak98584252014-06-13 14:54:20 +03001457 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001458 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001459 plane_sr = cursor_sr = 0;
1460 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001461
Ville Syrjäläa5043452014-06-28 02:04:18 +03001462 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1463 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001464 planea_wm, cursora_wm,
1465 planeb_wm, cursorb_wm,
1466 plane_sr, cursor_sr);
1467
1468 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001469 FW_WM(plane_sr, SR) |
1470 FW_WM(cursorb_wm, CURSORB) |
1471 FW_WM(planeb_wm, PLANEB) |
1472 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001473 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001474 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001475 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001476 /* HPLL off in SR has some issues on G4x... disable it */
1477 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001478 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001479 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001480
1481 if (cxsr_enabled)
1482 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001483}
1484
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001485static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001486{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001487 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001488 struct drm_i915_private *dev_priv = dev->dev_private;
1489 struct drm_crtc *crtc;
1490 int srwm = 1;
1491 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001492 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001493
1494 /* Calc sr entries for one plane configs */
1495 crtc = single_enabled_crtc(dev);
1496 if (crtc) {
1497 /* self-refresh has much higher latency */
1498 static const int sr_latency_ns = 12000;
Ville Syrjälä124abe02015-09-08 13:40:45 +03001499 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001500 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001501 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001502 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001503 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001504 unsigned long line_time_us;
1505 int entries;
1506
Ville Syrjälä922044c2014-02-14 14:18:57 +02001507 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001508
1509 /* Use ns/us then divide to preserve precision */
1510 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1511 pixel_size * hdisplay;
1512 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1513 srwm = I965_FIFO_SIZE - entries;
1514 if (srwm < 0)
1515 srwm = 1;
1516 srwm &= 0x1ff;
1517 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1518 entries, srwm);
1519
1520 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Matt Roper3dd512f2015-02-27 10:12:00 -08001521 pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001522 entries = DIV_ROUND_UP(entries,
1523 i965_cursor_wm_info.cacheline_size);
1524 cursor_sr = i965_cursor_wm_info.fifo_size -
1525 (entries + i965_cursor_wm_info.guard_size);
1526
1527 if (cursor_sr > i965_cursor_wm_info.max_wm)
1528 cursor_sr = i965_cursor_wm_info.max_wm;
1529
1530 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1531 "cursor %d\n", srwm, cursor_sr);
1532
Imre Deak98584252014-06-13 14:54:20 +03001533 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001534 } else {
Imre Deak98584252014-06-13 14:54:20 +03001535 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001536 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001537 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001538 }
1539
1540 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1541 srwm);
1542
1543 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001544 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1545 FW_WM(8, CURSORB) |
1546 FW_WM(8, PLANEB) |
1547 FW_WM(8, PLANEA));
1548 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1549 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001550 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001551 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001552
1553 if (cxsr_enabled)
1554 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001555}
1556
Ville Syrjäläf4998962015-03-10 17:02:21 +02001557#undef FW_WM
1558
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001559static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001560{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001561 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001562 struct drm_i915_private *dev_priv = dev->dev_private;
1563 const struct intel_watermark_params *wm_info;
1564 uint32_t fwater_lo;
1565 uint32_t fwater_hi;
1566 int cwm, srwm = 1;
1567 int fifo_size;
1568 int planea_wm, planeb_wm;
1569 struct drm_crtc *crtc, *enabled = NULL;
1570
1571 if (IS_I945GM(dev))
1572 wm_info = &i945_wm_info;
1573 else if (!IS_GEN2(dev))
1574 wm_info = &i915_wm_info;
1575 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001576 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001577
1578 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1579 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001580 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001581 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001582 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001583 if (IS_GEN2(dev))
1584 cpp = 4;
1585
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001586 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001587 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001588 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001589 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001590 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001591 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001592 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001593 if (planea_wm > (long)wm_info->max_wm)
1594 planea_wm = wm_info->max_wm;
1595 }
1596
1597 if (IS_GEN2(dev))
1598 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001599
1600 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1601 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001602 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001603 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001604 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001605 if (IS_GEN2(dev))
1606 cpp = 4;
1607
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001608 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001609 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001610 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001611 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001612 if (enabled == NULL)
1613 enabled = crtc;
1614 else
1615 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001616 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001617 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001618 if (planeb_wm > (long)wm_info->max_wm)
1619 planeb_wm = wm_info->max_wm;
1620 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001621
1622 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1623
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001624 if (IS_I915GM(dev) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001625 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001626
Matt Roper59bea882015-02-27 10:12:01 -08001627 obj = intel_fb_obj(enabled->primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001628
1629 /* self-refresh seems busted with untiled */
Matt Roper2ff8fde2014-07-08 07:50:07 -07001630 if (obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001631 enabled = NULL;
1632 }
1633
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001634 /*
1635 * Overlay gets an aggressive default since video jitter is bad.
1636 */
1637 cwm = 2;
1638
1639 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001640 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001641
1642 /* Calc sr entries for one plane configs */
1643 if (HAS_FW_BLC(dev) && enabled) {
1644 /* self-refresh has much higher latency */
1645 static const int sr_latency_ns = 6000;
Ville Syrjälä124abe02015-09-08 13:40:45 +03001646 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(enabled)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001647 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001648 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001649 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001650 int pixel_size = enabled->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001651 unsigned long line_time_us;
1652 int entries;
1653
Ville Syrjälä922044c2014-02-14 14:18:57 +02001654 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001655
1656 /* Use ns/us then divide to preserve precision */
1657 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1658 pixel_size * hdisplay;
1659 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1660 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1661 srwm = wm_info->fifo_size - entries;
1662 if (srwm < 0)
1663 srwm = 1;
1664
1665 if (IS_I945G(dev) || IS_I945GM(dev))
1666 I915_WRITE(FW_BLC_SELF,
1667 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1668 else if (IS_I915GM(dev))
1669 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1670 }
1671
1672 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1673 planea_wm, planeb_wm, cwm, srwm);
1674
1675 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1676 fwater_hi = (cwm & 0x1f);
1677
1678 /* Set request length to 8 cachelines per fetch */
1679 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1680 fwater_hi = fwater_hi | (1 << 8);
1681
1682 I915_WRITE(FW_BLC, fwater_lo);
1683 I915_WRITE(FW_BLC2, fwater_hi);
1684
Imre Deak5209b1f2014-07-01 12:36:17 +03001685 if (enabled)
1686 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001687}
1688
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001689static void i845_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001690{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001691 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001692 struct drm_i915_private *dev_priv = dev->dev_private;
1693 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001694 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001695 uint32_t fwater_lo;
1696 int planea_wm;
1697
1698 crtc = single_enabled_crtc(dev);
1699 if (crtc == NULL)
1700 return;
1701
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001702 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001703 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001704 &i845_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001705 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001706 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001707 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1708 fwater_lo |= (3<<8) | planea_wm;
1709
1710 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1711
1712 I915_WRITE(FW_BLC, fwater_lo);
1713}
1714
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001715uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001716{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001717 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001718
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001719 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001720
1721 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1722 * adjust the pixel_rate here. */
1723
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001724 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001725 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001726 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001727
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001728 pipe_w = pipe_config->pipe_src_w;
1729 pipe_h = pipe_config->pipe_src_h;
1730
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001731 pfit_w = (pfit_size >> 16) & 0xFFFF;
1732 pfit_h = pfit_size & 0xFFFF;
1733 if (pipe_w < pfit_w)
1734 pipe_w = pfit_w;
1735 if (pipe_h < pfit_h)
1736 pipe_h = pfit_h;
1737
1738 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1739 pfit_w * pfit_h);
1740 }
1741
1742 return pixel_rate;
1743}
1744
Ville Syrjälä37126462013-08-01 16:18:55 +03001745/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001746static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001747 uint32_t latency)
1748{
1749 uint64_t ret;
1750
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001751 if (WARN(latency == 0, "Latency value missing\n"))
1752 return UINT_MAX;
1753
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001754 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
1755 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1756
1757 return ret;
1758}
1759
Ville Syrjälä37126462013-08-01 16:18:55 +03001760/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001761static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001762 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
1763 uint32_t latency)
1764{
1765 uint32_t ret;
1766
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001767 if (WARN(latency == 0, "Latency value missing\n"))
1768 return UINT_MAX;
1769
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001770 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
1771 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
1772 ret = DIV_ROUND_UP(ret, 64) + 2;
1773 return ret;
1774}
1775
Ville Syrjälä23297042013-07-05 11:57:17 +03001776static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001777 uint8_t bytes_per_pixel)
1778{
1779 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
1780}
1781
Pradeep Bhat2ac96d22014-11-04 17:06:40 +00001782struct skl_pipe_wm_parameters {
1783 bool active;
1784 uint32_t pipe_htotal;
1785 uint32_t pixel_rate; /* in KHz */
1786 struct intel_plane_wm_parameters plane[I915_MAX_PLANES];
1787 struct intel_plane_wm_parameters cursor;
1788};
1789
Imre Deak820c1982013-12-17 14:46:36 +02001790struct ilk_pipe_wm_parameters {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001791 bool active;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001792 uint32_t pipe_htotal;
1793 uint32_t pixel_rate;
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001794 struct intel_plane_wm_parameters pri;
1795 struct intel_plane_wm_parameters spr;
1796 struct intel_plane_wm_parameters cur;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001797};
1798
Imre Deak820c1982013-12-17 14:46:36 +02001799struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001800 uint16_t pri;
1801 uint16_t spr;
1802 uint16_t cur;
1803 uint16_t fbc;
1804};
1805
Ville Syrjälä240264f2013-08-07 13:29:12 +03001806/* used in computing the new watermarks state */
1807struct intel_wm_config {
1808 unsigned int num_pipes_active;
1809 bool sprites_enabled;
1810 bool sprites_scaled;
Ville Syrjälä240264f2013-08-07 13:29:12 +03001811};
1812
Ville Syrjälä37126462013-08-01 16:18:55 +03001813/*
1814 * For both WM_PIPE and WM_LP.
1815 * mem_value must be in 0.1us units.
1816 */
Imre Deak820c1982013-12-17 14:46:36 +02001817static uint32_t ilk_compute_pri_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001818 uint32_t mem_value,
1819 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001820{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001821 uint32_t method1, method2;
1822
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001823 if (!params->active || !params->pri.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001824 return 0;
1825
Ville Syrjälä23297042013-07-05 11:57:17 +03001826 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001827 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001828 mem_value);
1829
1830 if (!is_lp)
1831 return method1;
1832
Ville Syrjälä23297042013-07-05 11:57:17 +03001833 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001834 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001835 params->pri.horiz_pixels,
1836 params->pri.bytes_per_pixel,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001837 mem_value);
1838
1839 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001840}
1841
Ville Syrjälä37126462013-08-01 16:18:55 +03001842/*
1843 * For both WM_PIPE and WM_LP.
1844 * mem_value must be in 0.1us units.
1845 */
Imre Deak820c1982013-12-17 14:46:36 +02001846static uint32_t ilk_compute_spr_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001847 uint32_t mem_value)
1848{
1849 uint32_t method1, method2;
1850
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001851 if (!params->active || !params->spr.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001852 return 0;
1853
Ville Syrjälä23297042013-07-05 11:57:17 +03001854 method1 = ilk_wm_method1(params->pixel_rate,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001855 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001856 mem_value);
Ville Syrjälä23297042013-07-05 11:57:17 +03001857 method2 = ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001858 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001859 params->spr.horiz_pixels,
1860 params->spr.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001861 mem_value);
1862 return min(method1, method2);
1863}
1864
Ville Syrjälä37126462013-08-01 16:18:55 +03001865/*
1866 * For both WM_PIPE and WM_LP.
1867 * mem_value must be in 0.1us units.
1868 */
Imre Deak820c1982013-12-17 14:46:36 +02001869static uint32_t ilk_compute_cur_wm(const struct ilk_pipe_wm_parameters *params,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001870 uint32_t mem_value)
1871{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001872 if (!params->active || !params->cur.enabled)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001873 return 0;
1874
Ville Syrjälä23297042013-07-05 11:57:17 +03001875 return ilk_wm_method2(params->pixel_rate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001876 params->pipe_htotal,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001877 params->cur.horiz_pixels,
1878 params->cur.bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001879 mem_value);
1880}
1881
Paulo Zanonicca32e92013-05-31 11:45:06 -03001882/* Only for WM_LP. */
Imre Deak820c1982013-12-17 14:46:36 +02001883static uint32_t ilk_compute_fbc_wm(const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001884 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001885{
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001886 if (!params->active || !params->pri.enabled)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001887 return 0;
1888
Ville Syrjälä23297042013-07-05 11:57:17 +03001889 return ilk_wm_fbc(pri_val,
Ville Syrjäläc35426d2013-08-07 13:29:50 +03001890 params->pri.horiz_pixels,
1891 params->pri.bytes_per_pixel);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001892}
1893
Ville Syrjälä158ae642013-08-07 13:28:19 +03001894static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1895{
Ville Syrjälä416f4722013-11-02 21:07:46 -07001896 if (INTEL_INFO(dev)->gen >= 8)
1897 return 3072;
1898 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001899 return 768;
1900 else
1901 return 512;
1902}
1903
Ville Syrjälä4e975082014-03-07 18:32:11 +02001904static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1905 int level, bool is_sprite)
1906{
1907 if (INTEL_INFO(dev)->gen >= 8)
1908 /* BDW primary/sprite plane watermarks */
1909 return level == 0 ? 255 : 2047;
1910 else if (INTEL_INFO(dev)->gen >= 7)
1911 /* IVB/HSW primary/sprite plane watermarks */
1912 return level == 0 ? 127 : 1023;
1913 else if (!is_sprite)
1914 /* ILK/SNB primary plane watermarks */
1915 return level == 0 ? 127 : 511;
1916 else
1917 /* ILK/SNB sprite plane watermarks */
1918 return level == 0 ? 63 : 255;
1919}
1920
1921static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1922 int level)
1923{
1924 if (INTEL_INFO(dev)->gen >= 7)
1925 return level == 0 ? 63 : 255;
1926 else
1927 return level == 0 ? 31 : 63;
1928}
1929
1930static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1931{
1932 if (INTEL_INFO(dev)->gen >= 8)
1933 return 31;
1934 else
1935 return 15;
1936}
1937
Ville Syrjälä158ae642013-08-07 13:28:19 +03001938/* Calculate the maximum primary/sprite plane watermark */
1939static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1940 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001941 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001942 enum intel_ddb_partitioning ddb_partitioning,
1943 bool is_sprite)
1944{
1945 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001946
1947 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001948 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001949 return 0;
1950
1951 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001952 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001953 fifo_size /= INTEL_INFO(dev)->num_pipes;
1954
1955 /*
1956 * For some reason the non self refresh
1957 * FIFO size is only half of the self
1958 * refresh FIFO size on ILK/SNB.
1959 */
1960 if (INTEL_INFO(dev)->gen <= 6)
1961 fifo_size /= 2;
1962 }
1963
Ville Syrjälä240264f2013-08-07 13:29:12 +03001964 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001965 /* level 0 is always calculated with 1:1 split */
1966 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1967 if (is_sprite)
1968 fifo_size *= 5;
1969 fifo_size /= 6;
1970 } else {
1971 fifo_size /= 2;
1972 }
1973 }
1974
1975 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001976 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001977}
1978
1979/* Calculate the maximum cursor plane watermark */
1980static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001981 int level,
1982 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001983{
1984 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001985 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001986 return 64;
1987
1988 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001989 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001990}
1991
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001992static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001993 int level,
1994 const struct intel_wm_config *config,
1995 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001996 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001997{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001998 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1999 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2000 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02002001 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002002}
2003
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002004static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
2005 int level,
2006 struct ilk_wm_maximums *max)
2007{
2008 max->pri = ilk_plane_wm_reg_max(dev, level, false);
2009 max->spr = ilk_plane_wm_reg_max(dev, level, true);
2010 max->cur = ilk_cursor_wm_reg_max(dev, level);
2011 max->fbc = ilk_fbc_wm_reg_max(dev);
2012}
2013
Ville Syrjäläd9395652013-10-09 19:18:10 +03002014static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002015 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002016 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002017{
2018 bool ret;
2019
2020 /* already determined to be invalid? */
2021 if (!result->enable)
2022 return false;
2023
2024 result->enable = result->pri_val <= max->pri &&
2025 result->spr_val <= max->spr &&
2026 result->cur_val <= max->cur;
2027
2028 ret = result->enable;
2029
2030 /*
2031 * HACK until we can pre-compute everything,
2032 * and thus fail gracefully if LP0 watermarks
2033 * are exceeded...
2034 */
2035 if (level == 0 && !result->enable) {
2036 if (result->pri_val > max->pri)
2037 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2038 level, result->pri_val, max->pri);
2039 if (result->spr_val > max->spr)
2040 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2041 level, result->spr_val, max->spr);
2042 if (result->cur_val > max->cur)
2043 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2044 level, result->cur_val, max->cur);
2045
2046 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2047 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2048 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2049 result->enable = true;
2050 }
2051
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002052 return ret;
2053}
2054
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002055static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002056 int level,
Imre Deak820c1982013-12-17 14:46:36 +02002057 const struct ilk_pipe_wm_parameters *p,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002058 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002059{
2060 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2061 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2062 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2063
2064 /* WM1+ latency values stored in 0.5us units */
2065 if (level > 0) {
2066 pri_latency *= 5;
2067 spr_latency *= 5;
2068 cur_latency *= 5;
2069 }
2070
2071 result->pri_val = ilk_compute_pri_wm(p, pri_latency, level);
2072 result->spr_val = ilk_compute_spr_wm(p, spr_latency);
2073 result->cur_val = ilk_compute_cur_wm(p, cur_latency);
2074 result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val);
2075 result->enable = true;
2076}
2077
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002078static uint32_t
2079hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002080{
2081 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002082 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03002083 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002084 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002085
Matt Roper3ef00282015-03-09 10:19:24 -07002086 if (!intel_crtc->active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002087 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002088
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002089 /* The WM are computed with base on how long it takes to fill a single
2090 * row at the given clock rate, multiplied by 8.
2091 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002092 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2093 adjusted_mode->crtc_clock);
2094 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjälä05024da2015-06-03 15:45:08 +03002095 dev_priv->cdclk_freq);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002096
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002097 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2098 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002099}
2100
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002101static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002102{
2103 struct drm_i915_private *dev_priv = dev->dev_private;
2104
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002105 if (IS_GEN9(dev)) {
2106 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002107 int ret, i;
Vandana Kannan367294b2014-11-04 17:06:46 +00002108 int level, max_level = ilk_wm_max_level(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002109
2110 /* read the first set of memory latencies[0:3] */
2111 val = 0; /* data0 to be programmed to 0 for first set */
2112 mutex_lock(&dev_priv->rps.hw_lock);
2113 ret = sandybridge_pcode_read(dev_priv,
2114 GEN9_PCODE_READ_MEM_LATENCY,
2115 &val);
2116 mutex_unlock(&dev_priv->rps.hw_lock);
2117
2118 if (ret) {
2119 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2120 return;
2121 }
2122
2123 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2124 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2125 GEN9_MEM_LATENCY_LEVEL_MASK;
2126 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2127 GEN9_MEM_LATENCY_LEVEL_MASK;
2128 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2129 GEN9_MEM_LATENCY_LEVEL_MASK;
2130
2131 /* read the second set of memory latencies[4:7] */
2132 val = 1; /* data0 to be programmed to 1 for second set */
2133 mutex_lock(&dev_priv->rps.hw_lock);
2134 ret = sandybridge_pcode_read(dev_priv,
2135 GEN9_PCODE_READ_MEM_LATENCY,
2136 &val);
2137 mutex_unlock(&dev_priv->rps.hw_lock);
2138 if (ret) {
2139 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2140 return;
2141 }
2142
2143 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2144 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2145 GEN9_MEM_LATENCY_LEVEL_MASK;
2146 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2147 GEN9_MEM_LATENCY_LEVEL_MASK;
2148 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2149 GEN9_MEM_LATENCY_LEVEL_MASK;
2150
Vandana Kannan367294b2014-11-04 17:06:46 +00002151 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00002152 * WaWmMemoryReadLatency:skl
2153 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002154 * punit doesn't take into account the read latency so we need
2155 * to add 2us to the various latency levels we retrieve from
2156 * the punit.
2157 * - W0 is a bit special in that it's the only level that
2158 * can't be disabled if we want to have display working, so
2159 * we always add 2us there.
2160 * - For levels >=1, punit returns 0us latency when they are
2161 * disabled, so we respect that and don't add 2us then
Vandana Kannan4f947382014-11-04 17:06:47 +00002162 *
2163 * Additionally, if a level n (n > 1) has a 0us latency, all
2164 * levels m (m >= n) need to be disabled. We make sure to
2165 * sanitize the values out of the punit to satisfy this
2166 * requirement.
Vandana Kannan367294b2014-11-04 17:06:46 +00002167 */
2168 wm[0] += 2;
2169 for (level = 1; level <= max_level; level++)
2170 if (wm[level] != 0)
2171 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002172 else {
2173 for (i = level + 1; i <= max_level; i++)
2174 wm[i] = 0;
Vandana Kannan367294b2014-11-04 17:06:46 +00002175
Vandana Kannan4f947382014-11-04 17:06:47 +00002176 break;
2177 }
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002178 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002179 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2180
2181 wm[0] = (sskpd >> 56) & 0xFF;
2182 if (wm[0] == 0)
2183 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002184 wm[1] = (sskpd >> 4) & 0xFF;
2185 wm[2] = (sskpd >> 12) & 0xFF;
2186 wm[3] = (sskpd >> 20) & 0x1FF;
2187 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002188 } else if (INTEL_INFO(dev)->gen >= 6) {
2189 uint32_t sskpd = I915_READ(MCH_SSKPD);
2190
2191 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2192 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2193 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2194 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002195 } else if (INTEL_INFO(dev)->gen >= 5) {
2196 uint32_t mltr = I915_READ(MLTR_ILK);
2197
2198 /* ILK primary LP0 latency is 700 ns */
2199 wm[0] = 7;
2200 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2201 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002202 }
2203}
2204
Ville Syrjälä53615a52013-08-01 16:18:50 +03002205static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2206{
2207 /* ILK sprite LP0 latency is 1300 ns */
2208 if (INTEL_INFO(dev)->gen == 5)
2209 wm[0] = 13;
2210}
2211
2212static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2213{
2214 /* ILK cursor LP0 latency is 1300 ns */
2215 if (INTEL_INFO(dev)->gen == 5)
2216 wm[0] = 13;
2217
2218 /* WaDoubleCursorLP3Latency:ivb */
2219 if (IS_IVYBRIDGE(dev))
2220 wm[3] *= 2;
2221}
2222
Damien Lespiau546c81f2014-05-13 15:30:26 +01002223int ilk_wm_max_level(const struct drm_device *dev)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002224{
2225 /* how many WM levels are we expecting */
Damien Lespiaub6e742f2015-05-09 02:05:55 +01002226 if (INTEL_INFO(dev)->gen >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002227 return 7;
2228 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002229 return 4;
2230 else if (INTEL_INFO(dev)->gen >= 6)
2231 return 3;
2232 else
2233 return 2;
2234}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002235
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002236static void intel_print_wm_latency(struct drm_device *dev,
2237 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002238 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002239{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002240 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002241
2242 for (level = 0; level <= max_level; level++) {
2243 unsigned int latency = wm[level];
2244
2245 if (latency == 0) {
2246 DRM_ERROR("%s WM%d latency not provided\n",
2247 name, level);
2248 continue;
2249 }
2250
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002251 /*
2252 * - latencies are in us on gen9.
2253 * - before then, WM1+ latency values are in 0.5us units
2254 */
2255 if (IS_GEN9(dev))
2256 latency *= 10;
2257 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002258 latency *= 5;
2259
2260 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2261 name, level, wm[level],
2262 latency / 10, latency % 10);
2263 }
2264}
2265
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002266static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2267 uint16_t wm[5], uint16_t min)
2268{
2269 int level, max_level = ilk_wm_max_level(dev_priv->dev);
2270
2271 if (wm[0] >= min)
2272 return false;
2273
2274 wm[0] = max(wm[0], min);
2275 for (level = 1; level <= max_level; level++)
2276 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2277
2278 return true;
2279}
2280
2281static void snb_wm_latency_quirk(struct drm_device *dev)
2282{
2283 struct drm_i915_private *dev_priv = dev->dev_private;
2284 bool changed;
2285
2286 /*
2287 * The BIOS provided WM memory latency values are often
2288 * inadequate for high resolution displays. Adjust them.
2289 */
2290 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2291 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2292 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2293
2294 if (!changed)
2295 return;
2296
2297 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
2298 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2299 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2300 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
2301}
2302
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002303static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002304{
2305 struct drm_i915_private *dev_priv = dev->dev_private;
2306
2307 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2308
2309 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2310 sizeof(dev_priv->wm.pri_latency));
2311 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2312 sizeof(dev_priv->wm.pri_latency));
2313
2314 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2315 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002316
2317 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2318 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2319 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002320
2321 if (IS_GEN6(dev))
2322 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002323}
2324
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002325static void skl_setup_wm_latency(struct drm_device *dev)
2326{
2327 struct drm_i915_private *dev_priv = dev->dev_private;
2328
2329 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
2330 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
2331}
2332
Imre Deak820c1982013-12-17 14:46:36 +02002333static void ilk_compute_wm_parameters(struct drm_crtc *crtc,
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002334 struct ilk_pipe_wm_parameters *p)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002335{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002336 struct drm_device *dev = crtc->dev;
2337 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2338 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002339 struct drm_plane *plane;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002340
Matt Roper3ef00282015-03-09 10:19:24 -07002341 if (!intel_crtc->active)
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002342 return;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002343
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002344 p->active = true;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002345 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03002346 p->pixel_rate = ilk_pipe_pixel_rate(intel_crtc->config);
Matt Roperc9f038a2015-03-09 11:06:02 -07002347
Thomas Gummerer54da6912015-05-14 09:16:39 +02002348 if (crtc->primary->state->fb)
Matt Roperc9f038a2015-03-09 11:06:02 -07002349 p->pri.bytes_per_pixel =
2350 crtc->primary->state->fb->bits_per_pixel / 8;
Thomas Gummerer54da6912015-05-14 09:16:39 +02002351 else
2352 p->pri.bytes_per_pixel = 4;
Matt Roperc9f038a2015-03-09 11:06:02 -07002353
Thomas Gummerer54da6912015-05-14 09:16:39 +02002354 p->cur.bytes_per_pixel = 4;
2355 /*
2356 * TODO: for now, assume primary and cursor planes are always enabled.
2357 * Setting them to false makes the screen flicker.
2358 */
2359 p->pri.enabled = true;
2360 p->cur.enabled = true;
2361
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02002362 p->pri.horiz_pixels = intel_crtc->config->pipe_src_w;
Matt Roper3dd512f2015-02-27 10:12:00 -08002363 p->cur.horiz_pixels = intel_crtc->base.cursor->state->crtc_w;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002364
Daniel Vetter4ea50e92015-07-09 23:44:24 +02002365 drm_for_each_legacy_plane(plane, dev) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002366 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002367
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002368 if (intel_plane->pipe == pipe) {
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03002369 p->spr = intel_plane->wm;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002370 break;
2371 }
2372 }
2373}
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002374
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002375static void ilk_compute_wm_config(struct drm_device *dev,
2376 struct intel_wm_config *config)
2377{
2378 struct intel_crtc *intel_crtc;
2379
2380 /* Compute the currently _active_ config */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002381 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002382 const struct intel_pipe_wm *wm = &intel_crtc->wm.active;
2383
2384 if (!wm->pipe_enabled)
2385 continue;
2386
2387 config->sprites_enabled |= wm->sprites_enabled;
2388 config->sprites_scaled |= wm->sprites_scaled;
2389 config->num_pipes_active++;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002390 }
2391}
2392
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002393/* Compute new watermarks for the pipe */
2394static bool intel_compute_pipe_wm(struct drm_crtc *crtc,
Imre Deak820c1982013-12-17 14:46:36 +02002395 const struct ilk_pipe_wm_parameters *params,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002396 struct intel_pipe_wm *pipe_wm)
2397{
2398 struct drm_device *dev = crtc->dev;
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002399 const struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002400 int level, max_level = ilk_wm_max_level(dev);
2401 /* LP0 watermark maximums depend on this pipe alone */
2402 struct intel_wm_config config = {
2403 .num_pipes_active = 1,
2404 .sprites_enabled = params->spr.enabled,
2405 .sprites_scaled = params->spr.scaled,
2406 };
Imre Deak820c1982013-12-17 14:46:36 +02002407 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002408
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002409 pipe_wm->pipe_enabled = params->active;
2410 pipe_wm->sprites_enabled = params->spr.enabled;
2411 pipe_wm->sprites_scaled = params->spr.scaled;
2412
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002413 /* ILK/SNB: LP2+ watermarks only w/o sprites */
2414 if (INTEL_INFO(dev)->gen <= 6 && params->spr.enabled)
2415 max_level = 1;
2416
2417 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
2418 if (params->spr.scaled)
2419 max_level = 0;
2420
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002421 ilk_compute_wm_level(dev_priv, 0, params, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002422
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002423 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02002424 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002425
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002426 /* LP0 watermarks always use 1/2 DDB partitioning */
2427 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2428
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002429 /* At least LP0 must be valid */
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002430 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]))
2431 return false;
2432
2433 ilk_compute_wm_reg_maximums(dev, 1, &max);
2434
2435 for (level = 1; level <= max_level; level++) {
2436 struct intel_wm_level wm = {};
2437
2438 ilk_compute_wm_level(dev_priv, level, params, &wm);
2439
2440 /*
2441 * Disable any watermark level that exceeds the
2442 * register maximums since such watermarks are
2443 * always invalid.
2444 */
2445 if (!ilk_validate_wm_level(level, &max, &wm))
2446 break;
2447
2448 pipe_wm->wm[level] = wm;
2449 }
2450
2451 return true;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002452}
2453
2454/*
2455 * Merge the watermarks from all active pipes for a specific level.
2456 */
2457static void ilk_merge_wm_level(struct drm_device *dev,
2458 int level,
2459 struct intel_wm_level *ret_wm)
2460{
2461 const struct intel_crtc *intel_crtc;
2462
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002463 ret_wm->enable = true;
2464
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002465 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002466 const struct intel_pipe_wm *active = &intel_crtc->wm.active;
2467 const struct intel_wm_level *wm = &active->wm[level];
2468
2469 if (!active->pipe_enabled)
2470 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002471
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002472 /*
2473 * The watermark values may have been used in the past,
2474 * so we must maintain them in the registers for some
2475 * time even if the level is now disabled.
2476 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002477 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002478 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002479
2480 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2481 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2482 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2483 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2484 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002485}
2486
2487/*
2488 * Merge all low power watermarks for all active pipes.
2489 */
2490static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002491 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002492 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002493 struct intel_pipe_wm *merged)
2494{
Paulo Zanoni7733b492015-07-07 15:26:04 -03002495 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002496 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002497 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002498
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002499 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2500 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2501 config->num_pipes_active > 1)
2502 return;
2503
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002504 /* ILK: FBC WM must be disabled always */
2505 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002506
2507 /* merge each WM1+ level */
2508 for (level = 1; level <= max_level; level++) {
2509 struct intel_wm_level *wm = &merged->wm[level];
2510
2511 ilk_merge_wm_level(dev, level, wm);
2512
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002513 if (level > last_enabled_level)
2514 wm->enable = false;
2515 else if (!ilk_validate_wm_level(level, max, wm))
2516 /* make sure all following levels get disabled */
2517 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002518
2519 /*
2520 * The spec says it is preferred to disable
2521 * FBC WMs instead of disabling a WM level.
2522 */
2523 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002524 if (wm->enable)
2525 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002526 wm->fbc_val = 0;
2527 }
2528 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002529
2530 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2531 /*
2532 * FIXME this is racy. FBC might get enabled later.
2533 * What we should check here is whether FBC can be
2534 * enabled sometime later.
2535 */
Paulo Zanoni7733b492015-07-07 15:26:04 -03002536 if (IS_GEN5(dev) && !merged->fbc_wm_enabled &&
2537 intel_fbc_enabled(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002538 for (level = 2; level <= max_level; level++) {
2539 struct intel_wm_level *wm = &merged->wm[level];
2540
2541 wm->enable = false;
2542 }
2543 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002544}
2545
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002546static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2547{
2548 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2549 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2550}
2551
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002552/* The value we need to program into the WM_LPx latency field */
2553static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2554{
2555 struct drm_i915_private *dev_priv = dev->dev_private;
2556
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002557 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002558 return 2 * level;
2559 else
2560 return dev_priv->wm.pri_latency[level];
2561}
2562
Imre Deak820c1982013-12-17 14:46:36 +02002563static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002564 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002565 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002566 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002567{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002568 struct intel_crtc *intel_crtc;
2569 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002570
Ville Syrjälä0362c782013-10-09 19:17:57 +03002571 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002572 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002573
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002574 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002575 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002576 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002577
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002578 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002579
Ville Syrjälä0362c782013-10-09 19:17:57 +03002580 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002581
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002582 /*
2583 * Maintain the watermark values even if the level is
2584 * disabled. Doing otherwise could cause underruns.
2585 */
2586 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002587 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002588 (r->pri_val << WM1_LP_SR_SHIFT) |
2589 r->cur_val;
2590
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002591 if (r->enable)
2592 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2593
Ville Syrjälä416f4722013-11-02 21:07:46 -07002594 if (INTEL_INFO(dev)->gen >= 8)
2595 results->wm_lp[wm_lp - 1] |=
2596 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2597 else
2598 results->wm_lp[wm_lp - 1] |=
2599 r->fbc_val << WM1_LP_FBC_SHIFT;
2600
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002601 /*
2602 * Always set WM1S_LP_EN when spr_val != 0, even if the
2603 * level is disabled. Doing otherwise could cause underruns.
2604 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002605 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2606 WARN_ON(wm_lp != 1);
2607 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2608 } else
2609 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002610 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002611
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002612 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002613 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002614 enum pipe pipe = intel_crtc->pipe;
2615 const struct intel_wm_level *r =
2616 &intel_crtc->wm.active.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002617
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002618 if (WARN_ON(!r->enable))
2619 continue;
2620
2621 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
2622
2623 results->wm_pipe[pipe] =
2624 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2625 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2626 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002627 }
2628}
2629
Paulo Zanoni861f3382013-05-31 10:19:21 -03002630/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2631 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002632static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002633 struct intel_pipe_wm *r1,
2634 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002635{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002636 int level, max_level = ilk_wm_max_level(dev);
2637 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002638
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002639 for (level = 1; level <= max_level; level++) {
2640 if (r1->wm[level].enable)
2641 level1 = level;
2642 if (r2->wm[level].enable)
2643 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002644 }
2645
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002646 if (level1 == level2) {
2647 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002648 return r2;
2649 else
2650 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002651 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002652 return r1;
2653 } else {
2654 return r2;
2655 }
2656}
2657
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002658/* dirty bits used to track which watermarks need changes */
2659#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2660#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2661#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2662#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2663#define WM_DIRTY_FBC (1 << 24)
2664#define WM_DIRTY_DDB (1 << 25)
2665
Damien Lespiau055e3932014-08-18 13:49:10 +01002666static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002667 const struct ilk_wm_values *old,
2668 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002669{
2670 unsigned int dirty = 0;
2671 enum pipe pipe;
2672 int wm_lp;
2673
Damien Lespiau055e3932014-08-18 13:49:10 +01002674 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002675 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2676 dirty |= WM_DIRTY_LINETIME(pipe);
2677 /* Must disable LP1+ watermarks too */
2678 dirty |= WM_DIRTY_LP_ALL;
2679 }
2680
2681 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2682 dirty |= WM_DIRTY_PIPE(pipe);
2683 /* Must disable LP1+ watermarks too */
2684 dirty |= WM_DIRTY_LP_ALL;
2685 }
2686 }
2687
2688 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2689 dirty |= WM_DIRTY_FBC;
2690 /* Must disable LP1+ watermarks too */
2691 dirty |= WM_DIRTY_LP_ALL;
2692 }
2693
2694 if (old->partitioning != new->partitioning) {
2695 dirty |= WM_DIRTY_DDB;
2696 /* Must disable LP1+ watermarks too */
2697 dirty |= WM_DIRTY_LP_ALL;
2698 }
2699
2700 /* LP1+ watermarks already deemed dirty, no need to continue */
2701 if (dirty & WM_DIRTY_LP_ALL)
2702 return dirty;
2703
2704 /* Find the lowest numbered LP1+ watermark in need of an update... */
2705 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2706 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2707 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2708 break;
2709 }
2710
2711 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2712 for (; wm_lp <= 3; wm_lp++)
2713 dirty |= WM_DIRTY_LP(wm_lp);
2714
2715 return dirty;
2716}
2717
Ville Syrjälä8553c182013-12-05 15:51:39 +02002718static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2719 unsigned int dirty)
2720{
Imre Deak820c1982013-12-17 14:46:36 +02002721 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002722 bool changed = false;
2723
2724 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2725 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2726 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2727 changed = true;
2728 }
2729 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2730 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2731 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2732 changed = true;
2733 }
2734 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2735 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2736 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2737 changed = true;
2738 }
2739
2740 /*
2741 * Don't touch WM1S_LP_EN here.
2742 * Doing so could cause underruns.
2743 */
2744
2745 return changed;
2746}
2747
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002748/*
2749 * The spec says we shouldn't write when we don't need, because every write
2750 * causes WMs to be re-evaluated, expending some power.
2751 */
Imre Deak820c1982013-12-17 14:46:36 +02002752static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2753 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002754{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002755 struct drm_device *dev = dev_priv->dev;
Imre Deak820c1982013-12-17 14:46:36 +02002756 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002757 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002758 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002759
Damien Lespiau055e3932014-08-18 13:49:10 +01002760 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002761 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002762 return;
2763
Ville Syrjälä8553c182013-12-05 15:51:39 +02002764 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002765
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002766 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002767 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002768 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002769 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002770 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002771 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2772
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002773 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002774 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002775 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002776 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002777 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002778 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2779
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002780 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002781 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002782 val = I915_READ(WM_MISC);
2783 if (results->partitioning == INTEL_DDB_PART_1_2)
2784 val &= ~WM_MISC_DATA_PARTITION_5_6;
2785 else
2786 val |= WM_MISC_DATA_PARTITION_5_6;
2787 I915_WRITE(WM_MISC, val);
2788 } else {
2789 val = I915_READ(DISP_ARB_CTL2);
2790 if (results->partitioning == INTEL_DDB_PART_1_2)
2791 val &= ~DISP_DATA_PARTITION_5_6;
2792 else
2793 val |= DISP_DATA_PARTITION_5_6;
2794 I915_WRITE(DISP_ARB_CTL2, val);
2795 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002796 }
2797
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002798 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002799 val = I915_READ(DISP_ARB_CTL);
2800 if (results->enable_fbc_wm)
2801 val &= ~DISP_FBC_WM_DIS;
2802 else
2803 val |= DISP_FBC_WM_DIS;
2804 I915_WRITE(DISP_ARB_CTL, val);
2805 }
2806
Imre Deak954911e2013-12-17 14:46:34 +02002807 if (dirty & WM_DIRTY_LP(1) &&
2808 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2809 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2810
2811 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002812 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2813 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2814 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2815 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2816 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002817
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002818 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002819 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002820 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002821 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002822 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002823 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002824
2825 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002826}
2827
Ville Syrjälä8553c182013-12-05 15:51:39 +02002828static bool ilk_disable_lp_wm(struct drm_device *dev)
2829{
2830 struct drm_i915_private *dev_priv = dev->dev_private;
2831
2832 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2833}
2834
Damien Lespiaub9cec072014-11-04 17:06:43 +00002835/*
2836 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
2837 * different active planes.
2838 */
2839
2840#define SKL_DDB_SIZE 896 /* in blocks */
Damien Lespiau43d735a2015-03-17 11:39:34 +02002841#define BXT_DDB_SIZE 512
Damien Lespiaub9cec072014-11-04 17:06:43 +00002842
2843static void
2844skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
2845 struct drm_crtc *for_crtc,
2846 const struct intel_wm_config *config,
2847 const struct skl_pipe_wm_parameters *params,
2848 struct skl_ddb_entry *alloc /* out */)
2849{
2850 struct drm_crtc *crtc;
2851 unsigned int pipe_size, ddb_size;
2852 int nth_active_pipe;
2853
2854 if (!params->active) {
2855 alloc->start = 0;
2856 alloc->end = 0;
2857 return;
2858 }
2859
Damien Lespiau43d735a2015-03-17 11:39:34 +02002860 if (IS_BROXTON(dev))
2861 ddb_size = BXT_DDB_SIZE;
2862 else
2863 ddb_size = SKL_DDB_SIZE;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002864
2865 ddb_size -= 4; /* 4 blocks for bypass path allocation */
2866
2867 nth_active_pipe = 0;
2868 for_each_crtc(dev, crtc) {
Matt Roper3ef00282015-03-09 10:19:24 -07002869 if (!to_intel_crtc(crtc)->active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002870 continue;
2871
2872 if (crtc == for_crtc)
2873 break;
2874
2875 nth_active_pipe++;
2876 }
2877
2878 pipe_size = ddb_size / config->num_pipes_active;
2879 alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active;
Damien Lespiau16160e32014-11-04 17:06:53 +00002880 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002881}
2882
2883static unsigned int skl_cursor_allocation(const struct intel_wm_config *config)
2884{
2885 if (config->num_pipes_active == 1)
2886 return 32;
2887
2888 return 8;
2889}
2890
Damien Lespiaua269c582014-11-04 17:06:49 +00002891static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
2892{
2893 entry->start = reg & 0x3ff;
2894 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00002895 if (entry->end)
2896 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00002897}
2898
Damien Lespiau08db6652014-11-04 17:06:52 +00002899void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2900 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00002901{
Damien Lespiaua269c582014-11-04 17:06:49 +00002902 enum pipe pipe;
2903 int plane;
2904 u32 val;
2905
2906 for_each_pipe(dev_priv, pipe) {
Damien Lespiaudd740782015-02-28 14:54:08 +00002907 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00002908 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
2909 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
2910 val);
2911 }
2912
2913 val = I915_READ(CUR_BUF_CFG(pipe));
2914 skl_ddb_entry_init_from_hw(&ddb->cursor[pipe], val);
2915 }
2916}
2917
Damien Lespiaub9cec072014-11-04 17:06:43 +00002918static unsigned int
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002919skl_plane_relative_data_rate(const struct intel_plane_wm_parameters *p, int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002920{
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002921
2922 /* for planar format */
2923 if (p->y_bytes_per_pixel) {
2924 if (y) /* y-plane data rate */
2925 return p->horiz_pixels * p->vert_pixels * p->y_bytes_per_pixel;
2926 else /* uv-plane data rate */
2927 return (p->horiz_pixels/2) * (p->vert_pixels/2) * p->bytes_per_pixel;
2928 }
2929
2930 /* for packed formats */
Damien Lespiaub9cec072014-11-04 17:06:43 +00002931 return p->horiz_pixels * p->vert_pixels * p->bytes_per_pixel;
2932}
2933
2934/*
2935 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
2936 * a 8192x4096@32bpp framebuffer:
2937 * 3 * 4096 * 8192 * 4 < 2^32
2938 */
2939static unsigned int
2940skl_get_total_relative_data_rate(struct intel_crtc *intel_crtc,
2941 const struct skl_pipe_wm_parameters *params)
2942{
2943 unsigned int total_data_rate = 0;
2944 int plane;
2945
2946 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
2947 const struct intel_plane_wm_parameters *p;
2948
2949 p = &params->plane[plane];
2950 if (!p->enabled)
2951 continue;
2952
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002953 total_data_rate += skl_plane_relative_data_rate(p, 0); /* packed/uv */
2954 if (p->y_bytes_per_pixel) {
2955 total_data_rate += skl_plane_relative_data_rate(p, 1); /* y-plane */
2956 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00002957 }
2958
2959 return total_data_rate;
2960}
2961
2962static void
2963skl_allocate_pipe_ddb(struct drm_crtc *crtc,
2964 const struct intel_wm_config *config,
2965 const struct skl_pipe_wm_parameters *params,
2966 struct skl_ddb_allocation *ddb /* out */)
2967{
2968 struct drm_device *dev = crtc->dev;
Damien Lespiaudd740782015-02-28 14:54:08 +00002969 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002970 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2971 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002972 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002973 uint16_t alloc_size, start, cursor_blocks;
Damien Lespiau80958152015-02-09 13:35:10 +00002974 uint16_t minimum[I915_MAX_PLANES];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002975 uint16_t y_minimum[I915_MAX_PLANES];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002976 unsigned int total_data_rate;
2977 int plane;
2978
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002979 skl_ddb_get_pipe_allocation_limits(dev, crtc, config, params, alloc);
2980 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002981 if (alloc_size == 0) {
2982 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
2983 memset(&ddb->cursor[pipe], 0, sizeof(ddb->cursor[pipe]));
2984 return;
2985 }
2986
2987 cursor_blocks = skl_cursor_allocation(config);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002988 ddb->cursor[pipe].start = alloc->end - cursor_blocks;
2989 ddb->cursor[pipe].end = alloc->end;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002990
2991 alloc_size -= cursor_blocks;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002992 alloc->end -= cursor_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002993
Damien Lespiau80958152015-02-09 13:35:10 +00002994 /* 1. Allocate the mininum required blocks for each active plane */
Damien Lespiaudd740782015-02-28 14:54:08 +00002995 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau80958152015-02-09 13:35:10 +00002996 const struct intel_plane_wm_parameters *p;
2997
2998 p = &params->plane[plane];
2999 if (!p->enabled)
3000 continue;
3001
3002 minimum[plane] = 8;
3003 alloc_size -= minimum[plane];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003004 y_minimum[plane] = p->y_bytes_per_pixel ? 8 : 0;
3005 alloc_size -= y_minimum[plane];
Damien Lespiau80958152015-02-09 13:35:10 +00003006 }
3007
Damien Lespiaub9cec072014-11-04 17:06:43 +00003008 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003009 * 2. Distribute the remaining space in proportion to the amount of
3010 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003011 *
3012 * FIXME: we may not allocate every single block here.
3013 */
3014 total_data_rate = skl_get_total_relative_data_rate(intel_crtc, params);
3015
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003016 start = alloc->start;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003017 for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) {
3018 const struct intel_plane_wm_parameters *p;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003019 unsigned int data_rate, y_data_rate;
3020 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003021
3022 p = &params->plane[plane];
3023 if (!p->enabled)
3024 continue;
3025
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003026 data_rate = skl_plane_relative_data_rate(p, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003027
3028 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003029 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003030 * promote the expression to 64 bits to avoid overflowing, the
3031 * result is < available as data_rate / total_data_rate < 1
3032 */
Damien Lespiau80958152015-02-09 13:35:10 +00003033 plane_blocks = minimum[plane];
3034 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3035 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003036
3037 ddb->plane[pipe][plane].start = start;
Damien Lespiau16160e32014-11-04 17:06:53 +00003038 ddb->plane[pipe][plane].end = start + plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003039
3040 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003041
3042 /*
3043 * allocation for y_plane part of planar format:
3044 */
3045 if (p->y_bytes_per_pixel) {
3046 y_data_rate = skl_plane_relative_data_rate(p, 1);
3047 y_plane_blocks = y_minimum[plane];
3048 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3049 total_data_rate);
3050
3051 ddb->y_plane[pipe][plane].start = start;
3052 ddb->y_plane[pipe][plane].end = start + y_plane_blocks;
3053
3054 start += y_plane_blocks;
3055 }
3056
Damien Lespiaub9cec072014-11-04 17:06:43 +00003057 }
3058
3059}
3060
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02003061static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003062{
3063 /* TODO: Take into account the scalers once we support them */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02003064 return config->base.adjusted_mode.crtc_clock;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003065}
3066
3067/*
3068 * The max latency should be 257 (max the punit can code is 255 and we add 2us
3069 * for the read latency) and bytes_per_pixel should always be <= 8, so that
3070 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3071 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3072*/
3073static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
3074 uint32_t latency)
3075{
3076 uint32_t wm_intermediate_val, ret;
3077
3078 if (latency == 0)
3079 return UINT_MAX;
3080
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003081 wm_intermediate_val = latency * pixel_rate * bytes_per_pixel / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003082 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
3083
3084 return ret;
3085}
3086
3087static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
3088 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003089 uint64_t tiling, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003090{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003091 uint32_t ret;
3092 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3093 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003094
3095 if (latency == 0)
3096 return UINT_MAX;
3097
3098 plane_bytes_per_line = horiz_pixels * bytes_per_pixel;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003099
3100 if (tiling == I915_FORMAT_MOD_Y_TILED ||
3101 tiling == I915_FORMAT_MOD_Yf_TILED) {
3102 plane_bytes_per_line *= 4;
3103 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3104 plane_blocks_per_line /= 4;
3105 } else {
3106 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3107 }
3108
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003109 wm_intermediate_val = latency * pixel_rate;
3110 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003111 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003112
3113 return ret;
3114}
3115
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003116static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb,
3117 const struct intel_crtc *intel_crtc)
3118{
3119 struct drm_device *dev = intel_crtc->base.dev;
3120 struct drm_i915_private *dev_priv = dev->dev_private;
3121 const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3122 enum pipe pipe = intel_crtc->pipe;
3123
3124 if (memcmp(new_ddb->plane[pipe], cur_ddb->plane[pipe],
3125 sizeof(new_ddb->plane[pipe])))
3126 return true;
3127
3128 if (memcmp(&new_ddb->cursor[pipe], &cur_ddb->cursor[pipe],
3129 sizeof(new_ddb->cursor[pipe])))
3130 return true;
3131
3132 return false;
3133}
3134
3135static void skl_compute_wm_global_parameters(struct drm_device *dev,
3136 struct intel_wm_config *config)
3137{
3138 struct drm_crtc *crtc;
3139 struct drm_plane *plane;
3140
3141 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
Matt Roper3ef00282015-03-09 10:19:24 -07003142 config->num_pipes_active += to_intel_crtc(crtc)->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003143
3144 /* FIXME: I don't think we need those two global parameters on SKL */
3145 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
3146 struct intel_plane *intel_plane = to_intel_plane(plane);
3147
3148 config->sprites_enabled |= intel_plane->wm.enabled;
3149 config->sprites_scaled |= intel_plane->wm.scaled;
3150 }
3151}
3152
3153static void skl_compute_wm_pipe_parameters(struct drm_crtc *crtc,
3154 struct skl_pipe_wm_parameters *p)
3155{
3156 struct drm_device *dev = crtc->dev;
3157 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3158 enum pipe pipe = intel_crtc->pipe;
3159 struct drm_plane *plane;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003160 struct drm_framebuffer *fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003161 int i = 1; /* Index for sprite planes start */
3162
Matt Roper3ef00282015-03-09 10:19:24 -07003163 p->active = intel_crtc->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003164 if (p->active) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003165 p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal;
3166 p->pixel_rate = skl_pipe_pixel_rate(intel_crtc->config);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003167
Matt Roperc9f038a2015-03-09 11:06:02 -07003168 fb = crtc->primary->state->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003169 /* For planar: Bpp is for uv plane, y_Bpp is for y plane */
Matt Roperc9f038a2015-03-09 11:06:02 -07003170 if (fb) {
3171 p->plane[0].enabled = true;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003172 p->plane[0].bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
Kumar, Mahesh395ab752015-09-03 16:17:08 +05303173 drm_format_plane_cpp(fb->pixel_format, 1) :
3174 drm_format_plane_cpp(fb->pixel_format, 0);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003175 p->plane[0].y_bytes_per_pixel = fb->pixel_format == DRM_FORMAT_NV12 ?
3176 drm_format_plane_cpp(fb->pixel_format, 0) : 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07003177 p->plane[0].tiling = fb->modifier[0];
3178 } else {
3179 p->plane[0].enabled = false;
3180 p->plane[0].bytes_per_pixel = 0;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003181 p->plane[0].y_bytes_per_pixel = 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07003182 p->plane[0].tiling = DRM_FORMAT_MOD_NONE;
3183 }
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02003184 p->plane[0].horiz_pixels = intel_crtc->config->pipe_src_w;
3185 p->plane[0].vert_pixels = intel_crtc->config->pipe_src_h;
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003186 p->plane[0].rotation = crtc->primary->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003187
Matt Roperc9f038a2015-03-09 11:06:02 -07003188 fb = crtc->cursor->state->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003189 p->cursor.y_bytes_per_pixel = 0;
Matt Roperc9f038a2015-03-09 11:06:02 -07003190 if (fb) {
3191 p->cursor.enabled = true;
3192 p->cursor.bytes_per_pixel = fb->bits_per_pixel / 8;
3193 p->cursor.horiz_pixels = crtc->cursor->state->crtc_w;
3194 p->cursor.vert_pixels = crtc->cursor->state->crtc_h;
3195 } else {
3196 p->cursor.enabled = false;
3197 p->cursor.bytes_per_pixel = 0;
3198 p->cursor.horiz_pixels = 64;
3199 p->cursor.vert_pixels = 64;
3200 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003201 }
3202
3203 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
3204 struct intel_plane *intel_plane = to_intel_plane(plane);
3205
Sonika Jindala712f8e2014-12-09 10:59:15 +05303206 if (intel_plane->pipe == pipe &&
3207 plane->type == DRM_PLANE_TYPE_OVERLAY)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003208 p->plane[i++] = intel_plane->wm;
3209 }
3210}
3211
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003212static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3213 struct skl_pipe_wm_parameters *p,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003214 struct intel_plane_wm_parameters *p_params,
3215 uint16_t ddb_allocation,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003216 int level,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003217 uint16_t *out_blocks, /* out */
3218 uint8_t *out_lines /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003219{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003220 uint32_t latency = dev_priv->wm.skl_latency[level];
3221 uint32_t method1, method2;
3222 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3223 uint32_t res_blocks, res_lines;
3224 uint32_t selected_result;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003225 uint8_t bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003226
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003227 if (latency == 0 || !p->active || !p_params->enabled)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003228 return false;
3229
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003230 bytes_per_pixel = p_params->y_bytes_per_pixel ?
3231 p_params->y_bytes_per_pixel :
3232 p_params->bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003233 method1 = skl_wm_method1(p->pixel_rate,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003234 bytes_per_pixel,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003235 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003236 method2 = skl_wm_method2(p->pixel_rate,
3237 p->pipe_htotal,
3238 p_params->horiz_pixels,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003239 bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003240 p_params->tiling,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003241 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003242
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003243 plane_bytes_per_line = p_params->horiz_pixels * bytes_per_pixel;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003244 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003245
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003246 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
3247 p_params->tiling == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003248 uint32_t min_scanlines = 4;
3249 uint32_t y_tile_minimum;
3250 if (intel_rotation_90_or_270(p_params->rotation)) {
3251 switch (p_params->bytes_per_pixel) {
3252 case 1:
3253 min_scanlines = 16;
3254 break;
3255 case 2:
3256 min_scanlines = 8;
3257 break;
3258 case 8:
3259 WARN(1, "Unsupported pixel depth for rotation");
kbuild test robot2f0b5792015-03-26 22:30:21 +08003260 }
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003261 }
3262 y_tile_minimum = plane_blocks_per_line * min_scanlines;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003263 selected_result = max(method2, y_tile_minimum);
3264 } else {
3265 if ((ddb_allocation / plane_blocks_per_line) >= 1)
3266 selected_result = min(method1, method2);
3267 else
3268 selected_result = method1;
3269 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003270
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003271 res_blocks = selected_result + 1;
3272 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003273
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003274 if (level >= 1 && level <= 7) {
3275 if (p_params->tiling == I915_FORMAT_MOD_Y_TILED ||
3276 p_params->tiling == I915_FORMAT_MOD_Yf_TILED)
3277 res_lines += 4;
3278 else
3279 res_blocks++;
3280 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003281
3282 if (res_blocks >= ddb_allocation || res_lines > 31)
Damien Lespiaue6d66172014-11-04 17:06:55 +00003283 return false;
3284
3285 *out_blocks = res_blocks;
3286 *out_lines = res_lines;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003287
3288 return true;
3289}
3290
3291static void skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3292 struct skl_ddb_allocation *ddb,
3293 struct skl_pipe_wm_parameters *p,
3294 enum pipe pipe,
3295 int level,
3296 int num_planes,
3297 struct skl_wm_level *result)
3298{
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003299 uint16_t ddb_blocks;
3300 int i;
3301
3302 for (i = 0; i < num_planes; i++) {
3303 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
3304
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003305 result->plane_en[i] = skl_compute_plane_wm(dev_priv,
3306 p, &p->plane[i],
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003307 ddb_blocks,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003308 level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003309 &result->plane_res_b[i],
3310 &result->plane_res_l[i]);
3311 }
3312
3313 ddb_blocks = skl_ddb_entry_size(&ddb->cursor[pipe]);
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003314 result->cursor_en = skl_compute_plane_wm(dev_priv, p, &p->cursor,
3315 ddb_blocks, level,
3316 &result->cursor_res_b,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003317 &result->cursor_res_l);
3318}
3319
Damien Lespiau407b50f2014-11-04 17:06:57 +00003320static uint32_t
3321skl_compute_linetime_wm(struct drm_crtc *crtc, struct skl_pipe_wm_parameters *p)
3322{
Matt Roper3ef00282015-03-09 10:19:24 -07003323 if (!to_intel_crtc(crtc)->active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003324 return 0;
3325
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003326 if (WARN_ON(p->pixel_rate == 0))
3327 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003328
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003329 return DIV_ROUND_UP(8 * p->pipe_htotal * 1000, p->pixel_rate);
Damien Lespiau407b50f2014-11-04 17:06:57 +00003330}
3331
3332static void skl_compute_transition_wm(struct drm_crtc *crtc,
3333 struct skl_pipe_wm_parameters *params,
Damien Lespiau9414f562014-11-04 17:06:58 +00003334 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003335{
Damien Lespiau9414f562014-11-04 17:06:58 +00003336 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3337 int i;
3338
Damien Lespiau407b50f2014-11-04 17:06:57 +00003339 if (!params->active)
3340 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003341
3342 /* Until we know more, just disable transition WMs */
3343 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3344 trans_wm->plane_en[i] = false;
3345 trans_wm->cursor_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003346}
3347
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003348static void skl_compute_pipe_wm(struct drm_crtc *crtc,
3349 struct skl_ddb_allocation *ddb,
3350 struct skl_pipe_wm_parameters *params,
3351 struct skl_pipe_wm *pipe_wm)
3352{
3353 struct drm_device *dev = crtc->dev;
3354 const struct drm_i915_private *dev_priv = dev->dev_private;
3355 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3356 int level, max_level = ilk_wm_max_level(dev);
3357
3358 for (level = 0; level <= max_level; level++) {
3359 skl_compute_wm_level(dev_priv, ddb, params, intel_crtc->pipe,
3360 level, intel_num_planes(intel_crtc),
3361 &pipe_wm->wm[level]);
3362 }
3363 pipe_wm->linetime = skl_compute_linetime_wm(crtc, params);
3364
Damien Lespiau9414f562014-11-04 17:06:58 +00003365 skl_compute_transition_wm(crtc, params, &pipe_wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003366}
3367
3368static void skl_compute_wm_results(struct drm_device *dev,
3369 struct skl_pipe_wm_parameters *p,
3370 struct skl_pipe_wm *p_wm,
3371 struct skl_wm_values *r,
3372 struct intel_crtc *intel_crtc)
3373{
3374 int level, max_level = ilk_wm_max_level(dev);
3375 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau9414f562014-11-04 17:06:58 +00003376 uint32_t temp;
3377 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003378
3379 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003380 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3381 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003382
3383 temp |= p_wm->wm[level].plane_res_l[i] <<
3384 PLANE_WM_LINES_SHIFT;
3385 temp |= p_wm->wm[level].plane_res_b[i];
3386 if (p_wm->wm[level].plane_en[i])
3387 temp |= PLANE_WM_EN;
3388
3389 r->plane[pipe][i][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003390 }
3391
3392 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003393
3394 temp |= p_wm->wm[level].cursor_res_l << PLANE_WM_LINES_SHIFT;
3395 temp |= p_wm->wm[level].cursor_res_b;
3396
3397 if (p_wm->wm[level].cursor_en)
3398 temp |= PLANE_WM_EN;
3399
3400 r->cursor[pipe][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003401
3402 }
3403
Damien Lespiau9414f562014-11-04 17:06:58 +00003404 /* transition WMs */
3405 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3406 temp = 0;
3407 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
3408 temp |= p_wm->trans_wm.plane_res_b[i];
3409 if (p_wm->trans_wm.plane_en[i])
3410 temp |= PLANE_WM_EN;
3411
3412 r->plane_trans[pipe][i] = temp;
3413 }
3414
3415 temp = 0;
3416 temp |= p_wm->trans_wm.cursor_res_l << PLANE_WM_LINES_SHIFT;
3417 temp |= p_wm->trans_wm.cursor_res_b;
3418 if (p_wm->trans_wm.cursor_en)
3419 temp |= PLANE_WM_EN;
3420
3421 r->cursor_trans[pipe] = temp;
3422
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003423 r->wm_linetime[pipe] = p_wm->linetime;
3424}
3425
Damien Lespiau16160e32014-11-04 17:06:53 +00003426static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, uint32_t reg,
3427 const struct skl_ddb_entry *entry)
3428{
3429 if (entry->end)
3430 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3431 else
3432 I915_WRITE(reg, 0);
3433}
3434
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003435static void skl_write_wm_values(struct drm_i915_private *dev_priv,
3436 const struct skl_wm_values *new)
3437{
3438 struct drm_device *dev = dev_priv->dev;
3439 struct intel_crtc *crtc;
3440
3441 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
3442 int i, level, max_level = ilk_wm_max_level(dev);
3443 enum pipe pipe = crtc->pipe;
3444
Damien Lespiau5d374d92014-11-04 17:07:00 +00003445 if (!new->dirty[pipe])
3446 continue;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003447
Damien Lespiau5d374d92014-11-04 17:07:00 +00003448 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
3449
3450 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003451 for (i = 0; i < intel_num_planes(crtc); i++)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003452 I915_WRITE(PLANE_WM(pipe, i, level),
3453 new->plane[pipe][i][level]);
3454 I915_WRITE(CUR_WM(pipe, level),
3455 new->cursor[pipe][level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003456 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003457 for (i = 0; i < intel_num_planes(crtc); i++)
3458 I915_WRITE(PLANE_WM_TRANS(pipe, i),
3459 new->plane_trans[pipe][i]);
3460 I915_WRITE(CUR_WM_TRANS(pipe), new->cursor_trans[pipe]);
3461
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003462 for (i = 0; i < intel_num_planes(crtc); i++) {
Damien Lespiau5d374d92014-11-04 17:07:00 +00003463 skl_ddb_entry_write(dev_priv,
3464 PLANE_BUF_CFG(pipe, i),
3465 &new->ddb.plane[pipe][i]);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003466 skl_ddb_entry_write(dev_priv,
3467 PLANE_NV12_BUF_CFG(pipe, i),
3468 &new->ddb.y_plane[pipe][i]);
3469 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003470
3471 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
3472 &new->ddb.cursor[pipe]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003473 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003474}
3475
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003476/*
3477 * When setting up a new DDB allocation arrangement, we need to correctly
3478 * sequence the times at which the new allocations for the pipes are taken into
3479 * account or we'll have pipes fetching from space previously allocated to
3480 * another pipe.
3481 *
3482 * Roughly the sequence looks like:
3483 * 1. re-allocate the pipe(s) with the allocation being reduced and not
3484 * overlapping with a previous light-up pipe (another way to put it is:
3485 * pipes with their new allocation strickly included into their old ones).
3486 * 2. re-allocate the other pipes that get their allocation reduced
3487 * 3. allocate the pipes having their allocation increased
3488 *
3489 * Steps 1. and 2. are here to take care of the following case:
3490 * - Initially DDB looks like this:
3491 * | B | C |
3492 * - enable pipe A.
3493 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
3494 * allocation
3495 * | A | B | C |
3496 *
3497 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
3498 */
3499
Damien Lespiaud21b7952014-11-04 17:07:03 +00003500static void
3501skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003502{
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003503 int plane;
3504
Damien Lespiaud21b7952014-11-04 17:07:03 +00003505 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
3506
Damien Lespiaudd740782015-02-28 14:54:08 +00003507 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003508 I915_WRITE(PLANE_SURF(pipe, plane),
3509 I915_READ(PLANE_SURF(pipe, plane)));
3510 }
3511 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3512}
3513
3514static bool
3515skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
3516 const struct skl_ddb_allocation *new,
3517 enum pipe pipe)
3518{
3519 uint16_t old_size, new_size;
3520
3521 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
3522 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
3523
3524 return old_size != new_size &&
3525 new->pipe[pipe].start >= old->pipe[pipe].start &&
3526 new->pipe[pipe].end <= old->pipe[pipe].end;
3527}
3528
3529static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
3530 struct skl_wm_values *new_values)
3531{
3532 struct drm_device *dev = dev_priv->dev;
3533 struct skl_ddb_allocation *cur_ddb, *new_ddb;
Ville Syrjäläc929cb42015-04-02 18:28:07 +03003534 bool reallocated[I915_MAX_PIPES] = {};
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003535 struct intel_crtc *crtc;
3536 enum pipe pipe;
3537
3538 new_ddb = &new_values->ddb;
3539 cur_ddb = &dev_priv->wm.skl_hw.ddb;
3540
3541 /*
3542 * First pass: flush the pipes with the new allocation contained into
3543 * the old space.
3544 *
3545 * We'll wait for the vblank on those pipes to ensure we can safely
3546 * re-allocate the freed space without this pipe fetching from it.
3547 */
3548 for_each_intel_crtc(dev, crtc) {
3549 if (!crtc->active)
3550 continue;
3551
3552 pipe = crtc->pipe;
3553
3554 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
3555 continue;
3556
Damien Lespiaud21b7952014-11-04 17:07:03 +00003557 skl_wm_flush_pipe(dev_priv, pipe, 1);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003558 intel_wait_for_vblank(dev, pipe);
3559
3560 reallocated[pipe] = true;
3561 }
3562
3563
3564 /*
3565 * Second pass: flush the pipes that are having their allocation
3566 * reduced, but overlapping with a previous allocation.
3567 *
3568 * Here as well we need to wait for the vblank to make sure the freed
3569 * space is not used anymore.
3570 */
3571 for_each_intel_crtc(dev, crtc) {
3572 if (!crtc->active)
3573 continue;
3574
3575 pipe = crtc->pipe;
3576
3577 if (reallocated[pipe])
3578 continue;
3579
3580 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3581 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
Damien Lespiaud21b7952014-11-04 17:07:03 +00003582 skl_wm_flush_pipe(dev_priv, pipe, 2);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003583 intel_wait_for_vblank(dev, pipe);
Sonika Jindald9d8e6b2014-12-11 17:58:15 +05303584 reallocated[pipe] = true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003585 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003586 }
3587
3588 /*
3589 * Third pass: flush the pipes that got more space allocated.
3590 *
3591 * We don't need to actively wait for the update here, next vblank
3592 * will just get more DDB space with the correct WM values.
3593 */
3594 for_each_intel_crtc(dev, crtc) {
3595 if (!crtc->active)
3596 continue;
3597
3598 pipe = crtc->pipe;
3599
3600 /*
3601 * At this point, only the pipes more space than before are
3602 * left to re-allocate.
3603 */
3604 if (reallocated[pipe])
3605 continue;
3606
Damien Lespiaud21b7952014-11-04 17:07:03 +00003607 skl_wm_flush_pipe(dev_priv, pipe, 3);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003608 }
3609}
3610
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003611static bool skl_update_pipe_wm(struct drm_crtc *crtc,
3612 struct skl_pipe_wm_parameters *params,
3613 struct intel_wm_config *config,
3614 struct skl_ddb_allocation *ddb, /* out */
3615 struct skl_pipe_wm *pipe_wm /* out */)
3616{
3617 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3618
3619 skl_compute_wm_pipe_parameters(crtc, params);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003620 skl_allocate_pipe_ddb(crtc, config, params, ddb);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003621 skl_compute_pipe_wm(crtc, ddb, params, pipe_wm);
3622
3623 if (!memcmp(&intel_crtc->wm.skl_active, pipe_wm, sizeof(*pipe_wm)))
3624 return false;
3625
3626 intel_crtc->wm.skl_active = *pipe_wm;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003627
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003628 return true;
3629}
3630
3631static void skl_update_other_pipe_wm(struct drm_device *dev,
3632 struct drm_crtc *crtc,
3633 struct intel_wm_config *config,
3634 struct skl_wm_values *r)
3635{
3636 struct intel_crtc *intel_crtc;
3637 struct intel_crtc *this_crtc = to_intel_crtc(crtc);
3638
3639 /*
3640 * If the WM update hasn't changed the allocation for this_crtc (the
3641 * crtc we are currently computing the new WM values for), other
3642 * enabled crtcs will keep the same allocation and we don't need to
3643 * recompute anything for them.
3644 */
3645 if (!skl_ddb_allocation_changed(&r->ddb, this_crtc))
3646 return;
3647
3648 /*
3649 * Otherwise, because of this_crtc being freshly enabled/disabled, the
3650 * other active pipes need new DDB allocation and WM values.
3651 */
3652 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
3653 base.head) {
3654 struct skl_pipe_wm_parameters params = {};
3655 struct skl_pipe_wm pipe_wm = {};
3656 bool wm_changed;
3657
3658 if (this_crtc->pipe == intel_crtc->pipe)
3659 continue;
3660
3661 if (!intel_crtc->active)
3662 continue;
3663
3664 wm_changed = skl_update_pipe_wm(&intel_crtc->base,
3665 &params, config,
3666 &r->ddb, &pipe_wm);
3667
3668 /*
3669 * If we end up re-computing the other pipe WM values, it's
3670 * because it was really needed, so we expect the WM values to
3671 * be different.
3672 */
3673 WARN_ON(!wm_changed);
3674
3675 skl_compute_wm_results(dev, &params, &pipe_wm, r, intel_crtc);
3676 r->dirty[intel_crtc->pipe] = true;
3677 }
3678}
3679
Bob Paauweadda50b2015-07-21 10:42:53 -07003680static void skl_clear_wm(struct skl_wm_values *watermarks, enum pipe pipe)
3681{
3682 watermarks->wm_linetime[pipe] = 0;
3683 memset(watermarks->plane[pipe], 0,
3684 sizeof(uint32_t) * 8 * I915_MAX_PLANES);
3685 memset(watermarks->cursor[pipe], 0, sizeof(uint32_t) * 8);
3686 memset(watermarks->plane_trans[pipe],
3687 0, sizeof(uint32_t) * I915_MAX_PLANES);
3688 watermarks->cursor_trans[pipe] = 0;
3689
3690 /* Clear ddb entries for pipe */
3691 memset(&watermarks->ddb.pipe[pipe], 0, sizeof(struct skl_ddb_entry));
3692 memset(&watermarks->ddb.plane[pipe], 0,
3693 sizeof(struct skl_ddb_entry) * I915_MAX_PLANES);
3694 memset(&watermarks->ddb.y_plane[pipe], 0,
3695 sizeof(struct skl_ddb_entry) * I915_MAX_PLANES);
3696 memset(&watermarks->ddb.cursor[pipe], 0, sizeof(struct skl_ddb_entry));
3697
3698}
3699
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003700static void skl_update_wm(struct drm_crtc *crtc)
3701{
3702 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3703 struct drm_device *dev = crtc->dev;
3704 struct drm_i915_private *dev_priv = dev->dev_private;
3705 struct skl_pipe_wm_parameters params = {};
3706 struct skl_wm_values *results = &dev_priv->wm.skl_results;
3707 struct skl_pipe_wm pipe_wm = {};
3708 struct intel_wm_config config = {};
3709
Bob Paauweadda50b2015-07-21 10:42:53 -07003710
3711 /* Clear all dirty flags */
3712 memset(results->dirty, 0, sizeof(bool) * I915_MAX_PIPES);
3713
3714 skl_clear_wm(results, intel_crtc->pipe);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003715
3716 skl_compute_wm_global_parameters(dev, &config);
3717
3718 if (!skl_update_pipe_wm(crtc, &params, &config,
3719 &results->ddb, &pipe_wm))
3720 return;
3721
3722 skl_compute_wm_results(dev, &params, &pipe_wm, results, intel_crtc);
3723 results->dirty[intel_crtc->pipe] = true;
3724
3725 skl_update_other_pipe_wm(dev, crtc, &config, results);
3726 skl_write_wm_values(dev_priv, results);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003727 skl_flush_wm_values(dev_priv, results);
Damien Lespiau53b0deb2014-11-04 17:06:48 +00003728
3729 /* store the new configuration */
3730 dev_priv->wm.skl_hw = *results;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003731}
3732
3733static void
3734skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc,
3735 uint32_t sprite_width, uint32_t sprite_height,
3736 int pixel_size, bool enabled, bool scaled)
3737{
3738 struct intel_plane *intel_plane = to_intel_plane(plane);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003739 struct drm_framebuffer *fb = plane->state->fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003740
3741 intel_plane->wm.enabled = enabled;
3742 intel_plane->wm.scaled = scaled;
3743 intel_plane->wm.horiz_pixels = sprite_width;
3744 intel_plane->wm.vert_pixels = sprite_height;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003745 intel_plane->wm.tiling = DRM_FORMAT_MOD_NONE;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003746
3747 /* For planar: Bpp is for UV plane, y_Bpp is for Y plane */
3748 intel_plane->wm.bytes_per_pixel =
3749 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3750 drm_format_plane_cpp(plane->state->fb->pixel_format, 1) : pixel_size;
3751 intel_plane->wm.y_bytes_per_pixel =
3752 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3753 drm_format_plane_cpp(plane->state->fb->pixel_format, 0) : 0;
3754
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003755 /*
3756 * Framebuffer can be NULL on plane disable, but it does not
3757 * matter for watermarks if we assume no tiling in that case.
3758 */
3759 if (fb)
3760 intel_plane->wm.tiling = fb->modifier[0];
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003761 intel_plane->wm.rotation = plane->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003762
3763 skl_update_wm(crtc);
3764}
3765
Imre Deak820c1982013-12-17 14:46:36 +02003766static void ilk_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003767{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003768 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003769 struct drm_device *dev = crtc->dev;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003770 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003771 struct ilk_wm_maximums max;
3772 struct ilk_pipe_wm_parameters params = {};
3773 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003774 enum intel_ddb_partitioning partitioning;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003775 struct intel_pipe_wm pipe_wm = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003776 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003777 struct intel_wm_config config = {};
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003778
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003779 ilk_compute_wm_parameters(crtc, &params);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003780
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003781 intel_compute_pipe_wm(crtc, &params, &pipe_wm);
3782
3783 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
3784 return;
3785
3786 intel_crtc->wm.active = pipe_wm;
3787
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003788 ilk_compute_wm_config(dev, &config);
3789
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003790 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003791 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03003792
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003793 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03003794 if (INTEL_INFO(dev)->gen >= 7 &&
3795 config.num_pipes_active == 1 && config.sprites_enabled) {
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003796 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003797 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003798
Imre Deak820c1982013-12-17 14:46:36 +02003799 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003800 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003801 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003802 }
3803
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003804 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003805 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003806
Imre Deak820c1982013-12-17 14:46:36 +02003807 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003808
Imre Deak820c1982013-12-17 14:46:36 +02003809 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003810}
3811
Damien Lespiaued57cb82014-07-15 09:21:24 +02003812static void
3813ilk_update_sprite_wm(struct drm_plane *plane,
3814 struct drm_crtc *crtc,
3815 uint32_t sprite_width, uint32_t sprite_height,
3816 int pixel_size, bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03003817{
Ville Syrjälä8553c182013-12-05 15:51:39 +02003818 struct drm_device *dev = plane->dev;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003819 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003820
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003821 intel_plane->wm.enabled = enabled;
3822 intel_plane->wm.scaled = scaled;
3823 intel_plane->wm.horiz_pixels = sprite_width;
Damien Lespiaued57cb82014-07-15 09:21:24 +02003824 intel_plane->wm.vert_pixels = sprite_width;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003825 intel_plane->wm.bytes_per_pixel = pixel_size;
Paulo Zanoni526682e2013-05-24 11:59:18 -03003826
Ville Syrjälä8553c182013-12-05 15:51:39 +02003827 /*
3828 * IVB workaround: must disable low power watermarks for at least
3829 * one frame before enabling scaling. LP watermarks can be re-enabled
3830 * when scaling is disabled.
3831 *
3832 * WaCxSRDisabledForSpriteScaling:ivb
3833 */
3834 if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev))
3835 intel_wait_for_vblank(dev, intel_plane->pipe);
3836
Imre Deak820c1982013-12-17 14:46:36 +02003837 ilk_update_wm(crtc);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003838}
3839
Pradeep Bhat30789992014-11-04 17:06:45 +00003840static void skl_pipe_wm_active_state(uint32_t val,
3841 struct skl_pipe_wm *active,
3842 bool is_transwm,
3843 bool is_cursor,
3844 int i,
3845 int level)
3846{
3847 bool is_enabled = (val & PLANE_WM_EN) != 0;
3848
3849 if (!is_transwm) {
3850 if (!is_cursor) {
3851 active->wm[level].plane_en[i] = is_enabled;
3852 active->wm[level].plane_res_b[i] =
3853 val & PLANE_WM_BLOCKS_MASK;
3854 active->wm[level].plane_res_l[i] =
3855 (val >> PLANE_WM_LINES_SHIFT) &
3856 PLANE_WM_LINES_MASK;
3857 } else {
3858 active->wm[level].cursor_en = is_enabled;
3859 active->wm[level].cursor_res_b =
3860 val & PLANE_WM_BLOCKS_MASK;
3861 active->wm[level].cursor_res_l =
3862 (val >> PLANE_WM_LINES_SHIFT) &
3863 PLANE_WM_LINES_MASK;
3864 }
3865 } else {
3866 if (!is_cursor) {
3867 active->trans_wm.plane_en[i] = is_enabled;
3868 active->trans_wm.plane_res_b[i] =
3869 val & PLANE_WM_BLOCKS_MASK;
3870 active->trans_wm.plane_res_l[i] =
3871 (val >> PLANE_WM_LINES_SHIFT) &
3872 PLANE_WM_LINES_MASK;
3873 } else {
3874 active->trans_wm.cursor_en = is_enabled;
3875 active->trans_wm.cursor_res_b =
3876 val & PLANE_WM_BLOCKS_MASK;
3877 active->trans_wm.cursor_res_l =
3878 (val >> PLANE_WM_LINES_SHIFT) &
3879 PLANE_WM_LINES_MASK;
3880 }
3881 }
3882}
3883
3884static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3885{
3886 struct drm_device *dev = crtc->dev;
3887 struct drm_i915_private *dev_priv = dev->dev_private;
3888 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
3889 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3890 struct skl_pipe_wm *active = &intel_crtc->wm.skl_active;
3891 enum pipe pipe = intel_crtc->pipe;
3892 int level, i, max_level;
3893 uint32_t temp;
3894
3895 max_level = ilk_wm_max_level(dev);
3896
3897 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3898
3899 for (level = 0; level <= max_level; level++) {
3900 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3901 hw->plane[pipe][i][level] =
3902 I915_READ(PLANE_WM(pipe, i, level));
3903 hw->cursor[pipe][level] = I915_READ(CUR_WM(pipe, level));
3904 }
3905
3906 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3907 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
3908 hw->cursor_trans[pipe] = I915_READ(CUR_WM_TRANS(pipe));
3909
Matt Roper3ef00282015-03-09 10:19:24 -07003910 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00003911 return;
3912
3913 hw->dirty[pipe] = true;
3914
3915 active->linetime = hw->wm_linetime[pipe];
3916
3917 for (level = 0; level <= max_level; level++) {
3918 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3919 temp = hw->plane[pipe][i][level];
3920 skl_pipe_wm_active_state(temp, active, false,
3921 false, i, level);
3922 }
3923 temp = hw->cursor[pipe][level];
3924 skl_pipe_wm_active_state(temp, active, false, true, i, level);
3925 }
3926
3927 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3928 temp = hw->plane_trans[pipe][i];
3929 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
3930 }
3931
3932 temp = hw->cursor_trans[pipe];
3933 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
3934}
3935
3936void skl_wm_get_hw_state(struct drm_device *dev)
3937{
Damien Lespiaua269c582014-11-04 17:06:49 +00003938 struct drm_i915_private *dev_priv = dev->dev_private;
3939 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00003940 struct drm_crtc *crtc;
3941
Damien Lespiaua269c582014-11-04 17:06:49 +00003942 skl_ddb_get_hw_state(dev_priv, ddb);
Pradeep Bhat30789992014-11-04 17:06:45 +00003943 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3944 skl_pipe_wm_get_hw_state(crtc);
3945}
3946
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003947static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3948{
3949 struct drm_device *dev = crtc->dev;
3950 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003951 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003952 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3953 struct intel_pipe_wm *active = &intel_crtc->wm.active;
3954 enum pipe pipe = intel_crtc->pipe;
3955 static const unsigned int wm0_pipe_reg[] = {
3956 [PIPE_A] = WM0_PIPEA_ILK,
3957 [PIPE_B] = WM0_PIPEB_ILK,
3958 [PIPE_C] = WM0_PIPEC_IVB,
3959 };
3960
3961 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003962 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02003963 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003964
Matt Roper3ef00282015-03-09 10:19:24 -07003965 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003966
3967 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003968 u32 tmp = hw->wm_pipe[pipe];
3969
3970 /*
3971 * For active pipes LP0 watermark is marked as
3972 * enabled, and LP1+ watermaks as disabled since
3973 * we can't really reverse compute them in case
3974 * multiple pipes are active.
3975 */
3976 active->wm[0].enable = true;
3977 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3978 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3979 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3980 active->linetime = hw->wm_linetime[pipe];
3981 } else {
3982 int level, max_level = ilk_wm_max_level(dev);
3983
3984 /*
3985 * For inactive pipes, all watermark levels
3986 * should be marked as enabled but zeroed,
3987 * which is what we'd compute them to.
3988 */
3989 for (level = 0; level <= max_level; level++)
3990 active->wm[level].enable = true;
3991 }
3992}
3993
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03003994#define _FW_WM(value, plane) \
3995 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
3996#define _FW_WM_VLV(value, plane) \
3997 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
3998
3999static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4000 struct vlv_wm_values *wm)
4001{
4002 enum pipe pipe;
4003 uint32_t tmp;
4004
4005 for_each_pipe(dev_priv, pipe) {
4006 tmp = I915_READ(VLV_DDL(pipe));
4007
4008 wm->ddl[pipe].primary =
4009 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4010 wm->ddl[pipe].cursor =
4011 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4012 wm->ddl[pipe].sprite[0] =
4013 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4014 wm->ddl[pipe].sprite[1] =
4015 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4016 }
4017
4018 tmp = I915_READ(DSPFW1);
4019 wm->sr.plane = _FW_WM(tmp, SR);
4020 wm->pipe[PIPE_B].cursor = _FW_WM(tmp, CURSORB);
4021 wm->pipe[PIPE_B].primary = _FW_WM_VLV(tmp, PLANEB);
4022 wm->pipe[PIPE_A].primary = _FW_WM_VLV(tmp, PLANEA);
4023
4024 tmp = I915_READ(DSPFW2);
4025 wm->pipe[PIPE_A].sprite[1] = _FW_WM_VLV(tmp, SPRITEB);
4026 wm->pipe[PIPE_A].cursor = _FW_WM(tmp, CURSORA);
4027 wm->pipe[PIPE_A].sprite[0] = _FW_WM_VLV(tmp, SPRITEA);
4028
4029 tmp = I915_READ(DSPFW3);
4030 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4031
4032 if (IS_CHERRYVIEW(dev_priv)) {
4033 tmp = I915_READ(DSPFW7_CHV);
4034 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
4035 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
4036
4037 tmp = I915_READ(DSPFW8_CHV);
4038 wm->pipe[PIPE_C].sprite[1] = _FW_WM_VLV(tmp, SPRITEF);
4039 wm->pipe[PIPE_C].sprite[0] = _FW_WM_VLV(tmp, SPRITEE);
4040
4041 tmp = I915_READ(DSPFW9_CHV);
4042 wm->pipe[PIPE_C].primary = _FW_WM_VLV(tmp, PLANEC);
4043 wm->pipe[PIPE_C].cursor = _FW_WM(tmp, CURSORC);
4044
4045 tmp = I915_READ(DSPHOWM);
4046 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
4047 wm->pipe[PIPE_C].sprite[1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4048 wm->pipe[PIPE_C].sprite[0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4049 wm->pipe[PIPE_C].primary |= _FW_WM(tmp, PLANEC_HI) << 8;
4050 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4051 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4052 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4053 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4054 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4055 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4056 } else {
4057 tmp = I915_READ(DSPFW7);
4058 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
4059 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
4060
4061 tmp = I915_READ(DSPHOWM);
4062 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
4063 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4064 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4065 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4066 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4067 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4068 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4069 }
4070}
4071
4072#undef _FW_WM
4073#undef _FW_WM_VLV
4074
4075void vlv_wm_get_hw_state(struct drm_device *dev)
4076{
4077 struct drm_i915_private *dev_priv = to_i915(dev);
4078 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4079 struct intel_plane *plane;
4080 enum pipe pipe;
4081 u32 val;
4082
4083 vlv_read_wm_values(dev_priv, wm);
4084
4085 for_each_intel_plane(dev, plane) {
4086 switch (plane->base.type) {
4087 int sprite;
4088 case DRM_PLANE_TYPE_CURSOR:
4089 plane->wm.fifo_size = 63;
4090 break;
4091 case DRM_PLANE_TYPE_PRIMARY:
4092 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, 0);
4093 break;
4094 case DRM_PLANE_TYPE_OVERLAY:
4095 sprite = plane->plane;
4096 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, sprite + 1);
4097 break;
4098 }
4099 }
4100
4101 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4102 wm->level = VLV_WM_LEVEL_PM2;
4103
4104 if (IS_CHERRYVIEW(dev_priv)) {
4105 mutex_lock(&dev_priv->rps.hw_lock);
4106
4107 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4108 if (val & DSP_MAXFIFO_PM5_ENABLE)
4109 wm->level = VLV_WM_LEVEL_PM5;
4110
Ville Syrjälä58590c12015-09-08 21:05:12 +03004111 /*
4112 * If DDR DVFS is disabled in the BIOS, Punit
4113 * will never ack the request. So if that happens
4114 * assume we don't have to enable/disable DDR DVFS
4115 * dynamically. To test that just set the REQ_ACK
4116 * bit to poke the Punit, but don't change the
4117 * HIGH/LOW bits so that we don't actually change
4118 * the current state.
4119 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004120 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004121 val |= FORCE_DDR_FREQ_REQ_ACK;
4122 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4123
4124 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4125 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4126 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4127 "assuming DDR DVFS is disabled\n");
4128 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4129 } else {
4130 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4131 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4132 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4133 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004134
4135 mutex_unlock(&dev_priv->rps.hw_lock);
4136 }
4137
4138 for_each_pipe(dev_priv, pipe)
4139 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
4140 pipe_name(pipe), wm->pipe[pipe].primary, wm->pipe[pipe].cursor,
4141 wm->pipe[pipe].sprite[0], wm->pipe[pipe].sprite[1]);
4142
4143 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4144 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4145}
4146
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004147void ilk_wm_get_hw_state(struct drm_device *dev)
4148{
4149 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02004150 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004151 struct drm_crtc *crtc;
4152
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004153 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004154 ilk_pipe_wm_get_hw_state(crtc);
4155
4156 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4157 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4158 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4159
4160 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004161 if (INTEL_INFO(dev)->gen >= 7) {
4162 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4163 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4164 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004165
Ville Syrjäläa42a5712014-01-07 16:14:08 +02004166 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004167 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4168 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
4169 else if (IS_IVYBRIDGE(dev))
4170 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4171 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004172
4173 hw->enable_fbc_wm =
4174 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4175}
4176
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004177/**
4178 * intel_update_watermarks - update FIFO watermark values based on current modes
4179 *
4180 * Calculate watermark values for the various WM regs based on current mode
4181 * and plane configuration.
4182 *
4183 * There are several cases to deal with here:
4184 * - normal (i.e. non-self-refresh)
4185 * - self-refresh (SR) mode
4186 * - lines are large relative to FIFO size (buffer can hold up to 2)
4187 * - lines are small relative to FIFO size (buffer can hold more than 2
4188 * lines), so need to account for TLB latency
4189 *
4190 * The normal calculation is:
4191 * watermark = dotclock * bytes per pixel * latency
4192 * where latency is platform & configuration dependent (we assume pessimal
4193 * values here).
4194 *
4195 * The SR calculation is:
4196 * watermark = (trunc(latency/line time)+1) * surface width *
4197 * bytes per pixel
4198 * where
4199 * line time = htotal / dotclock
4200 * surface width = hdisplay for normal plane and 64 for cursor
4201 * and latency is assumed to be high, as above.
4202 *
4203 * The final value programmed to the register should always be rounded up,
4204 * and include an extra 2 entries to account for clock crossings.
4205 *
4206 * We don't use the sprite, so we can ignore that. And on Crestline we have
4207 * to set the non-SR watermarks to 8.
4208 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004209void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004210{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004211 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004212
4213 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004214 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004215}
4216
Ville Syrjäläadf3d352013-08-06 22:24:11 +03004217void intel_update_sprite_watermarks(struct drm_plane *plane,
4218 struct drm_crtc *crtc,
Damien Lespiaued57cb82014-07-15 09:21:24 +02004219 uint32_t sprite_width,
4220 uint32_t sprite_height,
4221 int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03004222 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004223{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03004224 struct drm_i915_private *dev_priv = plane->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004225
4226 if (dev_priv->display.update_sprite_wm)
Damien Lespiaued57cb82014-07-15 09:21:24 +02004227 dev_priv->display.update_sprite_wm(plane, crtc,
4228 sprite_width, sprite_height,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03004229 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004230}
4231
Daniel Vetter92703882012-08-09 16:46:01 +02004232/**
4233 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004234 */
4235DEFINE_SPINLOCK(mchdev_lock);
4236
4237/* Global for IPS driver to get at the current i915 device. Protected by
4238 * mchdev_lock. */
4239static struct drm_i915_private *i915_mch_dev;
4240
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004241bool ironlake_set_drps(struct drm_device *dev, u8 val)
4242{
4243 struct drm_i915_private *dev_priv = dev->dev_private;
4244 u16 rgvswctl;
4245
Daniel Vetter92703882012-08-09 16:46:01 +02004246 assert_spin_locked(&mchdev_lock);
4247
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004248 rgvswctl = I915_READ16(MEMSWCTL);
4249 if (rgvswctl & MEMCTL_CMD_STS) {
4250 DRM_DEBUG("gpu busy, RCS change rejected\n");
4251 return false; /* still busy with another command */
4252 }
4253
4254 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4255 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4256 I915_WRITE16(MEMSWCTL, rgvswctl);
4257 POSTING_READ16(MEMSWCTL);
4258
4259 rgvswctl |= MEMCTL_CMD_STS;
4260 I915_WRITE16(MEMSWCTL, rgvswctl);
4261
4262 return true;
4263}
4264
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004265static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004266{
4267 struct drm_i915_private *dev_priv = dev->dev_private;
4268 u32 rgvmodectl = I915_READ(MEMMODECTL);
4269 u8 fmax, fmin, fstart, vstart;
4270
Daniel Vetter92703882012-08-09 16:46:01 +02004271 spin_lock_irq(&mchdev_lock);
4272
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004273 /* Enable temp reporting */
4274 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4275 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4276
4277 /* 100ms RC evaluation intervals */
4278 I915_WRITE(RCUPEI, 100000);
4279 I915_WRITE(RCDNEI, 100000);
4280
4281 /* Set max/min thresholds to 90ms and 80ms respectively */
4282 I915_WRITE(RCBMAXAVG, 90000);
4283 I915_WRITE(RCBMINAVG, 80000);
4284
4285 I915_WRITE(MEMIHYST, 1);
4286
4287 /* Set up min, max, and cur for interrupt handling */
4288 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4289 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4290 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4291 MEMMODE_FSTART_SHIFT;
4292
Ville Syrjälä616847e2015-09-18 20:03:19 +03004293 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004294 PXVFREQ_PX_SHIFT;
4295
Daniel Vetter20e4d402012-08-08 23:35:39 +02004296 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4297 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004298
Daniel Vetter20e4d402012-08-08 23:35:39 +02004299 dev_priv->ips.max_delay = fstart;
4300 dev_priv->ips.min_delay = fmin;
4301 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004302
4303 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4304 fmax, fmin, fstart);
4305
4306 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4307
4308 /*
4309 * Interrupts will be enabled in ironlake_irq_postinstall
4310 */
4311
4312 I915_WRITE(VIDSTART, vstart);
4313 POSTING_READ(VIDSTART);
4314
4315 rgvmodectl |= MEMMODE_SWMODE_EN;
4316 I915_WRITE(MEMMODECTL, rgvmodectl);
4317
Daniel Vetter92703882012-08-09 16:46:01 +02004318 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004319 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004320 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004321
4322 ironlake_set_drps(dev, fstart);
4323
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004324 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4325 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004326 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004327 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004328 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004329
4330 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004331}
4332
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004333static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004334{
4335 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02004336 u16 rgvswctl;
4337
4338 spin_lock_irq(&mchdev_lock);
4339
4340 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004341
4342 /* Ack interrupts, disable EFC interrupt */
4343 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4344 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4345 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4346 I915_WRITE(DEIIR, DE_PCU_EVENT);
4347 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4348
4349 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004350 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004351 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004352 rgvswctl |= MEMCTL_CMD_STS;
4353 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004354 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004355
Daniel Vetter92703882012-08-09 16:46:01 +02004356 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004357}
4358
Daniel Vetteracbe9472012-07-26 11:50:05 +02004359/* There's a funny hw issue where the hw returns all 0 when reading from
4360 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4361 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4362 * all limits and the gpu stuck at whatever frequency it is at atm).
4363 */
Akash Goel74ef1172015-03-06 11:07:19 +05304364static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004365{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004366 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004367
Daniel Vetter20b46e52012-07-26 11:16:14 +02004368 /* Only set the down limit when we've reached the lowest level to avoid
4369 * getting more interrupts, otherwise leave this clear. This prevents a
4370 * race in the hw when coming out of rc6: There's a tiny window where
4371 * the hw runs at the minimal clock before selecting the desired
4372 * frequency, if the down threshold expires in that window we will not
4373 * receive a down interrupt. */
Akash Goel74ef1172015-03-06 11:07:19 +05304374 if (IS_GEN9(dev_priv->dev)) {
4375 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4376 if (val <= dev_priv->rps.min_freq_softlimit)
4377 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4378 } else {
4379 limits = dev_priv->rps.max_freq_softlimit << 24;
4380 if (val <= dev_priv->rps.min_freq_softlimit)
4381 limits |= dev_priv->rps.min_freq_softlimit << 16;
4382 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004383
4384 return limits;
4385}
4386
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004387static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4388{
4389 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304390 u32 threshold_up = 0, threshold_down = 0; /* in % */
4391 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004392
4393 new_power = dev_priv->rps.power;
4394 switch (dev_priv->rps.power) {
4395 case LOW_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004396 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004397 new_power = BETWEEN;
4398 break;
4399
4400 case BETWEEN:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004401 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004402 new_power = LOW_POWER;
Ben Widawskyb39fb292014-03-19 18:31:11 -07004403 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004404 new_power = HIGH_POWER;
4405 break;
4406
4407 case HIGH_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004408 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 +01004409 new_power = BETWEEN;
4410 break;
4411 }
4412 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004413 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004414 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004415 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004416 new_power = HIGH_POWER;
4417 if (new_power == dev_priv->rps.power)
4418 return;
4419
4420 /* Note the units here are not exactly 1us, but 1280ns. */
4421 switch (new_power) {
4422 case LOW_POWER:
4423 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304424 ei_up = 16000;
4425 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004426
4427 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304428 ei_down = 32000;
4429 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004430 break;
4431
4432 case BETWEEN:
4433 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304434 ei_up = 13000;
4435 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004436
4437 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304438 ei_down = 32000;
4439 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004440 break;
4441
4442 case HIGH_POWER:
4443 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304444 ei_up = 10000;
4445 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004446
4447 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304448 ei_down = 32000;
4449 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004450 break;
4451 }
4452
Akash Goel8a586432015-03-06 11:07:18 +05304453 I915_WRITE(GEN6_RP_UP_EI,
4454 GT_INTERVAL_FROM_US(dev_priv, ei_up));
4455 I915_WRITE(GEN6_RP_UP_THRESHOLD,
4456 GT_INTERVAL_FROM_US(dev_priv, (ei_up * threshold_up / 100)));
4457
4458 I915_WRITE(GEN6_RP_DOWN_EI,
4459 GT_INTERVAL_FROM_US(dev_priv, ei_down));
4460 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
4461 GT_INTERVAL_FROM_US(dev_priv, (ei_down * threshold_down / 100)));
4462
4463 I915_WRITE(GEN6_RP_CONTROL,
4464 GEN6_RP_MEDIA_TURBO |
4465 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4466 GEN6_RP_MEDIA_IS_GFX |
4467 GEN6_RP_ENABLE |
4468 GEN6_RP_UP_BUSY_AVG |
4469 GEN6_RP_DOWN_IDLE_AVG);
4470
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004471 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004472 dev_priv->rps.up_threshold = threshold_up;
4473 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004474 dev_priv->rps.last_adj = 0;
4475}
4476
Chris Wilson2876ce72014-03-28 08:03:34 +00004477static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4478{
4479 u32 mask = 0;
4480
4481 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004482 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004483 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004484 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004485
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004486 mask &= dev_priv->pm_rps_events;
4487
Imre Deak59d02a12014-12-19 19:33:26 +02004488 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004489}
4490
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004491/* gen6_set_rps is called to update the frequency request, but should also be
4492 * called when the range (min_delay and max_delay) is modified so that we can
4493 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004494static void gen6_set_rps(struct drm_device *dev, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004495{
4496 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004497
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304498 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
4499 if (IS_BROXTON(dev) && (INTEL_REVID(dev) < BXT_REVID_B0))
4500 return;
4501
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004502 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004503 WARN_ON(val > dev_priv->rps.max_freq);
4504 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004505
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004506 /* min/max delay may still have been modified so be sure to
4507 * write the limits value.
4508 */
4509 if (val != dev_priv->rps.cur_freq) {
4510 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004511
Akash Goel57041952015-03-06 11:07:17 +05304512 if (IS_GEN9(dev))
4513 I915_WRITE(GEN6_RPNSWREQ,
4514 GEN9_FREQUENCY(val));
4515 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004516 I915_WRITE(GEN6_RPNSWREQ,
4517 HSW_FREQUENCY(val));
4518 else
4519 I915_WRITE(GEN6_RPNSWREQ,
4520 GEN6_FREQUENCY(val) |
4521 GEN6_OFFSET(0) |
4522 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004523 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004524
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004525 /* Make sure we continue to get interrupts
4526 * until we hit the minimum or maximum frequencies.
4527 */
Akash Goel74ef1172015-03-06 11:07:19 +05304528 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004529 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004530
Ben Widawskyd5570a72012-09-07 19:43:41 -07004531 POSTING_READ(GEN6_RPNSWREQ);
4532
Ben Widawskyb39fb292014-03-19 18:31:11 -07004533 dev_priv->rps.cur_freq = val;
Daniel Vetterbe2cde9a2012-08-30 13:26:48 +02004534 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004535}
4536
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004537static void valleyview_set_rps(struct drm_device *dev, u8 val)
4538{
4539 struct drm_i915_private *dev_priv = dev->dev_private;
4540
4541 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004542 WARN_ON(val > dev_priv->rps.max_freq);
4543 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004544
4545 if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1),
4546 "Odd GPU freq value\n"))
4547 val &= ~1;
4548
Deepak Scd25dd52015-07-10 18:31:40 +05304549 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4550
Chris Wilson8fb55192015-04-07 16:20:28 +01004551 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004552 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004553 if (!IS_CHERRYVIEW(dev_priv))
4554 gen6_set_rps_thresholds(dev_priv, val);
4555 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004556
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004557 dev_priv->rps.cur_freq = val;
4558 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4559}
4560
Deepak Sa7f6e232015-05-09 18:04:44 +05304561/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304562 *
4563 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304564 * 1. Forcewake Media well.
4565 * 2. Request idle freq.
4566 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304567*/
4568static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4569{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004570 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304571
Chris Wilsonaed242f2015-03-18 09:48:21 +00004572 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304573 return;
4574
Deepak Sa7f6e232015-05-09 18:04:44 +05304575 /* Wake up the media well, as that takes a lot less
4576 * power than the Render well. */
4577 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
4578 valleyview_set_rps(dev_priv->dev, val);
4579 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05304580}
4581
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004582void gen6_rps_busy(struct drm_i915_private *dev_priv)
4583{
4584 mutex_lock(&dev_priv->rps.hw_lock);
4585 if (dev_priv->rps.enabled) {
4586 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4587 gen6_rps_reset_ei(dev_priv);
4588 I915_WRITE(GEN6_PMINTRMSK,
4589 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
4590 }
4591 mutex_unlock(&dev_priv->rps.hw_lock);
4592}
4593
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004594void gen6_rps_idle(struct drm_i915_private *dev_priv)
4595{
Damien Lespiau691bb712013-12-12 14:36:36 +00004596 struct drm_device *dev = dev_priv->dev;
4597
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004598 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004599 if (dev_priv->rps.enabled) {
Ville Syrjälä21a11ff2015-01-27 16:36:15 +02004600 if (IS_VALLEYVIEW(dev))
Deepak S76c3552f2014-01-30 23:08:16 +05304601 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004602 else
Chris Wilsonaed242f2015-03-18 09:48:21 +00004603 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004604 dev_priv->rps.last_adj = 0;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004605 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004606 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004607 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004608
Chris Wilson8d3afd72015-05-21 21:01:47 +01004609 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004610 while (!list_empty(&dev_priv->rps.clients))
4611 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004612 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004613}
4614
Chris Wilson1854d5c2015-04-07 16:20:32 +01004615void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01004616 struct intel_rps_client *rps,
4617 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004618{
Chris Wilson8d3afd72015-05-21 21:01:47 +01004619 /* This is intentionally racy! We peek at the state here, then
4620 * validate inside the RPS worker.
4621 */
4622 if (!(dev_priv->mm.busy &&
4623 dev_priv->rps.enabled &&
4624 dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit))
4625 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004626
Chris Wilsone61b9952015-04-27 13:41:24 +01004627 /* Force a RPS boost (and don't count it against the client) if
4628 * the GPU is severely congested.
4629 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004630 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01004631 rps = NULL;
4632
Chris Wilson8d3afd72015-05-21 21:01:47 +01004633 spin_lock(&dev_priv->rps.client_lock);
4634 if (rps == NULL || list_empty(&rps->link)) {
4635 spin_lock_irq(&dev_priv->irq_lock);
4636 if (dev_priv->rps.interrupts_enabled) {
4637 dev_priv->rps.client_boost = true;
4638 queue_work(dev_priv->wq, &dev_priv->rps.work);
4639 }
4640 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004641
Chris Wilson2e1b8732015-04-27 13:41:22 +01004642 if (rps != NULL) {
4643 list_add(&rps->link, &dev_priv->rps.clients);
4644 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01004645 } else
4646 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01004647 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004648 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004649}
4650
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004651void intel_set_rps(struct drm_device *dev, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004652{
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004653 if (IS_VALLEYVIEW(dev))
4654 valleyview_set_rps(dev, val);
4655 else
4656 gen6_set_rps(dev, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004657}
4658
Zhe Wang20e49362014-11-04 17:07:05 +00004659static void gen9_disable_rps(struct drm_device *dev)
4660{
4661 struct drm_i915_private *dev_priv = dev->dev_private;
4662
4663 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004664 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004665}
4666
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004667static void gen6_disable_rps(struct drm_device *dev)
4668{
4669 struct drm_i915_private *dev_priv = dev->dev_private;
4670
4671 I915_WRITE(GEN6_RC_CONTROL, 0);
4672 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004673}
4674
Deepak S38807742014-05-23 21:00:15 +05304675static void cherryview_disable_rps(struct drm_device *dev)
4676{
4677 struct drm_i915_private *dev_priv = dev->dev_private;
4678
4679 I915_WRITE(GEN6_RC_CONTROL, 0);
4680}
4681
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004682static void valleyview_disable_rps(struct drm_device *dev)
4683{
4684 struct drm_i915_private *dev_priv = dev->dev_private;
4685
Deepak S98a2e5f2014-08-18 10:35:27 -07004686 /* we're doing forcewake before Disabling RC6,
4687 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02004688 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07004689
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004690 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004691
Mika Kuoppala59bad942015-01-16 11:34:40 +02004692 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004693}
4694
Ben Widawskydc39fff2013-10-18 12:32:07 -07004695static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
4696{
Imre Deak91ca6892014-04-14 20:24:25 +03004697 if (IS_VALLEYVIEW(dev)) {
4698 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
4699 mode = GEN6_RC_CTL_RC6_ENABLE;
4700 else
4701 mode = 0;
4702 }
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004703 if (HAS_RC6p(dev))
4704 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
4705 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
4706 (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
4707 (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
4708
4709 else
4710 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
4711 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off");
Ben Widawskydc39fff2013-10-18 12:32:07 -07004712}
4713
Imre Deake6069ca2014-04-18 16:01:02 +03004714static int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004715{
Daniel Vettere7d66d82015-06-15 23:23:54 +02004716 /* No RC6 before Ironlake and code is gone for ilk. */
4717 if (INTEL_INFO(dev)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03004718 return 0;
4719
Daniel Vetter456470e2012-08-08 23:35:40 +02004720 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03004721 if (enable_rc6 >= 0) {
4722 int mask;
4723
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004724 if (HAS_RC6p(dev))
Imre Deake6069ca2014-04-18 16:01:02 +03004725 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
4726 INTEL_RC6pp_ENABLE;
4727 else
4728 mask = INTEL_RC6_ENABLE;
4729
4730 if ((enable_rc6 & mask) != enable_rc6)
Daniel Vetter8dfd1f02014-08-04 11:15:56 +02004731 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
4732 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03004733
4734 return enable_rc6 & mask;
4735 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004736
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004737 if (IS_IVYBRIDGE(dev))
Ben Widawskycca84a12014-01-28 20:25:38 -08004738 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004739
4740 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004741}
4742
Imre Deake6069ca2014-04-18 16:01:02 +03004743int intel_enable_rc6(const struct drm_device *dev)
4744{
4745 return i915.enable_rc6;
4746}
4747
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004748static void gen6_init_rps_frequencies(struct drm_device *dev)
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004749{
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004750 struct drm_i915_private *dev_priv = dev->dev_private;
4751 uint32_t rp_state_cap;
4752 u32 ddcc_status = 0;
4753 int ret;
4754
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004755 /* All of these values are in units of 50MHz */
4756 dev_priv->rps.cur_freq = 0;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004757 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Bob Paauwe35040562015-06-25 14:54:07 -07004758 if (IS_BROXTON(dev)) {
4759 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
4760 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
4761 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4762 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
4763 } else {
4764 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
4765 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
4766 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4767 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
4768 }
4769
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004770 /* hw_max = RP0 until we check for overclocking */
4771 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
4772
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004773 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Akash Goelc5e06882015-06-29 14:50:19 +05304774 if (IS_HASWELL(dev) || IS_BROADWELL(dev) || IS_SKYLAKE(dev)) {
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004775 ret = sandybridge_pcode_read(dev_priv,
4776 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
4777 &ddcc_status);
4778 if (0 == ret)
4779 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08004780 clamp_t(u8,
4781 ((ddcc_status >> 8) & 0xff),
4782 dev_priv->rps.min_freq,
4783 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004784 }
4785
Akash Goelc5e06882015-06-29 14:50:19 +05304786 if (IS_SKYLAKE(dev)) {
4787 /* Store the frequency values in 16.66 MHZ units, which is
4788 the natural hardware unit for SKL */
4789 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
4790 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
4791 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
4792 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
4793 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
4794 }
4795
Chris Wilsonaed242f2015-03-18 09:48:21 +00004796 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4797
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004798 /* Preserve min/max settings in case of re-init */
4799 if (dev_priv->rps.max_freq_softlimit == 0)
4800 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4801
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004802 if (dev_priv->rps.min_freq_softlimit == 0) {
4803 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4804 dev_priv->rps.min_freq_softlimit =
Ville Syrjälä813b5e62015-03-25 19:27:16 +02004805 max_t(int, dev_priv->rps.efficient_freq,
4806 intel_freq_opcode(dev_priv, 450));
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004807 else
4808 dev_priv->rps.min_freq_softlimit =
4809 dev_priv->rps.min_freq;
4810 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004811}
4812
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004813/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Zhe Wang20e49362014-11-04 17:07:05 +00004814static void gen9_enable_rps(struct drm_device *dev)
4815{
4816 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004817
4818 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4819
Damien Lespiauba1c5542015-01-16 18:07:26 +00004820 gen6_init_rps_frequencies(dev);
4821
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304822 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
4823 if (IS_BROXTON(dev) && (INTEL_REVID(dev) < BXT_REVID_B0)) {
4824 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4825 return;
4826 }
4827
Akash Goel0beb0592015-03-06 11:07:20 +05304828 /* Program defaults and thresholds for RPS*/
4829 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4830 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004831
Akash Goel0beb0592015-03-06 11:07:20 +05304832 /* 1 second timeout*/
4833 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
4834 GT_INTERVAL_FROM_US(dev_priv, 1000000));
4835
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004836 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004837
Akash Goel0beb0592015-03-06 11:07:20 +05304838 /* Leaning on the below call to gen6_set_rps to program/setup the
4839 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
4840 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
4841 dev_priv->rps.power = HIGH_POWER; /* force a reset */
4842 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004843
4844 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4845}
4846
4847static void gen9_enable_rc6(struct drm_device *dev)
4848{
4849 struct drm_i915_private *dev_priv = dev->dev_private;
Zhe Wang20e49362014-11-04 17:07:05 +00004850 struct intel_engine_cs *ring;
4851 uint32_t rc6_mask = 0;
4852 int unused;
4853
4854 /* 1a: Software RC state - RC0 */
4855 I915_WRITE(GEN6_RC_STATE, 0);
4856
4857 /* 1b: Get forcewake during program sequence. Although the driver
4858 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004859 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004860
4861 /* 2a: Disable RC states. */
4862 I915_WRITE(GEN6_RC_CONTROL, 0);
4863
4864 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05304865
4866 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
4867 if (IS_SKYLAKE(dev) && !((IS_SKL_GT3(dev) || IS_SKL_GT4(dev)) &&
4868 (INTEL_REVID(dev) <= SKL_REVID_E0)))
4869 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
4870 else
4871 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00004872 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4873 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4874 for_each_ring(ring, dev_priv, unused)
4875 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05304876
4877 if (HAS_GUC_UCODE(dev))
4878 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
4879
Zhe Wang20e49362014-11-04 17:07:05 +00004880 I915_WRITE(GEN6_RC_SLEEP, 0);
4881 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
4882
Zhe Wang38c23522015-01-20 12:23:04 +00004883 /* 2c: Program Coarse Power Gating Policies. */
4884 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
4885 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
4886
Zhe Wang20e49362014-11-04 17:07:05 +00004887 /* 3a: Enable RC6 */
4888 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4889 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
4890 DRM_INFO("RC6 %s\n", (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4891 "on" : "off");
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05304892
4893 if ((IS_SKYLAKE(dev) && INTEL_REVID(dev) <= SKL_REVID_D0) ||
4894 (IS_BROXTON(dev) && INTEL_REVID(dev) <= BXT_REVID_A0))
4895 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4896 GEN7_RC_CTL_TO_MODE |
4897 rc6_mask);
4898 else
4899 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4900 GEN6_RC_CTL_EI_MODE(1) |
4901 rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00004902
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304903 /*
4904 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05304905 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304906 */
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05304907 if ((IS_BROXTON(dev) && (INTEL_REVID(dev) < BXT_REVID_B0)) ||
4908 ((IS_SKL_GT3(dev) || IS_SKL_GT4(dev)) && (INTEL_REVID(dev) <= SKL_REVID_E0)))
4909 I915_WRITE(GEN9_PG_ENABLE, 0);
4910 else
4911 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4912 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004913
Mika Kuoppala59bad942015-01-16 11:34:40 +02004914 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004915
4916}
4917
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004918static void gen8_enable_rps(struct drm_device *dev)
4919{
4920 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004921 struct intel_engine_cs *ring;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004922 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004923 int unused;
4924
4925 /* 1a: Software RC state - RC0 */
4926 I915_WRITE(GEN6_RC_STATE, 0);
4927
4928 /* 1c & 1d: Get forcewake during program sequence. Although the driver
4929 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004930 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004931
4932 /* 2a: Disable RC states. */
4933 I915_WRITE(GEN6_RC_CONTROL, 0);
4934
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004935 /* Initialize rps frequencies */
4936 gen6_init_rps_frequencies(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004937
4938 /* 2b: Program RC6 thresholds.*/
4939 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
4940 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4941 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4942 for_each_ring(ring, dev_priv, unused)
4943 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4944 I915_WRITE(GEN6_RC_SLEEP, 0);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004945 if (IS_BROADWELL(dev))
4946 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
4947 else
4948 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004949
4950 /* 3: Enable RC6 */
4951 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4952 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Ben Widawskyabbf9d22014-01-28 20:25:41 -08004953 intel_print_rc6_info(dev, rc6_mask);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004954 if (IS_BROADWELL(dev))
4955 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4956 GEN7_RC_CTL_TO_MODE |
4957 rc6_mask);
4958 else
4959 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4960 GEN6_RC_CTL_EI_MODE(1) |
4961 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004962
4963 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07004964 I915_WRITE(GEN6_RPNSWREQ,
4965 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
4966 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4967 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02004968 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
4969 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004970
Daniel Vetter7526ed72014-09-29 15:07:19 +02004971 /* Docs recommend 900MHz, and 300 MHz respectively */
4972 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
4973 dev_priv->rps.max_freq_softlimit << 24 |
4974 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004975
Daniel Vetter7526ed72014-09-29 15:07:19 +02004976 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
4977 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
4978 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
4979 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004980
Daniel Vetter7526ed72014-09-29 15:07:19 +02004981 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004982
4983 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02004984 I915_WRITE(GEN6_RP_CONTROL,
4985 GEN6_RP_MEDIA_TURBO |
4986 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4987 GEN6_RP_MEDIA_IS_GFX |
4988 GEN6_RP_ENABLE |
4989 GEN6_RP_UP_BUSY_AVG |
4990 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004991
Daniel Vetter7526ed72014-09-29 15:07:19 +02004992 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004993
Tom O'Rourkec7f31532014-11-19 14:21:54 -08004994 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004995 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004996
Mika Kuoppala59bad942015-01-16 11:34:40 +02004997 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004998}
4999
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005000static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005001{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005002 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005003 struct intel_engine_cs *ring;
Ben Widawskyd060c162014-03-19 18:31:08 -07005004 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005005 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005006 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07005007 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005008
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005009 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005010
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005011 /* Here begins a magic sequence of register writes to enable
5012 * auto-downclocking.
5013 *
5014 * Perhaps there might be some value in exposing these to
5015 * userspace...
5016 */
5017 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005018
5019 /* Clear the DBG now so we don't confuse earlier errors */
5020 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
5021 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
5022 I915_WRITE(GTFIFODBG, gtfifodbg);
5023 }
5024
Mika Kuoppala59bad942015-01-16 11:34:40 +02005025 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005026
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005027 /* Initialize rps frequencies */
5028 gen6_init_rps_frequencies(dev);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06005029
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005030 /* disable the counters and set deterministic thresholds */
5031 I915_WRITE(GEN6_RC_CONTROL, 0);
5032
5033 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5034 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5035 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5036 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5037 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5038
Chris Wilsonb4519512012-05-11 14:29:30 +01005039 for_each_ring(ring, dev_priv, i)
5040 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005041
5042 I915_WRITE(GEN6_RC_SLEEP, 0);
5043 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Daniel Vetter29c78f62013-11-16 16:04:26 +01005044 if (IS_IVYBRIDGE(dev))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005045 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5046 else
5047 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005048 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005049 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5050
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005051 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005052 rc6_mode = intel_enable_rc6(dev_priv->dev);
5053 if (rc6_mode & INTEL_RC6_ENABLE)
5054 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5055
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005056 /* We don't use those on Haswell */
5057 if (!IS_HASWELL(dev)) {
5058 if (rc6_mode & INTEL_RC6p_ENABLE)
5059 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005060
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005061 if (rc6_mode & INTEL_RC6pp_ENABLE)
5062 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5063 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005064
Ben Widawskydc39fff2013-10-18 12:32:07 -07005065 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005066
5067 I915_WRITE(GEN6_RC_CONTROL,
5068 rc6_mask |
5069 GEN6_RC_CTL_EI_MODE(1) |
5070 GEN6_RC_CTL_HW_ENABLE);
5071
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005072 /* Power down if completely idle for over 50ms */
5073 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005074 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005075
Ben Widawsky42c05262012-09-26 10:34:00 -07005076 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawskyd060c162014-03-19 18:31:08 -07005077 if (ret)
Ben Widawsky42c05262012-09-26 10:34:00 -07005078 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Ben Widawskyd060c162014-03-19 18:31:08 -07005079
5080 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
5081 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
5082 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskyb39fb292014-03-19 18:31:11 -07005083 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
Ben Widawskyd060c162014-03-19 18:31:08 -07005084 (pcu_mbox & 0xff) * 50);
Ben Widawskyb39fb292014-03-19 18:31:11 -07005085 dev_priv->rps.max_freq = pcu_mbox & 0xff;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005086 }
5087
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005088 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00005089 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005090
Ben Widawsky31643d52012-09-26 10:34:01 -07005091 rc6vids = 0;
5092 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
5093 if (IS_GEN6(dev) && ret) {
5094 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
5095 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
5096 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5097 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5098 rc6vids &= 0xffff00;
5099 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5100 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5101 if (ret)
5102 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5103 }
5104
Mika Kuoppala59bad942015-01-16 11:34:40 +02005105 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005106}
5107
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005108static void __gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005109{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005110 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005111 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005112 unsigned int gpu_freq;
5113 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305114 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005115 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005116 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005117
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005118 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005119
Ben Widawskyeda79642013-10-07 17:15:48 -03005120 policy = cpufreq_cpu_get(0);
5121 if (policy) {
5122 max_ia_freq = policy->cpuinfo.max_freq;
5123 cpufreq_cpu_put(policy);
5124 } else {
5125 /*
5126 * Default to measured freq if none found, PCU will ensure we
5127 * don't go over
5128 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005129 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005130 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005131
5132 /* Convert from kHz to MHz */
5133 max_ia_freq /= 1000;
5134
Ben Widawsky153b4b952013-10-22 22:05:09 -07005135 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005136 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5137 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005138
Akash Goel4c8c7742015-06-29 14:50:20 +05305139 if (IS_SKYLAKE(dev)) {
5140 /* Convert GT frequency to 50 HZ units */
5141 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5142 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5143 } else {
5144 min_gpu_freq = dev_priv->rps.min_freq;
5145 max_gpu_freq = dev_priv->rps.max_freq;
5146 }
5147
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005148 /*
5149 * For each potential GPU frequency, load a ring frequency we'd like
5150 * to use for memory access. We do this by specifying the IA frequency
5151 * the PCU should use as a reference to determine the ring frequency.
5152 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305153 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5154 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005155 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005156
Akash Goel4c8c7742015-06-29 14:50:20 +05305157 if (IS_SKYLAKE(dev)) {
5158 /*
5159 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5160 * No floor required for ring frequency on SKL.
5161 */
5162 ring_freq = gpu_freq;
5163 } else if (INTEL_INFO(dev)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005164 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5165 ring_freq = max(min_ring_freq, gpu_freq);
5166 } else if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005167 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005168 ring_freq = max(min_ring_freq, ring_freq);
5169 /* leave ia_freq as the default, chosen by cpufreq */
5170 } else {
5171 /* On older processors, there is no separate ring
5172 * clock domain, so in order to boost the bandwidth
5173 * of the ring, we need to upclock the CPU (ia_freq).
5174 *
5175 * For GPU frequencies less than 750MHz,
5176 * just use the lowest ring freq.
5177 */
5178 if (gpu_freq < min_freq)
5179 ia_freq = 800;
5180 else
5181 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5182 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5183 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005184
Ben Widawsky42c05262012-09-26 10:34:00 -07005185 sandybridge_pcode_write(dev_priv,
5186 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005187 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5188 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5189 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005190 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005191}
5192
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005193void gen6_update_ring_freq(struct drm_device *dev)
5194{
5195 struct drm_i915_private *dev_priv = dev->dev_private;
5196
Akash Goel97d33082015-06-29 14:50:23 +05305197 if (!HAS_CORE_RING_FREQ(dev))
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005198 return;
5199
5200 mutex_lock(&dev_priv->rps.hw_lock);
5201 __gen6_update_ring_freq(dev);
5202 mutex_unlock(&dev_priv->rps.hw_lock);
5203}
5204
Ville Syrjälä03af2042014-06-28 02:03:53 +03005205static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305206{
Deepak S095acd52015-01-17 11:05:59 +05305207 struct drm_device *dev = dev_priv->dev;
Deepak S2b6b3a02014-05-27 15:59:30 +05305208 u32 val, rp0;
5209
Deepak S095acd52015-01-17 11:05:59 +05305210 if (dev->pdev->revision >= 0x20) {
5211 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305212
Deepak S095acd52015-01-17 11:05:59 +05305213 switch (INTEL_INFO(dev)->eu_total) {
5214 case 8:
5215 /* (2 * 4) config */
5216 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5217 break;
5218 case 12:
5219 /* (2 * 6) config */
5220 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5221 break;
5222 case 16:
5223 /* (2 * 8) config */
5224 default:
5225 /* Setting (2 * 8) Min RP0 for any other combination */
5226 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5227 break;
5228 }
5229 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5230 } else {
5231 /* For pre-production hardware */
5232 val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG);
5233 rp0 = (val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
5234 PUNIT_GPU_STATUS_MAX_FREQ_MASK;
5235 }
Deepak S2b6b3a02014-05-27 15:59:30 +05305236 return rp0;
5237}
5238
5239static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5240{
5241 u32 val, rpe;
5242
5243 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5244 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5245
5246 return rpe;
5247}
5248
Deepak S7707df42014-07-12 18:46:14 +05305249static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5250{
Deepak S095acd52015-01-17 11:05:59 +05305251 struct drm_device *dev = dev_priv->dev;
Deepak S7707df42014-07-12 18:46:14 +05305252 u32 val, rp1;
5253
Deepak S095acd52015-01-17 11:05:59 +05305254 if (dev->pdev->revision >= 0x20) {
5255 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5256 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5257 } else {
5258 /* For pre-production hardware */
5259 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5260 rp1 = ((val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
5261 PUNIT_GPU_STATUS_MAX_FREQ_MASK);
5262 }
Deepak S7707df42014-07-12 18:46:14 +05305263 return rp1;
5264}
5265
Deepak Sf8f2b002014-07-10 13:16:21 +05305266static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5267{
5268 u32 val, rp1;
5269
5270 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5271
5272 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5273
5274 return rp1;
5275}
5276
Ville Syrjälä03af2042014-06-28 02:03:53 +03005277static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005278{
5279 u32 val, rp0;
5280
Jani Nikula64936252013-05-22 15:36:20 +03005281 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005282
5283 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5284 /* Clamp to max */
5285 rp0 = min_t(u32, rp0, 0xea);
5286
5287 return rp0;
5288}
5289
5290static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5291{
5292 u32 val, rpe;
5293
Jani Nikula64936252013-05-22 15:36:20 +03005294 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005295 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005296 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005297 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5298
5299 return rpe;
5300}
5301
Ville Syrjälä03af2042014-06-28 02:03:53 +03005302static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005303{
Jani Nikula64936252013-05-22 15:36:20 +03005304 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005305}
5306
Imre Deakae484342014-03-31 15:10:44 +03005307/* Check that the pctx buffer wasn't move under us. */
5308static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5309{
5310 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5311
5312 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5313 dev_priv->vlv_pctx->stolen->start);
5314}
5315
Deepak S38807742014-05-23 21:00:15 +05305316
5317/* Check that the pcbr address is not empty. */
5318static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5319{
5320 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5321
5322 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5323}
5324
5325static void cherryview_setup_pctx(struct drm_device *dev)
5326{
5327 struct drm_i915_private *dev_priv = dev->dev_private;
5328 unsigned long pctx_paddr, paddr;
5329 struct i915_gtt *gtt = &dev_priv->gtt;
5330 u32 pcbr;
5331 int pctx_size = 32*1024;
5332
5333 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5334
5335 pcbr = I915_READ(VLV_PCBR);
5336 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005337 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305338 paddr = (dev_priv->mm.stolen_base +
5339 (gtt->stolen_size - pctx_size));
5340
5341 pctx_paddr = (paddr & (~4095));
5342 I915_WRITE(VLV_PCBR, pctx_paddr);
5343 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005344
5345 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305346}
5347
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005348static void valleyview_setup_pctx(struct drm_device *dev)
5349{
5350 struct drm_i915_private *dev_priv = dev->dev_private;
5351 struct drm_i915_gem_object *pctx;
5352 unsigned long pctx_paddr;
5353 u32 pcbr;
5354 int pctx_size = 24*1024;
5355
Imre Deak17b0c1f2014-02-11 21:39:06 +02005356 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5357
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005358 pcbr = I915_READ(VLV_PCBR);
5359 if (pcbr) {
5360 /* BIOS set it up already, grab the pre-alloc'd space */
5361 int pcbr_offset;
5362
5363 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
5364 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
5365 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005366 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005367 pctx_size);
5368 goto out;
5369 }
5370
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005371 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5372
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005373 /*
5374 * From the Gunit register HAS:
5375 * The Gfx driver is expected to program this register and ensure
5376 * proper allocation within Gfx stolen memory. For example, this
5377 * register should be programmed such than the PCBR range does not
5378 * overlap with other ranges, such as the frame buffer, protected
5379 * memory, or any other relevant ranges.
5380 */
5381 pctx = i915_gem_object_create_stolen(dev, pctx_size);
5382 if (!pctx) {
5383 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
5384 return;
5385 }
5386
5387 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5388 I915_WRITE(VLV_PCBR, pctx_paddr);
5389
5390out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005391 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005392 dev_priv->vlv_pctx = pctx;
5393}
5394
Imre Deakae484342014-03-31 15:10:44 +03005395static void valleyview_cleanup_pctx(struct drm_device *dev)
5396{
5397 struct drm_i915_private *dev_priv = dev->dev_private;
5398
5399 if (WARN_ON(!dev_priv->vlv_pctx))
5400 return;
5401
5402 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
5403 dev_priv->vlv_pctx = NULL;
5404}
5405
Imre Deak4e805192014-04-14 20:24:41 +03005406static void valleyview_init_gt_powersave(struct drm_device *dev)
5407{
5408 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005409 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005410
5411 valleyview_setup_pctx(dev);
5412
5413 mutex_lock(&dev_priv->rps.hw_lock);
5414
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005415 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5416 switch ((val >> 6) & 3) {
5417 case 0:
5418 case 1:
5419 dev_priv->mem_freq = 800;
5420 break;
5421 case 2:
5422 dev_priv->mem_freq = 1066;
5423 break;
5424 case 3:
5425 dev_priv->mem_freq = 1333;
5426 break;
5427 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005428 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005429
Imre Deak4e805192014-04-14 20:24:41 +03005430 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5431 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5432 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005433 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005434 dev_priv->rps.max_freq);
5435
5436 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5437 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005438 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005439 dev_priv->rps.efficient_freq);
5440
Deepak Sf8f2b002014-07-10 13:16:21 +05305441 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5442 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005443 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305444 dev_priv->rps.rp1_freq);
5445
Imre Deak4e805192014-04-14 20:24:41 +03005446 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5447 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005448 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005449 dev_priv->rps.min_freq);
5450
Chris Wilsonaed242f2015-03-18 09:48:21 +00005451 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5452
Imre Deak4e805192014-04-14 20:24:41 +03005453 /* Preserve min/max settings in case of re-init */
5454 if (dev_priv->rps.max_freq_softlimit == 0)
5455 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5456
5457 if (dev_priv->rps.min_freq_softlimit == 0)
5458 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5459
5460 mutex_unlock(&dev_priv->rps.hw_lock);
5461}
5462
Deepak S38807742014-05-23 21:00:15 +05305463static void cherryview_init_gt_powersave(struct drm_device *dev)
5464{
Deepak S2b6b3a02014-05-27 15:59:30 +05305465 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005466 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305467
Deepak S38807742014-05-23 21:00:15 +05305468 cherryview_setup_pctx(dev);
Deepak S2b6b3a02014-05-27 15:59:30 +05305469
5470 mutex_lock(&dev_priv->rps.hw_lock);
5471
Ville Syrjäläa5805162015-05-26 20:42:30 +03005472 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005473 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005474 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005475
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005476 switch ((val >> 2) & 0x7) {
5477 case 0:
5478 case 1:
5479 dev_priv->rps.cz_freq = 200;
5480 dev_priv->mem_freq = 1600;
5481 break;
5482 case 2:
5483 dev_priv->rps.cz_freq = 267;
5484 dev_priv->mem_freq = 1600;
5485 break;
5486 case 3:
5487 dev_priv->rps.cz_freq = 333;
5488 dev_priv->mem_freq = 2000;
5489 break;
5490 case 4:
5491 dev_priv->rps.cz_freq = 320;
5492 dev_priv->mem_freq = 1600;
5493 break;
5494 case 5:
5495 dev_priv->rps.cz_freq = 400;
5496 dev_priv->mem_freq = 1600;
5497 break;
5498 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005499 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005500
Deepak S2b6b3a02014-05-27 15:59:30 +05305501 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5502 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5503 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005504 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305505 dev_priv->rps.max_freq);
5506
5507 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5508 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005509 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305510 dev_priv->rps.efficient_freq);
5511
Deepak S7707df42014-07-12 18:46:14 +05305512 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5513 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005514 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305515 dev_priv->rps.rp1_freq);
5516
Deepak S5b7c91b2015-05-09 18:15:46 +05305517 /* PUnit validated range is only [RPe, RP0] */
5518 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305519 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005520 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305521 dev_priv->rps.min_freq);
5522
Ville Syrjälä1c147622014-08-18 14:42:43 +03005523 WARN_ONCE((dev_priv->rps.max_freq |
5524 dev_priv->rps.efficient_freq |
5525 dev_priv->rps.rp1_freq |
5526 dev_priv->rps.min_freq) & 1,
5527 "Odd GPU freq values\n");
5528
Chris Wilsonaed242f2015-03-18 09:48:21 +00005529 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5530
Deepak S2b6b3a02014-05-27 15:59:30 +05305531 /* Preserve min/max settings in case of re-init */
5532 if (dev_priv->rps.max_freq_softlimit == 0)
5533 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5534
5535 if (dev_priv->rps.min_freq_softlimit == 0)
5536 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5537
5538 mutex_unlock(&dev_priv->rps.hw_lock);
Deepak S38807742014-05-23 21:00:15 +05305539}
5540
Imre Deak4e805192014-04-14 20:24:41 +03005541static void valleyview_cleanup_gt_powersave(struct drm_device *dev)
5542{
5543 valleyview_cleanup_pctx(dev);
5544}
5545
Deepak S38807742014-05-23 21:00:15 +05305546static void cherryview_enable_rps(struct drm_device *dev)
5547{
5548 struct drm_i915_private *dev_priv = dev->dev_private;
5549 struct intel_engine_cs *ring;
Deepak S2b6b3a02014-05-27 15:59:30 +05305550 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305551 int i;
5552
5553 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5554
5555 gtfifodbg = I915_READ(GTFIFODBG);
5556 if (gtfifodbg) {
5557 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5558 gtfifodbg);
5559 I915_WRITE(GTFIFODBG, gtfifodbg);
5560 }
5561
5562 cherryview_check_pctx(dev_priv);
5563
5564 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5565 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005566 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305567
Ville Syrjälä160614a2015-01-19 13:50:47 +02005568 /* Disable RC states. */
5569 I915_WRITE(GEN6_RC_CONTROL, 0);
5570
Deepak S38807742014-05-23 21:00:15 +05305571 /* 2a: Program RC6 thresholds.*/
5572 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5573 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5574 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5575
5576 for_each_ring(ring, dev_priv, i)
5577 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5578 I915_WRITE(GEN6_RC_SLEEP, 0);
5579
Deepak Sf4f71c72015-03-28 15:23:35 +05305580 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
5581 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05305582
5583 /* allows RC6 residency counter to work */
5584 I915_WRITE(VLV_COUNTER_CONTROL,
5585 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5586 VLV_MEDIA_RC6_COUNT_EN |
5587 VLV_RENDER_RC6_COUNT_EN));
5588
5589 /* For now we assume BIOS is allocating and populating the PCBR */
5590 pcbr = I915_READ(VLV_PCBR);
5591
Deepak S38807742014-05-23 21:00:15 +05305592 /* 3: Enable RC6 */
5593 if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) &&
5594 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005595 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305596
5597 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5598
Deepak S2b6b3a02014-05-27 15:59:30 +05305599 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005600 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305601 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5602 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5603 I915_WRITE(GEN6_RP_UP_EI, 66000);
5604 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5605
5606 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5607
5608 /* 5: Enable RPS */
5609 I915_WRITE(GEN6_RP_CONTROL,
5610 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005611 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305612 GEN6_RP_ENABLE |
5613 GEN6_RP_UP_BUSY_AVG |
5614 GEN6_RP_DOWN_IDLE_AVG);
5615
Deepak S3ef62342015-04-29 08:36:24 +05305616 /* Setting Fixed Bias */
5617 val = VLV_OVERRIDE_EN |
5618 VLV_SOC_TDP_EN |
5619 CHV_BIAS_CPU_50_SOC_50;
5620 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5621
Deepak S2b6b3a02014-05-27 15:59:30 +05305622 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5623
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005624 /* RPS code assumes GPLL is used */
5625 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5626
Jani Nikula742f4912015-09-03 11:16:09 +03005627 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05305628 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5629
5630 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
5631 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005632 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305633 dev_priv->rps.cur_freq);
5634
5635 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005636 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305637 dev_priv->rps.efficient_freq);
5638
5639 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
5640
Mika Kuoppala59bad942015-01-16 11:34:40 +02005641 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305642}
5643
Jesse Barnes0a073b82013-04-17 15:54:58 -07005644static void valleyview_enable_rps(struct drm_device *dev)
5645{
5646 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005647 struct intel_engine_cs *ring;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07005648 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005649 int i;
5650
5651 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5652
Imre Deakae484342014-03-31 15:10:44 +03005653 valleyview_check_pctx(dev_priv);
5654
Jesse Barnes0a073b82013-04-17 15:54:58 -07005655 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07005656 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5657 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005658 I915_WRITE(GTFIFODBG, gtfifodbg);
5659 }
5660
Deepak Sc8d9a592013-11-23 14:55:42 +05305661 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005662 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005663
Ville Syrjälä160614a2015-01-19 13:50:47 +02005664 /* Disable RC states. */
5665 I915_WRITE(GEN6_RC_CONTROL, 0);
5666
Ville Syrjäläcad725f2015-01-19 13:50:48 +02005667 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005668 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5669 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5670 I915_WRITE(GEN6_RP_UP_EI, 66000);
5671 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5672
5673 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5674
5675 I915_WRITE(GEN6_RP_CONTROL,
5676 GEN6_RP_MEDIA_TURBO |
5677 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5678 GEN6_RP_MEDIA_IS_GFX |
5679 GEN6_RP_ENABLE |
5680 GEN6_RP_UP_BUSY_AVG |
5681 GEN6_RP_DOWN_IDLE_CONT);
5682
5683 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
5684 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5685 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5686
5687 for_each_ring(ring, dev_priv, i)
5688 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5689
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08005690 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005691
5692 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07005693 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04005694 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
5695 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07005696 VLV_MEDIA_RC6_COUNT_EN |
5697 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04005698
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005699 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08005700 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07005701
5702 intel_print_rc6_info(dev, rc6_mode);
5703
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005704 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005705
Deepak S3ef62342015-04-29 08:36:24 +05305706 /* Setting Fixed Bias */
5707 val = VLV_OVERRIDE_EN |
5708 VLV_SOC_TDP_EN |
5709 VLV_BIAS_CPU_125_SOC_875;
5710 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5711
Jani Nikula64936252013-05-22 15:36:20 +03005712 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005713
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005714 /* RPS code assumes GPLL is used */
5715 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5716
Jani Nikula742f4912015-09-03 11:16:09 +03005717 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07005718 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5719
Ben Widawskyb39fb292014-03-19 18:31:11 -07005720 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03005721 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005722 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005723 dev_priv->rps.cur_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005724
Ville Syrjälä73008b92013-06-25 19:21:01 +03005725 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005726 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005727 dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005728
Ben Widawskyb39fb292014-03-19 18:31:11 -07005729 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005730
Mika Kuoppala59bad942015-01-16 11:34:40 +02005731 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005732}
5733
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005734static unsigned long intel_pxfreq(u32 vidfreq)
5735{
5736 unsigned long freq;
5737 int div = (vidfreq & 0x3f0000) >> 16;
5738 int post = (vidfreq & 0x3000) >> 12;
5739 int pre = (vidfreq & 0x7);
5740
5741 if (!pre)
5742 return 0;
5743
5744 freq = ((div * 133333) / ((1<<post) * pre));
5745
5746 return freq;
5747}
5748
Daniel Vettereb48eb02012-04-26 23:28:12 +02005749static const struct cparams {
5750 u16 i;
5751 u16 t;
5752 u16 m;
5753 u16 c;
5754} cparams[] = {
5755 { 1, 1333, 301, 28664 },
5756 { 1, 1066, 294, 24460 },
5757 { 1, 800, 294, 25192 },
5758 { 0, 1333, 276, 27605 },
5759 { 0, 1066, 276, 27605 },
5760 { 0, 800, 231, 23784 },
5761};
5762
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005763static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005764{
5765 u64 total_count, diff, ret;
5766 u32 count1, count2, count3, m = 0, c = 0;
5767 unsigned long now = jiffies_to_msecs(jiffies), diff1;
5768 int i;
5769
Daniel Vetter02d71952012-08-09 16:44:54 +02005770 assert_spin_locked(&mchdev_lock);
5771
Daniel Vetter20e4d402012-08-08 23:35:39 +02005772 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005773
5774 /* Prevent division-by-zero if we are asking too fast.
5775 * Also, we don't get interesting results if we are polling
5776 * faster than once in 10ms, so just return the saved value
5777 * in such cases.
5778 */
5779 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02005780 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005781
5782 count1 = I915_READ(DMIEC);
5783 count2 = I915_READ(DDREC);
5784 count3 = I915_READ(CSIEC);
5785
5786 total_count = count1 + count2 + count3;
5787
5788 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02005789 if (total_count < dev_priv->ips.last_count1) {
5790 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005791 diff += total_count;
5792 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005793 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005794 }
5795
5796 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005797 if (cparams[i].i == dev_priv->ips.c_m &&
5798 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02005799 m = cparams[i].m;
5800 c = cparams[i].c;
5801 break;
5802 }
5803 }
5804
5805 diff = div_u64(diff, diff1);
5806 ret = ((m * diff) + c);
5807 ret = div_u64(ret, 10);
5808
Daniel Vetter20e4d402012-08-08 23:35:39 +02005809 dev_priv->ips.last_count1 = total_count;
5810 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005811
Daniel Vetter20e4d402012-08-08 23:35:39 +02005812 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005813
5814 return ret;
5815}
5816
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005817unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
5818{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005819 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005820 unsigned long val;
5821
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005822 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005823 return 0;
5824
5825 spin_lock_irq(&mchdev_lock);
5826
5827 val = __i915_chipset_val(dev_priv);
5828
5829 spin_unlock_irq(&mchdev_lock);
5830
5831 return val;
5832}
5833
Daniel Vettereb48eb02012-04-26 23:28:12 +02005834unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
5835{
5836 unsigned long m, x, b;
5837 u32 tsfs;
5838
5839 tsfs = I915_READ(TSFS);
5840
5841 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
5842 x = I915_READ8(TR1);
5843
5844 b = tsfs & TSFS_INTR_MASK;
5845
5846 return ((m * x) / 127) - b;
5847}
5848
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005849static int _pxvid_to_vd(u8 pxvid)
5850{
5851 if (pxvid == 0)
5852 return 0;
5853
5854 if (pxvid >= 8 && pxvid < 31)
5855 pxvid = 31;
5856
5857 return (pxvid + 2) * 125;
5858}
5859
5860static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005861{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005862 struct drm_device *dev = dev_priv->dev;
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005863 const int vd = _pxvid_to_vd(pxvid);
5864 const int vm = vd - 1125;
5865
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005866 if (INTEL_INFO(dev)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005867 return vm > 0 ? vm : 0;
5868
5869 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005870}
5871
Daniel Vetter02d71952012-08-09 16:44:54 +02005872static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005873{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005874 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005875 u32 count;
5876
Daniel Vetter02d71952012-08-09 16:44:54 +02005877 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005878
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005879 now = ktime_get_raw_ns();
5880 diffms = now - dev_priv->ips.last_time2;
5881 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005882
5883 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02005884 if (!diffms)
5885 return;
5886
5887 count = I915_READ(GFXEC);
5888
Daniel Vetter20e4d402012-08-08 23:35:39 +02005889 if (count < dev_priv->ips.last_count2) {
5890 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005891 diff += count;
5892 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005893 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005894 }
5895
Daniel Vetter20e4d402012-08-08 23:35:39 +02005896 dev_priv->ips.last_count2 = count;
5897 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005898
5899 /* More magic constants... */
5900 diff = diff * 1181;
5901 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005902 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005903}
5904
Daniel Vetter02d71952012-08-09 16:44:54 +02005905void i915_update_gfx_val(struct drm_i915_private *dev_priv)
5906{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005907 struct drm_device *dev = dev_priv->dev;
5908
5909 if (INTEL_INFO(dev)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02005910 return;
5911
Daniel Vetter92703882012-08-09 16:46:01 +02005912 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005913
5914 __i915_update_gfx_val(dev_priv);
5915
Daniel Vetter92703882012-08-09 16:46:01 +02005916 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005917}
5918
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005919static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005920{
5921 unsigned long t, corr, state1, corr2, state2;
5922 u32 pxvid, ext_v;
5923
Daniel Vetter02d71952012-08-09 16:44:54 +02005924 assert_spin_locked(&mchdev_lock);
5925
Ville Syrjälä616847e2015-09-18 20:03:19 +03005926 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02005927 pxvid = (pxvid >> 24) & 0x7f;
5928 ext_v = pvid_to_extvid(dev_priv, pxvid);
5929
5930 state1 = ext_v;
5931
5932 t = i915_mch_val(dev_priv);
5933
5934 /* Revel in the empirically derived constants */
5935
5936 /* Correction factor in 1/100000 units */
5937 if (t > 80)
5938 corr = ((t * 2349) + 135940);
5939 else if (t >= 50)
5940 corr = ((t * 964) + 29317);
5941 else /* < 50 */
5942 corr = ((t * 301) + 1004);
5943
5944 corr = corr * ((150142 * state1) / 10000 - 78642);
5945 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02005946 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005947
5948 state2 = (corr2 * state1) / 10000;
5949 state2 /= 100; /* convert to mW */
5950
Daniel Vetter02d71952012-08-09 16:44:54 +02005951 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005952
Daniel Vetter20e4d402012-08-08 23:35:39 +02005953 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005954}
5955
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005956unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
5957{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005958 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005959 unsigned long val;
5960
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005961 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005962 return 0;
5963
5964 spin_lock_irq(&mchdev_lock);
5965
5966 val = __i915_gfx_val(dev_priv);
5967
5968 spin_unlock_irq(&mchdev_lock);
5969
5970 return val;
5971}
5972
Daniel Vettereb48eb02012-04-26 23:28:12 +02005973/**
5974 * i915_read_mch_val - return value for IPS use
5975 *
5976 * Calculate and return a value for the IPS driver to use when deciding whether
5977 * we have thermal and power headroom to increase CPU or GPU power budget.
5978 */
5979unsigned long i915_read_mch_val(void)
5980{
5981 struct drm_i915_private *dev_priv;
5982 unsigned long chipset_val, graphics_val, ret = 0;
5983
Daniel Vetter92703882012-08-09 16:46:01 +02005984 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005985 if (!i915_mch_dev)
5986 goto out_unlock;
5987 dev_priv = i915_mch_dev;
5988
Chris Wilsonf531dcb22012-09-25 10:16:12 +01005989 chipset_val = __i915_chipset_val(dev_priv);
5990 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005991
5992 ret = chipset_val + graphics_val;
5993
5994out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005995 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005996
5997 return ret;
5998}
5999EXPORT_SYMBOL_GPL(i915_read_mch_val);
6000
6001/**
6002 * i915_gpu_raise - raise GPU frequency limit
6003 *
6004 * Raise the limit; IPS indicates we have thermal headroom.
6005 */
6006bool i915_gpu_raise(void)
6007{
6008 struct drm_i915_private *dev_priv;
6009 bool ret = true;
6010
Daniel Vetter92703882012-08-09 16:46:01 +02006011 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006012 if (!i915_mch_dev) {
6013 ret = false;
6014 goto out_unlock;
6015 }
6016 dev_priv = i915_mch_dev;
6017
Daniel Vetter20e4d402012-08-08 23:35:39 +02006018 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
6019 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006020
6021out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006022 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006023
6024 return ret;
6025}
6026EXPORT_SYMBOL_GPL(i915_gpu_raise);
6027
6028/**
6029 * i915_gpu_lower - lower GPU frequency limit
6030 *
6031 * IPS indicates we're close to a thermal limit, so throttle back the GPU
6032 * frequency maximum.
6033 */
6034bool i915_gpu_lower(void)
6035{
6036 struct drm_i915_private *dev_priv;
6037 bool ret = true;
6038
Daniel Vetter92703882012-08-09 16:46:01 +02006039 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006040 if (!i915_mch_dev) {
6041 ret = false;
6042 goto out_unlock;
6043 }
6044 dev_priv = i915_mch_dev;
6045
Daniel Vetter20e4d402012-08-08 23:35:39 +02006046 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
6047 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006048
6049out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006050 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006051
6052 return ret;
6053}
6054EXPORT_SYMBOL_GPL(i915_gpu_lower);
6055
6056/**
6057 * i915_gpu_busy - indicate GPU business to IPS
6058 *
6059 * Tell the IPS driver whether or not the GPU is busy.
6060 */
6061bool i915_gpu_busy(void)
6062{
6063 struct drm_i915_private *dev_priv;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01006064 struct intel_engine_cs *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006065 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01006066 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006067
Daniel Vetter92703882012-08-09 16:46:01 +02006068 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006069 if (!i915_mch_dev)
6070 goto out_unlock;
6071 dev_priv = i915_mch_dev;
6072
Chris Wilsonf047e392012-07-21 12:31:41 +01006073 for_each_ring(ring, dev_priv, i)
6074 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006075
6076out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006077 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006078
6079 return ret;
6080}
6081EXPORT_SYMBOL_GPL(i915_gpu_busy);
6082
6083/**
6084 * i915_gpu_turbo_disable - disable graphics turbo
6085 *
6086 * Disable graphics turbo by resetting the max frequency and setting the
6087 * current frequency to the default.
6088 */
6089bool i915_gpu_turbo_disable(void)
6090{
6091 struct drm_i915_private *dev_priv;
6092 bool ret = true;
6093
Daniel Vetter92703882012-08-09 16:46:01 +02006094 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006095 if (!i915_mch_dev) {
6096 ret = false;
6097 goto out_unlock;
6098 }
6099 dev_priv = i915_mch_dev;
6100
Daniel Vetter20e4d402012-08-08 23:35:39 +02006101 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006102
Daniel Vetter20e4d402012-08-08 23:35:39 +02006103 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006104 ret = false;
6105
6106out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006107 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006108
6109 return ret;
6110}
6111EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6112
6113/**
6114 * Tells the intel_ips driver that the i915 driver is now loaded, if
6115 * IPS got loaded first.
6116 *
6117 * This awkward dance is so that neither module has to depend on the
6118 * other in order for IPS to do the appropriate communication of
6119 * GPU turbo limits to i915.
6120 */
6121static void
6122ips_ping_for_i915_load(void)
6123{
6124 void (*link)(void);
6125
6126 link = symbol_get(ips_link_to_i915_driver);
6127 if (link) {
6128 link();
6129 symbol_put(ips_link_to_i915_driver);
6130 }
6131}
6132
6133void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6134{
Daniel Vetter02d71952012-08-09 16:44:54 +02006135 /* We only register the i915 ips part with intel-ips once everything is
6136 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006137 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006138 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006139 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006140
6141 ips_ping_for_i915_load();
6142}
6143
6144void intel_gpu_ips_teardown(void)
6145{
Daniel Vetter92703882012-08-09 16:46:01 +02006146 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006147 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006148 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006149}
Deepak S76c3552f2014-01-30 23:08:16 +05306150
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006151static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006152{
6153 struct drm_i915_private *dev_priv = dev->dev_private;
6154 u32 lcfuse;
6155 u8 pxw[16];
6156 int i;
6157
6158 /* Disable to program */
6159 I915_WRITE(ECR, 0);
6160 POSTING_READ(ECR);
6161
6162 /* Program energy weights for various events */
6163 I915_WRITE(SDEW, 0x15040d00);
6164 I915_WRITE(CSIEW0, 0x007f0000);
6165 I915_WRITE(CSIEW1, 0x1e220004);
6166 I915_WRITE(CSIEW2, 0x04000004);
6167
6168 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006169 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006170 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006171 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006172
6173 /* Program P-state weights to account for frequency power adjustment */
6174 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006175 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006176 unsigned long freq = intel_pxfreq(pxvidfreq);
6177 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6178 PXVFREQ_PX_SHIFT;
6179 unsigned long val;
6180
6181 val = vid * vid;
6182 val *= (freq / 1000);
6183 val *= 255;
6184 val /= (127*127*900);
6185 if (val > 0xff)
6186 DRM_ERROR("bad pxval: %ld\n", val);
6187 pxw[i] = val;
6188 }
6189 /* Render standby states get 0 weight */
6190 pxw[14] = 0;
6191 pxw[15] = 0;
6192
6193 for (i = 0; i < 4; i++) {
6194 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6195 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006196 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006197 }
6198
6199 /* Adjust magic regs to magic values (more experimental results) */
6200 I915_WRITE(OGW0, 0);
6201 I915_WRITE(OGW1, 0);
6202 I915_WRITE(EG0, 0x00007f00);
6203 I915_WRITE(EG1, 0x0000000e);
6204 I915_WRITE(EG2, 0x000e0000);
6205 I915_WRITE(EG3, 0x68000300);
6206 I915_WRITE(EG4, 0x42000000);
6207 I915_WRITE(EG5, 0x00140031);
6208 I915_WRITE(EG6, 0);
6209 I915_WRITE(EG7, 0);
6210
6211 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006212 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006213
6214 /* Enable PMON + select events */
6215 I915_WRITE(ECR, 0x80000019);
6216
6217 lcfuse = I915_READ(LCFUSE02);
6218
Daniel Vetter20e4d402012-08-08 23:35:39 +02006219 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006220}
6221
Imre Deakae484342014-03-31 15:10:44 +03006222void intel_init_gt_powersave(struct drm_device *dev)
6223{
Imre Deake6069ca2014-04-18 16:01:02 +03006224 i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6);
6225
Deepak S38807742014-05-23 21:00:15 +05306226 if (IS_CHERRYVIEW(dev))
6227 cherryview_init_gt_powersave(dev);
6228 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006229 valleyview_init_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006230}
6231
6232void intel_cleanup_gt_powersave(struct drm_device *dev)
6233{
Deepak S38807742014-05-23 21:00:15 +05306234 if (IS_CHERRYVIEW(dev))
6235 return;
6236 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006237 valleyview_cleanup_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006238}
6239
Imre Deakdbea3ce2014-12-15 18:59:28 +02006240static void gen6_suspend_rps(struct drm_device *dev)
6241{
6242 struct drm_i915_private *dev_priv = dev->dev_private;
6243
6244 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
6245
Akash Goel4c2a8892015-03-06 11:07:24 +05306246 gen6_disable_rps_interrupts(dev);
Imre Deakdbea3ce2014-12-15 18:59:28 +02006247}
6248
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006249/**
6250 * intel_suspend_gt_powersave - suspend PM work and helper threads
6251 * @dev: drm device
6252 *
6253 * We don't want to disable RC6 or other features here, we just want
6254 * to make sure any work we've queued has finished and won't bother
6255 * us while we're suspended.
6256 */
6257void intel_suspend_gt_powersave(struct drm_device *dev)
6258{
6259 struct drm_i915_private *dev_priv = dev->dev_private;
6260
Imre Deakd4d70aa2014-11-19 15:30:04 +02006261 if (INTEL_INFO(dev)->gen < 6)
6262 return;
6263
Imre Deakdbea3ce2014-12-15 18:59:28 +02006264 gen6_suspend_rps(dev);
Deepak Sb47adc12014-06-20 20:03:02 +05306265
6266 /* Force GPU to min freq during suspend */
6267 gen6_rps_idle(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006268}
6269
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006270void intel_disable_gt_powersave(struct drm_device *dev)
6271{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006272 struct drm_i915_private *dev_priv = dev->dev_private;
6273
Daniel Vetter930ebb42012-06-29 23:32:16 +02006274 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006275 ironlake_disable_drps(dev);
Deepak S38807742014-05-23 21:00:15 +05306276 } else if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter10d8d362014-06-12 17:48:52 +02006277 intel_suspend_gt_powersave(dev);
Imre Deake4948372014-05-12 18:35:04 +03006278
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006279 mutex_lock(&dev_priv->rps.hw_lock);
Zhe Wang20e49362014-11-04 17:07:05 +00006280 if (INTEL_INFO(dev)->gen >= 9)
6281 gen9_disable_rps(dev);
6282 else if (IS_CHERRYVIEW(dev))
Deepak S38807742014-05-23 21:00:15 +05306283 cherryview_disable_rps(dev);
6284 else if (IS_VALLEYVIEW(dev))
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006285 valleyview_disable_rps(dev);
6286 else
6287 gen6_disable_rps(dev);
Imre Deake5347702014-11-19 15:30:02 +02006288
Chris Wilsonc0951f02013-10-10 21:58:50 +01006289 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006290 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02006291 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006292}
6293
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006294static void intel_gen6_powersave_work(struct work_struct *work)
6295{
6296 struct drm_i915_private *dev_priv =
6297 container_of(work, struct drm_i915_private,
6298 rps.delayed_resume_work.work);
6299 struct drm_device *dev = dev_priv->dev;
6300
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006301 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006302
Akash Goel4c2a8892015-03-06 11:07:24 +05306303 gen6_reset_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006304
Deepak S38807742014-05-23 21:00:15 +05306305 if (IS_CHERRYVIEW(dev)) {
6306 cherryview_enable_rps(dev);
6307 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -07006308 valleyview_enable_rps(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006309 } else if (INTEL_INFO(dev)->gen >= 9) {
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006310 gen9_enable_rc6(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006311 gen9_enable_rps(dev);
Akash Goelcc017fb42015-06-29 14:50:21 +05306312 if (IS_SKYLAKE(dev))
6313 __gen6_update_ring_freq(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006314 } else if (IS_BROADWELL(dev)) {
6315 gen8_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006316 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006317 } else {
6318 gen6_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006319 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006320 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006321
6322 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6323 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6324
6325 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6326 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6327
Chris Wilsonc0951f02013-10-10 21:58:50 +01006328 dev_priv->rps.enabled = true;
Imre Deak3cc134e2014-11-19 15:30:03 +02006329
Akash Goel4c2a8892015-03-06 11:07:24 +05306330 gen6_enable_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006331
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006332 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deakc6df39b2014-04-14 20:24:29 +03006333
6334 intel_runtime_pm_put(dev_priv);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006335}
6336
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006337void intel_enable_gt_powersave(struct drm_device *dev)
6338{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006339 struct drm_i915_private *dev_priv = dev->dev_private;
6340
Yu Zhangf61018b2015-02-10 19:05:52 +08006341 /* Powersaving is controlled by the host when inside a VM */
6342 if (intel_vgpu_active(dev))
6343 return;
6344
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006345 if (IS_IRONLAKE_M(dev)) {
Imre Deakdc1d0132014-04-14 20:24:28 +03006346 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006347 ironlake_enable_drps(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006348 intel_init_emon(dev);
Imre Deakdc1d0132014-04-14 20:24:28 +03006349 mutex_unlock(&dev->struct_mutex);
Deepak S38807742014-05-23 21:00:15 +05306350 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006351 /*
6352 * PCU communication is slow and this doesn't need to be
6353 * done at any specific time, so do this out of our fast path
6354 * to make resume and init faster.
Imre Deakc6df39b2014-04-14 20:24:29 +03006355 *
6356 * We depend on the HW RC6 power context save/restore
6357 * mechanism when entering D3 through runtime PM suspend. So
6358 * disable RPM until RPS/RC6 is properly setup. We can only
6359 * get here via the driver load/system resume/runtime resume
6360 * paths, so the _noresume version is enough (and in case of
6361 * runtime resume it's necessary).
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006362 */
Imre Deakc6df39b2014-04-14 20:24:29 +03006363 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
6364 round_jiffies_up_relative(HZ)))
6365 intel_runtime_pm_get_noresume(dev_priv);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006366 }
6367}
6368
Imre Deakc6df39b2014-04-14 20:24:29 +03006369void intel_reset_gt_powersave(struct drm_device *dev)
6370{
6371 struct drm_i915_private *dev_priv = dev->dev_private;
6372
Imre Deakdbea3ce2014-12-15 18:59:28 +02006373 if (INTEL_INFO(dev)->gen < 6)
6374 return;
6375
6376 gen6_suspend_rps(dev);
Imre Deakc6df39b2014-04-14 20:24:29 +03006377 dev_priv->rps.enabled = false;
Imre Deakc6df39b2014-04-14 20:24:29 +03006378}
6379
Daniel Vetter3107bd42012-10-31 22:52:31 +01006380static void ibx_init_clock_gating(struct drm_device *dev)
6381{
6382 struct drm_i915_private *dev_priv = dev->dev_private;
6383
6384 /*
6385 * On Ibex Peak and Cougar Point, we need to disable clock
6386 * gating for the panel power sequencer or it will fail to
6387 * start up when no ports are active.
6388 */
6389 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6390}
6391
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006392static void g4x_disable_trickle_feed(struct drm_device *dev)
6393{
6394 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006395 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006396
Damien Lespiau055e3932014-08-18 13:49:10 +01006397 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006398 I915_WRITE(DSPCNTR(pipe),
6399 I915_READ(DSPCNTR(pipe)) |
6400 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006401
6402 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6403 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006404 }
6405}
6406
Ville Syrjälä017636c2013-12-05 15:51:37 +02006407static void ilk_init_lp_watermarks(struct drm_device *dev)
6408{
6409 struct drm_i915_private *dev_priv = dev->dev_private;
6410
6411 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6412 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6413 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6414
6415 /*
6416 * Don't touch WM1S_LP_EN here.
6417 * Doing so could cause underruns.
6418 */
6419}
6420
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006421static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006422{
6423 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006424 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006425
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006426 /*
6427 * Required for FBC
6428 * WaFbcDisableDpfcClockGating:ilk
6429 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006430 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6431 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6432 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006433
6434 I915_WRITE(PCH_3DCGDIS0,
6435 MARIUNIT_CLOCK_GATE_DISABLE |
6436 SVSMUNIT_CLOCK_GATE_DISABLE);
6437 I915_WRITE(PCH_3DCGDIS1,
6438 VFMUNIT_CLOCK_GATE_DISABLE);
6439
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006440 /*
6441 * According to the spec the following bits should be set in
6442 * order to enable memory self-refresh
6443 * The bit 22/21 of 0x42004
6444 * The bit 5 of 0x42020
6445 * The bit 15 of 0x45000
6446 */
6447 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6448 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6449 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006450 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006451 I915_WRITE(DISP_ARB_CTL,
6452 (I915_READ(DISP_ARB_CTL) |
6453 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006454
6455 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006456
6457 /*
6458 * Based on the document from hardware guys the following bits
6459 * should be set unconditionally in order to enable FBC.
6460 * The bit 22 of 0x42000
6461 * The bit 22 of 0x42004
6462 * The bit 7,8,9 of 0x42020.
6463 */
6464 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006465 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006466 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6467 I915_READ(ILK_DISPLAY_CHICKEN1) |
6468 ILK_FBCQ_DIS);
6469 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6470 I915_READ(ILK_DISPLAY_CHICKEN2) |
6471 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006472 }
6473
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006474 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6475
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006476 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6477 I915_READ(ILK_DISPLAY_CHICKEN2) |
6478 ILK_ELPIN_409_SELECT);
6479 I915_WRITE(_3D_CHICKEN2,
6480 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6481 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006482
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006483 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006484 I915_WRITE(CACHE_MODE_0,
6485 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006486
Akash Goel4e046322014-04-04 17:14:38 +05306487 /* WaDisable_RenderCache_OperationalFlush:ilk */
6488 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6489
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006490 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006491
Daniel Vetter3107bd42012-10-31 22:52:31 +01006492 ibx_init_clock_gating(dev);
6493}
6494
6495static void cpt_init_clock_gating(struct drm_device *dev)
6496{
6497 struct drm_i915_private *dev_priv = dev->dev_private;
6498 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006499 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006500
6501 /*
6502 * On Ibex Peak and Cougar Point, we need to disable clock
6503 * gating for the panel power sequencer or it will fail to
6504 * start up when no ports are active.
6505 */
Jesse Barnescd664072013-10-02 10:34:19 -07006506 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6507 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6508 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006509 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6510 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006511 /* The below fixes the weird display corruption, a few pixels shifted
6512 * downward, on (only) LVDS of some HP laptops with IVY.
6513 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006514 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006515 val = I915_READ(TRANS_CHICKEN2(pipe));
6516 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6517 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006518 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006519 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006520 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6521 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6522 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006523 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6524 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006525 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006526 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006527 I915_WRITE(TRANS_CHICKEN1(pipe),
6528 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6529 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006530}
6531
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006532static void gen6_check_mch_setup(struct drm_device *dev)
6533{
6534 struct drm_i915_private *dev_priv = dev->dev_private;
6535 uint32_t tmp;
6536
6537 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006538 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6539 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6540 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006541}
6542
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006543static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006544{
6545 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006546 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006547
Damien Lespiau231e54f2012-10-19 17:55:41 +01006548 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006549
6550 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6551 I915_READ(ILK_DISPLAY_CHICKEN2) |
6552 ILK_ELPIN_409_SELECT);
6553
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006554 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006555 I915_WRITE(_3D_CHICKEN,
6556 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6557
Akash Goel4e046322014-04-04 17:14:38 +05306558 /* WaDisable_RenderCache_OperationalFlush:snb */
6559 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6560
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006561 /*
6562 * BSpec recoomends 8x4 when MSAA is used,
6563 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006564 *
6565 * Note that PS/WM thread counts depend on the WIZ hashing
6566 * disable bit, which we don't touch here, but it's good
6567 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006568 */
6569 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006570 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006571
Ville Syrjälä017636c2013-12-05 15:51:37 +02006572 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006573
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006574 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006575 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006576
6577 I915_WRITE(GEN6_UCGCTL1,
6578 I915_READ(GEN6_UCGCTL1) |
6579 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6580 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6581
6582 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6583 * gating disable must be set. Failure to set it results in
6584 * flickering pixels due to Z write ordering failures after
6585 * some amount of runtime in the Mesa "fire" demo, and Unigine
6586 * Sanctuary and Tropics, and apparently anything else with
6587 * alpha test or pixel discard.
6588 *
6589 * According to the spec, bit 11 (RCCUNIT) must also be set,
6590 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006591 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006592 * WaDisableRCCUnitClockGating:snb
6593 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006594 */
6595 I915_WRITE(GEN6_UCGCTL2,
6596 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6597 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6598
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006599 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006600 I915_WRITE(_3D_CHICKEN3,
6601 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006602
6603 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006604 * Bspec says:
6605 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6606 * 3DSTATE_SF number of SF output attributes is more than 16."
6607 */
6608 I915_WRITE(_3D_CHICKEN3,
6609 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6610
6611 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006612 * According to the spec the following bits should be
6613 * set in order to enable memory self-refresh and fbc:
6614 * The bit21 and bit22 of 0x42000
6615 * The bit21 and bit22 of 0x42004
6616 * The bit5 and bit7 of 0x42020
6617 * The bit14 of 0x70180
6618 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006619 *
6620 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006621 */
6622 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6623 I915_READ(ILK_DISPLAY_CHICKEN1) |
6624 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6625 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6626 I915_READ(ILK_DISPLAY_CHICKEN2) |
6627 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006628 I915_WRITE(ILK_DSPCLK_GATE_D,
6629 I915_READ(ILK_DSPCLK_GATE_D) |
6630 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6631 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006632
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006633 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006634
Daniel Vetter3107bd42012-10-31 22:52:31 +01006635 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006636
6637 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006638}
6639
6640static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6641{
6642 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
6643
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006644 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006645 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006646 *
6647 * This actually overrides the dispatch
6648 * mode for all thread types.
6649 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006650 reg &= ~GEN7_FF_SCHED_MASK;
6651 reg |= GEN7_FF_TS_SCHED_HW;
6652 reg |= GEN7_FF_VS_SCHED_HW;
6653 reg |= GEN7_FF_DS_SCHED_HW;
6654
6655 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6656}
6657
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006658static void lpt_init_clock_gating(struct drm_device *dev)
6659{
6660 struct drm_i915_private *dev_priv = dev->dev_private;
6661
6662 /*
6663 * TODO: this bit should only be enabled when really needed, then
6664 * disabled when not needed anymore in order to save power.
6665 */
Ville Syrjäläc2699522015-08-27 23:55:59 +03006666 if (HAS_PCH_LPT_LP(dev))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006667 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6668 I915_READ(SOUTH_DSPCLK_GATE_D) |
6669 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006670
6671 /* WADPOClockGatingDisable:hsw */
6672 I915_WRITE(_TRANSA_CHICKEN1,
6673 I915_READ(_TRANSA_CHICKEN1) |
6674 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006675}
6676
Imre Deak7d708ee2013-04-17 14:04:50 +03006677static void lpt_suspend_hw(struct drm_device *dev)
6678{
6679 struct drm_i915_private *dev_priv = dev->dev_private;
6680
Ville Syrjäläc2699522015-08-27 23:55:59 +03006681 if (HAS_PCH_LPT_LP(dev)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03006682 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
6683
6684 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6685 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6686 }
6687}
6688
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006689static void broadwell_init_clock_gating(struct drm_device *dev)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006690{
6691 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00006692 enum pipe pipe;
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006693 uint32_t misccpctl;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006694
Ville Syrjälä7ad0dba2015-05-19 20:32:55 +03006695 ilk_init_lp_watermarks(dev);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006696
Ben Widawskyab57fff2013-12-12 15:28:04 -08006697 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006698 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006699
Ben Widawskyab57fff2013-12-12 15:28:04 -08006700 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006701 I915_WRITE(CHICKEN_PAR1_1,
6702 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6703
Ben Widawskyab57fff2013-12-12 15:28:04 -08006704 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006705 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006706 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006707 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006708 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006709 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006710
Ben Widawskyab57fff2013-12-12 15:28:04 -08006711 /* WaVSRefCountFullforceMissDisable:bdw */
6712 /* WaDSRefCountFullforceMissDisable:bdw */
6713 I915_WRITE(GEN7_FF_THREAD_MODE,
6714 I915_READ(GEN7_FF_THREAD_MODE) &
6715 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006716
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006717 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6718 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006719
6720 /* WaDisableSDEUnitClockGating:bdw */
6721 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6722 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006723
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006724 /*
6725 * WaProgramL3SqcReg1Default:bdw
6726 * WaTempDisableDOPClkGating:bdw
6727 */
6728 misccpctl = I915_READ(GEN7_MISCCPCTL);
6729 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6730 I915_WRITE(GEN8_L3SQCREG1, BDW_WA_L3SQCREG1_DEFAULT);
6731 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6732
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006733 /*
6734 * WaGttCachingOffByDefault:bdw
6735 * GTT cache may not work with big pages, so if those
6736 * are ever enabled GTT cache may need to be disabled.
6737 */
6738 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
6739
Paulo Zanoni89d6b2b2014-08-21 17:09:36 -03006740 lpt_init_clock_gating(dev);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006741}
6742
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006743static void haswell_init_clock_gating(struct drm_device *dev)
6744{
6745 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006746
Ville Syrjälä017636c2013-12-05 15:51:37 +02006747 ilk_init_lp_watermarks(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006748
Francisco Jerezf3fc4882013-10-02 15:53:16 -07006749 /* L3 caching of data atomics doesn't work -- disable it. */
6750 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6751 I915_WRITE(HSW_ROW_CHICKEN3,
6752 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6753
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006754 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006755 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6756 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6757 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6758
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02006759 /* WaVSRefCountFullforceMissDisable:hsw */
6760 I915_WRITE(GEN7_FF_THREAD_MODE,
6761 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006762
Akash Goel4e046322014-04-04 17:14:38 +05306763 /* WaDisable_RenderCache_OperationalFlush:hsw */
6764 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6765
Chia-I Wufe27c602014-01-28 13:29:33 +08006766 /* enable HiZ Raw Stall Optimization */
6767 I915_WRITE(CACHE_MODE_0_GEN7,
6768 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6769
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006770 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006771 I915_WRITE(CACHE_MODE_1,
6772 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006773
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006774 /*
6775 * BSpec recommends 8x4 when MSAA is used,
6776 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006777 *
6778 * Note that PS/WM thread counts depend on the WIZ hashing
6779 * disable bit, which we don't touch here, but it's good
6780 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006781 */
6782 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006783 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006784
Kenneth Graunke94411592014-12-31 16:23:00 -08006785 /* WaSampleCChickenBitEnable:hsw */
6786 I915_WRITE(HALF_SLICE_CHICKEN3,
6787 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
6788
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006789 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07006790 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
6791
Paulo Zanoni90a88642013-05-03 17:23:45 -03006792 /* WaRsPkgCStateDisplayPMReq:hsw */
6793 I915_WRITE(CHICKEN_PAR1_1,
6794 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006795
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006796 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006797}
6798
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006799static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006800{
6801 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07006802 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006803
Ville Syrjälä017636c2013-12-05 15:51:37 +02006804 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006805
Damien Lespiau231e54f2012-10-19 17:55:41 +01006806 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006807
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006808 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05006809 I915_WRITE(_3D_CHICKEN3,
6810 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6811
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006812 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006813 I915_WRITE(IVB_CHICKEN3,
6814 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6815 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6816
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006817 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07006818 if (IS_IVB_GT1(dev))
6819 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
6820 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006821
Akash Goel4e046322014-04-04 17:14:38 +05306822 /* WaDisable_RenderCache_OperationalFlush:ivb */
6823 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6824
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006825 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006826 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
6827 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
6828
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006829 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006830 I915_WRITE(GEN7_L3CNTLREG1,
6831 GEN7_WA_FOR_GEN7_L3_CONTROL);
6832 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07006833 GEN7_WA_L3_CHICKEN_MODE);
6834 if (IS_IVB_GT1(dev))
6835 I915_WRITE(GEN7_ROW_CHICKEN2,
6836 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006837 else {
6838 /* must write both registers */
6839 I915_WRITE(GEN7_ROW_CHICKEN2,
6840 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07006841 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
6842 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006843 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006844
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006845 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05006846 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6847 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6848
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02006849 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006850 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006851 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006852 */
6853 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02006854 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006855
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006856 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006857 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6858 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6859 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6860
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006861 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006862
6863 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02006864
Chris Wilson22721342014-03-04 09:41:43 +00006865 if (0) { /* causes HiZ corruption on ivb:gt1 */
6866 /* enable HiZ Raw Stall Optimization */
6867 I915_WRITE(CACHE_MODE_0_GEN7,
6868 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6869 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08006870
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006871 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02006872 I915_WRITE(CACHE_MODE_1,
6873 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07006874
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006875 /*
6876 * BSpec recommends 8x4 when MSAA is used,
6877 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006878 *
6879 * Note that PS/WM thread counts depend on the WIZ hashing
6880 * disable bit, which we don't touch here, but it's good
6881 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006882 */
6883 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006884 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006885
Ben Widawsky20848222012-05-04 18:58:59 -07006886 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
6887 snpcr &= ~GEN6_MBC_SNPCR_MASK;
6888 snpcr |= GEN6_MBC_SNPCR_MED;
6889 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006890
Ben Widawskyab5c6082013-04-05 13:12:41 -07006891 if (!HAS_PCH_NOP(dev))
6892 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006893
6894 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006895}
6896
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006897static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv)
6898{
6899 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6900
6901 /*
6902 * Disable trickle feed and enable pnd deadline calculation
6903 */
6904 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
6905 I915_WRITE(CBR1_VLV, 0);
6906}
6907
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006908static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006909{
6910 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006911
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006912 vlv_init_display_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006913
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006914 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05006915 I915_WRITE(_3D_CHICKEN3,
6916 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6917
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006918 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006919 I915_WRITE(IVB_CHICKEN3,
6920 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6921 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6922
Ville Syrjäläfad7d362014-01-22 21:32:39 +02006923 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006924 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07006925 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08006926 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
6927 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006928
Akash Goel4e046322014-04-04 17:14:38 +05306929 /* WaDisable_RenderCache_OperationalFlush:vlv */
6930 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6931
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006932 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05006933 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6934 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6935
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006936 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07006937 I915_WRITE(GEN7_ROW_CHICKEN2,
6938 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
6939
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006940 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006941 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6942 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6943 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6944
Ville Syrjälä46680e02014-01-22 21:33:01 +02006945 gen7_setup_fixed_func_scheduler(dev_priv);
6946
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006947 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006948 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006949 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006950 */
6951 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006952 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006953
Akash Goelc98f5062014-03-24 23:00:07 +05306954 /* WaDisableL3Bank2xClockGate:vlv
6955 * Disabling L3 clock gating- MMIO 940c[25] = 1
6956 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
6957 I915_WRITE(GEN7_UCGCTL4,
6958 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07006959
Ville Syrjäläafd58e72014-01-22 21:33:03 +02006960 /*
6961 * BSpec says this must be set, even though
6962 * WaDisable4x2SubspanOptimization isn't listed for VLV.
6963 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02006964 I915_WRITE(CACHE_MODE_1,
6965 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07006966
6967 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02006968 * BSpec recommends 8x4 when MSAA is used,
6969 * however in practice 16x4 seems fastest.
6970 *
6971 * Note that PS/WM thread counts depend on the WIZ hashing
6972 * disable bit, which we don't touch here, but it's good
6973 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
6974 */
6975 I915_WRITE(GEN7_GT_MODE,
6976 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
6977
6978 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02006979 * WaIncreaseL3CreditsForVLVB0:vlv
6980 * This is the hardware default actually.
6981 */
6982 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
6983
6984 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006985 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07006986 * Disable clock gating on th GCFG unit to prevent a delay
6987 * in the reporting of vblank events.
6988 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02006989 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006990}
6991
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006992static void cherryview_init_clock_gating(struct drm_device *dev)
6993{
6994 struct drm_i915_private *dev_priv = dev->dev_private;
6995
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006996 vlv_init_display_clock_gating(dev_priv);
Ville Syrjälädd811e72014-04-09 13:28:33 +03006997
Ville Syrjälä232ce332014-04-09 13:28:35 +03006998 /* WaVSRefCountFullforceMissDisable:chv */
6999 /* WaDSRefCountFullforceMissDisable:chv */
7000 I915_WRITE(GEN7_FF_THREAD_MODE,
7001 I915_READ(GEN7_FF_THREAD_MODE) &
7002 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007003
7004 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7005 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7006 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007007
7008 /* WaDisableCSUnitClockGating:chv */
7009 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7010 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007011
7012 /* WaDisableSDEUnitClockGating:chv */
7013 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7014 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007015
7016 /*
7017 * GTT cache may not work with big pages, so if those
7018 * are ever enabled GTT cache may need to be disabled.
7019 */
7020 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007021}
7022
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007023static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007024{
7025 struct drm_i915_private *dev_priv = dev->dev_private;
7026 uint32_t dspclk_gate;
7027
7028 I915_WRITE(RENCLK_GATE_D1, 0);
7029 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7030 GS_UNIT_CLOCK_GATE_DISABLE |
7031 CL_UNIT_CLOCK_GATE_DISABLE);
7032 I915_WRITE(RAMCLK_GATE_D, 0);
7033 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7034 OVRUNIT_CLOCK_GATE_DISABLE |
7035 OVCUNIT_CLOCK_GATE_DISABLE;
7036 if (IS_GM45(dev))
7037 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7038 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007039
7040 /* WaDisableRenderCachePipelinedFlush */
7041 I915_WRITE(CACHE_MODE_0,
7042 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007043
Akash Goel4e046322014-04-04 17:14:38 +05307044 /* WaDisable_RenderCache_OperationalFlush:g4x */
7045 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7046
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007047 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007048}
7049
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007050static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007051{
7052 struct drm_i915_private *dev_priv = dev->dev_private;
7053
7054 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7055 I915_WRITE(RENCLK_GATE_D2, 0);
7056 I915_WRITE(DSPCLK_GATE_D, 0);
7057 I915_WRITE(RAMCLK_GATE_D, 0);
7058 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007059 I915_WRITE(MI_ARB_STATE,
7060 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307061
7062 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7063 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007064}
7065
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007066static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007067{
7068 struct drm_i915_private *dev_priv = dev->dev_private;
7069
7070 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7071 I965_RCC_CLOCK_GATE_DISABLE |
7072 I965_RCPB_CLOCK_GATE_DISABLE |
7073 I965_ISC_CLOCK_GATE_DISABLE |
7074 I965_FBC_CLOCK_GATE_DISABLE);
7075 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007076 I915_WRITE(MI_ARB_STATE,
7077 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307078
7079 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7080 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007081}
7082
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007083static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007084{
7085 struct drm_i915_private *dev_priv = dev->dev_private;
7086 u32 dstate = I915_READ(D_STATE);
7087
7088 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7089 DSTATE_DOT_CLOCK_GATING;
7090 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007091
7092 if (IS_PINEVIEW(dev))
7093 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007094
7095 /* IIR "flip pending" means done if this bit is set */
7096 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007097
7098 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007099 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007100
7101 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7102 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007103
7104 I915_WRITE(MI_ARB_STATE,
7105 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007106}
7107
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007108static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007109{
7110 struct drm_i915_private *dev_priv = dev->dev_private;
7111
7112 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007113
7114 /* interrupts should cause a wake up from C3 */
7115 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7116 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007117
7118 I915_WRITE(MEM_MODE,
7119 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007120}
7121
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007122static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007123{
7124 struct drm_i915_private *dev_priv = dev->dev_private;
7125
7126 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03007127
7128 I915_WRITE(MEM_MODE,
7129 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7130 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007131}
7132
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007133void intel_init_clock_gating(struct drm_device *dev)
7134{
7135 struct drm_i915_private *dev_priv = dev->dev_private;
7136
Damien Lespiauc57e3552015-02-09 19:33:05 +00007137 if (dev_priv->display.init_clock_gating)
7138 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007139}
7140
Imre Deak7d708ee2013-04-17 14:04:50 +03007141void intel_suspend_hw(struct drm_device *dev)
7142{
7143 if (HAS_PCH_LPT(dev))
7144 lpt_suspend_hw(dev);
7145}
7146
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007147/* Set up chip specific power management-related functions */
7148void intel_init_pm(struct drm_device *dev)
7149{
7150 struct drm_i915_private *dev_priv = dev->dev_private;
7151
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007152 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007153
Daniel Vetterc921aba2012-04-26 23:28:17 +02007154 /* For cxsr */
7155 if (IS_PINEVIEW(dev))
7156 i915_pineview_get_mem_freq(dev);
7157 else if (IS_GEN5(dev))
7158 i915_ironlake_get_mem_freq(dev);
7159
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007160 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00007161 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00007162 skl_setup_wm_latency(dev);
7163
Imre Deaka82abe42015-03-27 14:00:04 +02007164 if (IS_BROXTON(dev))
7165 dev_priv->display.init_clock_gating =
7166 bxt_init_clock_gating;
7167 else if (IS_SKYLAKE(dev))
7168 dev_priv->display.init_clock_gating =
7169 skl_init_clock_gating;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00007170 dev_priv->display.update_wm = skl_update_wm;
7171 dev_priv->display.update_sprite_wm = skl_update_sprite_wm;
Damien Lespiauc83155a2014-03-28 00:18:35 +05307172 } else if (HAS_PCH_SPLIT(dev)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00007173 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007174
Ville Syrjäläbd602542014-01-07 16:14:10 +02007175 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
7176 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
7177 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
7178 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
7179 dev_priv->display.update_wm = ilk_update_wm;
7180 dev_priv->display.update_sprite_wm = ilk_update_sprite_wm;
7181 } else {
7182 DRM_DEBUG_KMS("Failed to read display plane latency. "
7183 "Disable CxSR\n");
7184 }
7185
7186 if (IS_GEN5(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007187 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007188 else if (IS_GEN6(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007189 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007190 else if (IS_IVYBRIDGE(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007191 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007192 else if (IS_HASWELL(dev))
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007193 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007194 else if (INTEL_INFO(dev)->gen == 8)
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03007195 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007196 } else if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03007197 vlv_setup_wm_latency(dev);
7198
7199 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007200 dev_priv->display.init_clock_gating =
7201 cherryview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007202 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007203 vlv_setup_wm_latency(dev);
7204
7205 dev_priv->display.update_wm = vlv_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007206 dev_priv->display.init_clock_gating =
7207 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007208 } else if (IS_PINEVIEW(dev)) {
7209 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
7210 dev_priv->is_ddr3,
7211 dev_priv->fsb_freq,
7212 dev_priv->mem_freq)) {
7213 DRM_INFO("failed to find known CxSR latency "
7214 "(found ddr%s fsb freq %d, mem freq %d), "
7215 "disabling CxSR\n",
7216 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7217 dev_priv->fsb_freq, dev_priv->mem_freq);
7218 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007219 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007220 dev_priv->display.update_wm = NULL;
7221 } else
7222 dev_priv->display.update_wm = pineview_update_wm;
7223 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7224 } else if (IS_G4X(dev)) {
7225 dev_priv->display.update_wm = g4x_update_wm;
7226 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
7227 } else if (IS_GEN4(dev)) {
7228 dev_priv->display.update_wm = i965_update_wm;
7229 if (IS_CRESTLINE(dev))
7230 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
7231 else if (IS_BROADWATER(dev))
7232 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7233 } else if (IS_GEN3(dev)) {
7234 dev_priv->display.update_wm = i9xx_update_wm;
7235 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
7236 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007237 } else if (IS_GEN2(dev)) {
7238 if (INTEL_INFO(dev)->num_pipes == 1) {
7239 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007240 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007241 } else {
7242 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007243 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007244 }
7245
7246 if (IS_I85X(dev) || IS_I865G(dev))
7247 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7248 else
7249 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7250 } else {
7251 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007252 }
7253}
7254
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007255int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007256{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007257 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007258
7259 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7260 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7261 return -EAGAIN;
7262 }
7263
7264 I915_WRITE(GEN6_PCODE_DATA, *val);
Damien Lespiaudddab342014-11-13 17:51:50 +00007265 I915_WRITE(GEN6_PCODE_DATA1, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007266 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7267
7268 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7269 500)) {
7270 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7271 return -ETIMEDOUT;
7272 }
7273
7274 *val = I915_READ(GEN6_PCODE_DATA);
7275 I915_WRITE(GEN6_PCODE_DATA, 0);
7276
7277 return 0;
7278}
7279
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007280int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007281{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007282 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007283
7284 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7285 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7286 return -EAGAIN;
7287 }
7288
7289 I915_WRITE(GEN6_PCODE_DATA, val);
7290 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7291
7292 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7293 500)) {
7294 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7295 return -ETIMEDOUT;
7296 }
7297
7298 I915_WRITE(GEN6_PCODE_DATA, 0);
7299
7300 return 0;
7301}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007302
Ville Syrjälädd06f882014-11-10 22:55:12 +02007303static int vlv_gpu_freq_div(unsigned int czclk_freq)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007304{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007305 switch (czclk_freq) {
7306 case 200:
7307 return 10;
7308 case 267:
7309 return 12;
7310 case 320:
7311 case 333:
Ville Syrjälädd06f882014-11-10 22:55:12 +02007312 return 16;
Ville Syrjäläab3fb152014-11-10 22:55:15 +02007313 case 400:
7314 return 20;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007315 default:
7316 return -1;
7317 }
Ville Syrjälädd06f882014-11-10 22:55:12 +02007318}
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007319
Ville Syrjälädd06f882014-11-10 22:55:12 +02007320static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7321{
7322 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
7323
7324 div = vlv_gpu_freq_div(czclk_freq);
7325 if (div < 0)
7326 return div;
7327
7328 return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007329}
7330
Fengguang Wub55dd642014-07-12 11:21:39 +02007331static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007332{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007333 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007334
Ville Syrjälädd06f882014-11-10 22:55:12 +02007335 mul = vlv_gpu_freq_div(czclk_freq);
7336 if (mul < 0)
7337 return mul;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007338
Ville Syrjälädd06f882014-11-10 22:55:12 +02007339 return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007340}
7341
Fengguang Wub55dd642014-07-12 11:21:39 +02007342static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307343{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007344 int div, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05307345
Ville Syrjälädd06f882014-11-10 22:55:12 +02007346 div = vlv_gpu_freq_div(czclk_freq) / 2;
7347 if (div < 0)
7348 return div;
Deepak S22b1b2f2014-07-12 14:54:33 +05307349
Ville Syrjälädd06f882014-11-10 22:55:12 +02007350 return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307351}
7352
Fengguang Wub55dd642014-07-12 11:21:39 +02007353static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307354{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007355 int mul, czclk_freq = dev_priv->rps.cz_freq;
Deepak S22b1b2f2014-07-12 14:54:33 +05307356
Ville Syrjälädd06f882014-11-10 22:55:12 +02007357 mul = vlv_gpu_freq_div(czclk_freq) / 2;
7358 if (mul < 0)
7359 return mul;
Deepak S22b1b2f2014-07-12 14:54:33 +05307360
Ville Syrjälä1c147622014-08-18 14:42:43 +03007361 /* CHV needs even values */
Ville Syrjälädd06f882014-11-10 22:55:12 +02007362 return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307363}
7364
Ville Syrjälä616bc822015-01-23 21:04:25 +02007365int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7366{
Akash Goel80b6dda2015-03-06 11:07:15 +05307367 if (IS_GEN9(dev_priv->dev))
7368 return (val * GT_FREQUENCY_MULTIPLIER) / GEN9_FREQ_SCALER;
7369 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007370 return chv_gpu_freq(dev_priv, val);
7371 else if (IS_VALLEYVIEW(dev_priv->dev))
7372 return byt_gpu_freq(dev_priv, val);
7373 else
7374 return val * GT_FREQUENCY_MULTIPLIER;
7375}
7376
Ville Syrjälä616bc822015-01-23 21:04:25 +02007377int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7378{
Akash Goel80b6dda2015-03-06 11:07:15 +05307379 if (IS_GEN9(dev_priv->dev))
7380 return (val * GEN9_FREQ_SCALER) / GT_FREQUENCY_MULTIPLIER;
7381 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007382 return chv_freq_opcode(dev_priv, val);
Deepak S22b1b2f2014-07-12 14:54:33 +05307383 else if (IS_VALLEYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007384 return byt_freq_opcode(dev_priv, val);
7385 else
7386 return val / GT_FREQUENCY_MULTIPLIER;
Deepak S22b1b2f2014-07-12 14:54:33 +05307387}
7388
Chris Wilson6ad790c2015-04-07 16:20:31 +01007389struct request_boost {
7390 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02007391 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007392};
7393
7394static void __intel_rps_boost_work(struct work_struct *work)
7395{
7396 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01007397 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007398
Chris Wilsone61b9952015-04-27 13:41:24 +01007399 if (!i915_gem_request_completed(req, true))
7400 gen6_rps_boost(to_i915(req->ring->dev), NULL,
7401 req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007402
Chris Wilsone61b9952015-04-27 13:41:24 +01007403 i915_gem_request_unreference__unlocked(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007404 kfree(boost);
7405}
7406
7407void intel_queue_rps_boost_for_request(struct drm_device *dev,
Daniel Vettereed29a52015-05-21 14:21:25 +02007408 struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007409{
7410 struct request_boost *boost;
7411
Daniel Vettereed29a52015-05-21 14:21:25 +02007412 if (req == NULL || INTEL_INFO(dev)->gen < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007413 return;
7414
Chris Wilsone61b9952015-04-27 13:41:24 +01007415 if (i915_gem_request_completed(req, true))
7416 return;
7417
Chris Wilson6ad790c2015-04-07 16:20:31 +01007418 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
7419 if (boost == NULL)
7420 return;
7421
Daniel Vettereed29a52015-05-21 14:21:25 +02007422 i915_gem_request_reference(req);
7423 boost->req = req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007424
7425 INIT_WORK(&boost->work, __intel_rps_boost_work);
7426 queue_work(to_i915(dev)->wq, &boost->work);
7427}
7428
Daniel Vetterf742a552013-12-06 10:17:53 +01007429void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01007430{
7431 struct drm_i915_private *dev_priv = dev->dev_private;
7432
Daniel Vetterf742a552013-12-06 10:17:53 +01007433 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01007434 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01007435
Chris Wilson907b28c2013-07-19 20:36:52 +01007436 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
7437 intel_gen6_powersave_work);
Chris Wilson1854d5c2015-04-07 16:20:32 +01007438 INIT_LIST_HEAD(&dev_priv->rps.clients);
Chris Wilson2e1b8732015-04-27 13:41:22 +01007439 INIT_LIST_HEAD(&dev_priv->rps.semaphores.link);
7440 INIT_LIST_HEAD(&dev_priv->rps.mmioflips.link);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03007441
Paulo Zanoni33688d92014-03-07 20:08:19 -03007442 dev_priv->pm.suspended = false;
Chris Wilson907b28c2013-07-19 20:36:52 +01007443}