blob: 3aca66d99353e47c5730c4bfd703109c1ec64261 [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 Lespiau2caa3b22015-02-09 19:33:20 +000074 if (INTEL_REVID(dev) <= SKL_REVID_D0) {
Damien Lespiau81e231a2015-02-09 19:33:19 +000075 /* WaDisableHDCInvalidation:skl */
76 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) |
77 BDW_DISABLE_HDC_INVALIDATION);
78
Damien Lespiau2caa3b22015-02-09 19:33:20 +000079 /* WaDisableChickenBitTSGBarrierAckForFFSliceCS:skl */
80 I915_WRITE(FF_SLICE_CS_CHICKEN2,
Damien Lespiauf1d3d342015-05-06 14:36:27 +010081 _MASKED_BIT_ENABLE(GEN9_TSG_BARRIER_ACK_DISABLE));
Damien Lespiau2caa3b22015-02-09 19:33:20 +000082 }
Damien Lespiau81e231a2015-02-09 19:33:19 +000083
Arun Siluverya4106a72015-07-14 15:01:29 +010084 /* GEN8_L3SQCREG4 has a dependency with WA batch so any new changes
85 * involving this register should also be added to WA batch as required.
86 */
Damien Lespiau8bc0ccf2015-02-09 19:33:18 +000087 if (INTEL_REVID(dev) <= SKL_REVID_E0)
88 /* WaDisableLSQCROPERFforOCL:skl */
89 I915_WRITE(GEN8_L3SQCREG4, I915_READ(GEN8_L3SQCREG4) |
90 GEN8_LQSC_RO_PERF_DIS);
Arun Siluvery245d9662015-08-03 20:24:56 +010091
92 /* WaEnableGapsTsvCreditFix:skl */
93 if (IS_SKYLAKE(dev) && (INTEL_REVID(dev) >= SKL_REVID_C0)) {
94 I915_WRITE(GEN8_GARBCNTL, (I915_READ(GEN8_GARBCNTL) |
95 GEN9_GAPS_TSV_CREDIT_DISABLE));
96 }
Damien Lespiauda2078c2013-02-13 15:27:27 +000097}
98
Imre Deaka82abe42015-03-27 14:00:04 +020099static void bxt_init_clock_gating(struct drm_device *dev)
100{
Imre Deak32608ca2015-03-11 11:10:27 +0200101 struct drm_i915_private *dev_priv = dev->dev_private;
102
Imre Deaka82abe42015-03-27 14:00:04 +0200103 gen9_init_clock_gating(dev);
Imre Deak32608ca2015-03-11 11:10:27 +0200104
Nick Hoatha7546152015-06-29 14:07:32 +0100105 /* WaDisableSDEUnitClockGating:bxt */
106 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
107 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
108
Imre Deak32608ca2015-03-11 11:10:27 +0200109 /*
110 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +0200111 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +0200112 */
Imre Deak32608ca2015-03-11 11:10:27 +0200113 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +0200114 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deak32608ca2015-03-11 11:10:27 +0200115
Arun Siluveryaa66c502015-09-25 14:33:40 +0100116 /* WaStoreMultiplePTEenable:bxt */
117 /* This is a requirement according to Hardware specification */
118 if (INTEL_REVID(dev) == BXT_REVID_A0)
Nick Hoatha7546152015-06-29 14:07:32 +0100119 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_TLBPF);
Arun Siluvery5b88aba2015-09-08 10:31:49 +0100120
121 /* WaSetClckGatingDisableMedia:bxt */
122 if (INTEL_REVID(dev) == BXT_REVID_A0) {
123 I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) &
124 ~GEN8_DOP_CLOCK_GATE_MEDIA_ENABLE));
125 }
Imre Deaka82abe42015-03-27 14:00:04 +0200126}
127
Daniel Vetterc921aba2012-04-26 23:28:17 +0200128static void i915_pineview_get_mem_freq(struct drm_device *dev)
129{
Jani Nikula50227e12014-03-31 14:27:21 +0300130 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200131 u32 tmp;
132
133 tmp = I915_READ(CLKCFG);
134
135 switch (tmp & CLKCFG_FSB_MASK) {
136 case CLKCFG_FSB_533:
137 dev_priv->fsb_freq = 533; /* 133*4 */
138 break;
139 case CLKCFG_FSB_800:
140 dev_priv->fsb_freq = 800; /* 200*4 */
141 break;
142 case CLKCFG_FSB_667:
143 dev_priv->fsb_freq = 667; /* 167*4 */
144 break;
145 case CLKCFG_FSB_400:
146 dev_priv->fsb_freq = 400; /* 100*4 */
147 break;
148 }
149
150 switch (tmp & CLKCFG_MEM_MASK) {
151 case CLKCFG_MEM_533:
152 dev_priv->mem_freq = 533;
153 break;
154 case CLKCFG_MEM_667:
155 dev_priv->mem_freq = 667;
156 break;
157 case CLKCFG_MEM_800:
158 dev_priv->mem_freq = 800;
159 break;
160 }
161
162 /* detect pineview DDR3 setting */
163 tmp = I915_READ(CSHRDDR3CTL);
164 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
165}
166
167static void i915_ironlake_get_mem_freq(struct drm_device *dev)
168{
Jani Nikula50227e12014-03-31 14:27:21 +0300169 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200170 u16 ddrpll, csipll;
171
172 ddrpll = I915_READ16(DDRMPLL1);
173 csipll = I915_READ16(CSIPLL0);
174
175 switch (ddrpll & 0xff) {
176 case 0xc:
177 dev_priv->mem_freq = 800;
178 break;
179 case 0x10:
180 dev_priv->mem_freq = 1066;
181 break;
182 case 0x14:
183 dev_priv->mem_freq = 1333;
184 break;
185 case 0x18:
186 dev_priv->mem_freq = 1600;
187 break;
188 default:
189 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
190 ddrpll & 0xff);
191 dev_priv->mem_freq = 0;
192 break;
193 }
194
Daniel Vetter20e4d402012-08-08 23:35:39 +0200195 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200196
197 switch (csipll & 0x3ff) {
198 case 0x00c:
199 dev_priv->fsb_freq = 3200;
200 break;
201 case 0x00e:
202 dev_priv->fsb_freq = 3733;
203 break;
204 case 0x010:
205 dev_priv->fsb_freq = 4266;
206 break;
207 case 0x012:
208 dev_priv->fsb_freq = 4800;
209 break;
210 case 0x014:
211 dev_priv->fsb_freq = 5333;
212 break;
213 case 0x016:
214 dev_priv->fsb_freq = 5866;
215 break;
216 case 0x018:
217 dev_priv->fsb_freq = 6400;
218 break;
219 default:
220 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
221 csipll & 0x3ff);
222 dev_priv->fsb_freq = 0;
223 break;
224 }
225
226 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200227 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200228 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200229 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200230 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200231 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200232 }
233}
234
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300235static const struct cxsr_latency cxsr_latency_table[] = {
236 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
237 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
238 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
239 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
240 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
241
242 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
243 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
244 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
245 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
246 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
247
248 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
249 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
250 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
251 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
252 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
253
254 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
255 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
256 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
257 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
258 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
259
260 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
261 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
262 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
263 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
264 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
265
266 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
267 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
268 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
269 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
270 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
271};
272
Daniel Vetter63c62272012-04-21 23:17:55 +0200273static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300274 int is_ddr3,
275 int fsb,
276 int mem)
277{
278 const struct cxsr_latency *latency;
279 int i;
280
281 if (fsb == 0 || mem == 0)
282 return NULL;
283
284 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
285 latency = &cxsr_latency_table[i];
286 if (is_desktop == latency->is_desktop &&
287 is_ddr3 == latency->is_ddr3 &&
288 fsb == latency->fsb_freq && mem == latency->mem_freq)
289 return latency;
290 }
291
292 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
293
294 return NULL;
295}
296
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200297static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
298{
299 u32 val;
300
301 mutex_lock(&dev_priv->rps.hw_lock);
302
303 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
304 if (enable)
305 val &= ~FORCE_DDR_HIGH_FREQ;
306 else
307 val |= FORCE_DDR_HIGH_FREQ;
308 val &= ~FORCE_DDR_LOW_FREQ;
309 val |= FORCE_DDR_FREQ_REQ_ACK;
310 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
311
312 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
313 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
314 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
315
316 mutex_unlock(&dev_priv->rps.hw_lock);
317}
318
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200319static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
320{
321 u32 val;
322
323 mutex_lock(&dev_priv->rps.hw_lock);
324
325 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
326 if (enable)
327 val |= DSP_MAXFIFO_PM5_ENABLE;
328 else
329 val &= ~DSP_MAXFIFO_PM5_ENABLE;
330 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
331
332 mutex_unlock(&dev_priv->rps.hw_lock);
333}
334
Ville Syrjäläf4998962015-03-10 17:02:21 +0200335#define FW_WM(value, plane) \
336 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
337
Imre Deak5209b1f2014-07-01 12:36:17 +0300338void intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300339{
Imre Deak5209b1f2014-07-01 12:36:17 +0300340 struct drm_device *dev = dev_priv->dev;
341 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300342
Imre Deak5209b1f2014-07-01 12:36:17 +0300343 if (IS_VALLEYVIEW(dev)) {
344 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300345 POSTING_READ(FW_BLC_SELF_VLV);
Ville Syrjälä852eb002015-06-24 22:00:07 +0300346 dev_priv->wm.vlv.cxsr = enable;
Imre Deak5209b1f2014-07-01 12:36:17 +0300347 } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) {
348 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300349 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300350 } else if (IS_PINEVIEW(dev)) {
351 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
352 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
353 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300354 POSTING_READ(DSPFW3);
Imre Deak5209b1f2014-07-01 12:36:17 +0300355 } else if (IS_I945G(dev) || IS_I945GM(dev)) {
356 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
357 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
358 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300359 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300360 } else if (IS_I915GM(dev)) {
361 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
362 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
363 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300364 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300365 } else {
366 return;
367 }
368
369 DRM_DEBUG_KMS("memory self-refresh is %s\n",
370 enable ? "enabled" : "disabled");
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300371}
372
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200373
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300374/*
375 * Latency for FIFO fetches is dependent on several factors:
376 * - memory configuration (speed, channels)
377 * - chipset
378 * - current MCH state
379 * It can be fairly high in some situations, so here we assume a fairly
380 * pessimal value. It's a tradeoff between extra memory fetches (if we
381 * set this value too high, the FIFO will fetch frequently to stay full)
382 * and power consumption (set it too low to save power and we might see
383 * FIFO underruns and display "flicker").
384 *
385 * A value of 5us seems to be a good balance; safe for very low end
386 * platforms but not overly aggressive on lower latency configs.
387 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100388static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300389
Ville Syrjäläb5004722015-03-05 21:19:47 +0200390#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
391 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
392
393static int vlv_get_fifo_size(struct drm_device *dev,
394 enum pipe pipe, int plane)
395{
396 struct drm_i915_private *dev_priv = dev->dev_private;
397 int sprite0_start, sprite1_start, size;
398
399 switch (pipe) {
400 uint32_t dsparb, dsparb2, dsparb3;
401 case PIPE_A:
402 dsparb = I915_READ(DSPARB);
403 dsparb2 = I915_READ(DSPARB2);
404 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
405 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
406 break;
407 case PIPE_B:
408 dsparb = I915_READ(DSPARB);
409 dsparb2 = I915_READ(DSPARB2);
410 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
411 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
412 break;
413 case PIPE_C:
414 dsparb2 = I915_READ(DSPARB2);
415 dsparb3 = I915_READ(DSPARB3);
416 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
417 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
418 break;
419 default:
420 return 0;
421 }
422
423 switch (plane) {
424 case 0:
425 size = sprite0_start;
426 break;
427 case 1:
428 size = sprite1_start - sprite0_start;
429 break;
430 case 2:
431 size = 512 - 1 - sprite1_start;
432 break;
433 default:
434 return 0;
435 }
436
437 DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n",
438 pipe_name(pipe), plane == 0 ? "primary" : "sprite",
439 plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1),
440 size);
441
442 return size;
443}
444
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300445static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300446{
447 struct drm_i915_private *dev_priv = dev->dev_private;
448 uint32_t dsparb = I915_READ(DSPARB);
449 int size;
450
451 size = dsparb & 0x7f;
452 if (plane)
453 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
454
455 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
456 plane ? "B" : "A", size);
457
458 return size;
459}
460
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200461static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300462{
463 struct drm_i915_private *dev_priv = dev->dev_private;
464 uint32_t dsparb = I915_READ(DSPARB);
465 int size;
466
467 size = dsparb & 0x1ff;
468 if (plane)
469 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
470 size >>= 1; /* Convert to cachelines */
471
472 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
473 plane ? "B" : "A", size);
474
475 return size;
476}
477
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300478static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300479{
480 struct drm_i915_private *dev_priv = dev->dev_private;
481 uint32_t dsparb = I915_READ(DSPARB);
482 int size;
483
484 size = dsparb & 0x7f;
485 size >>= 2; /* Convert to cachelines */
486
487 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
488 plane ? "B" : "A",
489 size);
490
491 return size;
492}
493
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300494/* Pineview has different values for various configs */
495static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300496 .fifo_size = PINEVIEW_DISPLAY_FIFO,
497 .max_wm = PINEVIEW_MAX_WM,
498 .default_wm = PINEVIEW_DFT_WM,
499 .guard_size = PINEVIEW_GUARD_WM,
500 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300501};
502static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300503 .fifo_size = PINEVIEW_DISPLAY_FIFO,
504 .max_wm = PINEVIEW_MAX_WM,
505 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
506 .guard_size = PINEVIEW_GUARD_WM,
507 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300508};
509static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300510 .fifo_size = PINEVIEW_CURSOR_FIFO,
511 .max_wm = PINEVIEW_CURSOR_MAX_WM,
512 .default_wm = PINEVIEW_CURSOR_DFT_WM,
513 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
514 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300515};
516static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300517 .fifo_size = PINEVIEW_CURSOR_FIFO,
518 .max_wm = PINEVIEW_CURSOR_MAX_WM,
519 .default_wm = PINEVIEW_CURSOR_DFT_WM,
520 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
521 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300522};
523static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300524 .fifo_size = G4X_FIFO_SIZE,
525 .max_wm = G4X_MAX_WM,
526 .default_wm = G4X_MAX_WM,
527 .guard_size = 2,
528 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300529};
530static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300531 .fifo_size = I965_CURSOR_FIFO,
532 .max_wm = I965_CURSOR_MAX_WM,
533 .default_wm = I965_CURSOR_DFT_WM,
534 .guard_size = 2,
535 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300536};
537static const struct intel_watermark_params valleyview_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300538 .fifo_size = VALLEYVIEW_FIFO_SIZE,
539 .max_wm = VALLEYVIEW_MAX_WM,
540 .default_wm = VALLEYVIEW_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 valleyview_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300545 .fifo_size = I965_CURSOR_FIFO,
546 .max_wm = VALLEYVIEW_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 i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300552 .fifo_size = I965_CURSOR_FIFO,
553 .max_wm = I965_CURSOR_MAX_WM,
554 .default_wm = I965_CURSOR_DFT_WM,
555 .guard_size = 2,
556 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300557};
558static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300559 .fifo_size = I945_FIFO_SIZE,
560 .max_wm = I915_MAX_WM,
561 .default_wm = 1,
562 .guard_size = 2,
563 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300564};
565static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300566 .fifo_size = I915_FIFO_SIZE,
567 .max_wm = I915_MAX_WM,
568 .default_wm = 1,
569 .guard_size = 2,
570 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300571};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300572static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300573 .fifo_size = I855GM_FIFO_SIZE,
574 .max_wm = I915_MAX_WM,
575 .default_wm = 1,
576 .guard_size = 2,
577 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300578};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300579static const struct intel_watermark_params i830_bc_wm_info = {
580 .fifo_size = I855GM_FIFO_SIZE,
581 .max_wm = I915_MAX_WM/2,
582 .default_wm = 1,
583 .guard_size = 2,
584 .cacheline_size = I830_FIFO_LINE_SIZE,
585};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200586static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300587 .fifo_size = I830_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};
593
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300594/**
595 * intel_calculate_wm - calculate watermark level
596 * @clock_in_khz: pixel clock
597 * @wm: chip FIFO params
598 * @pixel_size: display pixel size
599 * @latency_ns: memory latency for the platform
600 *
601 * Calculate the watermark level (the level at which the display plane will
602 * start fetching from memory again). Each chip has a different display
603 * FIFO size and allocation, so the caller needs to figure that out and pass
604 * in the correct intel_watermark_params structure.
605 *
606 * As the pixel clock runs, the FIFO will be drained at a rate that depends
607 * on the pixel size. When it reaches the watermark level, it'll start
608 * fetching FIFO line sized based chunks from memory until the FIFO fills
609 * past the watermark point. If the FIFO drains completely, a FIFO underrun
610 * will occur, and a display engine hang could result.
611 */
612static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
613 const struct intel_watermark_params *wm,
614 int fifo_size,
615 int pixel_size,
616 unsigned long latency_ns)
617{
618 long entries_required, wm_size;
619
620 /*
621 * Note: we need to make sure we don't overflow for various clock &
622 * latency values.
623 * clocks go from a few thousand to several hundred thousand.
624 * latency is usually a few thousand
625 */
626 entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) /
627 1000;
628 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
629
630 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
631
632 wm_size = fifo_size - (entries_required + wm->guard_size);
633
634 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
635
636 /* Don't promote wm_size to unsigned... */
637 if (wm_size > (long)wm->max_wm)
638 wm_size = wm->max_wm;
639 if (wm_size <= 0)
640 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300641
642 /*
643 * Bspec seems to indicate that the value shouldn't be lower than
644 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
645 * Lets go for 8 which is the burst size since certain platforms
646 * already use a hardcoded 8 (which is what the spec says should be
647 * done).
648 */
649 if (wm_size <= 8)
650 wm_size = 8;
651
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300652 return wm_size;
653}
654
655static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
656{
657 struct drm_crtc *crtc, *enabled = NULL;
658
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100659 for_each_crtc(dev, crtc) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000660 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300661 if (enabled)
662 return NULL;
663 enabled = crtc;
664 }
665 }
666
667 return enabled;
668}
669
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300670static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300671{
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300672 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300673 struct drm_i915_private *dev_priv = dev->dev_private;
674 struct drm_crtc *crtc;
675 const struct cxsr_latency *latency;
676 u32 reg;
677 unsigned long wm;
678
679 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
680 dev_priv->fsb_freq, dev_priv->mem_freq);
681 if (!latency) {
682 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300683 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300684 return;
685 }
686
687 crtc = single_enabled_crtc(dev);
688 if (crtc) {
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300689 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -0800690 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300691 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300692
693 /* Display SR */
694 wm = intel_calculate_wm(clock, &pineview_display_wm,
695 pineview_display_wm.fifo_size,
696 pixel_size, latency->display_sr);
697 reg = I915_READ(DSPFW1);
698 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200699 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300700 I915_WRITE(DSPFW1, reg);
701 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
702
703 /* cursor SR */
704 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
705 pineview_display_wm.fifo_size,
706 pixel_size, latency->cursor_sr);
707 reg = I915_READ(DSPFW3);
708 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200709 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300710 I915_WRITE(DSPFW3, reg);
711
712 /* Display HPLL off SR */
713 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
714 pineview_display_hplloff_wm.fifo_size,
715 pixel_size, latency->display_hpll_disable);
716 reg = I915_READ(DSPFW3);
717 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200718 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300719 I915_WRITE(DSPFW3, reg);
720
721 /* cursor HPLL off SR */
722 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
723 pineview_display_hplloff_wm.fifo_size,
724 pixel_size, latency->cursor_hpll_disable);
725 reg = I915_READ(DSPFW3);
726 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200727 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300728 I915_WRITE(DSPFW3, reg);
729 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
730
Imre Deak5209b1f2014-07-01 12:36:17 +0300731 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300732 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300733 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300734 }
735}
736
737static bool g4x_compute_wm0(struct drm_device *dev,
738 int plane,
739 const struct intel_watermark_params *display,
740 int display_latency_ns,
741 const struct intel_watermark_params *cursor,
742 int cursor_latency_ns,
743 int *plane_wm,
744 int *cursor_wm)
745{
746 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300747 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300748 int htotal, hdisplay, clock, pixel_size;
749 int line_time_us, line_count;
750 int entries, tlb_miss;
751
752 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +0000753 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300754 *cursor_wm = cursor->guard_size;
755 *plane_wm = display->guard_size;
756 return false;
757 }
758
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200759 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100760 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800761 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200762 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800763 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300764
765 /* Use the small buffer method to calculate plane watermark */
766 entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000;
767 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
768 if (tlb_miss > 0)
769 entries += tlb_miss;
770 entries = DIV_ROUND_UP(entries, display->cacheline_size);
771 *plane_wm = entries + display->guard_size;
772 if (*plane_wm > (int)display->max_wm)
773 *plane_wm = display->max_wm;
774
775 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200776 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300777 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Matt Roper3dd512f2015-02-27 10:12:00 -0800778 entries = line_count * crtc->cursor->state->crtc_w * pixel_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300779 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
780 if (tlb_miss > 0)
781 entries += tlb_miss;
782 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
783 *cursor_wm = entries + cursor->guard_size;
784 if (*cursor_wm > (int)cursor->max_wm)
785 *cursor_wm = (int)cursor->max_wm;
786
787 return true;
788}
789
790/*
791 * Check the wm result.
792 *
793 * If any calculated watermark values is larger than the maximum value that
794 * can be programmed into the associated watermark register, that watermark
795 * must be disabled.
796 */
797static bool g4x_check_srwm(struct drm_device *dev,
798 int display_wm, int cursor_wm,
799 const struct intel_watermark_params *display,
800 const struct intel_watermark_params *cursor)
801{
802 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
803 display_wm, cursor_wm);
804
805 if (display_wm > display->max_wm) {
806 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
807 display_wm, display->max_wm);
808 return false;
809 }
810
811 if (cursor_wm > cursor->max_wm) {
812 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
813 cursor_wm, cursor->max_wm);
814 return false;
815 }
816
817 if (!(display_wm || cursor_wm)) {
818 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
819 return false;
820 }
821
822 return true;
823}
824
825static bool g4x_compute_srwm(struct drm_device *dev,
826 int plane,
827 int latency_ns,
828 const struct intel_watermark_params *display,
829 const struct intel_watermark_params *cursor,
830 int *display_wm, int *cursor_wm)
831{
832 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300833 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300834 int hdisplay, htotal, pixel_size, clock;
835 unsigned long line_time_us;
836 int line_count, line_size;
837 int small, large;
838 int entries;
839
840 if (!latency_ns) {
841 *display_wm = *cursor_wm = 0;
842 return false;
843 }
844
845 crtc = intel_get_crtc_for_plane(dev, plane);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200846 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100847 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800848 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200849 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -0800850 pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300851
Ville Syrjälä922044c2014-02-14 14:18:57 +0200852 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300853 line_count = (latency_ns / line_time_us + 1000) / 1000;
854 line_size = hdisplay * pixel_size;
855
856 /* Use the minimum of the small and large buffer method for primary */
857 small = ((clock * pixel_size / 1000) * latency_ns) / 1000;
858 large = line_count * line_size;
859
860 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
861 *display_wm = entries + display->guard_size;
862
863 /* calculate the self-refresh watermark for display cursor */
Matt Roper3dd512f2015-02-27 10:12:00 -0800864 entries = line_count * pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300865 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
866 *cursor_wm = entries + cursor->guard_size;
867
868 return g4x_check_srwm(dev,
869 *display_wm, *cursor_wm,
870 display, cursor);
871}
872
Ville Syrjälä15665972015-03-10 16:16:28 +0200873#define FW_WM_VLV(value, plane) \
874 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
875
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200876static void vlv_write_wm_values(struct intel_crtc *crtc,
877 const struct vlv_wm_values *wm)
878{
879 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
880 enum pipe pipe = crtc->pipe;
881
882 I915_WRITE(VLV_DDL(pipe),
883 (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) |
884 (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) |
885 (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) |
886 (wm->ddl[pipe].primary << DDL_PLANE_SHIFT));
887
Ville Syrjäläae801522015-03-05 21:19:49 +0200888 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200889 FW_WM(wm->sr.plane, SR) |
890 FW_WM(wm->pipe[PIPE_B].cursor, CURSORB) |
891 FW_WM_VLV(wm->pipe[PIPE_B].primary, PLANEB) |
892 FW_WM_VLV(wm->pipe[PIPE_A].primary, PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200893 I915_WRITE(DSPFW2,
Ville Syrjälä15665972015-03-10 16:16:28 +0200894 FW_WM_VLV(wm->pipe[PIPE_A].sprite[1], SPRITEB) |
895 FW_WM(wm->pipe[PIPE_A].cursor, CURSORA) |
896 FW_WM_VLV(wm->pipe[PIPE_A].sprite[0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200897 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200898 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200899
900 if (IS_CHERRYVIEW(dev_priv)) {
901 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200902 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
903 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200904 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200905 FW_WM_VLV(wm->pipe[PIPE_C].sprite[1], SPRITEF) |
906 FW_WM_VLV(wm->pipe[PIPE_C].sprite[0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200907 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200908 FW_WM_VLV(wm->pipe[PIPE_C].primary, PLANEC) |
909 FW_WM(wm->pipe[PIPE_C].cursor, CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200910 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200911 FW_WM(wm->sr.plane >> 9, SR_HI) |
912 FW_WM(wm->pipe[PIPE_C].sprite[1] >> 8, SPRITEF_HI) |
913 FW_WM(wm->pipe[PIPE_C].sprite[0] >> 8, SPRITEE_HI) |
914 FW_WM(wm->pipe[PIPE_C].primary >> 8, PLANEC_HI) |
915 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
916 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
917 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
918 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
919 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
920 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200921 } else {
922 I915_WRITE(DSPFW7,
Ville Syrjälä15665972015-03-10 16:16:28 +0200923 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
924 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200925 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200926 FW_WM(wm->sr.plane >> 9, SR_HI) |
927 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
928 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
929 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
930 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
931 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
932 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200933 }
934
Ville Syrjälä2cb389b2015-06-24 22:00:10 +0300935 /* zero (unused) WM1 watermarks */
936 I915_WRITE(DSPFW4, 0);
937 I915_WRITE(DSPFW5, 0);
938 I915_WRITE(DSPFW6, 0);
939 I915_WRITE(DSPHOWM1, 0);
940
Ville Syrjäläae801522015-03-05 21:19:49 +0200941 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200942}
943
Ville Syrjälä15665972015-03-10 16:16:28 +0200944#undef FW_WM_VLV
945
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300946enum vlv_wm_level {
947 VLV_WM_LEVEL_PM2,
948 VLV_WM_LEVEL_PM5,
949 VLV_WM_LEVEL_DDR_DVFS,
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300950};
951
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300952/* latency must be in 0.1us units. */
953static unsigned int vlv_wm_method2(unsigned int pixel_rate,
954 unsigned int pipe_htotal,
955 unsigned int horiz_pixels,
956 unsigned int bytes_per_pixel,
957 unsigned int latency)
958{
959 unsigned int ret;
960
961 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
962 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
963 ret = DIV_ROUND_UP(ret, 64);
964
965 return ret;
966}
967
968static void vlv_setup_wm_latency(struct drm_device *dev)
969{
970 struct drm_i915_private *dev_priv = dev->dev_private;
971
972 /* all latencies in usec */
973 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
974
Ville Syrjälä58590c12015-09-08 21:05:12 +0300975 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
976
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300977 if (IS_CHERRYVIEW(dev_priv)) {
978 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
979 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300980
981 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300982 }
983}
984
985static uint16_t vlv_compute_wm_level(struct intel_plane *plane,
986 struct intel_crtc *crtc,
987 const struct intel_plane_state *state,
988 int level)
989{
990 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
991 int clock, htotal, pixel_size, width, wm;
992
993 if (dev_priv->wm.pri_latency[level] == 0)
994 return USHRT_MAX;
995
996 if (!state->visible)
997 return 0;
998
999 pixel_size = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1000 clock = crtc->config->base.adjusted_mode.crtc_clock;
1001 htotal = crtc->config->base.adjusted_mode.crtc_htotal;
1002 width = crtc->config->pipe_src_w;
1003 if (WARN_ON(htotal == 0))
1004 htotal = 1;
1005
1006 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1007 /*
1008 * FIXME the formula gives values that are
1009 * too big for the cursor FIFO, and hence we
1010 * would never be able to use cursors. For
1011 * now just hardcode the watermark.
1012 */
1013 wm = 63;
1014 } else {
1015 wm = vlv_wm_method2(clock, htotal, width, pixel_size,
1016 dev_priv->wm.pri_latency[level] * 10);
1017 }
1018
1019 return min_t(int, wm, USHRT_MAX);
1020}
1021
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001022static void vlv_compute_fifo(struct intel_crtc *crtc)
1023{
1024 struct drm_device *dev = crtc->base.dev;
1025 struct vlv_wm_state *wm_state = &crtc->wm_state;
1026 struct intel_plane *plane;
1027 unsigned int total_rate = 0;
1028 const int fifo_size = 512 - 1;
1029 int fifo_extra, fifo_left = fifo_size;
1030
1031 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1032 struct intel_plane_state *state =
1033 to_intel_plane_state(plane->base.state);
1034
1035 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1036 continue;
1037
1038 if (state->visible) {
1039 wm_state->num_active_planes++;
1040 total_rate += drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1041 }
1042 }
1043
1044 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1045 struct intel_plane_state *state =
1046 to_intel_plane_state(plane->base.state);
1047 unsigned int rate;
1048
1049 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1050 plane->wm.fifo_size = 63;
1051 continue;
1052 }
1053
1054 if (!state->visible) {
1055 plane->wm.fifo_size = 0;
1056 continue;
1057 }
1058
1059 rate = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1060 plane->wm.fifo_size = fifo_size * rate / total_rate;
1061 fifo_left -= plane->wm.fifo_size;
1062 }
1063
1064 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1065
1066 /* spread the remainder evenly */
1067 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1068 int plane_extra;
1069
1070 if (fifo_left == 0)
1071 break;
1072
1073 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1074 continue;
1075
1076 /* give it all to the first plane if none are active */
1077 if (plane->wm.fifo_size == 0 &&
1078 wm_state->num_active_planes)
1079 continue;
1080
1081 plane_extra = min(fifo_extra, fifo_left);
1082 plane->wm.fifo_size += plane_extra;
1083 fifo_left -= plane_extra;
1084 }
1085
1086 WARN_ON(fifo_left != 0);
1087}
1088
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001089static void vlv_invert_wms(struct intel_crtc *crtc)
1090{
1091 struct vlv_wm_state *wm_state = &crtc->wm_state;
1092 int level;
1093
1094 for (level = 0; level < wm_state->num_levels; level++) {
1095 struct drm_device *dev = crtc->base.dev;
1096 const int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1097 struct intel_plane *plane;
1098
1099 wm_state->sr[level].plane = sr_fifo_size - wm_state->sr[level].plane;
1100 wm_state->sr[level].cursor = 63 - wm_state->sr[level].cursor;
1101
1102 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1103 switch (plane->base.type) {
1104 int sprite;
1105 case DRM_PLANE_TYPE_CURSOR:
1106 wm_state->wm[level].cursor = plane->wm.fifo_size -
1107 wm_state->wm[level].cursor;
1108 break;
1109 case DRM_PLANE_TYPE_PRIMARY:
1110 wm_state->wm[level].primary = plane->wm.fifo_size -
1111 wm_state->wm[level].primary;
1112 break;
1113 case DRM_PLANE_TYPE_OVERLAY:
1114 sprite = plane->plane;
1115 wm_state->wm[level].sprite[sprite] = plane->wm.fifo_size -
1116 wm_state->wm[level].sprite[sprite];
1117 break;
1118 }
1119 }
1120 }
1121}
1122
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001123static void vlv_compute_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001124{
1125 struct drm_device *dev = crtc->base.dev;
1126 struct vlv_wm_state *wm_state = &crtc->wm_state;
1127 struct intel_plane *plane;
1128 int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1129 int level;
1130
1131 memset(wm_state, 0, sizeof(*wm_state));
1132
Ville Syrjälä852eb002015-06-24 22:00:07 +03001133 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001134 wm_state->num_levels = to_i915(dev)->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001135
1136 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001137
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001138 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001139
1140 if (wm_state->num_active_planes != 1)
1141 wm_state->cxsr = false;
1142
1143 if (wm_state->cxsr) {
1144 for (level = 0; level < wm_state->num_levels; level++) {
1145 wm_state->sr[level].plane = sr_fifo_size;
1146 wm_state->sr[level].cursor = 63;
1147 }
1148 }
1149
1150 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1151 struct intel_plane_state *state =
1152 to_intel_plane_state(plane->base.state);
1153
1154 if (!state->visible)
1155 continue;
1156
1157 /* normal watermarks */
1158 for (level = 0; level < wm_state->num_levels; level++) {
1159 int wm = vlv_compute_wm_level(plane, crtc, state, level);
1160 int max_wm = plane->base.type == DRM_PLANE_TYPE_CURSOR ? 63 : 511;
1161
1162 /* hack */
1163 if (WARN_ON(level == 0 && wm > max_wm))
1164 wm = max_wm;
1165
1166 if (wm > plane->wm.fifo_size)
1167 break;
1168
1169 switch (plane->base.type) {
1170 int sprite;
1171 case DRM_PLANE_TYPE_CURSOR:
1172 wm_state->wm[level].cursor = wm;
1173 break;
1174 case DRM_PLANE_TYPE_PRIMARY:
1175 wm_state->wm[level].primary = wm;
1176 break;
1177 case DRM_PLANE_TYPE_OVERLAY:
1178 sprite = plane->plane;
1179 wm_state->wm[level].sprite[sprite] = wm;
1180 break;
1181 }
1182 }
1183
1184 wm_state->num_levels = level;
1185
1186 if (!wm_state->cxsr)
1187 continue;
1188
1189 /* maxfifo watermarks */
1190 switch (plane->base.type) {
1191 int sprite, level;
1192 case DRM_PLANE_TYPE_CURSOR:
1193 for (level = 0; level < wm_state->num_levels; level++)
1194 wm_state->sr[level].cursor =
1195 wm_state->sr[level].cursor;
1196 break;
1197 case DRM_PLANE_TYPE_PRIMARY:
1198 for (level = 0; level < wm_state->num_levels; level++)
1199 wm_state->sr[level].plane =
1200 min(wm_state->sr[level].plane,
1201 wm_state->wm[level].primary);
1202 break;
1203 case DRM_PLANE_TYPE_OVERLAY:
1204 sprite = plane->plane;
1205 for (level = 0; level < wm_state->num_levels; level++)
1206 wm_state->sr[level].plane =
1207 min(wm_state->sr[level].plane,
1208 wm_state->wm[level].sprite[sprite]);
1209 break;
1210 }
1211 }
1212
1213 /* clear any (partially) filled invalid levels */
Ville Syrjälä58590c12015-09-08 21:05:12 +03001214 for (level = wm_state->num_levels; level < to_i915(dev)->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001215 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1216 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1217 }
1218
1219 vlv_invert_wms(crtc);
1220}
1221
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001222#define VLV_FIFO(plane, value) \
1223 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1224
1225static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1226{
1227 struct drm_device *dev = crtc->base.dev;
1228 struct drm_i915_private *dev_priv = to_i915(dev);
1229 struct intel_plane *plane;
1230 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1231
1232 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1233 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1234 WARN_ON(plane->wm.fifo_size != 63);
1235 continue;
1236 }
1237
1238 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
1239 sprite0_start = plane->wm.fifo_size;
1240 else if (plane->plane == 0)
1241 sprite1_start = sprite0_start + plane->wm.fifo_size;
1242 else
1243 fifo_size = sprite1_start + plane->wm.fifo_size;
1244 }
1245
1246 WARN_ON(fifo_size != 512 - 1);
1247
1248 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1249 pipe_name(crtc->pipe), sprite0_start,
1250 sprite1_start, fifo_size);
1251
1252 switch (crtc->pipe) {
1253 uint32_t dsparb, dsparb2, dsparb3;
1254 case PIPE_A:
1255 dsparb = I915_READ(DSPARB);
1256 dsparb2 = I915_READ(DSPARB2);
1257
1258 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1259 VLV_FIFO(SPRITEB, 0xff));
1260 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1261 VLV_FIFO(SPRITEB, sprite1_start));
1262
1263 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1264 VLV_FIFO(SPRITEB_HI, 0x1));
1265 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1266 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1267
1268 I915_WRITE(DSPARB, dsparb);
1269 I915_WRITE(DSPARB2, dsparb2);
1270 break;
1271 case PIPE_B:
1272 dsparb = I915_READ(DSPARB);
1273 dsparb2 = I915_READ(DSPARB2);
1274
1275 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1276 VLV_FIFO(SPRITED, 0xff));
1277 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1278 VLV_FIFO(SPRITED, sprite1_start));
1279
1280 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1281 VLV_FIFO(SPRITED_HI, 0xff));
1282 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1283 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1284
1285 I915_WRITE(DSPARB, dsparb);
1286 I915_WRITE(DSPARB2, dsparb2);
1287 break;
1288 case PIPE_C:
1289 dsparb3 = I915_READ(DSPARB3);
1290 dsparb2 = I915_READ(DSPARB2);
1291
1292 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1293 VLV_FIFO(SPRITEF, 0xff));
1294 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1295 VLV_FIFO(SPRITEF, sprite1_start));
1296
1297 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1298 VLV_FIFO(SPRITEF_HI, 0xff));
1299 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1300 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1301
1302 I915_WRITE(DSPARB3, dsparb3);
1303 I915_WRITE(DSPARB2, dsparb2);
1304 break;
1305 default:
1306 break;
1307 }
1308}
1309
1310#undef VLV_FIFO
1311
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001312static void vlv_merge_wm(struct drm_device *dev,
1313 struct vlv_wm_values *wm)
1314{
1315 struct intel_crtc *crtc;
1316 int num_active_crtcs = 0;
1317
Ville Syrjälä58590c12015-09-08 21:05:12 +03001318 wm->level = to_i915(dev)->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001319 wm->cxsr = true;
1320
1321 for_each_intel_crtc(dev, crtc) {
1322 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1323
1324 if (!crtc->active)
1325 continue;
1326
1327 if (!wm_state->cxsr)
1328 wm->cxsr = false;
1329
1330 num_active_crtcs++;
1331 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1332 }
1333
1334 if (num_active_crtcs != 1)
1335 wm->cxsr = false;
1336
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001337 if (num_active_crtcs > 1)
1338 wm->level = VLV_WM_LEVEL_PM2;
1339
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001340 for_each_intel_crtc(dev, crtc) {
1341 struct vlv_wm_state *wm_state = &crtc->wm_state;
1342 enum pipe pipe = crtc->pipe;
1343
1344 if (!crtc->active)
1345 continue;
1346
1347 wm->pipe[pipe] = wm_state->wm[wm->level];
1348 if (wm->cxsr)
1349 wm->sr = wm_state->sr[wm->level];
1350
1351 wm->ddl[pipe].primary = DDL_PRECISION_HIGH | 2;
1352 wm->ddl[pipe].sprite[0] = DDL_PRECISION_HIGH | 2;
1353 wm->ddl[pipe].sprite[1] = DDL_PRECISION_HIGH | 2;
1354 wm->ddl[pipe].cursor = DDL_PRECISION_HIGH | 2;
1355 }
1356}
1357
1358static void vlv_update_wm(struct drm_crtc *crtc)
1359{
1360 struct drm_device *dev = crtc->dev;
1361 struct drm_i915_private *dev_priv = dev->dev_private;
1362 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1363 enum pipe pipe = intel_crtc->pipe;
1364 struct vlv_wm_values wm = {};
1365
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001366 vlv_compute_wm(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001367 vlv_merge_wm(dev, &wm);
1368
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001369 if (memcmp(&dev_priv->wm.vlv, &wm, sizeof(wm)) == 0) {
1370 /* FIXME should be part of crtc atomic commit */
1371 vlv_pipe_set_fifo_size(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001372 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001373 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001374
1375 if (wm.level < VLV_WM_LEVEL_DDR_DVFS &&
1376 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_DDR_DVFS)
1377 chv_set_memory_dvfs(dev_priv, false);
1378
1379 if (wm.level < VLV_WM_LEVEL_PM5 &&
1380 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_PM5)
1381 chv_set_memory_pm5(dev_priv, false);
1382
Ville Syrjälä852eb002015-06-24 22:00:07 +03001383 if (!wm.cxsr && dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001384 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001385
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001386 /* FIXME should be part of crtc atomic commit */
1387 vlv_pipe_set_fifo_size(intel_crtc);
1388
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001389 vlv_write_wm_values(intel_crtc, &wm);
1390
1391 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1392 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
1393 pipe_name(pipe), wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1394 wm.pipe[pipe].sprite[0], wm.pipe[pipe].sprite[1],
1395 wm.sr.plane, wm.sr.cursor, wm.level, wm.cxsr);
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, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001399
1400 if (wm.level >= VLV_WM_LEVEL_PM5 &&
1401 dev_priv->wm.vlv.level < VLV_WM_LEVEL_PM5)
1402 chv_set_memory_pm5(dev_priv, true);
1403
1404 if (wm.level >= VLV_WM_LEVEL_DDR_DVFS &&
1405 dev_priv->wm.vlv.level < VLV_WM_LEVEL_DDR_DVFS)
1406 chv_set_memory_dvfs(dev_priv, true);
1407
1408 dev_priv->wm.vlv = wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001409}
1410
Ville Syrjäläae801522015-03-05 21:19:49 +02001411#define single_plane_enabled(mask) is_power_of_2(mask)
1412
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001413static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001414{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001415 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001416 static const int sr_latency_ns = 12000;
1417 struct drm_i915_private *dev_priv = dev->dev_private;
1418 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1419 int plane_sr, cursor_sr;
1420 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001421 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001422
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001423 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001424 &g4x_wm_info, pessimal_latency_ns,
1425 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001426 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001427 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001428
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001429 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001430 &g4x_wm_info, pessimal_latency_ns,
1431 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001432 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001433 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001434
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001435 if (single_plane_enabled(enabled) &&
1436 g4x_compute_srwm(dev, ffs(enabled) - 1,
1437 sr_latency_ns,
1438 &g4x_wm_info,
1439 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001440 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001441 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001442 } else {
Imre Deak98584252014-06-13 14:54:20 +03001443 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001444 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001445 plane_sr = cursor_sr = 0;
1446 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001447
Ville Syrjäläa5043452014-06-28 02:04:18 +03001448 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1449 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001450 planea_wm, cursora_wm,
1451 planeb_wm, cursorb_wm,
1452 plane_sr, cursor_sr);
1453
1454 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001455 FW_WM(plane_sr, SR) |
1456 FW_WM(cursorb_wm, CURSORB) |
1457 FW_WM(planeb_wm, PLANEB) |
1458 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001459 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001460 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001461 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001462 /* HPLL off in SR has some issues on G4x... disable it */
1463 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001464 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001465 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001466
1467 if (cxsr_enabled)
1468 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001469}
1470
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001471static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001472{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001473 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001474 struct drm_i915_private *dev_priv = dev->dev_private;
1475 struct drm_crtc *crtc;
1476 int srwm = 1;
1477 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001478 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001479
1480 /* Calc sr entries for one plane configs */
1481 crtc = single_enabled_crtc(dev);
1482 if (crtc) {
1483 /* self-refresh has much higher latency */
1484 static const int sr_latency_ns = 12000;
Ville Syrjälä124abe02015-09-08 13:40:45 +03001485 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001486 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001487 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001488 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001489 int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001490 unsigned long line_time_us;
1491 int entries;
1492
Ville Syrjälä922044c2014-02-14 14:18:57 +02001493 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001494
1495 /* Use ns/us then divide to preserve precision */
1496 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1497 pixel_size * hdisplay;
1498 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1499 srwm = I965_FIFO_SIZE - entries;
1500 if (srwm < 0)
1501 srwm = 1;
1502 srwm &= 0x1ff;
1503 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1504 entries, srwm);
1505
1506 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Matt Roper3dd512f2015-02-27 10:12:00 -08001507 pixel_size * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001508 entries = DIV_ROUND_UP(entries,
1509 i965_cursor_wm_info.cacheline_size);
1510 cursor_sr = i965_cursor_wm_info.fifo_size -
1511 (entries + i965_cursor_wm_info.guard_size);
1512
1513 if (cursor_sr > i965_cursor_wm_info.max_wm)
1514 cursor_sr = i965_cursor_wm_info.max_wm;
1515
1516 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1517 "cursor %d\n", srwm, cursor_sr);
1518
Imre Deak98584252014-06-13 14:54:20 +03001519 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001520 } else {
Imre Deak98584252014-06-13 14:54:20 +03001521 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001522 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001523 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001524 }
1525
1526 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1527 srwm);
1528
1529 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001530 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1531 FW_WM(8, CURSORB) |
1532 FW_WM(8, PLANEB) |
1533 FW_WM(8, PLANEA));
1534 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1535 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001536 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001537 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001538
1539 if (cxsr_enabled)
1540 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001541}
1542
Ville Syrjäläf4998962015-03-10 17:02:21 +02001543#undef FW_WM
1544
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001545static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001546{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001547 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001548 struct drm_i915_private *dev_priv = dev->dev_private;
1549 const struct intel_watermark_params *wm_info;
1550 uint32_t fwater_lo;
1551 uint32_t fwater_hi;
1552 int cwm, srwm = 1;
1553 int fifo_size;
1554 int planea_wm, planeb_wm;
1555 struct drm_crtc *crtc, *enabled = NULL;
1556
1557 if (IS_I945GM(dev))
1558 wm_info = &i945_wm_info;
1559 else if (!IS_GEN2(dev))
1560 wm_info = &i915_wm_info;
1561 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001562 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001563
1564 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1565 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001566 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001567 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001568 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001569 if (IS_GEN2(dev))
1570 cpp = 4;
1571
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001572 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001573 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001574 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001575 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001576 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001577 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001578 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001579 if (planea_wm > (long)wm_info->max_wm)
1580 planea_wm = wm_info->max_wm;
1581 }
1582
1583 if (IS_GEN2(dev))
1584 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001585
1586 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1587 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001588 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001589 const struct drm_display_mode *adjusted_mode;
Matt Roper59bea882015-02-27 10:12:01 -08001590 int cpp = crtc->primary->state->fb->bits_per_pixel / 8;
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001591 if (IS_GEN2(dev))
1592 cpp = 4;
1593
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001594 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001595 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001596 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001597 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001598 if (enabled == NULL)
1599 enabled = crtc;
1600 else
1601 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001602 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001603 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001604 if (planeb_wm > (long)wm_info->max_wm)
1605 planeb_wm = wm_info->max_wm;
1606 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001607
1608 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1609
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001610 if (IS_I915GM(dev) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001611 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001612
Matt Roper59bea882015-02-27 10:12:01 -08001613 obj = intel_fb_obj(enabled->primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001614
1615 /* self-refresh seems busted with untiled */
Matt Roper2ff8fde2014-07-08 07:50:07 -07001616 if (obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001617 enabled = NULL;
1618 }
1619
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001620 /*
1621 * Overlay gets an aggressive default since video jitter is bad.
1622 */
1623 cwm = 2;
1624
1625 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001626 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001627
1628 /* Calc sr entries for one plane configs */
1629 if (HAS_FW_BLC(dev) && enabled) {
1630 /* self-refresh has much higher latency */
1631 static const int sr_latency_ns = 6000;
Ville Syrjälä124abe02015-09-08 13:40:45 +03001632 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(enabled)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001633 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001634 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001635 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
Matt Roper59bea882015-02-27 10:12:01 -08001636 int pixel_size = enabled->primary->state->fb->bits_per_pixel / 8;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001637 unsigned long line_time_us;
1638 int entries;
1639
Ville Syrjälä922044c2014-02-14 14:18:57 +02001640 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001641
1642 /* Use ns/us then divide to preserve precision */
1643 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
1644 pixel_size * hdisplay;
1645 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1646 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1647 srwm = wm_info->fifo_size - entries;
1648 if (srwm < 0)
1649 srwm = 1;
1650
1651 if (IS_I945G(dev) || IS_I945GM(dev))
1652 I915_WRITE(FW_BLC_SELF,
1653 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1654 else if (IS_I915GM(dev))
1655 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1656 }
1657
1658 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1659 planea_wm, planeb_wm, cwm, srwm);
1660
1661 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1662 fwater_hi = (cwm & 0x1f);
1663
1664 /* Set request length to 8 cachelines per fetch */
1665 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1666 fwater_hi = fwater_hi | (1 << 8);
1667
1668 I915_WRITE(FW_BLC, fwater_lo);
1669 I915_WRITE(FW_BLC2, fwater_hi);
1670
Imre Deak5209b1f2014-07-01 12:36:17 +03001671 if (enabled)
1672 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001673}
1674
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001675static void i845_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001676{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001677 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001678 struct drm_i915_private *dev_priv = dev->dev_private;
1679 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001680 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001681 uint32_t fwater_lo;
1682 int planea_wm;
1683
1684 crtc = single_enabled_crtc(dev);
1685 if (crtc == NULL)
1686 return;
1687
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001688 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001689 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001690 &i845_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001691 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001692 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001693 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1694 fwater_lo |= (3<<8) | planea_wm;
1695
1696 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1697
1698 I915_WRITE(FW_BLC, fwater_lo);
1699}
1700
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001701uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001702{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001703 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001704
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001705 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001706
1707 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1708 * adjust the pixel_rate here. */
1709
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001710 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001711 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001712 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001713
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001714 pipe_w = pipe_config->pipe_src_w;
1715 pipe_h = pipe_config->pipe_src_h;
1716
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001717 pfit_w = (pfit_size >> 16) & 0xFFFF;
1718 pfit_h = pfit_size & 0xFFFF;
1719 if (pipe_w < pfit_w)
1720 pipe_w = pfit_w;
1721 if (pipe_h < pfit_h)
1722 pipe_h = pfit_h;
1723
1724 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1725 pfit_w * pfit_h);
1726 }
1727
1728 return pixel_rate;
1729}
1730
Ville Syrjälä37126462013-08-01 16:18:55 +03001731/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001732static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001733 uint32_t latency)
1734{
1735 uint64_t ret;
1736
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001737 if (WARN(latency == 0, "Latency value missing\n"))
1738 return UINT_MAX;
1739
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001740 ret = (uint64_t) pixel_rate * bytes_per_pixel * latency;
1741 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1742
1743 return ret;
1744}
1745
Ville Syrjälä37126462013-08-01 16:18:55 +03001746/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001747static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001748 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
1749 uint32_t latency)
1750{
1751 uint32_t ret;
1752
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001753 if (WARN(latency == 0, "Latency value missing\n"))
1754 return UINT_MAX;
1755
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001756 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
1757 ret = (ret + 1) * horiz_pixels * bytes_per_pixel;
1758 ret = DIV_ROUND_UP(ret, 64) + 2;
1759 return ret;
1760}
1761
Ville Syrjälä23297042013-07-05 11:57:17 +03001762static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001763 uint8_t bytes_per_pixel)
1764{
1765 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2;
1766}
1767
Imre Deak820c1982013-12-17 14:46:36 +02001768struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001769 uint16_t pri;
1770 uint16_t spr;
1771 uint16_t cur;
1772 uint16_t fbc;
1773};
1774
Ville Syrjälä240264f2013-08-07 13:29:12 +03001775/* used in computing the new watermarks state */
1776struct intel_wm_config {
1777 unsigned int num_pipes_active;
1778 bool sprites_enabled;
1779 bool sprites_scaled;
Ville Syrjälä240264f2013-08-07 13:29:12 +03001780};
1781
Ville Syrjälä37126462013-08-01 16:18:55 +03001782/*
1783 * For both WM_PIPE and WM_LP.
1784 * mem_value must be in 0.1us units.
1785 */
Matt Roper7221fc32015-09-24 15:53:08 -07001786static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001787 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001788 uint32_t mem_value,
1789 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001790{
Matt Roper43d59ed2015-09-24 15:53:07 -07001791 int bpp = pstate->base.fb ? pstate->base.fb->bits_per_pixel / 8 : 0;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001792 uint32_t method1, method2;
1793
Matt Roper7221fc32015-09-24 15:53:08 -07001794 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001795 return 0;
1796
Matt Roper7221fc32015-09-24 15:53:08 -07001797 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), bpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001798
1799 if (!is_lp)
1800 return method1;
1801
Matt Roper7221fc32015-09-24 15:53:08 -07001802 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1803 cstate->base.adjusted_mode.crtc_htotal,
Matt Roper43d59ed2015-09-24 15:53:07 -07001804 drm_rect_width(&pstate->dst),
1805 bpp,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001806 mem_value);
1807
1808 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001809}
1810
Ville Syrjälä37126462013-08-01 16:18:55 +03001811/*
1812 * For both WM_PIPE and WM_LP.
1813 * mem_value must be in 0.1us units.
1814 */
Matt Roper7221fc32015-09-24 15:53:08 -07001815static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001816 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001817 uint32_t mem_value)
1818{
Matt Roper43d59ed2015-09-24 15:53:07 -07001819 int bpp = pstate->base.fb ? pstate->base.fb->bits_per_pixel / 8 : 0;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001820 uint32_t method1, method2;
1821
Matt Roper7221fc32015-09-24 15:53:08 -07001822 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001823 return 0;
1824
Matt Roper7221fc32015-09-24 15:53:08 -07001825 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), bpp, mem_value);
1826 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1827 cstate->base.adjusted_mode.crtc_htotal,
Matt Roper43d59ed2015-09-24 15:53:07 -07001828 drm_rect_width(&pstate->dst),
1829 bpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001830 mem_value);
1831 return min(method1, method2);
1832}
1833
Ville Syrjälä37126462013-08-01 16:18:55 +03001834/*
1835 * For both WM_PIPE and WM_LP.
1836 * mem_value must be in 0.1us units.
1837 */
Matt Roper7221fc32015-09-24 15:53:08 -07001838static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001839 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001840 uint32_t mem_value)
1841{
Matt Roper43d59ed2015-09-24 15:53:07 -07001842 int bpp = pstate->base.fb ? pstate->base.fb->bits_per_pixel / 8 : 0;
1843
Matt Roper7221fc32015-09-24 15:53:08 -07001844 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001845 return 0;
1846
Matt Roper7221fc32015-09-24 15:53:08 -07001847 return ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1848 cstate->base.adjusted_mode.crtc_htotal,
Matt Roper43d59ed2015-09-24 15:53:07 -07001849 drm_rect_width(&pstate->dst),
1850 bpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001851 mem_value);
1852}
1853
Paulo Zanonicca32e92013-05-31 11:45:06 -03001854/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07001855static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001856 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001857 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001858{
Matt Roper43d59ed2015-09-24 15:53:07 -07001859 int bpp = pstate->base.fb ? pstate->base.fb->bits_per_pixel / 8 : 0;
1860
Matt Roper7221fc32015-09-24 15:53:08 -07001861 if (!cstate->base.active || !pstate->visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001862 return 0;
1863
Matt Roper43d59ed2015-09-24 15:53:07 -07001864 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->dst), bpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001865}
1866
Ville Syrjälä158ae642013-08-07 13:28:19 +03001867static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1868{
Ville Syrjälä416f4722013-11-02 21:07:46 -07001869 if (INTEL_INFO(dev)->gen >= 8)
1870 return 3072;
1871 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001872 return 768;
1873 else
1874 return 512;
1875}
1876
Ville Syrjälä4e975082014-03-07 18:32:11 +02001877static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1878 int level, bool is_sprite)
1879{
1880 if (INTEL_INFO(dev)->gen >= 8)
1881 /* BDW primary/sprite plane watermarks */
1882 return level == 0 ? 255 : 2047;
1883 else if (INTEL_INFO(dev)->gen >= 7)
1884 /* IVB/HSW primary/sprite plane watermarks */
1885 return level == 0 ? 127 : 1023;
1886 else if (!is_sprite)
1887 /* ILK/SNB primary plane watermarks */
1888 return level == 0 ? 127 : 511;
1889 else
1890 /* ILK/SNB sprite plane watermarks */
1891 return level == 0 ? 63 : 255;
1892}
1893
1894static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1895 int level)
1896{
1897 if (INTEL_INFO(dev)->gen >= 7)
1898 return level == 0 ? 63 : 255;
1899 else
1900 return level == 0 ? 31 : 63;
1901}
1902
1903static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1904{
1905 if (INTEL_INFO(dev)->gen >= 8)
1906 return 31;
1907 else
1908 return 15;
1909}
1910
Ville Syrjälä158ae642013-08-07 13:28:19 +03001911/* Calculate the maximum primary/sprite plane watermark */
1912static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1913 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001914 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001915 enum intel_ddb_partitioning ddb_partitioning,
1916 bool is_sprite)
1917{
1918 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001919
1920 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001921 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001922 return 0;
1923
1924 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001925 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001926 fifo_size /= INTEL_INFO(dev)->num_pipes;
1927
1928 /*
1929 * For some reason the non self refresh
1930 * FIFO size is only half of the self
1931 * refresh FIFO size on ILK/SNB.
1932 */
1933 if (INTEL_INFO(dev)->gen <= 6)
1934 fifo_size /= 2;
1935 }
1936
Ville Syrjälä240264f2013-08-07 13:29:12 +03001937 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001938 /* level 0 is always calculated with 1:1 split */
1939 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1940 if (is_sprite)
1941 fifo_size *= 5;
1942 fifo_size /= 6;
1943 } else {
1944 fifo_size /= 2;
1945 }
1946 }
1947
1948 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001949 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001950}
1951
1952/* Calculate the maximum cursor plane watermark */
1953static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001954 int level,
1955 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001956{
1957 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001958 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001959 return 64;
1960
1961 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001962 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001963}
1964
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001965static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001966 int level,
1967 const struct intel_wm_config *config,
1968 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001969 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001970{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001971 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1972 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1973 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02001974 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001975}
1976
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001977static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
1978 int level,
1979 struct ilk_wm_maximums *max)
1980{
1981 max->pri = ilk_plane_wm_reg_max(dev, level, false);
1982 max->spr = ilk_plane_wm_reg_max(dev, level, true);
1983 max->cur = ilk_cursor_wm_reg_max(dev, level);
1984 max->fbc = ilk_fbc_wm_reg_max(dev);
1985}
1986
Ville Syrjäläd9395652013-10-09 19:18:10 +03001987static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001988 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001989 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001990{
1991 bool ret;
1992
1993 /* already determined to be invalid? */
1994 if (!result->enable)
1995 return false;
1996
1997 result->enable = result->pri_val <= max->pri &&
1998 result->spr_val <= max->spr &&
1999 result->cur_val <= max->cur;
2000
2001 ret = result->enable;
2002
2003 /*
2004 * HACK until we can pre-compute everything,
2005 * and thus fail gracefully if LP0 watermarks
2006 * are exceeded...
2007 */
2008 if (level == 0 && !result->enable) {
2009 if (result->pri_val > max->pri)
2010 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2011 level, result->pri_val, max->pri);
2012 if (result->spr_val > max->spr)
2013 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2014 level, result->spr_val, max->spr);
2015 if (result->cur_val > max->cur)
2016 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2017 level, result->cur_val, max->cur);
2018
2019 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2020 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2021 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2022 result->enable = true;
2023 }
2024
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002025 return ret;
2026}
2027
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002028static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002029 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002030 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002031 struct intel_crtc_state *cstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002032 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002033{
Matt Roper43d59ed2015-09-24 15:53:07 -07002034 struct intel_plane *intel_plane;
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002035 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2036 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2037 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2038
2039 /* WM1+ latency values stored in 0.5us units */
2040 if (level > 0) {
2041 pri_latency *= 5;
2042 spr_latency *= 5;
2043 cur_latency *= 5;
2044 }
2045
Matt Roper43d59ed2015-09-24 15:53:07 -07002046 for_each_intel_plane_on_crtc(dev_priv->dev, intel_crtc, intel_plane) {
2047 struct intel_plane_state *pstate =
2048 to_intel_plane_state(intel_plane->base.state);
2049
2050 switch (intel_plane->base.type) {
2051 case DRM_PLANE_TYPE_PRIMARY:
Matt Roper7221fc32015-09-24 15:53:08 -07002052 result->pri_val = ilk_compute_pri_wm(cstate, pstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002053 pri_latency,
2054 level);
Matt Roper7221fc32015-09-24 15:53:08 -07002055 result->fbc_val = ilk_compute_fbc_wm(cstate, pstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002056 result->pri_val);
2057 break;
2058 case DRM_PLANE_TYPE_OVERLAY:
Matt Roper7221fc32015-09-24 15:53:08 -07002059 result->spr_val = ilk_compute_spr_wm(cstate, pstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002060 spr_latency);
2061 break;
2062 case DRM_PLANE_TYPE_CURSOR:
Matt Roper7221fc32015-09-24 15:53:08 -07002063 result->cur_val = ilk_compute_cur_wm(cstate, pstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002064 cur_latency);
2065 break;
2066 }
2067 }
2068
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002069 result->enable = true;
2070}
2071
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002072static uint32_t
2073hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002074{
2075 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002076 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03002077 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002078 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002079
Matt Roper3ef00282015-03-09 10:19:24 -07002080 if (!intel_crtc->active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002081 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002082
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002083 /* The WM are computed with base on how long it takes to fill a single
2084 * row at the given clock rate, multiplied by 8.
2085 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002086 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2087 adjusted_mode->crtc_clock);
2088 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjälä05024da2015-06-03 15:45:08 +03002089 dev_priv->cdclk_freq);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002090
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002091 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2092 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002093}
2094
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002095static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002096{
2097 struct drm_i915_private *dev_priv = dev->dev_private;
2098
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002099 if (IS_GEN9(dev)) {
2100 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002101 int ret, i;
Vandana Kannan367294b2014-11-04 17:06:46 +00002102 int level, max_level = ilk_wm_max_level(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002103
2104 /* read the first set of memory latencies[0:3] */
2105 val = 0; /* data0 to be programmed to 0 for first set */
2106 mutex_lock(&dev_priv->rps.hw_lock);
2107 ret = sandybridge_pcode_read(dev_priv,
2108 GEN9_PCODE_READ_MEM_LATENCY,
2109 &val);
2110 mutex_unlock(&dev_priv->rps.hw_lock);
2111
2112 if (ret) {
2113 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2114 return;
2115 }
2116
2117 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2118 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2119 GEN9_MEM_LATENCY_LEVEL_MASK;
2120 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2121 GEN9_MEM_LATENCY_LEVEL_MASK;
2122 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2123 GEN9_MEM_LATENCY_LEVEL_MASK;
2124
2125 /* read the second set of memory latencies[4:7] */
2126 val = 1; /* data0 to be programmed to 1 for second set */
2127 mutex_lock(&dev_priv->rps.hw_lock);
2128 ret = sandybridge_pcode_read(dev_priv,
2129 GEN9_PCODE_READ_MEM_LATENCY,
2130 &val);
2131 mutex_unlock(&dev_priv->rps.hw_lock);
2132 if (ret) {
2133 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2134 return;
2135 }
2136
2137 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2138 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2139 GEN9_MEM_LATENCY_LEVEL_MASK;
2140 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2141 GEN9_MEM_LATENCY_LEVEL_MASK;
2142 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2143 GEN9_MEM_LATENCY_LEVEL_MASK;
2144
Vandana Kannan367294b2014-11-04 17:06:46 +00002145 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00002146 * WaWmMemoryReadLatency:skl
2147 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002148 * punit doesn't take into account the read latency so we need
2149 * to add 2us to the various latency levels we retrieve from
2150 * the punit.
2151 * - W0 is a bit special in that it's the only level that
2152 * can't be disabled if we want to have display working, so
2153 * we always add 2us there.
2154 * - For levels >=1, punit returns 0us latency when they are
2155 * disabled, so we respect that and don't add 2us then
Vandana Kannan4f947382014-11-04 17:06:47 +00002156 *
2157 * Additionally, if a level n (n > 1) has a 0us latency, all
2158 * levels m (m >= n) need to be disabled. We make sure to
2159 * sanitize the values out of the punit to satisfy this
2160 * requirement.
Vandana Kannan367294b2014-11-04 17:06:46 +00002161 */
2162 wm[0] += 2;
2163 for (level = 1; level <= max_level; level++)
2164 if (wm[level] != 0)
2165 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002166 else {
2167 for (i = level + 1; i <= max_level; i++)
2168 wm[i] = 0;
Vandana Kannan367294b2014-11-04 17:06:46 +00002169
Vandana Kannan4f947382014-11-04 17:06:47 +00002170 break;
2171 }
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002172 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002173 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2174
2175 wm[0] = (sskpd >> 56) & 0xFF;
2176 if (wm[0] == 0)
2177 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002178 wm[1] = (sskpd >> 4) & 0xFF;
2179 wm[2] = (sskpd >> 12) & 0xFF;
2180 wm[3] = (sskpd >> 20) & 0x1FF;
2181 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002182 } else if (INTEL_INFO(dev)->gen >= 6) {
2183 uint32_t sskpd = I915_READ(MCH_SSKPD);
2184
2185 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2186 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2187 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2188 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002189 } else if (INTEL_INFO(dev)->gen >= 5) {
2190 uint32_t mltr = I915_READ(MLTR_ILK);
2191
2192 /* ILK primary LP0 latency is 700 ns */
2193 wm[0] = 7;
2194 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2195 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002196 }
2197}
2198
Ville Syrjälä53615a52013-08-01 16:18:50 +03002199static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2200{
2201 /* ILK sprite LP0 latency is 1300 ns */
2202 if (INTEL_INFO(dev)->gen == 5)
2203 wm[0] = 13;
2204}
2205
2206static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2207{
2208 /* ILK cursor LP0 latency is 1300 ns */
2209 if (INTEL_INFO(dev)->gen == 5)
2210 wm[0] = 13;
2211
2212 /* WaDoubleCursorLP3Latency:ivb */
2213 if (IS_IVYBRIDGE(dev))
2214 wm[3] *= 2;
2215}
2216
Damien Lespiau546c81f2014-05-13 15:30:26 +01002217int ilk_wm_max_level(const struct drm_device *dev)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002218{
2219 /* how many WM levels are we expecting */
Damien Lespiaub6e742f2015-05-09 02:05:55 +01002220 if (INTEL_INFO(dev)->gen >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002221 return 7;
2222 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002223 return 4;
2224 else if (INTEL_INFO(dev)->gen >= 6)
2225 return 3;
2226 else
2227 return 2;
2228}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002229
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002230static void intel_print_wm_latency(struct drm_device *dev,
2231 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002232 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002233{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002234 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002235
2236 for (level = 0; level <= max_level; level++) {
2237 unsigned int latency = wm[level];
2238
2239 if (latency == 0) {
2240 DRM_ERROR("%s WM%d latency not provided\n",
2241 name, level);
2242 continue;
2243 }
2244
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002245 /*
2246 * - latencies are in us on gen9.
2247 * - before then, WM1+ latency values are in 0.5us units
2248 */
2249 if (IS_GEN9(dev))
2250 latency *= 10;
2251 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002252 latency *= 5;
2253
2254 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2255 name, level, wm[level],
2256 latency / 10, latency % 10);
2257 }
2258}
2259
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002260static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2261 uint16_t wm[5], uint16_t min)
2262{
2263 int level, max_level = ilk_wm_max_level(dev_priv->dev);
2264
2265 if (wm[0] >= min)
2266 return false;
2267
2268 wm[0] = max(wm[0], min);
2269 for (level = 1; level <= max_level; level++)
2270 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2271
2272 return true;
2273}
2274
2275static void snb_wm_latency_quirk(struct drm_device *dev)
2276{
2277 struct drm_i915_private *dev_priv = dev->dev_private;
2278 bool changed;
2279
2280 /*
2281 * The BIOS provided WM memory latency values are often
2282 * inadequate for high resolution displays. Adjust them.
2283 */
2284 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2285 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2286 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2287
2288 if (!changed)
2289 return;
2290
2291 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
2292 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2293 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2294 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
2295}
2296
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002297static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002298{
2299 struct drm_i915_private *dev_priv = dev->dev_private;
2300
2301 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2302
2303 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2304 sizeof(dev_priv->wm.pri_latency));
2305 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2306 sizeof(dev_priv->wm.pri_latency));
2307
2308 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2309 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002310
2311 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2312 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2313 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002314
2315 if (IS_GEN6(dev))
2316 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002317}
2318
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002319static void skl_setup_wm_latency(struct drm_device *dev)
2320{
2321 struct drm_i915_private *dev_priv = dev->dev_private;
2322
2323 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
2324 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
2325}
2326
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002327static void ilk_compute_wm_config(struct drm_device *dev,
2328 struct intel_wm_config *config)
2329{
2330 struct intel_crtc *intel_crtc;
2331
2332 /* Compute the currently _active_ config */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002333 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002334 const struct intel_pipe_wm *wm = &intel_crtc->wm.active;
2335
2336 if (!wm->pipe_enabled)
2337 continue;
2338
2339 config->sprites_enabled |= wm->sprites_enabled;
2340 config->sprites_scaled |= wm->sprites_scaled;
2341 config->num_pipes_active++;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002342 }
2343}
2344
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002345/* Compute new watermarks for the pipe */
Matt Roper7221fc32015-09-24 15:53:08 -07002346static bool intel_compute_pipe_wm(struct intel_crtc_state *cstate,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002347 struct intel_pipe_wm *pipe_wm)
2348{
Matt Roper7221fc32015-09-24 15:53:08 -07002349 struct drm_crtc *crtc = cstate->base.crtc;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002350 struct drm_device *dev = crtc->dev;
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002351 const struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper43d59ed2015-09-24 15:53:07 -07002352 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2353 struct intel_plane *intel_plane;
2354 struct intel_plane_state *sprstate = NULL;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002355 int level, max_level = ilk_wm_max_level(dev);
2356 /* LP0 watermark maximums depend on this pipe alone */
2357 struct intel_wm_config config = {
2358 .num_pipes_active = 1,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002359 };
Imre Deak820c1982013-12-17 14:46:36 +02002360 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002361
Matt Roper43d59ed2015-09-24 15:53:07 -07002362 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
2363 if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY) {
2364 sprstate = to_intel_plane_state(intel_plane->base.state);
2365 break;
2366 }
2367 }
2368
2369 config.sprites_enabled = sprstate->visible;
2370 config.sprites_scaled = sprstate->visible &&
2371 (drm_rect_width(&sprstate->dst) != drm_rect_width(&sprstate->src) >> 16 ||
2372 drm_rect_height(&sprstate->dst) != drm_rect_height(&sprstate->src) >> 16);
2373
Matt Roper7221fc32015-09-24 15:53:08 -07002374 pipe_wm->pipe_enabled = cstate->base.active;
Matt Roper43d59ed2015-09-24 15:53:07 -07002375 pipe_wm->sprites_enabled = sprstate->visible;
2376 pipe_wm->sprites_scaled = config.sprites_scaled;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02002377
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002378 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Matt Roper43d59ed2015-09-24 15:53:07 -07002379 if (INTEL_INFO(dev)->gen <= 6 && sprstate->visible)
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002380 max_level = 1;
2381
2382 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Roper43d59ed2015-09-24 15:53:07 -07002383 if (config.sprites_scaled)
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002384 max_level = 0;
2385
Matt Roper7221fc32015-09-24 15:53:08 -07002386 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002387
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002388 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02002389 pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002390
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002391 /* LP0 watermarks always use 1/2 DDB partitioning */
2392 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2393
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002394 /* At least LP0 must be valid */
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002395 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0]))
2396 return false;
2397
2398 ilk_compute_wm_reg_maximums(dev, 1, &max);
2399
2400 for (level = 1; level <= max_level; level++) {
2401 struct intel_wm_level wm = {};
2402
Matt Roper7221fc32015-09-24 15:53:08 -07002403 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate, &wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002404
2405 /*
2406 * Disable any watermark level that exceeds the
2407 * register maximums since such watermarks are
2408 * always invalid.
2409 */
2410 if (!ilk_validate_wm_level(level, &max, &wm))
2411 break;
2412
2413 pipe_wm->wm[level] = wm;
2414 }
2415
2416 return true;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002417}
2418
2419/*
2420 * Merge the watermarks from all active pipes for a specific level.
2421 */
2422static void ilk_merge_wm_level(struct drm_device *dev,
2423 int level,
2424 struct intel_wm_level *ret_wm)
2425{
2426 const struct intel_crtc *intel_crtc;
2427
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002428 ret_wm->enable = true;
2429
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002430 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002431 const struct intel_pipe_wm *active = &intel_crtc->wm.active;
2432 const struct intel_wm_level *wm = &active->wm[level];
2433
2434 if (!active->pipe_enabled)
2435 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002436
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002437 /*
2438 * The watermark values may have been used in the past,
2439 * so we must maintain them in the registers for some
2440 * time even if the level is now disabled.
2441 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002442 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002443 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002444
2445 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2446 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2447 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2448 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2449 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002450}
2451
2452/*
2453 * Merge all low power watermarks for all active pipes.
2454 */
2455static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002456 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002457 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002458 struct intel_pipe_wm *merged)
2459{
Paulo Zanoni7733b492015-07-07 15:26:04 -03002460 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002461 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002462 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002463
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002464 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2465 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2466 config->num_pipes_active > 1)
2467 return;
2468
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002469 /* ILK: FBC WM must be disabled always */
2470 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002471
2472 /* merge each WM1+ level */
2473 for (level = 1; level <= max_level; level++) {
2474 struct intel_wm_level *wm = &merged->wm[level];
2475
2476 ilk_merge_wm_level(dev, level, wm);
2477
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002478 if (level > last_enabled_level)
2479 wm->enable = false;
2480 else if (!ilk_validate_wm_level(level, max, wm))
2481 /* make sure all following levels get disabled */
2482 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002483
2484 /*
2485 * The spec says it is preferred to disable
2486 * FBC WMs instead of disabling a WM level.
2487 */
2488 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002489 if (wm->enable)
2490 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002491 wm->fbc_val = 0;
2492 }
2493 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002494
2495 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2496 /*
2497 * FIXME this is racy. FBC might get enabled later.
2498 * What we should check here is whether FBC can be
2499 * enabled sometime later.
2500 */
Paulo Zanoni7733b492015-07-07 15:26:04 -03002501 if (IS_GEN5(dev) && !merged->fbc_wm_enabled &&
2502 intel_fbc_enabled(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002503 for (level = 2; level <= max_level; level++) {
2504 struct intel_wm_level *wm = &merged->wm[level];
2505
2506 wm->enable = false;
2507 }
2508 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002509}
2510
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002511static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2512{
2513 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2514 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2515}
2516
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002517/* The value we need to program into the WM_LPx latency field */
2518static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2519{
2520 struct drm_i915_private *dev_priv = dev->dev_private;
2521
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002522 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002523 return 2 * level;
2524 else
2525 return dev_priv->wm.pri_latency[level];
2526}
2527
Imre Deak820c1982013-12-17 14:46:36 +02002528static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002529 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002530 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002531 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002532{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002533 struct intel_crtc *intel_crtc;
2534 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002535
Ville Syrjälä0362c782013-10-09 19:17:57 +03002536 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002537 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002538
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002539 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002540 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002541 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002542
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002543 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002544
Ville Syrjälä0362c782013-10-09 19:17:57 +03002545 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002546
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002547 /*
2548 * Maintain the watermark values even if the level is
2549 * disabled. Doing otherwise could cause underruns.
2550 */
2551 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002552 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002553 (r->pri_val << WM1_LP_SR_SHIFT) |
2554 r->cur_val;
2555
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002556 if (r->enable)
2557 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2558
Ville Syrjälä416f4722013-11-02 21:07:46 -07002559 if (INTEL_INFO(dev)->gen >= 8)
2560 results->wm_lp[wm_lp - 1] |=
2561 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2562 else
2563 results->wm_lp[wm_lp - 1] |=
2564 r->fbc_val << WM1_LP_FBC_SHIFT;
2565
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002566 /*
2567 * Always set WM1S_LP_EN when spr_val != 0, even if the
2568 * level is disabled. Doing otherwise could cause underruns.
2569 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002570 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2571 WARN_ON(wm_lp != 1);
2572 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2573 } else
2574 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002575 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002576
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002577 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002578 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002579 enum pipe pipe = intel_crtc->pipe;
2580 const struct intel_wm_level *r =
2581 &intel_crtc->wm.active.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002582
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002583 if (WARN_ON(!r->enable))
2584 continue;
2585
2586 results->wm_linetime[pipe] = intel_crtc->wm.active.linetime;
2587
2588 results->wm_pipe[pipe] =
2589 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2590 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2591 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002592 }
2593}
2594
Paulo Zanoni861f3382013-05-31 10:19:21 -03002595/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2596 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002597static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002598 struct intel_pipe_wm *r1,
2599 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002600{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002601 int level, max_level = ilk_wm_max_level(dev);
2602 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002603
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002604 for (level = 1; level <= max_level; level++) {
2605 if (r1->wm[level].enable)
2606 level1 = level;
2607 if (r2->wm[level].enable)
2608 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002609 }
2610
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002611 if (level1 == level2) {
2612 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002613 return r2;
2614 else
2615 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002616 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002617 return r1;
2618 } else {
2619 return r2;
2620 }
2621}
2622
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002623/* dirty bits used to track which watermarks need changes */
2624#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2625#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2626#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2627#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2628#define WM_DIRTY_FBC (1 << 24)
2629#define WM_DIRTY_DDB (1 << 25)
2630
Damien Lespiau055e3932014-08-18 13:49:10 +01002631static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002632 const struct ilk_wm_values *old,
2633 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002634{
2635 unsigned int dirty = 0;
2636 enum pipe pipe;
2637 int wm_lp;
2638
Damien Lespiau055e3932014-08-18 13:49:10 +01002639 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002640 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2641 dirty |= WM_DIRTY_LINETIME(pipe);
2642 /* Must disable LP1+ watermarks too */
2643 dirty |= WM_DIRTY_LP_ALL;
2644 }
2645
2646 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2647 dirty |= WM_DIRTY_PIPE(pipe);
2648 /* Must disable LP1+ watermarks too */
2649 dirty |= WM_DIRTY_LP_ALL;
2650 }
2651 }
2652
2653 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2654 dirty |= WM_DIRTY_FBC;
2655 /* Must disable LP1+ watermarks too */
2656 dirty |= WM_DIRTY_LP_ALL;
2657 }
2658
2659 if (old->partitioning != new->partitioning) {
2660 dirty |= WM_DIRTY_DDB;
2661 /* Must disable LP1+ watermarks too */
2662 dirty |= WM_DIRTY_LP_ALL;
2663 }
2664
2665 /* LP1+ watermarks already deemed dirty, no need to continue */
2666 if (dirty & WM_DIRTY_LP_ALL)
2667 return dirty;
2668
2669 /* Find the lowest numbered LP1+ watermark in need of an update... */
2670 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2671 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2672 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2673 break;
2674 }
2675
2676 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2677 for (; wm_lp <= 3; wm_lp++)
2678 dirty |= WM_DIRTY_LP(wm_lp);
2679
2680 return dirty;
2681}
2682
Ville Syrjälä8553c182013-12-05 15:51:39 +02002683static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2684 unsigned int dirty)
2685{
Imre Deak820c1982013-12-17 14:46:36 +02002686 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002687 bool changed = false;
2688
2689 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2690 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2691 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2692 changed = true;
2693 }
2694 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2695 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2696 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2697 changed = true;
2698 }
2699 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2700 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2701 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2702 changed = true;
2703 }
2704
2705 /*
2706 * Don't touch WM1S_LP_EN here.
2707 * Doing so could cause underruns.
2708 */
2709
2710 return changed;
2711}
2712
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002713/*
2714 * The spec says we shouldn't write when we don't need, because every write
2715 * causes WMs to be re-evaluated, expending some power.
2716 */
Imre Deak820c1982013-12-17 14:46:36 +02002717static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2718 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002719{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002720 struct drm_device *dev = dev_priv->dev;
Imre Deak820c1982013-12-17 14:46:36 +02002721 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002722 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002723 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002724
Damien Lespiau055e3932014-08-18 13:49:10 +01002725 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002726 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002727 return;
2728
Ville Syrjälä8553c182013-12-05 15:51:39 +02002729 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002730
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002731 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002732 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002733 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002734 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002735 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002736 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2737
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002738 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002739 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002740 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002741 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002742 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002743 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2744
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002745 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002746 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002747 val = I915_READ(WM_MISC);
2748 if (results->partitioning == INTEL_DDB_PART_1_2)
2749 val &= ~WM_MISC_DATA_PARTITION_5_6;
2750 else
2751 val |= WM_MISC_DATA_PARTITION_5_6;
2752 I915_WRITE(WM_MISC, val);
2753 } else {
2754 val = I915_READ(DISP_ARB_CTL2);
2755 if (results->partitioning == INTEL_DDB_PART_1_2)
2756 val &= ~DISP_DATA_PARTITION_5_6;
2757 else
2758 val |= DISP_DATA_PARTITION_5_6;
2759 I915_WRITE(DISP_ARB_CTL2, val);
2760 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002761 }
2762
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002763 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002764 val = I915_READ(DISP_ARB_CTL);
2765 if (results->enable_fbc_wm)
2766 val &= ~DISP_FBC_WM_DIS;
2767 else
2768 val |= DISP_FBC_WM_DIS;
2769 I915_WRITE(DISP_ARB_CTL, val);
2770 }
2771
Imre Deak954911e2013-12-17 14:46:34 +02002772 if (dirty & WM_DIRTY_LP(1) &&
2773 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2774 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2775
2776 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002777 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2778 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2779 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2780 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2781 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002782
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002783 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002784 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002785 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002786 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002787 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002788 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002789
2790 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002791}
2792
Ville Syrjälä8553c182013-12-05 15:51:39 +02002793static bool ilk_disable_lp_wm(struct drm_device *dev)
2794{
2795 struct drm_i915_private *dev_priv = dev->dev_private;
2796
2797 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2798}
2799
Damien Lespiaub9cec072014-11-04 17:06:43 +00002800/*
2801 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
2802 * different active planes.
2803 */
2804
2805#define SKL_DDB_SIZE 896 /* in blocks */
Damien Lespiau43d735a2015-03-17 11:39:34 +02002806#define BXT_DDB_SIZE 512
Damien Lespiaub9cec072014-11-04 17:06:43 +00002807
Matt Roper3a05f5e2015-09-24 15:53:11 -07002808/*
2809 * Return the index of a plane in the SKL DDB and wm result arrays. Primary
2810 * plane is always in slot 0, cursor is always in slot I915_MAX_PLANES-1, and
2811 * other universal planes are in indices 1..n. Note that this may leave unused
2812 * indices between the top "sprite" plane and the cursor.
2813 */
2814static int
2815skl_wm_plane_id(const struct intel_plane *plane)
2816{
2817 switch (plane->base.type) {
2818 case DRM_PLANE_TYPE_PRIMARY:
2819 return 0;
2820 case DRM_PLANE_TYPE_CURSOR:
2821 return PLANE_CURSOR;
2822 case DRM_PLANE_TYPE_OVERLAY:
2823 return plane->plane + 1;
2824 default:
2825 MISSING_CASE(plane->base.type);
2826 return plane->plane;
2827 }
2828}
2829
Damien Lespiaub9cec072014-11-04 17:06:43 +00002830static void
2831skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper3a05f5e2015-09-24 15:53:11 -07002832 const struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00002833 const struct intel_wm_config *config,
Damien Lespiaub9cec072014-11-04 17:06:43 +00002834 struct skl_ddb_entry *alloc /* out */)
2835{
Matt Roper3a05f5e2015-09-24 15:53:11 -07002836 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002837 struct drm_crtc *crtc;
2838 unsigned int pipe_size, ddb_size;
2839 int nth_active_pipe;
2840
Matt Roper3a05f5e2015-09-24 15:53:11 -07002841 if (!cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00002842 alloc->start = 0;
2843 alloc->end = 0;
2844 return;
2845 }
2846
Damien Lespiau43d735a2015-03-17 11:39:34 +02002847 if (IS_BROXTON(dev))
2848 ddb_size = BXT_DDB_SIZE;
2849 else
2850 ddb_size = SKL_DDB_SIZE;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002851
2852 ddb_size -= 4; /* 4 blocks for bypass path allocation */
2853
2854 nth_active_pipe = 0;
2855 for_each_crtc(dev, crtc) {
Matt Roper3ef00282015-03-09 10:19:24 -07002856 if (!to_intel_crtc(crtc)->active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002857 continue;
2858
2859 if (crtc == for_crtc)
2860 break;
2861
2862 nth_active_pipe++;
2863 }
2864
2865 pipe_size = ddb_size / config->num_pipes_active;
2866 alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active;
Damien Lespiau16160e32014-11-04 17:06:53 +00002867 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002868}
2869
2870static unsigned int skl_cursor_allocation(const struct intel_wm_config *config)
2871{
2872 if (config->num_pipes_active == 1)
2873 return 32;
2874
2875 return 8;
2876}
2877
Damien Lespiaua269c582014-11-04 17:06:49 +00002878static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
2879{
2880 entry->start = reg & 0x3ff;
2881 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00002882 if (entry->end)
2883 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00002884}
2885
Damien Lespiau08db6652014-11-04 17:06:52 +00002886void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2887 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00002888{
Damien Lespiaua269c582014-11-04 17:06:49 +00002889 enum pipe pipe;
2890 int plane;
2891 u32 val;
2892
2893 for_each_pipe(dev_priv, pipe) {
Damien Lespiaudd740782015-02-28 14:54:08 +00002894 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00002895 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
2896 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
2897 val);
2898 }
2899
2900 val = I915_READ(CUR_BUF_CFG(pipe));
Matt Roper4969d332015-09-24 15:53:10 -07002901 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][PLANE_CURSOR],
2902 val);
Damien Lespiaua269c582014-11-04 17:06:49 +00002903 }
2904}
2905
Damien Lespiaub9cec072014-11-04 17:06:43 +00002906static unsigned int
Matt Roper3a05f5e2015-09-24 15:53:11 -07002907skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
2908 const struct drm_plane_state *pstate,
2909 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002910{
Matt Roper3a05f5e2015-09-24 15:53:11 -07002911 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
2912 struct drm_framebuffer *fb = pstate->fb;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002913
2914 /* for planar format */
Matt Roper3a05f5e2015-09-24 15:53:11 -07002915 if (fb->pixel_format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002916 if (y) /* y-plane data rate */
Matt Roper3a05f5e2015-09-24 15:53:11 -07002917 return intel_crtc->config->pipe_src_w *
2918 intel_crtc->config->pipe_src_h *
2919 drm_format_plane_cpp(fb->pixel_format, 0);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002920 else /* uv-plane data rate */
Matt Roper3a05f5e2015-09-24 15:53:11 -07002921 return (intel_crtc->config->pipe_src_w/2) *
2922 (intel_crtc->config->pipe_src_h/2) *
2923 drm_format_plane_cpp(fb->pixel_format, 1);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002924 }
2925
2926 /* for packed formats */
Matt Roper3a05f5e2015-09-24 15:53:11 -07002927 return intel_crtc->config->pipe_src_w *
2928 intel_crtc->config->pipe_src_h *
2929 drm_format_plane_cpp(fb->pixel_format, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002930}
2931
2932/*
2933 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
2934 * a 8192x4096@32bpp framebuffer:
2935 * 3 * 4096 * 8192 * 4 < 2^32
2936 */
2937static unsigned int
Matt Roper3a05f5e2015-09-24 15:53:11 -07002938skl_get_total_relative_data_rate(const struct intel_crtc_state *cstate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002939{
Matt Roper3a05f5e2015-09-24 15:53:11 -07002940 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
2941 struct drm_device *dev = intel_crtc->base.dev;
2942 const struct intel_plane *intel_plane;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002943 unsigned int total_data_rate = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002944
Matt Roper3a05f5e2015-09-24 15:53:11 -07002945 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
2946 const struct drm_plane_state *pstate = intel_plane->base.state;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002947
Matt Roper3a05f5e2015-09-24 15:53:11 -07002948 if (pstate->fb == NULL)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002949 continue;
2950
Matt Roper3a05f5e2015-09-24 15:53:11 -07002951 /* packed/uv */
2952 total_data_rate += skl_plane_relative_data_rate(cstate,
2953 pstate,
2954 0);
2955
2956 if (pstate->fb->pixel_format == DRM_FORMAT_NV12)
2957 /* y-plane */
2958 total_data_rate += skl_plane_relative_data_rate(cstate,
2959 pstate,
2960 1);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002961 }
2962
2963 return total_data_rate;
2964}
2965
2966static void
Matt Roper3a05f5e2015-09-24 15:53:11 -07002967skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00002968 const struct intel_wm_config *config,
Damien Lespiaub9cec072014-11-04 17:06:43 +00002969 struct skl_ddb_allocation *ddb /* out */)
2970{
Matt Roper3a05f5e2015-09-24 15:53:11 -07002971 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002972 struct drm_device *dev = crtc->dev;
2973 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper3a05f5e2015-09-24 15:53:11 -07002974 struct intel_plane *intel_plane;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002975 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002976 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002977 uint16_t alloc_size, start, cursor_blocks;
Damien Lespiau80958152015-02-09 13:35:10 +00002978 uint16_t minimum[I915_MAX_PLANES];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07002979 uint16_t y_minimum[I915_MAX_PLANES];
Damien Lespiaub9cec072014-11-04 17:06:43 +00002980 unsigned int total_data_rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002981
Matt Roper3a05f5e2015-09-24 15:53:11 -07002982 skl_ddb_get_pipe_allocation_limits(dev, cstate, config, alloc);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002983 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002984 if (alloc_size == 0) {
2985 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roper4969d332015-09-24 15:53:10 -07002986 memset(&ddb->plane[pipe][PLANE_CURSOR], 0,
2987 sizeof(ddb->plane[pipe][PLANE_CURSOR]));
Damien Lespiaub9cec072014-11-04 17:06:43 +00002988 return;
2989 }
2990
2991 cursor_blocks = skl_cursor_allocation(config);
Matt Roper4969d332015-09-24 15:53:10 -07002992 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - cursor_blocks;
2993 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002994
2995 alloc_size -= cursor_blocks;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00002996 alloc->end -= cursor_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002997
Damien Lespiau80958152015-02-09 13:35:10 +00002998 /* 1. Allocate the mininum required blocks for each active plane */
Matt Roper3a05f5e2015-09-24 15:53:11 -07002999 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
3000 struct drm_plane *plane = &intel_plane->base;
3001 struct drm_framebuffer *fb = plane->fb;
3002 int id = skl_wm_plane_id(intel_plane);
Damien Lespiau80958152015-02-09 13:35:10 +00003003
Matt Roper3a05f5e2015-09-24 15:53:11 -07003004 if (fb == NULL)
3005 continue;
3006 if (plane->type == DRM_PLANE_TYPE_CURSOR)
Damien Lespiau80958152015-02-09 13:35:10 +00003007 continue;
3008
Matt Roper3a05f5e2015-09-24 15:53:11 -07003009 minimum[id] = 8;
3010 alloc_size -= minimum[id];
3011 y_minimum[id] = (fb->pixel_format == DRM_FORMAT_NV12) ? 8 : 0;
3012 alloc_size -= y_minimum[id];
Damien Lespiau80958152015-02-09 13:35:10 +00003013 }
3014
Damien Lespiaub9cec072014-11-04 17:06:43 +00003015 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003016 * 2. Distribute the remaining space in proportion to the amount of
3017 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003018 *
3019 * FIXME: we may not allocate every single block here.
3020 */
Matt Roper3a05f5e2015-09-24 15:53:11 -07003021 total_data_rate = skl_get_total_relative_data_rate(cstate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003022
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003023 start = alloc->start;
Matt Roper3a05f5e2015-09-24 15:53:11 -07003024 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
3025 struct drm_plane *plane = &intel_plane->base;
3026 struct drm_plane_state *pstate = intel_plane->base.state;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003027 unsigned int data_rate, y_data_rate;
3028 uint16_t plane_blocks, y_plane_blocks = 0;
Matt Roper3a05f5e2015-09-24 15:53:11 -07003029 int id = skl_wm_plane_id(intel_plane);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003030
Matt Roper3a05f5e2015-09-24 15:53:11 -07003031 if (pstate->fb == NULL)
3032 continue;
3033 if (plane->type == DRM_PLANE_TYPE_CURSOR)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003034 continue;
3035
Matt Roper3a05f5e2015-09-24 15:53:11 -07003036 data_rate = skl_plane_relative_data_rate(cstate, pstate, 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003037
3038 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003039 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003040 * promote the expression to 64 bits to avoid overflowing, the
3041 * result is < available as data_rate / total_data_rate < 1
3042 */
Matt Roper3a05f5e2015-09-24 15:53:11 -07003043 plane_blocks = minimum[id];
Damien Lespiau80958152015-02-09 13:35:10 +00003044 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3045 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003046
Matt Roper3a05f5e2015-09-24 15:53:11 -07003047 ddb->plane[pipe][id].start = start;
3048 ddb->plane[pipe][id].end = start + plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003049
3050 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003051
3052 /*
3053 * allocation for y_plane part of planar format:
3054 */
Matt Roper3a05f5e2015-09-24 15:53:11 -07003055 if (pstate->fb->pixel_format == DRM_FORMAT_NV12) {
3056 y_data_rate = skl_plane_relative_data_rate(cstate,
3057 pstate,
3058 1);
3059 y_plane_blocks = y_minimum[id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003060 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3061 total_data_rate);
3062
Matt Roper3a05f5e2015-09-24 15:53:11 -07003063 ddb->y_plane[pipe][id].start = start;
3064 ddb->y_plane[pipe][id].end = start + y_plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003065
3066 start += y_plane_blocks;
3067 }
3068
Damien Lespiaub9cec072014-11-04 17:06:43 +00003069 }
3070
3071}
3072
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02003073static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003074{
3075 /* TODO: Take into account the scalers once we support them */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02003076 return config->base.adjusted_mode.crtc_clock;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003077}
3078
3079/*
3080 * The max latency should be 257 (max the punit can code is 255 and we add 2us
3081 * for the read latency) and bytes_per_pixel should always be <= 8, so that
3082 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3083 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3084*/
3085static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel,
3086 uint32_t latency)
3087{
3088 uint32_t wm_intermediate_val, ret;
3089
3090 if (latency == 0)
3091 return UINT_MAX;
3092
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003093 wm_intermediate_val = latency * pixel_rate * bytes_per_pixel / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003094 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
3095
3096 return ret;
3097}
3098
3099static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
3100 uint32_t horiz_pixels, uint8_t bytes_per_pixel,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003101 uint64_t tiling, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003102{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003103 uint32_t ret;
3104 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3105 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003106
3107 if (latency == 0)
3108 return UINT_MAX;
3109
3110 plane_bytes_per_line = horiz_pixels * bytes_per_pixel;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003111
3112 if (tiling == I915_FORMAT_MOD_Y_TILED ||
3113 tiling == I915_FORMAT_MOD_Yf_TILED) {
3114 plane_bytes_per_line *= 4;
3115 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3116 plane_blocks_per_line /= 4;
3117 } else {
3118 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3119 }
3120
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003121 wm_intermediate_val = latency * pixel_rate;
3122 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003123 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003124
3125 return ret;
3126}
3127
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003128static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb,
3129 const struct intel_crtc *intel_crtc)
3130{
3131 struct drm_device *dev = intel_crtc->base.dev;
3132 struct drm_i915_private *dev_priv = dev->dev_private;
3133 const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3134 enum pipe pipe = intel_crtc->pipe;
3135
3136 if (memcmp(new_ddb->plane[pipe], cur_ddb->plane[pipe],
3137 sizeof(new_ddb->plane[pipe])))
3138 return true;
3139
Matt Roper4969d332015-09-24 15:53:10 -07003140 if (memcmp(&new_ddb->plane[pipe][PLANE_CURSOR], &cur_ddb->plane[pipe][PLANE_CURSOR],
3141 sizeof(new_ddb->plane[pipe][PLANE_CURSOR])))
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003142 return true;
3143
3144 return false;
3145}
3146
3147static void skl_compute_wm_global_parameters(struct drm_device *dev,
3148 struct intel_wm_config *config)
3149{
3150 struct drm_crtc *crtc;
3151 struct drm_plane *plane;
3152
3153 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
Matt Roper3ef00282015-03-09 10:19:24 -07003154 config->num_pipes_active += to_intel_crtc(crtc)->active;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003155
3156 /* FIXME: I don't think we need those two global parameters on SKL */
3157 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
3158 struct intel_plane *intel_plane = to_intel_plane(plane);
3159
3160 config->sprites_enabled |= intel_plane->wm.enabled;
3161 config->sprites_scaled |= intel_plane->wm.scaled;
3162 }
3163}
3164
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003165static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
Matt Roper3a05f5e2015-09-24 15:53:11 -07003166 struct intel_crtc_state *cstate,
3167 struct intel_plane *intel_plane,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003168 uint16_t ddb_allocation,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003169 int level,
Damien Lespiauafb024a2014-11-04 17:06:59 +00003170 uint16_t *out_blocks, /* out */
3171 uint8_t *out_lines /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003172{
Matt Roper3a05f5e2015-09-24 15:53:11 -07003173 struct drm_plane *plane = &intel_plane->base;
3174 struct drm_framebuffer *fb = plane->state->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003175 uint32_t latency = dev_priv->wm.skl_latency[level];
3176 uint32_t method1, method2;
3177 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3178 uint32_t res_blocks, res_lines;
3179 uint32_t selected_result;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003180 uint8_t bytes_per_pixel;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003181
Matt Roper3a05f5e2015-09-24 15:53:11 -07003182 if (latency == 0 || !cstate->base.active || !fb)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003183 return false;
3184
Matt Roper3a05f5e2015-09-24 15:53:11 -07003185 bytes_per_pixel = (fb->pixel_format == DRM_FORMAT_NV12) ?
3186 drm_format_plane_cpp(DRM_FORMAT_NV12, 0) :
3187 drm_format_plane_cpp(DRM_FORMAT_NV12, 1);
3188 method1 = skl_wm_method1(skl_pipe_pixel_rate(cstate),
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003189 bytes_per_pixel,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003190 latency);
Matt Roper3a05f5e2015-09-24 15:53:11 -07003191 method2 = skl_wm_method2(skl_pipe_pixel_rate(cstate),
3192 cstate->base.adjusted_mode.crtc_htotal,
3193 cstate->pipe_src_w,
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003194 bytes_per_pixel,
Matt Roper3a05f5e2015-09-24 15:53:11 -07003195 fb->modifier[0],
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003196 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003197
Matt Roper3a05f5e2015-09-24 15:53:11 -07003198 plane_bytes_per_line = cstate->pipe_src_w * bytes_per_pixel;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003199 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003200
Matt Roper3a05f5e2015-09-24 15:53:11 -07003201 if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED ||
3202 fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003203 uint32_t min_scanlines = 4;
3204 uint32_t y_tile_minimum;
Matt Roper3a05f5e2015-09-24 15:53:11 -07003205 if (intel_rotation_90_or_270(plane->state->rotation)) {
3206 int bpp = (fb->pixel_format == DRM_FORMAT_NV12) ?
3207 drm_format_plane_cpp(fb->pixel_format, 1) :
3208 drm_format_plane_cpp(fb->pixel_format, 0);
3209
3210 switch (bpp) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003211 case 1:
3212 min_scanlines = 16;
3213 break;
3214 case 2:
3215 min_scanlines = 8;
3216 break;
3217 case 8:
3218 WARN(1, "Unsupported pixel depth for rotation");
kbuild test robot2f0b5792015-03-26 22:30:21 +08003219 }
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003220 }
3221 y_tile_minimum = plane_blocks_per_line * min_scanlines;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003222 selected_result = max(method2, y_tile_minimum);
3223 } else {
3224 if ((ddb_allocation / plane_blocks_per_line) >= 1)
3225 selected_result = min(method1, method2);
3226 else
3227 selected_result = method1;
3228 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003229
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003230 res_blocks = selected_result + 1;
3231 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003232
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003233 if (level >= 1 && level <= 7) {
Matt Roper3a05f5e2015-09-24 15:53:11 -07003234 if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED ||
3235 fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED)
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003236 res_lines += 4;
3237 else
3238 res_blocks++;
3239 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003240
3241 if (res_blocks >= ddb_allocation || res_lines > 31)
Damien Lespiaue6d66172014-11-04 17:06:55 +00003242 return false;
3243
3244 *out_blocks = res_blocks;
3245 *out_lines = res_lines;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003246
3247 return true;
3248}
3249
3250static void skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3251 struct skl_ddb_allocation *ddb,
Matt Roper3a05f5e2015-09-24 15:53:11 -07003252 struct intel_crtc_state *cstate,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003253 int level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003254 struct skl_wm_level *result)
3255{
Matt Roper3a05f5e2015-09-24 15:53:11 -07003256 struct drm_device *dev = dev_priv->dev;
3257 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
3258 struct intel_plane *intel_plane;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003259 uint16_t ddb_blocks;
Matt Roper3a05f5e2015-09-24 15:53:11 -07003260 enum pipe pipe = intel_crtc->pipe;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003261
Matt Roper3a05f5e2015-09-24 15:53:11 -07003262 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
3263 int i = skl_wm_plane_id(intel_plane);
3264
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003265 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
3266
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003267 result->plane_en[i] = skl_compute_plane_wm(dev_priv,
Matt Roper3a05f5e2015-09-24 15:53:11 -07003268 cstate,
3269 intel_plane,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003270 ddb_blocks,
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003271 level,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003272 &result->plane_res_b[i],
3273 &result->plane_res_l[i]);
3274 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003275}
3276
Damien Lespiau407b50f2014-11-04 17:06:57 +00003277static uint32_t
Matt Roper3a05f5e2015-09-24 15:53:11 -07003278skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003279{
Matt Roper3a05f5e2015-09-24 15:53:11 -07003280 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003281 return 0;
3282
Matt Roper3a05f5e2015-09-24 15:53:11 -07003283 if (WARN_ON(skl_pipe_pixel_rate(cstate) == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003284 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003285
Matt Roper3a05f5e2015-09-24 15:53:11 -07003286 return DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal * 1000,
3287 skl_pipe_pixel_rate(cstate));
Damien Lespiau407b50f2014-11-04 17:06:57 +00003288}
3289
Matt Roper3a05f5e2015-09-24 15:53:11 -07003290static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003291 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003292{
Matt Roper3a05f5e2015-09-24 15:53:11 -07003293 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiau9414f562014-11-04 17:06:58 +00003294 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper3a05f5e2015-09-24 15:53:11 -07003295 struct intel_plane *intel_plane;
Damien Lespiau9414f562014-11-04 17:06:58 +00003296
Matt Roper3a05f5e2015-09-24 15:53:11 -07003297 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003298 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003299
3300 /* Until we know more, just disable transition WMs */
Matt Roper3a05f5e2015-09-24 15:53:11 -07003301 for_each_intel_plane_on_crtc(crtc->dev, intel_crtc, intel_plane) {
3302 int i = skl_wm_plane_id(intel_plane);
3303
Damien Lespiau9414f562014-11-04 17:06:58 +00003304 trans_wm->plane_en[i] = false;
Matt Roper3a05f5e2015-09-24 15:53:11 -07003305 }
Damien Lespiau407b50f2014-11-04 17:06:57 +00003306}
3307
Matt Roper3a05f5e2015-09-24 15:53:11 -07003308static void skl_compute_pipe_wm(struct intel_crtc_state *cstate,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003309 struct skl_ddb_allocation *ddb,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003310 struct skl_pipe_wm *pipe_wm)
3311{
Matt Roper3a05f5e2015-09-24 15:53:11 -07003312 struct drm_device *dev = cstate->base.crtc->dev;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003313 const struct drm_i915_private *dev_priv = dev->dev_private;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003314 int level, max_level = ilk_wm_max_level(dev);
3315
3316 for (level = 0; level <= max_level; level++) {
Matt Roper3a05f5e2015-09-24 15:53:11 -07003317 skl_compute_wm_level(dev_priv, ddb, cstate,
3318 level, &pipe_wm->wm[level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003319 }
Matt Roper3a05f5e2015-09-24 15:53:11 -07003320 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003321
Matt Roper3a05f5e2015-09-24 15:53:11 -07003322 skl_compute_transition_wm(cstate, &pipe_wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003323}
3324
3325static void skl_compute_wm_results(struct drm_device *dev,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003326 struct skl_pipe_wm *p_wm,
3327 struct skl_wm_values *r,
3328 struct intel_crtc *intel_crtc)
3329{
3330 int level, max_level = ilk_wm_max_level(dev);
3331 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau9414f562014-11-04 17:06:58 +00003332 uint32_t temp;
3333 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003334
3335 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003336 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3337 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003338
3339 temp |= p_wm->wm[level].plane_res_l[i] <<
3340 PLANE_WM_LINES_SHIFT;
3341 temp |= p_wm->wm[level].plane_res_b[i];
3342 if (p_wm->wm[level].plane_en[i])
3343 temp |= PLANE_WM_EN;
3344
3345 r->plane[pipe][i][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003346 }
3347
3348 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003349
Matt Roper4969d332015-09-24 15:53:10 -07003350 temp |= p_wm->wm[level].plane_res_l[PLANE_CURSOR] << PLANE_WM_LINES_SHIFT;
3351 temp |= p_wm->wm[level].plane_res_b[PLANE_CURSOR];
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003352
Matt Roper4969d332015-09-24 15:53:10 -07003353 if (p_wm->wm[level].plane_en[PLANE_CURSOR])
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003354 temp |= PLANE_WM_EN;
3355
Matt Roper4969d332015-09-24 15:53:10 -07003356 r->plane[pipe][PLANE_CURSOR][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003357
3358 }
3359
Damien Lespiau9414f562014-11-04 17:06:58 +00003360 /* transition WMs */
3361 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3362 temp = 0;
3363 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
3364 temp |= p_wm->trans_wm.plane_res_b[i];
3365 if (p_wm->trans_wm.plane_en[i])
3366 temp |= PLANE_WM_EN;
3367
3368 r->plane_trans[pipe][i] = temp;
3369 }
3370
3371 temp = 0;
Matt Roper4969d332015-09-24 15:53:10 -07003372 temp |= p_wm->trans_wm.plane_res_l[PLANE_CURSOR] << PLANE_WM_LINES_SHIFT;
3373 temp |= p_wm->trans_wm.plane_res_b[PLANE_CURSOR];
3374 if (p_wm->trans_wm.plane_en[PLANE_CURSOR])
Damien Lespiau9414f562014-11-04 17:06:58 +00003375 temp |= PLANE_WM_EN;
3376
Matt Roper4969d332015-09-24 15:53:10 -07003377 r->plane_trans[pipe][PLANE_CURSOR] = temp;
Damien Lespiau9414f562014-11-04 17:06:58 +00003378
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003379 r->wm_linetime[pipe] = p_wm->linetime;
3380}
3381
Damien Lespiau16160e32014-11-04 17:06:53 +00003382static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, uint32_t reg,
3383 const struct skl_ddb_entry *entry)
3384{
3385 if (entry->end)
3386 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3387 else
3388 I915_WRITE(reg, 0);
3389}
3390
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003391static void skl_write_wm_values(struct drm_i915_private *dev_priv,
3392 const struct skl_wm_values *new)
3393{
3394 struct drm_device *dev = dev_priv->dev;
3395 struct intel_crtc *crtc;
3396
3397 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
3398 int i, level, max_level = ilk_wm_max_level(dev);
3399 enum pipe pipe = crtc->pipe;
3400
Damien Lespiau5d374d92014-11-04 17:07:00 +00003401 if (!new->dirty[pipe])
3402 continue;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003403
Damien Lespiau5d374d92014-11-04 17:07:00 +00003404 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
3405
3406 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003407 for (i = 0; i < intel_num_planes(crtc); i++)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003408 I915_WRITE(PLANE_WM(pipe, i, level),
3409 new->plane[pipe][i][level]);
3410 I915_WRITE(CUR_WM(pipe, level),
Matt Roper4969d332015-09-24 15:53:10 -07003411 new->plane[pipe][PLANE_CURSOR][level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003412 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003413 for (i = 0; i < intel_num_planes(crtc); i++)
3414 I915_WRITE(PLANE_WM_TRANS(pipe, i),
3415 new->plane_trans[pipe][i]);
Matt Roper4969d332015-09-24 15:53:10 -07003416 I915_WRITE(CUR_WM_TRANS(pipe),
3417 new->plane_trans[pipe][PLANE_CURSOR]);
Damien Lespiau5d374d92014-11-04 17:07:00 +00003418
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003419 for (i = 0; i < intel_num_planes(crtc); i++) {
Damien Lespiau5d374d92014-11-04 17:07:00 +00003420 skl_ddb_entry_write(dev_priv,
3421 PLANE_BUF_CFG(pipe, i),
3422 &new->ddb.plane[pipe][i]);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003423 skl_ddb_entry_write(dev_priv,
3424 PLANE_NV12_BUF_CFG(pipe, i),
3425 &new->ddb.y_plane[pipe][i]);
3426 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003427
3428 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
Matt Roper4969d332015-09-24 15:53:10 -07003429 &new->ddb.plane[pipe][PLANE_CURSOR]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003430 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003431}
3432
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003433/*
3434 * When setting up a new DDB allocation arrangement, we need to correctly
3435 * sequence the times at which the new allocations for the pipes are taken into
3436 * account or we'll have pipes fetching from space previously allocated to
3437 * another pipe.
3438 *
3439 * Roughly the sequence looks like:
3440 * 1. re-allocate the pipe(s) with the allocation being reduced and not
3441 * overlapping with a previous light-up pipe (another way to put it is:
3442 * pipes with their new allocation strickly included into their old ones).
3443 * 2. re-allocate the other pipes that get their allocation reduced
3444 * 3. allocate the pipes having their allocation increased
3445 *
3446 * Steps 1. and 2. are here to take care of the following case:
3447 * - Initially DDB looks like this:
3448 * | B | C |
3449 * - enable pipe A.
3450 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
3451 * allocation
3452 * | A | B | C |
3453 *
3454 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
3455 */
3456
Damien Lespiaud21b7952014-11-04 17:07:03 +00003457static void
3458skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003459{
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003460 int plane;
3461
Damien Lespiaud21b7952014-11-04 17:07:03 +00003462 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
3463
Damien Lespiaudd740782015-02-28 14:54:08 +00003464 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003465 I915_WRITE(PLANE_SURF(pipe, plane),
3466 I915_READ(PLANE_SURF(pipe, plane)));
3467 }
3468 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3469}
3470
3471static bool
3472skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
3473 const struct skl_ddb_allocation *new,
3474 enum pipe pipe)
3475{
3476 uint16_t old_size, new_size;
3477
3478 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
3479 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
3480
3481 return old_size != new_size &&
3482 new->pipe[pipe].start >= old->pipe[pipe].start &&
3483 new->pipe[pipe].end <= old->pipe[pipe].end;
3484}
3485
3486static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
3487 struct skl_wm_values *new_values)
3488{
3489 struct drm_device *dev = dev_priv->dev;
3490 struct skl_ddb_allocation *cur_ddb, *new_ddb;
Ville Syrjäläc929cb42015-04-02 18:28:07 +03003491 bool reallocated[I915_MAX_PIPES] = {};
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003492 struct intel_crtc *crtc;
3493 enum pipe pipe;
3494
3495 new_ddb = &new_values->ddb;
3496 cur_ddb = &dev_priv->wm.skl_hw.ddb;
3497
3498 /*
3499 * First pass: flush the pipes with the new allocation contained into
3500 * the old space.
3501 *
3502 * We'll wait for the vblank on those pipes to ensure we can safely
3503 * re-allocate the freed space without this pipe fetching from it.
3504 */
3505 for_each_intel_crtc(dev, crtc) {
3506 if (!crtc->active)
3507 continue;
3508
3509 pipe = crtc->pipe;
3510
3511 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
3512 continue;
3513
Damien Lespiaud21b7952014-11-04 17:07:03 +00003514 skl_wm_flush_pipe(dev_priv, pipe, 1);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003515 intel_wait_for_vblank(dev, pipe);
3516
3517 reallocated[pipe] = true;
3518 }
3519
3520
3521 /*
3522 * Second pass: flush the pipes that are having their allocation
3523 * reduced, but overlapping with a previous allocation.
3524 *
3525 * Here as well we need to wait for the vblank to make sure the freed
3526 * space is not used anymore.
3527 */
3528 for_each_intel_crtc(dev, crtc) {
3529 if (!crtc->active)
3530 continue;
3531
3532 pipe = crtc->pipe;
3533
3534 if (reallocated[pipe])
3535 continue;
3536
3537 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3538 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
Damien Lespiaud21b7952014-11-04 17:07:03 +00003539 skl_wm_flush_pipe(dev_priv, pipe, 2);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003540 intel_wait_for_vblank(dev, pipe);
Sonika Jindald9d8e6b2014-12-11 17:58:15 +05303541 reallocated[pipe] = true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003542 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003543 }
3544
3545 /*
3546 * Third pass: flush the pipes that got more space allocated.
3547 *
3548 * We don't need to actively wait for the update here, next vblank
3549 * will just get more DDB space with the correct WM values.
3550 */
3551 for_each_intel_crtc(dev, crtc) {
3552 if (!crtc->active)
3553 continue;
3554
3555 pipe = crtc->pipe;
3556
3557 /*
3558 * At this point, only the pipes more space than before are
3559 * left to re-allocate.
3560 */
3561 if (reallocated[pipe])
3562 continue;
3563
Damien Lespiaud21b7952014-11-04 17:07:03 +00003564 skl_wm_flush_pipe(dev_priv, pipe, 3);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003565 }
3566}
3567
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003568static bool skl_update_pipe_wm(struct drm_crtc *crtc,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003569 struct intel_wm_config *config,
3570 struct skl_ddb_allocation *ddb, /* out */
3571 struct skl_pipe_wm *pipe_wm /* out */)
3572{
3573 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper3a05f5e2015-09-24 15:53:11 -07003574 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003575
Matt Roper3a05f5e2015-09-24 15:53:11 -07003576 skl_allocate_pipe_ddb(cstate, config, ddb);
3577 skl_compute_pipe_wm(cstate, ddb, pipe_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003578
3579 if (!memcmp(&intel_crtc->wm.skl_active, pipe_wm, sizeof(*pipe_wm)))
3580 return false;
3581
3582 intel_crtc->wm.skl_active = *pipe_wm;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003583
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003584 return true;
3585}
3586
3587static void skl_update_other_pipe_wm(struct drm_device *dev,
3588 struct drm_crtc *crtc,
3589 struct intel_wm_config *config,
3590 struct skl_wm_values *r)
3591{
3592 struct intel_crtc *intel_crtc;
3593 struct intel_crtc *this_crtc = to_intel_crtc(crtc);
3594
3595 /*
3596 * If the WM update hasn't changed the allocation for this_crtc (the
3597 * crtc we are currently computing the new WM values for), other
3598 * enabled crtcs will keep the same allocation and we don't need to
3599 * recompute anything for them.
3600 */
3601 if (!skl_ddb_allocation_changed(&r->ddb, this_crtc))
3602 return;
3603
3604 /*
3605 * Otherwise, because of this_crtc being freshly enabled/disabled, the
3606 * other active pipes need new DDB allocation and WM values.
3607 */
3608 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
3609 base.head) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003610 struct skl_pipe_wm pipe_wm = {};
3611 bool wm_changed;
3612
3613 if (this_crtc->pipe == intel_crtc->pipe)
3614 continue;
3615
3616 if (!intel_crtc->active)
3617 continue;
3618
Matt Roper3a05f5e2015-09-24 15:53:11 -07003619 wm_changed = skl_update_pipe_wm(&intel_crtc->base, config,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003620 &r->ddb, &pipe_wm);
3621
3622 /*
3623 * If we end up re-computing the other pipe WM values, it's
3624 * because it was really needed, so we expect the WM values to
3625 * be different.
3626 */
3627 WARN_ON(!wm_changed);
3628
Matt Roper3a05f5e2015-09-24 15:53:11 -07003629 skl_compute_wm_results(dev, &pipe_wm, r, intel_crtc);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003630 r->dirty[intel_crtc->pipe] = true;
3631 }
3632}
3633
Bob Paauweadda50b2015-07-21 10:42:53 -07003634static void skl_clear_wm(struct skl_wm_values *watermarks, enum pipe pipe)
3635{
3636 watermarks->wm_linetime[pipe] = 0;
3637 memset(watermarks->plane[pipe], 0,
3638 sizeof(uint32_t) * 8 * I915_MAX_PLANES);
Bob Paauweadda50b2015-07-21 10:42:53 -07003639 memset(watermarks->plane_trans[pipe],
3640 0, sizeof(uint32_t) * I915_MAX_PLANES);
Matt Roper4969d332015-09-24 15:53:10 -07003641 watermarks->plane_trans[pipe][PLANE_CURSOR] = 0;
Bob Paauweadda50b2015-07-21 10:42:53 -07003642
3643 /* Clear ddb entries for pipe */
3644 memset(&watermarks->ddb.pipe[pipe], 0, sizeof(struct skl_ddb_entry));
3645 memset(&watermarks->ddb.plane[pipe], 0,
3646 sizeof(struct skl_ddb_entry) * I915_MAX_PLANES);
3647 memset(&watermarks->ddb.y_plane[pipe], 0,
3648 sizeof(struct skl_ddb_entry) * I915_MAX_PLANES);
Matt Roper4969d332015-09-24 15:53:10 -07003649 memset(&watermarks->ddb.plane[pipe][PLANE_CURSOR], 0,
3650 sizeof(struct skl_ddb_entry));
Bob Paauweadda50b2015-07-21 10:42:53 -07003651
3652}
3653
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003654static void skl_update_wm(struct drm_crtc *crtc)
3655{
3656 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3657 struct drm_device *dev = crtc->dev;
3658 struct drm_i915_private *dev_priv = dev->dev_private;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003659 struct skl_wm_values *results = &dev_priv->wm.skl_results;
3660 struct skl_pipe_wm pipe_wm = {};
3661 struct intel_wm_config config = {};
3662
Bob Paauweadda50b2015-07-21 10:42:53 -07003663
3664 /* Clear all dirty flags */
3665 memset(results->dirty, 0, sizeof(bool) * I915_MAX_PIPES);
3666
3667 skl_clear_wm(results, intel_crtc->pipe);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003668
3669 skl_compute_wm_global_parameters(dev, &config);
3670
Matt Roper3a05f5e2015-09-24 15:53:11 -07003671 if (!skl_update_pipe_wm(crtc, &config, &results->ddb, &pipe_wm))
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003672 return;
3673
Matt Roper3a05f5e2015-09-24 15:53:11 -07003674 skl_compute_wm_results(dev, &pipe_wm, results, intel_crtc);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003675 results->dirty[intel_crtc->pipe] = true;
3676
3677 skl_update_other_pipe_wm(dev, crtc, &config, results);
3678 skl_write_wm_values(dev_priv, results);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003679 skl_flush_wm_values(dev_priv, results);
Damien Lespiau53b0deb2014-11-04 17:06:48 +00003680
3681 /* store the new configuration */
3682 dev_priv->wm.skl_hw = *results;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003683}
3684
3685static void
3686skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc,
3687 uint32_t sprite_width, uint32_t sprite_height,
3688 int pixel_size, bool enabled, bool scaled)
3689{
3690 struct intel_plane *intel_plane = to_intel_plane(plane);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003691 struct drm_framebuffer *fb = plane->state->fb;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003692
3693 intel_plane->wm.enabled = enabled;
3694 intel_plane->wm.scaled = scaled;
3695 intel_plane->wm.horiz_pixels = sprite_width;
3696 intel_plane->wm.vert_pixels = sprite_height;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003697 intel_plane->wm.tiling = DRM_FORMAT_MOD_NONE;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003698
3699 /* For planar: Bpp is for UV plane, y_Bpp is for Y plane */
3700 intel_plane->wm.bytes_per_pixel =
3701 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3702 drm_format_plane_cpp(plane->state->fb->pixel_format, 1) : pixel_size;
3703 intel_plane->wm.y_bytes_per_pixel =
3704 (fb && fb->pixel_format == DRM_FORMAT_NV12) ?
3705 drm_format_plane_cpp(plane->state->fb->pixel_format, 0) : 0;
3706
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003707 /*
3708 * Framebuffer can be NULL on plane disable, but it does not
3709 * matter for watermarks if we assume no tiling in that case.
3710 */
3711 if (fb)
3712 intel_plane->wm.tiling = fb->modifier[0];
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003713 intel_plane->wm.rotation = plane->state->rotation;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003714
3715 skl_update_wm(crtc);
3716}
3717
Imre Deak820c1982013-12-17 14:46:36 +02003718static void ilk_update_wm(struct drm_crtc *crtc)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003719{
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003720 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper7221fc32015-09-24 15:53:08 -07003721 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003722 struct drm_device *dev = crtc->dev;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003723 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003724 struct ilk_wm_maximums max;
Imre Deak820c1982013-12-17 14:46:36 +02003725 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003726 enum intel_ddb_partitioning partitioning;
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003727 struct intel_pipe_wm pipe_wm = {};
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003728 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003729 struct intel_wm_config config = {};
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003730
Matt Roper7221fc32015-09-24 15:53:08 -07003731 WARN_ON(cstate->base.active != intel_crtc->active);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003732
Matt Roper7221fc32015-09-24 15:53:08 -07003733 intel_compute_pipe_wm(cstate, &pipe_wm);
Ville Syrjälä7c4a3952013-10-09 19:17:56 +03003734
3735 if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm)))
3736 return;
3737
3738 intel_crtc->wm.active = pipe_wm;
3739
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003740 ilk_compute_wm_config(dev, &config);
3741
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003742 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003743 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03003744
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003745 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03003746 if (INTEL_INFO(dev)->gen >= 7 &&
3747 config.num_pipes_active == 1 && config.sprites_enabled) {
Ville Syrjälä34982fe2013-10-09 19:18:09 +03003748 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003749 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03003750
Imre Deak820c1982013-12-17 14:46:36 +02003751 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03003752 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003753 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003754 }
3755
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003756 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03003757 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003758
Imre Deak820c1982013-12-17 14:46:36 +02003759 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003760
Imre Deak820c1982013-12-17 14:46:36 +02003761 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003762}
3763
Damien Lespiaued57cb82014-07-15 09:21:24 +02003764static void
3765ilk_update_sprite_wm(struct drm_plane *plane,
3766 struct drm_crtc *crtc,
3767 uint32_t sprite_width, uint32_t sprite_height,
3768 int pixel_size, bool enabled, bool scaled)
Paulo Zanoni526682e2013-05-24 11:59:18 -03003769{
Ville Syrjälä8553c182013-12-05 15:51:39 +02003770 struct drm_device *dev = plane->dev;
Ville Syrjäläadf3d352013-08-06 22:24:11 +03003771 struct intel_plane *intel_plane = to_intel_plane(plane);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003772
Ville Syrjälä8553c182013-12-05 15:51:39 +02003773 /*
3774 * IVB workaround: must disable low power watermarks for at least
3775 * one frame before enabling scaling. LP watermarks can be re-enabled
3776 * when scaling is disabled.
3777 *
3778 * WaCxSRDisabledForSpriteScaling:ivb
3779 */
3780 if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev))
3781 intel_wait_for_vblank(dev, intel_plane->pipe);
3782
Imre Deak820c1982013-12-17 14:46:36 +02003783 ilk_update_wm(crtc);
Paulo Zanoni526682e2013-05-24 11:59:18 -03003784}
3785
Pradeep Bhat30789992014-11-04 17:06:45 +00003786static void skl_pipe_wm_active_state(uint32_t val,
3787 struct skl_pipe_wm *active,
3788 bool is_transwm,
3789 bool is_cursor,
3790 int i,
3791 int level)
3792{
3793 bool is_enabled = (val & PLANE_WM_EN) != 0;
3794
3795 if (!is_transwm) {
3796 if (!is_cursor) {
3797 active->wm[level].plane_en[i] = is_enabled;
3798 active->wm[level].plane_res_b[i] =
3799 val & PLANE_WM_BLOCKS_MASK;
3800 active->wm[level].plane_res_l[i] =
3801 (val >> PLANE_WM_LINES_SHIFT) &
3802 PLANE_WM_LINES_MASK;
3803 } else {
Matt Roper4969d332015-09-24 15:53:10 -07003804 active->wm[level].plane_en[PLANE_CURSOR] = is_enabled;
3805 active->wm[level].plane_res_b[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003806 val & PLANE_WM_BLOCKS_MASK;
Matt Roper4969d332015-09-24 15:53:10 -07003807 active->wm[level].plane_res_l[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003808 (val >> PLANE_WM_LINES_SHIFT) &
3809 PLANE_WM_LINES_MASK;
3810 }
3811 } else {
3812 if (!is_cursor) {
3813 active->trans_wm.plane_en[i] = is_enabled;
3814 active->trans_wm.plane_res_b[i] =
3815 val & PLANE_WM_BLOCKS_MASK;
3816 active->trans_wm.plane_res_l[i] =
3817 (val >> PLANE_WM_LINES_SHIFT) &
3818 PLANE_WM_LINES_MASK;
3819 } else {
Matt Roper4969d332015-09-24 15:53:10 -07003820 active->trans_wm.plane_en[PLANE_CURSOR] = is_enabled;
3821 active->trans_wm.plane_res_b[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003822 val & PLANE_WM_BLOCKS_MASK;
Matt Roper4969d332015-09-24 15:53:10 -07003823 active->trans_wm.plane_res_l[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00003824 (val >> PLANE_WM_LINES_SHIFT) &
3825 PLANE_WM_LINES_MASK;
3826 }
3827 }
3828}
3829
3830static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3831{
3832 struct drm_device *dev = crtc->dev;
3833 struct drm_i915_private *dev_priv = dev->dev_private;
3834 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
3835 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3836 struct skl_pipe_wm *active = &intel_crtc->wm.skl_active;
3837 enum pipe pipe = intel_crtc->pipe;
3838 int level, i, max_level;
3839 uint32_t temp;
3840
3841 max_level = ilk_wm_max_level(dev);
3842
3843 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
3844
3845 for (level = 0; level <= max_level; level++) {
3846 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3847 hw->plane[pipe][i][level] =
3848 I915_READ(PLANE_WM(pipe, i, level));
Matt Roper4969d332015-09-24 15:53:10 -07003849 hw->plane[pipe][PLANE_CURSOR][level] = I915_READ(CUR_WM(pipe, level));
Pradeep Bhat30789992014-11-04 17:06:45 +00003850 }
3851
3852 for (i = 0; i < intel_num_planes(intel_crtc); i++)
3853 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
Matt Roper4969d332015-09-24 15:53:10 -07003854 hw->plane_trans[pipe][PLANE_CURSOR] = I915_READ(CUR_WM_TRANS(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00003855
Matt Roper3ef00282015-03-09 10:19:24 -07003856 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00003857 return;
3858
3859 hw->dirty[pipe] = true;
3860
3861 active->linetime = hw->wm_linetime[pipe];
3862
3863 for (level = 0; level <= max_level; level++) {
3864 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3865 temp = hw->plane[pipe][i][level];
3866 skl_pipe_wm_active_state(temp, active, false,
3867 false, i, level);
3868 }
Matt Roper4969d332015-09-24 15:53:10 -07003869 temp = hw->plane[pipe][PLANE_CURSOR][level];
Pradeep Bhat30789992014-11-04 17:06:45 +00003870 skl_pipe_wm_active_state(temp, active, false, true, i, level);
3871 }
3872
3873 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3874 temp = hw->plane_trans[pipe][i];
3875 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
3876 }
3877
Matt Roper4969d332015-09-24 15:53:10 -07003878 temp = hw->plane_trans[pipe][PLANE_CURSOR];
Pradeep Bhat30789992014-11-04 17:06:45 +00003879 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
3880}
3881
3882void skl_wm_get_hw_state(struct drm_device *dev)
3883{
Damien Lespiaua269c582014-11-04 17:06:49 +00003884 struct drm_i915_private *dev_priv = dev->dev_private;
3885 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00003886 struct drm_crtc *crtc;
3887
Damien Lespiaua269c582014-11-04 17:06:49 +00003888 skl_ddb_get_hw_state(dev_priv, ddb);
Pradeep Bhat30789992014-11-04 17:06:45 +00003889 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3890 skl_pipe_wm_get_hw_state(crtc);
3891}
3892
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003893static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
3894{
3895 struct drm_device *dev = crtc->dev;
3896 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02003897 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003898 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3899 struct intel_pipe_wm *active = &intel_crtc->wm.active;
3900 enum pipe pipe = intel_crtc->pipe;
3901 static const unsigned int wm0_pipe_reg[] = {
3902 [PIPE_A] = WM0_PIPEA_ILK,
3903 [PIPE_B] = WM0_PIPEB_ILK,
3904 [PIPE_C] = WM0_PIPEC_IVB,
3905 };
3906
3907 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläa42a5712014-01-07 16:14:08 +02003908 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02003909 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003910
Matt Roper3ef00282015-03-09 10:19:24 -07003911 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02003912
3913 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03003914 u32 tmp = hw->wm_pipe[pipe];
3915
3916 /*
3917 * For active pipes LP0 watermark is marked as
3918 * enabled, and LP1+ watermaks as disabled since
3919 * we can't really reverse compute them in case
3920 * multiple pipes are active.
3921 */
3922 active->wm[0].enable = true;
3923 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
3924 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
3925 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
3926 active->linetime = hw->wm_linetime[pipe];
3927 } else {
3928 int level, max_level = ilk_wm_max_level(dev);
3929
3930 /*
3931 * For inactive pipes, all watermark levels
3932 * should be marked as enabled but zeroed,
3933 * which is what we'd compute them to.
3934 */
3935 for (level = 0; level <= max_level; level++)
3936 active->wm[level].enable = true;
3937 }
3938}
3939
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03003940#define _FW_WM(value, plane) \
3941 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
3942#define _FW_WM_VLV(value, plane) \
3943 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
3944
3945static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
3946 struct vlv_wm_values *wm)
3947{
3948 enum pipe pipe;
3949 uint32_t tmp;
3950
3951 for_each_pipe(dev_priv, pipe) {
3952 tmp = I915_READ(VLV_DDL(pipe));
3953
3954 wm->ddl[pipe].primary =
3955 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3956 wm->ddl[pipe].cursor =
3957 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3958 wm->ddl[pipe].sprite[0] =
3959 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3960 wm->ddl[pipe].sprite[1] =
3961 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
3962 }
3963
3964 tmp = I915_READ(DSPFW1);
3965 wm->sr.plane = _FW_WM(tmp, SR);
3966 wm->pipe[PIPE_B].cursor = _FW_WM(tmp, CURSORB);
3967 wm->pipe[PIPE_B].primary = _FW_WM_VLV(tmp, PLANEB);
3968 wm->pipe[PIPE_A].primary = _FW_WM_VLV(tmp, PLANEA);
3969
3970 tmp = I915_READ(DSPFW2);
3971 wm->pipe[PIPE_A].sprite[1] = _FW_WM_VLV(tmp, SPRITEB);
3972 wm->pipe[PIPE_A].cursor = _FW_WM(tmp, CURSORA);
3973 wm->pipe[PIPE_A].sprite[0] = _FW_WM_VLV(tmp, SPRITEA);
3974
3975 tmp = I915_READ(DSPFW3);
3976 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
3977
3978 if (IS_CHERRYVIEW(dev_priv)) {
3979 tmp = I915_READ(DSPFW7_CHV);
3980 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
3981 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
3982
3983 tmp = I915_READ(DSPFW8_CHV);
3984 wm->pipe[PIPE_C].sprite[1] = _FW_WM_VLV(tmp, SPRITEF);
3985 wm->pipe[PIPE_C].sprite[0] = _FW_WM_VLV(tmp, SPRITEE);
3986
3987 tmp = I915_READ(DSPFW9_CHV);
3988 wm->pipe[PIPE_C].primary = _FW_WM_VLV(tmp, PLANEC);
3989 wm->pipe[PIPE_C].cursor = _FW_WM(tmp, CURSORC);
3990
3991 tmp = I915_READ(DSPHOWM);
3992 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
3993 wm->pipe[PIPE_C].sprite[1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
3994 wm->pipe[PIPE_C].sprite[0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
3995 wm->pipe[PIPE_C].primary |= _FW_WM(tmp, PLANEC_HI) << 8;
3996 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
3997 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
3998 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
3999 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4000 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4001 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4002 } else {
4003 tmp = I915_READ(DSPFW7);
4004 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
4005 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
4006
4007 tmp = I915_READ(DSPHOWM);
4008 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
4009 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4010 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4011 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4012 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4013 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4014 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4015 }
4016}
4017
4018#undef _FW_WM
4019#undef _FW_WM_VLV
4020
4021void vlv_wm_get_hw_state(struct drm_device *dev)
4022{
4023 struct drm_i915_private *dev_priv = to_i915(dev);
4024 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4025 struct intel_plane *plane;
4026 enum pipe pipe;
4027 u32 val;
4028
4029 vlv_read_wm_values(dev_priv, wm);
4030
4031 for_each_intel_plane(dev, plane) {
4032 switch (plane->base.type) {
4033 int sprite;
4034 case DRM_PLANE_TYPE_CURSOR:
4035 plane->wm.fifo_size = 63;
4036 break;
4037 case DRM_PLANE_TYPE_PRIMARY:
4038 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, 0);
4039 break;
4040 case DRM_PLANE_TYPE_OVERLAY:
4041 sprite = plane->plane;
4042 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, sprite + 1);
4043 break;
4044 }
4045 }
4046
4047 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4048 wm->level = VLV_WM_LEVEL_PM2;
4049
4050 if (IS_CHERRYVIEW(dev_priv)) {
4051 mutex_lock(&dev_priv->rps.hw_lock);
4052
4053 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4054 if (val & DSP_MAXFIFO_PM5_ENABLE)
4055 wm->level = VLV_WM_LEVEL_PM5;
4056
Ville Syrjälä58590c12015-09-08 21:05:12 +03004057 /*
4058 * If DDR DVFS is disabled in the BIOS, Punit
4059 * will never ack the request. So if that happens
4060 * assume we don't have to enable/disable DDR DVFS
4061 * dynamically. To test that just set the REQ_ACK
4062 * bit to poke the Punit, but don't change the
4063 * HIGH/LOW bits so that we don't actually change
4064 * the current state.
4065 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004066 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004067 val |= FORCE_DDR_FREQ_REQ_ACK;
4068 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4069
4070 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4071 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4072 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4073 "assuming DDR DVFS is disabled\n");
4074 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4075 } else {
4076 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4077 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4078 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4079 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004080
4081 mutex_unlock(&dev_priv->rps.hw_lock);
4082 }
4083
4084 for_each_pipe(dev_priv, pipe)
4085 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
4086 pipe_name(pipe), wm->pipe[pipe].primary, wm->pipe[pipe].cursor,
4087 wm->pipe[pipe].sprite[0], wm->pipe[pipe].sprite[1]);
4088
4089 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4090 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4091}
4092
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004093void ilk_wm_get_hw_state(struct drm_device *dev)
4094{
4095 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02004096 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004097 struct drm_crtc *crtc;
4098
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004099 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004100 ilk_pipe_wm_get_hw_state(crtc);
4101
4102 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4103 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4104 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4105
4106 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004107 if (INTEL_INFO(dev)->gen >= 7) {
4108 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4109 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4110 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004111
Ville Syrjäläa42a5712014-01-07 16:14:08 +02004112 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004113 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4114 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
4115 else if (IS_IVYBRIDGE(dev))
4116 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4117 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004118
4119 hw->enable_fbc_wm =
4120 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4121}
4122
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004123/**
4124 * intel_update_watermarks - update FIFO watermark values based on current modes
4125 *
4126 * Calculate watermark values for the various WM regs based on current mode
4127 * and plane configuration.
4128 *
4129 * There are several cases to deal with here:
4130 * - normal (i.e. non-self-refresh)
4131 * - self-refresh (SR) mode
4132 * - lines are large relative to FIFO size (buffer can hold up to 2)
4133 * - lines are small relative to FIFO size (buffer can hold more than 2
4134 * lines), so need to account for TLB latency
4135 *
4136 * The normal calculation is:
4137 * watermark = dotclock * bytes per pixel * latency
4138 * where latency is platform & configuration dependent (we assume pessimal
4139 * values here).
4140 *
4141 * The SR calculation is:
4142 * watermark = (trunc(latency/line time)+1) * surface width *
4143 * bytes per pixel
4144 * where
4145 * line time = htotal / dotclock
4146 * surface width = hdisplay for normal plane and 64 for cursor
4147 * and latency is assumed to be high, as above.
4148 *
4149 * The final value programmed to the register should always be rounded up,
4150 * and include an extra 2 entries to account for clock crossings.
4151 *
4152 * We don't use the sprite, so we can ignore that. And on Crestline we have
4153 * to set the non-SR watermarks to 8.
4154 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004155void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004156{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004157 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004158
4159 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004160 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004161}
4162
Ville Syrjäläadf3d352013-08-06 22:24:11 +03004163void intel_update_sprite_watermarks(struct drm_plane *plane,
4164 struct drm_crtc *crtc,
Damien Lespiaued57cb82014-07-15 09:21:24 +02004165 uint32_t sprite_width,
4166 uint32_t sprite_height,
4167 int pixel_size,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03004168 bool enabled, bool scaled)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004169{
Ville Syrjäläadf3d352013-08-06 22:24:11 +03004170 struct drm_i915_private *dev_priv = plane->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004171
4172 if (dev_priv->display.update_sprite_wm)
Damien Lespiaued57cb82014-07-15 09:21:24 +02004173 dev_priv->display.update_sprite_wm(plane, crtc,
4174 sprite_width, sprite_height,
Ville Syrjälä39db4a42013-08-06 22:24:00 +03004175 pixel_size, enabled, scaled);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004176}
4177
Daniel Vetter92703882012-08-09 16:46:01 +02004178/**
4179 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004180 */
4181DEFINE_SPINLOCK(mchdev_lock);
4182
4183/* Global for IPS driver to get at the current i915 device. Protected by
4184 * mchdev_lock. */
4185static struct drm_i915_private *i915_mch_dev;
4186
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004187bool ironlake_set_drps(struct drm_device *dev, u8 val)
4188{
4189 struct drm_i915_private *dev_priv = dev->dev_private;
4190 u16 rgvswctl;
4191
Daniel Vetter92703882012-08-09 16:46:01 +02004192 assert_spin_locked(&mchdev_lock);
4193
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004194 rgvswctl = I915_READ16(MEMSWCTL);
4195 if (rgvswctl & MEMCTL_CMD_STS) {
4196 DRM_DEBUG("gpu busy, RCS change rejected\n");
4197 return false; /* still busy with another command */
4198 }
4199
4200 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4201 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4202 I915_WRITE16(MEMSWCTL, rgvswctl);
4203 POSTING_READ16(MEMSWCTL);
4204
4205 rgvswctl |= MEMCTL_CMD_STS;
4206 I915_WRITE16(MEMSWCTL, rgvswctl);
4207
4208 return true;
4209}
4210
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004211static void ironlake_enable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004212{
4213 struct drm_i915_private *dev_priv = dev->dev_private;
4214 u32 rgvmodectl = I915_READ(MEMMODECTL);
4215 u8 fmax, fmin, fstart, vstart;
4216
Daniel Vetter92703882012-08-09 16:46:01 +02004217 spin_lock_irq(&mchdev_lock);
4218
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004219 /* Enable temp reporting */
4220 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4221 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4222
4223 /* 100ms RC evaluation intervals */
4224 I915_WRITE(RCUPEI, 100000);
4225 I915_WRITE(RCDNEI, 100000);
4226
4227 /* Set max/min thresholds to 90ms and 80ms respectively */
4228 I915_WRITE(RCBMAXAVG, 90000);
4229 I915_WRITE(RCBMINAVG, 80000);
4230
4231 I915_WRITE(MEMIHYST, 1);
4232
4233 /* Set up min, max, and cur for interrupt handling */
4234 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4235 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4236 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4237 MEMMODE_FSTART_SHIFT;
4238
Ville Syrjälä616847e2015-09-18 20:03:19 +03004239 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004240 PXVFREQ_PX_SHIFT;
4241
Daniel Vetter20e4d402012-08-08 23:35:39 +02004242 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4243 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004244
Daniel Vetter20e4d402012-08-08 23:35:39 +02004245 dev_priv->ips.max_delay = fstart;
4246 dev_priv->ips.min_delay = fmin;
4247 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004248
4249 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4250 fmax, fmin, fstart);
4251
4252 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4253
4254 /*
4255 * Interrupts will be enabled in ironlake_irq_postinstall
4256 */
4257
4258 I915_WRITE(VIDSTART, vstart);
4259 POSTING_READ(VIDSTART);
4260
4261 rgvmodectl |= MEMMODE_SWMODE_EN;
4262 I915_WRITE(MEMMODECTL, rgvmodectl);
4263
Daniel Vetter92703882012-08-09 16:46:01 +02004264 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004265 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004266 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004267
4268 ironlake_set_drps(dev, fstart);
4269
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004270 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4271 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004272 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004273 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004274 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004275
4276 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004277}
4278
Daniel Vetter8090c6b2012-06-24 16:42:32 +02004279static void ironlake_disable_drps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004280{
4281 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter92703882012-08-09 16:46:01 +02004282 u16 rgvswctl;
4283
4284 spin_lock_irq(&mchdev_lock);
4285
4286 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004287
4288 /* Ack interrupts, disable EFC interrupt */
4289 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4290 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4291 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4292 I915_WRITE(DEIIR, DE_PCU_EVENT);
4293 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4294
4295 /* Go back to the starting frequency */
Daniel Vetter20e4d402012-08-08 23:35:39 +02004296 ironlake_set_drps(dev, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004297 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004298 rgvswctl |= MEMCTL_CMD_STS;
4299 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004300 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004301
Daniel Vetter92703882012-08-09 16:46:01 +02004302 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004303}
4304
Daniel Vetteracbe9472012-07-26 11:50:05 +02004305/* There's a funny hw issue where the hw returns all 0 when reading from
4306 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4307 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4308 * all limits and the gpu stuck at whatever frequency it is at atm).
4309 */
Akash Goel74ef1172015-03-06 11:07:19 +05304310static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004311{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004312 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004313
Daniel Vetter20b46e52012-07-26 11:16:14 +02004314 /* Only set the down limit when we've reached the lowest level to avoid
4315 * getting more interrupts, otherwise leave this clear. This prevents a
4316 * race in the hw when coming out of rc6: There's a tiny window where
4317 * the hw runs at the minimal clock before selecting the desired
4318 * frequency, if the down threshold expires in that window we will not
4319 * receive a down interrupt. */
Akash Goel74ef1172015-03-06 11:07:19 +05304320 if (IS_GEN9(dev_priv->dev)) {
4321 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4322 if (val <= dev_priv->rps.min_freq_softlimit)
4323 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4324 } else {
4325 limits = dev_priv->rps.max_freq_softlimit << 24;
4326 if (val <= dev_priv->rps.min_freq_softlimit)
4327 limits |= dev_priv->rps.min_freq_softlimit << 16;
4328 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004329
4330 return limits;
4331}
4332
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004333static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4334{
4335 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304336 u32 threshold_up = 0, threshold_down = 0; /* in % */
4337 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004338
4339 new_power = dev_priv->rps.power;
4340 switch (dev_priv->rps.power) {
4341 case LOW_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004342 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004343 new_power = BETWEEN;
4344 break;
4345
4346 case BETWEEN:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004347 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004348 new_power = LOW_POWER;
Ben Widawskyb39fb292014-03-19 18:31:11 -07004349 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004350 new_power = HIGH_POWER;
4351 break;
4352
4353 case HIGH_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004354 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 +01004355 new_power = BETWEEN;
4356 break;
4357 }
4358 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004359 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004360 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004361 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004362 new_power = HIGH_POWER;
4363 if (new_power == dev_priv->rps.power)
4364 return;
4365
4366 /* Note the units here are not exactly 1us, but 1280ns. */
4367 switch (new_power) {
4368 case LOW_POWER:
4369 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304370 ei_up = 16000;
4371 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004372
4373 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304374 ei_down = 32000;
4375 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004376 break;
4377
4378 case BETWEEN:
4379 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304380 ei_up = 13000;
4381 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004382
4383 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304384 ei_down = 32000;
4385 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004386 break;
4387
4388 case HIGH_POWER:
4389 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304390 ei_up = 10000;
4391 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004392
4393 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304394 ei_down = 32000;
4395 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004396 break;
4397 }
4398
Akash Goel8a586432015-03-06 11:07:18 +05304399 I915_WRITE(GEN6_RP_UP_EI,
4400 GT_INTERVAL_FROM_US(dev_priv, ei_up));
4401 I915_WRITE(GEN6_RP_UP_THRESHOLD,
4402 GT_INTERVAL_FROM_US(dev_priv, (ei_up * threshold_up / 100)));
4403
4404 I915_WRITE(GEN6_RP_DOWN_EI,
4405 GT_INTERVAL_FROM_US(dev_priv, ei_down));
4406 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
4407 GT_INTERVAL_FROM_US(dev_priv, (ei_down * threshold_down / 100)));
4408
4409 I915_WRITE(GEN6_RP_CONTROL,
4410 GEN6_RP_MEDIA_TURBO |
4411 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4412 GEN6_RP_MEDIA_IS_GFX |
4413 GEN6_RP_ENABLE |
4414 GEN6_RP_UP_BUSY_AVG |
4415 GEN6_RP_DOWN_IDLE_AVG);
4416
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004417 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004418 dev_priv->rps.up_threshold = threshold_up;
4419 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004420 dev_priv->rps.last_adj = 0;
4421}
4422
Chris Wilson2876ce72014-03-28 08:03:34 +00004423static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4424{
4425 u32 mask = 0;
4426
4427 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004428 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004429 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004430 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004431
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004432 mask &= dev_priv->pm_rps_events;
4433
Imre Deak59d02a12014-12-19 19:33:26 +02004434 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004435}
4436
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004437/* gen6_set_rps is called to update the frequency request, but should also be
4438 * called when the range (min_delay and max_delay) is modified so that we can
4439 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004440static void gen6_set_rps(struct drm_device *dev, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004441{
4442 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004443
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304444 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
4445 if (IS_BROXTON(dev) && (INTEL_REVID(dev) < BXT_REVID_B0))
4446 return;
4447
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004448 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004449 WARN_ON(val > dev_priv->rps.max_freq);
4450 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004451
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004452 /* min/max delay may still have been modified so be sure to
4453 * write the limits value.
4454 */
4455 if (val != dev_priv->rps.cur_freq) {
4456 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004457
Akash Goel57041952015-03-06 11:07:17 +05304458 if (IS_GEN9(dev))
4459 I915_WRITE(GEN6_RPNSWREQ,
4460 GEN9_FREQUENCY(val));
4461 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004462 I915_WRITE(GEN6_RPNSWREQ,
4463 HSW_FREQUENCY(val));
4464 else
4465 I915_WRITE(GEN6_RPNSWREQ,
4466 GEN6_FREQUENCY(val) |
4467 GEN6_OFFSET(0) |
4468 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004469 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004470
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004471 /* Make sure we continue to get interrupts
4472 * until we hit the minimum or maximum frequencies.
4473 */
Akash Goel74ef1172015-03-06 11:07:19 +05304474 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004475 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004476
Ben Widawskyd5570a72012-09-07 19:43:41 -07004477 POSTING_READ(GEN6_RPNSWREQ);
4478
Ben Widawskyb39fb292014-03-19 18:31:11 -07004479 dev_priv->rps.cur_freq = val;
Daniel Vetterbe2cde92012-08-30 13:26:48 +02004480 trace_intel_gpu_freq_change(val * 50);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004481}
4482
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004483static void valleyview_set_rps(struct drm_device *dev, u8 val)
4484{
4485 struct drm_i915_private *dev_priv = dev->dev_private;
4486
4487 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004488 WARN_ON(val > dev_priv->rps.max_freq);
4489 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004490
4491 if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1),
4492 "Odd GPU freq value\n"))
4493 val &= ~1;
4494
Deepak Scd25dd52015-07-10 18:31:40 +05304495 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4496
Chris Wilson8fb55192015-04-07 16:20:28 +01004497 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004498 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004499 if (!IS_CHERRYVIEW(dev_priv))
4500 gen6_set_rps_thresholds(dev_priv, val);
4501 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004502
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004503 dev_priv->rps.cur_freq = val;
4504 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4505}
4506
Deepak Sa7f6e232015-05-09 18:04:44 +05304507/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304508 *
4509 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304510 * 1. Forcewake Media well.
4511 * 2. Request idle freq.
4512 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304513*/
4514static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4515{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004516 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304517
Chris Wilsonaed242f2015-03-18 09:48:21 +00004518 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304519 return;
4520
Deepak Sa7f6e232015-05-09 18:04:44 +05304521 /* Wake up the media well, as that takes a lot less
4522 * power than the Render well. */
4523 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
4524 valleyview_set_rps(dev_priv->dev, val);
4525 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05304526}
4527
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004528void gen6_rps_busy(struct drm_i915_private *dev_priv)
4529{
4530 mutex_lock(&dev_priv->rps.hw_lock);
4531 if (dev_priv->rps.enabled) {
4532 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4533 gen6_rps_reset_ei(dev_priv);
4534 I915_WRITE(GEN6_PMINTRMSK,
4535 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
4536 }
4537 mutex_unlock(&dev_priv->rps.hw_lock);
4538}
4539
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004540void gen6_rps_idle(struct drm_i915_private *dev_priv)
4541{
Damien Lespiau691bb712013-12-12 14:36:36 +00004542 struct drm_device *dev = dev_priv->dev;
4543
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004544 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004545 if (dev_priv->rps.enabled) {
Ville Syrjälä21a11ff2015-01-27 16:36:15 +02004546 if (IS_VALLEYVIEW(dev))
Deepak S76c3552f2014-01-30 23:08:16 +05304547 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004548 else
Chris Wilsonaed242f2015-03-18 09:48:21 +00004549 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004550 dev_priv->rps.last_adj = 0;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004551 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004552 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004553 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004554
Chris Wilson8d3afd72015-05-21 21:01:47 +01004555 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004556 while (!list_empty(&dev_priv->rps.clients))
4557 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004558 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004559}
4560
Chris Wilson1854d5c2015-04-07 16:20:32 +01004561void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01004562 struct intel_rps_client *rps,
4563 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004564{
Chris Wilson8d3afd72015-05-21 21:01:47 +01004565 /* This is intentionally racy! We peek at the state here, then
4566 * validate inside the RPS worker.
4567 */
4568 if (!(dev_priv->mm.busy &&
4569 dev_priv->rps.enabled &&
4570 dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit))
4571 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004572
Chris Wilsone61b9952015-04-27 13:41:24 +01004573 /* Force a RPS boost (and don't count it against the client) if
4574 * the GPU is severely congested.
4575 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004576 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01004577 rps = NULL;
4578
Chris Wilson8d3afd72015-05-21 21:01:47 +01004579 spin_lock(&dev_priv->rps.client_lock);
4580 if (rps == NULL || list_empty(&rps->link)) {
4581 spin_lock_irq(&dev_priv->irq_lock);
4582 if (dev_priv->rps.interrupts_enabled) {
4583 dev_priv->rps.client_boost = true;
4584 queue_work(dev_priv->wq, &dev_priv->rps.work);
4585 }
4586 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004587
Chris Wilson2e1b8732015-04-27 13:41:22 +01004588 if (rps != NULL) {
4589 list_add(&rps->link, &dev_priv->rps.clients);
4590 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01004591 } else
4592 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01004593 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004594 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004595}
4596
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004597void intel_set_rps(struct drm_device *dev, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004598{
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004599 if (IS_VALLEYVIEW(dev))
4600 valleyview_set_rps(dev, val);
4601 else
4602 gen6_set_rps(dev, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004603}
4604
Zhe Wang20e49362014-11-04 17:07:05 +00004605static void gen9_disable_rps(struct drm_device *dev)
4606{
4607 struct drm_i915_private *dev_priv = dev->dev_private;
4608
4609 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004610 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004611}
4612
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004613static void gen6_disable_rps(struct drm_device *dev)
4614{
4615 struct drm_i915_private *dev_priv = dev->dev_private;
4616
4617 I915_WRITE(GEN6_RC_CONTROL, 0);
4618 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004619}
4620
Deepak S38807742014-05-23 21:00:15 +05304621static void cherryview_disable_rps(struct drm_device *dev)
4622{
4623 struct drm_i915_private *dev_priv = dev->dev_private;
4624
4625 I915_WRITE(GEN6_RC_CONTROL, 0);
4626}
4627
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004628static void valleyview_disable_rps(struct drm_device *dev)
4629{
4630 struct drm_i915_private *dev_priv = dev->dev_private;
4631
Deepak S98a2e5f2014-08-18 10:35:27 -07004632 /* we're doing forcewake before Disabling RC6,
4633 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02004634 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07004635
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004636 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004637
Mika Kuoppala59bad942015-01-16 11:34:40 +02004638 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004639}
4640
Ben Widawskydc39fff2013-10-18 12:32:07 -07004641static void intel_print_rc6_info(struct drm_device *dev, u32 mode)
4642{
Imre Deak91ca6892014-04-14 20:24:25 +03004643 if (IS_VALLEYVIEW(dev)) {
4644 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
4645 mode = GEN6_RC_CTL_RC6_ENABLE;
4646 else
4647 mode = 0;
4648 }
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004649 if (HAS_RC6p(dev))
4650 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
4651 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
4652 (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
4653 (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");
4654
4655 else
4656 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
4657 (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off");
Ben Widawskydc39fff2013-10-18 12:32:07 -07004658}
4659
Imre Deake6069ca2014-04-18 16:01:02 +03004660static int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004661{
Daniel Vettere7d66d82015-06-15 23:23:54 +02004662 /* No RC6 before Ironlake and code is gone for ilk. */
4663 if (INTEL_INFO(dev)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03004664 return 0;
4665
Daniel Vetter456470e2012-08-08 23:35:40 +02004666 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03004667 if (enable_rc6 >= 0) {
4668 int mask;
4669
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004670 if (HAS_RC6p(dev))
Imre Deake6069ca2014-04-18 16:01:02 +03004671 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
4672 INTEL_RC6pp_ENABLE;
4673 else
4674 mask = INTEL_RC6_ENABLE;
4675
4676 if ((enable_rc6 & mask) != enable_rc6)
Daniel Vetter8dfd1f02014-08-04 11:15:56 +02004677 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
4678 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03004679
4680 return enable_rc6 & mask;
4681 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004682
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004683 if (IS_IVYBRIDGE(dev))
Ben Widawskycca84a12014-01-28 20:25:38 -08004684 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08004685
4686 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004687}
4688
Imre Deake6069ca2014-04-18 16:01:02 +03004689int intel_enable_rc6(const struct drm_device *dev)
4690{
4691 return i915.enable_rc6;
4692}
4693
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004694static void gen6_init_rps_frequencies(struct drm_device *dev)
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004695{
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004696 struct drm_i915_private *dev_priv = dev->dev_private;
4697 uint32_t rp_state_cap;
4698 u32 ddcc_status = 0;
4699 int ret;
4700
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004701 /* All of these values are in units of 50MHz */
4702 dev_priv->rps.cur_freq = 0;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004703 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Bob Paauwe35040562015-06-25 14:54:07 -07004704 if (IS_BROXTON(dev)) {
4705 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
4706 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
4707 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4708 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
4709 } else {
4710 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
4711 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
4712 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
4713 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
4714 }
4715
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004716 /* hw_max = RP0 until we check for overclocking */
4717 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
4718
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004719 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Akash Goelc5e06882015-06-29 14:50:19 +05304720 if (IS_HASWELL(dev) || IS_BROADWELL(dev) || IS_SKYLAKE(dev)) {
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004721 ret = sandybridge_pcode_read(dev_priv,
4722 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
4723 &ddcc_status);
4724 if (0 == ret)
4725 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08004726 clamp_t(u8,
4727 ((ddcc_status >> 8) & 0xff),
4728 dev_priv->rps.min_freq,
4729 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004730 }
4731
Akash Goelc5e06882015-06-29 14:50:19 +05304732 if (IS_SKYLAKE(dev)) {
4733 /* Store the frequency values in 16.66 MHZ units, which is
4734 the natural hardware unit for SKL */
4735 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
4736 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
4737 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
4738 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
4739 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
4740 }
4741
Chris Wilsonaed242f2015-03-18 09:48:21 +00004742 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
4743
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004744 /* Preserve min/max settings in case of re-init */
4745 if (dev_priv->rps.max_freq_softlimit == 0)
4746 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
4747
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004748 if (dev_priv->rps.min_freq_softlimit == 0) {
4749 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
4750 dev_priv->rps.min_freq_softlimit =
Ville Syrjälä813b5e62015-03-25 19:27:16 +02004751 max_t(int, dev_priv->rps.efficient_freq,
4752 intel_freq_opcode(dev_priv, 450));
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004753 else
4754 dev_priv->rps.min_freq_softlimit =
4755 dev_priv->rps.min_freq;
4756 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07004757}
4758
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004759/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Zhe Wang20e49362014-11-04 17:07:05 +00004760static void gen9_enable_rps(struct drm_device *dev)
4761{
4762 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004763
4764 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4765
Damien Lespiauba1c5542015-01-16 18:07:26 +00004766 gen6_init_rps_frequencies(dev);
4767
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304768 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
4769 if (IS_BROXTON(dev) && (INTEL_REVID(dev) < BXT_REVID_B0)) {
4770 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4771 return;
4772 }
4773
Akash Goel0beb0592015-03-06 11:07:20 +05304774 /* Program defaults and thresholds for RPS*/
4775 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4776 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004777
Akash Goel0beb0592015-03-06 11:07:20 +05304778 /* 1 second timeout*/
4779 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
4780 GT_INTERVAL_FROM_US(dev_priv, 1000000));
4781
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004782 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004783
Akash Goel0beb0592015-03-06 11:07:20 +05304784 /* Leaning on the below call to gen6_set_rps to program/setup the
4785 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
4786 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
4787 dev_priv->rps.power = HIGH_POWER; /* force a reset */
4788 gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00004789
4790 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4791}
4792
4793static void gen9_enable_rc6(struct drm_device *dev)
4794{
4795 struct drm_i915_private *dev_priv = dev->dev_private;
Zhe Wang20e49362014-11-04 17:07:05 +00004796 struct intel_engine_cs *ring;
4797 uint32_t rc6_mask = 0;
4798 int unused;
4799
4800 /* 1a: Software RC state - RC0 */
4801 I915_WRITE(GEN6_RC_STATE, 0);
4802
4803 /* 1b: Get forcewake during program sequence. Although the driver
4804 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004805 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004806
4807 /* 2a: Disable RC states. */
4808 I915_WRITE(GEN6_RC_CONTROL, 0);
4809
4810 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05304811
4812 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
4813 if (IS_SKYLAKE(dev) && !((IS_SKL_GT3(dev) || IS_SKL_GT4(dev)) &&
4814 (INTEL_REVID(dev) <= SKL_REVID_E0)))
4815 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
4816 else
4817 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00004818 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4819 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4820 for_each_ring(ring, dev_priv, unused)
4821 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05304822
4823 if (HAS_GUC_UCODE(dev))
4824 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
4825
Zhe Wang20e49362014-11-04 17:07:05 +00004826 I915_WRITE(GEN6_RC_SLEEP, 0);
4827 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
4828
Zhe Wang38c23522015-01-20 12:23:04 +00004829 /* 2c: Program Coarse Power Gating Policies. */
4830 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
4831 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
4832
Zhe Wang20e49362014-11-04 17:07:05 +00004833 /* 3a: Enable RC6 */
4834 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4835 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
4836 DRM_INFO("RC6 %s\n", (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4837 "on" : "off");
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05304838
4839 if ((IS_SKYLAKE(dev) && INTEL_REVID(dev) <= SKL_REVID_D0) ||
4840 (IS_BROXTON(dev) && INTEL_REVID(dev) <= BXT_REVID_A0))
4841 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4842 GEN7_RC_CTL_TO_MODE |
4843 rc6_mask);
4844 else
4845 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4846 GEN6_RC_CTL_EI_MODE(1) |
4847 rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00004848
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304849 /*
4850 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05304851 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05304852 */
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05304853 if ((IS_BROXTON(dev) && (INTEL_REVID(dev) < BXT_REVID_B0)) ||
4854 ((IS_SKL_GT3(dev) || IS_SKL_GT4(dev)) && (INTEL_REVID(dev) <= SKL_REVID_E0)))
4855 I915_WRITE(GEN9_PG_ENABLE, 0);
4856 else
4857 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
4858 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004859
Mika Kuoppala59bad942015-01-16 11:34:40 +02004860 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00004861
4862}
4863
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004864static void gen8_enable_rps(struct drm_device *dev)
4865{
4866 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004867 struct intel_engine_cs *ring;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004868 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004869 int unused;
4870
4871 /* 1a: Software RC state - RC0 */
4872 I915_WRITE(GEN6_RC_STATE, 0);
4873
4874 /* 1c & 1d: Get forcewake during program sequence. Although the driver
4875 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02004876 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004877
4878 /* 2a: Disable RC states. */
4879 I915_WRITE(GEN6_RC_CONTROL, 0);
4880
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004881 /* Initialize rps frequencies */
4882 gen6_init_rps_frequencies(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004883
4884 /* 2b: Program RC6 thresholds.*/
4885 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
4886 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
4887 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
4888 for_each_ring(ring, dev_priv, unused)
4889 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
4890 I915_WRITE(GEN6_RC_SLEEP, 0);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004891 if (IS_BROADWELL(dev))
4892 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
4893 else
4894 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004895
4896 /* 3: Enable RC6 */
4897 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
4898 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Ben Widawskyabbf9d22014-01-28 20:25:41 -08004899 intel_print_rc6_info(dev, rc6_mask);
Tom O'Rourke0d68b252014-04-09 11:44:06 -07004900 if (IS_BROADWELL(dev))
4901 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4902 GEN7_RC_CTL_TO_MODE |
4903 rc6_mask);
4904 else
4905 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
4906 GEN6_RC_CTL_EI_MODE(1) |
4907 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004908
4909 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07004910 I915_WRITE(GEN6_RPNSWREQ,
4911 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
4912 I915_WRITE(GEN6_RC_VIDEO_FREQ,
4913 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02004914 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
4915 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004916
Daniel Vetter7526ed72014-09-29 15:07:19 +02004917 /* Docs recommend 900MHz, and 300 MHz respectively */
4918 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
4919 dev_priv->rps.max_freq_softlimit << 24 |
4920 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004921
Daniel Vetter7526ed72014-09-29 15:07:19 +02004922 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
4923 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
4924 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
4925 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004926
Daniel Vetter7526ed72014-09-29 15:07:19 +02004927 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004928
4929 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02004930 I915_WRITE(GEN6_RP_CONTROL,
4931 GEN6_RP_MEDIA_TURBO |
4932 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4933 GEN6_RP_MEDIA_IS_GFX |
4934 GEN6_RP_ENABLE |
4935 GEN6_RP_UP_BUSY_AVG |
4936 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004937
Daniel Vetter7526ed72014-09-29 15:07:19 +02004938 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004939
Tom O'Rourkec7f31532014-11-19 14:21:54 -08004940 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004941 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004942
Mika Kuoppala59bad942015-01-16 11:34:40 +02004943 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07004944}
4945
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004946static void gen6_enable_rps(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004947{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004948 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004949 struct intel_engine_cs *ring;
Ben Widawskyd060c162014-03-19 18:31:08 -07004950 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004951 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004952 int rc6_mode;
Ben Widawsky42c05262012-09-26 10:34:00 -07004953 int i, ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004954
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004955 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02004956
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004957 /* Here begins a magic sequence of register writes to enable
4958 * auto-downclocking.
4959 *
4960 * Perhaps there might be some value in exposing these to
4961 * userspace...
4962 */
4963 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004964
4965 /* Clear the DBG now so we don't confuse earlier errors */
4966 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
4967 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
4968 I915_WRITE(GTFIFODBG, gtfifodbg);
4969 }
4970
Mika Kuoppala59bad942015-01-16 11:34:40 +02004971 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004972
Tom O'Rourke93ee2922014-11-19 14:21:52 -08004973 /* Initialize rps frequencies */
4974 gen6_init_rps_frequencies(dev);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004975
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004976 /* disable the counters and set deterministic thresholds */
4977 I915_WRITE(GEN6_RC_CONTROL, 0);
4978
4979 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
4980 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
4981 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
4982 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
4983 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
4984
Chris Wilsonb4519512012-05-11 14:29:30 +01004985 for_each_ring(ring, dev_priv, i)
4986 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004987
4988 I915_WRITE(GEN6_RC_SLEEP, 0);
4989 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Daniel Vetter29c78f62013-11-16 16:04:26 +01004990 if (IS_IVYBRIDGE(dev))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07004991 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
4992 else
4993 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08004994 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004995 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
4996
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03004997 /* Check if we are enabling RC6 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004998 rc6_mode = intel_enable_rc6(dev_priv->dev);
4999 if (rc6_mode & INTEL_RC6_ENABLE)
5000 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5001
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005002 /* We don't use those on Haswell */
5003 if (!IS_HASWELL(dev)) {
5004 if (rc6_mode & INTEL_RC6p_ENABLE)
5005 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005006
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005007 if (rc6_mode & INTEL_RC6pp_ENABLE)
5008 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5009 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005010
Ben Widawskydc39fff2013-10-18 12:32:07 -07005011 intel_print_rc6_info(dev, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005012
5013 I915_WRITE(GEN6_RC_CONTROL,
5014 rc6_mask |
5015 GEN6_RC_CTL_EI_MODE(1) |
5016 GEN6_RC_CTL_HW_ENABLE);
5017
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005018 /* Power down if completely idle for over 50ms */
5019 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005020 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005021
Ben Widawsky42c05262012-09-26 10:34:00 -07005022 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawskyd060c162014-03-19 18:31:08 -07005023 if (ret)
Ben Widawsky42c05262012-09-26 10:34:00 -07005024 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Ben Widawskyd060c162014-03-19 18:31:08 -07005025
5026 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
5027 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
5028 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskyb39fb292014-03-19 18:31:11 -07005029 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
Ben Widawskyd060c162014-03-19 18:31:08 -07005030 (pcu_mbox & 0xff) * 50);
Ben Widawskyb39fb292014-03-19 18:31:11 -07005031 dev_priv->rps.max_freq = pcu_mbox & 0xff;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005032 }
5033
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005034 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsonaed242f2015-03-18 09:48:21 +00005035 gen6_set_rps(dev_priv->dev, dev_priv->rps.idle_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005036
Ben Widawsky31643d52012-09-26 10:34:01 -07005037 rc6vids = 0;
5038 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
5039 if (IS_GEN6(dev) && ret) {
5040 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
5041 } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
5042 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5043 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5044 rc6vids &= 0xffff00;
5045 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5046 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5047 if (ret)
5048 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5049 }
5050
Mika Kuoppala59bad942015-01-16 11:34:40 +02005051 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005052}
5053
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005054static void __gen6_update_ring_freq(struct drm_device *dev)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005055{
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005056 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005057 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005058 unsigned int gpu_freq;
5059 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305060 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005061 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005062 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005063
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005064 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005065
Ben Widawskyeda79642013-10-07 17:15:48 -03005066 policy = cpufreq_cpu_get(0);
5067 if (policy) {
5068 max_ia_freq = policy->cpuinfo.max_freq;
5069 cpufreq_cpu_put(policy);
5070 } else {
5071 /*
5072 * Default to measured freq if none found, PCU will ensure we
5073 * don't go over
5074 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005075 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005076 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005077
5078 /* Convert from kHz to MHz */
5079 max_ia_freq /= 1000;
5080
Ben Widawsky153b4b952013-10-22 22:05:09 -07005081 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005082 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5083 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005084
Akash Goel4c8c7742015-06-29 14:50:20 +05305085 if (IS_SKYLAKE(dev)) {
5086 /* Convert GT frequency to 50 HZ units */
5087 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5088 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5089 } else {
5090 min_gpu_freq = dev_priv->rps.min_freq;
5091 max_gpu_freq = dev_priv->rps.max_freq;
5092 }
5093
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005094 /*
5095 * For each potential GPU frequency, load a ring frequency we'd like
5096 * to use for memory access. We do this by specifying the IA frequency
5097 * the PCU should use as a reference to determine the ring frequency.
5098 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305099 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5100 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005101 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005102
Akash Goel4c8c7742015-06-29 14:50:20 +05305103 if (IS_SKYLAKE(dev)) {
5104 /*
5105 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5106 * No floor required for ring frequency on SKL.
5107 */
5108 ring_freq = gpu_freq;
5109 } else if (INTEL_INFO(dev)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005110 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5111 ring_freq = max(min_ring_freq, gpu_freq);
5112 } else if (IS_HASWELL(dev)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005113 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005114 ring_freq = max(min_ring_freq, ring_freq);
5115 /* leave ia_freq as the default, chosen by cpufreq */
5116 } else {
5117 /* On older processors, there is no separate ring
5118 * clock domain, so in order to boost the bandwidth
5119 * of the ring, we need to upclock the CPU (ia_freq).
5120 *
5121 * For GPU frequencies less than 750MHz,
5122 * just use the lowest ring freq.
5123 */
5124 if (gpu_freq < min_freq)
5125 ia_freq = 800;
5126 else
5127 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5128 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5129 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005130
Ben Widawsky42c05262012-09-26 10:34:00 -07005131 sandybridge_pcode_write(dev_priv,
5132 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005133 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5134 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5135 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005136 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005137}
5138
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005139void gen6_update_ring_freq(struct drm_device *dev)
5140{
5141 struct drm_i915_private *dev_priv = dev->dev_private;
5142
Akash Goel97d33082015-06-29 14:50:23 +05305143 if (!HAS_CORE_RING_FREQ(dev))
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005144 return;
5145
5146 mutex_lock(&dev_priv->rps.hw_lock);
5147 __gen6_update_ring_freq(dev);
5148 mutex_unlock(&dev_priv->rps.hw_lock);
5149}
5150
Ville Syrjälä03af2042014-06-28 02:03:53 +03005151static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305152{
Deepak S095acd52015-01-17 11:05:59 +05305153 struct drm_device *dev = dev_priv->dev;
Deepak S2b6b3a02014-05-27 15:59:30 +05305154 u32 val, rp0;
5155
Deepak S095acd52015-01-17 11:05:59 +05305156 if (dev->pdev->revision >= 0x20) {
5157 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305158
Deepak S095acd52015-01-17 11:05:59 +05305159 switch (INTEL_INFO(dev)->eu_total) {
5160 case 8:
5161 /* (2 * 4) config */
5162 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5163 break;
5164 case 12:
5165 /* (2 * 6) config */
5166 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5167 break;
5168 case 16:
5169 /* (2 * 8) config */
5170 default:
5171 /* Setting (2 * 8) Min RP0 for any other combination */
5172 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5173 break;
5174 }
5175 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5176 } else {
5177 /* For pre-production hardware */
5178 val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG);
5179 rp0 = (val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
5180 PUNIT_GPU_STATUS_MAX_FREQ_MASK;
5181 }
Deepak S2b6b3a02014-05-27 15:59:30 +05305182 return rp0;
5183}
5184
5185static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5186{
5187 u32 val, rpe;
5188
5189 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5190 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5191
5192 return rpe;
5193}
5194
Deepak S7707df42014-07-12 18:46:14 +05305195static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5196{
Deepak S095acd52015-01-17 11:05:59 +05305197 struct drm_device *dev = dev_priv->dev;
Deepak S7707df42014-07-12 18:46:14 +05305198 u32 val, rp1;
5199
Deepak S095acd52015-01-17 11:05:59 +05305200 if (dev->pdev->revision >= 0x20) {
5201 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5202 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5203 } else {
5204 /* For pre-production hardware */
5205 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5206 rp1 = ((val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) &
5207 PUNIT_GPU_STATUS_MAX_FREQ_MASK);
5208 }
Deepak S7707df42014-07-12 18:46:14 +05305209 return rp1;
5210}
5211
Deepak Sf8f2b002014-07-10 13:16:21 +05305212static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5213{
5214 u32 val, rp1;
5215
5216 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5217
5218 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5219
5220 return rp1;
5221}
5222
Ville Syrjälä03af2042014-06-28 02:03:53 +03005223static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005224{
5225 u32 val, rp0;
5226
Jani Nikula64936252013-05-22 15:36:20 +03005227 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005228
5229 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5230 /* Clamp to max */
5231 rp0 = min_t(u32, rp0, 0xea);
5232
5233 return rp0;
5234}
5235
5236static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5237{
5238 u32 val, rpe;
5239
Jani Nikula64936252013-05-22 15:36:20 +03005240 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005241 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005242 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005243 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5244
5245 return rpe;
5246}
5247
Ville Syrjälä03af2042014-06-28 02:03:53 +03005248static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005249{
Jani Nikula64936252013-05-22 15:36:20 +03005250 return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005251}
5252
Imre Deakae484342014-03-31 15:10:44 +03005253/* Check that the pctx buffer wasn't move under us. */
5254static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5255{
5256 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5257
5258 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5259 dev_priv->vlv_pctx->stolen->start);
5260}
5261
Deepak S38807742014-05-23 21:00:15 +05305262
5263/* Check that the pcbr address is not empty. */
5264static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5265{
5266 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5267
5268 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5269}
5270
5271static void cherryview_setup_pctx(struct drm_device *dev)
5272{
5273 struct drm_i915_private *dev_priv = dev->dev_private;
5274 unsigned long pctx_paddr, paddr;
5275 struct i915_gtt *gtt = &dev_priv->gtt;
5276 u32 pcbr;
5277 int pctx_size = 32*1024;
5278
5279 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5280
5281 pcbr = I915_READ(VLV_PCBR);
5282 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005283 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305284 paddr = (dev_priv->mm.stolen_base +
5285 (gtt->stolen_size - pctx_size));
5286
5287 pctx_paddr = (paddr & (~4095));
5288 I915_WRITE(VLV_PCBR, pctx_paddr);
5289 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005290
5291 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305292}
5293
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005294static void valleyview_setup_pctx(struct drm_device *dev)
5295{
5296 struct drm_i915_private *dev_priv = dev->dev_private;
5297 struct drm_i915_gem_object *pctx;
5298 unsigned long pctx_paddr;
5299 u32 pcbr;
5300 int pctx_size = 24*1024;
5301
Imre Deak17b0c1f2014-02-11 21:39:06 +02005302 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
5303
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005304 pcbr = I915_READ(VLV_PCBR);
5305 if (pcbr) {
5306 /* BIOS set it up already, grab the pre-alloc'd space */
5307 int pcbr_offset;
5308
5309 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
5310 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
5311 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005312 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005313 pctx_size);
5314 goto out;
5315 }
5316
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005317 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5318
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005319 /*
5320 * From the Gunit register HAS:
5321 * The Gfx driver is expected to program this register and ensure
5322 * proper allocation within Gfx stolen memory. For example, this
5323 * register should be programmed such than the PCBR range does not
5324 * overlap with other ranges, such as the frame buffer, protected
5325 * memory, or any other relevant ranges.
5326 */
5327 pctx = i915_gem_object_create_stolen(dev, pctx_size);
5328 if (!pctx) {
5329 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
5330 return;
5331 }
5332
5333 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5334 I915_WRITE(VLV_PCBR, pctx_paddr);
5335
5336out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005337 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005338 dev_priv->vlv_pctx = pctx;
5339}
5340
Imre Deakae484342014-03-31 15:10:44 +03005341static void valleyview_cleanup_pctx(struct drm_device *dev)
5342{
5343 struct drm_i915_private *dev_priv = dev->dev_private;
5344
5345 if (WARN_ON(!dev_priv->vlv_pctx))
5346 return;
5347
5348 drm_gem_object_unreference(&dev_priv->vlv_pctx->base);
5349 dev_priv->vlv_pctx = NULL;
5350}
5351
Imre Deak4e805192014-04-14 20:24:41 +03005352static void valleyview_init_gt_powersave(struct drm_device *dev)
5353{
5354 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005355 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005356
5357 valleyview_setup_pctx(dev);
5358
5359 mutex_lock(&dev_priv->rps.hw_lock);
5360
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005361 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5362 switch ((val >> 6) & 3) {
5363 case 0:
5364 case 1:
5365 dev_priv->mem_freq = 800;
5366 break;
5367 case 2:
5368 dev_priv->mem_freq = 1066;
5369 break;
5370 case 3:
5371 dev_priv->mem_freq = 1333;
5372 break;
5373 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005374 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005375
Imre Deak4e805192014-04-14 20:24:41 +03005376 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5377 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5378 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005379 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005380 dev_priv->rps.max_freq);
5381
5382 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5383 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005384 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005385 dev_priv->rps.efficient_freq);
5386
Deepak Sf8f2b002014-07-10 13:16:21 +05305387 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5388 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005389 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305390 dev_priv->rps.rp1_freq);
5391
Imre Deak4e805192014-04-14 20:24:41 +03005392 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5393 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005394 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005395 dev_priv->rps.min_freq);
5396
Chris Wilsonaed242f2015-03-18 09:48:21 +00005397 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5398
Imre Deak4e805192014-04-14 20:24:41 +03005399 /* Preserve min/max settings in case of re-init */
5400 if (dev_priv->rps.max_freq_softlimit == 0)
5401 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5402
5403 if (dev_priv->rps.min_freq_softlimit == 0)
5404 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5405
5406 mutex_unlock(&dev_priv->rps.hw_lock);
5407}
5408
Deepak S38807742014-05-23 21:00:15 +05305409static void cherryview_init_gt_powersave(struct drm_device *dev)
5410{
Deepak S2b6b3a02014-05-27 15:59:30 +05305411 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005412 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305413
Deepak S38807742014-05-23 21:00:15 +05305414 cherryview_setup_pctx(dev);
Deepak S2b6b3a02014-05-27 15:59:30 +05305415
5416 mutex_lock(&dev_priv->rps.hw_lock);
5417
Ville Syrjäläa5805162015-05-26 20:42:30 +03005418 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005419 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005420 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005421
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005422 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005423 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005424 dev_priv->mem_freq = 2000;
5425 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03005426 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005427 dev_priv->mem_freq = 1600;
5428 break;
5429 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005430 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005431
Deepak S2b6b3a02014-05-27 15:59:30 +05305432 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5433 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5434 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005435 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305436 dev_priv->rps.max_freq);
5437
5438 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5439 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005440 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305441 dev_priv->rps.efficient_freq);
5442
Deepak S7707df42014-07-12 18:46:14 +05305443 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5444 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005445 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305446 dev_priv->rps.rp1_freq);
5447
Deepak S5b7c91b2015-05-09 18:15:46 +05305448 /* PUnit validated range is only [RPe, RP0] */
5449 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305450 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005451 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305452 dev_priv->rps.min_freq);
5453
Ville Syrjälä1c147622014-08-18 14:42:43 +03005454 WARN_ONCE((dev_priv->rps.max_freq |
5455 dev_priv->rps.efficient_freq |
5456 dev_priv->rps.rp1_freq |
5457 dev_priv->rps.min_freq) & 1,
5458 "Odd GPU freq values\n");
5459
Chris Wilsonaed242f2015-03-18 09:48:21 +00005460 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5461
Deepak S2b6b3a02014-05-27 15:59:30 +05305462 /* Preserve min/max settings in case of re-init */
5463 if (dev_priv->rps.max_freq_softlimit == 0)
5464 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5465
5466 if (dev_priv->rps.min_freq_softlimit == 0)
5467 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5468
5469 mutex_unlock(&dev_priv->rps.hw_lock);
Deepak S38807742014-05-23 21:00:15 +05305470}
5471
Imre Deak4e805192014-04-14 20:24:41 +03005472static void valleyview_cleanup_gt_powersave(struct drm_device *dev)
5473{
5474 valleyview_cleanup_pctx(dev);
5475}
5476
Deepak S38807742014-05-23 21:00:15 +05305477static void cherryview_enable_rps(struct drm_device *dev)
5478{
5479 struct drm_i915_private *dev_priv = dev->dev_private;
5480 struct intel_engine_cs *ring;
Deepak S2b6b3a02014-05-27 15:59:30 +05305481 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305482 int i;
5483
5484 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5485
5486 gtfifodbg = I915_READ(GTFIFODBG);
5487 if (gtfifodbg) {
5488 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5489 gtfifodbg);
5490 I915_WRITE(GTFIFODBG, gtfifodbg);
5491 }
5492
5493 cherryview_check_pctx(dev_priv);
5494
5495 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5496 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005497 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305498
Ville Syrjälä160614a2015-01-19 13:50:47 +02005499 /* Disable RC states. */
5500 I915_WRITE(GEN6_RC_CONTROL, 0);
5501
Deepak S38807742014-05-23 21:00:15 +05305502 /* 2a: Program RC6 thresholds.*/
5503 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5504 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5505 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5506
5507 for_each_ring(ring, dev_priv, i)
5508 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5509 I915_WRITE(GEN6_RC_SLEEP, 0);
5510
Deepak Sf4f71c72015-03-28 15:23:35 +05305511 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
5512 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05305513
5514 /* allows RC6 residency counter to work */
5515 I915_WRITE(VLV_COUNTER_CONTROL,
5516 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5517 VLV_MEDIA_RC6_COUNT_EN |
5518 VLV_RENDER_RC6_COUNT_EN));
5519
5520 /* For now we assume BIOS is allocating and populating the PCBR */
5521 pcbr = I915_READ(VLV_PCBR);
5522
Deepak S38807742014-05-23 21:00:15 +05305523 /* 3: Enable RC6 */
5524 if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) &&
5525 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005526 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305527
5528 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5529
Deepak S2b6b3a02014-05-27 15:59:30 +05305530 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005531 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305532 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5533 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5534 I915_WRITE(GEN6_RP_UP_EI, 66000);
5535 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5536
5537 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5538
5539 /* 5: Enable RPS */
5540 I915_WRITE(GEN6_RP_CONTROL,
5541 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005542 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305543 GEN6_RP_ENABLE |
5544 GEN6_RP_UP_BUSY_AVG |
5545 GEN6_RP_DOWN_IDLE_AVG);
5546
Deepak S3ef62342015-04-29 08:36:24 +05305547 /* Setting Fixed Bias */
5548 val = VLV_OVERRIDE_EN |
5549 VLV_SOC_TDP_EN |
5550 CHV_BIAS_CPU_50_SOC_50;
5551 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5552
Deepak S2b6b3a02014-05-27 15:59:30 +05305553 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5554
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005555 /* RPS code assumes GPLL is used */
5556 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5557
Jani Nikula742f4912015-09-03 11:16:09 +03005558 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05305559 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5560
5561 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
5562 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005563 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305564 dev_priv->rps.cur_freq);
5565
5566 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005567 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305568 dev_priv->rps.efficient_freq);
5569
5570 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
5571
Mika Kuoppala59bad942015-01-16 11:34:40 +02005572 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305573}
5574
Jesse Barnes0a073b82013-04-17 15:54:58 -07005575static void valleyview_enable_rps(struct drm_device *dev)
5576{
5577 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005578 struct intel_engine_cs *ring;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07005579 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005580 int i;
5581
5582 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5583
Imre Deakae484342014-03-31 15:10:44 +03005584 valleyview_check_pctx(dev_priv);
5585
Jesse Barnes0a073b82013-04-17 15:54:58 -07005586 if ((gtfifodbg = I915_READ(GTFIFODBG))) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07005587 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5588 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005589 I915_WRITE(GTFIFODBG, gtfifodbg);
5590 }
5591
Deepak Sc8d9a592013-11-23 14:55:42 +05305592 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005593 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005594
Ville Syrjälä160614a2015-01-19 13:50:47 +02005595 /* Disable RC states. */
5596 I915_WRITE(GEN6_RC_CONTROL, 0);
5597
Ville Syrjäläcad725f2015-01-19 13:50:48 +02005598 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005599 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5600 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5601 I915_WRITE(GEN6_RP_UP_EI, 66000);
5602 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5603
5604 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5605
5606 I915_WRITE(GEN6_RP_CONTROL,
5607 GEN6_RP_MEDIA_TURBO |
5608 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5609 GEN6_RP_MEDIA_IS_GFX |
5610 GEN6_RP_ENABLE |
5611 GEN6_RP_UP_BUSY_AVG |
5612 GEN6_RP_DOWN_IDLE_CONT);
5613
5614 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
5615 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5616 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5617
5618 for_each_ring(ring, dev_priv, i)
5619 I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10);
5620
Jesse Barnes2f0aa302013-11-15 09:32:11 -08005621 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005622
5623 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07005624 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04005625 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
5626 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07005627 VLV_MEDIA_RC6_COUNT_EN |
5628 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04005629
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005630 if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08005631 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07005632
5633 intel_print_rc6_info(dev, rc6_mode);
5634
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07005635 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005636
Deepak S3ef62342015-04-29 08:36:24 +05305637 /* Setting Fixed Bias */
5638 val = VLV_OVERRIDE_EN |
5639 VLV_SOC_TDP_EN |
5640 VLV_BIAS_CPU_125_SOC_875;
5641 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5642
Jani Nikula64936252013-05-22 15:36:20 +03005643 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005644
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005645 /* RPS code assumes GPLL is used */
5646 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5647
Jani Nikula742f4912015-09-03 11:16:09 +03005648 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07005649 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5650
Ben Widawskyb39fb292014-03-19 18:31:11 -07005651 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03005652 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005653 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005654 dev_priv->rps.cur_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005655
Ville Syrjälä73008b92013-06-25 19:21:01 +03005656 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005657 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07005658 dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005659
Ben Widawskyb39fb292014-03-19 18:31:11 -07005660 valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005661
Mika Kuoppala59bad942015-01-16 11:34:40 +02005662 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005663}
5664
Eugeni Dodonovdde18882012-04-18 15:29:24 -03005665static unsigned long intel_pxfreq(u32 vidfreq)
5666{
5667 unsigned long freq;
5668 int div = (vidfreq & 0x3f0000) >> 16;
5669 int post = (vidfreq & 0x3000) >> 12;
5670 int pre = (vidfreq & 0x7);
5671
5672 if (!pre)
5673 return 0;
5674
5675 freq = ((div * 133333) / ((1<<post) * pre));
5676
5677 return freq;
5678}
5679
Daniel Vettereb48eb02012-04-26 23:28:12 +02005680static const struct cparams {
5681 u16 i;
5682 u16 t;
5683 u16 m;
5684 u16 c;
5685} cparams[] = {
5686 { 1, 1333, 301, 28664 },
5687 { 1, 1066, 294, 24460 },
5688 { 1, 800, 294, 25192 },
5689 { 0, 1333, 276, 27605 },
5690 { 0, 1066, 276, 27605 },
5691 { 0, 800, 231, 23784 },
5692};
5693
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005694static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005695{
5696 u64 total_count, diff, ret;
5697 u32 count1, count2, count3, m = 0, c = 0;
5698 unsigned long now = jiffies_to_msecs(jiffies), diff1;
5699 int i;
5700
Daniel Vetter02d71952012-08-09 16:44:54 +02005701 assert_spin_locked(&mchdev_lock);
5702
Daniel Vetter20e4d402012-08-08 23:35:39 +02005703 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005704
5705 /* Prevent division-by-zero if we are asking too fast.
5706 * Also, we don't get interesting results if we are polling
5707 * faster than once in 10ms, so just return the saved value
5708 * in such cases.
5709 */
5710 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02005711 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005712
5713 count1 = I915_READ(DMIEC);
5714 count2 = I915_READ(DDREC);
5715 count3 = I915_READ(CSIEC);
5716
5717 total_count = count1 + count2 + count3;
5718
5719 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02005720 if (total_count < dev_priv->ips.last_count1) {
5721 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005722 diff += total_count;
5723 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005724 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005725 }
5726
5727 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005728 if (cparams[i].i == dev_priv->ips.c_m &&
5729 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02005730 m = cparams[i].m;
5731 c = cparams[i].c;
5732 break;
5733 }
5734 }
5735
5736 diff = div_u64(diff, diff1);
5737 ret = ((m * diff) + c);
5738 ret = div_u64(ret, 10);
5739
Daniel Vetter20e4d402012-08-08 23:35:39 +02005740 dev_priv->ips.last_count1 = total_count;
5741 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005742
Daniel Vetter20e4d402012-08-08 23:35:39 +02005743 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005744
5745 return ret;
5746}
5747
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005748unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
5749{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005750 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005751 unsigned long val;
5752
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005753 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005754 return 0;
5755
5756 spin_lock_irq(&mchdev_lock);
5757
5758 val = __i915_chipset_val(dev_priv);
5759
5760 spin_unlock_irq(&mchdev_lock);
5761
5762 return val;
5763}
5764
Daniel Vettereb48eb02012-04-26 23:28:12 +02005765unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
5766{
5767 unsigned long m, x, b;
5768 u32 tsfs;
5769
5770 tsfs = I915_READ(TSFS);
5771
5772 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
5773 x = I915_READ8(TR1);
5774
5775 b = tsfs & TSFS_INTR_MASK;
5776
5777 return ((m * x) / 127) - b;
5778}
5779
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005780static int _pxvid_to_vd(u8 pxvid)
5781{
5782 if (pxvid == 0)
5783 return 0;
5784
5785 if (pxvid >= 8 && pxvid < 31)
5786 pxvid = 31;
5787
5788 return (pxvid + 2) * 125;
5789}
5790
5791static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005792{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005793 struct drm_device *dev = dev_priv->dev;
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005794 const int vd = _pxvid_to_vd(pxvid);
5795 const int vm = vd - 1125;
5796
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005797 if (INTEL_INFO(dev)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02005798 return vm > 0 ? vm : 0;
5799
5800 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005801}
5802
Daniel Vetter02d71952012-08-09 16:44:54 +02005803static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005804{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005805 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005806 u32 count;
5807
Daniel Vetter02d71952012-08-09 16:44:54 +02005808 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005809
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005810 now = ktime_get_raw_ns();
5811 diffms = now - dev_priv->ips.last_time2;
5812 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005813
5814 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02005815 if (!diffms)
5816 return;
5817
5818 count = I915_READ(GFXEC);
5819
Daniel Vetter20e4d402012-08-08 23:35:39 +02005820 if (count < dev_priv->ips.last_count2) {
5821 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005822 diff += count;
5823 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02005824 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005825 }
5826
Daniel Vetter20e4d402012-08-08 23:35:39 +02005827 dev_priv->ips.last_count2 = count;
5828 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005829
5830 /* More magic constants... */
5831 diff = diff * 1181;
5832 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005833 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005834}
5835
Daniel Vetter02d71952012-08-09 16:44:54 +02005836void i915_update_gfx_val(struct drm_i915_private *dev_priv)
5837{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005838 struct drm_device *dev = dev_priv->dev;
5839
5840 if (INTEL_INFO(dev)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02005841 return;
5842
Daniel Vetter92703882012-08-09 16:46:01 +02005843 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005844
5845 __i915_update_gfx_val(dev_priv);
5846
Daniel Vetter92703882012-08-09 16:46:01 +02005847 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02005848}
5849
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005850static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02005851{
5852 unsigned long t, corr, state1, corr2, state2;
5853 u32 pxvid, ext_v;
5854
Daniel Vetter02d71952012-08-09 16:44:54 +02005855 assert_spin_locked(&mchdev_lock);
5856
Ville Syrjälä616847e2015-09-18 20:03:19 +03005857 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02005858 pxvid = (pxvid >> 24) & 0x7f;
5859 ext_v = pvid_to_extvid(dev_priv, pxvid);
5860
5861 state1 = ext_v;
5862
5863 t = i915_mch_val(dev_priv);
5864
5865 /* Revel in the empirically derived constants */
5866
5867 /* Correction factor in 1/100000 units */
5868 if (t > 80)
5869 corr = ((t * 2349) + 135940);
5870 else if (t >= 50)
5871 corr = ((t * 964) + 29317);
5872 else /* < 50 */
5873 corr = ((t * 301) + 1004);
5874
5875 corr = corr * ((150142 * state1) / 10000 - 78642);
5876 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02005877 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005878
5879 state2 = (corr2 * state1) / 10000;
5880 state2 /= 100; /* convert to mW */
5881
Daniel Vetter02d71952012-08-09 16:44:54 +02005882 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005883
Daniel Vetter20e4d402012-08-08 23:35:39 +02005884 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005885}
5886
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005887unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
5888{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005889 struct drm_device *dev = dev_priv->dev;
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005890 unsigned long val;
5891
Damien Lespiau3d13ef22014-02-07 19:12:47 +00005892 if (INTEL_INFO(dev)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005893 return 0;
5894
5895 spin_lock_irq(&mchdev_lock);
5896
5897 val = __i915_gfx_val(dev_priv);
5898
5899 spin_unlock_irq(&mchdev_lock);
5900
5901 return val;
5902}
5903
Daniel Vettereb48eb02012-04-26 23:28:12 +02005904/**
5905 * i915_read_mch_val - return value for IPS use
5906 *
5907 * Calculate and return a value for the IPS driver to use when deciding whether
5908 * we have thermal and power headroom to increase CPU or GPU power budget.
5909 */
5910unsigned long i915_read_mch_val(void)
5911{
5912 struct drm_i915_private *dev_priv;
5913 unsigned long chipset_val, graphics_val, ret = 0;
5914
Daniel Vetter92703882012-08-09 16:46:01 +02005915 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005916 if (!i915_mch_dev)
5917 goto out_unlock;
5918 dev_priv = i915_mch_dev;
5919
Chris Wilsonf531dcb2012-09-25 10:16:12 +01005920 chipset_val = __i915_chipset_val(dev_priv);
5921 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005922
5923 ret = chipset_val + graphics_val;
5924
5925out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005926 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005927
5928 return ret;
5929}
5930EXPORT_SYMBOL_GPL(i915_read_mch_val);
5931
5932/**
5933 * i915_gpu_raise - raise GPU frequency limit
5934 *
5935 * Raise the limit; IPS indicates we have thermal headroom.
5936 */
5937bool i915_gpu_raise(void)
5938{
5939 struct drm_i915_private *dev_priv;
5940 bool ret = true;
5941
Daniel Vetter92703882012-08-09 16:46:01 +02005942 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005943 if (!i915_mch_dev) {
5944 ret = false;
5945 goto out_unlock;
5946 }
5947 dev_priv = i915_mch_dev;
5948
Daniel Vetter20e4d402012-08-08 23:35:39 +02005949 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
5950 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005951
5952out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005953 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005954
5955 return ret;
5956}
5957EXPORT_SYMBOL_GPL(i915_gpu_raise);
5958
5959/**
5960 * i915_gpu_lower - lower GPU frequency limit
5961 *
5962 * IPS indicates we're close to a thermal limit, so throttle back the GPU
5963 * frequency maximum.
5964 */
5965bool i915_gpu_lower(void)
5966{
5967 struct drm_i915_private *dev_priv;
5968 bool ret = true;
5969
Daniel Vetter92703882012-08-09 16:46:01 +02005970 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005971 if (!i915_mch_dev) {
5972 ret = false;
5973 goto out_unlock;
5974 }
5975 dev_priv = i915_mch_dev;
5976
Daniel Vetter20e4d402012-08-08 23:35:39 +02005977 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
5978 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005979
5980out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02005981 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02005982
5983 return ret;
5984}
5985EXPORT_SYMBOL_GPL(i915_gpu_lower);
5986
5987/**
5988 * i915_gpu_busy - indicate GPU business to IPS
5989 *
5990 * Tell the IPS driver whether or not the GPU is busy.
5991 */
5992bool i915_gpu_busy(void)
5993{
5994 struct drm_i915_private *dev_priv;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005995 struct intel_engine_cs *ring;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005996 bool ret = false;
Chris Wilsonf047e392012-07-21 12:31:41 +01005997 int i;
Daniel Vettereb48eb02012-04-26 23:28:12 +02005998
Daniel Vetter92703882012-08-09 16:46:01 +02005999 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006000 if (!i915_mch_dev)
6001 goto out_unlock;
6002 dev_priv = i915_mch_dev;
6003
Chris Wilsonf047e392012-07-21 12:31:41 +01006004 for_each_ring(ring, dev_priv, i)
6005 ret |= !list_empty(&ring->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006006
6007out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006008 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006009
6010 return ret;
6011}
6012EXPORT_SYMBOL_GPL(i915_gpu_busy);
6013
6014/**
6015 * i915_gpu_turbo_disable - disable graphics turbo
6016 *
6017 * Disable graphics turbo by resetting the max frequency and setting the
6018 * current frequency to the default.
6019 */
6020bool i915_gpu_turbo_disable(void)
6021{
6022 struct drm_i915_private *dev_priv;
6023 bool ret = true;
6024
Daniel Vetter92703882012-08-09 16:46:01 +02006025 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006026 if (!i915_mch_dev) {
6027 ret = false;
6028 goto out_unlock;
6029 }
6030 dev_priv = i915_mch_dev;
6031
Daniel Vetter20e4d402012-08-08 23:35:39 +02006032 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006033
Daniel Vetter20e4d402012-08-08 23:35:39 +02006034 if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006035 ret = false;
6036
6037out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006038 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006039
6040 return ret;
6041}
6042EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6043
6044/**
6045 * Tells the intel_ips driver that the i915 driver is now loaded, if
6046 * IPS got loaded first.
6047 *
6048 * This awkward dance is so that neither module has to depend on the
6049 * other in order for IPS to do the appropriate communication of
6050 * GPU turbo limits to i915.
6051 */
6052static void
6053ips_ping_for_i915_load(void)
6054{
6055 void (*link)(void);
6056
6057 link = symbol_get(ips_link_to_i915_driver);
6058 if (link) {
6059 link();
6060 symbol_put(ips_link_to_i915_driver);
6061 }
6062}
6063
6064void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6065{
Daniel Vetter02d71952012-08-09 16:44:54 +02006066 /* We only register the i915 ips part with intel-ips once everything is
6067 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006068 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006069 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006070 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006071
6072 ips_ping_for_i915_load();
6073}
6074
6075void intel_gpu_ips_teardown(void)
6076{
Daniel Vetter92703882012-08-09 16:46:01 +02006077 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006078 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006079 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006080}
Deepak S76c3552f2014-01-30 23:08:16 +05306081
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006082static void intel_init_emon(struct drm_device *dev)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006083{
6084 struct drm_i915_private *dev_priv = dev->dev_private;
6085 u32 lcfuse;
6086 u8 pxw[16];
6087 int i;
6088
6089 /* Disable to program */
6090 I915_WRITE(ECR, 0);
6091 POSTING_READ(ECR);
6092
6093 /* Program energy weights for various events */
6094 I915_WRITE(SDEW, 0x15040d00);
6095 I915_WRITE(CSIEW0, 0x007f0000);
6096 I915_WRITE(CSIEW1, 0x1e220004);
6097 I915_WRITE(CSIEW2, 0x04000004);
6098
6099 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006100 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006101 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006102 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006103
6104 /* Program P-state weights to account for frequency power adjustment */
6105 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006106 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006107 unsigned long freq = intel_pxfreq(pxvidfreq);
6108 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6109 PXVFREQ_PX_SHIFT;
6110 unsigned long val;
6111
6112 val = vid * vid;
6113 val *= (freq / 1000);
6114 val *= 255;
6115 val /= (127*127*900);
6116 if (val > 0xff)
6117 DRM_ERROR("bad pxval: %ld\n", val);
6118 pxw[i] = val;
6119 }
6120 /* Render standby states get 0 weight */
6121 pxw[14] = 0;
6122 pxw[15] = 0;
6123
6124 for (i = 0; i < 4; i++) {
6125 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6126 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006127 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006128 }
6129
6130 /* Adjust magic regs to magic values (more experimental results) */
6131 I915_WRITE(OGW0, 0);
6132 I915_WRITE(OGW1, 0);
6133 I915_WRITE(EG0, 0x00007f00);
6134 I915_WRITE(EG1, 0x0000000e);
6135 I915_WRITE(EG2, 0x000e0000);
6136 I915_WRITE(EG3, 0x68000300);
6137 I915_WRITE(EG4, 0x42000000);
6138 I915_WRITE(EG5, 0x00140031);
6139 I915_WRITE(EG6, 0);
6140 I915_WRITE(EG7, 0);
6141
6142 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006143 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006144
6145 /* Enable PMON + select events */
6146 I915_WRITE(ECR, 0x80000019);
6147
6148 lcfuse = I915_READ(LCFUSE02);
6149
Daniel Vetter20e4d402012-08-08 23:35:39 +02006150 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006151}
6152
Imre Deakae484342014-03-31 15:10:44 +03006153void intel_init_gt_powersave(struct drm_device *dev)
6154{
Imre Deake6069ca2014-04-18 16:01:02 +03006155 i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6);
6156
Deepak S38807742014-05-23 21:00:15 +05306157 if (IS_CHERRYVIEW(dev))
6158 cherryview_init_gt_powersave(dev);
6159 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006160 valleyview_init_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006161}
6162
6163void intel_cleanup_gt_powersave(struct drm_device *dev)
6164{
Deepak S38807742014-05-23 21:00:15 +05306165 if (IS_CHERRYVIEW(dev))
6166 return;
6167 else if (IS_VALLEYVIEW(dev))
Imre Deak4e805192014-04-14 20:24:41 +03006168 valleyview_cleanup_gt_powersave(dev);
Imre Deakae484342014-03-31 15:10:44 +03006169}
6170
Imre Deakdbea3ce2014-12-15 18:59:28 +02006171static void gen6_suspend_rps(struct drm_device *dev)
6172{
6173 struct drm_i915_private *dev_priv = dev->dev_private;
6174
6175 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
6176
Akash Goel4c2a8892015-03-06 11:07:24 +05306177 gen6_disable_rps_interrupts(dev);
Imre Deakdbea3ce2014-12-15 18:59:28 +02006178}
6179
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006180/**
6181 * intel_suspend_gt_powersave - suspend PM work and helper threads
6182 * @dev: drm device
6183 *
6184 * We don't want to disable RC6 or other features here, we just want
6185 * to make sure any work we've queued has finished and won't bother
6186 * us while we're suspended.
6187 */
6188void intel_suspend_gt_powersave(struct drm_device *dev)
6189{
6190 struct drm_i915_private *dev_priv = dev->dev_private;
6191
Imre Deakd4d70aa2014-11-19 15:30:04 +02006192 if (INTEL_INFO(dev)->gen < 6)
6193 return;
6194
Imre Deakdbea3ce2014-12-15 18:59:28 +02006195 gen6_suspend_rps(dev);
Deepak Sb47adc12014-06-20 20:03:02 +05306196
6197 /* Force GPU to min freq during suspend */
6198 gen6_rps_idle(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006199}
6200
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006201void intel_disable_gt_powersave(struct drm_device *dev)
6202{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006203 struct drm_i915_private *dev_priv = dev->dev_private;
6204
Daniel Vetter930ebb42012-06-29 23:32:16 +02006205 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006206 ironlake_disable_drps(dev);
Deepak S38807742014-05-23 21:00:15 +05306207 } else if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter10d8d362014-06-12 17:48:52 +02006208 intel_suspend_gt_powersave(dev);
Imre Deake4948372014-05-12 18:35:04 +03006209
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006210 mutex_lock(&dev_priv->rps.hw_lock);
Zhe Wang20e49362014-11-04 17:07:05 +00006211 if (INTEL_INFO(dev)->gen >= 9)
6212 gen9_disable_rps(dev);
6213 else if (IS_CHERRYVIEW(dev))
Deepak S38807742014-05-23 21:00:15 +05306214 cherryview_disable_rps(dev);
6215 else if (IS_VALLEYVIEW(dev))
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006216 valleyview_disable_rps(dev);
6217 else
6218 gen6_disable_rps(dev);
Imre Deake5347702014-11-19 15:30:02 +02006219
Chris Wilsonc0951f02013-10-10 21:58:50 +01006220 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006221 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02006222 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006223}
6224
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006225static void intel_gen6_powersave_work(struct work_struct *work)
6226{
6227 struct drm_i915_private *dev_priv =
6228 container_of(work, struct drm_i915_private,
6229 rps.delayed_resume_work.work);
6230 struct drm_device *dev = dev_priv->dev;
6231
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006232 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006233
Akash Goel4c2a8892015-03-06 11:07:24 +05306234 gen6_reset_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006235
Deepak S38807742014-05-23 21:00:15 +05306236 if (IS_CHERRYVIEW(dev)) {
6237 cherryview_enable_rps(dev);
6238 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -07006239 valleyview_enable_rps(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006240 } else if (INTEL_INFO(dev)->gen >= 9) {
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006241 gen9_enable_rc6(dev);
Zhe Wang20e49362014-11-04 17:07:05 +00006242 gen9_enable_rps(dev);
Akash Goelcc017fb42015-06-29 14:50:21 +05306243 if (IS_SKYLAKE(dev))
6244 __gen6_update_ring_freq(dev);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006245 } else if (IS_BROADWELL(dev)) {
6246 gen8_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006247 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006248 } else {
6249 gen6_enable_rps(dev);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03006250 __gen6_update_ring_freq(dev);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006251 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006252
6253 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6254 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6255
6256 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6257 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6258
Chris Wilsonc0951f02013-10-10 21:58:50 +01006259 dev_priv->rps.enabled = true;
Imre Deak3cc134e2014-11-19 15:30:03 +02006260
Akash Goel4c2a8892015-03-06 11:07:24 +05306261 gen6_enable_rps_interrupts(dev);
Imre Deak3cc134e2014-11-19 15:30:03 +02006262
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006263 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deakc6df39b2014-04-14 20:24:29 +03006264
6265 intel_runtime_pm_put(dev_priv);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006266}
6267
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006268void intel_enable_gt_powersave(struct drm_device *dev)
6269{
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006270 struct drm_i915_private *dev_priv = dev->dev_private;
6271
Yu Zhangf61018b2015-02-10 19:05:52 +08006272 /* Powersaving is controlled by the host when inside a VM */
6273 if (intel_vgpu_active(dev))
6274 return;
6275
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006276 if (IS_IRONLAKE_M(dev)) {
Imre Deakdc1d0132014-04-14 20:24:28 +03006277 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006278 ironlake_enable_drps(dev);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006279 intel_init_emon(dev);
Imre Deakdc1d0132014-04-14 20:24:28 +03006280 mutex_unlock(&dev->struct_mutex);
Deepak S38807742014-05-23 21:00:15 +05306281 } else if (INTEL_INFO(dev)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006282 /*
6283 * PCU communication is slow and this doesn't need to be
6284 * done at any specific time, so do this out of our fast path
6285 * to make resume and init faster.
Imre Deakc6df39b2014-04-14 20:24:29 +03006286 *
6287 * We depend on the HW RC6 power context save/restore
6288 * mechanism when entering D3 through runtime PM suspend. So
6289 * disable RPM until RPS/RC6 is properly setup. We can only
6290 * get here via the driver load/system resume/runtime resume
6291 * paths, so the _noresume version is enough (and in case of
6292 * runtime resume it's necessary).
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006293 */
Imre Deakc6df39b2014-04-14 20:24:29 +03006294 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
6295 round_jiffies_up_relative(HZ)))
6296 intel_runtime_pm_get_noresume(dev_priv);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006297 }
6298}
6299
Imre Deakc6df39b2014-04-14 20:24:29 +03006300void intel_reset_gt_powersave(struct drm_device *dev)
6301{
6302 struct drm_i915_private *dev_priv = dev->dev_private;
6303
Imre Deakdbea3ce2014-12-15 18:59:28 +02006304 if (INTEL_INFO(dev)->gen < 6)
6305 return;
6306
6307 gen6_suspend_rps(dev);
Imre Deakc6df39b2014-04-14 20:24:29 +03006308 dev_priv->rps.enabled = false;
Imre Deakc6df39b2014-04-14 20:24:29 +03006309}
6310
Daniel Vetter3107bd42012-10-31 22:52:31 +01006311static void ibx_init_clock_gating(struct drm_device *dev)
6312{
6313 struct drm_i915_private *dev_priv = dev->dev_private;
6314
6315 /*
6316 * On Ibex Peak and Cougar Point, we need to disable clock
6317 * gating for the panel power sequencer or it will fail to
6318 * start up when no ports are active.
6319 */
6320 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6321}
6322
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006323static void g4x_disable_trickle_feed(struct drm_device *dev)
6324{
6325 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006326 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006327
Damien Lespiau055e3932014-08-18 13:49:10 +01006328 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006329 I915_WRITE(DSPCNTR(pipe),
6330 I915_READ(DSPCNTR(pipe)) |
6331 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006332
6333 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6334 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006335 }
6336}
6337
Ville Syrjälä017636c2013-12-05 15:51:37 +02006338static void ilk_init_lp_watermarks(struct drm_device *dev)
6339{
6340 struct drm_i915_private *dev_priv = dev->dev_private;
6341
6342 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6343 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6344 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6345
6346 /*
6347 * Don't touch WM1S_LP_EN here.
6348 * Doing so could cause underruns.
6349 */
6350}
6351
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006352static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006353{
6354 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006355 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006356
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006357 /*
6358 * Required for FBC
6359 * WaFbcDisableDpfcClockGating:ilk
6360 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006361 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6362 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6363 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006364
6365 I915_WRITE(PCH_3DCGDIS0,
6366 MARIUNIT_CLOCK_GATE_DISABLE |
6367 SVSMUNIT_CLOCK_GATE_DISABLE);
6368 I915_WRITE(PCH_3DCGDIS1,
6369 VFMUNIT_CLOCK_GATE_DISABLE);
6370
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006371 /*
6372 * According to the spec the following bits should be set in
6373 * order to enable memory self-refresh
6374 * The bit 22/21 of 0x42004
6375 * The bit 5 of 0x42020
6376 * The bit 15 of 0x45000
6377 */
6378 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6379 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6380 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006381 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006382 I915_WRITE(DISP_ARB_CTL,
6383 (I915_READ(DISP_ARB_CTL) |
6384 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006385
6386 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006387
6388 /*
6389 * Based on the document from hardware guys the following bits
6390 * should be set unconditionally in order to enable FBC.
6391 * The bit 22 of 0x42000
6392 * The bit 22 of 0x42004
6393 * The bit 7,8,9 of 0x42020.
6394 */
6395 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006396 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006397 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6398 I915_READ(ILK_DISPLAY_CHICKEN1) |
6399 ILK_FBCQ_DIS);
6400 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6401 I915_READ(ILK_DISPLAY_CHICKEN2) |
6402 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006403 }
6404
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006405 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6406
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006407 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6408 I915_READ(ILK_DISPLAY_CHICKEN2) |
6409 ILK_ELPIN_409_SELECT);
6410 I915_WRITE(_3D_CHICKEN2,
6411 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6412 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006413
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006414 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006415 I915_WRITE(CACHE_MODE_0,
6416 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006417
Akash Goel4e046322014-04-04 17:14:38 +05306418 /* WaDisable_RenderCache_OperationalFlush:ilk */
6419 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6420
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006421 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006422
Daniel Vetter3107bd42012-10-31 22:52:31 +01006423 ibx_init_clock_gating(dev);
6424}
6425
6426static void cpt_init_clock_gating(struct drm_device *dev)
6427{
6428 struct drm_i915_private *dev_priv = dev->dev_private;
6429 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006430 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006431
6432 /*
6433 * On Ibex Peak and Cougar Point, we need to disable clock
6434 * gating for the panel power sequencer or it will fail to
6435 * start up when no ports are active.
6436 */
Jesse Barnescd664072013-10-02 10:34:19 -07006437 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6438 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6439 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006440 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6441 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006442 /* The below fixes the weird display corruption, a few pixels shifted
6443 * downward, on (only) LVDS of some HP laptops with IVY.
6444 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006445 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006446 val = I915_READ(TRANS_CHICKEN2(pipe));
6447 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6448 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006449 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006450 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006451 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6452 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6453 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006454 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6455 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006456 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006457 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006458 I915_WRITE(TRANS_CHICKEN1(pipe),
6459 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6460 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006461}
6462
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006463static void gen6_check_mch_setup(struct drm_device *dev)
6464{
6465 struct drm_i915_private *dev_priv = dev->dev_private;
6466 uint32_t tmp;
6467
6468 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006469 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6470 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6471 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006472}
6473
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006474static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006475{
6476 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006477 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006478
Damien Lespiau231e54f2012-10-19 17:55:41 +01006479 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006480
6481 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6482 I915_READ(ILK_DISPLAY_CHICKEN2) |
6483 ILK_ELPIN_409_SELECT);
6484
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006485 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006486 I915_WRITE(_3D_CHICKEN,
6487 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6488
Akash Goel4e046322014-04-04 17:14:38 +05306489 /* WaDisable_RenderCache_OperationalFlush:snb */
6490 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6491
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006492 /*
6493 * BSpec recoomends 8x4 when MSAA is used,
6494 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006495 *
6496 * Note that PS/WM thread counts depend on the WIZ hashing
6497 * disable bit, which we don't touch here, but it's good
6498 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006499 */
6500 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006501 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006502
Ville Syrjälä017636c2013-12-05 15:51:37 +02006503 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006504
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006505 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006506 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006507
6508 I915_WRITE(GEN6_UCGCTL1,
6509 I915_READ(GEN6_UCGCTL1) |
6510 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6511 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6512
6513 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6514 * gating disable must be set. Failure to set it results in
6515 * flickering pixels due to Z write ordering failures after
6516 * some amount of runtime in the Mesa "fire" demo, and Unigine
6517 * Sanctuary and Tropics, and apparently anything else with
6518 * alpha test or pixel discard.
6519 *
6520 * According to the spec, bit 11 (RCCUNIT) must also be set,
6521 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006522 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006523 * WaDisableRCCUnitClockGating:snb
6524 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006525 */
6526 I915_WRITE(GEN6_UCGCTL2,
6527 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6528 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6529
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006530 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006531 I915_WRITE(_3D_CHICKEN3,
6532 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006533
6534 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006535 * Bspec says:
6536 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6537 * 3DSTATE_SF number of SF output attributes is more than 16."
6538 */
6539 I915_WRITE(_3D_CHICKEN3,
6540 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6541
6542 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006543 * According to the spec the following bits should be
6544 * set in order to enable memory self-refresh and fbc:
6545 * The bit21 and bit22 of 0x42000
6546 * The bit21 and bit22 of 0x42004
6547 * The bit5 and bit7 of 0x42020
6548 * The bit14 of 0x70180
6549 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006550 *
6551 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006552 */
6553 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6554 I915_READ(ILK_DISPLAY_CHICKEN1) |
6555 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6556 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6557 I915_READ(ILK_DISPLAY_CHICKEN2) |
6558 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006559 I915_WRITE(ILK_DSPCLK_GATE_D,
6560 I915_READ(ILK_DSPCLK_GATE_D) |
6561 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6562 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006563
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006564 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006565
Daniel Vetter3107bd42012-10-31 22:52:31 +01006566 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006567
6568 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006569}
6570
6571static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6572{
6573 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
6574
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006575 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006576 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006577 *
6578 * This actually overrides the dispatch
6579 * mode for all thread types.
6580 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006581 reg &= ~GEN7_FF_SCHED_MASK;
6582 reg |= GEN7_FF_TS_SCHED_HW;
6583 reg |= GEN7_FF_VS_SCHED_HW;
6584 reg |= GEN7_FF_DS_SCHED_HW;
6585
6586 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6587}
6588
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006589static void lpt_init_clock_gating(struct drm_device *dev)
6590{
6591 struct drm_i915_private *dev_priv = dev->dev_private;
6592
6593 /*
6594 * TODO: this bit should only be enabled when really needed, then
6595 * disabled when not needed anymore in order to save power.
6596 */
Ville Syrjäläc2699522015-08-27 23:55:59 +03006597 if (HAS_PCH_LPT_LP(dev))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006598 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6599 I915_READ(SOUTH_DSPCLK_GATE_D) |
6600 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006601
6602 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03006603 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
6604 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006605 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006606}
6607
Imre Deak7d708ee2013-04-17 14:04:50 +03006608static void lpt_suspend_hw(struct drm_device *dev)
6609{
6610 struct drm_i915_private *dev_priv = dev->dev_private;
6611
Ville Syrjäläc2699522015-08-27 23:55:59 +03006612 if (HAS_PCH_LPT_LP(dev)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03006613 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
6614
6615 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6616 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6617 }
6618}
6619
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03006620static void broadwell_init_clock_gating(struct drm_device *dev)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006621{
6622 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00006623 enum pipe pipe;
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006624 uint32_t misccpctl;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006625
Ville Syrjälä7ad0dba2015-05-19 20:32:55 +03006626 ilk_init_lp_watermarks(dev);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006627
Ben Widawskyab57fff2013-12-12 15:28:04 -08006628 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006629 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006630
Ben Widawskyab57fff2013-12-12 15:28:04 -08006631 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006632 I915_WRITE(CHICKEN_PAR1_1,
6633 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6634
Ben Widawskyab57fff2013-12-12 15:28:04 -08006635 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006636 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006637 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006638 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006639 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006640 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006641
Ben Widawskyab57fff2013-12-12 15:28:04 -08006642 /* WaVSRefCountFullforceMissDisable:bdw */
6643 /* WaDSRefCountFullforceMissDisable:bdw */
6644 I915_WRITE(GEN7_FF_THREAD_MODE,
6645 I915_READ(GEN7_FF_THREAD_MODE) &
6646 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006647
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006648 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6649 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006650
6651 /* WaDisableSDEUnitClockGating:bdw */
6652 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6653 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006654
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006655 /*
6656 * WaProgramL3SqcReg1Default:bdw
6657 * WaTempDisableDOPClkGating:bdw
6658 */
6659 misccpctl = I915_READ(GEN7_MISCCPCTL);
6660 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6661 I915_WRITE(GEN8_L3SQCREG1, BDW_WA_L3SQCREG1_DEFAULT);
6662 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6663
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006664 /*
6665 * WaGttCachingOffByDefault:bdw
6666 * GTT cache may not work with big pages, so if those
6667 * are ever enabled GTT cache may need to be disabled.
6668 */
6669 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
6670
Paulo Zanoni89d6b2b2014-08-21 17:09:36 -03006671 lpt_init_clock_gating(dev);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006672}
6673
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006674static void haswell_init_clock_gating(struct drm_device *dev)
6675{
6676 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006677
Ville Syrjälä017636c2013-12-05 15:51:37 +02006678 ilk_init_lp_watermarks(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006679
Francisco Jerezf3fc4882013-10-02 15:53:16 -07006680 /* L3 caching of data atomics doesn't work -- disable it. */
6681 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6682 I915_WRITE(HSW_ROW_CHICKEN3,
6683 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6684
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006685 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006686 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6687 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6688 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6689
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02006690 /* WaVSRefCountFullforceMissDisable:hsw */
6691 I915_WRITE(GEN7_FF_THREAD_MODE,
6692 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006693
Akash Goel4e046322014-04-04 17:14:38 +05306694 /* WaDisable_RenderCache_OperationalFlush:hsw */
6695 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6696
Chia-I Wufe27c602014-01-28 13:29:33 +08006697 /* enable HiZ Raw Stall Optimization */
6698 I915_WRITE(CACHE_MODE_0_GEN7,
6699 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6700
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006701 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006702 I915_WRITE(CACHE_MODE_1,
6703 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006704
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006705 /*
6706 * BSpec recommends 8x4 when MSAA is used,
6707 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006708 *
6709 * Note that PS/WM thread counts depend on the WIZ hashing
6710 * disable bit, which we don't touch here, but it's good
6711 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006712 */
6713 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006714 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02006715
Kenneth Graunke94411592014-12-31 16:23:00 -08006716 /* WaSampleCChickenBitEnable:hsw */
6717 I915_WRITE(HALF_SLICE_CHICKEN3,
6718 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
6719
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006720 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07006721 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
6722
Paulo Zanoni90a88642013-05-03 17:23:45 -03006723 /* WaRsPkgCStateDisplayPMReq:hsw */
6724 I915_WRITE(CHICKEN_PAR1_1,
6725 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03006726
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006727 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006728}
6729
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006730static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006731{
6732 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07006733 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006734
Ville Syrjälä017636c2013-12-05 15:51:37 +02006735 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006736
Damien Lespiau231e54f2012-10-19 17:55:41 +01006737 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006738
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006739 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05006740 I915_WRITE(_3D_CHICKEN3,
6741 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6742
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006743 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006744 I915_WRITE(IVB_CHICKEN3,
6745 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6746 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6747
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006748 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07006749 if (IS_IVB_GT1(dev))
6750 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
6751 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006752
Akash Goel4e046322014-04-04 17:14:38 +05306753 /* WaDisable_RenderCache_OperationalFlush:ivb */
6754 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6755
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006756 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006757 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
6758 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
6759
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006760 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006761 I915_WRITE(GEN7_L3CNTLREG1,
6762 GEN7_WA_FOR_GEN7_L3_CONTROL);
6763 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07006764 GEN7_WA_L3_CHICKEN_MODE);
6765 if (IS_IVB_GT1(dev))
6766 I915_WRITE(GEN7_ROW_CHICKEN2,
6767 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006768 else {
6769 /* must write both registers */
6770 I915_WRITE(GEN7_ROW_CHICKEN2,
6771 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07006772 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
6773 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02006774 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006775
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006776 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05006777 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6778 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6779
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02006780 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006781 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006782 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006783 */
6784 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02006785 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006786
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006787 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006788 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6789 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6790 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6791
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006792 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006793
6794 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02006795
Chris Wilson22721342014-03-04 09:41:43 +00006796 if (0) { /* causes HiZ corruption on ivb:gt1 */
6797 /* enable HiZ Raw Stall Optimization */
6798 I915_WRITE(CACHE_MODE_0_GEN7,
6799 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6800 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08006801
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006802 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02006803 I915_WRITE(CACHE_MODE_1,
6804 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07006805
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006806 /*
6807 * BSpec recommends 8x4 when MSAA is used,
6808 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006809 *
6810 * Note that PS/WM thread counts depend on the WIZ hashing
6811 * disable bit, which we don't touch here, but it's good
6812 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006813 */
6814 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006815 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02006816
Ben Widawsky20848222012-05-04 18:58:59 -07006817 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
6818 snpcr &= ~GEN6_MBC_SNPCR_MASK;
6819 snpcr |= GEN6_MBC_SNPCR_MED;
6820 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006821
Ben Widawskyab5c6082013-04-05 13:12:41 -07006822 if (!HAS_PCH_NOP(dev))
6823 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006824
6825 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006826}
6827
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006828static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv)
6829{
6830 I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE);
6831
6832 /*
6833 * Disable trickle feed and enable pnd deadline calculation
6834 */
6835 I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE);
6836 I915_WRITE(CBR1_VLV, 0);
6837}
6838
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006839static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006840{
6841 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006842
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006843 vlv_init_display_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006844
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006845 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05006846 I915_WRITE(_3D_CHICKEN3,
6847 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
6848
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006849 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006850 I915_WRITE(IVB_CHICKEN3,
6851 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
6852 CHICKEN3_DGMG_DONE_FIX_DISABLE);
6853
Ville Syrjäläfad7d362014-01-22 21:32:39 +02006854 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006855 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07006856 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08006857 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
6858 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07006859
Akash Goel4e046322014-04-04 17:14:38 +05306860 /* WaDisable_RenderCache_OperationalFlush:vlv */
6861 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6862
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006863 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05006864 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
6865 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
6866
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006867 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07006868 I915_WRITE(GEN7_ROW_CHICKEN2,
6869 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
6870
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006871 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006872 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6873 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6874 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6875
Ville Syrjälä46680e02014-01-22 21:33:01 +02006876 gen7_setup_fixed_func_scheduler(dev_priv);
6877
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006878 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07006879 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006880 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006881 */
6882 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02006883 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07006884
Akash Goelc98f5062014-03-24 23:00:07 +05306885 /* WaDisableL3Bank2xClockGate:vlv
6886 * Disabling L3 clock gating- MMIO 940c[25] = 1
6887 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
6888 I915_WRITE(GEN7_UCGCTL4,
6889 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07006890
Ville Syrjäläafd58e72014-01-22 21:33:03 +02006891 /*
6892 * BSpec says this must be set, even though
6893 * WaDisable4x2SubspanOptimization isn't listed for VLV.
6894 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02006895 I915_WRITE(CACHE_MODE_1,
6896 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07006897
6898 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02006899 * BSpec recommends 8x4 when MSAA is used,
6900 * however in practice 16x4 seems fastest.
6901 *
6902 * Note that PS/WM thread counts depend on the WIZ hashing
6903 * disable bit, which we don't touch here, but it's good
6904 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
6905 */
6906 I915_WRITE(GEN7_GT_MODE,
6907 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
6908
6909 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02006910 * WaIncreaseL3CreditsForVLVB0:vlv
6911 * This is the hardware default actually.
6912 */
6913 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
6914
6915 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006916 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07006917 * Disable clock gating on th GCFG unit to prevent a delay
6918 * in the reporting of vblank events.
6919 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02006920 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006921}
6922
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006923static void cherryview_init_clock_gating(struct drm_device *dev)
6924{
6925 struct drm_i915_private *dev_priv = dev->dev_private;
6926
Ville Syrjäläc6beb132015-03-05 21:19:48 +02006927 vlv_init_display_clock_gating(dev_priv);
Ville Syrjälädd811e72014-04-09 13:28:33 +03006928
Ville Syrjälä232ce332014-04-09 13:28:35 +03006929 /* WaVSRefCountFullforceMissDisable:chv */
6930 /* WaDSRefCountFullforceMissDisable:chv */
6931 I915_WRITE(GEN7_FF_THREAD_MODE,
6932 I915_READ(GEN7_FF_THREAD_MODE) &
6933 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03006934
6935 /* WaDisableSemaphoreAndSyncFlipWait:chv */
6936 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6937 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03006938
6939 /* WaDisableCSUnitClockGating:chv */
6940 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
6941 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03006942
6943 /* WaDisableSDEUnitClockGating:chv */
6944 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6945 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03006946
6947 /*
6948 * GTT cache may not work with big pages, so if those
6949 * are ever enabled GTT cache may need to be disabled.
6950 */
6951 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03006952}
6953
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006954static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006955{
6956 struct drm_i915_private *dev_priv = dev->dev_private;
6957 uint32_t dspclk_gate;
6958
6959 I915_WRITE(RENCLK_GATE_D1, 0);
6960 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
6961 GS_UNIT_CLOCK_GATE_DISABLE |
6962 CL_UNIT_CLOCK_GATE_DISABLE);
6963 I915_WRITE(RAMCLK_GATE_D, 0);
6964 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
6965 OVRUNIT_CLOCK_GATE_DISABLE |
6966 OVCUNIT_CLOCK_GATE_DISABLE;
6967 if (IS_GM45(dev))
6968 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
6969 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02006970
6971 /* WaDisableRenderCachePipelinedFlush */
6972 I915_WRITE(CACHE_MODE_0,
6973 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03006974
Akash Goel4e046322014-04-04 17:14:38 +05306975 /* WaDisable_RenderCache_OperationalFlush:g4x */
6976 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6977
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006978 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006979}
6980
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006981static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006982{
6983 struct drm_i915_private *dev_priv = dev->dev_private;
6984
6985 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
6986 I915_WRITE(RENCLK_GATE_D2, 0);
6987 I915_WRITE(DSPCLK_GATE_D, 0);
6988 I915_WRITE(RAMCLK_GATE_D, 0);
6989 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03006990 I915_WRITE(MI_ARB_STATE,
6991 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05306992
6993 /* WaDisable_RenderCache_OperationalFlush:gen4 */
6994 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006995}
6996
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006997static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006998{
6999 struct drm_i915_private *dev_priv = dev->dev_private;
7000
7001 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7002 I965_RCC_CLOCK_GATE_DISABLE |
7003 I965_RCPB_CLOCK_GATE_DISABLE |
7004 I965_ISC_CLOCK_GATE_DISABLE |
7005 I965_FBC_CLOCK_GATE_DISABLE);
7006 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007007 I915_WRITE(MI_ARB_STATE,
7008 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307009
7010 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7011 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007012}
7013
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007014static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007015{
7016 struct drm_i915_private *dev_priv = dev->dev_private;
7017 u32 dstate = I915_READ(D_STATE);
7018
7019 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7020 DSTATE_DOT_CLOCK_GATING;
7021 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007022
7023 if (IS_PINEVIEW(dev))
7024 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007025
7026 /* IIR "flip pending" means done if this bit is set */
7027 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007028
7029 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007030 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007031
7032 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7033 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007034
7035 I915_WRITE(MI_ARB_STATE,
7036 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007037}
7038
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007039static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007040{
7041 struct drm_i915_private *dev_priv = dev->dev_private;
7042
7043 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007044
7045 /* interrupts should cause a wake up from C3 */
7046 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7047 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007048
7049 I915_WRITE(MEM_MODE,
7050 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007051}
7052
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007053static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007054{
7055 struct drm_i915_private *dev_priv = dev->dev_private;
7056
7057 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03007058
7059 I915_WRITE(MEM_MODE,
7060 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7061 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007062}
7063
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007064void intel_init_clock_gating(struct drm_device *dev)
7065{
7066 struct drm_i915_private *dev_priv = dev->dev_private;
7067
Damien Lespiauc57e3552015-02-09 19:33:05 +00007068 if (dev_priv->display.init_clock_gating)
7069 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007070}
7071
Imre Deak7d708ee2013-04-17 14:04:50 +03007072void intel_suspend_hw(struct drm_device *dev)
7073{
7074 if (HAS_PCH_LPT(dev))
7075 lpt_suspend_hw(dev);
7076}
7077
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007078/* Set up chip specific power management-related functions */
7079void intel_init_pm(struct drm_device *dev)
7080{
7081 struct drm_i915_private *dev_priv = dev->dev_private;
7082
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007083 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007084
Daniel Vetterc921aba2012-04-26 23:28:17 +02007085 /* For cxsr */
7086 if (IS_PINEVIEW(dev))
7087 i915_pineview_get_mem_freq(dev);
7088 else if (IS_GEN5(dev))
7089 i915_ironlake_get_mem_freq(dev);
7090
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007091 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00007092 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00007093 skl_setup_wm_latency(dev);
7094
Imre Deaka82abe42015-03-27 14:00:04 +02007095 if (IS_BROXTON(dev))
7096 dev_priv->display.init_clock_gating =
7097 bxt_init_clock_gating;
7098 else if (IS_SKYLAKE(dev))
7099 dev_priv->display.init_clock_gating =
7100 skl_init_clock_gating;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00007101 dev_priv->display.update_wm = skl_update_wm;
7102 dev_priv->display.update_sprite_wm = skl_update_sprite_wm;
Damien Lespiauc83155a2014-03-28 00:18:35 +05307103 } else if (HAS_PCH_SPLIT(dev)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00007104 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007105
Ville Syrjäläbd602542014-01-07 16:14:10 +02007106 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
7107 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
7108 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
7109 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
7110 dev_priv->display.update_wm = ilk_update_wm;
7111 dev_priv->display.update_sprite_wm = ilk_update_sprite_wm;
7112 } else {
7113 DRM_DEBUG_KMS("Failed to read display plane latency. "
7114 "Disable CxSR\n");
7115 }
7116
7117 if (IS_GEN5(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007118 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007119 else if (IS_GEN6(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007120 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007121 else if (IS_IVYBRIDGE(dev))
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007122 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007123 else if (IS_HASWELL(dev))
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007124 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007125 else if (INTEL_INFO(dev)->gen == 8)
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03007126 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007127 } else if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03007128 vlv_setup_wm_latency(dev);
7129
7130 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007131 dev_priv->display.init_clock_gating =
7132 cherryview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007133 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007134 vlv_setup_wm_latency(dev);
7135
7136 dev_priv->display.update_wm = vlv_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007137 dev_priv->display.init_clock_gating =
7138 valleyview_init_clock_gating;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007139 } else if (IS_PINEVIEW(dev)) {
7140 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
7141 dev_priv->is_ddr3,
7142 dev_priv->fsb_freq,
7143 dev_priv->mem_freq)) {
7144 DRM_INFO("failed to find known CxSR latency "
7145 "(found ddr%s fsb freq %d, mem freq %d), "
7146 "disabling CxSR\n",
7147 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7148 dev_priv->fsb_freq, dev_priv->mem_freq);
7149 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007150 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007151 dev_priv->display.update_wm = NULL;
7152 } else
7153 dev_priv->display.update_wm = pineview_update_wm;
7154 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7155 } else if (IS_G4X(dev)) {
7156 dev_priv->display.update_wm = g4x_update_wm;
7157 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
7158 } else if (IS_GEN4(dev)) {
7159 dev_priv->display.update_wm = i965_update_wm;
7160 if (IS_CRESTLINE(dev))
7161 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
7162 else if (IS_BROADWATER(dev))
7163 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7164 } else if (IS_GEN3(dev)) {
7165 dev_priv->display.update_wm = i9xx_update_wm;
7166 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
7167 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007168 } else if (IS_GEN2(dev)) {
7169 if (INTEL_INFO(dev)->num_pipes == 1) {
7170 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007171 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007172 } else {
7173 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007174 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007175 }
7176
7177 if (IS_I85X(dev) || IS_I865G(dev))
7178 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7179 else
7180 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7181 } else {
7182 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007183 }
7184}
7185
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007186int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007187{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007188 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007189
7190 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7191 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7192 return -EAGAIN;
7193 }
7194
7195 I915_WRITE(GEN6_PCODE_DATA, *val);
Damien Lespiaudddab342014-11-13 17:51:50 +00007196 I915_WRITE(GEN6_PCODE_DATA1, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007197 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7198
7199 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7200 500)) {
7201 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7202 return -ETIMEDOUT;
7203 }
7204
7205 *val = I915_READ(GEN6_PCODE_DATA);
7206 I915_WRITE(GEN6_PCODE_DATA, 0);
7207
7208 return 0;
7209}
7210
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007211int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007212{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007213 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007214
7215 if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
7216 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7217 return -EAGAIN;
7218 }
7219
7220 I915_WRITE(GEN6_PCODE_DATA, val);
7221 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
7222
7223 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0,
7224 500)) {
7225 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7226 return -ETIMEDOUT;
7227 }
7228
7229 I915_WRITE(GEN6_PCODE_DATA, 0);
7230
7231 return 0;
7232}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007233
Ville Syrjälädd06f882014-11-10 22:55:12 +02007234static int vlv_gpu_freq_div(unsigned int czclk_freq)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007235{
Ville Syrjälädd06f882014-11-10 22:55:12 +02007236 switch (czclk_freq) {
7237 case 200:
7238 return 10;
7239 case 267:
7240 return 12;
7241 case 320:
7242 case 333:
Ville Syrjälädd06f882014-11-10 22:55:12 +02007243 return 16;
Ville Syrjäläab3fb152014-11-10 22:55:15 +02007244 case 400:
7245 return 20;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007246 default:
7247 return -1;
7248 }
Ville Syrjälädd06f882014-11-10 22:55:12 +02007249}
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007250
Ville Syrjälädd06f882014-11-10 22:55:12 +02007251static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7252{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007253 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Ville Syrjälädd06f882014-11-10 22:55:12 +02007254
7255 div = vlv_gpu_freq_div(czclk_freq);
7256 if (div < 0)
7257 return div;
7258
7259 return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007260}
7261
Fengguang Wub55dd642014-07-12 11:21:39 +02007262static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007263{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007264 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007265
Ville Syrjälädd06f882014-11-10 22:55:12 +02007266 mul = vlv_gpu_freq_div(czclk_freq);
7267 if (mul < 0)
7268 return mul;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007269
Ville Syrjälädd06f882014-11-10 22:55:12 +02007270 return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007271}
7272
Fengguang Wub55dd642014-07-12 11:21:39 +02007273static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307274{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007275 int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307276
Ville Syrjälädd06f882014-11-10 22:55:12 +02007277 div = vlv_gpu_freq_div(czclk_freq) / 2;
7278 if (div < 0)
7279 return div;
Deepak S22b1b2f2014-07-12 14:54:33 +05307280
Ville Syrjälädd06f882014-11-10 22:55:12 +02007281 return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307282}
7283
Fengguang Wub55dd642014-07-12 11:21:39 +02007284static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307285{
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007286 int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->czclk_freq, 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307287
Ville Syrjälädd06f882014-11-10 22:55:12 +02007288 mul = vlv_gpu_freq_div(czclk_freq) / 2;
7289 if (mul < 0)
7290 return mul;
Deepak S22b1b2f2014-07-12 14:54:33 +05307291
Ville Syrjälä1c147622014-08-18 14:42:43 +03007292 /* CHV needs even values */
Ville Syrjälädd06f882014-11-10 22:55:12 +02007293 return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307294}
7295
Ville Syrjälä616bc822015-01-23 21:04:25 +02007296int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7297{
Akash Goel80b6dda2015-03-06 11:07:15 +05307298 if (IS_GEN9(dev_priv->dev))
7299 return (val * GT_FREQUENCY_MULTIPLIER) / GEN9_FREQ_SCALER;
7300 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007301 return chv_gpu_freq(dev_priv, val);
7302 else if (IS_VALLEYVIEW(dev_priv->dev))
7303 return byt_gpu_freq(dev_priv, val);
7304 else
7305 return val * GT_FREQUENCY_MULTIPLIER;
7306}
7307
Ville Syrjälä616bc822015-01-23 21:04:25 +02007308int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7309{
Akash Goel80b6dda2015-03-06 11:07:15 +05307310 if (IS_GEN9(dev_priv->dev))
7311 return (val * GEN9_FREQ_SCALER) / GT_FREQUENCY_MULTIPLIER;
7312 else if (IS_CHERRYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007313 return chv_freq_opcode(dev_priv, val);
Deepak S22b1b2f2014-07-12 14:54:33 +05307314 else if (IS_VALLEYVIEW(dev_priv->dev))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007315 return byt_freq_opcode(dev_priv, val);
7316 else
7317 return val / GT_FREQUENCY_MULTIPLIER;
Deepak S22b1b2f2014-07-12 14:54:33 +05307318}
7319
Chris Wilson6ad790c2015-04-07 16:20:31 +01007320struct request_boost {
7321 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02007322 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007323};
7324
7325static void __intel_rps_boost_work(struct work_struct *work)
7326{
7327 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01007328 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007329
Chris Wilsone61b9952015-04-27 13:41:24 +01007330 if (!i915_gem_request_completed(req, true))
7331 gen6_rps_boost(to_i915(req->ring->dev), NULL,
7332 req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007333
Chris Wilsone61b9952015-04-27 13:41:24 +01007334 i915_gem_request_unreference__unlocked(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007335 kfree(boost);
7336}
7337
7338void intel_queue_rps_boost_for_request(struct drm_device *dev,
Daniel Vettereed29a52015-05-21 14:21:25 +02007339 struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007340{
7341 struct request_boost *boost;
7342
Daniel Vettereed29a52015-05-21 14:21:25 +02007343 if (req == NULL || INTEL_INFO(dev)->gen < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007344 return;
7345
Chris Wilsone61b9952015-04-27 13:41:24 +01007346 if (i915_gem_request_completed(req, true))
7347 return;
7348
Chris Wilson6ad790c2015-04-07 16:20:31 +01007349 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
7350 if (boost == NULL)
7351 return;
7352
Daniel Vettereed29a52015-05-21 14:21:25 +02007353 i915_gem_request_reference(req);
7354 boost->req = req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007355
7356 INIT_WORK(&boost->work, __intel_rps_boost_work);
7357 queue_work(to_i915(dev)->wq, &boost->work);
7358}
7359
Daniel Vetterf742a552013-12-06 10:17:53 +01007360void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01007361{
7362 struct drm_i915_private *dev_priv = dev->dev_private;
7363
Daniel Vetterf742a552013-12-06 10:17:53 +01007364 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01007365 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01007366
Chris Wilson907b28c2013-07-19 20:36:52 +01007367 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
7368 intel_gen6_powersave_work);
Chris Wilson1854d5c2015-04-07 16:20:32 +01007369 INIT_LIST_HEAD(&dev_priv->rps.clients);
Chris Wilson2e1b8732015-04-27 13:41:22 +01007370 INIT_LIST_HEAD(&dev_priv->rps.semaphores.link);
7371 INIT_LIST_HEAD(&dev_priv->rps.mmioflips.link);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03007372
Paulo Zanoni33688d92014-03-07 20:08:19 -03007373 dev_priv->pm.suspended = false;
Chris Wilson907b28c2013-07-19 20:36:52 +01007374}