blob: 870085ab5423c66732411f4c2b6f63d1d3959ba7 [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>
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -070029#include <drm/drm_plane_helper.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030030#include "i915_drv.h"
31#include "intel_drv.h"
Daniel Vettereb48eb02012-04-26 23:28:12 +020032#include "../../../platform/x86/intel_ips.h"
33#include <linux/module.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030034
Ben Widawskydc39fff2013-10-18 12:32:07 -070035/**
Jani Nikula18afd442016-01-18 09:19:48 +020036 * DOC: RC6
37 *
Ben Widawskydc39fff2013-10-18 12:32:07 -070038 * RC6 is a special power stage which allows the GPU to enter an very
39 * low-voltage mode when idle, using down to 0V while at this stage. This
40 * stage is entered automatically when the GPU is idle when RC6 support is
41 * enabled, and as soon as new workload arises GPU wakes up automatically as well.
42 *
43 * There are different RC6 modes available in Intel GPU, which differentiate
44 * among each other with the latency required to enter and leave RC6 and
45 * voltage consumed by the GPU in different states.
46 *
47 * The combination of the following flags define which states GPU is allowed
48 * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
49 * RC6pp is deepest RC6. Their support by hardware varies according to the
50 * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
51 * which brings the most power savings; deeper states save more power, but
52 * require higher latency to switch to and wake up.
53 */
54#define INTEL_RC6_ENABLE (1<<0)
55#define INTEL_RC6p_ENABLE (1<<1)
56#define INTEL_RC6pp_ENABLE (1<<2)
57
Mika Kuoppalab033bb62016-06-07 17:19:04 +030058static void gen9_init_clock_gating(struct drm_device *dev)
59{
60 struct drm_i915_private *dev_priv = dev->dev_private;
61
62 /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl */
63 I915_WRITE(CHICKEN_PAR1_1,
64 I915_READ(CHICKEN_PAR1_1) | SKL_EDP_PSR_FIX_RDWRAP);
65
66 I915_WRITE(GEN8_CONFIG0,
67 I915_READ(GEN8_CONFIG0) | GEN9_DEFAULT_FIXES);
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030068
69 /* WaEnableChickenDCPR:skl,bxt,kbl */
70 I915_WRITE(GEN8_CHICKEN_DCPR_1,
71 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
Mika Kuoppala0f78dee2016-06-07 17:19:16 +030072
73 /* WaFbcTurnOffFbcWatermark:skl,bxt,kbl */
Mika Kuoppala303d4ea2016-06-07 17:19:17 +030074 /* WaFbcWakeMemOn:skl,bxt,kbl */
75 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
76 DISP_FBC_WM_DIS |
77 DISP_FBC_MEMORY_WAKE);
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030078
79 /* WaFbcHighMemBwCorruptionAvoidance:skl,bxt,kbl */
80 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
81 ILK_DPFC_DISABLE_DUMMY0);
Mika Kuoppalab033bb62016-06-07 17:19:04 +030082}
83
Imre Deaka82abe42015-03-27 14:00:04 +020084static void bxt_init_clock_gating(struct drm_device *dev)
85{
Imre Deak32608ca2015-03-11 11:10:27 +020086 struct drm_i915_private *dev_priv = dev->dev_private;
87
Mika Kuoppalab033bb62016-06-07 17:19:04 +030088 gen9_init_clock_gating(dev);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +020089
Nick Hoatha7546152015-06-29 14:07:32 +010090 /* WaDisableSDEUnitClockGating:bxt */
91 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
92 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
93
Imre Deak32608ca2015-03-11 11:10:27 +020094 /*
95 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +020096 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +020097 */
Imre Deak32608ca2015-03-11 11:10:27 +020098 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +020099 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7ac2015-12-01 10:23:52 +0200100
101 /*
102 * Wa: Backlight PWM may stop in the asserted state, causing backlight
103 * to stay fully on.
104 */
105 if (IS_BXT_REVID(dev_priv, BXT_REVID_B0, REVID_FOREVER))
106 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
107 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +0200108}
109
Daniel Vetterc921aba2012-04-26 23:28:17 +0200110static void i915_pineview_get_mem_freq(struct drm_device *dev)
111{
Jani Nikula50227e12014-03-31 14:27:21 +0300112 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200113 u32 tmp;
114
115 tmp = I915_READ(CLKCFG);
116
117 switch (tmp & CLKCFG_FSB_MASK) {
118 case CLKCFG_FSB_533:
119 dev_priv->fsb_freq = 533; /* 133*4 */
120 break;
121 case CLKCFG_FSB_800:
122 dev_priv->fsb_freq = 800; /* 200*4 */
123 break;
124 case CLKCFG_FSB_667:
125 dev_priv->fsb_freq = 667; /* 167*4 */
126 break;
127 case CLKCFG_FSB_400:
128 dev_priv->fsb_freq = 400; /* 100*4 */
129 break;
130 }
131
132 switch (tmp & CLKCFG_MEM_MASK) {
133 case CLKCFG_MEM_533:
134 dev_priv->mem_freq = 533;
135 break;
136 case CLKCFG_MEM_667:
137 dev_priv->mem_freq = 667;
138 break;
139 case CLKCFG_MEM_800:
140 dev_priv->mem_freq = 800;
141 break;
142 }
143
144 /* detect pineview DDR3 setting */
145 tmp = I915_READ(CSHRDDR3CTL);
146 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
147}
148
149static void i915_ironlake_get_mem_freq(struct drm_device *dev)
150{
Jani Nikula50227e12014-03-31 14:27:21 +0300151 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200152 u16 ddrpll, csipll;
153
154 ddrpll = I915_READ16(DDRMPLL1);
155 csipll = I915_READ16(CSIPLL0);
156
157 switch (ddrpll & 0xff) {
158 case 0xc:
159 dev_priv->mem_freq = 800;
160 break;
161 case 0x10:
162 dev_priv->mem_freq = 1066;
163 break;
164 case 0x14:
165 dev_priv->mem_freq = 1333;
166 break;
167 case 0x18:
168 dev_priv->mem_freq = 1600;
169 break;
170 default:
171 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
172 ddrpll & 0xff);
173 dev_priv->mem_freq = 0;
174 break;
175 }
176
Daniel Vetter20e4d402012-08-08 23:35:39 +0200177 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200178
179 switch (csipll & 0x3ff) {
180 case 0x00c:
181 dev_priv->fsb_freq = 3200;
182 break;
183 case 0x00e:
184 dev_priv->fsb_freq = 3733;
185 break;
186 case 0x010:
187 dev_priv->fsb_freq = 4266;
188 break;
189 case 0x012:
190 dev_priv->fsb_freq = 4800;
191 break;
192 case 0x014:
193 dev_priv->fsb_freq = 5333;
194 break;
195 case 0x016:
196 dev_priv->fsb_freq = 5866;
197 break;
198 case 0x018:
199 dev_priv->fsb_freq = 6400;
200 break;
201 default:
202 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
203 csipll & 0x3ff);
204 dev_priv->fsb_freq = 0;
205 break;
206 }
207
208 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200209 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200210 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200211 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200212 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200213 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200214 }
215}
216
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300217static const struct cxsr_latency cxsr_latency_table[] = {
218 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
219 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
220 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
221 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
222 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
223
224 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
225 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
226 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
227 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
228 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
229
230 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
231 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
232 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
233 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
234 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
235
236 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
237 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
238 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
239 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
240 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
241
242 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
243 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
244 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
245 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
246 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
247
248 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
249 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
250 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
251 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
252 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
253};
254
Daniel Vetter63c62272012-04-21 23:17:55 +0200255static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300256 int is_ddr3,
257 int fsb,
258 int mem)
259{
260 const struct cxsr_latency *latency;
261 int i;
262
263 if (fsb == 0 || mem == 0)
264 return NULL;
265
266 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
267 latency = &cxsr_latency_table[i];
268 if (is_desktop == latency->is_desktop &&
269 is_ddr3 == latency->is_ddr3 &&
270 fsb == latency->fsb_freq && mem == latency->mem_freq)
271 return latency;
272 }
273
274 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
275
276 return NULL;
277}
278
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200279static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
280{
281 u32 val;
282
283 mutex_lock(&dev_priv->rps.hw_lock);
284
285 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
286 if (enable)
287 val &= ~FORCE_DDR_HIGH_FREQ;
288 else
289 val |= FORCE_DDR_HIGH_FREQ;
290 val &= ~FORCE_DDR_LOW_FREQ;
291 val |= FORCE_DDR_FREQ_REQ_ACK;
292 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
293
294 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
295 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
296 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
297
298 mutex_unlock(&dev_priv->rps.hw_lock);
299}
300
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200301static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
302{
303 u32 val;
304
305 mutex_lock(&dev_priv->rps.hw_lock);
306
307 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
308 if (enable)
309 val |= DSP_MAXFIFO_PM5_ENABLE;
310 else
311 val &= ~DSP_MAXFIFO_PM5_ENABLE;
312 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
313
314 mutex_unlock(&dev_priv->rps.hw_lock);
315}
316
Ville Syrjäläf4998962015-03-10 17:02:21 +0200317#define FW_WM(value, plane) \
318 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
319
Imre Deak5209b1f2014-07-01 12:36:17 +0300320void intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300321{
Imre Deak5209b1f2014-07-01 12:36:17 +0300322 struct drm_device *dev = dev_priv->dev;
323 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300324
Wayne Boyer666a4532015-12-09 12:29:35 -0800325 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Imre Deak5209b1f2014-07-01 12:36:17 +0300326 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300327 POSTING_READ(FW_BLC_SELF_VLV);
Ville Syrjälä852eb002015-06-24 22:00:07 +0300328 dev_priv->wm.vlv.cxsr = enable;
Imre Deak5209b1f2014-07-01 12:36:17 +0300329 } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) {
330 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300331 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300332 } else if (IS_PINEVIEW(dev)) {
333 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
334 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
335 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300336 POSTING_READ(DSPFW3);
Imre Deak5209b1f2014-07-01 12:36:17 +0300337 } else if (IS_I945G(dev) || IS_I945GM(dev)) {
338 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
339 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
340 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300341 POSTING_READ(FW_BLC_SELF);
Imre Deak5209b1f2014-07-01 12:36:17 +0300342 } else if (IS_I915GM(dev)) {
343 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
344 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
345 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300346 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300347 } else {
348 return;
349 }
350
351 DRM_DEBUG_KMS("memory self-refresh is %s\n",
352 enable ? "enabled" : "disabled");
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300353}
354
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200355
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300356/*
357 * Latency for FIFO fetches is dependent on several factors:
358 * - memory configuration (speed, channels)
359 * - chipset
360 * - current MCH state
361 * It can be fairly high in some situations, so here we assume a fairly
362 * pessimal value. It's a tradeoff between extra memory fetches (if we
363 * set this value too high, the FIFO will fetch frequently to stay full)
364 * and power consumption (set it too low to save power and we might see
365 * FIFO underruns and display "flicker").
366 *
367 * A value of 5us seems to be a good balance; safe for very low end
368 * platforms but not overly aggressive on lower latency configs.
369 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100370static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300371
Ville Syrjäläb5004722015-03-05 21:19:47 +0200372#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
373 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
374
375static int vlv_get_fifo_size(struct drm_device *dev,
376 enum pipe pipe, int plane)
377{
378 struct drm_i915_private *dev_priv = dev->dev_private;
379 int sprite0_start, sprite1_start, size;
380
381 switch (pipe) {
382 uint32_t dsparb, dsparb2, dsparb3;
383 case PIPE_A:
384 dsparb = I915_READ(DSPARB);
385 dsparb2 = I915_READ(DSPARB2);
386 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
387 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
388 break;
389 case PIPE_B:
390 dsparb = I915_READ(DSPARB);
391 dsparb2 = I915_READ(DSPARB2);
392 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
393 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
394 break;
395 case PIPE_C:
396 dsparb2 = I915_READ(DSPARB2);
397 dsparb3 = I915_READ(DSPARB3);
398 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
399 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
400 break;
401 default:
402 return 0;
403 }
404
405 switch (plane) {
406 case 0:
407 size = sprite0_start;
408 break;
409 case 1:
410 size = sprite1_start - sprite0_start;
411 break;
412 case 2:
413 size = 512 - 1 - sprite1_start;
414 break;
415 default:
416 return 0;
417 }
418
419 DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n",
420 pipe_name(pipe), plane == 0 ? "primary" : "sprite",
421 plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1),
422 size);
423
424 return size;
425}
426
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300427static int i9xx_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300428{
429 struct drm_i915_private *dev_priv = dev->dev_private;
430 uint32_t dsparb = I915_READ(DSPARB);
431 int size;
432
433 size = dsparb & 0x7f;
434 if (plane)
435 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
436
437 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
438 plane ? "B" : "A", size);
439
440 return size;
441}
442
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200443static int i830_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300444{
445 struct drm_i915_private *dev_priv = dev->dev_private;
446 uint32_t dsparb = I915_READ(DSPARB);
447 int size;
448
449 size = dsparb & 0x1ff;
450 if (plane)
451 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
452 size >>= 1; /* Convert to cachelines */
453
454 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
455 plane ? "B" : "A", size);
456
457 return size;
458}
459
Eugeni Dodonov1fa61102012-04-18 15:29:26 -0300460static int i845_get_fifo_size(struct drm_device *dev, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300461{
462 struct drm_i915_private *dev_priv = dev->dev_private;
463 uint32_t dsparb = I915_READ(DSPARB);
464 int size;
465
466 size = dsparb & 0x7f;
467 size >>= 2; /* Convert to cachelines */
468
469 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
470 plane ? "B" : "A",
471 size);
472
473 return size;
474}
475
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300476/* Pineview has different values for various configs */
477static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300478 .fifo_size = PINEVIEW_DISPLAY_FIFO,
479 .max_wm = PINEVIEW_MAX_WM,
480 .default_wm = PINEVIEW_DFT_WM,
481 .guard_size = PINEVIEW_GUARD_WM,
482 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300483};
484static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300485 .fifo_size = PINEVIEW_DISPLAY_FIFO,
486 .max_wm = PINEVIEW_MAX_WM,
487 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
488 .guard_size = PINEVIEW_GUARD_WM,
489 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300490};
491static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300492 .fifo_size = PINEVIEW_CURSOR_FIFO,
493 .max_wm = PINEVIEW_CURSOR_MAX_WM,
494 .default_wm = PINEVIEW_CURSOR_DFT_WM,
495 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
496 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300497};
498static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300499 .fifo_size = PINEVIEW_CURSOR_FIFO,
500 .max_wm = PINEVIEW_CURSOR_MAX_WM,
501 .default_wm = PINEVIEW_CURSOR_DFT_WM,
502 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
503 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300504};
505static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300506 .fifo_size = G4X_FIFO_SIZE,
507 .max_wm = G4X_MAX_WM,
508 .default_wm = G4X_MAX_WM,
509 .guard_size = 2,
510 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300511};
512static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300513 .fifo_size = I965_CURSOR_FIFO,
514 .max_wm = I965_CURSOR_MAX_WM,
515 .default_wm = I965_CURSOR_DFT_WM,
516 .guard_size = 2,
517 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300518};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300519static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300520 .fifo_size = I965_CURSOR_FIFO,
521 .max_wm = I965_CURSOR_MAX_WM,
522 .default_wm = I965_CURSOR_DFT_WM,
523 .guard_size = 2,
524 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300525};
526static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300527 .fifo_size = I945_FIFO_SIZE,
528 .max_wm = I915_MAX_WM,
529 .default_wm = 1,
530 .guard_size = 2,
531 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300532};
533static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300534 .fifo_size = I915_FIFO_SIZE,
535 .max_wm = I915_MAX_WM,
536 .default_wm = 1,
537 .guard_size = 2,
538 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300539};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300540static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300541 .fifo_size = I855GM_FIFO_SIZE,
542 .max_wm = I915_MAX_WM,
543 .default_wm = 1,
544 .guard_size = 2,
545 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300546};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300547static const struct intel_watermark_params i830_bc_wm_info = {
548 .fifo_size = I855GM_FIFO_SIZE,
549 .max_wm = I915_MAX_WM/2,
550 .default_wm = 1,
551 .guard_size = 2,
552 .cacheline_size = I830_FIFO_LINE_SIZE,
553};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200554static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300555 .fifo_size = I830_FIFO_SIZE,
556 .max_wm = I915_MAX_WM,
557 .default_wm = 1,
558 .guard_size = 2,
559 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300560};
561
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300562/**
563 * intel_calculate_wm - calculate watermark level
564 * @clock_in_khz: pixel clock
565 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200566 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300567 * @latency_ns: memory latency for the platform
568 *
569 * Calculate the watermark level (the level at which the display plane will
570 * start fetching from memory again). Each chip has a different display
571 * FIFO size and allocation, so the caller needs to figure that out and pass
572 * in the correct intel_watermark_params structure.
573 *
574 * As the pixel clock runs, the FIFO will be drained at a rate that depends
575 * on the pixel size. When it reaches the watermark level, it'll start
576 * fetching FIFO line sized based chunks from memory until the FIFO fills
577 * past the watermark point. If the FIFO drains completely, a FIFO underrun
578 * will occur, and a display engine hang could result.
579 */
580static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
581 const struct intel_watermark_params *wm,
Ville Syrjäläac484962016-01-20 21:05:26 +0200582 int fifo_size, int cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300583 unsigned long latency_ns)
584{
585 long entries_required, wm_size;
586
587 /*
588 * Note: we need to make sure we don't overflow for various clock &
589 * latency values.
590 * clocks go from a few thousand to several hundred thousand.
591 * latency is usually a few thousand
592 */
Ville Syrjäläac484962016-01-20 21:05:26 +0200593 entries_required = ((clock_in_khz / 1000) * cpp * latency_ns) /
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300594 1000;
595 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
596
597 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
598
599 wm_size = fifo_size - (entries_required + wm->guard_size);
600
601 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
602
603 /* Don't promote wm_size to unsigned... */
604 if (wm_size > (long)wm->max_wm)
605 wm_size = wm->max_wm;
606 if (wm_size <= 0)
607 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300608
609 /*
610 * Bspec seems to indicate that the value shouldn't be lower than
611 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
612 * Lets go for 8 which is the burst size since certain platforms
613 * already use a hardcoded 8 (which is what the spec says should be
614 * done).
615 */
616 if (wm_size <= 8)
617 wm_size = 8;
618
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300619 return wm_size;
620}
621
622static struct drm_crtc *single_enabled_crtc(struct drm_device *dev)
623{
624 struct drm_crtc *crtc, *enabled = NULL;
625
Damien Lespiau70e1e0e2014-05-13 23:32:24 +0100626 for_each_crtc(dev, crtc) {
Chris Wilson3490ea52013-01-07 10:11:40 +0000627 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300628 if (enabled)
629 return NULL;
630 enabled = crtc;
631 }
632 }
633
634 return enabled;
635}
636
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300637static void pineview_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300638{
Ville Syrjälä46ba6142013-09-10 11:40:40 +0300639 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300640 struct drm_i915_private *dev_priv = dev->dev_private;
641 struct drm_crtc *crtc;
642 const struct cxsr_latency *latency;
643 u32 reg;
644 unsigned long wm;
645
646 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3,
647 dev_priv->fsb_freq, dev_priv->mem_freq);
648 if (!latency) {
649 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300650 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300651 return;
652 }
653
654 crtc = single_enabled_crtc(dev);
655 if (crtc) {
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300656 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +0200657 int cpp = drm_format_plane_cpp(crtc->primary->state->fb->pixel_format, 0);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300658 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300659
660 /* Display SR */
661 wm = intel_calculate_wm(clock, &pineview_display_wm,
662 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200663 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300664 reg = I915_READ(DSPFW1);
665 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200666 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300667 I915_WRITE(DSPFW1, reg);
668 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
669
670 /* cursor SR */
671 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
672 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200673 cpp, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300674 reg = I915_READ(DSPFW3);
675 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200676 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300677 I915_WRITE(DSPFW3, reg);
678
679 /* Display HPLL off SR */
680 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
681 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200682 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300683 reg = I915_READ(DSPFW3);
684 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200685 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300686 I915_WRITE(DSPFW3, reg);
687
688 /* cursor HPLL off SR */
689 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
690 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200691 cpp, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300692 reg = I915_READ(DSPFW3);
693 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200694 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300695 I915_WRITE(DSPFW3, reg);
696 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
697
Imre Deak5209b1f2014-07-01 12:36:17 +0300698 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300699 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300700 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300701 }
702}
703
704static bool g4x_compute_wm0(struct drm_device *dev,
705 int plane,
706 const struct intel_watermark_params *display,
707 int display_latency_ns,
708 const struct intel_watermark_params *cursor,
709 int cursor_latency_ns,
710 int *plane_wm,
711 int *cursor_wm)
712{
713 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300714 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +0200715 int htotal, hdisplay, clock, cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300716 int line_time_us, line_count;
717 int entries, tlb_miss;
718
719 crtc = intel_get_crtc_for_plane(dev, plane);
Chris Wilson3490ea52013-01-07 10:11:40 +0000720 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300721 *cursor_wm = cursor->guard_size;
722 *plane_wm = display->guard_size;
723 return false;
724 }
725
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200726 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100727 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800728 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200729 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Ville Syrjäläac484962016-01-20 21:05:26 +0200730 cpp = drm_format_plane_cpp(crtc->primary->state->fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300731
732 /* Use the small buffer method to calculate plane watermark */
Ville Syrjäläac484962016-01-20 21:05:26 +0200733 entries = ((clock * cpp / 1000) * display_latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300734 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
735 if (tlb_miss > 0)
736 entries += tlb_miss;
737 entries = DIV_ROUND_UP(entries, display->cacheline_size);
738 *plane_wm = entries + display->guard_size;
739 if (*plane_wm > (int)display->max_wm)
740 *plane_wm = display->max_wm;
741
742 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200743 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300744 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläac484962016-01-20 21:05:26 +0200745 entries = line_count * crtc->cursor->state->crtc_w * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300746 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
747 if (tlb_miss > 0)
748 entries += tlb_miss;
749 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
750 *cursor_wm = entries + cursor->guard_size;
751 if (*cursor_wm > (int)cursor->max_wm)
752 *cursor_wm = (int)cursor->max_wm;
753
754 return true;
755}
756
757/*
758 * Check the wm result.
759 *
760 * If any calculated watermark values is larger than the maximum value that
761 * can be programmed into the associated watermark register, that watermark
762 * must be disabled.
763 */
764static bool g4x_check_srwm(struct drm_device *dev,
765 int display_wm, int cursor_wm,
766 const struct intel_watermark_params *display,
767 const struct intel_watermark_params *cursor)
768{
769 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
770 display_wm, cursor_wm);
771
772 if (display_wm > display->max_wm) {
773 DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n",
774 display_wm, display->max_wm);
775 return false;
776 }
777
778 if (cursor_wm > cursor->max_wm) {
779 DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n",
780 cursor_wm, cursor->max_wm);
781 return false;
782 }
783
784 if (!(display_wm || cursor_wm)) {
785 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
786 return false;
787 }
788
789 return true;
790}
791
792static bool g4x_compute_srwm(struct drm_device *dev,
793 int plane,
794 int latency_ns,
795 const struct intel_watermark_params *display,
796 const struct intel_watermark_params *cursor,
797 int *display_wm, int *cursor_wm)
798{
799 struct drm_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300800 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +0200801 int hdisplay, htotal, cpp, clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300802 unsigned long line_time_us;
803 int line_count, line_size;
804 int small, large;
805 int entries;
806
807 if (!latency_ns) {
808 *display_wm = *cursor_wm = 0;
809 return false;
810 }
811
812 crtc = intel_get_crtc_for_plane(dev, plane);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200813 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100814 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800815 htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200816 hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Ville Syrjäläac484962016-01-20 21:05:26 +0200817 cpp = drm_format_plane_cpp(crtc->primary->state->fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300818
Ville Syrjälä922044c2014-02-14 14:18:57 +0200819 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300820 line_count = (latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläac484962016-01-20 21:05:26 +0200821 line_size = hdisplay * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300822
823 /* Use the minimum of the small and large buffer method for primary */
Ville Syrjäläac484962016-01-20 21:05:26 +0200824 small = ((clock * cpp / 1000) * latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300825 large = line_count * line_size;
826
827 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
828 *display_wm = entries + display->guard_size;
829
830 /* calculate the self-refresh watermark for display cursor */
Ville Syrjäläac484962016-01-20 21:05:26 +0200831 entries = line_count * cpp * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300832 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
833 *cursor_wm = entries + cursor->guard_size;
834
835 return g4x_check_srwm(dev,
836 *display_wm, *cursor_wm,
837 display, cursor);
838}
839
Ville Syrjälä15665972015-03-10 16:16:28 +0200840#define FW_WM_VLV(value, plane) \
841 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
842
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200843static void vlv_write_wm_values(struct intel_crtc *crtc,
844 const struct vlv_wm_values *wm)
845{
846 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
847 enum pipe pipe = crtc->pipe;
848
849 I915_WRITE(VLV_DDL(pipe),
850 (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) |
851 (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) |
852 (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) |
853 (wm->ddl[pipe].primary << DDL_PLANE_SHIFT));
854
Ville Syrjäläae801522015-03-05 21:19:49 +0200855 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200856 FW_WM(wm->sr.plane, SR) |
857 FW_WM(wm->pipe[PIPE_B].cursor, CURSORB) |
858 FW_WM_VLV(wm->pipe[PIPE_B].primary, PLANEB) |
859 FW_WM_VLV(wm->pipe[PIPE_A].primary, PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200860 I915_WRITE(DSPFW2,
Ville Syrjälä15665972015-03-10 16:16:28 +0200861 FW_WM_VLV(wm->pipe[PIPE_A].sprite[1], SPRITEB) |
862 FW_WM(wm->pipe[PIPE_A].cursor, CURSORA) |
863 FW_WM_VLV(wm->pipe[PIPE_A].sprite[0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200864 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200865 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200866
867 if (IS_CHERRYVIEW(dev_priv)) {
868 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200869 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
870 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200871 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200872 FW_WM_VLV(wm->pipe[PIPE_C].sprite[1], SPRITEF) |
873 FW_WM_VLV(wm->pipe[PIPE_C].sprite[0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200874 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200875 FW_WM_VLV(wm->pipe[PIPE_C].primary, PLANEC) |
876 FW_WM(wm->pipe[PIPE_C].cursor, CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200877 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200878 FW_WM(wm->sr.plane >> 9, SR_HI) |
879 FW_WM(wm->pipe[PIPE_C].sprite[1] >> 8, SPRITEF_HI) |
880 FW_WM(wm->pipe[PIPE_C].sprite[0] >> 8, SPRITEE_HI) |
881 FW_WM(wm->pipe[PIPE_C].primary >> 8, PLANEC_HI) |
882 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
883 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
884 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
885 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
886 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
887 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200888 } else {
889 I915_WRITE(DSPFW7,
Ville Syrjälä15665972015-03-10 16:16:28 +0200890 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
891 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200892 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200893 FW_WM(wm->sr.plane >> 9, SR_HI) |
894 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
895 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
896 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
897 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
898 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
899 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200900 }
901
Ville Syrjälä2cb389b2015-06-24 22:00:10 +0300902 /* zero (unused) WM1 watermarks */
903 I915_WRITE(DSPFW4, 0);
904 I915_WRITE(DSPFW5, 0);
905 I915_WRITE(DSPFW6, 0);
906 I915_WRITE(DSPHOWM1, 0);
907
Ville Syrjäläae801522015-03-05 21:19:49 +0200908 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200909}
910
Ville Syrjälä15665972015-03-10 16:16:28 +0200911#undef FW_WM_VLV
912
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300913enum vlv_wm_level {
914 VLV_WM_LEVEL_PM2,
915 VLV_WM_LEVEL_PM5,
916 VLV_WM_LEVEL_DDR_DVFS,
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300917};
918
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300919/* latency must be in 0.1us units. */
920static unsigned int vlv_wm_method2(unsigned int pixel_rate,
921 unsigned int pipe_htotal,
922 unsigned int horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +0200923 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300924 unsigned int latency)
925{
926 unsigned int ret;
927
928 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +0200929 ret = (ret + 1) * horiz_pixels * cpp;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300930 ret = DIV_ROUND_UP(ret, 64);
931
932 return ret;
933}
934
935static void vlv_setup_wm_latency(struct drm_device *dev)
936{
937 struct drm_i915_private *dev_priv = dev->dev_private;
938
939 /* all latencies in usec */
940 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
941
Ville Syrjälä58590c12015-09-08 21:05:12 +0300942 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
943
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300944 if (IS_CHERRYVIEW(dev_priv)) {
945 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
946 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300947
948 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300949 }
950}
951
952static uint16_t vlv_compute_wm_level(struct intel_plane *plane,
953 struct intel_crtc *crtc,
954 const struct intel_plane_state *state,
955 int level)
956{
957 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläac484962016-01-20 21:05:26 +0200958 int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300959
960 if (dev_priv->wm.pri_latency[level] == 0)
961 return USHRT_MAX;
962
963 if (!state->visible)
964 return 0;
965
Ville Syrjäläac484962016-01-20 21:05:26 +0200966 cpp = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300967 clock = crtc->config->base.adjusted_mode.crtc_clock;
968 htotal = crtc->config->base.adjusted_mode.crtc_htotal;
969 width = crtc->config->pipe_src_w;
970 if (WARN_ON(htotal == 0))
971 htotal = 1;
972
973 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
974 /*
975 * FIXME the formula gives values that are
976 * too big for the cursor FIFO, and hence we
977 * would never be able to use cursors. For
978 * now just hardcode the watermark.
979 */
980 wm = 63;
981 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +0200982 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300983 dev_priv->wm.pri_latency[level] * 10);
984 }
985
986 return min_t(int, wm, USHRT_MAX);
987}
988
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +0300989static void vlv_compute_fifo(struct intel_crtc *crtc)
990{
991 struct drm_device *dev = crtc->base.dev;
992 struct vlv_wm_state *wm_state = &crtc->wm_state;
993 struct intel_plane *plane;
994 unsigned int total_rate = 0;
995 const int fifo_size = 512 - 1;
996 int fifo_extra, fifo_left = fifo_size;
997
998 for_each_intel_plane_on_crtc(dev, crtc, plane) {
999 struct intel_plane_state *state =
1000 to_intel_plane_state(plane->base.state);
1001
1002 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1003 continue;
1004
1005 if (state->visible) {
1006 wm_state->num_active_planes++;
1007 total_rate += drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1008 }
1009 }
1010
1011 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1012 struct intel_plane_state *state =
1013 to_intel_plane_state(plane->base.state);
1014 unsigned int rate;
1015
1016 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1017 plane->wm.fifo_size = 63;
1018 continue;
1019 }
1020
1021 if (!state->visible) {
1022 plane->wm.fifo_size = 0;
1023 continue;
1024 }
1025
1026 rate = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1027 plane->wm.fifo_size = fifo_size * rate / total_rate;
1028 fifo_left -= plane->wm.fifo_size;
1029 }
1030
1031 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1032
1033 /* spread the remainder evenly */
1034 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1035 int plane_extra;
1036
1037 if (fifo_left == 0)
1038 break;
1039
1040 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1041 continue;
1042
1043 /* give it all to the first plane if none are active */
1044 if (plane->wm.fifo_size == 0 &&
1045 wm_state->num_active_planes)
1046 continue;
1047
1048 plane_extra = min(fifo_extra, fifo_left);
1049 plane->wm.fifo_size += plane_extra;
1050 fifo_left -= plane_extra;
1051 }
1052
1053 WARN_ON(fifo_left != 0);
1054}
1055
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001056static void vlv_invert_wms(struct intel_crtc *crtc)
1057{
1058 struct vlv_wm_state *wm_state = &crtc->wm_state;
1059 int level;
1060
1061 for (level = 0; level < wm_state->num_levels; level++) {
1062 struct drm_device *dev = crtc->base.dev;
1063 const int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1064 struct intel_plane *plane;
1065
1066 wm_state->sr[level].plane = sr_fifo_size - wm_state->sr[level].plane;
1067 wm_state->sr[level].cursor = 63 - wm_state->sr[level].cursor;
1068
1069 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1070 switch (plane->base.type) {
1071 int sprite;
1072 case DRM_PLANE_TYPE_CURSOR:
1073 wm_state->wm[level].cursor = plane->wm.fifo_size -
1074 wm_state->wm[level].cursor;
1075 break;
1076 case DRM_PLANE_TYPE_PRIMARY:
1077 wm_state->wm[level].primary = plane->wm.fifo_size -
1078 wm_state->wm[level].primary;
1079 break;
1080 case DRM_PLANE_TYPE_OVERLAY:
1081 sprite = plane->plane;
1082 wm_state->wm[level].sprite[sprite] = plane->wm.fifo_size -
1083 wm_state->wm[level].sprite[sprite];
1084 break;
1085 }
1086 }
1087 }
1088}
1089
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001090static void vlv_compute_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001091{
1092 struct drm_device *dev = crtc->base.dev;
1093 struct vlv_wm_state *wm_state = &crtc->wm_state;
1094 struct intel_plane *plane;
1095 int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1096 int level;
1097
1098 memset(wm_state, 0, sizeof(*wm_state));
1099
Ville Syrjälä852eb002015-06-24 22:00:07 +03001100 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001101 wm_state->num_levels = to_i915(dev)->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001102
1103 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001104
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001105 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001106
1107 if (wm_state->num_active_planes != 1)
1108 wm_state->cxsr = false;
1109
1110 if (wm_state->cxsr) {
1111 for (level = 0; level < wm_state->num_levels; level++) {
1112 wm_state->sr[level].plane = sr_fifo_size;
1113 wm_state->sr[level].cursor = 63;
1114 }
1115 }
1116
1117 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1118 struct intel_plane_state *state =
1119 to_intel_plane_state(plane->base.state);
1120
1121 if (!state->visible)
1122 continue;
1123
1124 /* normal watermarks */
1125 for (level = 0; level < wm_state->num_levels; level++) {
1126 int wm = vlv_compute_wm_level(plane, crtc, state, level);
1127 int max_wm = plane->base.type == DRM_PLANE_TYPE_CURSOR ? 63 : 511;
1128
1129 /* hack */
1130 if (WARN_ON(level == 0 && wm > max_wm))
1131 wm = max_wm;
1132
1133 if (wm > plane->wm.fifo_size)
1134 break;
1135
1136 switch (plane->base.type) {
1137 int sprite;
1138 case DRM_PLANE_TYPE_CURSOR:
1139 wm_state->wm[level].cursor = wm;
1140 break;
1141 case DRM_PLANE_TYPE_PRIMARY:
1142 wm_state->wm[level].primary = wm;
1143 break;
1144 case DRM_PLANE_TYPE_OVERLAY:
1145 sprite = plane->plane;
1146 wm_state->wm[level].sprite[sprite] = wm;
1147 break;
1148 }
1149 }
1150
1151 wm_state->num_levels = level;
1152
1153 if (!wm_state->cxsr)
1154 continue;
1155
1156 /* maxfifo watermarks */
1157 switch (plane->base.type) {
1158 int sprite, level;
1159 case DRM_PLANE_TYPE_CURSOR:
1160 for (level = 0; level < wm_state->num_levels; level++)
1161 wm_state->sr[level].cursor =
Thomas Daniel5a37ed02015-10-23 14:55:38 +01001162 wm_state->wm[level].cursor;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001163 break;
1164 case DRM_PLANE_TYPE_PRIMARY:
1165 for (level = 0; level < wm_state->num_levels; level++)
1166 wm_state->sr[level].plane =
1167 min(wm_state->sr[level].plane,
1168 wm_state->wm[level].primary);
1169 break;
1170 case DRM_PLANE_TYPE_OVERLAY:
1171 sprite = plane->plane;
1172 for (level = 0; level < wm_state->num_levels; level++)
1173 wm_state->sr[level].plane =
1174 min(wm_state->sr[level].plane,
1175 wm_state->wm[level].sprite[sprite]);
1176 break;
1177 }
1178 }
1179
1180 /* clear any (partially) filled invalid levels */
Ville Syrjälä58590c12015-09-08 21:05:12 +03001181 for (level = wm_state->num_levels; level < to_i915(dev)->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001182 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1183 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1184 }
1185
1186 vlv_invert_wms(crtc);
1187}
1188
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001189#define VLV_FIFO(plane, value) \
1190 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1191
1192static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1193{
1194 struct drm_device *dev = crtc->base.dev;
1195 struct drm_i915_private *dev_priv = to_i915(dev);
1196 struct intel_plane *plane;
1197 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1198
1199 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1200 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1201 WARN_ON(plane->wm.fifo_size != 63);
1202 continue;
1203 }
1204
1205 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
1206 sprite0_start = plane->wm.fifo_size;
1207 else if (plane->plane == 0)
1208 sprite1_start = sprite0_start + plane->wm.fifo_size;
1209 else
1210 fifo_size = sprite1_start + plane->wm.fifo_size;
1211 }
1212
1213 WARN_ON(fifo_size != 512 - 1);
1214
1215 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1216 pipe_name(crtc->pipe), sprite0_start,
1217 sprite1_start, fifo_size);
1218
1219 switch (crtc->pipe) {
1220 uint32_t dsparb, dsparb2, dsparb3;
1221 case PIPE_A:
1222 dsparb = I915_READ(DSPARB);
1223 dsparb2 = I915_READ(DSPARB2);
1224
1225 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1226 VLV_FIFO(SPRITEB, 0xff));
1227 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1228 VLV_FIFO(SPRITEB, sprite1_start));
1229
1230 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1231 VLV_FIFO(SPRITEB_HI, 0x1));
1232 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1233 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1234
1235 I915_WRITE(DSPARB, dsparb);
1236 I915_WRITE(DSPARB2, dsparb2);
1237 break;
1238 case PIPE_B:
1239 dsparb = I915_READ(DSPARB);
1240 dsparb2 = I915_READ(DSPARB2);
1241
1242 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1243 VLV_FIFO(SPRITED, 0xff));
1244 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1245 VLV_FIFO(SPRITED, sprite1_start));
1246
1247 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1248 VLV_FIFO(SPRITED_HI, 0xff));
1249 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1250 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1251
1252 I915_WRITE(DSPARB, dsparb);
1253 I915_WRITE(DSPARB2, dsparb2);
1254 break;
1255 case PIPE_C:
1256 dsparb3 = I915_READ(DSPARB3);
1257 dsparb2 = I915_READ(DSPARB2);
1258
1259 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1260 VLV_FIFO(SPRITEF, 0xff));
1261 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1262 VLV_FIFO(SPRITEF, sprite1_start));
1263
1264 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1265 VLV_FIFO(SPRITEF_HI, 0xff));
1266 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1267 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1268
1269 I915_WRITE(DSPARB3, dsparb3);
1270 I915_WRITE(DSPARB2, dsparb2);
1271 break;
1272 default:
1273 break;
1274 }
1275}
1276
1277#undef VLV_FIFO
1278
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001279static void vlv_merge_wm(struct drm_device *dev,
1280 struct vlv_wm_values *wm)
1281{
1282 struct intel_crtc *crtc;
1283 int num_active_crtcs = 0;
1284
Ville Syrjälä58590c12015-09-08 21:05:12 +03001285 wm->level = to_i915(dev)->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001286 wm->cxsr = true;
1287
1288 for_each_intel_crtc(dev, crtc) {
1289 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1290
1291 if (!crtc->active)
1292 continue;
1293
1294 if (!wm_state->cxsr)
1295 wm->cxsr = false;
1296
1297 num_active_crtcs++;
1298 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1299 }
1300
1301 if (num_active_crtcs != 1)
1302 wm->cxsr = false;
1303
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001304 if (num_active_crtcs > 1)
1305 wm->level = VLV_WM_LEVEL_PM2;
1306
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001307 for_each_intel_crtc(dev, crtc) {
1308 struct vlv_wm_state *wm_state = &crtc->wm_state;
1309 enum pipe pipe = crtc->pipe;
1310
1311 if (!crtc->active)
1312 continue;
1313
1314 wm->pipe[pipe] = wm_state->wm[wm->level];
1315 if (wm->cxsr)
1316 wm->sr = wm_state->sr[wm->level];
1317
1318 wm->ddl[pipe].primary = DDL_PRECISION_HIGH | 2;
1319 wm->ddl[pipe].sprite[0] = DDL_PRECISION_HIGH | 2;
1320 wm->ddl[pipe].sprite[1] = DDL_PRECISION_HIGH | 2;
1321 wm->ddl[pipe].cursor = DDL_PRECISION_HIGH | 2;
1322 }
1323}
1324
1325static void vlv_update_wm(struct drm_crtc *crtc)
1326{
1327 struct drm_device *dev = crtc->dev;
1328 struct drm_i915_private *dev_priv = dev->dev_private;
1329 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1330 enum pipe pipe = intel_crtc->pipe;
1331 struct vlv_wm_values wm = {};
1332
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001333 vlv_compute_wm(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001334 vlv_merge_wm(dev, &wm);
1335
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001336 if (memcmp(&dev_priv->wm.vlv, &wm, sizeof(wm)) == 0) {
1337 /* FIXME should be part of crtc atomic commit */
1338 vlv_pipe_set_fifo_size(intel_crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001339 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001340 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001341
1342 if (wm.level < VLV_WM_LEVEL_DDR_DVFS &&
1343 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_DDR_DVFS)
1344 chv_set_memory_dvfs(dev_priv, false);
1345
1346 if (wm.level < VLV_WM_LEVEL_PM5 &&
1347 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_PM5)
1348 chv_set_memory_pm5(dev_priv, false);
1349
Ville Syrjälä852eb002015-06-24 22:00:07 +03001350 if (!wm.cxsr && dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001351 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001352
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001353 /* FIXME should be part of crtc atomic commit */
1354 vlv_pipe_set_fifo_size(intel_crtc);
1355
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001356 vlv_write_wm_values(intel_crtc, &wm);
1357
1358 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1359 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
1360 pipe_name(pipe), wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1361 wm.pipe[pipe].sprite[0], wm.pipe[pipe].sprite[1],
1362 wm.sr.plane, wm.sr.cursor, wm.level, wm.cxsr);
1363
Ville Syrjälä852eb002015-06-24 22:00:07 +03001364 if (wm.cxsr && !dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001365 intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001366
1367 if (wm.level >= VLV_WM_LEVEL_PM5 &&
1368 dev_priv->wm.vlv.level < VLV_WM_LEVEL_PM5)
1369 chv_set_memory_pm5(dev_priv, true);
1370
1371 if (wm.level >= VLV_WM_LEVEL_DDR_DVFS &&
1372 dev_priv->wm.vlv.level < VLV_WM_LEVEL_DDR_DVFS)
1373 chv_set_memory_dvfs(dev_priv, true);
1374
1375 dev_priv->wm.vlv = wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001376}
1377
Ville Syrjäläae801522015-03-05 21:19:49 +02001378#define single_plane_enabled(mask) is_power_of_2(mask)
1379
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001380static void g4x_update_wm(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001381{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001382 struct drm_device *dev = crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001383 static const int sr_latency_ns = 12000;
1384 struct drm_i915_private *dev_priv = dev->dev_private;
1385 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1386 int plane_sr, cursor_sr;
1387 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001388 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001389
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001390 if (g4x_compute_wm0(dev, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001391 &g4x_wm_info, pessimal_latency_ns,
1392 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001393 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001394 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001395
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001396 if (g4x_compute_wm0(dev, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001397 &g4x_wm_info, pessimal_latency_ns,
1398 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001399 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001400 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001401
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001402 if (single_plane_enabled(enabled) &&
1403 g4x_compute_srwm(dev, ffs(enabled) - 1,
1404 sr_latency_ns,
1405 &g4x_wm_info,
1406 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001407 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001408 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001409 } else {
Imre Deak98584252014-06-13 14:54:20 +03001410 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001411 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001412 plane_sr = cursor_sr = 0;
1413 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001414
Ville Syrjäläa5043452014-06-28 02:04:18 +03001415 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1416 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001417 planea_wm, cursora_wm,
1418 planeb_wm, cursorb_wm,
1419 plane_sr, cursor_sr);
1420
1421 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001422 FW_WM(plane_sr, SR) |
1423 FW_WM(cursorb_wm, CURSORB) |
1424 FW_WM(planeb_wm, PLANEB) |
1425 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001426 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001427 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001428 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001429 /* HPLL off in SR has some issues on G4x... disable it */
1430 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001431 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001432 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001433
1434 if (cxsr_enabled)
1435 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001436}
1437
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001438static void i965_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001439{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001440 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001441 struct drm_i915_private *dev_priv = dev->dev_private;
1442 struct drm_crtc *crtc;
1443 int srwm = 1;
1444 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001445 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001446
1447 /* Calc sr entries for one plane configs */
1448 crtc = single_enabled_crtc(dev);
1449 if (crtc) {
1450 /* self-refresh has much higher latency */
1451 static const int sr_latency_ns = 12000;
Ville Syrjälä124abe02015-09-08 13:40:45 +03001452 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001453 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001454 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001455 int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w;
Ville Syrjäläac484962016-01-20 21:05:26 +02001456 int cpp = drm_format_plane_cpp(crtc->primary->state->fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001457 unsigned long line_time_us;
1458 int entries;
1459
Ville Syrjälä922044c2014-02-14 14:18:57 +02001460 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001461
1462 /* Use ns/us then divide to preserve precision */
1463 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001464 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001465 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1466 srwm = I965_FIFO_SIZE - entries;
1467 if (srwm < 0)
1468 srwm = 1;
1469 srwm &= 0x1ff;
1470 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1471 entries, srwm);
1472
1473 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001474 cpp * crtc->cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001475 entries = DIV_ROUND_UP(entries,
1476 i965_cursor_wm_info.cacheline_size);
1477 cursor_sr = i965_cursor_wm_info.fifo_size -
1478 (entries + i965_cursor_wm_info.guard_size);
1479
1480 if (cursor_sr > i965_cursor_wm_info.max_wm)
1481 cursor_sr = i965_cursor_wm_info.max_wm;
1482
1483 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1484 "cursor %d\n", srwm, cursor_sr);
1485
Imre Deak98584252014-06-13 14:54:20 +03001486 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001487 } else {
Imre Deak98584252014-06-13 14:54:20 +03001488 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001489 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001490 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001491 }
1492
1493 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1494 srwm);
1495
1496 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001497 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1498 FW_WM(8, CURSORB) |
1499 FW_WM(8, PLANEB) |
1500 FW_WM(8, PLANEA));
1501 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1502 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001503 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001504 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001505
1506 if (cxsr_enabled)
1507 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001508}
1509
Ville Syrjäläf4998962015-03-10 17:02:21 +02001510#undef FW_WM
1511
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001512static void i9xx_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001513{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001514 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001515 struct drm_i915_private *dev_priv = dev->dev_private;
1516 const struct intel_watermark_params *wm_info;
1517 uint32_t fwater_lo;
1518 uint32_t fwater_hi;
1519 int cwm, srwm = 1;
1520 int fifo_size;
1521 int planea_wm, planeb_wm;
1522 struct drm_crtc *crtc, *enabled = NULL;
1523
1524 if (IS_I945GM(dev))
1525 wm_info = &i945_wm_info;
1526 else if (!IS_GEN2(dev))
1527 wm_info = &i915_wm_info;
1528 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001529 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001530
1531 fifo_size = dev_priv->display.get_fifo_size(dev, 0);
1532 crtc = intel_get_crtc_for_plane(dev, 0);
Chris Wilson3490ea52013-01-07 10:11:40 +00001533 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001534 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +02001535 int cpp = drm_format_plane_cpp(crtc->primary->state->fb->pixel_format, 0);
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001536 if (IS_GEN2(dev))
1537 cpp = 4;
1538
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001539 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001540 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001541 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001542 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001543 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001544 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001545 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001546 if (planea_wm > (long)wm_info->max_wm)
1547 planea_wm = wm_info->max_wm;
1548 }
1549
1550 if (IS_GEN2(dev))
1551 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001552
1553 fifo_size = dev_priv->display.get_fifo_size(dev, 1);
1554 crtc = intel_get_crtc_for_plane(dev, 1);
Chris Wilson3490ea52013-01-07 10:11:40 +00001555 if (intel_crtc_active(crtc)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01001556 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +02001557 int cpp = drm_format_plane_cpp(crtc->primary->state->fb->pixel_format, 0);
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001558 if (IS_GEN2(dev))
1559 cpp = 4;
1560
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001561 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001562 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001563 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001564 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001565 if (enabled == NULL)
1566 enabled = crtc;
1567 else
1568 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001569 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001570 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001571 if (planeb_wm > (long)wm_info->max_wm)
1572 planeb_wm = wm_info->max_wm;
1573 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001574
1575 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1576
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001577 if (IS_I915GM(dev) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001578 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001579
Matt Roper59bea882015-02-27 10:12:01 -08001580 obj = intel_fb_obj(enabled->primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001581
1582 /* self-refresh seems busted with untiled */
Matt Roper2ff8fde2014-07-08 07:50:07 -07001583 if (obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001584 enabled = NULL;
1585 }
1586
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001587 /*
1588 * Overlay gets an aggressive default since video jitter is bad.
1589 */
1590 cwm = 2;
1591
1592 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001593 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001594
1595 /* Calc sr entries for one plane configs */
1596 if (HAS_FW_BLC(dev) && enabled) {
1597 /* self-refresh has much higher latency */
1598 static const int sr_latency_ns = 6000;
Ville Syrjälä124abe02015-09-08 13:40:45 +03001599 const struct drm_display_mode *adjusted_mode = &to_intel_crtc(enabled)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001600 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001601 int htotal = adjusted_mode->crtc_htotal;
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001602 int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w;
Ville Syrjäläac484962016-01-20 21:05:26 +02001603 int cpp = drm_format_plane_cpp(enabled->primary->state->fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001604 unsigned long line_time_us;
1605 int entries;
1606
Ville Syrjälä922044c2014-02-14 14:18:57 +02001607 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001608
1609 /* Use ns/us then divide to preserve precision */
1610 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001611 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001612 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1613 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1614 srwm = wm_info->fifo_size - entries;
1615 if (srwm < 0)
1616 srwm = 1;
1617
1618 if (IS_I945G(dev) || IS_I945GM(dev))
1619 I915_WRITE(FW_BLC_SELF,
1620 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
1621 else if (IS_I915GM(dev))
1622 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1623 }
1624
1625 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1626 planea_wm, planeb_wm, cwm, srwm);
1627
1628 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1629 fwater_hi = (cwm & 0x1f);
1630
1631 /* Set request length to 8 cachelines per fetch */
1632 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1633 fwater_hi = fwater_hi | (1 << 8);
1634
1635 I915_WRITE(FW_BLC, fwater_lo);
1636 I915_WRITE(FW_BLC2, fwater_hi);
1637
Imre Deak5209b1f2014-07-01 12:36:17 +03001638 if (enabled)
1639 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001640}
1641
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001642static void i845_update_wm(struct drm_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001643{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03001644 struct drm_device *dev = unused_crtc->dev;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001645 struct drm_i915_private *dev_priv = dev->dev_private;
1646 struct drm_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001647 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001648 uint32_t fwater_lo;
1649 int planea_wm;
1650
1651 crtc = single_enabled_crtc(dev);
1652 if (crtc == NULL)
1653 return;
1654
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001655 adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001656 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001657 &i845_wm_info,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001658 dev_priv->display.get_fifo_size(dev, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001659 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001660 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1661 fwater_lo |= (3<<8) | planea_wm;
1662
1663 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1664
1665 I915_WRITE(FW_BLC, fwater_lo);
1666}
1667
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001668uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001669{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001670 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001671
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001672 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001673
1674 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1675 * adjust the pixel_rate here. */
1676
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001677 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001678 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001679 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001680
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001681 pipe_w = pipe_config->pipe_src_w;
1682 pipe_h = pipe_config->pipe_src_h;
1683
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001684 pfit_w = (pfit_size >> 16) & 0xFFFF;
1685 pfit_h = pfit_size & 0xFFFF;
1686 if (pipe_w < pfit_w)
1687 pipe_w = pfit_w;
1688 if (pipe_h < pfit_h)
1689 pipe_h = pfit_h;
1690
Matt Roper15126882015-12-03 11:37:40 -08001691 if (WARN_ON(!pfit_w || !pfit_h))
1692 return pixel_rate;
1693
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001694 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1695 pfit_w * pfit_h);
1696 }
1697
1698 return pixel_rate;
1699}
1700
Ville Syrjälä37126462013-08-01 16:18:55 +03001701/* latency must be in 0.1us units. */
Ville Syrjäläac484962016-01-20 21:05:26 +02001702static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001703{
1704 uint64_t ret;
1705
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001706 if (WARN(latency == 0, "Latency value missing\n"))
1707 return UINT_MAX;
1708
Ville Syrjäläac484962016-01-20 21:05:26 +02001709 ret = (uint64_t) pixel_rate * cpp * latency;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001710 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1711
1712 return ret;
1713}
1714
Ville Syrjälä37126462013-08-01 16:18:55 +03001715/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001716static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02001717 uint32_t horiz_pixels, uint8_t cpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001718 uint32_t latency)
1719{
1720 uint32_t ret;
1721
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001722 if (WARN(latency == 0, "Latency value missing\n"))
1723 return UINT_MAX;
Matt Roper15126882015-12-03 11:37:40 -08001724 if (WARN_ON(!pipe_htotal))
1725 return UINT_MAX;
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001726
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001727 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +02001728 ret = (ret + 1) * horiz_pixels * cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001729 ret = DIV_ROUND_UP(ret, 64) + 2;
1730 return ret;
1731}
1732
Ville Syrjälä23297042013-07-05 11:57:17 +03001733static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02001734 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001735{
Matt Roper15126882015-12-03 11:37:40 -08001736 /*
1737 * Neither of these should be possible since this function shouldn't be
1738 * called if the CRTC is off or the plane is invisible. But let's be
1739 * extra paranoid to avoid a potential divide-by-zero if we screw up
1740 * elsewhere in the driver.
1741 */
Ville Syrjäläac484962016-01-20 21:05:26 +02001742 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08001743 return 0;
1744 if (WARN_ON(!horiz_pixels))
1745 return 0;
1746
Ville Syrjäläac484962016-01-20 21:05:26 +02001747 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001748}
1749
Imre Deak820c1982013-12-17 14:46:36 +02001750struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001751 uint16_t pri;
1752 uint16_t spr;
1753 uint16_t cur;
1754 uint16_t fbc;
1755};
1756
Ville Syrjälä37126462013-08-01 16:18:55 +03001757/*
1758 * For both WM_PIPE and WM_LP.
1759 * mem_value must be in 0.1us units.
1760 */
Matt Roper7221fc32015-09-24 15:53:08 -07001761static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001762 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001763 uint32_t mem_value,
1764 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001765{
Ville Syrjäläac484962016-01-20 21:05:26 +02001766 int cpp = pstate->base.fb ?
1767 drm_format_plane_cpp(pstate->base.fb->pixel_format, 0) : 0;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001768 uint32_t method1, method2;
1769
Matt Roper7221fc32015-09-24 15:53:08 -07001770 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001771 return 0;
1772
Ville Syrjäläac484962016-01-20 21:05:26 +02001773 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001774
1775 if (!is_lp)
1776 return method1;
1777
Matt Roper7221fc32015-09-24 15:53:08 -07001778 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1779 cstate->base.adjusted_mode.crtc_htotal,
Matt Roper43d59ed2015-09-24 15:53:07 -07001780 drm_rect_width(&pstate->dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001781 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001782
1783 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001784}
1785
Ville Syrjälä37126462013-08-01 16:18:55 +03001786/*
1787 * For both WM_PIPE and WM_LP.
1788 * mem_value must be in 0.1us units.
1789 */
Matt Roper7221fc32015-09-24 15:53:08 -07001790static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001791 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001792 uint32_t mem_value)
1793{
Ville Syrjäläac484962016-01-20 21:05:26 +02001794 int cpp = pstate->base.fb ?
1795 drm_format_plane_cpp(pstate->base.fb->pixel_format, 0) : 0;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001796 uint32_t method1, method2;
1797
Matt Roper7221fc32015-09-24 15:53:08 -07001798 if (!cstate->base.active || !pstate->visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001799 return 0;
1800
Ville Syrjäläac484962016-01-20 21:05:26 +02001801 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), cpp, mem_value);
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),
Ville Syrjäläac484962016-01-20 21:05:26 +02001805 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001806 return min(method1, method2);
1807}
1808
Ville Syrjälä37126462013-08-01 16:18:55 +03001809/*
1810 * For both WM_PIPE and WM_LP.
1811 * mem_value must be in 0.1us units.
1812 */
Matt Roper7221fc32015-09-24 15:53:08 -07001813static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001814 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001815 uint32_t mem_value)
1816{
Matt Roperb2435692016-02-02 22:06:51 -08001817 /*
1818 * We treat the cursor plane as always-on for the purposes of watermark
1819 * calculation. Until we have two-stage watermark programming merged,
1820 * this is necessary to avoid flickering.
1821 */
1822 int cpp = 4;
1823 int width = pstate->visible ? pstate->base.crtc_w : 64;
Matt Roper43d59ed2015-09-24 15:53:07 -07001824
Matt Roperb2435692016-02-02 22:06:51 -08001825 if (!cstate->base.active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001826 return 0;
1827
Matt Roper7221fc32015-09-24 15:53:08 -07001828 return ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1829 cstate->base.adjusted_mode.crtc_htotal,
Matt Roperb2435692016-02-02 22:06:51 -08001830 width, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001831}
1832
Paulo Zanonicca32e92013-05-31 11:45:06 -03001833/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07001834static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001835 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001836 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001837{
Ville Syrjäläac484962016-01-20 21:05:26 +02001838 int cpp = pstate->base.fb ?
1839 drm_format_plane_cpp(pstate->base.fb->pixel_format, 0) : 0;
Matt Roper43d59ed2015-09-24 15:53:07 -07001840
Matt Roper7221fc32015-09-24 15:53:08 -07001841 if (!cstate->base.active || !pstate->visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001842 return 0;
1843
Ville Syrjäläac484962016-01-20 21:05:26 +02001844 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001845}
1846
Ville Syrjälä158ae642013-08-07 13:28:19 +03001847static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1848{
Ville Syrjälä416f4722013-11-02 21:07:46 -07001849 if (INTEL_INFO(dev)->gen >= 8)
1850 return 3072;
1851 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001852 return 768;
1853 else
1854 return 512;
1855}
1856
Ville Syrjälä4e975082014-03-07 18:32:11 +02001857static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1858 int level, bool is_sprite)
1859{
1860 if (INTEL_INFO(dev)->gen >= 8)
1861 /* BDW primary/sprite plane watermarks */
1862 return level == 0 ? 255 : 2047;
1863 else if (INTEL_INFO(dev)->gen >= 7)
1864 /* IVB/HSW primary/sprite plane watermarks */
1865 return level == 0 ? 127 : 1023;
1866 else if (!is_sprite)
1867 /* ILK/SNB primary plane watermarks */
1868 return level == 0 ? 127 : 511;
1869 else
1870 /* ILK/SNB sprite plane watermarks */
1871 return level == 0 ? 63 : 255;
1872}
1873
1874static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1875 int level)
1876{
1877 if (INTEL_INFO(dev)->gen >= 7)
1878 return level == 0 ? 63 : 255;
1879 else
1880 return level == 0 ? 31 : 63;
1881}
1882
1883static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1884{
1885 if (INTEL_INFO(dev)->gen >= 8)
1886 return 31;
1887 else
1888 return 15;
1889}
1890
Ville Syrjälä158ae642013-08-07 13:28:19 +03001891/* Calculate the maximum primary/sprite plane watermark */
1892static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1893 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001894 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001895 enum intel_ddb_partitioning ddb_partitioning,
1896 bool is_sprite)
1897{
1898 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001899
1900 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001901 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001902 return 0;
1903
1904 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001905 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001906 fifo_size /= INTEL_INFO(dev)->num_pipes;
1907
1908 /*
1909 * For some reason the non self refresh
1910 * FIFO size is only half of the self
1911 * refresh FIFO size on ILK/SNB.
1912 */
1913 if (INTEL_INFO(dev)->gen <= 6)
1914 fifo_size /= 2;
1915 }
1916
Ville Syrjälä240264f2013-08-07 13:29:12 +03001917 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001918 /* level 0 is always calculated with 1:1 split */
1919 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1920 if (is_sprite)
1921 fifo_size *= 5;
1922 fifo_size /= 6;
1923 } else {
1924 fifo_size /= 2;
1925 }
1926 }
1927
1928 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001929 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001930}
1931
1932/* Calculate the maximum cursor plane watermark */
1933static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001934 int level,
1935 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001936{
1937 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001938 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001939 return 64;
1940
1941 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001942 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001943}
1944
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001945static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001946 int level,
1947 const struct intel_wm_config *config,
1948 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001949 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001950{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001951 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1952 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1953 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02001954 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001955}
1956
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001957static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
1958 int level,
1959 struct ilk_wm_maximums *max)
1960{
1961 max->pri = ilk_plane_wm_reg_max(dev, level, false);
1962 max->spr = ilk_plane_wm_reg_max(dev, level, true);
1963 max->cur = ilk_cursor_wm_reg_max(dev, level);
1964 max->fbc = ilk_fbc_wm_reg_max(dev);
1965}
1966
Ville Syrjäläd9395652013-10-09 19:18:10 +03001967static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001968 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001969 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001970{
1971 bool ret;
1972
1973 /* already determined to be invalid? */
1974 if (!result->enable)
1975 return false;
1976
1977 result->enable = result->pri_val <= max->pri &&
1978 result->spr_val <= max->spr &&
1979 result->cur_val <= max->cur;
1980
1981 ret = result->enable;
1982
1983 /*
1984 * HACK until we can pre-compute everything,
1985 * and thus fail gracefully if LP0 watermarks
1986 * are exceeded...
1987 */
1988 if (level == 0 && !result->enable) {
1989 if (result->pri_val > max->pri)
1990 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
1991 level, result->pri_val, max->pri);
1992 if (result->spr_val > max->spr)
1993 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
1994 level, result->spr_val, max->spr);
1995 if (result->cur_val > max->cur)
1996 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
1997 level, result->cur_val, max->cur);
1998
1999 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2000 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2001 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2002 result->enable = true;
2003 }
2004
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002005 return ret;
2006}
2007
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002008static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002009 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002010 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002011 struct intel_crtc_state *cstate,
Matt Roper86c8bbb2015-09-24 15:53:16 -07002012 struct intel_plane_state *pristate,
2013 struct intel_plane_state *sprstate,
2014 struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002015 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002016{
2017 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2018 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2019 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2020
2021 /* WM1+ latency values stored in 0.5us units */
2022 if (level > 0) {
2023 pri_latency *= 5;
2024 spr_latency *= 5;
2025 cur_latency *= 5;
2026 }
2027
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002028 if (pristate) {
2029 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2030 pri_latency, level);
2031 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2032 }
2033
2034 if (sprstate)
2035 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2036
2037 if (curstate)
2038 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2039
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002040 result->enable = true;
2041}
2042
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002043static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002044hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002045{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002046 const struct intel_atomic_state *intel_state =
2047 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002048 const struct drm_display_mode *adjusted_mode =
2049 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002050 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002051
Matt Roperee91a152015-12-03 11:37:39 -08002052 if (!cstate->base.active)
2053 return 0;
2054 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2055 return 0;
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002056 if (WARN_ON(intel_state->cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002057 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002058
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002059 /* The WM are computed with base on how long it takes to fill a single
2060 * row at the given clock rate, multiplied by 8.
2061 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002062 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2063 adjusted_mode->crtc_clock);
2064 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002065 intel_state->cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002066
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002067 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2068 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002069}
2070
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002071static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002072{
2073 struct drm_i915_private *dev_priv = dev->dev_private;
2074
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002075 if (IS_GEN9(dev)) {
2076 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002077 int ret, i;
Vandana Kannan367294b2014-11-04 17:06:46 +00002078 int level, max_level = ilk_wm_max_level(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002079
2080 /* read the first set of memory latencies[0:3] */
2081 val = 0; /* data0 to be programmed to 0 for first set */
2082 mutex_lock(&dev_priv->rps.hw_lock);
2083 ret = sandybridge_pcode_read(dev_priv,
2084 GEN9_PCODE_READ_MEM_LATENCY,
2085 &val);
2086 mutex_unlock(&dev_priv->rps.hw_lock);
2087
2088 if (ret) {
2089 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2090 return;
2091 }
2092
2093 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2094 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2095 GEN9_MEM_LATENCY_LEVEL_MASK;
2096 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2097 GEN9_MEM_LATENCY_LEVEL_MASK;
2098 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2099 GEN9_MEM_LATENCY_LEVEL_MASK;
2100
2101 /* read the second set of memory latencies[4:7] */
2102 val = 1; /* data0 to be programmed to 1 for second set */
2103 mutex_lock(&dev_priv->rps.hw_lock);
2104 ret = sandybridge_pcode_read(dev_priv,
2105 GEN9_PCODE_READ_MEM_LATENCY,
2106 &val);
2107 mutex_unlock(&dev_priv->rps.hw_lock);
2108 if (ret) {
2109 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2110 return;
2111 }
2112
2113 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2114 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2115 GEN9_MEM_LATENCY_LEVEL_MASK;
2116 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2117 GEN9_MEM_LATENCY_LEVEL_MASK;
2118 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2119 GEN9_MEM_LATENCY_LEVEL_MASK;
2120
Vandana Kannan367294b2014-11-04 17:06:46 +00002121 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00002122 * WaWmMemoryReadLatency:skl
2123 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002124 * punit doesn't take into account the read latency so we need
2125 * to add 2us to the various latency levels we retrieve from
2126 * the punit.
2127 * - W0 is a bit special in that it's the only level that
2128 * can't be disabled if we want to have display working, so
2129 * we always add 2us there.
2130 * - For levels >=1, punit returns 0us latency when they are
2131 * disabled, so we respect that and don't add 2us then
Vandana Kannan4f947382014-11-04 17:06:47 +00002132 *
2133 * Additionally, if a level n (n > 1) has a 0us latency, all
2134 * levels m (m >= n) need to be disabled. We make sure to
2135 * sanitize the values out of the punit to satisfy this
2136 * requirement.
Vandana Kannan367294b2014-11-04 17:06:46 +00002137 */
2138 wm[0] += 2;
2139 for (level = 1; level <= max_level; level++)
2140 if (wm[level] != 0)
2141 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002142 else {
2143 for (i = level + 1; i <= max_level; i++)
2144 wm[i] = 0;
Vandana Kannan367294b2014-11-04 17:06:46 +00002145
Vandana Kannan4f947382014-11-04 17:06:47 +00002146 break;
2147 }
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002148 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002149 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2150
2151 wm[0] = (sskpd >> 56) & 0xFF;
2152 if (wm[0] == 0)
2153 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002154 wm[1] = (sskpd >> 4) & 0xFF;
2155 wm[2] = (sskpd >> 12) & 0xFF;
2156 wm[3] = (sskpd >> 20) & 0x1FF;
2157 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002158 } else if (INTEL_INFO(dev)->gen >= 6) {
2159 uint32_t sskpd = I915_READ(MCH_SSKPD);
2160
2161 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2162 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2163 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2164 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002165 } else if (INTEL_INFO(dev)->gen >= 5) {
2166 uint32_t mltr = I915_READ(MLTR_ILK);
2167
2168 /* ILK primary LP0 latency is 700 ns */
2169 wm[0] = 7;
2170 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2171 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002172 }
2173}
2174
Ville Syrjälä53615a52013-08-01 16:18:50 +03002175static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5])
2176{
2177 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01002178 if (IS_GEN5(dev))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002179 wm[0] = 13;
2180}
2181
2182static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5])
2183{
2184 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01002185 if (IS_GEN5(dev))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002186 wm[0] = 13;
2187
2188 /* WaDoubleCursorLP3Latency:ivb */
2189 if (IS_IVYBRIDGE(dev))
2190 wm[3] *= 2;
2191}
2192
Damien Lespiau546c81f2014-05-13 15:30:26 +01002193int ilk_wm_max_level(const struct drm_device *dev)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002194{
2195 /* how many WM levels are we expecting */
Damien Lespiaub6e742f2015-05-09 02:05:55 +01002196 if (INTEL_INFO(dev)->gen >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002197 return 7;
2198 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002199 return 4;
2200 else if (INTEL_INFO(dev)->gen >= 6)
2201 return 3;
2202 else
2203 return 2;
2204}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002205
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002206static void intel_print_wm_latency(struct drm_device *dev,
2207 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002208 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002209{
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002210 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002211
2212 for (level = 0; level <= max_level; level++) {
2213 unsigned int latency = wm[level];
2214
2215 if (latency == 0) {
2216 DRM_ERROR("%s WM%d latency not provided\n",
2217 name, level);
2218 continue;
2219 }
2220
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002221 /*
2222 * - latencies are in us on gen9.
2223 * - before then, WM1+ latency values are in 0.5us units
2224 */
2225 if (IS_GEN9(dev))
2226 latency *= 10;
2227 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002228 latency *= 5;
2229
2230 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2231 name, level, wm[level],
2232 latency / 10, latency % 10);
2233 }
2234}
2235
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002236static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2237 uint16_t wm[5], uint16_t min)
2238{
2239 int level, max_level = ilk_wm_max_level(dev_priv->dev);
2240
2241 if (wm[0] >= min)
2242 return false;
2243
2244 wm[0] = max(wm[0], min);
2245 for (level = 1; level <= max_level; level++)
2246 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2247
2248 return true;
2249}
2250
2251static void snb_wm_latency_quirk(struct drm_device *dev)
2252{
2253 struct drm_i915_private *dev_priv = dev->dev_private;
2254 bool changed;
2255
2256 /*
2257 * The BIOS provided WM memory latency values are often
2258 * inadequate for high resolution displays. Adjust them.
2259 */
2260 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2261 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2262 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2263
2264 if (!changed)
2265 return;
2266
2267 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
2268 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2269 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2270 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
2271}
2272
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002273static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002274{
2275 struct drm_i915_private *dev_priv = dev->dev_private;
2276
2277 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2278
2279 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2280 sizeof(dev_priv->wm.pri_latency));
2281 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2282 sizeof(dev_priv->wm.pri_latency));
2283
2284 intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency);
2285 intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002286
2287 intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency);
2288 intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency);
2289 intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002290
2291 if (IS_GEN6(dev))
2292 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002293}
2294
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002295static void skl_setup_wm_latency(struct drm_device *dev)
2296{
2297 struct drm_i915_private *dev_priv = dev->dev_private;
2298
2299 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
2300 intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency);
2301}
2302
Matt Ropered4a6a72016-02-23 17:20:13 -08002303static bool ilk_validate_pipe_wm(struct drm_device *dev,
2304 struct intel_pipe_wm *pipe_wm)
2305{
2306 /* LP0 watermark maximums depend on this pipe alone */
2307 const struct intel_wm_config config = {
2308 .num_pipes_active = 1,
2309 .sprites_enabled = pipe_wm->sprites_enabled,
2310 .sprites_scaled = pipe_wm->sprites_scaled,
2311 };
2312 struct ilk_wm_maximums max;
2313
2314 /* LP0 watermarks always use 1/2 DDB partitioning */
2315 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2316
2317 /* At least LP0 must be valid */
2318 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
2319 DRM_DEBUG_KMS("LP0 watermark invalid\n");
2320 return false;
2321 }
2322
2323 return true;
2324}
2325
Matt Roper261a27d2015-10-08 15:28:25 -07002326/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002327static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07002328{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002329 struct drm_atomic_state *state = cstate->base.state;
2330 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07002331 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002332 struct drm_device *dev = state->dev;
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002333 const struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roper43d59ed2015-09-24 15:53:07 -07002334 struct intel_plane *intel_plane;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002335 struct intel_plane_state *pristate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002336 struct intel_plane_state *sprstate = NULL;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002337 struct intel_plane_state *curstate = NULL;
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002338 int level, max_level = ilk_wm_max_level(dev), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02002339 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002340
Matt Ropere8f1f022016-05-12 07:05:55 -07002341 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002342
Matt Roper43d59ed2015-09-24 15:53:07 -07002343 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002344 struct intel_plane_state *ps;
2345
2346 ps = intel_atomic_get_existing_plane_state(state,
2347 intel_plane);
2348 if (!ps)
2349 continue;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002350
2351 if (intel_plane->base.type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002352 pristate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002353 else if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002354 sprstate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002355 else if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002356 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07002357 }
2358
Matt Ropered4a6a72016-02-23 17:20:13 -08002359 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002360 if (sprstate) {
2361 pipe_wm->sprites_enabled = sprstate->visible;
2362 pipe_wm->sprites_scaled = sprstate->visible &&
2363 (drm_rect_width(&sprstate->dst) != drm_rect_width(&sprstate->src) >> 16 ||
2364 drm_rect_height(&sprstate->dst) != drm_rect_height(&sprstate->src) >> 16);
2365 }
2366
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002367 usable_level = max_level;
2368
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002369 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002370 if (INTEL_INFO(dev)->gen <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002371 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002372
2373 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08002374 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002375 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002376
Matt Roper86c8bbb2015-09-24 15:53:16 -07002377 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002378 pristate, sprstate, curstate, &pipe_wm->raw_wm[0]);
2379
2380 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
2381 pipe_wm->wm[0] = pipe_wm->raw_wm[0];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002382
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002383 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002384 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002385
Matt Ropered4a6a72016-02-23 17:20:13 -08002386 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01002387 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002388
2389 ilk_compute_wm_reg_maximums(dev, 1, &max);
2390
2391 for (level = 1; level <= max_level; level++) {
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002392 struct intel_wm_level *wm = &pipe_wm->raw_wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002393
Matt Roper86c8bbb2015-09-24 15:53:16 -07002394 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002395 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002396
2397 /*
2398 * Disable any watermark level that exceeds the
2399 * register maximums since such watermarks are
2400 * always invalid.
2401 */
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002402 if (level > usable_level)
2403 continue;
2404
2405 if (ilk_validate_wm_level(level, &max, wm))
2406 pipe_wm->wm[level] = *wm;
2407 else
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002408 usable_level = level;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002409 }
2410
Matt Roper86c8bbb2015-09-24 15:53:16 -07002411 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002412}
2413
2414/*
Matt Ropered4a6a72016-02-23 17:20:13 -08002415 * Build a set of 'intermediate' watermark values that satisfy both the old
2416 * state and the new state. These can be programmed to the hardware
2417 * immediately.
2418 */
2419static int ilk_compute_intermediate_wm(struct drm_device *dev,
2420 struct intel_crtc *intel_crtc,
2421 struct intel_crtc_state *newstate)
2422{
Matt Ropere8f1f022016-05-12 07:05:55 -07002423 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08002424 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
2425 int level, max_level = ilk_wm_max_level(dev);
2426
2427 /*
2428 * Start with the final, target watermarks, then combine with the
2429 * currently active watermarks to get values that are safe both before
2430 * and after the vblank.
2431 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002432 *a = newstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08002433 a->pipe_enabled |= b->pipe_enabled;
2434 a->sprites_enabled |= b->sprites_enabled;
2435 a->sprites_scaled |= b->sprites_scaled;
2436
2437 for (level = 0; level <= max_level; level++) {
2438 struct intel_wm_level *a_wm = &a->wm[level];
2439 const struct intel_wm_level *b_wm = &b->wm[level];
2440
2441 a_wm->enable &= b_wm->enable;
2442 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
2443 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
2444 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
2445 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
2446 }
2447
2448 /*
2449 * We need to make sure that these merged watermark values are
2450 * actually a valid configuration themselves. If they're not,
2451 * there's no safe way to transition from the old state to
2452 * the new state, so we need to fail the atomic transaction.
2453 */
2454 if (!ilk_validate_pipe_wm(dev, a))
2455 return -EINVAL;
2456
2457 /*
2458 * If our intermediate WM are identical to the final WM, then we can
2459 * omit the post-vblank programming; only update if it's different.
2460 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002461 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) == 0)
Matt Ropered4a6a72016-02-23 17:20:13 -08002462 newstate->wm.need_postvbl_update = false;
2463
2464 return 0;
2465}
2466
2467/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002468 * Merge the watermarks from all active pipes for a specific level.
2469 */
2470static void ilk_merge_wm_level(struct drm_device *dev,
2471 int level,
2472 struct intel_wm_level *ret_wm)
2473{
2474 const struct intel_crtc *intel_crtc;
2475
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002476 ret_wm->enable = true;
2477
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002478 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08002479 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002480 const struct intel_wm_level *wm = &active->wm[level];
2481
2482 if (!active->pipe_enabled)
2483 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002484
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002485 /*
2486 * The watermark values may have been used in the past,
2487 * so we must maintain them in the registers for some
2488 * time even if the level is now disabled.
2489 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002490 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002491 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002492
2493 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2494 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2495 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2496 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2497 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002498}
2499
2500/*
2501 * Merge all low power watermarks for all active pipes.
2502 */
2503static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002504 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002505 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002506 struct intel_pipe_wm *merged)
2507{
Paulo Zanoni7733b492015-07-07 15:26:04 -03002508 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002509 int level, max_level = ilk_wm_max_level(dev);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002510 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002511
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002512 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
2513 if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) &&
2514 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03002515 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002516
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002517 /* ILK: FBC WM must be disabled always */
2518 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002519
2520 /* merge each WM1+ level */
2521 for (level = 1; level <= max_level; level++) {
2522 struct intel_wm_level *wm = &merged->wm[level];
2523
2524 ilk_merge_wm_level(dev, level, wm);
2525
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002526 if (level > last_enabled_level)
2527 wm->enable = false;
2528 else if (!ilk_validate_wm_level(level, max, wm))
2529 /* make sure all following levels get disabled */
2530 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002531
2532 /*
2533 * The spec says it is preferred to disable
2534 * FBC WMs instead of disabling a WM level.
2535 */
2536 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002537 if (wm->enable)
2538 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002539 wm->fbc_val = 0;
2540 }
2541 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002542
2543 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2544 /*
2545 * FIXME this is racy. FBC might get enabled later.
2546 * What we should check here is whether FBC can be
2547 * enabled sometime later.
2548 */
Paulo Zanoni7733b492015-07-07 15:26:04 -03002549 if (IS_GEN5(dev) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03002550 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002551 for (level = 2; level <= max_level; level++) {
2552 struct intel_wm_level *wm = &merged->wm[level];
2553
2554 wm->enable = false;
2555 }
2556 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002557}
2558
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002559static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2560{
2561 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2562 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2563}
2564
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002565/* The value we need to program into the WM_LPx latency field */
2566static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2567{
2568 struct drm_i915_private *dev_priv = dev->dev_private;
2569
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002570 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002571 return 2 * level;
2572 else
2573 return dev_priv->wm.pri_latency[level];
2574}
2575
Imre Deak820c1982013-12-17 14:46:36 +02002576static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002577 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002578 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002579 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002580{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002581 struct intel_crtc *intel_crtc;
2582 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002583
Ville Syrjälä0362c782013-10-09 19:17:57 +03002584 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002585 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002586
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002587 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002588 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002589 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002590
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002591 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002592
Ville Syrjälä0362c782013-10-09 19:17:57 +03002593 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002594
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002595 /*
2596 * Maintain the watermark values even if the level is
2597 * disabled. Doing otherwise could cause underruns.
2598 */
2599 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002600 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002601 (r->pri_val << WM1_LP_SR_SHIFT) |
2602 r->cur_val;
2603
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002604 if (r->enable)
2605 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2606
Ville Syrjälä416f4722013-11-02 21:07:46 -07002607 if (INTEL_INFO(dev)->gen >= 8)
2608 results->wm_lp[wm_lp - 1] |=
2609 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2610 else
2611 results->wm_lp[wm_lp - 1] |=
2612 r->fbc_val << WM1_LP_FBC_SHIFT;
2613
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002614 /*
2615 * Always set WM1S_LP_EN when spr_val != 0, even if the
2616 * level is disabled. Doing otherwise could cause underruns.
2617 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002618 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2619 WARN_ON(wm_lp != 1);
2620 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2621 } else
2622 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002623 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002624
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002625 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002626 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002627 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08002628 const struct intel_wm_level *r =
2629 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002630
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002631 if (WARN_ON(!r->enable))
2632 continue;
2633
Matt Ropered4a6a72016-02-23 17:20:13 -08002634 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002635
2636 results->wm_pipe[pipe] =
2637 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2638 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2639 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002640 }
2641}
2642
Paulo Zanoni861f3382013-05-31 10:19:21 -03002643/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2644 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002645static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002646 struct intel_pipe_wm *r1,
2647 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002648{
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002649 int level, max_level = ilk_wm_max_level(dev);
2650 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002651
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002652 for (level = 1; level <= max_level; level++) {
2653 if (r1->wm[level].enable)
2654 level1 = level;
2655 if (r2->wm[level].enable)
2656 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002657 }
2658
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002659 if (level1 == level2) {
2660 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002661 return r2;
2662 else
2663 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002664 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002665 return r1;
2666 } else {
2667 return r2;
2668 }
2669}
2670
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002671/* dirty bits used to track which watermarks need changes */
2672#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2673#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2674#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2675#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2676#define WM_DIRTY_FBC (1 << 24)
2677#define WM_DIRTY_DDB (1 << 25)
2678
Damien Lespiau055e3932014-08-18 13:49:10 +01002679static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002680 const struct ilk_wm_values *old,
2681 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002682{
2683 unsigned int dirty = 0;
2684 enum pipe pipe;
2685 int wm_lp;
2686
Damien Lespiau055e3932014-08-18 13:49:10 +01002687 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002688 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2689 dirty |= WM_DIRTY_LINETIME(pipe);
2690 /* Must disable LP1+ watermarks too */
2691 dirty |= WM_DIRTY_LP_ALL;
2692 }
2693
2694 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2695 dirty |= WM_DIRTY_PIPE(pipe);
2696 /* Must disable LP1+ watermarks too */
2697 dirty |= WM_DIRTY_LP_ALL;
2698 }
2699 }
2700
2701 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2702 dirty |= WM_DIRTY_FBC;
2703 /* Must disable LP1+ watermarks too */
2704 dirty |= WM_DIRTY_LP_ALL;
2705 }
2706
2707 if (old->partitioning != new->partitioning) {
2708 dirty |= WM_DIRTY_DDB;
2709 /* Must disable LP1+ watermarks too */
2710 dirty |= WM_DIRTY_LP_ALL;
2711 }
2712
2713 /* LP1+ watermarks already deemed dirty, no need to continue */
2714 if (dirty & WM_DIRTY_LP_ALL)
2715 return dirty;
2716
2717 /* Find the lowest numbered LP1+ watermark in need of an update... */
2718 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2719 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2720 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2721 break;
2722 }
2723
2724 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2725 for (; wm_lp <= 3; wm_lp++)
2726 dirty |= WM_DIRTY_LP(wm_lp);
2727
2728 return dirty;
2729}
2730
Ville Syrjälä8553c182013-12-05 15:51:39 +02002731static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2732 unsigned int dirty)
2733{
Imre Deak820c1982013-12-17 14:46:36 +02002734 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002735 bool changed = false;
2736
2737 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2738 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2739 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2740 changed = true;
2741 }
2742 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2743 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2744 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2745 changed = true;
2746 }
2747 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2748 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2749 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2750 changed = true;
2751 }
2752
2753 /*
2754 * Don't touch WM1S_LP_EN here.
2755 * Doing so could cause underruns.
2756 */
2757
2758 return changed;
2759}
2760
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002761/*
2762 * The spec says we shouldn't write when we don't need, because every write
2763 * causes WMs to be re-evaluated, expending some power.
2764 */
Imre Deak820c1982013-12-17 14:46:36 +02002765static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2766 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002767{
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002768 struct drm_device *dev = dev_priv->dev;
Imre Deak820c1982013-12-17 14:46:36 +02002769 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002770 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002771 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002772
Damien Lespiau055e3932014-08-18 13:49:10 +01002773 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002774 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002775 return;
2776
Ville Syrjälä8553c182013-12-05 15:51:39 +02002777 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002778
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002779 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002780 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002781 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002782 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002783 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002784 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2785
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002786 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002787 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002788 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002789 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002790 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002791 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2792
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002793 if (dirty & WM_DIRTY_DDB) {
Ville Syrjäläa42a5712014-01-07 16:14:08 +02002794 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002795 val = I915_READ(WM_MISC);
2796 if (results->partitioning == INTEL_DDB_PART_1_2)
2797 val &= ~WM_MISC_DATA_PARTITION_5_6;
2798 else
2799 val |= WM_MISC_DATA_PARTITION_5_6;
2800 I915_WRITE(WM_MISC, val);
2801 } else {
2802 val = I915_READ(DISP_ARB_CTL2);
2803 if (results->partitioning == INTEL_DDB_PART_1_2)
2804 val &= ~DISP_DATA_PARTITION_5_6;
2805 else
2806 val |= DISP_DATA_PARTITION_5_6;
2807 I915_WRITE(DISP_ARB_CTL2, val);
2808 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002809 }
2810
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002811 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002812 val = I915_READ(DISP_ARB_CTL);
2813 if (results->enable_fbc_wm)
2814 val &= ~DISP_FBC_WM_DIS;
2815 else
2816 val |= DISP_FBC_WM_DIS;
2817 I915_WRITE(DISP_ARB_CTL, val);
2818 }
2819
Imre Deak954911e2013-12-17 14:46:34 +02002820 if (dirty & WM_DIRTY_LP(1) &&
2821 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2822 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2823
2824 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002825 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2826 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2827 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2828 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2829 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002830
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002831 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002832 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002833 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002834 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002835 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002836 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002837
2838 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002839}
2840
Matt Ropered4a6a72016-02-23 17:20:13 -08002841bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02002842{
2843 struct drm_i915_private *dev_priv = dev->dev_private;
2844
2845 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2846}
2847
Damien Lespiaub9cec072014-11-04 17:06:43 +00002848/*
2849 * On gen9, we need to allocate Display Data Buffer (DDB) portions to the
2850 * different active planes.
2851 */
2852
2853#define SKL_DDB_SIZE 896 /* in blocks */
Damien Lespiau43d735a2015-03-17 11:39:34 +02002854#define BXT_DDB_SIZE 512
Damien Lespiaub9cec072014-11-04 17:06:43 +00002855
Matt Roper024c9042015-09-24 15:53:11 -07002856/*
2857 * Return the index of a plane in the SKL DDB and wm result arrays. Primary
2858 * plane is always in slot 0, cursor is always in slot I915_MAX_PLANES-1, and
2859 * other universal planes are in indices 1..n. Note that this may leave unused
2860 * indices between the top "sprite" plane and the cursor.
2861 */
2862static int
2863skl_wm_plane_id(const struct intel_plane *plane)
2864{
2865 switch (plane->base.type) {
2866 case DRM_PLANE_TYPE_PRIMARY:
2867 return 0;
2868 case DRM_PLANE_TYPE_CURSOR:
2869 return PLANE_CURSOR;
2870 case DRM_PLANE_TYPE_OVERLAY:
2871 return plane->plane + 1;
2872 default:
2873 MISSING_CASE(plane->base.type);
2874 return plane->plane;
2875 }
2876}
2877
Damien Lespiaub9cec072014-11-04 17:06:43 +00002878static void
2879skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07002880 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07002881 struct skl_ddb_entry *alloc, /* out */
2882 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002883{
Matt Roperc107acf2016-05-12 07:06:01 -07002884 struct drm_atomic_state *state = cstate->base.state;
2885 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
2886 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07002887 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002888 unsigned int pipe_size, ddb_size;
2889 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07002890 int pipe = to_intel_crtc(for_crtc)->pipe;
2891
Matt Ropera6d3460e2016-05-12 07:06:04 -07002892 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00002893 alloc->start = 0;
2894 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07002895 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00002896 return;
2897 }
2898
Matt Ropera6d3460e2016-05-12 07:06:04 -07002899 if (intel_state->active_pipe_changes)
2900 *num_active = hweight32(intel_state->active_crtcs);
2901 else
2902 *num_active = hweight32(dev_priv->active_crtcs);
2903
Damien Lespiau43d735a2015-03-17 11:39:34 +02002904 if (IS_BROXTON(dev))
2905 ddb_size = BXT_DDB_SIZE;
2906 else
2907 ddb_size = SKL_DDB_SIZE;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002908
2909 ddb_size -= 4; /* 4 blocks for bypass path allocation */
2910
Matt Roperc107acf2016-05-12 07:06:01 -07002911 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07002912 * If the state doesn't change the active CRTC's, then there's
2913 * no need to recalculate; the existing pipe allocation limits
2914 * should remain unchanged. Note that we're safe from racing
2915 * commits since any racing commit that changes the active CRTC
2916 * list would need to grab _all_ crtc locks, including the one
2917 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07002918 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07002919 if (!intel_state->active_pipe_changes) {
2920 *alloc = dev_priv->wm.skl_hw.ddb.pipe[pipe];
2921 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002922 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07002923
2924 nth_active_pipe = hweight32(intel_state->active_crtcs &
2925 (drm_crtc_mask(for_crtc) - 1));
2926 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
2927 alloc->start = nth_active_pipe * ddb_size / *num_active;
2928 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00002929}
2930
Matt Roperc107acf2016-05-12 07:06:01 -07002931static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002932{
Matt Roperc107acf2016-05-12 07:06:01 -07002933 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00002934 return 32;
2935
2936 return 8;
2937}
2938
Damien Lespiaua269c582014-11-04 17:06:49 +00002939static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
2940{
2941 entry->start = reg & 0x3ff;
2942 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00002943 if (entry->end)
2944 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00002945}
2946
Damien Lespiau08db6652014-11-04 17:06:52 +00002947void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
2948 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00002949{
Damien Lespiaua269c582014-11-04 17:06:49 +00002950 enum pipe pipe;
2951 int plane;
2952 u32 val;
2953
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02002954 memset(ddb, 0, sizeof(*ddb));
2955
Damien Lespiaua269c582014-11-04 17:06:49 +00002956 for_each_pipe(dev_priv, pipe) {
Imre Deak4d800032016-02-17 16:31:29 +02002957 enum intel_display_power_domain power_domain;
2958
2959 power_domain = POWER_DOMAIN_PIPE(pipe);
2960 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02002961 continue;
2962
Damien Lespiaudd740782015-02-28 14:54:08 +00002963 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00002964 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
2965 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
2966 val);
2967 }
2968
2969 val = I915_READ(CUR_BUF_CFG(pipe));
Matt Roper4969d332015-09-24 15:53:10 -07002970 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][PLANE_CURSOR],
2971 val);
Imre Deak4d800032016-02-17 16:31:29 +02002972
2973 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00002974 }
2975}
2976
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07002977/*
2978 * Determines the downscale amount of a plane for the purposes of watermark calculations.
2979 * The bspec defines downscale amount as:
2980 *
2981 * """
2982 * Horizontal down scale amount = maximum[1, Horizontal source size /
2983 * Horizontal destination size]
2984 * Vertical down scale amount = maximum[1, Vertical source size /
2985 * Vertical destination size]
2986 * Total down scale amount = Horizontal down scale amount *
2987 * Vertical down scale amount
2988 * """
2989 *
2990 * Return value is provided in 16.16 fixed point form to retain fractional part.
2991 * Caller should take care of dividing & rounding off the value.
2992 */
2993static uint32_t
2994skl_plane_downscale_amount(const struct intel_plane_state *pstate)
2995{
2996 uint32_t downscale_h, downscale_w;
2997 uint32_t src_w, src_h, dst_w, dst_h;
2998
2999 if (WARN_ON(!pstate->visible))
3000 return DRM_PLANE_HELPER_NO_SCALING;
3001
3002 /* n.b., src is 16.16 fixed point, dst is whole integer */
3003 src_w = drm_rect_width(&pstate->src);
3004 src_h = drm_rect_height(&pstate->src);
3005 dst_w = drm_rect_width(&pstate->dst);
3006 dst_h = drm_rect_height(&pstate->dst);
3007 if (intel_rotation_90_or_270(pstate->base.rotation))
3008 swap(dst_w, dst_h);
3009
3010 downscale_h = max(src_h / dst_h, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3011 downscale_w = max(src_w / dst_w, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3012
3013 /* Provide result in 16.16 fixed point */
3014 return (uint64_t)downscale_w * downscale_h >> 16;
3015}
3016
Damien Lespiaub9cec072014-11-04 17:06:43 +00003017static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003018skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3019 const struct drm_plane_state *pstate,
3020 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003021{
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003022 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Matt Roper024c9042015-09-24 15:53:11 -07003023 struct drm_framebuffer *fb = pstate->fb;
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003024 uint32_t down_scale_amount, data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003025 uint32_t width = 0, height = 0;
Matt Ropera1de91e2016-05-12 07:05:57 -07003026 unsigned format = fb ? fb->pixel_format : DRM_FORMAT_XRGB8888;
3027
3028 if (!intel_pstate->visible)
3029 return 0;
3030 if (pstate->plane->type == DRM_PLANE_TYPE_CURSOR)
3031 return 0;
3032 if (y && format != DRM_FORMAT_NV12)
3033 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003034
3035 width = drm_rect_width(&intel_pstate->src) >> 16;
3036 height = drm_rect_height(&intel_pstate->src) >> 16;
3037
3038 if (intel_rotation_90_or_270(pstate->rotation))
3039 swap(width, height);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003040
3041 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07003042 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003043 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003044 data_rate = width * height *
Matt Ropera1de91e2016-05-12 07:05:57 -07003045 drm_format_plane_cpp(format, 0);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003046 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003047 data_rate = (width / 2) * (height / 2) *
Matt Ropera1de91e2016-05-12 07:05:57 -07003048 drm_format_plane_cpp(format, 1);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003049 } else {
3050 /* for packed formats */
3051 data_rate = width * height * drm_format_plane_cpp(format, 0);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003052 }
3053
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003054 down_scale_amount = skl_plane_downscale_amount(intel_pstate);
3055
3056 return (uint64_t)data_rate * down_scale_amount >> 16;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003057}
3058
3059/*
3060 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
3061 * a 8192x4096@32bpp framebuffer:
3062 * 3 * 4096 * 8192 * 4 < 2^32
3063 */
3064static unsigned int
Matt Roper9c74d822016-05-12 07:05:58 -07003065skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003066{
Matt Roper9c74d822016-05-12 07:05:58 -07003067 struct drm_crtc_state *cstate = &intel_cstate->base;
3068 struct drm_atomic_state *state = cstate->state;
3069 struct drm_crtc *crtc = cstate->crtc;
3070 struct drm_device *dev = crtc->dev;
3071 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Ropera6d3460e2016-05-12 07:06:04 -07003072 const struct drm_plane *plane;
Matt Roper024c9042015-09-24 15:53:11 -07003073 const struct intel_plane *intel_plane;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003074 struct drm_plane_state *pstate;
Matt Ropera1de91e2016-05-12 07:05:57 -07003075 unsigned int rate, total_data_rate = 0;
Matt Roper9c74d822016-05-12 07:05:58 -07003076 int id;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003077 int i;
3078
3079 if (WARN_ON(!state))
3080 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003081
Matt Ropera1de91e2016-05-12 07:05:57 -07003082 /* Calculate and cache data rate for each plane */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003083 for_each_plane_in_state(state, plane, pstate, i) {
3084 id = skl_wm_plane_id(to_intel_plane(plane));
3085 intel_plane = to_intel_plane(plane);
Matt Roper024c9042015-09-24 15:53:11 -07003086
Matt Ropera6d3460e2016-05-12 07:06:04 -07003087 if (intel_plane->pipe != intel_crtc->pipe)
3088 continue;
Matt Roper024c9042015-09-24 15:53:11 -07003089
Matt Ropera6d3460e2016-05-12 07:06:04 -07003090 /* packed/uv */
3091 rate = skl_plane_relative_data_rate(intel_cstate,
3092 pstate, 0);
3093 intel_cstate->wm.skl.plane_data_rate[id] = rate;
Matt Roper9c74d822016-05-12 07:05:58 -07003094
Matt Ropera6d3460e2016-05-12 07:06:04 -07003095 /* y-plane */
3096 rate = skl_plane_relative_data_rate(intel_cstate,
3097 pstate, 1);
3098 intel_cstate->wm.skl.plane_y_data_rate[id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07003099 }
3100
3101 /* Calculate CRTC's total data rate from cached values */
3102 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
3103 int id = skl_wm_plane_id(intel_plane);
3104
3105 /* packed/uv */
Matt Roper9c74d822016-05-12 07:05:58 -07003106 total_data_rate += intel_cstate->wm.skl.plane_data_rate[id];
3107 total_data_rate += intel_cstate->wm.skl.plane_y_data_rate[id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003108 }
3109
Matt Roper9c74d822016-05-12 07:05:58 -07003110 WARN_ON(cstate->plane_mask && total_data_rate == 0);
3111
Damien Lespiaub9cec072014-11-04 17:06:43 +00003112 return total_data_rate;
3113}
3114
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003115static uint16_t
3116skl_ddb_min_alloc(const struct drm_plane_state *pstate,
3117 const int y)
3118{
3119 struct drm_framebuffer *fb = pstate->fb;
3120 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
3121 uint32_t src_w, src_h;
3122 uint32_t min_scanlines = 8;
3123 uint8_t plane_bpp;
3124
3125 if (WARN_ON(!fb))
3126 return 0;
3127
3128 /* For packed formats, no y-plane, return 0 */
3129 if (y && fb->pixel_format != DRM_FORMAT_NV12)
3130 return 0;
3131
3132 /* For Non Y-tile return 8-blocks */
3133 if (fb->modifier[0] != I915_FORMAT_MOD_Y_TILED &&
3134 fb->modifier[0] != I915_FORMAT_MOD_Yf_TILED)
3135 return 8;
3136
3137 src_w = drm_rect_width(&intel_pstate->src) >> 16;
3138 src_h = drm_rect_height(&intel_pstate->src) >> 16;
3139
3140 if (intel_rotation_90_or_270(pstate->rotation))
3141 swap(src_w, src_h);
3142
3143 /* Halve UV plane width and height for NV12 */
3144 if (fb->pixel_format == DRM_FORMAT_NV12 && !y) {
3145 src_w /= 2;
3146 src_h /= 2;
3147 }
3148
3149 if (fb->pixel_format == DRM_FORMAT_NV12 && !y)
3150 plane_bpp = drm_format_plane_cpp(fb->pixel_format, 1);
3151 else
3152 plane_bpp = drm_format_plane_cpp(fb->pixel_format, 0);
3153
3154 if (intel_rotation_90_or_270(pstate->rotation)) {
3155 switch (plane_bpp) {
3156 case 1:
3157 min_scanlines = 32;
3158 break;
3159 case 2:
3160 min_scanlines = 16;
3161 break;
3162 case 4:
3163 min_scanlines = 8;
3164 break;
3165 case 8:
3166 min_scanlines = 4;
3167 break;
3168 default:
3169 WARN(1, "Unsupported pixel depth %u for rotation",
3170 plane_bpp);
3171 min_scanlines = 32;
3172 }
3173 }
3174
3175 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
3176}
3177
Matt Roperc107acf2016-05-12 07:06:01 -07003178static int
Matt Roper024c9042015-09-24 15:53:11 -07003179skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00003180 struct skl_ddb_allocation *ddb /* out */)
3181{
Matt Roperc107acf2016-05-12 07:06:01 -07003182 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003183 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003184 struct drm_device *dev = crtc->dev;
3185 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper024c9042015-09-24 15:53:11 -07003186 struct intel_plane *intel_plane;
Matt Roperc107acf2016-05-12 07:06:01 -07003187 struct drm_plane *plane;
3188 struct drm_plane_state *pstate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003189 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003190 struct skl_ddb_entry *alloc = &ddb->pipe[pipe];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003191 uint16_t alloc_size, start, cursor_blocks;
Matt Roper86a2100a2016-05-12 07:05:59 -07003192 uint16_t *minimum = cstate->wm.skl.minimum_blocks;
3193 uint16_t *y_minimum = cstate->wm.skl.minimum_y_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003194 unsigned int total_data_rate;
Matt Roperc107acf2016-05-12 07:06:01 -07003195 int num_active;
3196 int id, i;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003197
Matt Ropera6d3460e2016-05-12 07:06:04 -07003198 if (WARN_ON(!state))
3199 return 0;
3200
Matt Roperc107acf2016-05-12 07:06:01 -07003201 if (!cstate->base.active) {
3202 ddb->pipe[pipe].start = ddb->pipe[pipe].end = 0;
3203 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
3204 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
3205 return 0;
3206 }
3207
Matt Ropera6d3460e2016-05-12 07:06:04 -07003208 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003209 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003210 if (alloc_size == 0) {
3211 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roperc107acf2016-05-12 07:06:01 -07003212 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003213 }
3214
Matt Roperc107acf2016-05-12 07:06:01 -07003215 cursor_blocks = skl_cursor_allocation(num_active);
Matt Roper4969d332015-09-24 15:53:10 -07003216 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - cursor_blocks;
3217 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003218
3219 alloc_size -= cursor_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003220
Damien Lespiau80958152015-02-09 13:35:10 +00003221 /* 1. Allocate the mininum required blocks for each active plane */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003222 for_each_plane_in_state(state, plane, pstate, i) {
3223 intel_plane = to_intel_plane(plane);
3224 id = skl_wm_plane_id(intel_plane);
Damien Lespiau80958152015-02-09 13:35:10 +00003225
Matt Ropera6d3460e2016-05-12 07:06:04 -07003226 if (intel_plane->pipe != pipe)
3227 continue;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003228
Matt Ropera6d3460e2016-05-12 07:06:04 -07003229 if (!to_intel_plane_state(pstate)->visible) {
3230 minimum[id] = 0;
3231 y_minimum[id] = 0;
3232 continue;
Matt Roperc107acf2016-05-12 07:06:01 -07003233 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003234 if (plane->type == DRM_PLANE_TYPE_CURSOR) {
3235 minimum[id] = 0;
3236 y_minimum[id] = 0;
3237 continue;
Matt Roperc107acf2016-05-12 07:06:01 -07003238 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003239
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003240 minimum[id] = skl_ddb_min_alloc(pstate, 0);
3241 y_minimum[id] = skl_ddb_min_alloc(pstate, 1);
Matt Roperc107acf2016-05-12 07:06:01 -07003242 }
3243
3244 for (i = 0; i < PLANE_CURSOR; i++) {
3245 alloc_size -= minimum[i];
3246 alloc_size -= y_minimum[i];
Damien Lespiau80958152015-02-09 13:35:10 +00003247 }
3248
Damien Lespiaub9cec072014-11-04 17:06:43 +00003249 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003250 * 2. Distribute the remaining space in proportion to the amount of
3251 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003252 *
3253 * FIXME: we may not allocate every single block here.
3254 */
Matt Roper024c9042015-09-24 15:53:11 -07003255 total_data_rate = skl_get_total_relative_data_rate(cstate);
Matt Ropera1de91e2016-05-12 07:05:57 -07003256 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07003257 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003258
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003259 start = alloc->start;
Matt Roper024c9042015-09-24 15:53:11 -07003260 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003261 unsigned int data_rate, y_data_rate;
3262 uint16_t plane_blocks, y_plane_blocks = 0;
Matt Roper024c9042015-09-24 15:53:11 -07003263 int id = skl_wm_plane_id(intel_plane);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003264
Matt Ropera1de91e2016-05-12 07:05:57 -07003265 data_rate = cstate->wm.skl.plane_data_rate[id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003266
3267 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003268 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003269 * promote the expression to 64 bits to avoid overflowing, the
3270 * result is < available as data_rate / total_data_rate < 1
3271 */
Matt Roper024c9042015-09-24 15:53:11 -07003272 plane_blocks = minimum[id];
Damien Lespiau80958152015-02-09 13:35:10 +00003273 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3274 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003275
Matt Roperc107acf2016-05-12 07:06:01 -07003276 /* Leave disabled planes at (0,0) */
3277 if (data_rate) {
3278 ddb->plane[pipe][id].start = start;
3279 ddb->plane[pipe][id].end = start + plane_blocks;
3280 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00003281
3282 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003283
3284 /*
3285 * allocation for y_plane part of planar format:
3286 */
Matt Ropera1de91e2016-05-12 07:05:57 -07003287 y_data_rate = cstate->wm.skl.plane_y_data_rate[id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003288
Matt Ropera1de91e2016-05-12 07:05:57 -07003289 y_plane_blocks = y_minimum[id];
3290 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3291 total_data_rate);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003292
Matt Roperc107acf2016-05-12 07:06:01 -07003293 if (y_data_rate) {
3294 ddb->y_plane[pipe][id].start = start;
3295 ddb->y_plane[pipe][id].end = start + y_plane_blocks;
3296 }
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003297
Matt Ropera1de91e2016-05-12 07:05:57 -07003298 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003299 }
3300
Matt Roperc107acf2016-05-12 07:06:01 -07003301 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003302}
3303
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02003304static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003305{
3306 /* TODO: Take into account the scalers once we support them */
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02003307 return config->base.adjusted_mode.crtc_clock;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003308}
3309
3310/*
3311 * The max latency should be 257 (max the punit can code is 255 and we add 2us
Ville Syrjäläac484962016-01-20 21:05:26 +02003312 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003313 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3314 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3315*/
Ville Syrjäläac484962016-01-20 21:05:26 +02003316static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003317{
3318 uint32_t wm_intermediate_val, ret;
3319
3320 if (latency == 0)
3321 return UINT_MAX;
3322
Ville Syrjäläac484962016-01-20 21:05:26 +02003323 wm_intermediate_val = latency * pixel_rate * cpp / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003324 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
3325
3326 return ret;
3327}
3328
3329static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02003330 uint32_t horiz_pixels, uint8_t cpp,
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003331 uint64_t tiling, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003332{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003333 uint32_t ret;
3334 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3335 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003336
3337 if (latency == 0)
3338 return UINT_MAX;
3339
Ville Syrjäläac484962016-01-20 21:05:26 +02003340 plane_bytes_per_line = horiz_pixels * cpp;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003341
3342 if (tiling == I915_FORMAT_MOD_Y_TILED ||
3343 tiling == I915_FORMAT_MOD_Yf_TILED) {
3344 plane_bytes_per_line *= 4;
3345 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3346 plane_blocks_per_line /= 4;
3347 } else {
3348 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3349 }
3350
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003351 wm_intermediate_val = latency * pixel_rate;
3352 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003353 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003354
3355 return ret;
3356}
3357
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003358static uint32_t skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
3359 struct intel_plane_state *pstate)
3360{
3361 uint64_t adjusted_pixel_rate;
3362 uint64_t downscale_amount;
3363 uint64_t pixel_rate;
3364
3365 /* Shouldn't reach here on disabled planes... */
3366 if (WARN_ON(!pstate->visible))
3367 return 0;
3368
3369 /*
3370 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
3371 * with additional adjustments for plane-specific scaling.
3372 */
3373 adjusted_pixel_rate = skl_pipe_pixel_rate(cstate);
3374 downscale_amount = skl_plane_downscale_amount(pstate);
3375
3376 pixel_rate = adjusted_pixel_rate * downscale_amount >> 16;
3377 WARN_ON(pixel_rate != clamp_t(uint32_t, pixel_rate, 0, ~0));
3378
3379 return pixel_rate;
3380}
3381
Matt Roper55994c22016-05-12 07:06:08 -07003382static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3383 struct intel_crtc_state *cstate,
3384 struct intel_plane_state *intel_pstate,
3385 uint16_t ddb_allocation,
3386 int level,
3387 uint16_t *out_blocks, /* out */
3388 uint8_t *out_lines, /* out */
3389 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003390{
Matt Roper33815fa2016-05-12 07:06:05 -07003391 struct drm_plane_state *pstate = &intel_pstate->base;
3392 struct drm_framebuffer *fb = pstate->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003393 uint32_t latency = dev_priv->wm.skl_latency[level];
3394 uint32_t method1, method2;
3395 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3396 uint32_t res_blocks, res_lines;
3397 uint32_t selected_result;
Ville Syrjäläac484962016-01-20 21:05:26 +02003398 uint8_t cpp;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003399 uint32_t width = 0, height = 0;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003400 uint32_t plane_pixel_rate;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003401
Matt Roper55994c22016-05-12 07:06:08 -07003402 if (latency == 0 || !cstate->base.active || !intel_pstate->visible) {
3403 *enabled = false;
3404 return 0;
3405 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003406
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003407 width = drm_rect_width(&intel_pstate->src) >> 16;
3408 height = drm_rect_height(&intel_pstate->src) >> 16;
3409
Matt Roper33815fa2016-05-12 07:06:05 -07003410 if (intel_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003411 swap(width, height);
3412
Ville Syrjäläac484962016-01-20 21:05:26 +02003413 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003414 plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate, intel_pstate);
3415
3416 method1 = skl_wm_method1(plane_pixel_rate, cpp, latency);
3417 method2 = skl_wm_method2(plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07003418 cstate->base.adjusted_mode.crtc_htotal,
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003419 width,
3420 cpp,
3421 fb->modifier[0],
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003422 latency);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003423
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003424 plane_bytes_per_line = width * cpp;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003425 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003426
Matt Roper024c9042015-09-24 15:53:11 -07003427 if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED ||
3428 fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003429 uint32_t min_scanlines = 4;
3430 uint32_t y_tile_minimum;
Matt Roper33815fa2016-05-12 07:06:05 -07003431 if (intel_rotation_90_or_270(pstate->rotation)) {
Ville Syrjäläac484962016-01-20 21:05:26 +02003432 int cpp = (fb->pixel_format == DRM_FORMAT_NV12) ?
Matt Roper024c9042015-09-24 15:53:11 -07003433 drm_format_plane_cpp(fb->pixel_format, 1) :
3434 drm_format_plane_cpp(fb->pixel_format, 0);
3435
Ville Syrjäläac484962016-01-20 21:05:26 +02003436 switch (cpp) {
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003437 case 1:
3438 min_scanlines = 16;
3439 break;
3440 case 2:
3441 min_scanlines = 8;
3442 break;
3443 case 8:
3444 WARN(1, "Unsupported pixel depth for rotation");
kbuild test robot2f0b5792015-03-26 22:30:21 +08003445 }
Tvrtko Ursulin1fc0a8f2015-03-23 11:10:38 +00003446 }
3447 y_tile_minimum = plane_blocks_per_line * min_scanlines;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003448 selected_result = max(method2, y_tile_minimum);
3449 } else {
3450 if ((ddb_allocation / plane_blocks_per_line) >= 1)
3451 selected_result = min(method1, method2);
3452 else
3453 selected_result = method1;
3454 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003455
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003456 res_blocks = selected_result + 1;
3457 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003458
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003459 if (level >= 1 && level <= 7) {
Matt Roper024c9042015-09-24 15:53:11 -07003460 if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED ||
3461 fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED)
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003462 res_lines += 4;
3463 else
3464 res_blocks++;
3465 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003466
Matt Roper55994c22016-05-12 07:06:08 -07003467 if (res_blocks >= ddb_allocation || res_lines > 31) {
3468 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07003469
3470 /*
3471 * If there are no valid level 0 watermarks, then we can't
3472 * support this display configuration.
3473 */
3474 if (level) {
3475 return 0;
3476 } else {
3477 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
3478 DRM_DEBUG_KMS("Plane %d.%d: blocks required = %u/%u, lines required = %u/31\n",
3479 to_intel_crtc(cstate->base.crtc)->pipe,
3480 skl_wm_plane_id(to_intel_plane(pstate->plane)),
3481 res_blocks, ddb_allocation, res_lines);
3482
3483 return -EINVAL;
3484 }
Matt Roper55994c22016-05-12 07:06:08 -07003485 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00003486
3487 *out_blocks = res_blocks;
3488 *out_lines = res_lines;
Matt Roper55994c22016-05-12 07:06:08 -07003489 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003490
Matt Roper55994c22016-05-12 07:06:08 -07003491 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003492}
3493
Matt Roperf4a96752016-05-12 07:06:06 -07003494static int
3495skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3496 struct skl_ddb_allocation *ddb,
3497 struct intel_crtc_state *cstate,
3498 int level,
3499 struct skl_wm_level *result)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003500{
Matt Roper024c9042015-09-24 15:53:11 -07003501 struct drm_device *dev = dev_priv->dev;
Matt Roperf4a96752016-05-12 07:06:06 -07003502 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003503 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roperf4a96752016-05-12 07:06:06 -07003504 struct drm_plane *plane;
Matt Roper024c9042015-09-24 15:53:11 -07003505 struct intel_plane *intel_plane;
Matt Roper33815fa2016-05-12 07:06:05 -07003506 struct intel_plane_state *intel_pstate;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003507 uint16_t ddb_blocks;
Matt Roper024c9042015-09-24 15:53:11 -07003508 enum pipe pipe = intel_crtc->pipe;
Matt Roper55994c22016-05-12 07:06:08 -07003509 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003510
Matt Roperf4a96752016-05-12 07:06:06 -07003511 /*
3512 * We'll only calculate watermarks for planes that are actually
3513 * enabled, so make sure all other planes are set as disabled.
3514 */
3515 memset(result, 0, sizeof(*result));
3516
3517 for_each_intel_plane_mask(dev, intel_plane, cstate->base.plane_mask) {
Matt Roper024c9042015-09-24 15:53:11 -07003518 int i = skl_wm_plane_id(intel_plane);
3519
Matt Roperf4a96752016-05-12 07:06:06 -07003520 plane = &intel_plane->base;
3521 intel_pstate = NULL;
3522 if (state)
3523 intel_pstate =
3524 intel_atomic_get_existing_plane_state(state,
3525 intel_plane);
3526
3527 /*
3528 * Note: If we start supporting multiple pending atomic commits
3529 * against the same planes/CRTC's in the future, plane->state
3530 * will no longer be the correct pre-state to use for the
3531 * calculations here and we'll need to change where we get the
3532 * 'unchanged' plane data from.
3533 *
3534 * For now this is fine because we only allow one queued commit
3535 * against a CRTC. Even if the plane isn't modified by this
3536 * transaction and we don't have a plane lock, we still have
3537 * the CRTC's lock, so we know that no other transactions are
3538 * racing with us to update it.
3539 */
3540 if (!intel_pstate)
3541 intel_pstate = to_intel_plane_state(plane->state);
3542
3543 WARN_ON(!intel_pstate->base.fb);
3544
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003545 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
3546
Matt Roper55994c22016-05-12 07:06:08 -07003547 ret = skl_compute_plane_wm(dev_priv,
3548 cstate,
3549 intel_pstate,
3550 ddb_blocks,
3551 level,
3552 &result->plane_res_b[i],
3553 &result->plane_res_l[i],
3554 &result->plane_en[i]);
3555 if (ret)
3556 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003557 }
Matt Roperf4a96752016-05-12 07:06:06 -07003558
3559 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003560}
3561
Damien Lespiau407b50f2014-11-04 17:06:57 +00003562static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07003563skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003564{
Matt Roper024c9042015-09-24 15:53:11 -07003565 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003566 return 0;
3567
Matt Roper024c9042015-09-24 15:53:11 -07003568 if (WARN_ON(skl_pipe_pixel_rate(cstate) == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003569 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003570
Matt Roper024c9042015-09-24 15:53:11 -07003571 return DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal * 1000,
3572 skl_pipe_pixel_rate(cstate));
Damien Lespiau407b50f2014-11-04 17:06:57 +00003573}
3574
Matt Roper024c9042015-09-24 15:53:11 -07003575static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003576 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003577{
Matt Roper024c9042015-09-24 15:53:11 -07003578 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiau9414f562014-11-04 17:06:58 +00003579 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper024c9042015-09-24 15:53:11 -07003580 struct intel_plane *intel_plane;
Damien Lespiau9414f562014-11-04 17:06:58 +00003581
Matt Roper024c9042015-09-24 15:53:11 -07003582 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003583 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003584
3585 /* Until we know more, just disable transition WMs */
Matt Roper024c9042015-09-24 15:53:11 -07003586 for_each_intel_plane_on_crtc(crtc->dev, intel_crtc, intel_plane) {
3587 int i = skl_wm_plane_id(intel_plane);
3588
Damien Lespiau9414f562014-11-04 17:06:58 +00003589 trans_wm->plane_en[i] = false;
Matt Roper024c9042015-09-24 15:53:11 -07003590 }
Damien Lespiau407b50f2014-11-04 17:06:57 +00003591}
3592
Matt Roper55994c22016-05-12 07:06:08 -07003593static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
3594 struct skl_ddb_allocation *ddb,
3595 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003596{
Matt Roper024c9042015-09-24 15:53:11 -07003597 struct drm_device *dev = cstate->base.crtc->dev;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003598 const struct drm_i915_private *dev_priv = dev->dev_private;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003599 int level, max_level = ilk_wm_max_level(dev);
Matt Roper55994c22016-05-12 07:06:08 -07003600 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003601
3602 for (level = 0; level <= max_level; level++) {
Matt Roper55994c22016-05-12 07:06:08 -07003603 ret = skl_compute_wm_level(dev_priv, ddb, cstate,
3604 level, &pipe_wm->wm[level]);
3605 if (ret)
3606 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003607 }
Matt Roper024c9042015-09-24 15:53:11 -07003608 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003609
Matt Roper024c9042015-09-24 15:53:11 -07003610 skl_compute_transition_wm(cstate, &pipe_wm->trans_wm);
Matt Roper55994c22016-05-12 07:06:08 -07003611
3612 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003613}
3614
3615static void skl_compute_wm_results(struct drm_device *dev,
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003616 struct skl_pipe_wm *p_wm,
3617 struct skl_wm_values *r,
3618 struct intel_crtc *intel_crtc)
3619{
3620 int level, max_level = ilk_wm_max_level(dev);
3621 enum pipe pipe = intel_crtc->pipe;
Damien Lespiau9414f562014-11-04 17:06:58 +00003622 uint32_t temp;
3623 int i;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003624
3625 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003626 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3627 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003628
3629 temp |= p_wm->wm[level].plane_res_l[i] <<
3630 PLANE_WM_LINES_SHIFT;
3631 temp |= p_wm->wm[level].plane_res_b[i];
3632 if (p_wm->wm[level].plane_en[i])
3633 temp |= PLANE_WM_EN;
3634
3635 r->plane[pipe][i][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003636 }
3637
3638 temp = 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003639
Matt Roper4969d332015-09-24 15:53:10 -07003640 temp |= p_wm->wm[level].plane_res_l[PLANE_CURSOR] << PLANE_WM_LINES_SHIFT;
3641 temp |= p_wm->wm[level].plane_res_b[PLANE_CURSOR];
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003642
Matt Roper4969d332015-09-24 15:53:10 -07003643 if (p_wm->wm[level].plane_en[PLANE_CURSOR])
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003644 temp |= PLANE_WM_EN;
3645
Matt Roper4969d332015-09-24 15:53:10 -07003646 r->plane[pipe][PLANE_CURSOR][level] = temp;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003647
3648 }
3649
Damien Lespiau9414f562014-11-04 17:06:58 +00003650 /* transition WMs */
3651 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
3652 temp = 0;
3653 temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT;
3654 temp |= p_wm->trans_wm.plane_res_b[i];
3655 if (p_wm->trans_wm.plane_en[i])
3656 temp |= PLANE_WM_EN;
3657
3658 r->plane_trans[pipe][i] = temp;
3659 }
3660
3661 temp = 0;
Matt Roper4969d332015-09-24 15:53:10 -07003662 temp |= p_wm->trans_wm.plane_res_l[PLANE_CURSOR] << PLANE_WM_LINES_SHIFT;
3663 temp |= p_wm->trans_wm.plane_res_b[PLANE_CURSOR];
3664 if (p_wm->trans_wm.plane_en[PLANE_CURSOR])
Damien Lespiau9414f562014-11-04 17:06:58 +00003665 temp |= PLANE_WM_EN;
3666
Matt Roper4969d332015-09-24 15:53:10 -07003667 r->plane_trans[pipe][PLANE_CURSOR] = temp;
Damien Lespiau9414f562014-11-04 17:06:58 +00003668
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003669 r->wm_linetime[pipe] = p_wm->linetime;
3670}
3671
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003672static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
3673 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00003674 const struct skl_ddb_entry *entry)
3675{
3676 if (entry->end)
3677 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3678 else
3679 I915_WRITE(reg, 0);
3680}
3681
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003682static void skl_write_wm_values(struct drm_i915_private *dev_priv,
3683 const struct skl_wm_values *new)
3684{
3685 struct drm_device *dev = dev_priv->dev;
3686 struct intel_crtc *crtc;
3687
Jani Nikula19c80542015-12-16 12:48:16 +02003688 for_each_intel_crtc(dev, crtc) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003689 int i, level, max_level = ilk_wm_max_level(dev);
3690 enum pipe pipe = crtc->pipe;
3691
Matt Roper2b4b9f32016-05-12 07:06:07 -07003692 if ((new->dirty_pipes & drm_crtc_mask(&crtc->base)) == 0)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003693 continue;
Matt Roper734fa012016-05-12 15:11:40 -07003694 if (!crtc->active)
3695 continue;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003696
Damien Lespiau5d374d92014-11-04 17:07:00 +00003697 I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
3698
3699 for (level = 0; level <= max_level; level++) {
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003700 for (i = 0; i < intel_num_planes(crtc); i++)
Damien Lespiau5d374d92014-11-04 17:07:00 +00003701 I915_WRITE(PLANE_WM(pipe, i, level),
3702 new->plane[pipe][i][level]);
3703 I915_WRITE(CUR_WM(pipe, level),
Matt Roper4969d332015-09-24 15:53:10 -07003704 new->plane[pipe][PLANE_CURSOR][level]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003705 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003706 for (i = 0; i < intel_num_planes(crtc); i++)
3707 I915_WRITE(PLANE_WM_TRANS(pipe, i),
3708 new->plane_trans[pipe][i]);
Matt Roper4969d332015-09-24 15:53:10 -07003709 I915_WRITE(CUR_WM_TRANS(pipe),
3710 new->plane_trans[pipe][PLANE_CURSOR]);
Damien Lespiau5d374d92014-11-04 17:07:00 +00003711
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003712 for (i = 0; i < intel_num_planes(crtc); i++) {
Damien Lespiau5d374d92014-11-04 17:07:00 +00003713 skl_ddb_entry_write(dev_priv,
3714 PLANE_BUF_CFG(pipe, i),
3715 &new->ddb.plane[pipe][i]);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003716 skl_ddb_entry_write(dev_priv,
3717 PLANE_NV12_BUF_CFG(pipe, i),
3718 &new->ddb.y_plane[pipe][i]);
3719 }
Damien Lespiau5d374d92014-11-04 17:07:00 +00003720
3721 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
Matt Roper4969d332015-09-24 15:53:10 -07003722 &new->ddb.plane[pipe][PLANE_CURSOR]);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003723 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003724}
3725
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003726/*
3727 * When setting up a new DDB allocation arrangement, we need to correctly
3728 * sequence the times at which the new allocations for the pipes are taken into
3729 * account or we'll have pipes fetching from space previously allocated to
3730 * another pipe.
3731 *
3732 * Roughly the sequence looks like:
3733 * 1. re-allocate the pipe(s) with the allocation being reduced and not
3734 * overlapping with a previous light-up pipe (another way to put it is:
3735 * pipes with their new allocation strickly included into their old ones).
3736 * 2. re-allocate the other pipes that get their allocation reduced
3737 * 3. allocate the pipes having their allocation increased
3738 *
3739 * Steps 1. and 2. are here to take care of the following case:
3740 * - Initially DDB looks like this:
3741 * | B | C |
3742 * - enable pipe A.
3743 * - pipe B has a reduced DDB allocation that overlaps with the old pipe C
3744 * allocation
3745 * | A | B | C |
3746 *
3747 * We need to sequence the re-allocation: C, B, A (and not B, C, A).
3748 */
3749
Damien Lespiaud21b7952014-11-04 17:07:03 +00003750static void
3751skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003752{
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003753 int plane;
3754
Damien Lespiaud21b7952014-11-04 17:07:03 +00003755 DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass);
3756
Damien Lespiaudd740782015-02-28 14:54:08 +00003757 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003758 I915_WRITE(PLANE_SURF(pipe, plane),
3759 I915_READ(PLANE_SURF(pipe, plane)));
3760 }
3761 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3762}
3763
3764static bool
3765skl_ddb_allocation_included(const struct skl_ddb_allocation *old,
3766 const struct skl_ddb_allocation *new,
3767 enum pipe pipe)
3768{
3769 uint16_t old_size, new_size;
3770
3771 old_size = skl_ddb_entry_size(&old->pipe[pipe]);
3772 new_size = skl_ddb_entry_size(&new->pipe[pipe]);
3773
3774 return old_size != new_size &&
3775 new->pipe[pipe].start >= old->pipe[pipe].start &&
3776 new->pipe[pipe].end <= old->pipe[pipe].end;
3777}
3778
3779static void skl_flush_wm_values(struct drm_i915_private *dev_priv,
3780 struct skl_wm_values *new_values)
3781{
3782 struct drm_device *dev = dev_priv->dev;
3783 struct skl_ddb_allocation *cur_ddb, *new_ddb;
Ville Syrjäläc929cb42015-04-02 18:28:07 +03003784 bool reallocated[I915_MAX_PIPES] = {};
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003785 struct intel_crtc *crtc;
3786 enum pipe pipe;
3787
3788 new_ddb = &new_values->ddb;
3789 cur_ddb = &dev_priv->wm.skl_hw.ddb;
3790
3791 /*
3792 * First pass: flush the pipes with the new allocation contained into
3793 * the old space.
3794 *
3795 * We'll wait for the vblank on those pipes to ensure we can safely
3796 * re-allocate the freed space without this pipe fetching from it.
3797 */
3798 for_each_intel_crtc(dev, crtc) {
3799 if (!crtc->active)
3800 continue;
3801
3802 pipe = crtc->pipe;
3803
3804 if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe))
3805 continue;
3806
Damien Lespiaud21b7952014-11-04 17:07:03 +00003807 skl_wm_flush_pipe(dev_priv, pipe, 1);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003808 intel_wait_for_vblank(dev, pipe);
3809
3810 reallocated[pipe] = true;
3811 }
3812
3813
3814 /*
3815 * Second pass: flush the pipes that are having their allocation
3816 * reduced, but overlapping with a previous allocation.
3817 *
3818 * Here as well we need to wait for the vblank to make sure the freed
3819 * space is not used anymore.
3820 */
3821 for_each_intel_crtc(dev, crtc) {
3822 if (!crtc->active)
3823 continue;
3824
3825 pipe = crtc->pipe;
3826
3827 if (reallocated[pipe])
3828 continue;
3829
3830 if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) <
3831 skl_ddb_entry_size(&cur_ddb->pipe[pipe])) {
Damien Lespiaud21b7952014-11-04 17:07:03 +00003832 skl_wm_flush_pipe(dev_priv, pipe, 2);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003833 intel_wait_for_vblank(dev, pipe);
Sonika Jindald9d8e6b2014-12-11 17:58:15 +05303834 reallocated[pipe] = true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003835 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003836 }
3837
3838 /*
3839 * Third pass: flush the pipes that got more space allocated.
3840 *
3841 * We don't need to actively wait for the update here, next vblank
3842 * will just get more DDB space with the correct WM values.
3843 */
3844 for_each_intel_crtc(dev, crtc) {
3845 if (!crtc->active)
3846 continue;
3847
3848 pipe = crtc->pipe;
3849
3850 /*
3851 * At this point, only the pipes more space than before are
3852 * left to re-allocate.
3853 */
3854 if (reallocated[pipe])
3855 continue;
3856
Damien Lespiaud21b7952014-11-04 17:07:03 +00003857 skl_wm_flush_pipe(dev_priv, pipe, 3);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003858 }
3859}
3860
Matt Roper55994c22016-05-12 07:06:08 -07003861static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
3862 struct skl_ddb_allocation *ddb, /* out */
3863 struct skl_pipe_wm *pipe_wm, /* out */
3864 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003865{
Matt Roperf4a96752016-05-12 07:06:06 -07003866 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->crtc);
3867 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07003868 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003869
Matt Roper55994c22016-05-12 07:06:08 -07003870 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
3871 if (ret)
3872 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003873
Matt Roper4e0963c2015-09-24 15:53:15 -07003874 if (!memcmp(&intel_crtc->wm.active.skl, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07003875 *changed = false;
3876 else
3877 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003878
Matt Roper55994c22016-05-12 07:06:08 -07003879 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003880}
3881
Matt Roper9b613022016-06-27 16:42:44 -07003882static uint32_t
3883pipes_modified(struct drm_atomic_state *state)
3884{
3885 struct drm_crtc *crtc;
3886 struct drm_crtc_state *cstate;
3887 uint32_t i, ret = 0;
3888
3889 for_each_crtc_in_state(state, crtc, cstate, i)
3890 ret |= drm_crtc_mask(crtc);
3891
3892 return ret;
3893}
3894
Matt Roper98d39492016-05-12 07:06:03 -07003895static int
3896skl_compute_ddb(struct drm_atomic_state *state)
3897{
3898 struct drm_device *dev = state->dev;
3899 struct drm_i915_private *dev_priv = to_i915(dev);
3900 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3901 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07003902 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07003903 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07003904 int ret;
3905
3906 /*
3907 * If this is our first atomic update following hardware readout,
3908 * we can't trust the DDB that the BIOS programmed for us. Let's
3909 * pretend that all pipes switched active status so that we'll
3910 * ensure a full DDB recompute.
3911 */
3912 if (dev_priv->wm.distrust_bios_wm)
3913 intel_state->active_pipe_changes = ~0;
3914
3915 /*
3916 * If the modeset changes which CRTC's are active, we need to
3917 * recompute the DDB allocation for *all* active pipes, even
3918 * those that weren't otherwise being modified in any way by this
3919 * atomic commit. Due to the shrinking of the per-pipe allocations
3920 * when new active CRTC's are added, it's possible for a pipe that
3921 * we were already using and aren't changing at all here to suddenly
3922 * become invalid if its DDB needs exceeds its new allocation.
3923 *
3924 * Note that if we wind up doing a full DDB recompute, we can't let
3925 * any other display updates race with this transaction, so we need
3926 * to grab the lock on *all* CRTC's.
3927 */
Matt Roper734fa012016-05-12 15:11:40 -07003928 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07003929 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07003930 intel_state->wm_results.dirty_pipes = ~0;
3931 }
Matt Roper98d39492016-05-12 07:06:03 -07003932
3933 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
3934 struct intel_crtc_state *cstate;
3935
3936 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
3937 if (IS_ERR(cstate))
3938 return PTR_ERR(cstate);
3939
Matt Roper734fa012016-05-12 15:11:40 -07003940 ret = skl_allocate_pipe_ddb(cstate, ddb);
Matt Roper98d39492016-05-12 07:06:03 -07003941 if (ret)
3942 return ret;
3943 }
3944
3945 return 0;
3946}
3947
3948static int
3949skl_compute_wm(struct drm_atomic_state *state)
3950{
3951 struct drm_crtc *crtc;
3952 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07003953 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3954 struct skl_wm_values *results = &intel_state->wm_results;
3955 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07003956 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07003957 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07003958
3959 /*
3960 * If this transaction isn't actually touching any CRTC's, don't
3961 * bother with watermark calculation. Note that if we pass this
3962 * test, we're guaranteed to hold at least one CRTC state mutex,
3963 * which means we can safely use values like dev_priv->active_crtcs
3964 * since any racing commits that want to update them would need to
3965 * hold _all_ CRTC state mutexes.
3966 */
3967 for_each_crtc_in_state(state, crtc, cstate, i)
3968 changed = true;
3969 if (!changed)
3970 return 0;
3971
Matt Roper734fa012016-05-12 15:11:40 -07003972 /* Clear all dirty flags */
3973 results->dirty_pipes = 0;
3974
Matt Roper98d39492016-05-12 07:06:03 -07003975 ret = skl_compute_ddb(state);
3976 if (ret)
3977 return ret;
3978
Matt Roper734fa012016-05-12 15:11:40 -07003979 /*
3980 * Calculate WM's for all pipes that are part of this transaction.
3981 * Note that the DDB allocation above may have added more CRTC's that
3982 * weren't otherwise being modified (and set bits in dirty_pipes) if
3983 * pipe allocations had to change.
3984 *
3985 * FIXME: Now that we're doing this in the atomic check phase, we
3986 * should allow skl_update_pipe_wm() to return failure in cases where
3987 * no suitable watermark values can be found.
3988 */
3989 for_each_crtc_in_state(state, crtc, cstate, i) {
3990 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3991 struct intel_crtc_state *intel_cstate =
3992 to_intel_crtc_state(cstate);
3993
3994 pipe_wm = &intel_cstate->wm.skl.optimal;
3995 ret = skl_update_pipe_wm(cstate, &results->ddb, pipe_wm,
3996 &changed);
3997 if (ret)
3998 return ret;
3999
4000 if (changed)
4001 results->dirty_pipes |= drm_crtc_mask(crtc);
4002
4003 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
4004 /* This pipe's WM's did not change */
4005 continue;
4006
4007 intel_cstate->update_wm_pre = true;
4008 skl_compute_wm_results(crtc->dev, pipe_wm, results, intel_crtc);
4009 }
4010
Matt Roper98d39492016-05-12 07:06:03 -07004011 return 0;
4012}
4013
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004014static void skl_update_wm(struct drm_crtc *crtc)
4015{
4016 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4017 struct drm_device *dev = crtc->dev;
4018 struct drm_i915_private *dev_priv = dev->dev_private;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004019 struct skl_wm_values *results = &dev_priv->wm.skl_results;
Matt Roper4e0963c2015-09-24 15:53:15 -07004020 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004021 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Bob Paauweadda50b2015-07-21 10:42:53 -07004022
Matt Roper734fa012016-05-12 15:11:40 -07004023 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004024 return;
4025
Matt Roper734fa012016-05-12 15:11:40 -07004026 intel_crtc->wm.active.skl = *pipe_wm;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004027
Matt Roper734fa012016-05-12 15:11:40 -07004028 mutex_lock(&dev_priv->wm.wm_mutex);
4029
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004030 skl_write_wm_values(dev_priv, results);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004031 skl_flush_wm_values(dev_priv, results);
Damien Lespiau53b0deb2014-11-04 17:06:48 +00004032
4033 /* store the new configuration */
4034 dev_priv->wm.skl_hw = *results;
Matt Roper734fa012016-05-12 15:11:40 -07004035
4036 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004037}
4038
Ville Syrjäläd8905652016-01-14 14:53:35 +02004039static void ilk_compute_wm_config(struct drm_device *dev,
4040 struct intel_wm_config *config)
4041{
4042 struct intel_crtc *crtc;
4043
4044 /* Compute the currently _active_ config */
4045 for_each_intel_crtc(dev, crtc) {
4046 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
4047
4048 if (!wm->pipe_enabled)
4049 continue;
4050
4051 config->sprites_enabled |= wm->sprites_enabled;
4052 config->sprites_scaled |= wm->sprites_scaled;
4053 config->num_pipes_active++;
4054 }
4055}
4056
Matt Ropered4a6a72016-02-23 17:20:13 -08004057static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03004058{
Matt Ropered4a6a72016-02-23 17:20:13 -08004059 struct drm_device *dev = dev_priv->dev;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004060 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02004061 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02004062 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02004063 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004064 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07004065
Ville Syrjäläd8905652016-01-14 14:53:35 +02004066 ilk_compute_wm_config(dev, &config);
4067
4068 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
4069 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03004070
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004071 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03004072 if (INTEL_INFO(dev)->gen >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02004073 config.num_pipes_active == 1 && config.sprites_enabled) {
4074 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
4075 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004076
Imre Deak820c1982013-12-17 14:46:36 +02004077 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03004078 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004079 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004080 }
4081
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004082 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004083 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004084
Imre Deak820c1982013-12-17 14:46:36 +02004085 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03004086
Imre Deak820c1982013-12-17 14:46:36 +02004087 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03004088}
4089
Matt Ropered4a6a72016-02-23 17:20:13 -08004090static void ilk_initial_watermarks(struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004091{
Matt Ropered4a6a72016-02-23 17:20:13 -08004092 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4093 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004094
Matt Ropered4a6a72016-02-23 17:20:13 -08004095 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07004096 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08004097 ilk_program_watermarks(dev_priv);
4098 mutex_unlock(&dev_priv->wm.wm_mutex);
4099}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004100
Matt Ropered4a6a72016-02-23 17:20:13 -08004101static void ilk_optimize_watermarks(struct intel_crtc_state *cstate)
4102{
4103 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4104 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4105
4106 mutex_lock(&dev_priv->wm.wm_mutex);
4107 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07004108 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08004109 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004110 }
Matt Ropered4a6a72016-02-23 17:20:13 -08004111 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004112}
4113
Pradeep Bhat30789992014-11-04 17:06:45 +00004114static void skl_pipe_wm_active_state(uint32_t val,
4115 struct skl_pipe_wm *active,
4116 bool is_transwm,
4117 bool is_cursor,
4118 int i,
4119 int level)
4120{
4121 bool is_enabled = (val & PLANE_WM_EN) != 0;
4122
4123 if (!is_transwm) {
4124 if (!is_cursor) {
4125 active->wm[level].plane_en[i] = is_enabled;
4126 active->wm[level].plane_res_b[i] =
4127 val & PLANE_WM_BLOCKS_MASK;
4128 active->wm[level].plane_res_l[i] =
4129 (val >> PLANE_WM_LINES_SHIFT) &
4130 PLANE_WM_LINES_MASK;
4131 } else {
Matt Roper4969d332015-09-24 15:53:10 -07004132 active->wm[level].plane_en[PLANE_CURSOR] = is_enabled;
4133 active->wm[level].plane_res_b[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00004134 val & PLANE_WM_BLOCKS_MASK;
Matt Roper4969d332015-09-24 15:53:10 -07004135 active->wm[level].plane_res_l[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00004136 (val >> PLANE_WM_LINES_SHIFT) &
4137 PLANE_WM_LINES_MASK;
4138 }
4139 } else {
4140 if (!is_cursor) {
4141 active->trans_wm.plane_en[i] = is_enabled;
4142 active->trans_wm.plane_res_b[i] =
4143 val & PLANE_WM_BLOCKS_MASK;
4144 active->trans_wm.plane_res_l[i] =
4145 (val >> PLANE_WM_LINES_SHIFT) &
4146 PLANE_WM_LINES_MASK;
4147 } else {
Matt Roper4969d332015-09-24 15:53:10 -07004148 active->trans_wm.plane_en[PLANE_CURSOR] = is_enabled;
4149 active->trans_wm.plane_res_b[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00004150 val & PLANE_WM_BLOCKS_MASK;
Matt Roper4969d332015-09-24 15:53:10 -07004151 active->trans_wm.plane_res_l[PLANE_CURSOR] =
Pradeep Bhat30789992014-11-04 17:06:45 +00004152 (val >> PLANE_WM_LINES_SHIFT) &
4153 PLANE_WM_LINES_MASK;
4154 }
4155 }
4156}
4157
4158static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4159{
4160 struct drm_device *dev = crtc->dev;
4161 struct drm_i915_private *dev_priv = dev->dev_private;
4162 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
4163 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07004164 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004165 struct skl_pipe_wm *active = &cstate->wm.skl.optimal;
Pradeep Bhat30789992014-11-04 17:06:45 +00004166 enum pipe pipe = intel_crtc->pipe;
4167 int level, i, max_level;
4168 uint32_t temp;
4169
4170 max_level = ilk_wm_max_level(dev);
4171
4172 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
4173
4174 for (level = 0; level <= max_level; level++) {
4175 for (i = 0; i < intel_num_planes(intel_crtc); i++)
4176 hw->plane[pipe][i][level] =
4177 I915_READ(PLANE_WM(pipe, i, level));
Matt Roper4969d332015-09-24 15:53:10 -07004178 hw->plane[pipe][PLANE_CURSOR][level] = I915_READ(CUR_WM(pipe, level));
Pradeep Bhat30789992014-11-04 17:06:45 +00004179 }
4180
4181 for (i = 0; i < intel_num_planes(intel_crtc); i++)
4182 hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i));
Matt Roper4969d332015-09-24 15:53:10 -07004183 hw->plane_trans[pipe][PLANE_CURSOR] = I915_READ(CUR_WM_TRANS(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00004184
Matt Roper3ef00282015-03-09 10:19:24 -07004185 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00004186 return;
4187
Matt Roper2b4b9f32016-05-12 07:06:07 -07004188 hw->dirty_pipes |= drm_crtc_mask(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00004189
4190 active->linetime = hw->wm_linetime[pipe];
4191
4192 for (level = 0; level <= max_level; level++) {
4193 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
4194 temp = hw->plane[pipe][i][level];
4195 skl_pipe_wm_active_state(temp, active, false,
4196 false, i, level);
4197 }
Matt Roper4969d332015-09-24 15:53:10 -07004198 temp = hw->plane[pipe][PLANE_CURSOR][level];
Pradeep Bhat30789992014-11-04 17:06:45 +00004199 skl_pipe_wm_active_state(temp, active, false, true, i, level);
4200 }
4201
4202 for (i = 0; i < intel_num_planes(intel_crtc); i++) {
4203 temp = hw->plane_trans[pipe][i];
4204 skl_pipe_wm_active_state(temp, active, true, false, i, 0);
4205 }
4206
Matt Roper4969d332015-09-24 15:53:10 -07004207 temp = hw->plane_trans[pipe][PLANE_CURSOR];
Pradeep Bhat30789992014-11-04 17:06:45 +00004208 skl_pipe_wm_active_state(temp, active, true, true, i, 0);
Matt Roper4e0963c2015-09-24 15:53:15 -07004209
4210 intel_crtc->wm.active.skl = *active;
Pradeep Bhat30789992014-11-04 17:06:45 +00004211}
4212
4213void skl_wm_get_hw_state(struct drm_device *dev)
4214{
Damien Lespiaua269c582014-11-04 17:06:49 +00004215 struct drm_i915_private *dev_priv = dev->dev_private;
4216 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00004217 struct drm_crtc *crtc;
4218
Damien Lespiaua269c582014-11-04 17:06:49 +00004219 skl_ddb_get_hw_state(dev_priv, ddb);
Pradeep Bhat30789992014-11-04 17:06:45 +00004220 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
4221 skl_pipe_wm_get_hw_state(crtc);
Matt Ropera1de91e2016-05-12 07:05:57 -07004222
Matt Roper279e99d2016-05-12 07:06:02 -07004223 if (dev_priv->active_crtcs) {
4224 /* Fully recompute DDB on first atomic commit */
4225 dev_priv->wm.distrust_bios_wm = true;
4226 } else {
4227 /* Easy/common case; just sanitize DDB now if everything off */
4228 memset(ddb, 0, sizeof(*ddb));
4229 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004230}
4231
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004232static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4233{
4234 struct drm_device *dev = crtc->dev;
4235 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02004236 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004237 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07004238 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004239 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004240 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004241 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004242 [PIPE_A] = WM0_PIPEA_ILK,
4243 [PIPE_B] = WM0_PIPEB_ILK,
4244 [PIPE_C] = WM0_PIPEC_IVB,
4245 };
4246
4247 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjäläa42a5712014-01-07 16:14:08 +02004248 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02004249 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004250
Ville Syrjälä15606532016-05-13 17:55:17 +03004251 memset(active, 0, sizeof(*active));
4252
Matt Roper3ef00282015-03-09 10:19:24 -07004253 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02004254
4255 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004256 u32 tmp = hw->wm_pipe[pipe];
4257
4258 /*
4259 * For active pipes LP0 watermark is marked as
4260 * enabled, and LP1+ watermaks as disabled since
4261 * we can't really reverse compute them in case
4262 * multiple pipes are active.
4263 */
4264 active->wm[0].enable = true;
4265 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
4266 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
4267 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
4268 active->linetime = hw->wm_linetime[pipe];
4269 } else {
4270 int level, max_level = ilk_wm_max_level(dev);
4271
4272 /*
4273 * For inactive pipes, all watermark levels
4274 * should be marked as enabled but zeroed,
4275 * which is what we'd compute them to.
4276 */
4277 for (level = 0; level <= max_level; level++)
4278 active->wm[level].enable = true;
4279 }
Matt Roper4e0963c2015-09-24 15:53:15 -07004280
4281 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004282}
4283
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004284#define _FW_WM(value, plane) \
4285 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
4286#define _FW_WM_VLV(value, plane) \
4287 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
4288
4289static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4290 struct vlv_wm_values *wm)
4291{
4292 enum pipe pipe;
4293 uint32_t tmp;
4294
4295 for_each_pipe(dev_priv, pipe) {
4296 tmp = I915_READ(VLV_DDL(pipe));
4297
4298 wm->ddl[pipe].primary =
4299 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4300 wm->ddl[pipe].cursor =
4301 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4302 wm->ddl[pipe].sprite[0] =
4303 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4304 wm->ddl[pipe].sprite[1] =
4305 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4306 }
4307
4308 tmp = I915_READ(DSPFW1);
4309 wm->sr.plane = _FW_WM(tmp, SR);
4310 wm->pipe[PIPE_B].cursor = _FW_WM(tmp, CURSORB);
4311 wm->pipe[PIPE_B].primary = _FW_WM_VLV(tmp, PLANEB);
4312 wm->pipe[PIPE_A].primary = _FW_WM_VLV(tmp, PLANEA);
4313
4314 tmp = I915_READ(DSPFW2);
4315 wm->pipe[PIPE_A].sprite[1] = _FW_WM_VLV(tmp, SPRITEB);
4316 wm->pipe[PIPE_A].cursor = _FW_WM(tmp, CURSORA);
4317 wm->pipe[PIPE_A].sprite[0] = _FW_WM_VLV(tmp, SPRITEA);
4318
4319 tmp = I915_READ(DSPFW3);
4320 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4321
4322 if (IS_CHERRYVIEW(dev_priv)) {
4323 tmp = I915_READ(DSPFW7_CHV);
4324 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
4325 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
4326
4327 tmp = I915_READ(DSPFW8_CHV);
4328 wm->pipe[PIPE_C].sprite[1] = _FW_WM_VLV(tmp, SPRITEF);
4329 wm->pipe[PIPE_C].sprite[0] = _FW_WM_VLV(tmp, SPRITEE);
4330
4331 tmp = I915_READ(DSPFW9_CHV);
4332 wm->pipe[PIPE_C].primary = _FW_WM_VLV(tmp, PLANEC);
4333 wm->pipe[PIPE_C].cursor = _FW_WM(tmp, CURSORC);
4334
4335 tmp = I915_READ(DSPHOWM);
4336 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
4337 wm->pipe[PIPE_C].sprite[1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4338 wm->pipe[PIPE_C].sprite[0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4339 wm->pipe[PIPE_C].primary |= _FW_WM(tmp, PLANEC_HI) << 8;
4340 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4341 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4342 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4343 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4344 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4345 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4346 } else {
4347 tmp = I915_READ(DSPFW7);
4348 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
4349 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
4350
4351 tmp = I915_READ(DSPHOWM);
4352 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
4353 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4354 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4355 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4356 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4357 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4358 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4359 }
4360}
4361
4362#undef _FW_WM
4363#undef _FW_WM_VLV
4364
4365void vlv_wm_get_hw_state(struct drm_device *dev)
4366{
4367 struct drm_i915_private *dev_priv = to_i915(dev);
4368 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4369 struct intel_plane *plane;
4370 enum pipe pipe;
4371 u32 val;
4372
4373 vlv_read_wm_values(dev_priv, wm);
4374
4375 for_each_intel_plane(dev, plane) {
4376 switch (plane->base.type) {
4377 int sprite;
4378 case DRM_PLANE_TYPE_CURSOR:
4379 plane->wm.fifo_size = 63;
4380 break;
4381 case DRM_PLANE_TYPE_PRIMARY:
4382 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, 0);
4383 break;
4384 case DRM_PLANE_TYPE_OVERLAY:
4385 sprite = plane->plane;
4386 plane->wm.fifo_size = vlv_get_fifo_size(dev, plane->pipe, sprite + 1);
4387 break;
4388 }
4389 }
4390
4391 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4392 wm->level = VLV_WM_LEVEL_PM2;
4393
4394 if (IS_CHERRYVIEW(dev_priv)) {
4395 mutex_lock(&dev_priv->rps.hw_lock);
4396
4397 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4398 if (val & DSP_MAXFIFO_PM5_ENABLE)
4399 wm->level = VLV_WM_LEVEL_PM5;
4400
Ville Syrjälä58590c12015-09-08 21:05:12 +03004401 /*
4402 * If DDR DVFS is disabled in the BIOS, Punit
4403 * will never ack the request. So if that happens
4404 * assume we don't have to enable/disable DDR DVFS
4405 * dynamically. To test that just set the REQ_ACK
4406 * bit to poke the Punit, but don't change the
4407 * HIGH/LOW bits so that we don't actually change
4408 * the current state.
4409 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004410 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004411 val |= FORCE_DDR_FREQ_REQ_ACK;
4412 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4413
4414 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4415 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4416 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4417 "assuming DDR DVFS is disabled\n");
4418 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4419 } else {
4420 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4421 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4422 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4423 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004424
4425 mutex_unlock(&dev_priv->rps.hw_lock);
4426 }
4427
4428 for_each_pipe(dev_priv, pipe)
4429 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
4430 pipe_name(pipe), wm->pipe[pipe].primary, wm->pipe[pipe].cursor,
4431 wm->pipe[pipe].sprite[0], wm->pipe[pipe].sprite[1]);
4432
4433 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4434 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4435}
4436
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004437void ilk_wm_get_hw_state(struct drm_device *dev)
4438{
4439 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak820c1982013-12-17 14:46:36 +02004440 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004441 struct drm_crtc *crtc;
4442
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004443 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004444 ilk_pipe_wm_get_hw_state(crtc);
4445
4446 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4447 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4448 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4449
4450 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004451 if (INTEL_INFO(dev)->gen >= 7) {
4452 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4453 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4454 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004455
Ville Syrjäläa42a5712014-01-07 16:14:08 +02004456 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004457 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4458 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
4459 else if (IS_IVYBRIDGE(dev))
4460 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4461 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004462
4463 hw->enable_fbc_wm =
4464 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4465}
4466
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004467/**
4468 * intel_update_watermarks - update FIFO watermark values based on current modes
4469 *
4470 * Calculate watermark values for the various WM regs based on current mode
4471 * and plane configuration.
4472 *
4473 * There are several cases to deal with here:
4474 * - normal (i.e. non-self-refresh)
4475 * - self-refresh (SR) mode
4476 * - lines are large relative to FIFO size (buffer can hold up to 2)
4477 * - lines are small relative to FIFO size (buffer can hold more than 2
4478 * lines), so need to account for TLB latency
4479 *
4480 * The normal calculation is:
4481 * watermark = dotclock * bytes per pixel * latency
4482 * where latency is platform & configuration dependent (we assume pessimal
4483 * values here).
4484 *
4485 * The SR calculation is:
4486 * watermark = (trunc(latency/line time)+1) * surface width *
4487 * bytes per pixel
4488 * where
4489 * line time = htotal / dotclock
4490 * surface width = hdisplay for normal plane and 64 for cursor
4491 * and latency is assumed to be high, as above.
4492 *
4493 * The final value programmed to the register should always be rounded up,
4494 * and include an extra 2 entries to account for clock crossings.
4495 *
4496 * We don't use the sprite, so we can ignore that. And on Crestline we have
4497 * to set the non-SR watermarks to 8.
4498 */
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004499void intel_update_watermarks(struct drm_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004500{
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004501 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004502
4503 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004504 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004505}
4506
Jani Nikulae2828912016-01-18 09:19:47 +02004507/*
Daniel Vetter92703882012-08-09 16:46:01 +02004508 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004509 */
4510DEFINE_SPINLOCK(mchdev_lock);
4511
4512/* Global for IPS driver to get at the current i915 device. Protected by
4513 * mchdev_lock. */
4514static struct drm_i915_private *i915_mch_dev;
4515
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004516bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004517{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004518 u16 rgvswctl;
4519
Daniel Vetter92703882012-08-09 16:46:01 +02004520 assert_spin_locked(&mchdev_lock);
4521
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004522 rgvswctl = I915_READ16(MEMSWCTL);
4523 if (rgvswctl & MEMCTL_CMD_STS) {
4524 DRM_DEBUG("gpu busy, RCS change rejected\n");
4525 return false; /* still busy with another command */
4526 }
4527
4528 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4529 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4530 I915_WRITE16(MEMSWCTL, rgvswctl);
4531 POSTING_READ16(MEMSWCTL);
4532
4533 rgvswctl |= MEMCTL_CMD_STS;
4534 I915_WRITE16(MEMSWCTL, rgvswctl);
4535
4536 return true;
4537}
4538
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004539static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004540{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004541 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004542 u8 fmax, fmin, fstart, vstart;
4543
Daniel Vetter92703882012-08-09 16:46:01 +02004544 spin_lock_irq(&mchdev_lock);
4545
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004546 rgvmodectl = I915_READ(MEMMODECTL);
4547
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004548 /* Enable temp reporting */
4549 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4550 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4551
4552 /* 100ms RC evaluation intervals */
4553 I915_WRITE(RCUPEI, 100000);
4554 I915_WRITE(RCDNEI, 100000);
4555
4556 /* Set max/min thresholds to 90ms and 80ms respectively */
4557 I915_WRITE(RCBMAXAVG, 90000);
4558 I915_WRITE(RCBMINAVG, 80000);
4559
4560 I915_WRITE(MEMIHYST, 1);
4561
4562 /* Set up min, max, and cur for interrupt handling */
4563 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4564 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4565 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4566 MEMMODE_FSTART_SHIFT;
4567
Ville Syrjälä616847e2015-09-18 20:03:19 +03004568 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004569 PXVFREQ_PX_SHIFT;
4570
Daniel Vetter20e4d402012-08-08 23:35:39 +02004571 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4572 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004573
Daniel Vetter20e4d402012-08-08 23:35:39 +02004574 dev_priv->ips.max_delay = fstart;
4575 dev_priv->ips.min_delay = fmin;
4576 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004577
4578 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4579 fmax, fmin, fstart);
4580
4581 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4582
4583 /*
4584 * Interrupts will be enabled in ironlake_irq_postinstall
4585 */
4586
4587 I915_WRITE(VIDSTART, vstart);
4588 POSTING_READ(VIDSTART);
4589
4590 rgvmodectl |= MEMMODE_SWMODE_EN;
4591 I915_WRITE(MEMMODECTL, rgvmodectl);
4592
Daniel Vetter92703882012-08-09 16:46:01 +02004593 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004594 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004595 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004596
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004597 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004598
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004599 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4600 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004601 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004602 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004603 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004604
4605 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004606}
4607
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004608static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004609{
Daniel Vetter92703882012-08-09 16:46:01 +02004610 u16 rgvswctl;
4611
4612 spin_lock_irq(&mchdev_lock);
4613
4614 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004615
4616 /* Ack interrupts, disable EFC interrupt */
4617 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4618 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4619 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4620 I915_WRITE(DEIIR, DE_PCU_EVENT);
4621 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4622
4623 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004624 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004625 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004626 rgvswctl |= MEMCTL_CMD_STS;
4627 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004628 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004629
Daniel Vetter92703882012-08-09 16:46:01 +02004630 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004631}
4632
Daniel Vetteracbe9472012-07-26 11:50:05 +02004633/* There's a funny hw issue where the hw returns all 0 when reading from
4634 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4635 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4636 * all limits and the gpu stuck at whatever frequency it is at atm).
4637 */
Akash Goel74ef1172015-03-06 11:07:19 +05304638static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004639{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004640 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004641
Daniel Vetter20b46e52012-07-26 11:16:14 +02004642 /* Only set the down limit when we've reached the lowest level to avoid
4643 * getting more interrupts, otherwise leave this clear. This prevents a
4644 * race in the hw when coming out of rc6: There's a tiny window where
4645 * the hw runs at the minimal clock before selecting the desired
4646 * frequency, if the down threshold expires in that window we will not
4647 * receive a down interrupt. */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03004648 if (IS_GEN9(dev_priv)) {
Akash Goel74ef1172015-03-06 11:07:19 +05304649 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4650 if (val <= dev_priv->rps.min_freq_softlimit)
4651 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4652 } else {
4653 limits = dev_priv->rps.max_freq_softlimit << 24;
4654 if (val <= dev_priv->rps.min_freq_softlimit)
4655 limits |= dev_priv->rps.min_freq_softlimit << 16;
4656 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004657
4658 return limits;
4659}
4660
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004661static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4662{
4663 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304664 u32 threshold_up = 0, threshold_down = 0; /* in % */
4665 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004666
4667 new_power = dev_priv->rps.power;
4668 switch (dev_priv->rps.power) {
4669 case LOW_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004670 if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004671 new_power = BETWEEN;
4672 break;
4673
4674 case BETWEEN:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004675 if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004676 new_power = LOW_POWER;
Ben Widawskyb39fb292014-03-19 18:31:11 -07004677 else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004678 new_power = HIGH_POWER;
4679 break;
4680
4681 case HIGH_POWER:
Ben Widawskyb39fb292014-03-19 18:31:11 -07004682 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 +01004683 new_power = BETWEEN;
4684 break;
4685 }
4686 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004687 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004688 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004689 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004690 new_power = HIGH_POWER;
4691 if (new_power == dev_priv->rps.power)
4692 return;
4693
4694 /* Note the units here are not exactly 1us, but 1280ns. */
4695 switch (new_power) {
4696 case LOW_POWER:
4697 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304698 ei_up = 16000;
4699 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004700
4701 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304702 ei_down = 32000;
4703 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004704 break;
4705
4706 case BETWEEN:
4707 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304708 ei_up = 13000;
4709 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004710
4711 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304712 ei_down = 32000;
4713 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004714 break;
4715
4716 case HIGH_POWER:
4717 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304718 ei_up = 10000;
4719 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004720
4721 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304722 ei_down = 32000;
4723 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004724 break;
4725 }
4726
Akash Goel8a586432015-03-06 11:07:18 +05304727 I915_WRITE(GEN6_RP_UP_EI,
4728 GT_INTERVAL_FROM_US(dev_priv, ei_up));
4729 I915_WRITE(GEN6_RP_UP_THRESHOLD,
4730 GT_INTERVAL_FROM_US(dev_priv, (ei_up * threshold_up / 100)));
4731
4732 I915_WRITE(GEN6_RP_DOWN_EI,
4733 GT_INTERVAL_FROM_US(dev_priv, ei_down));
4734 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
4735 GT_INTERVAL_FROM_US(dev_priv, (ei_down * threshold_down / 100)));
4736
4737 I915_WRITE(GEN6_RP_CONTROL,
4738 GEN6_RP_MEDIA_TURBO |
4739 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4740 GEN6_RP_MEDIA_IS_GFX |
4741 GEN6_RP_ENABLE |
4742 GEN6_RP_UP_BUSY_AVG |
4743 GEN6_RP_DOWN_IDLE_AVG);
4744
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004745 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004746 dev_priv->rps.up_threshold = threshold_up;
4747 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004748 dev_priv->rps.last_adj = 0;
4749}
4750
Chris Wilson2876ce72014-03-28 08:03:34 +00004751static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4752{
4753 u32 mask = 0;
4754
4755 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004756 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004757 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004758 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004759
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004760 mask &= dev_priv->pm_rps_events;
4761
Imre Deak59d02a12014-12-19 19:33:26 +02004762 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004763}
4764
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004765/* gen6_set_rps is called to update the frequency request, but should also be
4766 * called when the range (min_delay and max_delay) is modified so that we can
4767 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilsondc979972016-05-10 14:10:04 +01004768static void gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004769{
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304770 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
Chris Wilsondc979972016-05-10 14:10:04 +01004771 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1))
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304772 return;
4773
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004774 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004775 WARN_ON(val > dev_priv->rps.max_freq);
4776 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004777
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004778 /* min/max delay may still have been modified so be sure to
4779 * write the limits value.
4780 */
4781 if (val != dev_priv->rps.cur_freq) {
4782 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004783
Chris Wilsondc979972016-05-10 14:10:04 +01004784 if (IS_GEN9(dev_priv))
Akash Goel57041952015-03-06 11:07:17 +05304785 I915_WRITE(GEN6_RPNSWREQ,
4786 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01004787 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004788 I915_WRITE(GEN6_RPNSWREQ,
4789 HSW_FREQUENCY(val));
4790 else
4791 I915_WRITE(GEN6_RPNSWREQ,
4792 GEN6_FREQUENCY(val) |
4793 GEN6_OFFSET(0) |
4794 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004795 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004796
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004797 /* Make sure we continue to get interrupts
4798 * until we hit the minimum or maximum frequencies.
4799 */
Akash Goel74ef1172015-03-06 11:07:19 +05304800 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004801 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004802
Ben Widawskyd5570a72012-09-07 19:43:41 -07004803 POSTING_READ(GEN6_RPNSWREQ);
4804
Ben Widawskyb39fb292014-03-19 18:31:11 -07004805 dev_priv->rps.cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02004806 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004807}
4808
Chris Wilsondc979972016-05-10 14:10:04 +01004809static void valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004810{
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004811 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004812 WARN_ON(val > dev_priv->rps.max_freq);
4813 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004814
Chris Wilsondc979972016-05-10 14:10:04 +01004815 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004816 "Odd GPU freq value\n"))
4817 val &= ~1;
4818
Deepak Scd25dd52015-07-10 18:31:40 +05304819 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4820
Chris Wilson8fb55192015-04-07 16:20:28 +01004821 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004822 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004823 if (!IS_CHERRYVIEW(dev_priv))
4824 gen6_set_rps_thresholds(dev_priv, val);
4825 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004826
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004827 dev_priv->rps.cur_freq = val;
4828 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
4829}
4830
Deepak Sa7f6e232015-05-09 18:04:44 +05304831/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304832 *
4833 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304834 * 1. Forcewake Media well.
4835 * 2. Request idle freq.
4836 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304837*/
4838static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4839{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004840 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05304841
Chris Wilsonaed242f2015-03-18 09:48:21 +00004842 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304843 return;
4844
Deepak Sa7f6e232015-05-09 18:04:44 +05304845 /* Wake up the media well, as that takes a lot less
4846 * power than the Render well. */
4847 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilsondc979972016-05-10 14:10:04 +01004848 valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05304849 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05304850}
4851
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004852void gen6_rps_busy(struct drm_i915_private *dev_priv)
4853{
4854 mutex_lock(&dev_priv->rps.hw_lock);
4855 if (dev_priv->rps.enabled) {
4856 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
4857 gen6_rps_reset_ei(dev_priv);
4858 I915_WRITE(GEN6_PMINTRMSK,
4859 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02004860
4861 /* Ensure we start at the user's desired frequency */
4862 intel_set_rps(dev_priv,
4863 clamp(dev_priv->rps.cur_freq,
4864 dev_priv->rps.min_freq_softlimit,
4865 dev_priv->rps.max_freq_softlimit));
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004866 }
4867 mutex_unlock(&dev_priv->rps.hw_lock);
4868}
4869
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004870void gen6_rps_idle(struct drm_i915_private *dev_priv)
4871{
4872 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004873 if (dev_priv->rps.enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01004874 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05304875 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02004876 else
Chris Wilsondc979972016-05-10 14:10:04 +01004877 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004878 dev_priv->rps.last_adj = 0;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004879 I915_WRITE(GEN6_PMINTRMSK, 0xffffffff);
Chris Wilsonc0951f02013-10-10 21:58:50 +01004880 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004881 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004882
Chris Wilson8d3afd72015-05-21 21:01:47 +01004883 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004884 while (!list_empty(&dev_priv->rps.clients))
4885 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004886 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004887}
4888
Chris Wilson1854d5c2015-04-07 16:20:32 +01004889void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01004890 struct intel_rps_client *rps,
4891 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004892{
Chris Wilson8d3afd72015-05-21 21:01:47 +01004893 /* This is intentionally racy! We peek at the state here, then
4894 * validate inside the RPS worker.
4895 */
4896 if (!(dev_priv->mm.busy &&
4897 dev_priv->rps.enabled &&
4898 dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit))
4899 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00004900
Chris Wilsone61b9952015-04-27 13:41:24 +01004901 /* Force a RPS boost (and don't count it against the client) if
4902 * the GPU is severely congested.
4903 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004904 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01004905 rps = NULL;
4906
Chris Wilson8d3afd72015-05-21 21:01:47 +01004907 spin_lock(&dev_priv->rps.client_lock);
4908 if (rps == NULL || list_empty(&rps->link)) {
4909 spin_lock_irq(&dev_priv->irq_lock);
4910 if (dev_priv->rps.interrupts_enabled) {
4911 dev_priv->rps.client_boost = true;
4912 queue_work(dev_priv->wq, &dev_priv->rps.work);
4913 }
4914 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004915
Chris Wilson2e1b8732015-04-27 13:41:22 +01004916 if (rps != NULL) {
4917 list_add(&rps->link, &dev_priv->rps.clients);
4918 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01004919 } else
4920 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01004921 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01004922 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004923}
4924
Chris Wilsondc979972016-05-10 14:10:04 +01004925void intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07004926{
Chris Wilsondc979972016-05-10 14:10:04 +01004927 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
4928 valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004929 else
Chris Wilsondc979972016-05-10 14:10:04 +01004930 gen6_set_rps(dev_priv, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07004931}
4932
Chris Wilsondc979972016-05-10 14:10:04 +01004933static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00004934{
Zhe Wang20e49362014-11-04 17:07:05 +00004935 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00004936 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00004937}
4938
Chris Wilsondc979972016-05-10 14:10:04 +01004939static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05304940{
Akash Goel2030d682016-04-23 00:05:45 +05304941 I915_WRITE(GEN6_RP_CONTROL, 0);
4942}
4943
Chris Wilsondc979972016-05-10 14:10:04 +01004944static void gen6_disable_rps(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004945{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004946 I915_WRITE(GEN6_RC_CONTROL, 0);
4947 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05304948 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02004949}
4950
Chris Wilsondc979972016-05-10 14:10:04 +01004951static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05304952{
Deepak S38807742014-05-23 21:00:15 +05304953 I915_WRITE(GEN6_RC_CONTROL, 0);
4954}
4955
Chris Wilsondc979972016-05-10 14:10:04 +01004956static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004957{
Deepak S98a2e5f2014-08-18 10:35:27 -07004958 /* we're doing forcewake before Disabling RC6,
4959 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02004960 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07004961
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004962 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004963
Mika Kuoppala59bad942015-01-16 11:34:40 +02004964 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07004965}
4966
Chris Wilsondc979972016-05-10 14:10:04 +01004967static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07004968{
Chris Wilsondc979972016-05-10 14:10:04 +01004969 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03004970 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
4971 mode = GEN6_RC_CTL_RC6_ENABLE;
4972 else
4973 mode = 0;
4974 }
Chris Wilsondc979972016-05-10 14:10:04 +01004975 if (HAS_RC6p(dev_priv))
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004976 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02004977 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
4978 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
4979 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07004980
4981 else
4982 DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n",
Jani Nikula87ad3212016-01-14 12:53:34 +02004983 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07004984}
4985
Chris Wilsondc979972016-05-10 14:10:04 +01004986static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05304987{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03004988 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05304989 bool enable_rc6 = true;
4990 unsigned long rc6_ctx_base;
4991
4992 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
4993 DRM_DEBUG_KMS("RC6 Base location not set properly.\n");
4994 enable_rc6 = false;
4995 }
4996
4997 /*
4998 * The exact context size is not known for BXT, so assume a page size
4999 * for this check.
5000 */
5001 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005002 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
5003 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
5004 ggtt->stolen_reserved_size))) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305005 DRM_DEBUG_KMS("RC6 Base address not as expected.\n");
5006 enable_rc6 = false;
5007 }
5008
5009 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
5010 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
5011 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
5012 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
5013 DRM_DEBUG_KMS("Engine Idle wait time not set properly.\n");
5014 enable_rc6 = false;
5015 }
5016
5017 if (!(I915_READ(GEN6_RC_CONTROL) & (GEN6_RC_CTL_RC6_ENABLE |
5018 GEN6_RC_CTL_HW_ENABLE)) &&
5019 ((I915_READ(GEN6_RC_CONTROL) & GEN6_RC_CTL_HW_ENABLE) ||
5020 !(I915_READ(GEN6_RC_STATE) & RC6_STATE))) {
5021 DRM_DEBUG_KMS("HW/SW RC6 is not enabled by BIOS.\n");
5022 enable_rc6 = false;
5023 }
5024
5025 return enable_rc6;
5026}
5027
Chris Wilsondc979972016-05-10 14:10:04 +01005028int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005029{
Daniel Vettere7d66d82015-06-15 23:23:54 +02005030 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01005031 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03005032 return 0;
5033
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305034 if (!enable_rc6)
5035 return 0;
5036
Chris Wilsondc979972016-05-10 14:10:04 +01005037 if (IS_BROXTON(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305038 DRM_INFO("RC6 disabled by BIOS\n");
5039 return 0;
5040 }
5041
Daniel Vetter456470e2012-08-08 23:35:40 +02005042 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03005043 if (enable_rc6 >= 0) {
5044 int mask;
5045
Chris Wilsondc979972016-05-10 14:10:04 +01005046 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03005047 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
5048 INTEL_RC6pp_ENABLE;
5049 else
5050 mask = INTEL_RC6_ENABLE;
5051
5052 if ((enable_rc6 & mask) != enable_rc6)
Daniel Vetter8dfd1f02014-08-04 11:15:56 +02005053 DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n",
5054 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03005055
5056 return enable_rc6 & mask;
5057 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005058
Chris Wilsondc979972016-05-10 14:10:04 +01005059 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08005060 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08005061
5062 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005063}
5064
Chris Wilsondc979972016-05-10 14:10:04 +01005065static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03005066{
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005067 uint32_t rp_state_cap;
5068 u32 ddcc_status = 0;
5069 int ret;
5070
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005071 /* All of these values are in units of 50MHz */
5072 dev_priv->rps.cur_freq = 0;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005073 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Chris Wilsondc979972016-05-10 14:10:04 +01005074 if (IS_BROXTON(dev_priv)) {
Bob Paauwe35040562015-06-25 14:54:07 -07005075 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
5076 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
5077 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5078 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
5079 } else {
5080 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
5081 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
5082 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5083 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
5084 }
5085
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005086 /* hw_max = RP0 until we check for overclocking */
5087 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
5088
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005089 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005090 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
5091 IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005092 ret = sandybridge_pcode_read(dev_priv,
5093 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
5094 &ddcc_status);
5095 if (0 == ret)
5096 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08005097 clamp_t(u8,
5098 ((ddcc_status >> 8) & 0xff),
5099 dev_priv->rps.min_freq,
5100 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005101 }
5102
Chris Wilsondc979972016-05-10 14:10:04 +01005103 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05305104 /* Store the frequency values in 16.66 MHZ units, which is
5105 the natural hardware unit for SKL */
5106 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
5107 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
5108 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
5109 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
5110 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
5111 }
5112
Chris Wilsonaed242f2015-03-18 09:48:21 +00005113 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5114
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005115 /* Preserve min/max settings in case of re-init */
5116 if (dev_priv->rps.max_freq_softlimit == 0)
5117 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5118
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005119 if (dev_priv->rps.min_freq_softlimit == 0) {
Chris Wilsondc979972016-05-10 14:10:04 +01005120 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005121 dev_priv->rps.min_freq_softlimit =
Ville Syrjälä813b5e62015-03-25 19:27:16 +02005122 max_t(int, dev_priv->rps.efficient_freq,
5123 intel_freq_opcode(dev_priv, 450));
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005124 else
5125 dev_priv->rps.min_freq_softlimit =
5126 dev_priv->rps.min_freq;
5127 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005128}
5129
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005130/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01005131static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005132{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005133 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
5134
Chris Wilsondc979972016-05-10 14:10:04 +01005135 gen6_init_rps_frequencies(dev_priv);
Damien Lespiauba1c5542015-01-16 18:07:26 +00005136
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05305137 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
Chris Wilsondc979972016-05-10 14:10:04 +01005138 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1)) {
Akash Goel2030d682016-04-23 00:05:45 +05305139 /*
5140 * BIOS could leave the Hw Turbo enabled, so need to explicitly
5141 * clear out the Control register just to avoid inconsitency
5142 * with debugfs interface, which will show Turbo as enabled
5143 * only and that is not expected by the User after adding the
5144 * WaGsvDisableTurbo. Apart from this there is no problem even
5145 * if the Turbo is left enabled in the Control register, as the
5146 * Up/Down interrupts would remain masked.
5147 */
Chris Wilsondc979972016-05-10 14:10:04 +01005148 gen9_disable_rps(dev_priv);
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05305149 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5150 return;
5151 }
5152
Akash Goel0beb0592015-03-06 11:07:20 +05305153 /* Program defaults and thresholds for RPS*/
5154 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5155 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005156
Akash Goel0beb0592015-03-06 11:07:20 +05305157 /* 1 second timeout*/
5158 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
5159 GT_INTERVAL_FROM_US(dev_priv, 1000000));
5160
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005161 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005162
Akash Goel0beb0592015-03-06 11:07:20 +05305163 /* Leaning on the below call to gen6_set_rps to program/setup the
5164 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
5165 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
5166 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsondc979972016-05-10 14:10:04 +01005167 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005168
5169 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5170}
5171
Chris Wilsondc979972016-05-10 14:10:04 +01005172static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005173{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005174 struct intel_engine_cs *engine;
Zhe Wang20e49362014-11-04 17:07:05 +00005175 uint32_t rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00005176
5177 /* 1a: Software RC state - RC0 */
5178 I915_WRITE(GEN6_RC_STATE, 0);
5179
5180 /* 1b: Get forcewake during program sequence. Although the driver
5181 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005182 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005183
5184 /* 2a: Disable RC states. */
5185 I915_WRITE(GEN6_RC_CONTROL, 0);
5186
5187 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305188
5189 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Chris Wilsondc979972016-05-10 14:10:04 +01005190 if (IS_SKYLAKE(dev_priv))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305191 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
5192 else
5193 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00005194 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5195 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005196 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005197 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305198
Dave Gordon1a3d1892016-05-13 15:36:30 +01005199 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305200 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
5201
Zhe Wang20e49362014-11-04 17:07:05 +00005202 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005203
Zhe Wang38c23522015-01-20 12:23:04 +00005204 /* 2c: Program Coarse Power Gating Policies. */
5205 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
5206 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
5207
Zhe Wang20e49362014-11-04 17:07:05 +00005208 /* 3a: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005209 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00005210 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02005211 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05305212 /* WaRsUseTimeoutMode */
Chris Wilsondc979972016-05-10 14:10:04 +01005213 if (IS_SKL_REVID(dev_priv, 0, SKL_REVID_D0) ||
5214 IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1)) {
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05305215 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05305216 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5217 GEN7_RC_CTL_TO_MODE |
5218 rc6_mask);
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05305219 } else {
5220 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05305221 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5222 GEN6_RC_CTL_EI_MODE(1) |
5223 rc6_mask);
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05305224 }
Zhe Wang20e49362014-11-04 17:07:05 +00005225
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305226 /*
5227 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305228 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305229 */
Chris Wilsondc979972016-05-10 14:10:04 +01005230 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305231 I915_WRITE(GEN9_PG_ENABLE, 0);
5232 else
5233 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
5234 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005235
Mika Kuoppala59bad942015-01-16 11:34:40 +02005236 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005237}
5238
Chris Wilsondc979972016-05-10 14:10:04 +01005239static void gen8_enable_rps(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005240{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005241 struct intel_engine_cs *engine;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005242 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005243
5244 /* 1a: Software RC state - RC0 */
5245 I915_WRITE(GEN6_RC_STATE, 0);
5246
5247 /* 1c & 1d: Get forcewake during program sequence. Although the driver
5248 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005249 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005250
5251 /* 2a: Disable RC states. */
5252 I915_WRITE(GEN6_RC_CONTROL, 0);
5253
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005254 /* Initialize rps frequencies */
Chris Wilsondc979972016-05-10 14:10:04 +01005255 gen6_init_rps_frequencies(dev_priv);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005256
5257 /* 2b: Program RC6 thresholds.*/
5258 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5259 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5260 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005261 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005262 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005263 I915_WRITE(GEN6_RC_SLEEP, 0);
Chris Wilsondc979972016-05-10 14:10:04 +01005264 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005265 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
5266 else
5267 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005268
5269 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005270 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005271 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01005272 intel_print_rc6_info(dev_priv, rc6_mask);
5273 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005274 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5275 GEN7_RC_CTL_TO_MODE |
5276 rc6_mask);
5277 else
5278 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5279 GEN6_RC_CTL_EI_MODE(1) |
5280 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005281
5282 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07005283 I915_WRITE(GEN6_RPNSWREQ,
5284 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
5285 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5286 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02005287 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
5288 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005289
Daniel Vetter7526ed72014-09-29 15:07:19 +02005290 /* Docs recommend 900MHz, and 300 MHz respectively */
5291 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
5292 dev_priv->rps.max_freq_softlimit << 24 |
5293 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005294
Daniel Vetter7526ed72014-09-29 15:07:19 +02005295 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
5296 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
5297 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
5298 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005299
Daniel Vetter7526ed72014-09-29 15:07:19 +02005300 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005301
5302 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02005303 I915_WRITE(GEN6_RP_CONTROL,
5304 GEN6_RP_MEDIA_TURBO |
5305 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5306 GEN6_RP_MEDIA_IS_GFX |
5307 GEN6_RP_ENABLE |
5308 GEN6_RP_UP_BUSY_AVG |
5309 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005310
Daniel Vetter7526ed72014-09-29 15:07:19 +02005311 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005312
Tom O'Rourkec7f31532014-11-19 14:21:54 -08005313 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsondc979972016-05-10 14:10:04 +01005314 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005315
Mika Kuoppala59bad942015-01-16 11:34:40 +02005316 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005317}
5318
Chris Wilsondc979972016-05-10 14:10:04 +01005319static void gen6_enable_rps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005320{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005321 struct intel_engine_cs *engine;
Ben Widawskyd060c162014-03-19 18:31:08 -07005322 u32 rc6vids, pcu_mbox = 0, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005323 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005324 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005325 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005326
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005327 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005328
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005329 /* Here begins a magic sequence of register writes to enable
5330 * auto-downclocking.
5331 *
5332 * Perhaps there might be some value in exposing these to
5333 * userspace...
5334 */
5335 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005336
5337 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005338 gtfifodbg = I915_READ(GTFIFODBG);
5339 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005340 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
5341 I915_WRITE(GTFIFODBG, gtfifodbg);
5342 }
5343
Mika Kuoppala59bad942015-01-16 11:34:40 +02005344 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005345
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005346 /* Initialize rps frequencies */
Chris Wilsondc979972016-05-10 14:10:04 +01005347 gen6_init_rps_frequencies(dev_priv);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06005348
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005349 /* disable the counters and set deterministic thresholds */
5350 I915_WRITE(GEN6_RC_CONTROL, 0);
5351
5352 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5353 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5354 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5355 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5356 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5357
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005358 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005359 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005360
5361 I915_WRITE(GEN6_RC_SLEEP, 0);
5362 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01005363 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005364 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5365 else
5366 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005367 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005368 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5369
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005370 /* Check if we are enabling RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005371 rc6_mode = intel_enable_rc6();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005372 if (rc6_mode & INTEL_RC6_ENABLE)
5373 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5374
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005375 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01005376 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005377 if (rc6_mode & INTEL_RC6p_ENABLE)
5378 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005379
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005380 if (rc6_mode & INTEL_RC6pp_ENABLE)
5381 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5382 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005383
Chris Wilsondc979972016-05-10 14:10:04 +01005384 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005385
5386 I915_WRITE(GEN6_RC_CONTROL,
5387 rc6_mask |
5388 GEN6_RC_CTL_EI_MODE(1) |
5389 GEN6_RC_CTL_HW_ENABLE);
5390
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005391 /* Power down if completely idle for over 50ms */
5392 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005393 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005394
Ben Widawsky42c05262012-09-26 10:34:00 -07005395 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0);
Ben Widawskyd060c162014-03-19 18:31:08 -07005396 if (ret)
Ben Widawsky42c05262012-09-26 10:34:00 -07005397 DRM_DEBUG_DRIVER("Failed to set the min frequency\n");
Ben Widawskyd060c162014-03-19 18:31:08 -07005398
5399 ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox);
5400 if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */
5401 DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n",
Ben Widawskyb39fb292014-03-19 18:31:11 -07005402 (dev_priv->rps.max_freq_softlimit & 0xff) * 50,
Ben Widawskyd060c162014-03-19 18:31:08 -07005403 (pcu_mbox & 0xff) * 50);
Ben Widawskyb39fb292014-03-19 18:31:11 -07005404 dev_priv->rps.max_freq = pcu_mbox & 0xff;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005405 }
5406
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005407 dev_priv->rps.power = HIGH_POWER; /* force a reset */
Chris Wilsondc979972016-05-10 14:10:04 +01005408 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005409
Ben Widawsky31643d52012-09-26 10:34:01 -07005410 rc6vids = 0;
5411 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01005412 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005413 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01005414 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005415 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5416 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5417 rc6vids &= 0xffff00;
5418 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5419 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5420 if (ret)
5421 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5422 }
5423
Mika Kuoppala59bad942015-01-16 11:34:40 +02005424 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005425}
5426
Chris Wilsondc979972016-05-10 14:10:04 +01005427static void __gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005428{
5429 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005430 unsigned int gpu_freq;
5431 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305432 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005433 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005434 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005435
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005436 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005437
Ben Widawskyeda79642013-10-07 17:15:48 -03005438 policy = cpufreq_cpu_get(0);
5439 if (policy) {
5440 max_ia_freq = policy->cpuinfo.max_freq;
5441 cpufreq_cpu_put(policy);
5442 } else {
5443 /*
5444 * Default to measured freq if none found, PCU will ensure we
5445 * don't go over
5446 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005447 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005448 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005449
5450 /* Convert from kHz to MHz */
5451 max_ia_freq /= 1000;
5452
Ben Widawsky153b4b952013-10-22 22:05:09 -07005453 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005454 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5455 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005456
Chris Wilsondc979972016-05-10 14:10:04 +01005457 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305458 /* Convert GT frequency to 50 HZ units */
5459 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5460 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5461 } else {
5462 min_gpu_freq = dev_priv->rps.min_freq;
5463 max_gpu_freq = dev_priv->rps.max_freq;
5464 }
5465
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005466 /*
5467 * For each potential GPU frequency, load a ring frequency we'd like
5468 * to use for memory access. We do this by specifying the IA frequency
5469 * the PCU should use as a reference to determine the ring frequency.
5470 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305471 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5472 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005473 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005474
Chris Wilsondc979972016-05-10 14:10:04 +01005475 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305476 /*
5477 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5478 * No floor required for ring frequency on SKL.
5479 */
5480 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005481 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005482 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5483 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01005484 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005485 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005486 ring_freq = max(min_ring_freq, ring_freq);
5487 /* leave ia_freq as the default, chosen by cpufreq */
5488 } else {
5489 /* On older processors, there is no separate ring
5490 * clock domain, so in order to boost the bandwidth
5491 * of the ring, we need to upclock the CPU (ia_freq).
5492 *
5493 * For GPU frequencies less than 750MHz,
5494 * just use the lowest ring freq.
5495 */
5496 if (gpu_freq < min_freq)
5497 ia_freq = 800;
5498 else
5499 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5500 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5501 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005502
Ben Widawsky42c05262012-09-26 10:34:00 -07005503 sandybridge_pcode_write(dev_priv,
5504 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005505 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5506 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5507 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005508 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005509}
5510
Chris Wilsondc979972016-05-10 14:10:04 +01005511void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005512{
Chris Wilsondc979972016-05-10 14:10:04 +01005513 if (!HAS_CORE_RING_FREQ(dev_priv))
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005514 return;
5515
5516 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsondc979972016-05-10 14:10:04 +01005517 __gen6_update_ring_freq(dev_priv);
Imre Deakc2bc2fc2014-04-18 16:16:23 +03005518 mutex_unlock(&dev_priv->rps.hw_lock);
5519}
5520
Ville Syrjälä03af2042014-06-28 02:03:53 +03005521static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305522{
5523 u32 val, rp0;
5524
Jani Nikula5b5929c2015-10-07 11:17:46 +03005525 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305526
Chris Wilsondc979972016-05-10 14:10:04 +01005527 switch (INTEL_INFO(dev_priv)->eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03005528 case 8:
5529 /* (2 * 4) config */
5530 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5531 break;
5532 case 12:
5533 /* (2 * 6) config */
5534 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5535 break;
5536 case 16:
5537 /* (2 * 8) config */
5538 default:
5539 /* Setting (2 * 8) Min RP0 for any other combination */
5540 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5541 break;
Deepak S095acd52015-01-17 11:05:59 +05305542 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005543
5544 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5545
Deepak S2b6b3a02014-05-27 15:59:30 +05305546 return rp0;
5547}
5548
5549static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5550{
5551 u32 val, rpe;
5552
5553 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5554 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5555
5556 return rpe;
5557}
5558
Deepak S7707df42014-07-12 18:46:14 +05305559static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5560{
5561 u32 val, rp1;
5562
Jani Nikula5b5929c2015-10-07 11:17:46 +03005563 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5564 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5565
Deepak S7707df42014-07-12 18:46:14 +05305566 return rp1;
5567}
5568
Deepak Sf8f2b002014-07-10 13:16:21 +05305569static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5570{
5571 u32 val, rp1;
5572
5573 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5574
5575 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5576
5577 return rp1;
5578}
5579
Ville Syrjälä03af2042014-06-28 02:03:53 +03005580static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005581{
5582 u32 val, rp0;
5583
Jani Nikula64936252013-05-22 15:36:20 +03005584 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005585
5586 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5587 /* Clamp to max */
5588 rp0 = min_t(u32, rp0, 0xea);
5589
5590 return rp0;
5591}
5592
5593static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5594{
5595 u32 val, rpe;
5596
Jani Nikula64936252013-05-22 15:36:20 +03005597 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005598 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005599 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005600 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5601
5602 return rpe;
5603}
5604
Ville Syrjälä03af2042014-06-28 02:03:53 +03005605static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005606{
Imre Deak36146032014-12-04 18:39:35 +02005607 u32 val;
5608
5609 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
5610 /*
5611 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
5612 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
5613 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
5614 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
5615 * to make sure it matches what Punit accepts.
5616 */
5617 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005618}
5619
Imre Deakae484342014-03-31 15:10:44 +03005620/* Check that the pctx buffer wasn't move under us. */
5621static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5622{
5623 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5624
5625 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5626 dev_priv->vlv_pctx->stolen->start);
5627}
5628
Deepak S38807742014-05-23 21:00:15 +05305629
5630/* Check that the pcbr address is not empty. */
5631static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5632{
5633 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5634
5635 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5636}
5637
Chris Wilsondc979972016-05-10 14:10:04 +01005638static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305639{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005640 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005641 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05305642 u32 pcbr;
5643 int pctx_size = 32*1024;
5644
Deepak S38807742014-05-23 21:00:15 +05305645 pcbr = I915_READ(VLV_PCBR);
5646 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005647 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305648 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005649 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05305650
5651 pctx_paddr = (paddr & (~4095));
5652 I915_WRITE(VLV_PCBR, pctx_paddr);
5653 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005654
5655 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305656}
5657
Chris Wilsondc979972016-05-10 14:10:04 +01005658static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005659{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005660 struct drm_i915_gem_object *pctx;
5661 unsigned long pctx_paddr;
5662 u32 pcbr;
5663 int pctx_size = 24*1024;
5664
Chris Wilsondc979972016-05-10 14:10:04 +01005665 mutex_lock(&dev_priv->dev->struct_mutex);
Imre Deak17b0c1f2014-02-11 21:39:06 +02005666
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005667 pcbr = I915_READ(VLV_PCBR);
5668 if (pcbr) {
5669 /* BIOS set it up already, grab the pre-alloc'd space */
5670 int pcbr_offset;
5671
5672 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
5673 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev,
5674 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005675 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005676 pctx_size);
5677 goto out;
5678 }
5679
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005680 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5681
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005682 /*
5683 * From the Gunit register HAS:
5684 * The Gfx driver is expected to program this register and ensure
5685 * proper allocation within Gfx stolen memory. For example, this
5686 * register should be programmed such than the PCBR range does not
5687 * overlap with other ranges, such as the frame buffer, protected
5688 * memory, or any other relevant ranges.
5689 */
Chris Wilsondc979972016-05-10 14:10:04 +01005690 pctx = i915_gem_object_create_stolen(dev_priv->dev, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005691 if (!pctx) {
5692 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005693 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005694 }
5695
5696 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5697 I915_WRITE(VLV_PCBR, pctx_paddr);
5698
5699out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005700 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005701 dev_priv->vlv_pctx = pctx;
Chris Wilsondc979972016-05-10 14:10:04 +01005702 mutex_unlock(&dev_priv->dev->struct_mutex);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005703}
5704
Chris Wilsondc979972016-05-10 14:10:04 +01005705static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03005706{
Imre Deakae484342014-03-31 15:10:44 +03005707 if (WARN_ON(!dev_priv->vlv_pctx))
5708 return;
5709
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005710 drm_gem_object_unreference_unlocked(&dev_priv->vlv_pctx->base);
Imre Deakae484342014-03-31 15:10:44 +03005711 dev_priv->vlv_pctx = NULL;
5712}
5713
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005714static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
5715{
5716 dev_priv->rps.gpll_ref_freq =
5717 vlv_get_cck_clock(dev_priv, "GPLL ref",
5718 CCK_GPLL_CLOCK_CONTROL,
5719 dev_priv->czclk_freq);
5720
5721 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
5722 dev_priv->rps.gpll_ref_freq);
5723}
5724
Chris Wilsondc979972016-05-10 14:10:04 +01005725static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005726{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005727 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005728
Chris Wilsondc979972016-05-10 14:10:04 +01005729 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005730
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005731 vlv_init_gpll_ref_freq(dev_priv);
5732
Imre Deak4e805192014-04-14 20:24:41 +03005733 mutex_lock(&dev_priv->rps.hw_lock);
5734
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005735 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5736 switch ((val >> 6) & 3) {
5737 case 0:
5738 case 1:
5739 dev_priv->mem_freq = 800;
5740 break;
5741 case 2:
5742 dev_priv->mem_freq = 1066;
5743 break;
5744 case 3:
5745 dev_priv->mem_freq = 1333;
5746 break;
5747 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005748 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005749
Imre Deak4e805192014-04-14 20:24:41 +03005750 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5751 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5752 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005753 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005754 dev_priv->rps.max_freq);
5755
5756 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5757 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005758 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005759 dev_priv->rps.efficient_freq);
5760
Deepak Sf8f2b002014-07-10 13:16:21 +05305761 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5762 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005763 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305764 dev_priv->rps.rp1_freq);
5765
Imre Deak4e805192014-04-14 20:24:41 +03005766 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5767 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005768 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005769 dev_priv->rps.min_freq);
5770
Chris Wilsonaed242f2015-03-18 09:48:21 +00005771 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5772
Imre Deak4e805192014-04-14 20:24:41 +03005773 /* Preserve min/max settings in case of re-init */
5774 if (dev_priv->rps.max_freq_softlimit == 0)
5775 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5776
5777 if (dev_priv->rps.min_freq_softlimit == 0)
5778 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5779
5780 mutex_unlock(&dev_priv->rps.hw_lock);
5781}
5782
Chris Wilsondc979972016-05-10 14:10:04 +01005783static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305784{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005785 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305786
Chris Wilsondc979972016-05-10 14:10:04 +01005787 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05305788
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005789 vlv_init_gpll_ref_freq(dev_priv);
5790
Deepak S2b6b3a02014-05-27 15:59:30 +05305791 mutex_lock(&dev_priv->rps.hw_lock);
5792
Ville Syrjäläa5805162015-05-26 20:42:30 +03005793 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005794 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005795 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005796
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005797 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005798 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005799 dev_priv->mem_freq = 2000;
5800 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03005801 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005802 dev_priv->mem_freq = 1600;
5803 break;
5804 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005805 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005806
Deepak S2b6b3a02014-05-27 15:59:30 +05305807 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5808 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5809 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005810 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305811 dev_priv->rps.max_freq);
5812
5813 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5814 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005815 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305816 dev_priv->rps.efficient_freq);
5817
Deepak S7707df42014-07-12 18:46:14 +05305818 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5819 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005820 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305821 dev_priv->rps.rp1_freq);
5822
Deepak S5b7c91b2015-05-09 18:15:46 +05305823 /* PUnit validated range is only [RPe, RP0] */
5824 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305825 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005826 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305827 dev_priv->rps.min_freq);
5828
Ville Syrjälä1c147622014-08-18 14:42:43 +03005829 WARN_ONCE((dev_priv->rps.max_freq |
5830 dev_priv->rps.efficient_freq |
5831 dev_priv->rps.rp1_freq |
5832 dev_priv->rps.min_freq) & 1,
5833 "Odd GPU freq values\n");
5834
Chris Wilsonaed242f2015-03-18 09:48:21 +00005835 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
5836
Deepak S2b6b3a02014-05-27 15:59:30 +05305837 /* Preserve min/max settings in case of re-init */
5838 if (dev_priv->rps.max_freq_softlimit == 0)
5839 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
5840
5841 if (dev_priv->rps.min_freq_softlimit == 0)
5842 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
5843
5844 mutex_unlock(&dev_priv->rps.hw_lock);
Deepak S38807742014-05-23 21:00:15 +05305845}
5846
Chris Wilsondc979972016-05-10 14:10:04 +01005847static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005848{
Chris Wilsondc979972016-05-10 14:10:04 +01005849 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005850}
5851
Chris Wilsondc979972016-05-10 14:10:04 +01005852static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305853{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005854 struct intel_engine_cs *engine;
Deepak S2b6b3a02014-05-27 15:59:30 +05305855 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305856
5857 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5858
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005859 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
5860 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05305861 if (gtfifodbg) {
5862 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5863 gtfifodbg);
5864 I915_WRITE(GTFIFODBG, gtfifodbg);
5865 }
5866
5867 cherryview_check_pctx(dev_priv);
5868
5869 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5870 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005871 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305872
Ville Syrjälä160614a2015-01-19 13:50:47 +02005873 /* Disable RC states. */
5874 I915_WRITE(GEN6_RC_CONTROL, 0);
5875
Deepak S38807742014-05-23 21:00:15 +05305876 /* 2a: Program RC6 thresholds.*/
5877 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5878 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5879 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5880
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005881 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005882 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05305883 I915_WRITE(GEN6_RC_SLEEP, 0);
5884
Deepak Sf4f71c72015-03-28 15:23:35 +05305885 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
5886 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05305887
5888 /* allows RC6 residency counter to work */
5889 I915_WRITE(VLV_COUNTER_CONTROL,
5890 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
5891 VLV_MEDIA_RC6_COUNT_EN |
5892 VLV_RENDER_RC6_COUNT_EN));
5893
5894 /* For now we assume BIOS is allocating and populating the PCBR */
5895 pcbr = I915_READ(VLV_PCBR);
5896
Deepak S38807742014-05-23 21:00:15 +05305897 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005898 if ((intel_enable_rc6() & INTEL_RC6_ENABLE) &&
5899 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02005900 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05305901
5902 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
5903
Deepak S2b6b3a02014-05-27 15:59:30 +05305904 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02005905 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05305906 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5907 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5908 I915_WRITE(GEN6_RP_UP_EI, 66000);
5909 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5910
5911 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5912
5913 /* 5: Enable RPS */
5914 I915_WRITE(GEN6_RP_CONTROL,
5915 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02005916 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05305917 GEN6_RP_ENABLE |
5918 GEN6_RP_UP_BUSY_AVG |
5919 GEN6_RP_DOWN_IDLE_AVG);
5920
Deepak S3ef62342015-04-29 08:36:24 +05305921 /* Setting Fixed Bias */
5922 val = VLV_OVERRIDE_EN |
5923 VLV_SOC_TDP_EN |
5924 CHV_BIAS_CPU_50_SOC_50;
5925 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
5926
Deepak S2b6b3a02014-05-27 15:59:30 +05305927 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5928
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02005929 /* RPS code assumes GPLL is used */
5930 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
5931
Jani Nikula742f4912015-09-03 11:16:09 +03005932 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05305933 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
5934
5935 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
5936 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005937 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305938 dev_priv->rps.cur_freq);
5939
5940 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä5fd9f522016-03-04 21:43:03 +02005941 intel_gpu_freq(dev_priv, dev_priv->rps.idle_freq),
5942 dev_priv->rps.idle_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05305943
Chris Wilsondc979972016-05-10 14:10:04 +01005944 valleyview_set_rps(dev_priv, dev_priv->rps.idle_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05305945
Mika Kuoppala59bad942015-01-16 11:34:40 +02005946 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305947}
5948
Chris Wilsondc979972016-05-10 14:10:04 +01005949static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005950{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005951 struct intel_engine_cs *engine;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07005952 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005953
5954 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5955
Imre Deakae484342014-03-31 15:10:44 +03005956 valleyview_check_pctx(dev_priv);
5957
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005958 gtfifodbg = I915_READ(GTFIFODBG);
5959 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07005960 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5961 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005962 I915_WRITE(GTFIFODBG, gtfifodbg);
5963 }
5964
Deepak Sc8d9a592013-11-23 14:55:42 +05305965 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005966 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005967
Ville Syrjälä160614a2015-01-19 13:50:47 +02005968 /* Disable RC states. */
5969 I915_WRITE(GEN6_RC_CONTROL, 0);
5970
Ville Syrjäläcad725f2015-01-19 13:50:48 +02005971 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005972 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
5973 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
5974 I915_WRITE(GEN6_RP_UP_EI, 66000);
5975 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
5976
5977 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
5978
5979 I915_WRITE(GEN6_RP_CONTROL,
5980 GEN6_RP_MEDIA_TURBO |
5981 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5982 GEN6_RP_MEDIA_IS_GFX |
5983 GEN6_RP_ENABLE |
5984 GEN6_RP_UP_BUSY_AVG |
5985 GEN6_RP_DOWN_IDLE_CONT);
5986
5987 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
5988 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5989 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5990
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005991 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005992 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005993
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08005994 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005995
5996 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07005997 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04005998 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
5999 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07006000 VLV_MEDIA_RC6_COUNT_EN |
6001 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04006002
Chris Wilsondc979972016-05-10 14:10:04 +01006003 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08006004 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07006005
Chris Wilsondc979972016-05-10 14:10:04 +01006006 intel_print_rc6_info(dev_priv, rc6_mode);
Ben Widawskydc39fff2013-10-18 12:32:07 -07006007
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07006008 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006009
Deepak S3ef62342015-04-29 08:36:24 +05306010 /* Setting Fixed Bias */
6011 val = VLV_OVERRIDE_EN |
6012 VLV_SOC_TDP_EN |
6013 VLV_BIAS_CPU_125_SOC_875;
6014 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6015
Jani Nikula64936252013-05-22 15:36:20 +03006016 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006017
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006018 /* RPS code assumes GPLL is used */
6019 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6020
Jani Nikula742f4912015-09-03 11:16:09 +03006021 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07006022 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6023
Ben Widawskyb39fb292014-03-19 18:31:11 -07006024 dev_priv->rps.cur_freq = (val >> 8) & 0xff;
Ville Syrjälä73008b92013-06-25 19:21:01 +03006025 DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006026 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
Ben Widawskyb39fb292014-03-19 18:31:11 -07006027 dev_priv->rps.cur_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006028
Ville Syrjälä73008b92013-06-25 19:21:01 +03006029 DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n",
Ville Syrjälä5fd9f522016-03-04 21:43:03 +02006030 intel_gpu_freq(dev_priv, dev_priv->rps.idle_freq),
6031 dev_priv->rps.idle_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006032
Chris Wilsondc979972016-05-10 14:10:04 +01006033 valleyview_set_rps(dev_priv, dev_priv->rps.idle_freq);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006034
Mika Kuoppala59bad942015-01-16 11:34:40 +02006035 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006036}
6037
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006038static unsigned long intel_pxfreq(u32 vidfreq)
6039{
6040 unsigned long freq;
6041 int div = (vidfreq & 0x3f0000) >> 16;
6042 int post = (vidfreq & 0x3000) >> 12;
6043 int pre = (vidfreq & 0x7);
6044
6045 if (!pre)
6046 return 0;
6047
6048 freq = ((div * 133333) / ((1<<post) * pre));
6049
6050 return freq;
6051}
6052
Daniel Vettereb48eb02012-04-26 23:28:12 +02006053static const struct cparams {
6054 u16 i;
6055 u16 t;
6056 u16 m;
6057 u16 c;
6058} cparams[] = {
6059 { 1, 1333, 301, 28664 },
6060 { 1, 1066, 294, 24460 },
6061 { 1, 800, 294, 25192 },
6062 { 0, 1333, 276, 27605 },
6063 { 0, 1066, 276, 27605 },
6064 { 0, 800, 231, 23784 },
6065};
6066
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006067static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006068{
6069 u64 total_count, diff, ret;
6070 u32 count1, count2, count3, m = 0, c = 0;
6071 unsigned long now = jiffies_to_msecs(jiffies), diff1;
6072 int i;
6073
Daniel Vetter02d71952012-08-09 16:44:54 +02006074 assert_spin_locked(&mchdev_lock);
6075
Daniel Vetter20e4d402012-08-08 23:35:39 +02006076 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006077
6078 /* Prevent division-by-zero if we are asking too fast.
6079 * Also, we don't get interesting results if we are polling
6080 * faster than once in 10ms, so just return the saved value
6081 * in such cases.
6082 */
6083 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02006084 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006085
6086 count1 = I915_READ(DMIEC);
6087 count2 = I915_READ(DDREC);
6088 count3 = I915_READ(CSIEC);
6089
6090 total_count = count1 + count2 + count3;
6091
6092 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02006093 if (total_count < dev_priv->ips.last_count1) {
6094 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006095 diff += total_count;
6096 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006097 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006098 }
6099
6100 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006101 if (cparams[i].i == dev_priv->ips.c_m &&
6102 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02006103 m = cparams[i].m;
6104 c = cparams[i].c;
6105 break;
6106 }
6107 }
6108
6109 diff = div_u64(diff, diff1);
6110 ret = ((m * diff) + c);
6111 ret = div_u64(ret, 10);
6112
Daniel Vetter20e4d402012-08-08 23:35:39 +02006113 dev_priv->ips.last_count1 = total_count;
6114 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006115
Daniel Vetter20e4d402012-08-08 23:35:39 +02006116 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006117
6118 return ret;
6119}
6120
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006121unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
6122{
6123 unsigned long val;
6124
Chris Wilsondc979972016-05-10 14:10:04 +01006125 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006126 return 0;
6127
6128 spin_lock_irq(&mchdev_lock);
6129
6130 val = __i915_chipset_val(dev_priv);
6131
6132 spin_unlock_irq(&mchdev_lock);
6133
6134 return val;
6135}
6136
Daniel Vettereb48eb02012-04-26 23:28:12 +02006137unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
6138{
6139 unsigned long m, x, b;
6140 u32 tsfs;
6141
6142 tsfs = I915_READ(TSFS);
6143
6144 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
6145 x = I915_READ8(TR1);
6146
6147 b = tsfs & TSFS_INTR_MASK;
6148
6149 return ((m * x) / 127) - b;
6150}
6151
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006152static int _pxvid_to_vd(u8 pxvid)
6153{
6154 if (pxvid == 0)
6155 return 0;
6156
6157 if (pxvid >= 8 && pxvid < 31)
6158 pxvid = 31;
6159
6160 return (pxvid + 2) * 125;
6161}
6162
6163static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006164{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006165 const int vd = _pxvid_to_vd(pxvid);
6166 const int vm = vd - 1125;
6167
Chris Wilsondc979972016-05-10 14:10:04 +01006168 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006169 return vm > 0 ? vm : 0;
6170
6171 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006172}
6173
Daniel Vetter02d71952012-08-09 16:44:54 +02006174static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006175{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006176 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006177 u32 count;
6178
Daniel Vetter02d71952012-08-09 16:44:54 +02006179 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006180
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006181 now = ktime_get_raw_ns();
6182 diffms = now - dev_priv->ips.last_time2;
6183 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006184
6185 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02006186 if (!diffms)
6187 return;
6188
6189 count = I915_READ(GFXEC);
6190
Daniel Vetter20e4d402012-08-08 23:35:39 +02006191 if (count < dev_priv->ips.last_count2) {
6192 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006193 diff += count;
6194 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006195 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006196 }
6197
Daniel Vetter20e4d402012-08-08 23:35:39 +02006198 dev_priv->ips.last_count2 = count;
6199 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006200
6201 /* More magic constants... */
6202 diff = diff * 1181;
6203 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02006204 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006205}
6206
Daniel Vetter02d71952012-08-09 16:44:54 +02006207void i915_update_gfx_val(struct drm_i915_private *dev_priv)
6208{
Chris Wilsondc979972016-05-10 14:10:04 +01006209 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02006210 return;
6211
Daniel Vetter92703882012-08-09 16:46:01 +02006212 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006213
6214 __i915_update_gfx_val(dev_priv);
6215
Daniel Vetter92703882012-08-09 16:46:01 +02006216 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006217}
6218
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006219static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006220{
6221 unsigned long t, corr, state1, corr2, state2;
6222 u32 pxvid, ext_v;
6223
Daniel Vetter02d71952012-08-09 16:44:54 +02006224 assert_spin_locked(&mchdev_lock);
6225
Ville Syrjälä616847e2015-09-18 20:03:19 +03006226 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02006227 pxvid = (pxvid >> 24) & 0x7f;
6228 ext_v = pvid_to_extvid(dev_priv, pxvid);
6229
6230 state1 = ext_v;
6231
6232 t = i915_mch_val(dev_priv);
6233
6234 /* Revel in the empirically derived constants */
6235
6236 /* Correction factor in 1/100000 units */
6237 if (t > 80)
6238 corr = ((t * 2349) + 135940);
6239 else if (t >= 50)
6240 corr = ((t * 964) + 29317);
6241 else /* < 50 */
6242 corr = ((t * 301) + 1004);
6243
6244 corr = corr * ((150142 * state1) / 10000 - 78642);
6245 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02006246 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006247
6248 state2 = (corr2 * state1) / 10000;
6249 state2 /= 100; /* convert to mW */
6250
Daniel Vetter02d71952012-08-09 16:44:54 +02006251 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006252
Daniel Vetter20e4d402012-08-08 23:35:39 +02006253 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006254}
6255
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006256unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
6257{
6258 unsigned long val;
6259
Chris Wilsondc979972016-05-10 14:10:04 +01006260 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006261 return 0;
6262
6263 spin_lock_irq(&mchdev_lock);
6264
6265 val = __i915_gfx_val(dev_priv);
6266
6267 spin_unlock_irq(&mchdev_lock);
6268
6269 return val;
6270}
6271
Daniel Vettereb48eb02012-04-26 23:28:12 +02006272/**
6273 * i915_read_mch_val - return value for IPS use
6274 *
6275 * Calculate and return a value for the IPS driver to use when deciding whether
6276 * we have thermal and power headroom to increase CPU or GPU power budget.
6277 */
6278unsigned long i915_read_mch_val(void)
6279{
6280 struct drm_i915_private *dev_priv;
6281 unsigned long chipset_val, graphics_val, ret = 0;
6282
Daniel Vetter92703882012-08-09 16:46:01 +02006283 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006284 if (!i915_mch_dev)
6285 goto out_unlock;
6286 dev_priv = i915_mch_dev;
6287
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006288 chipset_val = __i915_chipset_val(dev_priv);
6289 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006290
6291 ret = chipset_val + graphics_val;
6292
6293out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006294 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006295
6296 return ret;
6297}
6298EXPORT_SYMBOL_GPL(i915_read_mch_val);
6299
6300/**
6301 * i915_gpu_raise - raise GPU frequency limit
6302 *
6303 * Raise the limit; IPS indicates we have thermal headroom.
6304 */
6305bool i915_gpu_raise(void)
6306{
6307 struct drm_i915_private *dev_priv;
6308 bool ret = true;
6309
Daniel Vetter92703882012-08-09 16:46:01 +02006310 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006311 if (!i915_mch_dev) {
6312 ret = false;
6313 goto out_unlock;
6314 }
6315 dev_priv = i915_mch_dev;
6316
Daniel Vetter20e4d402012-08-08 23:35:39 +02006317 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
6318 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006319
6320out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006321 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006322
6323 return ret;
6324}
6325EXPORT_SYMBOL_GPL(i915_gpu_raise);
6326
6327/**
6328 * i915_gpu_lower - lower GPU frequency limit
6329 *
6330 * IPS indicates we're close to a thermal limit, so throttle back the GPU
6331 * frequency maximum.
6332 */
6333bool i915_gpu_lower(void)
6334{
6335 struct drm_i915_private *dev_priv;
6336 bool ret = true;
6337
Daniel Vetter92703882012-08-09 16:46:01 +02006338 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006339 if (!i915_mch_dev) {
6340 ret = false;
6341 goto out_unlock;
6342 }
6343 dev_priv = i915_mch_dev;
6344
Daniel Vetter20e4d402012-08-08 23:35:39 +02006345 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
6346 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006347
6348out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006349 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006350
6351 return ret;
6352}
6353EXPORT_SYMBOL_GPL(i915_gpu_lower);
6354
6355/**
6356 * i915_gpu_busy - indicate GPU business to IPS
6357 *
6358 * Tell the IPS driver whether or not the GPU is busy.
6359 */
6360bool i915_gpu_busy(void)
6361{
6362 struct drm_i915_private *dev_priv;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006363 struct intel_engine_cs *engine;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006364 bool ret = false;
6365
Daniel Vetter92703882012-08-09 16:46:01 +02006366 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006367 if (!i915_mch_dev)
6368 goto out_unlock;
6369 dev_priv = i915_mch_dev;
6370
Dave Gordonb4ac5af2016-03-24 11:20:38 +00006371 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006372 ret |= !list_empty(&engine->request_list);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006373
6374out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006375 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006376
6377 return ret;
6378}
6379EXPORT_SYMBOL_GPL(i915_gpu_busy);
6380
6381/**
6382 * i915_gpu_turbo_disable - disable graphics turbo
6383 *
6384 * Disable graphics turbo by resetting the max frequency and setting the
6385 * current frequency to the default.
6386 */
6387bool i915_gpu_turbo_disable(void)
6388{
6389 struct drm_i915_private *dev_priv;
6390 bool ret = true;
6391
Daniel Vetter92703882012-08-09 16:46:01 +02006392 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006393 if (!i915_mch_dev) {
6394 ret = false;
6395 goto out_unlock;
6396 }
6397 dev_priv = i915_mch_dev;
6398
Daniel Vetter20e4d402012-08-08 23:35:39 +02006399 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006400
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006401 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006402 ret = false;
6403
6404out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006405 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006406
6407 return ret;
6408}
6409EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6410
6411/**
6412 * Tells the intel_ips driver that the i915 driver is now loaded, if
6413 * IPS got loaded first.
6414 *
6415 * This awkward dance is so that neither module has to depend on the
6416 * other in order for IPS to do the appropriate communication of
6417 * GPU turbo limits to i915.
6418 */
6419static void
6420ips_ping_for_i915_load(void)
6421{
6422 void (*link)(void);
6423
6424 link = symbol_get(ips_link_to_i915_driver);
6425 if (link) {
6426 link();
6427 symbol_put(ips_link_to_i915_driver);
6428 }
6429}
6430
6431void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6432{
Daniel Vetter02d71952012-08-09 16:44:54 +02006433 /* We only register the i915 ips part with intel-ips once everything is
6434 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006435 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006436 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006437 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006438
6439 ips_ping_for_i915_load();
6440}
6441
6442void intel_gpu_ips_teardown(void)
6443{
Daniel Vetter92703882012-08-09 16:46:01 +02006444 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006445 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006446 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006447}
Deepak S76c3552f2014-01-30 23:08:16 +05306448
Chris Wilsondc979972016-05-10 14:10:04 +01006449static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006450{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006451 u32 lcfuse;
6452 u8 pxw[16];
6453 int i;
6454
6455 /* Disable to program */
6456 I915_WRITE(ECR, 0);
6457 POSTING_READ(ECR);
6458
6459 /* Program energy weights for various events */
6460 I915_WRITE(SDEW, 0x15040d00);
6461 I915_WRITE(CSIEW0, 0x007f0000);
6462 I915_WRITE(CSIEW1, 0x1e220004);
6463 I915_WRITE(CSIEW2, 0x04000004);
6464
6465 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006466 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006467 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006468 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006469
6470 /* Program P-state weights to account for frequency power adjustment */
6471 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006472 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006473 unsigned long freq = intel_pxfreq(pxvidfreq);
6474 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6475 PXVFREQ_PX_SHIFT;
6476 unsigned long val;
6477
6478 val = vid * vid;
6479 val *= (freq / 1000);
6480 val *= 255;
6481 val /= (127*127*900);
6482 if (val > 0xff)
6483 DRM_ERROR("bad pxval: %ld\n", val);
6484 pxw[i] = val;
6485 }
6486 /* Render standby states get 0 weight */
6487 pxw[14] = 0;
6488 pxw[15] = 0;
6489
6490 for (i = 0; i < 4; i++) {
6491 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6492 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006493 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006494 }
6495
6496 /* Adjust magic regs to magic values (more experimental results) */
6497 I915_WRITE(OGW0, 0);
6498 I915_WRITE(OGW1, 0);
6499 I915_WRITE(EG0, 0x00007f00);
6500 I915_WRITE(EG1, 0x0000000e);
6501 I915_WRITE(EG2, 0x000e0000);
6502 I915_WRITE(EG3, 0x68000300);
6503 I915_WRITE(EG4, 0x42000000);
6504 I915_WRITE(EG5, 0x00140031);
6505 I915_WRITE(EG6, 0);
6506 I915_WRITE(EG7, 0);
6507
6508 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006509 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006510
6511 /* Enable PMON + select events */
6512 I915_WRITE(ECR, 0x80000019);
6513
6514 lcfuse = I915_READ(LCFUSE02);
6515
Daniel Vetter20e4d402012-08-08 23:35:39 +02006516 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006517}
6518
Chris Wilsondc979972016-05-10 14:10:04 +01006519void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006520{
Imre Deakb268c692015-12-15 20:10:31 +02006521 /*
6522 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
6523 * requirement.
6524 */
6525 if (!i915.enable_rc6) {
6526 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
6527 intel_runtime_pm_get(dev_priv);
6528 }
Imre Deake6069ca2014-04-18 16:01:02 +03006529
Chris Wilsondc979972016-05-10 14:10:04 +01006530 if (IS_CHERRYVIEW(dev_priv))
6531 cherryview_init_gt_powersave(dev_priv);
6532 else if (IS_VALLEYVIEW(dev_priv))
6533 valleyview_init_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006534}
6535
Chris Wilsondc979972016-05-10 14:10:04 +01006536void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006537{
Chris Wilsondc979972016-05-10 14:10:04 +01006538 if (IS_CHERRYVIEW(dev_priv))
Deepak S38807742014-05-23 21:00:15 +05306539 return;
Chris Wilsondc979972016-05-10 14:10:04 +01006540 else if (IS_VALLEYVIEW(dev_priv))
6541 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02006542
6543 if (!i915.enable_rc6)
6544 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006545}
6546
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006547static void gen6_suspend_rps(struct drm_i915_private *dev_priv)
Imre Deakdbea3ce2014-12-15 18:59:28 +02006548{
Imre Deakdbea3ce2014-12-15 18:59:28 +02006549 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
6550
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006551 gen6_disable_rps_interrupts(dev_priv);
Imre Deakdbea3ce2014-12-15 18:59:28 +02006552}
6553
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006554/**
6555 * intel_suspend_gt_powersave - suspend PM work and helper threads
Chris Wilsondc979972016-05-10 14:10:04 +01006556 * @dev_priv: i915 device
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006557 *
6558 * We don't want to disable RC6 or other features here, we just want
6559 * to make sure any work we've queued has finished and won't bother
6560 * us while we're suspended.
6561 */
Chris Wilsondc979972016-05-10 14:10:04 +01006562void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006563{
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006564 if (INTEL_GEN(dev_priv) < 6)
Imre Deakd4d70aa2014-11-19 15:30:04 +02006565 return;
6566
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006567 gen6_suspend_rps(dev_priv);
Deepak Sb47adc12014-06-20 20:03:02 +05306568
6569 /* Force GPU to min freq during suspend */
6570 gen6_rps_idle(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006571}
6572
Chris Wilsondc979972016-05-10 14:10:04 +01006573void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006574{
Chris Wilsondc979972016-05-10 14:10:04 +01006575 if (IS_IRONLAKE_M(dev_priv)) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006576 ironlake_disable_drps(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01006577 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
6578 intel_suspend_gt_powersave(dev_priv);
Imre Deake4948372014-05-12 18:35:04 +03006579
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006580 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsondc979972016-05-10 14:10:04 +01006581 if (INTEL_INFO(dev_priv)->gen >= 9) {
6582 gen9_disable_rc6(dev_priv);
6583 gen9_disable_rps(dev_priv);
6584 } else if (IS_CHERRYVIEW(dev_priv))
6585 cherryview_disable_rps(dev_priv);
6586 else if (IS_VALLEYVIEW(dev_priv))
6587 valleyview_disable_rps(dev_priv);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006588 else
Chris Wilsondc979972016-05-10 14:10:04 +01006589 gen6_disable_rps(dev_priv);
Imre Deake5347702014-11-19 15:30:02 +02006590
Chris Wilsonc0951f02013-10-10 21:58:50 +01006591 dev_priv->rps.enabled = false;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006592 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter930ebb42012-06-29 23:32:16 +02006593 }
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006594}
6595
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006596static void intel_gen6_powersave_work(struct work_struct *work)
6597{
6598 struct drm_i915_private *dev_priv =
6599 container_of(work, struct drm_i915_private,
6600 rps.delayed_resume_work.work);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006601
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006602 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006603
Chris Wilsondc979972016-05-10 14:10:04 +01006604 gen6_reset_rps_interrupts(dev_priv);
Imre Deak3cc134e2014-11-19 15:30:03 +02006605
Chris Wilsondc979972016-05-10 14:10:04 +01006606 if (IS_CHERRYVIEW(dev_priv)) {
6607 cherryview_enable_rps(dev_priv);
6608 } else if (IS_VALLEYVIEW(dev_priv)) {
6609 valleyview_enable_rps(dev_priv);
6610 } else if (INTEL_INFO(dev_priv)->gen >= 9) {
6611 gen9_enable_rc6(dev_priv);
6612 gen9_enable_rps(dev_priv);
6613 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
6614 __gen6_update_ring_freq(dev_priv);
6615 } else if (IS_BROADWELL(dev_priv)) {
6616 gen8_enable_rps(dev_priv);
6617 __gen6_update_ring_freq(dev_priv);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006618 } else {
Chris Wilsondc979972016-05-10 14:10:04 +01006619 gen6_enable_rps(dev_priv);
6620 __gen6_update_ring_freq(dev_priv);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006621 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006622
6623 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6624 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6625
6626 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6627 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6628
Chris Wilsonc0951f02013-10-10 21:58:50 +01006629 dev_priv->rps.enabled = true;
Imre Deak3cc134e2014-11-19 15:30:03 +02006630
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006631 gen6_enable_rps_interrupts(dev_priv);
Imre Deak3cc134e2014-11-19 15:30:03 +02006632
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006633 mutex_unlock(&dev_priv->rps.hw_lock);
Imre Deakc6df39b2014-04-14 20:24:29 +03006634
6635 intel_runtime_pm_put(dev_priv);
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006636}
6637
Chris Wilsondc979972016-05-10 14:10:04 +01006638void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006639{
Yu Zhangf61018b2015-02-10 19:05:52 +08006640 /* Powersaving is controlled by the host when inside a VM */
Chris Wilsonc0336662016-05-06 15:40:21 +01006641 if (intel_vgpu_active(dev_priv))
Yu Zhangf61018b2015-02-10 19:05:52 +08006642 return;
6643
Chris Wilsondc979972016-05-10 14:10:04 +01006644 if (IS_IRONLAKE_M(dev_priv)) {
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006645 ironlake_enable_drps(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01006646 mutex_lock(&dev_priv->dev->struct_mutex);
6647 intel_init_emon(dev_priv);
6648 mutex_unlock(&dev_priv->dev->struct_mutex);
6649 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006650 /*
6651 * PCU communication is slow and this doesn't need to be
6652 * done at any specific time, so do this out of our fast path
6653 * to make resume and init faster.
Imre Deakc6df39b2014-04-14 20:24:29 +03006654 *
6655 * We depend on the HW RC6 power context save/restore
6656 * mechanism when entering D3 through runtime PM suspend. So
6657 * disable RPM until RPS/RC6 is properly setup. We can only
6658 * get here via the driver load/system resume/runtime resume
6659 * paths, so the _noresume version is enough (and in case of
6660 * runtime resume it's necessary).
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006661 */
Imre Deakc6df39b2014-04-14 20:24:29 +03006662 if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work,
6663 round_jiffies_up_relative(HZ)))
6664 intel_runtime_pm_get_noresume(dev_priv);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006665 }
6666}
6667
Chris Wilsondc979972016-05-10 14:10:04 +01006668void intel_reset_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakc6df39b2014-04-14 20:24:29 +03006669{
Chris Wilsondc979972016-05-10 14:10:04 +01006670 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deakdbea3ce2014-12-15 18:59:28 +02006671 return;
6672
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006673 gen6_suspend_rps(dev_priv);
Imre Deakc6df39b2014-04-14 20:24:29 +03006674 dev_priv->rps.enabled = false;
Imre Deakc6df39b2014-04-14 20:24:29 +03006675}
6676
Daniel Vetter3107bd42012-10-31 22:52:31 +01006677static void ibx_init_clock_gating(struct drm_device *dev)
6678{
6679 struct drm_i915_private *dev_priv = dev->dev_private;
6680
6681 /*
6682 * On Ibex Peak and Cougar Point, we need to disable clock
6683 * gating for the panel power sequencer or it will fail to
6684 * start up when no ports are active.
6685 */
6686 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6687}
6688
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006689static void g4x_disable_trickle_feed(struct drm_device *dev)
6690{
6691 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006692 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006693
Damien Lespiau055e3932014-08-18 13:49:10 +01006694 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006695 I915_WRITE(DSPCNTR(pipe),
6696 I915_READ(DSPCNTR(pipe)) |
6697 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006698
6699 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6700 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006701 }
6702}
6703
Ville Syrjälä017636c2013-12-05 15:51:37 +02006704static void ilk_init_lp_watermarks(struct drm_device *dev)
6705{
6706 struct drm_i915_private *dev_priv = dev->dev_private;
6707
6708 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6709 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6710 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6711
6712 /*
6713 * Don't touch WM1S_LP_EN here.
6714 * Doing so could cause underruns.
6715 */
6716}
6717
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006718static void ironlake_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006719{
6720 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006721 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006722
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006723 /*
6724 * Required for FBC
6725 * WaFbcDisableDpfcClockGating:ilk
6726 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006727 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6728 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6729 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006730
6731 I915_WRITE(PCH_3DCGDIS0,
6732 MARIUNIT_CLOCK_GATE_DISABLE |
6733 SVSMUNIT_CLOCK_GATE_DISABLE);
6734 I915_WRITE(PCH_3DCGDIS1,
6735 VFMUNIT_CLOCK_GATE_DISABLE);
6736
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006737 /*
6738 * According to the spec the following bits should be set in
6739 * order to enable memory self-refresh
6740 * The bit 22/21 of 0x42004
6741 * The bit 5 of 0x42020
6742 * The bit 15 of 0x45000
6743 */
6744 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6745 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6746 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006747 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006748 I915_WRITE(DISP_ARB_CTL,
6749 (I915_READ(DISP_ARB_CTL) |
6750 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006751
6752 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006753
6754 /*
6755 * Based on the document from hardware guys the following bits
6756 * should be set unconditionally in order to enable FBC.
6757 * The bit 22 of 0x42000
6758 * The bit 22 of 0x42004
6759 * The bit 7,8,9 of 0x42020.
6760 */
6761 if (IS_IRONLAKE_M(dev)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006762 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006763 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6764 I915_READ(ILK_DISPLAY_CHICKEN1) |
6765 ILK_FBCQ_DIS);
6766 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6767 I915_READ(ILK_DISPLAY_CHICKEN2) |
6768 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006769 }
6770
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006771 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6772
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006773 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6774 I915_READ(ILK_DISPLAY_CHICKEN2) |
6775 ILK_ELPIN_409_SELECT);
6776 I915_WRITE(_3D_CHICKEN2,
6777 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6778 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006779
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006780 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006781 I915_WRITE(CACHE_MODE_0,
6782 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006783
Akash Goel4e046322014-04-04 17:14:38 +05306784 /* WaDisable_RenderCache_OperationalFlush:ilk */
6785 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6786
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006787 g4x_disable_trickle_feed(dev);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006788
Daniel Vetter3107bd42012-10-31 22:52:31 +01006789 ibx_init_clock_gating(dev);
6790}
6791
6792static void cpt_init_clock_gating(struct drm_device *dev)
6793{
6794 struct drm_i915_private *dev_priv = dev->dev_private;
6795 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006796 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006797
6798 /*
6799 * On Ibex Peak and Cougar Point, we need to disable clock
6800 * gating for the panel power sequencer or it will fail to
6801 * start up when no ports are active.
6802 */
Jesse Barnescd664072013-10-02 10:34:19 -07006803 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6804 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6805 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006806 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6807 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006808 /* The below fixes the weird display corruption, a few pixels shifted
6809 * downward, on (only) LVDS of some HP laptops with IVY.
6810 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006811 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006812 val = I915_READ(TRANS_CHICKEN2(pipe));
6813 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6814 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006815 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006816 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006817 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6818 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6819 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006820 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6821 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006822 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006823 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006824 I915_WRITE(TRANS_CHICKEN1(pipe),
6825 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6826 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006827}
6828
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006829static void gen6_check_mch_setup(struct drm_device *dev)
6830{
6831 struct drm_i915_private *dev_priv = dev->dev_private;
6832 uint32_t tmp;
6833
6834 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006835 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6836 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6837 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006838}
6839
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006840static void gen6_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006841{
6842 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau231e54f2012-10-19 17:55:41 +01006843 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006844
Damien Lespiau231e54f2012-10-19 17:55:41 +01006845 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006846
6847 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6848 I915_READ(ILK_DISPLAY_CHICKEN2) |
6849 ILK_ELPIN_409_SELECT);
6850
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006851 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006852 I915_WRITE(_3D_CHICKEN,
6853 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6854
Akash Goel4e046322014-04-04 17:14:38 +05306855 /* WaDisable_RenderCache_OperationalFlush:snb */
6856 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6857
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006858 /*
6859 * BSpec recoomends 8x4 when MSAA is used,
6860 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006861 *
6862 * Note that PS/WM thread counts depend on the WIZ hashing
6863 * disable bit, which we don't touch here, but it's good
6864 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006865 */
6866 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006867 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006868
Ville Syrjälä017636c2013-12-05 15:51:37 +02006869 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006870
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006871 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006872 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006873
6874 I915_WRITE(GEN6_UCGCTL1,
6875 I915_READ(GEN6_UCGCTL1) |
6876 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6877 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6878
6879 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6880 * gating disable must be set. Failure to set it results in
6881 * flickering pixels due to Z write ordering failures after
6882 * some amount of runtime in the Mesa "fire" demo, and Unigine
6883 * Sanctuary and Tropics, and apparently anything else with
6884 * alpha test or pixel discard.
6885 *
6886 * According to the spec, bit 11 (RCCUNIT) must also be set,
6887 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006888 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006889 * WaDisableRCCUnitClockGating:snb
6890 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006891 */
6892 I915_WRITE(GEN6_UCGCTL2,
6893 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6894 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6895
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006896 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006897 I915_WRITE(_3D_CHICKEN3,
6898 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006899
6900 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006901 * Bspec says:
6902 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6903 * 3DSTATE_SF number of SF output attributes is more than 16."
6904 */
6905 I915_WRITE(_3D_CHICKEN3,
6906 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6907
6908 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006909 * According to the spec the following bits should be
6910 * set in order to enable memory self-refresh and fbc:
6911 * The bit21 and bit22 of 0x42000
6912 * The bit21 and bit22 of 0x42004
6913 * The bit5 and bit7 of 0x42020
6914 * The bit14 of 0x70180
6915 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006916 *
6917 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006918 */
6919 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6920 I915_READ(ILK_DISPLAY_CHICKEN1) |
6921 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6922 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6923 I915_READ(ILK_DISPLAY_CHICKEN2) |
6924 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006925 I915_WRITE(ILK_DSPCLK_GATE_D,
6926 I915_READ(ILK_DSPCLK_GATE_D) |
6927 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6928 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006929
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006930 g4x_disable_trickle_feed(dev);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006931
Daniel Vetter3107bd42012-10-31 22:52:31 +01006932 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006933
6934 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006935}
6936
6937static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6938{
6939 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
6940
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006941 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006942 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006943 *
6944 * This actually overrides the dispatch
6945 * mode for all thread types.
6946 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006947 reg &= ~GEN7_FF_SCHED_MASK;
6948 reg |= GEN7_FF_TS_SCHED_HW;
6949 reg |= GEN7_FF_VS_SCHED_HW;
6950 reg |= GEN7_FF_DS_SCHED_HW;
6951
6952 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6953}
6954
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006955static void lpt_init_clock_gating(struct drm_device *dev)
6956{
6957 struct drm_i915_private *dev_priv = dev->dev_private;
6958
6959 /*
6960 * TODO: this bit should only be enabled when really needed, then
6961 * disabled when not needed anymore in order to save power.
6962 */
Ville Syrjäläc2699522015-08-27 23:55:59 +03006963 if (HAS_PCH_LPT_LP(dev))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006964 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6965 I915_READ(SOUTH_DSPCLK_GATE_D) |
6966 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006967
6968 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03006969 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
6970 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006971 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006972}
6973
Imre Deak7d708ee2013-04-17 14:04:50 +03006974static void lpt_suspend_hw(struct drm_device *dev)
6975{
6976 struct drm_i915_private *dev_priv = dev->dev_private;
6977
Ville Syrjäläc2699522015-08-27 23:55:59 +03006978 if (HAS_PCH_LPT_LP(dev)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03006979 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
6980
6981 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6982 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6983 }
6984}
6985
Imre Deak450174f2016-05-03 15:54:21 +03006986static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
6987 int general_prio_credits,
6988 int high_prio_credits)
6989{
6990 u32 misccpctl;
6991
6992 /* WaTempDisableDOPClkGating:bdw */
6993 misccpctl = I915_READ(GEN7_MISCCPCTL);
6994 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6995
6996 I915_WRITE(GEN8_L3SQCREG1,
6997 L3_GENERAL_PRIO_CREDITS(general_prio_credits) |
6998 L3_HIGH_PRIO_CREDITS(high_prio_credits));
6999
7000 /*
7001 * Wait at least 100 clocks before re-enabling clock gating.
7002 * See the definition of L3SQCREG1 in BSpec.
7003 */
7004 POSTING_READ(GEN8_L3SQCREG1);
7005 udelay(1);
7006 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
7007}
7008
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007009static void kabylake_init_clock_gating(struct drm_device *dev)
7010{
7011 struct drm_i915_private *dev_priv = dev->dev_private;
7012
Mika Kuoppalab033bb62016-06-07 17:19:04 +03007013 gen9_init_clock_gating(dev);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007014
7015 /* WaDisableSDEUnitClockGating:kbl */
7016 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7017 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7018 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03007019
7020 /* WaDisableGamClockGating:kbl */
7021 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7022 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7023 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007024
7025 /* WaFbcNukeOnHostModify:kbl */
7026 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7027 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007028}
7029
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007030static void skylake_init_clock_gating(struct drm_device *dev)
7031{
Mika Kuoppala44fff992016-06-07 17:19:09 +03007032 struct drm_i915_private *dev_priv = dev->dev_private;
7033
Mika Kuoppalab033bb62016-06-07 17:19:04 +03007034 gen9_init_clock_gating(dev);
Mika Kuoppala44fff992016-06-07 17:19:09 +03007035
7036 /* WAC6entrylatency:skl */
7037 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
7038 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007039
7040 /* WaFbcNukeOnHostModify:skl */
7041 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7042 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007043}
7044
Paulo Zanoni47c2bd92014-08-21 17:09:37 -03007045static void broadwell_init_clock_gating(struct drm_device *dev)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007046{
7047 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00007048 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007049
Ville Syrjälä7ad0dba2015-05-19 20:32:55 +03007050 ilk_init_lp_watermarks(dev);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007051
Ben Widawskyab57fff2013-12-12 15:28:04 -08007052 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007053 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007054
Ben Widawskyab57fff2013-12-12 15:28:04 -08007055 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007056 I915_WRITE(CHICKEN_PAR1_1,
7057 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
7058
Ben Widawskyab57fff2013-12-12 15:28:04 -08007059 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01007060 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00007061 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02007062 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02007063 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007064 }
Ben Widawsky63801f22013-12-12 17:26:03 -08007065
Ben Widawskyab57fff2013-12-12 15:28:04 -08007066 /* WaVSRefCountFullforceMissDisable:bdw */
7067 /* WaDSRefCountFullforceMissDisable:bdw */
7068 I915_WRITE(GEN7_FF_THREAD_MODE,
7069 I915_READ(GEN7_FF_THREAD_MODE) &
7070 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02007071
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02007072 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7073 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02007074
7075 /* WaDisableSDEUnitClockGating:bdw */
7076 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7077 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00007078
Imre Deak450174f2016-05-03 15:54:21 +03007079 /* WaProgramL3SqcReg1Default:bdw */
7080 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03007081
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007082 /*
7083 * WaGttCachingOffByDefault:bdw
7084 * GTT cache may not work with big pages, so if those
7085 * are ever enabled GTT cache may need to be disabled.
7086 */
7087 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
7088
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03007089 /* WaKVMNotificationOnConfigChange:bdw */
7090 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
7091 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
7092
Paulo Zanoni89d6b2b2014-08-21 17:09:36 -03007093 lpt_init_clock_gating(dev);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007094}
7095
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007096static void haswell_init_clock_gating(struct drm_device *dev)
7097{
7098 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007099
Ville Syrjälä017636c2013-12-05 15:51:37 +02007100 ilk_init_lp_watermarks(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007101
Francisco Jerezf3fc4882013-10-02 15:53:16 -07007102 /* L3 caching of data atomics doesn't work -- disable it. */
7103 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
7104 I915_WRITE(HSW_ROW_CHICKEN3,
7105 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
7106
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007107 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007108 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7109 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7110 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7111
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02007112 /* WaVSRefCountFullforceMissDisable:hsw */
7113 I915_WRITE(GEN7_FF_THREAD_MODE,
7114 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007115
Akash Goel4e046322014-04-04 17:14:38 +05307116 /* WaDisable_RenderCache_OperationalFlush:hsw */
7117 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7118
Chia-I Wufe27c602014-01-28 13:29:33 +08007119 /* enable HiZ Raw Stall Optimization */
7120 I915_WRITE(CACHE_MODE_0_GEN7,
7121 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7122
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007123 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007124 I915_WRITE(CACHE_MODE_1,
7125 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007126
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007127 /*
7128 * BSpec recommends 8x4 when MSAA is used,
7129 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007130 *
7131 * Note that PS/WM thread counts depend on the WIZ hashing
7132 * disable bit, which we don't touch here, but it's good
7133 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007134 */
7135 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007136 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007137
Kenneth Graunke94411592014-12-31 16:23:00 -08007138 /* WaSampleCChickenBitEnable:hsw */
7139 I915_WRITE(HALF_SLICE_CHICKEN3,
7140 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7141
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007142 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007143 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7144
Paulo Zanoni90a88642013-05-03 17:23:45 -03007145 /* WaRsPkgCStateDisplayPMReq:hsw */
7146 I915_WRITE(CHICKEN_PAR1_1,
7147 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007148
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007149 lpt_init_clock_gating(dev);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007150}
7151
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007152static void ivybridge_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007153{
7154 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky20848222012-05-04 18:58:59 -07007155 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007156
Ville Syrjälä017636c2013-12-05 15:51:37 +02007157 ilk_init_lp_watermarks(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007158
Damien Lespiau231e54f2012-10-19 17:55:41 +01007159 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007160
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007161 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007162 I915_WRITE(_3D_CHICKEN3,
7163 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7164
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007165 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007166 I915_WRITE(IVB_CHICKEN3,
7167 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7168 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7169
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007170 /* WaDisablePSDDualDispatchEnable:ivb */
Jesse Barnes12f33822012-10-25 12:15:45 -07007171 if (IS_IVB_GT1(dev))
7172 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7173 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007174
Akash Goel4e046322014-04-04 17:14:38 +05307175 /* WaDisable_RenderCache_OperationalFlush:ivb */
7176 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7177
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007178 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007179 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7180 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7181
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007182 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007183 I915_WRITE(GEN7_L3CNTLREG1,
7184 GEN7_WA_FOR_GEN7_L3_CONTROL);
7185 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007186 GEN7_WA_L3_CHICKEN_MODE);
7187 if (IS_IVB_GT1(dev))
7188 I915_WRITE(GEN7_ROW_CHICKEN2,
7189 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007190 else {
7191 /* must write both registers */
7192 I915_WRITE(GEN7_ROW_CHICKEN2,
7193 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007194 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7195 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007196 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007197
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007198 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007199 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7200 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7201
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007202 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007203 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007204 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007205 */
7206 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007207 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007208
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007209 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007210 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7211 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7212 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7213
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007214 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007215
7216 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007217
Chris Wilson22721342014-03-04 09:41:43 +00007218 if (0) { /* causes HiZ corruption on ivb:gt1 */
7219 /* enable HiZ Raw Stall Optimization */
7220 I915_WRITE(CACHE_MODE_0_GEN7,
7221 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7222 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007223
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007224 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007225 I915_WRITE(CACHE_MODE_1,
7226 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007227
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007228 /*
7229 * BSpec recommends 8x4 when MSAA is used,
7230 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007231 *
7232 * Note that PS/WM thread counts depend on the WIZ hashing
7233 * disable bit, which we don't touch here, but it's good
7234 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007235 */
7236 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007237 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007238
Ben Widawsky20848222012-05-04 18:58:59 -07007239 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7240 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7241 snpcr |= GEN6_MBC_SNPCR_MED;
7242 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007243
Ben Widawskyab5c6082013-04-05 13:12:41 -07007244 if (!HAS_PCH_NOP(dev))
7245 cpt_init_clock_gating(dev);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007246
7247 gen6_check_mch_setup(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007248}
7249
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007250static void valleyview_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007251{
7252 struct drm_i915_private *dev_priv = dev->dev_private;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007253
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007254 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007255 I915_WRITE(_3D_CHICKEN3,
7256 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7257
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007258 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007259 I915_WRITE(IVB_CHICKEN3,
7260 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7261 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7262
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007263 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007264 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007265 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007266 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7267 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007268
Akash Goel4e046322014-04-04 17:14:38 +05307269 /* WaDisable_RenderCache_OperationalFlush:vlv */
7270 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7271
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007272 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007273 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7274 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7275
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007276 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007277 I915_WRITE(GEN7_ROW_CHICKEN2,
7278 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7279
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007280 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007281 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7282 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7283 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7284
Ville Syrjälä46680e02014-01-22 21:33:01 +02007285 gen7_setup_fixed_func_scheduler(dev_priv);
7286
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007287 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007288 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007289 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007290 */
7291 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007292 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007293
Akash Goelc98f5062014-03-24 23:00:07 +05307294 /* WaDisableL3Bank2xClockGate:vlv
7295 * Disabling L3 clock gating- MMIO 940c[25] = 1
7296 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7297 I915_WRITE(GEN7_UCGCTL4,
7298 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007299
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007300 /*
7301 * BSpec says this must be set, even though
7302 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7303 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007304 I915_WRITE(CACHE_MODE_1,
7305 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007306
7307 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007308 * BSpec recommends 8x4 when MSAA is used,
7309 * however in practice 16x4 seems fastest.
7310 *
7311 * Note that PS/WM thread counts depend on the WIZ hashing
7312 * disable bit, which we don't touch here, but it's good
7313 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7314 */
7315 I915_WRITE(GEN7_GT_MODE,
7316 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7317
7318 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007319 * WaIncreaseL3CreditsForVLVB0:vlv
7320 * This is the hardware default actually.
7321 */
7322 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7323
7324 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007325 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007326 * Disable clock gating on th GCFG unit to prevent a delay
7327 * in the reporting of vblank events.
7328 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007329 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007330}
7331
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007332static void cherryview_init_clock_gating(struct drm_device *dev)
7333{
7334 struct drm_i915_private *dev_priv = dev->dev_private;
7335
Ville Syrjälä232ce332014-04-09 13:28:35 +03007336 /* WaVSRefCountFullforceMissDisable:chv */
7337 /* WaDSRefCountFullforceMissDisable:chv */
7338 I915_WRITE(GEN7_FF_THREAD_MODE,
7339 I915_READ(GEN7_FF_THREAD_MODE) &
7340 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007341
7342 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7343 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7344 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007345
7346 /* WaDisableCSUnitClockGating:chv */
7347 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7348 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007349
7350 /* WaDisableSDEUnitClockGating:chv */
7351 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7352 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007353
7354 /*
Imre Deak450174f2016-05-03 15:54:21 +03007355 * WaProgramL3SqcReg1Default:chv
7356 * See gfxspecs/Related Documents/Performance Guide/
7357 * LSQC Setting Recommendations.
7358 */
7359 gen8_set_l3sqc_credits(dev_priv, 38, 2);
7360
7361 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007362 * GTT cache may not work with big pages, so if those
7363 * are ever enabled GTT cache may need to be disabled.
7364 */
7365 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007366}
7367
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007368static void g4x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007369{
7370 struct drm_i915_private *dev_priv = dev->dev_private;
7371 uint32_t dspclk_gate;
7372
7373 I915_WRITE(RENCLK_GATE_D1, 0);
7374 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7375 GS_UNIT_CLOCK_GATE_DISABLE |
7376 CL_UNIT_CLOCK_GATE_DISABLE);
7377 I915_WRITE(RAMCLK_GATE_D, 0);
7378 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7379 OVRUNIT_CLOCK_GATE_DISABLE |
7380 OVCUNIT_CLOCK_GATE_DISABLE;
7381 if (IS_GM45(dev))
7382 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7383 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007384
7385 /* WaDisableRenderCachePipelinedFlush */
7386 I915_WRITE(CACHE_MODE_0,
7387 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007388
Akash Goel4e046322014-04-04 17:14:38 +05307389 /* WaDisable_RenderCache_OperationalFlush:g4x */
7390 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7391
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007392 g4x_disable_trickle_feed(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007393}
7394
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007395static void crestline_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007396{
7397 struct drm_i915_private *dev_priv = dev->dev_private;
7398
7399 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7400 I915_WRITE(RENCLK_GATE_D2, 0);
7401 I915_WRITE(DSPCLK_GATE_D, 0);
7402 I915_WRITE(RAMCLK_GATE_D, 0);
7403 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007404 I915_WRITE(MI_ARB_STATE,
7405 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307406
7407 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7408 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007409}
7410
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007411static void broadwater_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007412{
7413 struct drm_i915_private *dev_priv = dev->dev_private;
7414
7415 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7416 I965_RCC_CLOCK_GATE_DISABLE |
7417 I965_RCPB_CLOCK_GATE_DISABLE |
7418 I965_ISC_CLOCK_GATE_DISABLE |
7419 I965_FBC_CLOCK_GATE_DISABLE);
7420 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007421 I915_WRITE(MI_ARB_STATE,
7422 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307423
7424 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7425 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007426}
7427
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007428static void gen3_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007429{
7430 struct drm_i915_private *dev_priv = dev->dev_private;
7431 u32 dstate = I915_READ(D_STATE);
7432
7433 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7434 DSTATE_DOT_CLOCK_GATING;
7435 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007436
7437 if (IS_PINEVIEW(dev))
7438 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007439
7440 /* IIR "flip pending" means done if this bit is set */
7441 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007442
7443 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007444 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007445
7446 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7447 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007448
7449 I915_WRITE(MI_ARB_STATE,
7450 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007451}
7452
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007453static void i85x_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007454{
7455 struct drm_i915_private *dev_priv = dev->dev_private;
7456
7457 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007458
7459 /* interrupts should cause a wake up from C3 */
7460 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7461 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007462
7463 I915_WRITE(MEM_MODE,
7464 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007465}
7466
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007467static void i830_init_clock_gating(struct drm_device *dev)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007468{
7469 struct drm_i915_private *dev_priv = dev->dev_private;
7470
7471 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03007472
7473 I915_WRITE(MEM_MODE,
7474 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7475 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007476}
7477
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007478void intel_init_clock_gating(struct drm_device *dev)
7479{
7480 struct drm_i915_private *dev_priv = dev->dev_private;
7481
Imre Deakbb400da2016-03-16 13:38:54 +02007482 dev_priv->display.init_clock_gating(dev);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007483}
7484
Imre Deak7d708ee2013-04-17 14:04:50 +03007485void intel_suspend_hw(struct drm_device *dev)
7486{
7487 if (HAS_PCH_LPT(dev))
7488 lpt_suspend_hw(dev);
7489}
7490
Imre Deakbb400da2016-03-16 13:38:54 +02007491static void nop_init_clock_gating(struct drm_device *dev)
7492{
7493 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
7494}
7495
7496/**
7497 * intel_init_clock_gating_hooks - setup the clock gating hooks
7498 * @dev_priv: device private
7499 *
7500 * Setup the hooks that configure which clocks of a given platform can be
7501 * gated and also apply various GT and display specific workarounds for these
7502 * platforms. Note that some GT specific workarounds are applied separately
7503 * when GPU contexts or batchbuffers start their execution.
7504 */
7505void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7506{
7507 if (IS_SKYLAKE(dev_priv))
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007508 dev_priv->display.init_clock_gating = skylake_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007509 else if (IS_KABYLAKE(dev_priv))
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007510 dev_priv->display.init_clock_gating = kabylake_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007511 else if (IS_BROXTON(dev_priv))
7512 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
7513 else if (IS_BROADWELL(dev_priv))
7514 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
7515 else if (IS_CHERRYVIEW(dev_priv))
7516 dev_priv->display.init_clock_gating = cherryview_init_clock_gating;
7517 else if (IS_HASWELL(dev_priv))
7518 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
7519 else if (IS_IVYBRIDGE(dev_priv))
7520 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
7521 else if (IS_VALLEYVIEW(dev_priv))
7522 dev_priv->display.init_clock_gating = valleyview_init_clock_gating;
7523 else if (IS_GEN6(dev_priv))
7524 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
7525 else if (IS_GEN5(dev_priv))
7526 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
7527 else if (IS_G4X(dev_priv))
7528 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
7529 else if (IS_CRESTLINE(dev_priv))
7530 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
7531 else if (IS_BROADWATER(dev_priv))
7532 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7533 else if (IS_GEN3(dev_priv))
7534 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7535 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7536 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7537 else if (IS_GEN2(dev_priv))
7538 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7539 else {
7540 MISSING_CASE(INTEL_DEVID(dev_priv));
7541 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7542 }
7543}
7544
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007545/* Set up chip specific power management-related functions */
7546void intel_init_pm(struct drm_device *dev)
7547{
7548 struct drm_i915_private *dev_priv = dev->dev_private;
7549
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007550 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007551
Daniel Vetterc921aba2012-04-26 23:28:17 +02007552 /* For cxsr */
7553 if (IS_PINEVIEW(dev))
7554 i915_pineview_get_mem_freq(dev);
7555 else if (IS_GEN5(dev))
7556 i915_ironlake_get_mem_freq(dev);
7557
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007558 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00007559 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00007560 skl_setup_wm_latency(dev);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00007561 dev_priv->display.update_wm = skl_update_wm;
Matt Roper98d39492016-05-12 07:06:03 -07007562 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Damien Lespiauc83155a2014-03-28 00:18:35 +05307563 } else if (HAS_PCH_SPLIT(dev)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00007564 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007565
Ville Syrjäläbd602542014-01-07 16:14:10 +02007566 if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] &&
7567 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
7568 (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] &&
7569 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007570 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007571 dev_priv->display.compute_intermediate_wm =
7572 ilk_compute_intermediate_wm;
7573 dev_priv->display.initial_watermarks =
7574 ilk_initial_watermarks;
7575 dev_priv->display.optimize_watermarks =
7576 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007577 } else {
7578 DRM_DEBUG_KMS("Failed to read display plane latency. "
7579 "Disable CxSR\n");
7580 }
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007581 } else if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03007582 vlv_setup_wm_latency(dev);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03007583 dev_priv->display.update_wm = vlv_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007584 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007585 vlv_setup_wm_latency(dev);
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007586 dev_priv->display.update_wm = vlv_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007587 } else if (IS_PINEVIEW(dev)) {
7588 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev),
7589 dev_priv->is_ddr3,
7590 dev_priv->fsb_freq,
7591 dev_priv->mem_freq)) {
7592 DRM_INFO("failed to find known CxSR latency "
7593 "(found ddr%s fsb freq %d, mem freq %d), "
7594 "disabling CxSR\n",
7595 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7596 dev_priv->fsb_freq, dev_priv->mem_freq);
7597 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007598 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007599 dev_priv->display.update_wm = NULL;
7600 } else
7601 dev_priv->display.update_wm = pineview_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007602 } else if (IS_G4X(dev)) {
7603 dev_priv->display.update_wm = g4x_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007604 } else if (IS_GEN4(dev)) {
7605 dev_priv->display.update_wm = i965_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007606 } else if (IS_GEN3(dev)) {
7607 dev_priv->display.update_wm = i9xx_update_wm;
7608 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007609 } else if (IS_GEN2(dev)) {
7610 if (INTEL_INFO(dev)->num_pipes == 1) {
7611 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007612 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007613 } else {
7614 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007615 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007616 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007617 } else {
7618 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007619 }
7620}
7621
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007622int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007623{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007624 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007625
Chris Wilson3f5582d2016-06-30 15:32:45 +01007626 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7627 * use te fw I915_READ variants to reduce the amount of work
7628 * required when reading/writing.
7629 */
7630
7631 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007632 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7633 return -EAGAIN;
7634 }
7635
Chris Wilson3f5582d2016-06-30 15:32:45 +01007636 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
7637 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
7638 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007639
Chris Wilson3f5582d2016-06-30 15:32:45 +01007640 if (intel_wait_for_register_fw(dev_priv,
7641 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7642 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007643 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7644 return -ETIMEDOUT;
7645 }
7646
Chris Wilson3f5582d2016-06-30 15:32:45 +01007647 *val = I915_READ_FW(GEN6_PCODE_DATA);
7648 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007649
7650 return 0;
7651}
7652
Chris Wilson3f5582d2016-06-30 15:32:45 +01007653int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
7654 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007655{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007656 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007657
Chris Wilson3f5582d2016-06-30 15:32:45 +01007658 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7659 * use te fw I915_READ variants to reduce the amount of work
7660 * required when reading/writing.
7661 */
7662
7663 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007664 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7665 return -EAGAIN;
7666 }
7667
Chris Wilson3f5582d2016-06-30 15:32:45 +01007668 I915_WRITE_FW(GEN6_PCODE_DATA, val);
7669 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007670
Chris Wilson3f5582d2016-06-30 15:32:45 +01007671 if (intel_wait_for_register_fw(dev_priv,
7672 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7673 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007674 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7675 return -ETIMEDOUT;
7676 }
7677
Chris Wilson3f5582d2016-06-30 15:32:45 +01007678 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007679
7680 return 0;
7681}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007682
Ville Syrjälädd06f882014-11-10 22:55:12 +02007683static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7684{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007685 /*
7686 * N = val - 0xb7
7687 * Slow = Fast = GPLL ref * N
7688 */
7689 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007690}
7691
Fengguang Wub55dd642014-07-12 11:21:39 +02007692static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007693{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007694 return DIV_ROUND_CLOSEST(1000 * val, dev_priv->rps.gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007695}
7696
Fengguang Wub55dd642014-07-12 11:21:39 +02007697static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307698{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007699 /*
7700 * N = val / 2
7701 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
7702 */
7703 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307704}
7705
Fengguang Wub55dd642014-07-12 11:21:39 +02007706static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307707{
Ville Syrjälä1c147622014-08-18 14:42:43 +03007708 /* CHV needs even values */
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007709 return DIV_ROUND_CLOSEST(2 * 1000 * val, dev_priv->rps.gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307710}
7711
Ville Syrjälä616bc822015-01-23 21:04:25 +02007712int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7713{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007714 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007715 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
7716 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007717 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007718 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007719 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007720 return byt_gpu_freq(dev_priv, val);
7721 else
7722 return val * GT_FREQUENCY_MULTIPLIER;
7723}
7724
Ville Syrjälä616bc822015-01-23 21:04:25 +02007725int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7726{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007727 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007728 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
7729 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007730 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007731 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007732 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007733 return byt_freq_opcode(dev_priv, val);
7734 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007735 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05307736}
7737
Chris Wilson6ad790c2015-04-07 16:20:31 +01007738struct request_boost {
7739 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02007740 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007741};
7742
7743static void __intel_rps_boost_work(struct work_struct *work)
7744{
7745 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01007746 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007747
Chris Wilsone61b9952015-04-27 13:41:24 +01007748 if (!i915_gem_request_completed(req, true))
Chris Wilsonc0336662016-05-06 15:40:21 +01007749 gen6_rps_boost(req->i915, NULL, req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007750
Chris Wilson73db04c2016-04-28 09:56:55 +01007751 i915_gem_request_unreference(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007752 kfree(boost);
7753}
7754
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007755void intel_queue_rps_boost_for_request(struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007756{
7757 struct request_boost *boost;
7758
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007759 if (req == NULL || INTEL_GEN(req->i915) < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007760 return;
7761
Chris Wilsone61b9952015-04-27 13:41:24 +01007762 if (i915_gem_request_completed(req, true))
7763 return;
7764
Chris Wilson6ad790c2015-04-07 16:20:31 +01007765 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
7766 if (boost == NULL)
7767 return;
7768
Daniel Vettereed29a52015-05-21 14:21:25 +02007769 i915_gem_request_reference(req);
7770 boost->req = req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007771
7772 INIT_WORK(&boost->work, __intel_rps_boost_work);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007773 queue_work(req->i915->wq, &boost->work);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007774}
7775
Daniel Vetterf742a552013-12-06 10:17:53 +01007776void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01007777{
7778 struct drm_i915_private *dev_priv = dev->dev_private;
7779
Daniel Vetterf742a552013-12-06 10:17:53 +01007780 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01007781 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01007782
Chris Wilson907b28c2013-07-19 20:36:52 +01007783 INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work,
7784 intel_gen6_powersave_work);
Chris Wilson1854d5c2015-04-07 16:20:32 +01007785 INIT_LIST_HEAD(&dev_priv->rps.clients);
Chris Wilson2e1b8732015-04-27 13:41:22 +01007786 INIT_LIST_HEAD(&dev_priv->rps.semaphores.link);
7787 INIT_LIST_HEAD(&dev_priv->rps.mmioflips.link);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03007788
Paulo Zanoni33688d92014-03-07 20:08:19 -03007789 dev_priv->pm.suspended = false;
Imre Deak1f814da2015-12-16 02:52:19 +02007790 atomic_set(&dev_priv->pm.wakeref_count, 0);
Imre Deak2b19efe2015-12-15 20:10:37 +02007791 atomic_set(&dev_priv->pm.atomic_seq, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01007792}