blob: 3e9bc2ac26b440b5d29a794685034ea849263161 [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>
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +020034#include <drm/drm_atomic_helper.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030035
Ben Widawskydc39fff2013-10-18 12:32:07 -070036/**
Jani Nikula18afd442016-01-18 09:19:48 +020037 * DOC: RC6
38 *
Ben Widawskydc39fff2013-10-18 12:32:07 -070039 * RC6 is a special power stage which allows the GPU to enter an very
40 * low-voltage mode when idle, using down to 0V while at this stage. This
41 * stage is entered automatically when the GPU is idle when RC6 support is
42 * enabled, and as soon as new workload arises GPU wakes up automatically as well.
43 *
44 * There are different RC6 modes available in Intel GPU, which differentiate
45 * among each other with the latency required to enter and leave RC6 and
46 * voltage consumed by the GPU in different states.
47 *
48 * The combination of the following flags define which states GPU is allowed
49 * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
50 * RC6pp is deepest RC6. Their support by hardware varies according to the
51 * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
52 * which brings the most power savings; deeper states save more power, but
53 * require higher latency to switch to and wake up.
54 */
55#define INTEL_RC6_ENABLE (1<<0)
56#define INTEL_RC6p_ENABLE (1<<1)
57#define INTEL_RC6pp_ENABLE (1<<2)
58
Ville Syrjälä46f16e62016-10-31 22:37:22 +020059static void gen9_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppalab033bb62016-06-07 17:19:04 +030060{
Mika Kuoppalab033bb62016-06-07 17:19:04 +030061 /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl */
62 I915_WRITE(CHICKEN_PAR1_1,
63 I915_READ(CHICKEN_PAR1_1) | SKL_EDP_PSR_FIX_RDWRAP);
64
65 I915_WRITE(GEN8_CONFIG0,
66 I915_READ(GEN8_CONFIG0) | GEN9_DEFAULT_FIXES);
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030067
68 /* WaEnableChickenDCPR:skl,bxt,kbl */
69 I915_WRITE(GEN8_CHICKEN_DCPR_1,
70 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
Mika Kuoppala0f78dee2016-06-07 17:19:16 +030071
72 /* WaFbcTurnOffFbcWatermark:skl,bxt,kbl */
Mika Kuoppala303d4ea2016-06-07 17:19:17 +030073 /* WaFbcWakeMemOn:skl,bxt,kbl */
74 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
75 DISP_FBC_WM_DIS |
76 DISP_FBC_MEMORY_WAKE);
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030077
78 /* WaFbcHighMemBwCorruptionAvoidance:skl,bxt,kbl */
79 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
80 ILK_DPFC_DISABLE_DUMMY0);
Mika Kuoppalab033bb62016-06-07 17:19:04 +030081}
82
Ville Syrjälä46f16e62016-10-31 22:37:22 +020083static void bxt_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deaka82abe42015-03-27 14:00:04 +020084{
Ville Syrjälä46f16e62016-10-31 22:37:22 +020085 gen9_init_clock_gating(dev_priv);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +020086
Nick Hoatha7546152015-06-29 14:07:32 +010087 /* WaDisableSDEUnitClockGating:bxt */
88 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
89 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
90
Imre Deak32608ca2015-03-11 11:10:27 +020091 /*
92 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +020093 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +020094 */
Imre Deak32608ca2015-03-11 11:10:27 +020095 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +020096 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7a2015-12-01 10:23:52 +020097
98 /*
99 * Wa: Backlight PWM may stop in the asserted state, causing backlight
100 * to stay fully on.
101 */
102 if (IS_BXT_REVID(dev_priv, BXT_REVID_B0, REVID_FOREVER))
103 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
104 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +0200105}
106
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200107static void i915_pineview_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200108{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200109 u32 tmp;
110
111 tmp = I915_READ(CLKCFG);
112
113 switch (tmp & CLKCFG_FSB_MASK) {
114 case CLKCFG_FSB_533:
115 dev_priv->fsb_freq = 533; /* 133*4 */
116 break;
117 case CLKCFG_FSB_800:
118 dev_priv->fsb_freq = 800; /* 200*4 */
119 break;
120 case CLKCFG_FSB_667:
121 dev_priv->fsb_freq = 667; /* 167*4 */
122 break;
123 case CLKCFG_FSB_400:
124 dev_priv->fsb_freq = 400; /* 100*4 */
125 break;
126 }
127
128 switch (tmp & CLKCFG_MEM_MASK) {
129 case CLKCFG_MEM_533:
130 dev_priv->mem_freq = 533;
131 break;
132 case CLKCFG_MEM_667:
133 dev_priv->mem_freq = 667;
134 break;
135 case CLKCFG_MEM_800:
136 dev_priv->mem_freq = 800;
137 break;
138 }
139
140 /* detect pineview DDR3 setting */
141 tmp = I915_READ(CSHRDDR3CTL);
142 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
143}
144
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200145static void i915_ironlake_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200146{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200147 u16 ddrpll, csipll;
148
149 ddrpll = I915_READ16(DDRMPLL1);
150 csipll = I915_READ16(CSIPLL0);
151
152 switch (ddrpll & 0xff) {
153 case 0xc:
154 dev_priv->mem_freq = 800;
155 break;
156 case 0x10:
157 dev_priv->mem_freq = 1066;
158 break;
159 case 0x14:
160 dev_priv->mem_freq = 1333;
161 break;
162 case 0x18:
163 dev_priv->mem_freq = 1600;
164 break;
165 default:
166 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
167 ddrpll & 0xff);
168 dev_priv->mem_freq = 0;
169 break;
170 }
171
Daniel Vetter20e4d402012-08-08 23:35:39 +0200172 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200173
174 switch (csipll & 0x3ff) {
175 case 0x00c:
176 dev_priv->fsb_freq = 3200;
177 break;
178 case 0x00e:
179 dev_priv->fsb_freq = 3733;
180 break;
181 case 0x010:
182 dev_priv->fsb_freq = 4266;
183 break;
184 case 0x012:
185 dev_priv->fsb_freq = 4800;
186 break;
187 case 0x014:
188 dev_priv->fsb_freq = 5333;
189 break;
190 case 0x016:
191 dev_priv->fsb_freq = 5866;
192 break;
193 case 0x018:
194 dev_priv->fsb_freq = 6400;
195 break;
196 default:
197 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
198 csipll & 0x3ff);
199 dev_priv->fsb_freq = 0;
200 break;
201 }
202
203 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200204 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200205 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200206 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200207 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200208 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200209 }
210}
211
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300212static const struct cxsr_latency cxsr_latency_table[] = {
213 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
214 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
215 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
216 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
217 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
218
219 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
220 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
221 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
222 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
223 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
224
225 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
226 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
227 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
228 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
229 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
230
231 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
232 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
233 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
234 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
235 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
236
237 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
238 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
239 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
240 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
241 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
242
243 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
244 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
245 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
246 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
247 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
248};
249
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100250static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
251 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300252 int fsb,
253 int mem)
254{
255 const struct cxsr_latency *latency;
256 int i;
257
258 if (fsb == 0 || mem == 0)
259 return NULL;
260
261 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
262 latency = &cxsr_latency_table[i];
263 if (is_desktop == latency->is_desktop &&
264 is_ddr3 == latency->is_ddr3 &&
265 fsb == latency->fsb_freq && mem == latency->mem_freq)
266 return latency;
267 }
268
269 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
270
271 return NULL;
272}
273
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200274static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
275{
276 u32 val;
277
278 mutex_lock(&dev_priv->rps.hw_lock);
279
280 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
281 if (enable)
282 val &= ~FORCE_DDR_HIGH_FREQ;
283 else
284 val |= FORCE_DDR_HIGH_FREQ;
285 val &= ~FORCE_DDR_LOW_FREQ;
286 val |= FORCE_DDR_FREQ_REQ_ACK;
287 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
288
289 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
290 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
291 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
292
293 mutex_unlock(&dev_priv->rps.hw_lock);
294}
295
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200296static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
297{
298 u32 val;
299
300 mutex_lock(&dev_priv->rps.hw_lock);
301
302 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
303 if (enable)
304 val |= DSP_MAXFIFO_PM5_ENABLE;
305 else
306 val &= ~DSP_MAXFIFO_PM5_ENABLE;
307 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
308
309 mutex_unlock(&dev_priv->rps.hw_lock);
310}
311
Ville Syrjäläf4998962015-03-10 17:02:21 +0200312#define FW_WM(value, plane) \
313 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
314
Imre Deak5209b1f2014-07-01 12:36:17 +0300315void intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300316{
Imre Deak5209b1f2014-07-01 12:36:17 +0300317 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300318
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100319 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak5209b1f2014-07-01 12:36:17 +0300320 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300321 POSTING_READ(FW_BLC_SELF_VLV);
Ville Syrjälä852eb002015-06-24 22:00:07 +0300322 dev_priv->wm.vlv.cxsr = enable;
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +0100323 } else if (IS_G4X(dev_priv) || IS_CRESTLINE(dev_priv)) {
Imre Deak5209b1f2014-07-01 12:36:17 +0300324 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300325 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200326 } else if (IS_PINEVIEW(dev_priv)) {
Imre Deak5209b1f2014-07-01 12:36:17 +0300327 val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN;
328 val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0;
329 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300330 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100331 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Imre Deak5209b1f2014-07-01 12:36:17 +0300332 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
333 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
334 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300335 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100336 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300337 /*
338 * FIXME can't find a bit like this for 915G, and
339 * and yet it does have the related watermark in
340 * FW_BLC_SELF. What's going on?
341 */
Imre Deak5209b1f2014-07-01 12:36:17 +0300342 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
343 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
344 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300345 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300346 } else {
347 return;
348 }
349
350 DRM_DEBUG_KMS("memory self-refresh is %s\n",
351 enable ? "enabled" : "disabled");
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300352}
353
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200354
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300355/*
356 * Latency for FIFO fetches is dependent on several factors:
357 * - memory configuration (speed, channels)
358 * - chipset
359 * - current MCH state
360 * It can be fairly high in some situations, so here we assume a fairly
361 * pessimal value. It's a tradeoff between extra memory fetches (if we
362 * set this value too high, the FIFO will fetch frequently to stay full)
363 * and power consumption (set it too low to save power and we might see
364 * FIFO underruns and display "flicker").
365 *
366 * A value of 5us seems to be a good balance; safe for very low end
367 * platforms but not overly aggressive on lower latency configs.
368 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100369static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300370
Ville Syrjäläb5004722015-03-05 21:19:47 +0200371#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
372 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
373
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200374static int vlv_get_fifo_size(struct drm_i915_private *dev_priv,
Ville Syrjäläb5004722015-03-05 21:19:47 +0200375 enum pipe pipe, int plane)
376{
Ville Syrjäläb5004722015-03-05 21:19:47 +0200377 int sprite0_start, sprite1_start, size;
378
379 switch (pipe) {
380 uint32_t dsparb, dsparb2, dsparb3;
381 case PIPE_A:
382 dsparb = I915_READ(DSPARB);
383 dsparb2 = I915_READ(DSPARB2);
384 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
385 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
386 break;
387 case PIPE_B:
388 dsparb = I915_READ(DSPARB);
389 dsparb2 = I915_READ(DSPARB2);
390 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
391 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
392 break;
393 case PIPE_C:
394 dsparb2 = I915_READ(DSPARB2);
395 dsparb3 = I915_READ(DSPARB3);
396 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
397 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
398 break;
399 default:
400 return 0;
401 }
402
403 switch (plane) {
404 case 0:
405 size = sprite0_start;
406 break;
407 case 1:
408 size = sprite1_start - sprite0_start;
409 break;
410 case 2:
411 size = 512 - 1 - sprite1_start;
412 break;
413 default:
414 return 0;
415 }
416
417 DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n",
418 pipe_name(pipe), plane == 0 ? "primary" : "sprite",
419 plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1),
420 size);
421
422 return size;
423}
424
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200425static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300426{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300427 uint32_t dsparb = I915_READ(DSPARB);
428 int size;
429
430 size = dsparb & 0x7f;
431 if (plane)
432 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
433
434 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
435 plane ? "B" : "A", size);
436
437 return size;
438}
439
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200440static int i830_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300441{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300442 uint32_t dsparb = I915_READ(DSPARB);
443 int size;
444
445 size = dsparb & 0x1ff;
446 if (plane)
447 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
448 size >>= 1; /* Convert to cachelines */
449
450 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
451 plane ? "B" : "A", size);
452
453 return size;
454}
455
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200456static int i845_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300457{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300458 uint32_t dsparb = I915_READ(DSPARB);
459 int size;
460
461 size = dsparb & 0x7f;
462 size >>= 2; /* Convert to cachelines */
463
464 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
465 plane ? "B" : "A",
466 size);
467
468 return size;
469}
470
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300471/* Pineview has different values for various configs */
472static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300473 .fifo_size = PINEVIEW_DISPLAY_FIFO,
474 .max_wm = PINEVIEW_MAX_WM,
475 .default_wm = PINEVIEW_DFT_WM,
476 .guard_size = PINEVIEW_GUARD_WM,
477 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300478};
479static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300480 .fifo_size = PINEVIEW_DISPLAY_FIFO,
481 .max_wm = PINEVIEW_MAX_WM,
482 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
483 .guard_size = PINEVIEW_GUARD_WM,
484 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300485};
486static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300487 .fifo_size = PINEVIEW_CURSOR_FIFO,
488 .max_wm = PINEVIEW_CURSOR_MAX_WM,
489 .default_wm = PINEVIEW_CURSOR_DFT_WM,
490 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
491 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300492};
493static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300494 .fifo_size = PINEVIEW_CURSOR_FIFO,
495 .max_wm = PINEVIEW_CURSOR_MAX_WM,
496 .default_wm = PINEVIEW_CURSOR_DFT_WM,
497 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
498 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300499};
500static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300501 .fifo_size = G4X_FIFO_SIZE,
502 .max_wm = G4X_MAX_WM,
503 .default_wm = G4X_MAX_WM,
504 .guard_size = 2,
505 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300506};
507static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300508 .fifo_size = I965_CURSOR_FIFO,
509 .max_wm = I965_CURSOR_MAX_WM,
510 .default_wm = I965_CURSOR_DFT_WM,
511 .guard_size = 2,
512 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300513};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300514static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300515 .fifo_size = I965_CURSOR_FIFO,
516 .max_wm = I965_CURSOR_MAX_WM,
517 .default_wm = I965_CURSOR_DFT_WM,
518 .guard_size = 2,
519 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300520};
521static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300522 .fifo_size = I945_FIFO_SIZE,
523 .max_wm = I915_MAX_WM,
524 .default_wm = 1,
525 .guard_size = 2,
526 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300527};
528static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300529 .fifo_size = I915_FIFO_SIZE,
530 .max_wm = I915_MAX_WM,
531 .default_wm = 1,
532 .guard_size = 2,
533 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300534};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300535static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300536 .fifo_size = I855GM_FIFO_SIZE,
537 .max_wm = I915_MAX_WM,
538 .default_wm = 1,
539 .guard_size = 2,
540 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300541};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300542static const struct intel_watermark_params i830_bc_wm_info = {
543 .fifo_size = I855GM_FIFO_SIZE,
544 .max_wm = I915_MAX_WM/2,
545 .default_wm = 1,
546 .guard_size = 2,
547 .cacheline_size = I830_FIFO_LINE_SIZE,
548};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200549static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300550 .fifo_size = I830_FIFO_SIZE,
551 .max_wm = I915_MAX_WM,
552 .default_wm = 1,
553 .guard_size = 2,
554 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300555};
556
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300557/**
558 * intel_calculate_wm - calculate watermark level
559 * @clock_in_khz: pixel clock
560 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200561 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300562 * @latency_ns: memory latency for the platform
563 *
564 * Calculate the watermark level (the level at which the display plane will
565 * start fetching from memory again). Each chip has a different display
566 * FIFO size and allocation, so the caller needs to figure that out and pass
567 * in the correct intel_watermark_params structure.
568 *
569 * As the pixel clock runs, the FIFO will be drained at a rate that depends
570 * on the pixel size. When it reaches the watermark level, it'll start
571 * fetching FIFO line sized based chunks from memory until the FIFO fills
572 * past the watermark point. If the FIFO drains completely, a FIFO underrun
573 * will occur, and a display engine hang could result.
574 */
575static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
576 const struct intel_watermark_params *wm,
Ville Syrjäläac484962016-01-20 21:05:26 +0200577 int fifo_size, int cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300578 unsigned long latency_ns)
579{
580 long entries_required, wm_size;
581
582 /*
583 * Note: we need to make sure we don't overflow for various clock &
584 * latency values.
585 * clocks go from a few thousand to several hundred thousand.
586 * latency is usually a few thousand
587 */
Ville Syrjäläac484962016-01-20 21:05:26 +0200588 entries_required = ((clock_in_khz / 1000) * cpp * latency_ns) /
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300589 1000;
590 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
591
592 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
593
594 wm_size = fifo_size - (entries_required + wm->guard_size);
595
596 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
597
598 /* Don't promote wm_size to unsigned... */
599 if (wm_size > (long)wm->max_wm)
600 wm_size = wm->max_wm;
601 if (wm_size <= 0)
602 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300603
604 /*
605 * Bspec seems to indicate that the value shouldn't be lower than
606 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
607 * Lets go for 8 which is the burst size since certain platforms
608 * already use a hardcoded 8 (which is what the spec says should be
609 * done).
610 */
611 if (wm_size <= 8)
612 wm_size = 8;
613
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300614 return wm_size;
615}
616
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200617static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300618{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200619 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300620
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200621 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200622 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300623 if (enabled)
624 return NULL;
625 enabled = crtc;
626 }
627 }
628
629 return enabled;
630}
631
Ville Syrjälä432081b2016-10-31 22:37:03 +0200632static void pineview_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300633{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200634 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200635 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300636 const struct cxsr_latency *latency;
637 u32 reg;
638 unsigned long wm;
639
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100640 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
641 dev_priv->is_ddr3,
642 dev_priv->fsb_freq,
643 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300644 if (!latency) {
645 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300646 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300647 return;
648 }
649
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200650 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300651 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200652 const struct drm_display_mode *adjusted_mode =
653 &crtc->config->base.adjusted_mode;
654 const struct drm_framebuffer *fb =
655 crtc->base.primary->state->fb;
656 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300657 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300658
659 /* Display SR */
660 wm = intel_calculate_wm(clock, &pineview_display_wm,
661 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200662 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300663 reg = I915_READ(DSPFW1);
664 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200665 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300666 I915_WRITE(DSPFW1, reg);
667 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
668
669 /* cursor SR */
670 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
671 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200672 cpp, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300673 reg = I915_READ(DSPFW3);
674 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200675 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300676 I915_WRITE(DSPFW3, reg);
677
678 /* Display HPLL off SR */
679 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
680 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200681 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300682 reg = I915_READ(DSPFW3);
683 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200684 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300685 I915_WRITE(DSPFW3, reg);
686
687 /* cursor HPLL off SR */
688 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
689 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200690 cpp, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300691 reg = I915_READ(DSPFW3);
692 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200693 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300694 I915_WRITE(DSPFW3, reg);
695 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
696
Imre Deak5209b1f2014-07-01 12:36:17 +0300697 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300698 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300699 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300700 }
701}
702
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200703static bool g4x_compute_wm0(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300704 int plane,
705 const struct intel_watermark_params *display,
706 int display_latency_ns,
707 const struct intel_watermark_params *cursor,
708 int cursor_latency_ns,
709 int *plane_wm,
710 int *cursor_wm)
711{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200712 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300713 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200714 const struct drm_framebuffer *fb;
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
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200719 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200720 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
Ville Syrjäläefc26112016-10-31 22:37:04 +0200726 adjusted_mode = &crtc->config->base.adjusted_mode;
727 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100728 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800729 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200730 hdisplay = crtc->config->pipe_src_w;
731 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300732
733 /* Use the small buffer method to calculate plane watermark */
Ville Syrjäläac484962016-01-20 21:05:26 +0200734 entries = ((clock * cpp / 1000) * display_latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300735 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
736 if (tlb_miss > 0)
737 entries += tlb_miss;
738 entries = DIV_ROUND_UP(entries, display->cacheline_size);
739 *plane_wm = entries + display->guard_size;
740 if (*plane_wm > (int)display->max_wm)
741 *plane_wm = display->max_wm;
742
743 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200744 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300745 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200746 entries = line_count * crtc->base.cursor->state->crtc_w * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300747 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
748 if (tlb_miss > 0)
749 entries += tlb_miss;
750 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
751 *cursor_wm = entries + cursor->guard_size;
752 if (*cursor_wm > (int)cursor->max_wm)
753 *cursor_wm = (int)cursor->max_wm;
754
755 return true;
756}
757
758/*
759 * Check the wm result.
760 *
761 * If any calculated watermark values is larger than the maximum value that
762 * can be programmed into the associated watermark register, that watermark
763 * must be disabled.
764 */
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200765static bool g4x_check_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300766 int display_wm, int cursor_wm,
767 const struct intel_watermark_params *display,
768 const struct intel_watermark_params *cursor)
769{
770 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
771 display_wm, cursor_wm);
772
773 if (display_wm > display->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100774 DRM_DEBUG_KMS("display watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300775 display_wm, display->max_wm);
776 return false;
777 }
778
779 if (cursor_wm > cursor->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100780 DRM_DEBUG_KMS("cursor watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300781 cursor_wm, cursor->max_wm);
782 return false;
783 }
784
785 if (!(display_wm || cursor_wm)) {
786 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
787 return false;
788 }
789
790 return true;
791}
792
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200793static bool g4x_compute_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300794 int plane,
795 int latency_ns,
796 const struct intel_watermark_params *display,
797 const struct intel_watermark_params *cursor,
798 int *display_wm, int *cursor_wm)
799{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200800 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300801 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200802 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200803 int hdisplay, htotal, cpp, clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300804 unsigned long line_time_us;
805 int line_count, line_size;
806 int small, large;
807 int entries;
808
809 if (!latency_ns) {
810 *display_wm = *cursor_wm = 0;
811 return false;
812 }
813
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200814 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200815 adjusted_mode = &crtc->config->base.adjusted_mode;
816 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100817 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800818 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200819 hdisplay = crtc->config->pipe_src_w;
820 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300821
Ville Syrjälä922044c2014-02-14 14:18:57 +0200822 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300823 line_count = (latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläac484962016-01-20 21:05:26 +0200824 line_size = hdisplay * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300825
826 /* Use the minimum of the small and large buffer method for primary */
Ville Syrjäläac484962016-01-20 21:05:26 +0200827 small = ((clock * cpp / 1000) * latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300828 large = line_count * line_size;
829
830 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
831 *display_wm = entries + display->guard_size;
832
833 /* calculate the self-refresh watermark for display cursor */
Ville Syrjäläefc26112016-10-31 22:37:04 +0200834 entries = line_count * cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300835 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
836 *cursor_wm = entries + cursor->guard_size;
837
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200838 return g4x_check_srwm(dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300839 *display_wm, *cursor_wm,
840 display, cursor);
841}
842
Ville Syrjälä15665972015-03-10 16:16:28 +0200843#define FW_WM_VLV(value, plane) \
844 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
845
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200846static void vlv_write_wm_values(struct intel_crtc *crtc,
847 const struct vlv_wm_values *wm)
848{
849 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
850 enum pipe pipe = crtc->pipe;
851
852 I915_WRITE(VLV_DDL(pipe),
853 (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) |
854 (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) |
855 (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) |
856 (wm->ddl[pipe].primary << DDL_PLANE_SHIFT));
857
Ville Syrjäläae801522015-03-05 21:19:49 +0200858 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200859 FW_WM(wm->sr.plane, SR) |
860 FW_WM(wm->pipe[PIPE_B].cursor, CURSORB) |
861 FW_WM_VLV(wm->pipe[PIPE_B].primary, PLANEB) |
862 FW_WM_VLV(wm->pipe[PIPE_A].primary, PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200863 I915_WRITE(DSPFW2,
Ville Syrjälä15665972015-03-10 16:16:28 +0200864 FW_WM_VLV(wm->pipe[PIPE_A].sprite[1], SPRITEB) |
865 FW_WM(wm->pipe[PIPE_A].cursor, CURSORA) |
866 FW_WM_VLV(wm->pipe[PIPE_A].sprite[0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200867 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200868 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200869
870 if (IS_CHERRYVIEW(dev_priv)) {
871 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200872 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
873 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200874 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200875 FW_WM_VLV(wm->pipe[PIPE_C].sprite[1], SPRITEF) |
876 FW_WM_VLV(wm->pipe[PIPE_C].sprite[0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200877 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä15665972015-03-10 16:16:28 +0200878 FW_WM_VLV(wm->pipe[PIPE_C].primary, PLANEC) |
879 FW_WM(wm->pipe[PIPE_C].cursor, CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200880 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200881 FW_WM(wm->sr.plane >> 9, SR_HI) |
882 FW_WM(wm->pipe[PIPE_C].sprite[1] >> 8, SPRITEF_HI) |
883 FW_WM(wm->pipe[PIPE_C].sprite[0] >> 8, SPRITEE_HI) |
884 FW_WM(wm->pipe[PIPE_C].primary >> 8, PLANEC_HI) |
885 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
886 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
887 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
888 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
889 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
890 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200891 } else {
892 I915_WRITE(DSPFW7,
Ville Syrjälä15665972015-03-10 16:16:28 +0200893 FW_WM_VLV(wm->pipe[PIPE_B].sprite[1], SPRITED) |
894 FW_WM_VLV(wm->pipe[PIPE_B].sprite[0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200895 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200896 FW_WM(wm->sr.plane >> 9, SR_HI) |
897 FW_WM(wm->pipe[PIPE_B].sprite[1] >> 8, SPRITED_HI) |
898 FW_WM(wm->pipe[PIPE_B].sprite[0] >> 8, SPRITEC_HI) |
899 FW_WM(wm->pipe[PIPE_B].primary >> 8, PLANEB_HI) |
900 FW_WM(wm->pipe[PIPE_A].sprite[1] >> 8, SPRITEB_HI) |
901 FW_WM(wm->pipe[PIPE_A].sprite[0] >> 8, SPRITEA_HI) |
902 FW_WM(wm->pipe[PIPE_A].primary >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200903 }
904
Ville Syrjälä2cb389b2015-06-24 22:00:10 +0300905 /* zero (unused) WM1 watermarks */
906 I915_WRITE(DSPFW4, 0);
907 I915_WRITE(DSPFW5, 0);
908 I915_WRITE(DSPFW6, 0);
909 I915_WRITE(DSPHOWM1, 0);
910
Ville Syrjäläae801522015-03-05 21:19:49 +0200911 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200912}
913
Ville Syrjälä15665972015-03-10 16:16:28 +0200914#undef FW_WM_VLV
915
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300916enum vlv_wm_level {
917 VLV_WM_LEVEL_PM2,
918 VLV_WM_LEVEL_PM5,
919 VLV_WM_LEVEL_DDR_DVFS,
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300920};
921
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300922/* latency must be in 0.1us units. */
923static unsigned int vlv_wm_method2(unsigned int pixel_rate,
924 unsigned int pipe_htotal,
925 unsigned int horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +0200926 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300927 unsigned int latency)
928{
929 unsigned int ret;
930
931 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +0200932 ret = (ret + 1) * horiz_pixels * cpp;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300933 ret = DIV_ROUND_UP(ret, 64);
934
935 return ret;
936}
937
938static void vlv_setup_wm_latency(struct drm_device *dev)
939{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100940 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300941
942 /* all latencies in usec */
943 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
944
Ville Syrjälä58590c12015-09-08 21:05:12 +0300945 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
946
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300947 if (IS_CHERRYVIEW(dev_priv)) {
948 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
949 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300950
951 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300952 }
953}
954
955static uint16_t vlv_compute_wm_level(struct intel_plane *plane,
956 struct intel_crtc *crtc,
957 const struct intel_plane_state *state,
958 int level)
959{
960 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläac484962016-01-20 21:05:26 +0200961 int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300962
963 if (dev_priv->wm.pri_latency[level] == 0)
964 return USHRT_MAX;
965
Ville Syrjälä936e71e2016-07-26 19:06:59 +0300966 if (!state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300967 return 0;
968
Ville Syrjäläac484962016-01-20 21:05:26 +0200969 cpp = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300970 clock = crtc->config->base.adjusted_mode.crtc_clock;
971 htotal = crtc->config->base.adjusted_mode.crtc_htotal;
972 width = crtc->config->pipe_src_w;
973 if (WARN_ON(htotal == 0))
974 htotal = 1;
975
976 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
977 /*
978 * FIXME the formula gives values that are
979 * too big for the cursor FIFO, and hence we
980 * would never be able to use cursors. For
981 * now just hardcode the watermark.
982 */
983 wm = 63;
984 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +0200985 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300986 dev_priv->wm.pri_latency[level] * 10);
987 }
988
989 return min_t(int, wm, USHRT_MAX);
990}
991
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +0300992static void vlv_compute_fifo(struct intel_crtc *crtc)
993{
994 struct drm_device *dev = crtc->base.dev;
995 struct vlv_wm_state *wm_state = &crtc->wm_state;
996 struct intel_plane *plane;
997 unsigned int total_rate = 0;
998 const int fifo_size = 512 - 1;
999 int fifo_extra, fifo_left = fifo_size;
1000
1001 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1002 struct intel_plane_state *state =
1003 to_intel_plane_state(plane->base.state);
1004
1005 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1006 continue;
1007
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001008 if (state->base.visible) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001009 wm_state->num_active_planes++;
1010 total_rate += drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1011 }
1012 }
1013
1014 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1015 struct intel_plane_state *state =
1016 to_intel_plane_state(plane->base.state);
1017 unsigned int rate;
1018
1019 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1020 plane->wm.fifo_size = 63;
1021 continue;
1022 }
1023
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001024 if (!state->base.visible) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001025 plane->wm.fifo_size = 0;
1026 continue;
1027 }
1028
1029 rate = drm_format_plane_cpp(state->base.fb->pixel_format, 0);
1030 plane->wm.fifo_size = fifo_size * rate / total_rate;
1031 fifo_left -= plane->wm.fifo_size;
1032 }
1033
1034 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1035
1036 /* spread the remainder evenly */
1037 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1038 int plane_extra;
1039
1040 if (fifo_left == 0)
1041 break;
1042
1043 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1044 continue;
1045
1046 /* give it all to the first plane if none are active */
1047 if (plane->wm.fifo_size == 0 &&
1048 wm_state->num_active_planes)
1049 continue;
1050
1051 plane_extra = min(fifo_extra, fifo_left);
1052 plane->wm.fifo_size += plane_extra;
1053 fifo_left -= plane_extra;
1054 }
1055
1056 WARN_ON(fifo_left != 0);
1057}
1058
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001059static void vlv_invert_wms(struct intel_crtc *crtc)
1060{
1061 struct vlv_wm_state *wm_state = &crtc->wm_state;
1062 int level;
1063
1064 for (level = 0; level < wm_state->num_levels; level++) {
1065 struct drm_device *dev = crtc->base.dev;
1066 const int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1067 struct intel_plane *plane;
1068
1069 wm_state->sr[level].plane = sr_fifo_size - wm_state->sr[level].plane;
1070 wm_state->sr[level].cursor = 63 - wm_state->sr[level].cursor;
1071
1072 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1073 switch (plane->base.type) {
1074 int sprite;
1075 case DRM_PLANE_TYPE_CURSOR:
1076 wm_state->wm[level].cursor = plane->wm.fifo_size -
1077 wm_state->wm[level].cursor;
1078 break;
1079 case DRM_PLANE_TYPE_PRIMARY:
1080 wm_state->wm[level].primary = plane->wm.fifo_size -
1081 wm_state->wm[level].primary;
1082 break;
1083 case DRM_PLANE_TYPE_OVERLAY:
1084 sprite = plane->plane;
1085 wm_state->wm[level].sprite[sprite] = plane->wm.fifo_size -
1086 wm_state->wm[level].sprite[sprite];
1087 break;
1088 }
1089 }
1090 }
1091}
1092
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001093static void vlv_compute_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001094{
1095 struct drm_device *dev = crtc->base.dev;
1096 struct vlv_wm_state *wm_state = &crtc->wm_state;
1097 struct intel_plane *plane;
1098 int sr_fifo_size = INTEL_INFO(dev)->num_pipes * 512 - 1;
1099 int level;
1100
1101 memset(wm_state, 0, sizeof(*wm_state));
1102
Ville Syrjälä852eb002015-06-24 22:00:07 +03001103 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001104 wm_state->num_levels = to_i915(dev)->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001105
1106 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001107
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001108 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001109
1110 if (wm_state->num_active_planes != 1)
1111 wm_state->cxsr = false;
1112
1113 if (wm_state->cxsr) {
1114 for (level = 0; level < wm_state->num_levels; level++) {
1115 wm_state->sr[level].plane = sr_fifo_size;
1116 wm_state->sr[level].cursor = 63;
1117 }
1118 }
1119
1120 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1121 struct intel_plane_state *state =
1122 to_intel_plane_state(plane->base.state);
1123
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001124 if (!state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001125 continue;
1126
1127 /* normal watermarks */
1128 for (level = 0; level < wm_state->num_levels; level++) {
1129 int wm = vlv_compute_wm_level(plane, crtc, state, level);
1130 int max_wm = plane->base.type == DRM_PLANE_TYPE_CURSOR ? 63 : 511;
1131
1132 /* hack */
1133 if (WARN_ON(level == 0 && wm > max_wm))
1134 wm = max_wm;
1135
1136 if (wm > plane->wm.fifo_size)
1137 break;
1138
1139 switch (plane->base.type) {
1140 int sprite;
1141 case DRM_PLANE_TYPE_CURSOR:
1142 wm_state->wm[level].cursor = wm;
1143 break;
1144 case DRM_PLANE_TYPE_PRIMARY:
1145 wm_state->wm[level].primary = wm;
1146 break;
1147 case DRM_PLANE_TYPE_OVERLAY:
1148 sprite = plane->plane;
1149 wm_state->wm[level].sprite[sprite] = wm;
1150 break;
1151 }
1152 }
1153
1154 wm_state->num_levels = level;
1155
1156 if (!wm_state->cxsr)
1157 continue;
1158
1159 /* maxfifo watermarks */
1160 switch (plane->base.type) {
1161 int sprite, level;
1162 case DRM_PLANE_TYPE_CURSOR:
1163 for (level = 0; level < wm_state->num_levels; level++)
1164 wm_state->sr[level].cursor =
Thomas Daniel5a37ed02015-10-23 14:55:38 +01001165 wm_state->wm[level].cursor;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001166 break;
1167 case DRM_PLANE_TYPE_PRIMARY:
1168 for (level = 0; level < wm_state->num_levels; level++)
1169 wm_state->sr[level].plane =
1170 min(wm_state->sr[level].plane,
1171 wm_state->wm[level].primary);
1172 break;
1173 case DRM_PLANE_TYPE_OVERLAY:
1174 sprite = plane->plane;
1175 for (level = 0; level < wm_state->num_levels; level++)
1176 wm_state->sr[level].plane =
1177 min(wm_state->sr[level].plane,
1178 wm_state->wm[level].sprite[sprite]);
1179 break;
1180 }
1181 }
1182
1183 /* clear any (partially) filled invalid levels */
Ville Syrjälä58590c12015-09-08 21:05:12 +03001184 for (level = wm_state->num_levels; level < to_i915(dev)->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001185 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1186 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1187 }
1188
1189 vlv_invert_wms(crtc);
1190}
1191
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001192#define VLV_FIFO(plane, value) \
1193 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1194
1195static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1196{
1197 struct drm_device *dev = crtc->base.dev;
1198 struct drm_i915_private *dev_priv = to_i915(dev);
1199 struct intel_plane *plane;
1200 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1201
1202 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1203 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1204 WARN_ON(plane->wm.fifo_size != 63);
1205 continue;
1206 }
1207
1208 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
1209 sprite0_start = plane->wm.fifo_size;
1210 else if (plane->plane == 0)
1211 sprite1_start = sprite0_start + plane->wm.fifo_size;
1212 else
1213 fifo_size = sprite1_start + plane->wm.fifo_size;
1214 }
1215
1216 WARN_ON(fifo_size != 512 - 1);
1217
1218 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1219 pipe_name(crtc->pipe), sprite0_start,
1220 sprite1_start, fifo_size);
1221
1222 switch (crtc->pipe) {
1223 uint32_t dsparb, dsparb2, dsparb3;
1224 case PIPE_A:
1225 dsparb = I915_READ(DSPARB);
1226 dsparb2 = I915_READ(DSPARB2);
1227
1228 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1229 VLV_FIFO(SPRITEB, 0xff));
1230 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1231 VLV_FIFO(SPRITEB, sprite1_start));
1232
1233 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1234 VLV_FIFO(SPRITEB_HI, 0x1));
1235 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1236 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1237
1238 I915_WRITE(DSPARB, dsparb);
1239 I915_WRITE(DSPARB2, dsparb2);
1240 break;
1241 case PIPE_B:
1242 dsparb = I915_READ(DSPARB);
1243 dsparb2 = I915_READ(DSPARB2);
1244
1245 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1246 VLV_FIFO(SPRITED, 0xff));
1247 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1248 VLV_FIFO(SPRITED, sprite1_start));
1249
1250 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1251 VLV_FIFO(SPRITED_HI, 0xff));
1252 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1253 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1254
1255 I915_WRITE(DSPARB, dsparb);
1256 I915_WRITE(DSPARB2, dsparb2);
1257 break;
1258 case PIPE_C:
1259 dsparb3 = I915_READ(DSPARB3);
1260 dsparb2 = I915_READ(DSPARB2);
1261
1262 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1263 VLV_FIFO(SPRITEF, 0xff));
1264 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1265 VLV_FIFO(SPRITEF, sprite1_start));
1266
1267 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1268 VLV_FIFO(SPRITEF_HI, 0xff));
1269 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1270 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1271
1272 I915_WRITE(DSPARB3, dsparb3);
1273 I915_WRITE(DSPARB2, dsparb2);
1274 break;
1275 default:
1276 break;
1277 }
1278}
1279
1280#undef VLV_FIFO
1281
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001282static void vlv_merge_wm(struct drm_device *dev,
1283 struct vlv_wm_values *wm)
1284{
1285 struct intel_crtc *crtc;
1286 int num_active_crtcs = 0;
1287
Ville Syrjälä58590c12015-09-08 21:05:12 +03001288 wm->level = to_i915(dev)->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001289 wm->cxsr = true;
1290
1291 for_each_intel_crtc(dev, crtc) {
1292 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1293
1294 if (!crtc->active)
1295 continue;
1296
1297 if (!wm_state->cxsr)
1298 wm->cxsr = false;
1299
1300 num_active_crtcs++;
1301 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1302 }
1303
1304 if (num_active_crtcs != 1)
1305 wm->cxsr = false;
1306
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001307 if (num_active_crtcs > 1)
1308 wm->level = VLV_WM_LEVEL_PM2;
1309
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001310 for_each_intel_crtc(dev, crtc) {
1311 struct vlv_wm_state *wm_state = &crtc->wm_state;
1312 enum pipe pipe = crtc->pipe;
1313
1314 if (!crtc->active)
1315 continue;
1316
1317 wm->pipe[pipe] = wm_state->wm[wm->level];
1318 if (wm->cxsr)
1319 wm->sr = wm_state->sr[wm->level];
1320
1321 wm->ddl[pipe].primary = DDL_PRECISION_HIGH | 2;
1322 wm->ddl[pipe].sprite[0] = DDL_PRECISION_HIGH | 2;
1323 wm->ddl[pipe].sprite[1] = DDL_PRECISION_HIGH | 2;
1324 wm->ddl[pipe].cursor = DDL_PRECISION_HIGH | 2;
1325 }
1326}
1327
Ville Syrjälä432081b2016-10-31 22:37:03 +02001328static void vlv_update_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001329{
Ville Syrjälä432081b2016-10-31 22:37:03 +02001330 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001331 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä432081b2016-10-31 22:37:03 +02001332 enum pipe pipe = crtc->pipe;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001333 struct vlv_wm_values wm = {};
1334
Ville Syrjälä432081b2016-10-31 22:37:03 +02001335 vlv_compute_wm(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001336 vlv_merge_wm(dev, &wm);
1337
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001338 if (memcmp(&dev_priv->wm.vlv, &wm, sizeof(wm)) == 0) {
1339 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä432081b2016-10-31 22:37:03 +02001340 vlv_pipe_set_fifo_size(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001341 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001342 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001343
1344 if (wm.level < VLV_WM_LEVEL_DDR_DVFS &&
1345 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_DDR_DVFS)
1346 chv_set_memory_dvfs(dev_priv, false);
1347
1348 if (wm.level < VLV_WM_LEVEL_PM5 &&
1349 dev_priv->wm.vlv.level >= VLV_WM_LEVEL_PM5)
1350 chv_set_memory_pm5(dev_priv, false);
1351
Ville Syrjälä852eb002015-06-24 22:00:07 +03001352 if (!wm.cxsr && dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001353 intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001354
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001355 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä432081b2016-10-31 22:37:03 +02001356 vlv_pipe_set_fifo_size(crtc);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001357
Ville Syrjälä432081b2016-10-31 22:37:03 +02001358 vlv_write_wm_values(crtc, &wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001359
1360 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1361 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
1362 pipe_name(pipe), wm.pipe[pipe].primary, wm.pipe[pipe].cursor,
1363 wm.pipe[pipe].sprite[0], wm.pipe[pipe].sprite[1],
1364 wm.sr.plane, wm.sr.cursor, wm.level, wm.cxsr);
1365
Ville Syrjälä852eb002015-06-24 22:00:07 +03001366 if (wm.cxsr && !dev_priv->wm.vlv.cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001367 intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001368
1369 if (wm.level >= VLV_WM_LEVEL_PM5 &&
1370 dev_priv->wm.vlv.level < VLV_WM_LEVEL_PM5)
1371 chv_set_memory_pm5(dev_priv, true);
1372
1373 if (wm.level >= VLV_WM_LEVEL_DDR_DVFS &&
1374 dev_priv->wm.vlv.level < VLV_WM_LEVEL_DDR_DVFS)
1375 chv_set_memory_dvfs(dev_priv, true);
1376
1377 dev_priv->wm.vlv = wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001378}
1379
Ville Syrjäläae801522015-03-05 21:19:49 +02001380#define single_plane_enabled(mask) is_power_of_2(mask)
1381
Ville Syrjälä432081b2016-10-31 22:37:03 +02001382static void g4x_update_wm(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001383{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001384 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001385 static const int sr_latency_ns = 12000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001386 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1387 int plane_sr, cursor_sr;
1388 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001389 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001390
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001391 if (g4x_compute_wm0(dev_priv, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001392 &g4x_wm_info, pessimal_latency_ns,
1393 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001394 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001395 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001396
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001397 if (g4x_compute_wm0(dev_priv, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001398 &g4x_wm_info, pessimal_latency_ns,
1399 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001400 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001401 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001402
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001403 if (single_plane_enabled(enabled) &&
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001404 g4x_compute_srwm(dev_priv, ffs(enabled) - 1,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001405 sr_latency_ns,
1406 &g4x_wm_info,
1407 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001408 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001409 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001410 } else {
Imre Deak98584252014-06-13 14:54:20 +03001411 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001412 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001413 plane_sr = cursor_sr = 0;
1414 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001415
Ville Syrjäläa5043452014-06-28 02:04:18 +03001416 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1417 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001418 planea_wm, cursora_wm,
1419 planeb_wm, cursorb_wm,
1420 plane_sr, cursor_sr);
1421
1422 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001423 FW_WM(plane_sr, SR) |
1424 FW_WM(cursorb_wm, CURSORB) |
1425 FW_WM(planeb_wm, PLANEB) |
1426 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001427 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001428 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001429 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001430 /* HPLL off in SR has some issues on G4x... disable it */
1431 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001432 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001433 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001434
1435 if (cxsr_enabled)
1436 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001437}
1438
Ville Syrjälä432081b2016-10-31 22:37:03 +02001439static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001440{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001441 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001442 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001443 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 */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001448 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001449 if (crtc) {
1450 /* self-refresh has much higher latency */
1451 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001452 const struct drm_display_mode *adjusted_mode =
1453 &crtc->config->base.adjusted_mode;
1454 const struct drm_framebuffer *fb =
1455 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001456 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001457 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001458 int hdisplay = crtc->config->pipe_src_w;
1459 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001460 unsigned long line_time_us;
1461 int entries;
1462
Ville Syrjälä922044c2014-02-14 14:18:57 +02001463 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001464
1465 /* Use ns/us then divide to preserve precision */
1466 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001467 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001468 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1469 srwm = I965_FIFO_SIZE - entries;
1470 if (srwm < 0)
1471 srwm = 1;
1472 srwm &= 0x1ff;
1473 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1474 entries, srwm);
1475
1476 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläefc26112016-10-31 22:37:04 +02001477 cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001478 entries = DIV_ROUND_UP(entries,
1479 i965_cursor_wm_info.cacheline_size);
1480 cursor_sr = i965_cursor_wm_info.fifo_size -
1481 (entries + i965_cursor_wm_info.guard_size);
1482
1483 if (cursor_sr > i965_cursor_wm_info.max_wm)
1484 cursor_sr = i965_cursor_wm_info.max_wm;
1485
1486 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1487 "cursor %d\n", srwm, cursor_sr);
1488
Imre Deak98584252014-06-13 14:54:20 +03001489 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001490 } else {
Imre Deak98584252014-06-13 14:54:20 +03001491 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001492 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001493 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001494 }
1495
1496 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1497 srwm);
1498
1499 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001500 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1501 FW_WM(8, CURSORB) |
1502 FW_WM(8, PLANEB) |
1503 FW_WM(8, PLANEA));
1504 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1505 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001506 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001507 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001508
1509 if (cxsr_enabled)
1510 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001511}
1512
Ville Syrjäläf4998962015-03-10 17:02:21 +02001513#undef FW_WM
1514
Ville Syrjälä432081b2016-10-31 22:37:03 +02001515static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001516{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001517 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001518 const struct intel_watermark_params *wm_info;
1519 uint32_t fwater_lo;
1520 uint32_t fwater_hi;
1521 int cwm, srwm = 1;
1522 int fifo_size;
1523 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001524 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001525
Ville Syrjäläa9097be2016-10-31 22:37:20 +02001526 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001527 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001528 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001529 wm_info = &i915_wm_info;
1530 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001531 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001532
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001533 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 0);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001534 crtc = intel_get_crtc_for_plane(dev_priv, 0);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001535 if (intel_crtc_active(crtc)) {
1536 const struct drm_display_mode *adjusted_mode =
1537 &crtc->config->base.adjusted_mode;
1538 const struct drm_framebuffer *fb =
1539 crtc->base.primary->state->fb;
1540 int cpp;
1541
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001542 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001543 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001544 else
1545 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001546
Damien Lespiau241bfc32013-09-25 16:45:37 +01001547 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001548 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001549 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001550 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001551 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001552 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001553 if (planea_wm > (long)wm_info->max_wm)
1554 planea_wm = wm_info->max_wm;
1555 }
1556
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001557 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03001558 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001559
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001560 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 1);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001561 crtc = intel_get_crtc_for_plane(dev_priv, 1);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001562 if (intel_crtc_active(crtc)) {
1563 const struct drm_display_mode *adjusted_mode =
1564 &crtc->config->base.adjusted_mode;
1565 const struct drm_framebuffer *fb =
1566 crtc->base.primary->state->fb;
1567 int cpp;
1568
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001569 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001570 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001571 else
1572 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001573
Damien Lespiau241bfc32013-09-25 16:45:37 +01001574 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001575 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001576 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001577 if (enabled == NULL)
1578 enabled = crtc;
1579 else
1580 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001581 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001582 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001583 if (planeb_wm > (long)wm_info->max_wm)
1584 planeb_wm = wm_info->max_wm;
1585 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001586
1587 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1588
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001589 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001590 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001591
Ville Syrjäläefc26112016-10-31 22:37:04 +02001592 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001593
1594 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01001595 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001596 enabled = NULL;
1597 }
1598
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001599 /*
1600 * Overlay gets an aggressive default since video jitter is bad.
1601 */
1602 cwm = 2;
1603
1604 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001605 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001606
1607 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02001608 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001609 /* self-refresh has much higher latency */
1610 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001611 const struct drm_display_mode *adjusted_mode =
1612 &enabled->config->base.adjusted_mode;
1613 const struct drm_framebuffer *fb =
1614 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001615 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001616 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001617 int hdisplay = enabled->config->pipe_src_w;
1618 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001619 unsigned long line_time_us;
1620 int entries;
1621
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001622 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001623 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001624 else
1625 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001626
Ville Syrjälä922044c2014-02-14 14:18:57 +02001627 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001628
1629 /* Use ns/us then divide to preserve precision */
1630 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001631 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001632 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1633 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1634 srwm = wm_info->fifo_size - entries;
1635 if (srwm < 0)
1636 srwm = 1;
1637
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001638 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001639 I915_WRITE(FW_BLC_SELF,
1640 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03001641 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001642 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1643 }
1644
1645 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1646 planea_wm, planeb_wm, cwm, srwm);
1647
1648 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1649 fwater_hi = (cwm & 0x1f);
1650
1651 /* Set request length to 8 cachelines per fetch */
1652 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1653 fwater_hi = fwater_hi | (1 << 8);
1654
1655 I915_WRITE(FW_BLC, fwater_lo);
1656 I915_WRITE(FW_BLC2, fwater_hi);
1657
Imre Deak5209b1f2014-07-01 12:36:17 +03001658 if (enabled)
1659 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001660}
1661
Ville Syrjälä432081b2016-10-31 22:37:03 +02001662static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001663{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001664 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001665 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001666 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001667 uint32_t fwater_lo;
1668 int planea_wm;
1669
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001670 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001671 if (crtc == NULL)
1672 return;
1673
Ville Syrjäläefc26112016-10-31 22:37:04 +02001674 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001675 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001676 &i845_wm_info,
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001677 dev_priv->display.get_fifo_size(dev_priv, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001678 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001679 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1680 fwater_lo |= (3<<8) | planea_wm;
1681
1682 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1683
1684 I915_WRITE(FW_BLC, fwater_lo);
1685}
1686
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001687uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001688{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001689 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001690
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001691 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001692
1693 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1694 * adjust the pixel_rate here. */
1695
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001696 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001697 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001698 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001699
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001700 pipe_w = pipe_config->pipe_src_w;
1701 pipe_h = pipe_config->pipe_src_h;
1702
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001703 pfit_w = (pfit_size >> 16) & 0xFFFF;
1704 pfit_h = pfit_size & 0xFFFF;
1705 if (pipe_w < pfit_w)
1706 pipe_w = pfit_w;
1707 if (pipe_h < pfit_h)
1708 pipe_h = pfit_h;
1709
Matt Roper15126882015-12-03 11:37:40 -08001710 if (WARN_ON(!pfit_w || !pfit_h))
1711 return pixel_rate;
1712
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001713 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1714 pfit_w * pfit_h);
1715 }
1716
1717 return pixel_rate;
1718}
1719
Ville Syrjälä37126462013-08-01 16:18:55 +03001720/* latency must be in 0.1us units. */
Ville Syrjäläac484962016-01-20 21:05:26 +02001721static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001722{
1723 uint64_t ret;
1724
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001725 if (WARN(latency == 0, "Latency value missing\n"))
1726 return UINT_MAX;
1727
Ville Syrjäläac484962016-01-20 21:05:26 +02001728 ret = (uint64_t) pixel_rate * cpp * latency;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001729 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1730
1731 return ret;
1732}
1733
Ville Syrjälä37126462013-08-01 16:18:55 +03001734/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001735static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02001736 uint32_t horiz_pixels, uint8_t cpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001737 uint32_t latency)
1738{
1739 uint32_t ret;
1740
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001741 if (WARN(latency == 0, "Latency value missing\n"))
1742 return UINT_MAX;
Matt Roper15126882015-12-03 11:37:40 -08001743 if (WARN_ON(!pipe_htotal))
1744 return UINT_MAX;
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001745
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001746 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +02001747 ret = (ret + 1) * horiz_pixels * cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001748 ret = DIV_ROUND_UP(ret, 64) + 2;
1749 return ret;
1750}
1751
Ville Syrjälä23297042013-07-05 11:57:17 +03001752static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02001753 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001754{
Matt Roper15126882015-12-03 11:37:40 -08001755 /*
1756 * Neither of these should be possible since this function shouldn't be
1757 * called if the CRTC is off or the plane is invisible. But let's be
1758 * extra paranoid to avoid a potential divide-by-zero if we screw up
1759 * elsewhere in the driver.
1760 */
Ville Syrjäläac484962016-01-20 21:05:26 +02001761 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08001762 return 0;
1763 if (WARN_ON(!horiz_pixels))
1764 return 0;
1765
Ville Syrjäläac484962016-01-20 21:05:26 +02001766 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001767}
1768
Imre Deak820c1982013-12-17 14:46:36 +02001769struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001770 uint16_t pri;
1771 uint16_t spr;
1772 uint16_t cur;
1773 uint16_t fbc;
1774};
1775
Ville Syrjälä37126462013-08-01 16:18:55 +03001776/*
1777 * For both WM_PIPE and WM_LP.
1778 * mem_value must be in 0.1us units.
1779 */
Matt Roper7221fc32015-09-24 15:53:08 -07001780static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001781 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001782 uint32_t mem_value,
1783 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001784{
Ville Syrjäläac484962016-01-20 21:05:26 +02001785 int cpp = pstate->base.fb ?
1786 drm_format_plane_cpp(pstate->base.fb->pixel_format, 0) : 0;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001787 uint32_t method1, method2;
1788
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001789 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001790 return 0;
1791
Ville Syrjäläac484962016-01-20 21:05:26 +02001792 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001793
1794 if (!is_lp)
1795 return method1;
1796
Matt Roper7221fc32015-09-24 15:53:08 -07001797 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1798 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001799 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001800 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001801
1802 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001803}
1804
Ville Syrjälä37126462013-08-01 16:18:55 +03001805/*
1806 * For both WM_PIPE and WM_LP.
1807 * mem_value must be in 0.1us units.
1808 */
Matt Roper7221fc32015-09-24 15:53:08 -07001809static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001810 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001811 uint32_t mem_value)
1812{
Ville Syrjäläac484962016-01-20 21:05:26 +02001813 int cpp = pstate->base.fb ?
1814 drm_format_plane_cpp(pstate->base.fb->pixel_format, 0) : 0;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001815 uint32_t method1, method2;
1816
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001817 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001818 return 0;
1819
Ville Syrjäläac484962016-01-20 21:05:26 +02001820 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), cpp, mem_value);
Matt Roper7221fc32015-09-24 15:53:08 -07001821 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1822 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001823 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001824 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001825 return min(method1, method2);
1826}
1827
Ville Syrjälä37126462013-08-01 16:18:55 +03001828/*
1829 * For both WM_PIPE and WM_LP.
1830 * mem_value must be in 0.1us units.
1831 */
Matt Roper7221fc32015-09-24 15:53:08 -07001832static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001833 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001834 uint32_t mem_value)
1835{
Matt Roperb2435692016-02-02 22:06:51 -08001836 /*
1837 * We treat the cursor plane as always-on for the purposes of watermark
1838 * calculation. Until we have two-stage watermark programming merged,
1839 * this is necessary to avoid flickering.
1840 */
1841 int cpp = 4;
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001842 int width = pstate->base.visible ? pstate->base.crtc_w : 64;
Matt Roper43d59ed2015-09-24 15:53:07 -07001843
Matt Roperb2435692016-02-02 22:06:51 -08001844 if (!cstate->base.active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001845 return 0;
1846
Matt Roper7221fc32015-09-24 15:53:08 -07001847 return ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1848 cstate->base.adjusted_mode.crtc_htotal,
Matt Roperb2435692016-02-02 22:06:51 -08001849 width, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001850}
1851
Paulo Zanonicca32e92013-05-31 11:45:06 -03001852/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07001853static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001854 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001855 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001856{
Ville Syrjäläac484962016-01-20 21:05:26 +02001857 int cpp = pstate->base.fb ?
1858 drm_format_plane_cpp(pstate->base.fb->pixel_format, 0) : 0;
Matt Roper43d59ed2015-09-24 15:53:07 -07001859
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001860 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001861 return 0;
1862
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001863 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001864}
1865
Ville Syrjälä158ae642013-08-07 13:28:19 +03001866static unsigned int ilk_display_fifo_size(const struct drm_device *dev)
1867{
Ville Syrjälä416f4722013-11-02 21:07:46 -07001868 if (INTEL_INFO(dev)->gen >= 8)
1869 return 3072;
1870 else if (INTEL_INFO(dev)->gen >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001871 return 768;
1872 else
1873 return 512;
1874}
1875
Ville Syrjälä4e975082014-03-07 18:32:11 +02001876static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev,
1877 int level, bool is_sprite)
1878{
1879 if (INTEL_INFO(dev)->gen >= 8)
1880 /* BDW primary/sprite plane watermarks */
1881 return level == 0 ? 255 : 2047;
1882 else if (INTEL_INFO(dev)->gen >= 7)
1883 /* IVB/HSW primary/sprite plane watermarks */
1884 return level == 0 ? 127 : 1023;
1885 else if (!is_sprite)
1886 /* ILK/SNB primary plane watermarks */
1887 return level == 0 ? 127 : 511;
1888 else
1889 /* ILK/SNB sprite plane watermarks */
1890 return level == 0 ? 63 : 255;
1891}
1892
1893static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev,
1894 int level)
1895{
1896 if (INTEL_INFO(dev)->gen >= 7)
1897 return level == 0 ? 63 : 255;
1898 else
1899 return level == 0 ? 31 : 63;
1900}
1901
1902static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev)
1903{
1904 if (INTEL_INFO(dev)->gen >= 8)
1905 return 31;
1906 else
1907 return 15;
1908}
1909
Ville Syrjälä158ae642013-08-07 13:28:19 +03001910/* Calculate the maximum primary/sprite plane watermark */
1911static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1912 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001913 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001914 enum intel_ddb_partitioning ddb_partitioning,
1915 bool is_sprite)
1916{
1917 unsigned int fifo_size = ilk_display_fifo_size(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001918
1919 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001920 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001921 return 0;
1922
1923 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001924 if (level == 0 || config->num_pipes_active > 1) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001925 fifo_size /= INTEL_INFO(dev)->num_pipes;
1926
1927 /*
1928 * For some reason the non self refresh
1929 * FIFO size is only half of the self
1930 * refresh FIFO size on ILK/SNB.
1931 */
1932 if (INTEL_INFO(dev)->gen <= 6)
1933 fifo_size /= 2;
1934 }
1935
Ville Syrjälä240264f2013-08-07 13:29:12 +03001936 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001937 /* level 0 is always calculated with 1:1 split */
1938 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1939 if (is_sprite)
1940 fifo_size *= 5;
1941 fifo_size /= 6;
1942 } else {
1943 fifo_size /= 2;
1944 }
1945 }
1946
1947 /* clamp to max that the registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001948 return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001949}
1950
1951/* Calculate the maximum cursor plane watermark */
1952static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001953 int level,
1954 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001955{
1956 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001957 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001958 return 64;
1959
1960 /* otherwise just report max that registers can hold */
Ville Syrjälä4e975082014-03-07 18:32:11 +02001961 return ilk_cursor_wm_reg_max(dev, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001962}
1963
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001964static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001965 int level,
1966 const struct intel_wm_config *config,
1967 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001968 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001969{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001970 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1971 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1972 max->cur = ilk_cursor_wm_max(dev, level, config);
Ville Syrjälä4e975082014-03-07 18:32:11 +02001973 max->fbc = ilk_fbc_wm_reg_max(dev);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001974}
1975
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001976static void ilk_compute_wm_reg_maximums(struct drm_device *dev,
1977 int level,
1978 struct ilk_wm_maximums *max)
1979{
1980 max->pri = ilk_plane_wm_reg_max(dev, level, false);
1981 max->spr = ilk_plane_wm_reg_max(dev, level, true);
1982 max->cur = ilk_cursor_wm_reg_max(dev, level);
1983 max->fbc = ilk_fbc_wm_reg_max(dev);
1984}
1985
Ville Syrjäläd9395652013-10-09 19:18:10 +03001986static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001987 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001988 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001989{
1990 bool ret;
1991
1992 /* already determined to be invalid? */
1993 if (!result->enable)
1994 return false;
1995
1996 result->enable = result->pri_val <= max->pri &&
1997 result->spr_val <= max->spr &&
1998 result->cur_val <= max->cur;
1999
2000 ret = result->enable;
2001
2002 /*
2003 * HACK until we can pre-compute everything,
2004 * and thus fail gracefully if LP0 watermarks
2005 * are exceeded...
2006 */
2007 if (level == 0 && !result->enable) {
2008 if (result->pri_val > max->pri)
2009 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2010 level, result->pri_val, max->pri);
2011 if (result->spr_val > max->spr)
2012 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2013 level, result->spr_val, max->spr);
2014 if (result->cur_val > max->cur)
2015 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2016 level, result->cur_val, max->cur);
2017
2018 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2019 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2020 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2021 result->enable = true;
2022 }
2023
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002024 return ret;
2025}
2026
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002027static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002028 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002029 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002030 struct intel_crtc_state *cstate,
Matt Roper86c8bbb2015-09-24 15:53:16 -07002031 struct intel_plane_state *pristate,
2032 struct intel_plane_state *sprstate,
2033 struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002034 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002035{
2036 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2037 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2038 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2039
2040 /* WM1+ latency values stored in 0.5us units */
2041 if (level > 0) {
2042 pri_latency *= 5;
2043 spr_latency *= 5;
2044 cur_latency *= 5;
2045 }
2046
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002047 if (pristate) {
2048 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2049 pri_latency, level);
2050 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2051 }
2052
2053 if (sprstate)
2054 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2055
2056 if (curstate)
2057 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2058
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002059 result->enable = true;
2060}
2061
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002062static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002063hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002064{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002065 const struct intel_atomic_state *intel_state =
2066 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002067 const struct drm_display_mode *adjusted_mode =
2068 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002069 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002070
Matt Roperee91a152015-12-03 11:37:39 -08002071 if (!cstate->base.active)
2072 return 0;
2073 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2074 return 0;
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002075 if (WARN_ON(intel_state->cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002076 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002077
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002078 /* The WM are computed with base on how long it takes to fill a single
2079 * row at the given clock rate, multiplied by 8.
2080 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002081 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2082 adjusted_mode->crtc_clock);
2083 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002084 intel_state->cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002085
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002086 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2087 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002088}
2089
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002090static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002091{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002092 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002093
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002094 if (IS_GEN9(dev_priv)) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002095 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002096 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002097 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002098
2099 /* read the first set of memory latencies[0:3] */
2100 val = 0; /* data0 to be programmed to 0 for first set */
2101 mutex_lock(&dev_priv->rps.hw_lock);
2102 ret = sandybridge_pcode_read(dev_priv,
2103 GEN9_PCODE_READ_MEM_LATENCY,
2104 &val);
2105 mutex_unlock(&dev_priv->rps.hw_lock);
2106
2107 if (ret) {
2108 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2109 return;
2110 }
2111
2112 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2113 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2114 GEN9_MEM_LATENCY_LEVEL_MASK;
2115 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2116 GEN9_MEM_LATENCY_LEVEL_MASK;
2117 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2118 GEN9_MEM_LATENCY_LEVEL_MASK;
2119
2120 /* read the second set of memory latencies[4:7] */
2121 val = 1; /* data0 to be programmed to 1 for second set */
2122 mutex_lock(&dev_priv->rps.hw_lock);
2123 ret = sandybridge_pcode_read(dev_priv,
2124 GEN9_PCODE_READ_MEM_LATENCY,
2125 &val);
2126 mutex_unlock(&dev_priv->rps.hw_lock);
2127 if (ret) {
2128 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2129 return;
2130 }
2131
2132 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2133 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2134 GEN9_MEM_LATENCY_LEVEL_MASK;
2135 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2136 GEN9_MEM_LATENCY_LEVEL_MASK;
2137 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2138 GEN9_MEM_LATENCY_LEVEL_MASK;
2139
Vandana Kannan367294b2014-11-04 17:06:46 +00002140 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002141 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2142 * need to be disabled. We make sure to sanitize the values out
2143 * of the punit to satisfy this requirement.
2144 */
2145 for (level = 1; level <= max_level; level++) {
2146 if (wm[level] == 0) {
2147 for (i = level + 1; i <= max_level; i++)
2148 wm[i] = 0;
2149 break;
2150 }
2151 }
2152
2153 /*
Damien Lespiau6f972352015-02-09 19:33:07 +00002154 * WaWmMemoryReadLatency:skl
2155 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002156 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002157 * to add 2us to the various latency levels we retrieve from the
2158 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002159 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002160 if (wm[0] == 0) {
2161 wm[0] += 2;
2162 for (level = 1; level <= max_level; level++) {
2163 if (wm[level] == 0)
2164 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002165 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002166 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002167 }
2168
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002169 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002170 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2171
2172 wm[0] = (sskpd >> 56) & 0xFF;
2173 if (wm[0] == 0)
2174 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002175 wm[1] = (sskpd >> 4) & 0xFF;
2176 wm[2] = (sskpd >> 12) & 0xFF;
2177 wm[3] = (sskpd >> 20) & 0x1FF;
2178 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002179 } else if (INTEL_INFO(dev)->gen >= 6) {
2180 uint32_t sskpd = I915_READ(MCH_SSKPD);
2181
2182 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2183 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2184 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2185 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002186 } else if (INTEL_INFO(dev)->gen >= 5) {
2187 uint32_t mltr = I915_READ(MLTR_ILK);
2188
2189 /* ILK primary LP0 latency is 700 ns */
2190 wm[0] = 7;
2191 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2192 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002193 }
2194}
2195
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002196static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2197 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002198{
2199 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002200 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002201 wm[0] = 13;
2202}
2203
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002204static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2205 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002206{
2207 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002208 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002209 wm[0] = 13;
2210
2211 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002212 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002213 wm[3] *= 2;
2214}
2215
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002216int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002217{
2218 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002219 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002220 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002221 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002222 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002223 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002224 return 3;
2225 else
2226 return 2;
2227}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002228
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002229static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002230 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002231 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002232{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002233 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002234
2235 for (level = 0; level <= max_level; level++) {
2236 unsigned int latency = wm[level];
2237
2238 if (latency == 0) {
2239 DRM_ERROR("%s WM%d latency not provided\n",
2240 name, level);
2241 continue;
2242 }
2243
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002244 /*
2245 * - latencies are in us on gen9.
2246 * - before then, WM1+ latency values are in 0.5us units
2247 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002248 if (IS_GEN9(dev_priv))
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002249 latency *= 10;
2250 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002251 latency *= 5;
2252
2253 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2254 name, level, wm[level],
2255 latency / 10, latency % 10);
2256 }
2257}
2258
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002259static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2260 uint16_t wm[5], uint16_t min)
2261{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002262 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002263
2264 if (wm[0] >= min)
2265 return false;
2266
2267 wm[0] = max(wm[0], min);
2268 for (level = 1; level <= max_level; level++)
2269 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2270
2271 return true;
2272}
2273
2274static void snb_wm_latency_quirk(struct drm_device *dev)
2275{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002276 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002277 bool changed;
2278
2279 /*
2280 * The BIOS provided WM memory latency values are often
2281 * inadequate for high resolution displays. Adjust them.
2282 */
2283 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2284 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2285 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2286
2287 if (!changed)
2288 return;
2289
2290 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002291 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2292 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2293 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002294}
2295
Damien Lespiaufa50ad62014-03-17 18:01:16 +00002296static void ilk_setup_wm_latency(struct drm_device *dev)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002297{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002298 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002299
2300 intel_read_wm_latency(dev, dev_priv->wm.pri_latency);
2301
2302 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2303 sizeof(dev_priv->wm.pri_latency));
2304 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2305 sizeof(dev_priv->wm.pri_latency));
2306
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002307 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002308 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002309
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002310 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2311 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2312 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002313
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002314 if (IS_GEN6(dev_priv))
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002315 snb_wm_latency_quirk(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002316}
2317
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002318static void skl_setup_wm_latency(struct drm_device *dev)
2319{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002320 struct drm_i915_private *dev_priv = to_i915(dev);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002321
2322 intel_read_wm_latency(dev, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002323 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002324}
2325
Matt Ropered4a6a72016-02-23 17:20:13 -08002326static bool ilk_validate_pipe_wm(struct drm_device *dev,
2327 struct intel_pipe_wm *pipe_wm)
2328{
2329 /* LP0 watermark maximums depend on this pipe alone */
2330 const struct intel_wm_config config = {
2331 .num_pipes_active = 1,
2332 .sprites_enabled = pipe_wm->sprites_enabled,
2333 .sprites_scaled = pipe_wm->sprites_scaled,
2334 };
2335 struct ilk_wm_maximums max;
2336
2337 /* LP0 watermarks always use 1/2 DDB partitioning */
2338 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2339
2340 /* At least LP0 must be valid */
2341 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
2342 DRM_DEBUG_KMS("LP0 watermark invalid\n");
2343 return false;
2344 }
2345
2346 return true;
2347}
2348
Matt Roper261a27d2015-10-08 15:28:25 -07002349/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002350static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07002351{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002352 struct drm_atomic_state *state = cstate->base.state;
2353 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07002354 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002355 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002356 const struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper43d59ed2015-09-24 15:53:07 -07002357 struct intel_plane *intel_plane;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002358 struct intel_plane_state *pristate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002359 struct intel_plane_state *sprstate = NULL;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002360 struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002361 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02002362 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002363
Matt Ropere8f1f022016-05-12 07:05:55 -07002364 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002365
Matt Roper43d59ed2015-09-24 15:53:07 -07002366 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002367 struct intel_plane_state *ps;
2368
2369 ps = intel_atomic_get_existing_plane_state(state,
2370 intel_plane);
2371 if (!ps)
2372 continue;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002373
2374 if (intel_plane->base.type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002375 pristate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002376 else if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002377 sprstate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002378 else if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002379 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07002380 }
2381
Matt Ropered4a6a72016-02-23 17:20:13 -08002382 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002383 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002384 pipe_wm->sprites_enabled = sprstate->base.visible;
2385 pipe_wm->sprites_scaled = sprstate->base.visible &&
2386 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
2387 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002388 }
2389
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002390 usable_level = max_level;
2391
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002392 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002393 if (INTEL_INFO(dev)->gen <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002394 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002395
2396 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08002397 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002398 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002399
Matt Roper86c8bbb2015-09-24 15:53:16 -07002400 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002401 pristate, sprstate, curstate, &pipe_wm->raw_wm[0]);
2402
2403 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
2404 pipe_wm->wm[0] = pipe_wm->raw_wm[0];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002405
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002406 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002407 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002408
Matt Ropered4a6a72016-02-23 17:20:13 -08002409 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01002410 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002411
2412 ilk_compute_wm_reg_maximums(dev, 1, &max);
2413
2414 for (level = 1; level <= max_level; level++) {
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002415 struct intel_wm_level *wm = &pipe_wm->raw_wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002416
Matt Roper86c8bbb2015-09-24 15:53:16 -07002417 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002418 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002419
2420 /*
2421 * Disable any watermark level that exceeds the
2422 * register maximums since such watermarks are
2423 * always invalid.
2424 */
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002425 if (level > usable_level)
2426 continue;
2427
2428 if (ilk_validate_wm_level(level, &max, wm))
2429 pipe_wm->wm[level] = *wm;
2430 else
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002431 usable_level = level;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002432 }
2433
Matt Roper86c8bbb2015-09-24 15:53:16 -07002434 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002435}
2436
2437/*
Matt Ropered4a6a72016-02-23 17:20:13 -08002438 * Build a set of 'intermediate' watermark values that satisfy both the old
2439 * state and the new state. These can be programmed to the hardware
2440 * immediately.
2441 */
2442static int ilk_compute_intermediate_wm(struct drm_device *dev,
2443 struct intel_crtc *intel_crtc,
2444 struct intel_crtc_state *newstate)
2445{
Matt Ropere8f1f022016-05-12 07:05:55 -07002446 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08002447 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002448 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08002449
2450 /*
2451 * Start with the final, target watermarks, then combine with the
2452 * currently active watermarks to get values that are safe both before
2453 * and after the vblank.
2454 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002455 *a = newstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08002456 a->pipe_enabled |= b->pipe_enabled;
2457 a->sprites_enabled |= b->sprites_enabled;
2458 a->sprites_scaled |= b->sprites_scaled;
2459
2460 for (level = 0; level <= max_level; level++) {
2461 struct intel_wm_level *a_wm = &a->wm[level];
2462 const struct intel_wm_level *b_wm = &b->wm[level];
2463
2464 a_wm->enable &= b_wm->enable;
2465 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
2466 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
2467 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
2468 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
2469 }
2470
2471 /*
2472 * We need to make sure that these merged watermark values are
2473 * actually a valid configuration themselves. If they're not,
2474 * there's no safe way to transition from the old state to
2475 * the new state, so we need to fail the atomic transaction.
2476 */
2477 if (!ilk_validate_pipe_wm(dev, a))
2478 return -EINVAL;
2479
2480 /*
2481 * If our intermediate WM are identical to the final WM, then we can
2482 * omit the post-vblank programming; only update if it's different.
2483 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002484 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) == 0)
Matt Ropered4a6a72016-02-23 17:20:13 -08002485 newstate->wm.need_postvbl_update = false;
2486
2487 return 0;
2488}
2489
2490/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002491 * Merge the watermarks from all active pipes for a specific level.
2492 */
2493static void ilk_merge_wm_level(struct drm_device *dev,
2494 int level,
2495 struct intel_wm_level *ret_wm)
2496{
2497 const struct intel_crtc *intel_crtc;
2498
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002499 ret_wm->enable = true;
2500
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002501 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08002502 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002503 const struct intel_wm_level *wm = &active->wm[level];
2504
2505 if (!active->pipe_enabled)
2506 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002507
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002508 /*
2509 * The watermark values may have been used in the past,
2510 * so we must maintain them in the registers for some
2511 * time even if the level is now disabled.
2512 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002513 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002514 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002515
2516 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2517 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2518 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2519 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2520 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002521}
2522
2523/*
2524 * Merge all low power watermarks for all active pipes.
2525 */
2526static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002527 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002528 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002529 struct intel_pipe_wm *merged)
2530{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002531 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002532 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002533 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002534
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002535 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002536 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002537 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03002538 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002539
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002540 /* ILK: FBC WM must be disabled always */
2541 merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002542
2543 /* merge each WM1+ level */
2544 for (level = 1; level <= max_level; level++) {
2545 struct intel_wm_level *wm = &merged->wm[level];
2546
2547 ilk_merge_wm_level(dev, level, wm);
2548
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002549 if (level > last_enabled_level)
2550 wm->enable = false;
2551 else if (!ilk_validate_wm_level(level, max, wm))
2552 /* make sure all following levels get disabled */
2553 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002554
2555 /*
2556 * The spec says it is preferred to disable
2557 * FBC WMs instead of disabling a WM level.
2558 */
2559 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002560 if (wm->enable)
2561 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002562 wm->fbc_val = 0;
2563 }
2564 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002565
2566 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2567 /*
2568 * FIXME this is racy. FBC might get enabled later.
2569 * What we should check here is whether FBC can be
2570 * enabled sometime later.
2571 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002572 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03002573 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002574 for (level = 2; level <= max_level; level++) {
2575 struct intel_wm_level *wm = &merged->wm[level];
2576
2577 wm->enable = false;
2578 }
2579 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002580}
2581
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002582static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2583{
2584 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2585 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2586}
2587
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002588/* The value we need to program into the WM_LPx latency field */
2589static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2590{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002591 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002592
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002593 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002594 return 2 * level;
2595 else
2596 return dev_priv->wm.pri_latency[level];
2597}
2598
Imre Deak820c1982013-12-17 14:46:36 +02002599static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002600 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002601 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002602 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002603{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002604 struct intel_crtc *intel_crtc;
2605 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002606
Ville Syrjälä0362c782013-10-09 19:17:57 +03002607 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002608 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002609
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002610 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002611 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002612 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002613
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002614 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002615
Ville Syrjälä0362c782013-10-09 19:17:57 +03002616 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002617
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002618 /*
2619 * Maintain the watermark values even if the level is
2620 * disabled. Doing otherwise could cause underruns.
2621 */
2622 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002623 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002624 (r->pri_val << WM1_LP_SR_SHIFT) |
2625 r->cur_val;
2626
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002627 if (r->enable)
2628 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2629
Ville Syrjälä416f4722013-11-02 21:07:46 -07002630 if (INTEL_INFO(dev)->gen >= 8)
2631 results->wm_lp[wm_lp - 1] |=
2632 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2633 else
2634 results->wm_lp[wm_lp - 1] |=
2635 r->fbc_val << WM1_LP_FBC_SHIFT;
2636
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002637 /*
2638 * Always set WM1S_LP_EN when spr_val != 0, even if the
2639 * level is disabled. Doing otherwise could cause underruns.
2640 */
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002641 if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) {
2642 WARN_ON(wm_lp != 1);
2643 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2644 } else
2645 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002646 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002647
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002648 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002649 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002650 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08002651 const struct intel_wm_level *r =
2652 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002653
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002654 if (WARN_ON(!r->enable))
2655 continue;
2656
Matt Ropered4a6a72016-02-23 17:20:13 -08002657 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002658
2659 results->wm_pipe[pipe] =
2660 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2661 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2662 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002663 }
2664}
2665
Paulo Zanoni861f3382013-05-31 10:19:21 -03002666/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2667 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002668static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002669 struct intel_pipe_wm *r1,
2670 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002671{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002672 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002673 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002674
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002675 for (level = 1; level <= max_level; level++) {
2676 if (r1->wm[level].enable)
2677 level1 = level;
2678 if (r2->wm[level].enable)
2679 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002680 }
2681
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002682 if (level1 == level2) {
2683 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002684 return r2;
2685 else
2686 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002687 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002688 return r1;
2689 } else {
2690 return r2;
2691 }
2692}
2693
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002694/* dirty bits used to track which watermarks need changes */
2695#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2696#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2697#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2698#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2699#define WM_DIRTY_FBC (1 << 24)
2700#define WM_DIRTY_DDB (1 << 25)
2701
Damien Lespiau055e3932014-08-18 13:49:10 +01002702static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002703 const struct ilk_wm_values *old,
2704 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002705{
2706 unsigned int dirty = 0;
2707 enum pipe pipe;
2708 int wm_lp;
2709
Damien Lespiau055e3932014-08-18 13:49:10 +01002710 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002711 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2712 dirty |= WM_DIRTY_LINETIME(pipe);
2713 /* Must disable LP1+ watermarks too */
2714 dirty |= WM_DIRTY_LP_ALL;
2715 }
2716
2717 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2718 dirty |= WM_DIRTY_PIPE(pipe);
2719 /* Must disable LP1+ watermarks too */
2720 dirty |= WM_DIRTY_LP_ALL;
2721 }
2722 }
2723
2724 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2725 dirty |= WM_DIRTY_FBC;
2726 /* Must disable LP1+ watermarks too */
2727 dirty |= WM_DIRTY_LP_ALL;
2728 }
2729
2730 if (old->partitioning != new->partitioning) {
2731 dirty |= WM_DIRTY_DDB;
2732 /* Must disable LP1+ watermarks too */
2733 dirty |= WM_DIRTY_LP_ALL;
2734 }
2735
2736 /* LP1+ watermarks already deemed dirty, no need to continue */
2737 if (dirty & WM_DIRTY_LP_ALL)
2738 return dirty;
2739
2740 /* Find the lowest numbered LP1+ watermark in need of an update... */
2741 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2742 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2743 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2744 break;
2745 }
2746
2747 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2748 for (; wm_lp <= 3; wm_lp++)
2749 dirty |= WM_DIRTY_LP(wm_lp);
2750
2751 return dirty;
2752}
2753
Ville Syrjälä8553c182013-12-05 15:51:39 +02002754static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2755 unsigned int dirty)
2756{
Imre Deak820c1982013-12-17 14:46:36 +02002757 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002758 bool changed = false;
2759
2760 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2761 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2762 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2763 changed = true;
2764 }
2765 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2766 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2767 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2768 changed = true;
2769 }
2770 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2771 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2772 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2773 changed = true;
2774 }
2775
2776 /*
2777 * Don't touch WM1S_LP_EN here.
2778 * Doing so could cause underruns.
2779 */
2780
2781 return changed;
2782}
2783
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002784/*
2785 * The spec says we shouldn't write when we don't need, because every write
2786 * causes WMs to be re-evaluated, expending some power.
2787 */
Imre Deak820c1982013-12-17 14:46:36 +02002788static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2789 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002790{
Chris Wilson91c8a322016-07-05 10:40:23 +01002791 struct drm_device *dev = &dev_priv->drm;
Imre Deak820c1982013-12-17 14:46:36 +02002792 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002793 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002794 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002795
Damien Lespiau055e3932014-08-18 13:49:10 +01002796 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002797 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002798 return;
2799
Ville Syrjälä8553c182013-12-05 15:51:39 +02002800 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002801
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002802 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002803 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002804 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002805 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002806 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002807 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2808
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002809 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002810 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002811 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002812 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002813 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002814 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2815
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002816 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002817 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002818 val = I915_READ(WM_MISC);
2819 if (results->partitioning == INTEL_DDB_PART_1_2)
2820 val &= ~WM_MISC_DATA_PARTITION_5_6;
2821 else
2822 val |= WM_MISC_DATA_PARTITION_5_6;
2823 I915_WRITE(WM_MISC, val);
2824 } else {
2825 val = I915_READ(DISP_ARB_CTL2);
2826 if (results->partitioning == INTEL_DDB_PART_1_2)
2827 val &= ~DISP_DATA_PARTITION_5_6;
2828 else
2829 val |= DISP_DATA_PARTITION_5_6;
2830 I915_WRITE(DISP_ARB_CTL2, val);
2831 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002832 }
2833
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002834 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002835 val = I915_READ(DISP_ARB_CTL);
2836 if (results->enable_fbc_wm)
2837 val &= ~DISP_FBC_WM_DIS;
2838 else
2839 val |= DISP_FBC_WM_DIS;
2840 I915_WRITE(DISP_ARB_CTL, val);
2841 }
2842
Imre Deak954911e2013-12-17 14:46:34 +02002843 if (dirty & WM_DIRTY_LP(1) &&
2844 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2845 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2846
2847 if (INTEL_INFO(dev)->gen >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002848 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2849 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2850 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2851 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2852 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002853
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002854 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002855 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002856 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002857 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd6192013-12-05 15:51:33 +02002858 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002859 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002860
2861 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002862}
2863
Matt Ropered4a6a72016-02-23 17:20:13 -08002864bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02002865{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002866 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02002867
2868 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2869}
2870
Lyude656d1b82016-08-17 15:55:54 -04002871#define SKL_SAGV_BLOCK_TIME 30 /* µs */
Damien Lespiaub9cec072014-11-04 17:06:43 +00002872
Matt Roper024c9042015-09-24 15:53:11 -07002873/*
2874 * Return the index of a plane in the SKL DDB and wm result arrays. Primary
2875 * plane is always in slot 0, cursor is always in slot I915_MAX_PLANES-1, and
2876 * other universal planes are in indices 1..n. Note that this may leave unused
2877 * indices between the top "sprite" plane and the cursor.
2878 */
2879static int
2880skl_wm_plane_id(const struct intel_plane *plane)
2881{
2882 switch (plane->base.type) {
2883 case DRM_PLANE_TYPE_PRIMARY:
2884 return 0;
2885 case DRM_PLANE_TYPE_CURSOR:
2886 return PLANE_CURSOR;
2887 case DRM_PLANE_TYPE_OVERLAY:
2888 return plane->plane + 1;
2889 default:
2890 MISSING_CASE(plane->base.type);
2891 return plane->plane;
2892 }
2893}
2894
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002895/*
2896 * FIXME: We still don't have the proper code detect if we need to apply the WA,
2897 * so assume we'll always need it in order to avoid underruns.
2898 */
2899static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
2900{
2901 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
2902
2903 if (IS_SKYLAKE(dev_priv) || IS_BROXTON(dev_priv) ||
2904 IS_KABYLAKE(dev_priv))
2905 return true;
2906
2907 return false;
2908}
2909
Paulo Zanoni56feca92016-09-22 18:00:28 -03002910static bool
2911intel_has_sagv(struct drm_i915_private *dev_priv)
2912{
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002913 if (IS_KABYLAKE(dev_priv))
2914 return true;
2915
2916 if (IS_SKYLAKE(dev_priv) &&
2917 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
2918 return true;
2919
2920 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03002921}
2922
Lyude656d1b82016-08-17 15:55:54 -04002923/*
2924 * SAGV dynamically adjusts the system agent voltage and clock frequencies
2925 * depending on power and performance requirements. The display engine access
2926 * to system memory is blocked during the adjustment time. Because of the
2927 * blocking time, having this enabled can cause full system hangs and/or pipe
2928 * underruns if we don't meet all of the following requirements:
2929 *
2930 * - <= 1 pipe enabled
2931 * - All planes can enable watermarks for latencies >= SAGV engine block time
2932 * - We're not using an interlaced display configuration
2933 */
2934int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002935intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002936{
2937 int ret;
2938
Paulo Zanoni56feca92016-09-22 18:00:28 -03002939 if (!intel_has_sagv(dev_priv))
2940 return 0;
2941
2942 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04002943 return 0;
2944
2945 DRM_DEBUG_KMS("Enabling the SAGV\n");
2946 mutex_lock(&dev_priv->rps.hw_lock);
2947
2948 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2949 GEN9_SAGV_ENABLE);
2950
2951 /* We don't need to wait for the SAGV when enabling */
2952 mutex_unlock(&dev_priv->rps.hw_lock);
2953
2954 /*
2955 * Some skl systems, pre-release machines in particular,
2956 * don't actually have an SAGV.
2957 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002958 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04002959 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002960 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04002961 return 0;
2962 } else if (ret < 0) {
2963 DRM_ERROR("Failed to enable the SAGV\n");
2964 return ret;
2965 }
2966
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002967 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04002968 return 0;
2969}
2970
2971static int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002972intel_do_sagv_disable(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002973{
2974 int ret;
2975 uint32_t temp = GEN9_SAGV_DISABLE;
2976
2977 ret = sandybridge_pcode_read(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2978 &temp);
2979 if (ret)
2980 return ret;
2981 else
2982 return temp & GEN9_SAGV_IS_DISABLED;
2983}
2984
2985int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002986intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002987{
2988 int ret, result;
2989
Paulo Zanoni56feca92016-09-22 18:00:28 -03002990 if (!intel_has_sagv(dev_priv))
2991 return 0;
2992
2993 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04002994 return 0;
2995
2996 DRM_DEBUG_KMS("Disabling the SAGV\n");
2997 mutex_lock(&dev_priv->rps.hw_lock);
2998
2999 /* bspec says to keep retrying for at least 1 ms */
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003000 ret = wait_for(result = intel_do_sagv_disable(dev_priv), 1);
Lyude656d1b82016-08-17 15:55:54 -04003001 mutex_unlock(&dev_priv->rps.hw_lock);
3002
3003 if (ret == -ETIMEDOUT) {
3004 DRM_ERROR("Request to disable SAGV timed out\n");
3005 return -ETIMEDOUT;
3006 }
3007
3008 /*
3009 * Some skl systems, pre-release machines in particular,
3010 * don't actually have an SAGV.
3011 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003012 if (IS_SKYLAKE(dev_priv) && result == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003013 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003014 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003015 return 0;
3016 } else if (result < 0) {
3017 DRM_ERROR("Failed to disable the SAGV\n");
3018 return result;
3019 }
3020
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003021 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003022 return 0;
3023}
3024
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003025bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04003026{
3027 struct drm_device *dev = state->dev;
3028 struct drm_i915_private *dev_priv = to_i915(dev);
3029 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003030 struct intel_crtc *crtc;
3031 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003032 struct intel_crtc_state *cstate;
3033 struct skl_plane_wm *wm;
Lyude656d1b82016-08-17 15:55:54 -04003034 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003035 int level, latency;
Lyude656d1b82016-08-17 15:55:54 -04003036
Paulo Zanoni56feca92016-09-22 18:00:28 -03003037 if (!intel_has_sagv(dev_priv))
3038 return false;
3039
Lyude656d1b82016-08-17 15:55:54 -04003040 /*
3041 * SKL workaround: bspec recommends we disable the SAGV when we have
3042 * more then one pipe enabled
3043 *
3044 * If there are no active CRTCs, no additional checks need be performed
3045 */
3046 if (hweight32(intel_state->active_crtcs) == 0)
3047 return true;
3048 else if (hweight32(intel_state->active_crtcs) > 1)
3049 return false;
3050
3051 /* Since we're now guaranteed to only have one active CRTC... */
3052 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003053 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003054 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003055
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003056 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003057 return false;
3058
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003059 for_each_intel_plane_on_crtc(dev, crtc, plane) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003060 wm = &cstate->wm.skl.optimal.planes[skl_wm_plane_id(plane)];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003061
Lyude656d1b82016-08-17 15:55:54 -04003062 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003063 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003064 continue;
3065
3066 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003067 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003068 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003069 { }
3070
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003071 latency = dev_priv->wm.skl_latency[level];
3072
3073 if (skl_needs_memory_bw_wa(intel_state) &&
3074 plane->base.state->fb->modifier[0] ==
3075 I915_FORMAT_MOD_X_TILED)
3076 latency += 15;
3077
Lyude656d1b82016-08-17 15:55:54 -04003078 /*
3079 * If any of the planes on this pipe don't enable wm levels
3080 * that incur memory latencies higher then 30µs we can't enable
3081 * the SAGV
3082 */
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003083 if (latency < SKL_SAGV_BLOCK_TIME)
Lyude656d1b82016-08-17 15:55:54 -04003084 return false;
3085 }
3086
3087 return true;
3088}
3089
Damien Lespiaub9cec072014-11-04 17:06:43 +00003090static void
3091skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003092 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003093 struct skl_ddb_entry *alloc, /* out */
3094 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003095{
Matt Roperc107acf2016-05-12 07:06:01 -07003096 struct drm_atomic_state *state = cstate->base.state;
3097 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3098 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003099 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003100 unsigned int pipe_size, ddb_size;
3101 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003102
Matt Ropera6d3460e2016-05-12 07:06:04 -07003103 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003104 alloc->start = 0;
3105 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003106 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003107 return;
3108 }
3109
Matt Ropera6d3460e2016-05-12 07:06:04 -07003110 if (intel_state->active_pipe_changes)
3111 *num_active = hweight32(intel_state->active_crtcs);
3112 else
3113 *num_active = hweight32(dev_priv->active_crtcs);
3114
Deepak M6f3fff62016-09-15 15:01:10 +05303115 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3116 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003117
3118 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3119
Matt Roperc107acf2016-05-12 07:06:01 -07003120 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003121 * If the state doesn't change the active CRTC's, then there's
3122 * no need to recalculate; the existing pipe allocation limits
3123 * should remain unchanged. Note that we're safe from racing
3124 * commits since any racing commit that changes the active CRTC
3125 * list would need to grab _all_ crtc locks, including the one
3126 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003127 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003128 if (!intel_state->active_pipe_changes) {
Lyudece0ba282016-09-15 10:46:35 -04003129 *alloc = to_intel_crtc(for_crtc)->hw_ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003130 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003131 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003132
3133 nth_active_pipe = hweight32(intel_state->active_crtcs &
3134 (drm_crtc_mask(for_crtc) - 1));
3135 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3136 alloc->start = nth_active_pipe * ddb_size / *num_active;
3137 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003138}
3139
Matt Roperc107acf2016-05-12 07:06:01 -07003140static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003141{
Matt Roperc107acf2016-05-12 07:06:01 -07003142 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003143 return 32;
3144
3145 return 8;
3146}
3147
Damien Lespiaua269c582014-11-04 17:06:49 +00003148static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3149{
3150 entry->start = reg & 0x3ff;
3151 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003152 if (entry->end)
3153 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003154}
3155
Damien Lespiau08db6652014-11-04 17:06:52 +00003156void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3157 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003158{
Damien Lespiaua269c582014-11-04 17:06:49 +00003159 enum pipe pipe;
3160 int plane;
3161 u32 val;
3162
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003163 memset(ddb, 0, sizeof(*ddb));
3164
Damien Lespiaua269c582014-11-04 17:06:49 +00003165 for_each_pipe(dev_priv, pipe) {
Imre Deak4d800032016-02-17 16:31:29 +02003166 enum intel_display_power_domain power_domain;
3167
3168 power_domain = POWER_DOMAIN_PIPE(pipe);
3169 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003170 continue;
3171
Matt Roper8b364b42016-10-26 15:51:28 -07003172 for_each_universal_plane(dev_priv, pipe, plane) {
Damien Lespiaua269c582014-11-04 17:06:49 +00003173 val = I915_READ(PLANE_BUF_CFG(pipe, plane));
3174 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane],
3175 val);
3176 }
3177
3178 val = I915_READ(CUR_BUF_CFG(pipe));
Matt Roper4969d332015-09-24 15:53:10 -07003179 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][PLANE_CURSOR],
3180 val);
Imre Deak4d800032016-02-17 16:31:29 +02003181
3182 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003183 }
3184}
3185
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003186/*
3187 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3188 * The bspec defines downscale amount as:
3189 *
3190 * """
3191 * Horizontal down scale amount = maximum[1, Horizontal source size /
3192 * Horizontal destination size]
3193 * Vertical down scale amount = maximum[1, Vertical source size /
3194 * Vertical destination size]
3195 * Total down scale amount = Horizontal down scale amount *
3196 * Vertical down scale amount
3197 * """
3198 *
3199 * Return value is provided in 16.16 fixed point form to retain fractional part.
3200 * Caller should take care of dividing & rounding off the value.
3201 */
3202static uint32_t
3203skl_plane_downscale_amount(const struct intel_plane_state *pstate)
3204{
3205 uint32_t downscale_h, downscale_w;
3206 uint32_t src_w, src_h, dst_w, dst_h;
3207
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003208 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003209 return DRM_PLANE_HELPER_NO_SCALING;
3210
3211 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003212 src_w = drm_rect_width(&pstate->base.src);
3213 src_h = drm_rect_height(&pstate->base.src);
3214 dst_w = drm_rect_width(&pstate->base.dst);
3215 dst_h = drm_rect_height(&pstate->base.dst);
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003216 if (drm_rotation_90_or_270(pstate->base.rotation))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003217 swap(dst_w, dst_h);
3218
3219 downscale_h = max(src_h / dst_h, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3220 downscale_w = max(src_w / dst_w, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3221
3222 /* Provide result in 16.16 fixed point */
3223 return (uint64_t)downscale_w * downscale_h >> 16;
3224}
3225
Damien Lespiaub9cec072014-11-04 17:06:43 +00003226static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003227skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3228 const struct drm_plane_state *pstate,
3229 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003230{
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003231 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Matt Roper024c9042015-09-24 15:53:11 -07003232 struct drm_framebuffer *fb = pstate->fb;
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003233 uint32_t down_scale_amount, data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003234 uint32_t width = 0, height = 0;
Matt Ropera1de91e2016-05-12 07:05:57 -07003235 unsigned format = fb ? fb->pixel_format : DRM_FORMAT_XRGB8888;
3236
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003237 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07003238 return 0;
3239 if (pstate->plane->type == DRM_PLANE_TYPE_CURSOR)
3240 return 0;
3241 if (y && format != DRM_FORMAT_NV12)
3242 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003243
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003244 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3245 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003246
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003247 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003248 swap(width, height);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003249
3250 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07003251 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003252 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003253 data_rate = width * height *
Matt Ropera1de91e2016-05-12 07:05:57 -07003254 drm_format_plane_cpp(format, 0);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003255 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003256 data_rate = (width / 2) * (height / 2) *
Matt Ropera1de91e2016-05-12 07:05:57 -07003257 drm_format_plane_cpp(format, 1);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003258 } else {
3259 /* for packed formats */
3260 data_rate = width * height * drm_format_plane_cpp(format, 0);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003261 }
3262
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003263 down_scale_amount = skl_plane_downscale_amount(intel_pstate);
3264
3265 return (uint64_t)data_rate * down_scale_amount >> 16;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003266}
3267
3268/*
3269 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
3270 * a 8192x4096@32bpp framebuffer:
3271 * 3 * 4096 * 8192 * 4 < 2^32
3272 */
3273static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003274skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
3275 unsigned *plane_data_rate,
3276 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003277{
Matt Roper9c74d822016-05-12 07:05:58 -07003278 struct drm_crtc_state *cstate = &intel_cstate->base;
3279 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003280 struct drm_plane *plane;
Matt Roper024c9042015-09-24 15:53:11 -07003281 const struct intel_plane *intel_plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003282 const struct drm_plane_state *pstate;
Matt Ropera1de91e2016-05-12 07:05:57 -07003283 unsigned int rate, total_data_rate = 0;
Matt Roper9c74d822016-05-12 07:05:58 -07003284 int id;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003285
3286 if (WARN_ON(!state))
3287 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003288
Matt Ropera1de91e2016-05-12 07:05:57 -07003289 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003290 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Matt Ropera6d3460e2016-05-12 07:06:04 -07003291 id = skl_wm_plane_id(to_intel_plane(plane));
3292 intel_plane = to_intel_plane(plane);
Matt Roper024c9042015-09-24 15:53:11 -07003293
Matt Ropera6d3460e2016-05-12 07:06:04 -07003294 /* packed/uv */
3295 rate = skl_plane_relative_data_rate(intel_cstate,
3296 pstate, 0);
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003297 plane_data_rate[id] = rate;
3298
3299 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07003300
Matt Ropera6d3460e2016-05-12 07:06:04 -07003301 /* y-plane */
3302 rate = skl_plane_relative_data_rate(intel_cstate,
3303 pstate, 1);
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003304 plane_y_data_rate[id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07003305
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003306 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003307 }
3308
3309 return total_data_rate;
3310}
3311
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003312static uint16_t
3313skl_ddb_min_alloc(const struct drm_plane_state *pstate,
3314 const int y)
3315{
3316 struct drm_framebuffer *fb = pstate->fb;
3317 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
3318 uint32_t src_w, src_h;
3319 uint32_t min_scanlines = 8;
3320 uint8_t plane_bpp;
3321
3322 if (WARN_ON(!fb))
3323 return 0;
3324
3325 /* For packed formats, no y-plane, return 0 */
3326 if (y && fb->pixel_format != DRM_FORMAT_NV12)
3327 return 0;
3328
3329 /* For Non Y-tile return 8-blocks */
3330 if (fb->modifier[0] != I915_FORMAT_MOD_Y_TILED &&
3331 fb->modifier[0] != I915_FORMAT_MOD_Yf_TILED)
3332 return 8;
3333
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003334 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
3335 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003336
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003337 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003338 swap(src_w, src_h);
3339
3340 /* Halve UV plane width and height for NV12 */
3341 if (fb->pixel_format == DRM_FORMAT_NV12 && !y) {
3342 src_w /= 2;
3343 src_h /= 2;
3344 }
3345
3346 if (fb->pixel_format == DRM_FORMAT_NV12 && !y)
3347 plane_bpp = drm_format_plane_cpp(fb->pixel_format, 1);
3348 else
3349 plane_bpp = drm_format_plane_cpp(fb->pixel_format, 0);
3350
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003351 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003352 switch (plane_bpp) {
3353 case 1:
3354 min_scanlines = 32;
3355 break;
3356 case 2:
3357 min_scanlines = 16;
3358 break;
3359 case 4:
3360 min_scanlines = 8;
3361 break;
3362 case 8:
3363 min_scanlines = 4;
3364 break;
3365 default:
3366 WARN(1, "Unsupported pixel depth %u for rotation",
3367 plane_bpp);
3368 min_scanlines = 32;
3369 }
3370 }
3371
3372 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
3373}
3374
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003375static void
3376skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
3377 uint16_t *minimum, uint16_t *y_minimum)
3378{
3379 const struct drm_plane_state *pstate;
3380 struct drm_plane *plane;
3381
3382 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
3383 struct intel_plane *intel_plane = to_intel_plane(plane);
3384 int id = skl_wm_plane_id(intel_plane);
3385
3386 if (id == PLANE_CURSOR)
3387 continue;
3388
3389 if (!pstate->visible)
3390 continue;
3391
3392 minimum[id] = skl_ddb_min_alloc(pstate, 0);
3393 y_minimum[id] = skl_ddb_min_alloc(pstate, 1);
3394 }
3395
3396 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
3397}
3398
Matt Roperc107acf2016-05-12 07:06:01 -07003399static int
Matt Roper024c9042015-09-24 15:53:11 -07003400skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00003401 struct skl_ddb_allocation *ddb /* out */)
3402{
Matt Roperc107acf2016-05-12 07:06:01 -07003403 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003404 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003405 struct drm_device *dev = crtc->dev;
3406 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3407 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04003408 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003409 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02003410 uint16_t minimum[I915_MAX_PLANES] = {};
3411 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003412 unsigned int total_data_rate;
Matt Roperc107acf2016-05-12 07:06:01 -07003413 int num_active;
3414 int id, i;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003415 unsigned plane_data_rate[I915_MAX_PLANES] = {};
3416 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003417
Paulo Zanoni5a920b82016-10-04 14:37:32 -03003418 /* Clear the partitioning for disabled planes. */
3419 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
3420 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
3421
Matt Ropera6d3460e2016-05-12 07:06:04 -07003422 if (WARN_ON(!state))
3423 return 0;
3424
Matt Roperc107acf2016-05-12 07:06:01 -07003425 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04003426 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07003427 return 0;
3428 }
3429
Matt Ropera6d3460e2016-05-12 07:06:04 -07003430 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003431 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003432 if (alloc_size == 0) {
3433 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roperc107acf2016-05-12 07:06:01 -07003434 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003435 }
3436
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003437 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003438
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003439 /*
3440 * 1. Allocate the mininum required blocks for each active plane
3441 * and allocate the cursor, it doesn't require extra allocation
3442 * proportional to the data rate.
3443 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00003444
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003445 for (i = 0; i < I915_MAX_PLANES; i++) {
Matt Roperc107acf2016-05-12 07:06:01 -07003446 alloc_size -= minimum[i];
3447 alloc_size -= y_minimum[i];
Damien Lespiau80958152015-02-09 13:35:10 +00003448 }
3449
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003450 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
3451 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
3452
Damien Lespiaub9cec072014-11-04 17:06:43 +00003453 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003454 * 2. Distribute the remaining space in proportion to the amount of
3455 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003456 *
3457 * FIXME: we may not allocate every single block here.
3458 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003459 total_data_rate = skl_get_total_relative_data_rate(cstate,
3460 plane_data_rate,
3461 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07003462 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07003463 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003464
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003465 start = alloc->start;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003466 for (id = 0; id < I915_MAX_PLANES; id++) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003467 unsigned int data_rate, y_data_rate;
3468 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003469
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003470 if (id == PLANE_CURSOR)
3471 continue;
3472
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003473 data_rate = plane_data_rate[id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003474
3475 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003476 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003477 * promote the expression to 64 bits to avoid overflowing, the
3478 * result is < available as data_rate / total_data_rate < 1
3479 */
Matt Roper024c9042015-09-24 15:53:11 -07003480 plane_blocks = minimum[id];
Damien Lespiau80958152015-02-09 13:35:10 +00003481 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3482 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003483
Matt Roperc107acf2016-05-12 07:06:01 -07003484 /* Leave disabled planes at (0,0) */
3485 if (data_rate) {
3486 ddb->plane[pipe][id].start = start;
3487 ddb->plane[pipe][id].end = start + plane_blocks;
3488 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00003489
3490 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003491
3492 /*
3493 * allocation for y_plane part of planar format:
3494 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003495 y_data_rate = plane_y_data_rate[id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003496
Matt Ropera1de91e2016-05-12 07:05:57 -07003497 y_plane_blocks = y_minimum[id];
3498 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3499 total_data_rate);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003500
Matt Roperc107acf2016-05-12 07:06:01 -07003501 if (y_data_rate) {
3502 ddb->y_plane[pipe][id].start = start;
3503 ddb->y_plane[pipe][id].end = start + y_plane_blocks;
3504 }
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003505
Matt Ropera1de91e2016-05-12 07:05:57 -07003506 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003507 }
3508
Matt Roperc107acf2016-05-12 07:06:01 -07003509 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003510}
3511
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003512/*
3513 * 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 +02003514 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003515 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3516 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3517*/
Ville Syrjäläac484962016-01-20 21:05:26 +02003518static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003519{
3520 uint32_t wm_intermediate_val, ret;
3521
3522 if (latency == 0)
3523 return UINT_MAX;
3524
Ville Syrjäläac484962016-01-20 21:05:26 +02003525 wm_intermediate_val = latency * pixel_rate * cpp / 512;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003526 ret = DIV_ROUND_UP(wm_intermediate_val, 1000);
3527
3528 return ret;
3529}
3530
3531static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003532 uint32_t latency, uint32_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003533{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003534 uint32_t ret;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003535 uint32_t wm_intermediate_val;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003536
3537 if (latency == 0)
3538 return UINT_MAX;
3539
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003540 wm_intermediate_val = latency * pixel_rate;
3541 ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) *
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003542 plane_blocks_per_line;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003543
3544 return ret;
3545}
3546
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003547static uint32_t skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
3548 struct intel_plane_state *pstate)
3549{
3550 uint64_t adjusted_pixel_rate;
3551 uint64_t downscale_amount;
3552 uint64_t pixel_rate;
3553
3554 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003555 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003556 return 0;
3557
3558 /*
3559 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
3560 * with additional adjustments for plane-specific scaling.
3561 */
Paulo Zanonicfd7e3a2016-10-07 17:28:57 -03003562 adjusted_pixel_rate = ilk_pipe_pixel_rate(cstate);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003563 downscale_amount = skl_plane_downscale_amount(pstate);
3564
3565 pixel_rate = adjusted_pixel_rate * downscale_amount >> 16;
3566 WARN_ON(pixel_rate != clamp_t(uint32_t, pixel_rate, 0, ~0));
3567
3568 return pixel_rate;
3569}
3570
Matt Roper55994c22016-05-12 07:06:08 -07003571static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3572 struct intel_crtc_state *cstate,
3573 struct intel_plane_state *intel_pstate,
3574 uint16_t ddb_allocation,
3575 int level,
3576 uint16_t *out_blocks, /* out */
3577 uint8_t *out_lines, /* out */
3578 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003579{
Matt Roper33815fa2016-05-12 07:06:05 -07003580 struct drm_plane_state *pstate = &intel_pstate->base;
3581 struct drm_framebuffer *fb = pstate->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003582 uint32_t latency = dev_priv->wm.skl_latency[level];
3583 uint32_t method1, method2;
3584 uint32_t plane_bytes_per_line, plane_blocks_per_line;
3585 uint32_t res_blocks, res_lines;
3586 uint32_t selected_result;
Ville Syrjäläac484962016-01-20 21:05:26 +02003587 uint8_t cpp;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003588 uint32_t width = 0, height = 0;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003589 uint32_t plane_pixel_rate;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003590 uint32_t y_tile_minimum, y_min_scanlines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003591 struct intel_atomic_state *state =
3592 to_intel_atomic_state(cstate->base.state);
3593 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003594
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003595 if (latency == 0 || !cstate->base.active || !intel_pstate->base.visible) {
Matt Roper55994c22016-05-12 07:06:08 -07003596 *enabled = false;
3597 return 0;
3598 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003599
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003600 if (apply_memory_bw_wa && fb->modifier[0] == I915_FORMAT_MOD_X_TILED)
3601 latency += 15;
3602
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003603 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3604 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003605
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003606 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003607 swap(width, height);
3608
Ville Syrjäläac484962016-01-20 21:05:26 +02003609 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003610 plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate, intel_pstate);
3611
Dave Airlie61d0a042016-10-25 16:35:20 +10003612 if (drm_rotation_90_or_270(pstate->rotation)) {
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003613 int cpp = (fb->pixel_format == DRM_FORMAT_NV12) ?
3614 drm_format_plane_cpp(fb->pixel_format, 1) :
3615 drm_format_plane_cpp(fb->pixel_format, 0);
3616
3617 switch (cpp) {
3618 case 1:
3619 y_min_scanlines = 16;
3620 break;
3621 case 2:
3622 y_min_scanlines = 8;
3623 break;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003624 case 4:
3625 y_min_scanlines = 4;
3626 break;
Paulo Zanoni86a462b2016-09-22 18:00:35 -03003627 default:
3628 MISSING_CASE(cpp);
3629 return -EINVAL;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003630 }
3631 } else {
3632 y_min_scanlines = 4;
3633 }
3634
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003635 plane_bytes_per_line = width * cpp;
3636 if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED ||
3637 fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED) {
3638 plane_blocks_per_line =
3639 DIV_ROUND_UP(plane_bytes_per_line * y_min_scanlines, 512);
3640 plane_blocks_per_line /= y_min_scanlines;
3641 } else if (fb->modifier[0] == DRM_FORMAT_MOD_NONE) {
3642 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512)
3643 + 1;
3644 } else {
3645 plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512);
3646 }
3647
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003648 method1 = skl_wm_method1(plane_pixel_rate, cpp, latency);
3649 method2 = skl_wm_method2(plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07003650 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003651 latency,
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003652 plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003653
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003654 y_tile_minimum = plane_blocks_per_line * y_min_scanlines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003655 if (apply_memory_bw_wa)
3656 y_tile_minimum *= 2;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003657
Matt Roper024c9042015-09-24 15:53:11 -07003658 if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED ||
3659 fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED) {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003660 selected_result = max(method2, y_tile_minimum);
3661 } else {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03003662 if ((cpp * cstate->base.adjusted_mode.crtc_htotal / 512 < 1) &&
3663 (plane_bytes_per_line / 512 < 1))
3664 selected_result = method2;
3665 else if ((ddb_allocation / plane_blocks_per_line) >= 1)
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003666 selected_result = min(method1, method2);
3667 else
3668 selected_result = method1;
3669 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003670
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003671 res_blocks = selected_result + 1;
3672 res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003673
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003674 if (level >= 1 && level <= 7) {
Matt Roper024c9042015-09-24 15:53:11 -07003675 if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED ||
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003676 fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED) {
3677 res_blocks += y_tile_minimum;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003678 res_lines += y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003679 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003680 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003681 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003682 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003683
Matt Roper55994c22016-05-12 07:06:08 -07003684 if (res_blocks >= ddb_allocation || res_lines > 31) {
3685 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07003686
3687 /*
3688 * If there are no valid level 0 watermarks, then we can't
3689 * support this display configuration.
3690 */
3691 if (level) {
3692 return 0;
3693 } else {
3694 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
3695 DRM_DEBUG_KMS("Plane %d.%d: blocks required = %u/%u, lines required = %u/31\n",
3696 to_intel_crtc(cstate->base.crtc)->pipe,
3697 skl_wm_plane_id(to_intel_plane(pstate->plane)),
3698 res_blocks, ddb_allocation, res_lines);
3699
3700 return -EINVAL;
3701 }
Matt Roper55994c22016-05-12 07:06:08 -07003702 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00003703
3704 *out_blocks = res_blocks;
3705 *out_lines = res_lines;
Matt Roper55994c22016-05-12 07:06:08 -07003706 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003707
Matt Roper55994c22016-05-12 07:06:08 -07003708 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003709}
3710
Matt Roperf4a96752016-05-12 07:06:06 -07003711static int
3712skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3713 struct skl_ddb_allocation *ddb,
3714 struct intel_crtc_state *cstate,
Lyudea62163e2016-10-04 14:28:20 -04003715 struct intel_plane *intel_plane,
Matt Roperf4a96752016-05-12 07:06:06 -07003716 int level,
3717 struct skl_wm_level *result)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003718{
Matt Roperf4a96752016-05-12 07:06:06 -07003719 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003720 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Lyudea62163e2016-10-04 14:28:20 -04003721 struct drm_plane *plane = &intel_plane->base;
3722 struct intel_plane_state *intel_pstate = NULL;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003723 uint16_t ddb_blocks;
Matt Roper024c9042015-09-24 15:53:11 -07003724 enum pipe pipe = intel_crtc->pipe;
Matt Roper55994c22016-05-12 07:06:08 -07003725 int ret;
Lyudea62163e2016-10-04 14:28:20 -04003726 int i = skl_wm_plane_id(intel_plane);
3727
3728 if (state)
3729 intel_pstate =
3730 intel_atomic_get_existing_plane_state(state,
3731 intel_plane);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003732
Matt Roperf4a96752016-05-12 07:06:06 -07003733 /*
Lyudea62163e2016-10-04 14:28:20 -04003734 * Note: If we start supporting multiple pending atomic commits against
3735 * the same planes/CRTC's in the future, plane->state will no longer be
3736 * the correct pre-state to use for the calculations here and we'll
3737 * need to change where we get the 'unchanged' plane data from.
3738 *
3739 * For now this is fine because we only allow one queued commit against
3740 * a CRTC. Even if the plane isn't modified by this transaction and we
3741 * don't have a plane lock, we still have the CRTC's lock, so we know
3742 * that no other transactions are racing with us to update it.
Matt Roperf4a96752016-05-12 07:06:06 -07003743 */
Lyudea62163e2016-10-04 14:28:20 -04003744 if (!intel_pstate)
3745 intel_pstate = to_intel_plane_state(plane->state);
Matt Roperf4a96752016-05-12 07:06:06 -07003746
Lyudea62163e2016-10-04 14:28:20 -04003747 WARN_ON(!intel_pstate->base.fb);
Matt Roper024c9042015-09-24 15:53:11 -07003748
Lyudea62163e2016-10-04 14:28:20 -04003749 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]);
Matt Roperf4a96752016-05-12 07:06:06 -07003750
Lyudea62163e2016-10-04 14:28:20 -04003751 ret = skl_compute_plane_wm(dev_priv,
3752 cstate,
3753 intel_pstate,
3754 ddb_blocks,
3755 level,
3756 &result->plane_res_b,
3757 &result->plane_res_l,
3758 &result->plane_en);
3759 if (ret)
3760 return ret;
Matt Roperf4a96752016-05-12 07:06:06 -07003761
3762 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003763}
3764
Damien Lespiau407b50f2014-11-04 17:06:57 +00003765static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07003766skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003767{
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003768 uint32_t pixel_rate;
3769
Matt Roper024c9042015-09-24 15:53:11 -07003770 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003771 return 0;
3772
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003773 pixel_rate = ilk_pipe_pixel_rate(cstate);
3774
3775 if (WARN_ON(pixel_rate == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003776 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003777
Matt Roper024c9042015-09-24 15:53:11 -07003778 return DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal * 1000,
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003779 pixel_rate);
Damien Lespiau407b50f2014-11-04 17:06:57 +00003780}
3781
Matt Roper024c9042015-09-24 15:53:11 -07003782static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003783 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003784{
Matt Roper024c9042015-09-24 15:53:11 -07003785 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003786 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003787
3788 /* Until we know more, just disable transition WMs */
Lyudea62163e2016-10-04 14:28:20 -04003789 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003790}
3791
Matt Roper55994c22016-05-12 07:06:08 -07003792static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
3793 struct skl_ddb_allocation *ddb,
3794 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003795{
Matt Roper024c9042015-09-24 15:53:11 -07003796 struct drm_device *dev = cstate->base.crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003797 const struct drm_i915_private *dev_priv = to_i915(dev);
Lyudea62163e2016-10-04 14:28:20 -04003798 struct intel_plane *intel_plane;
3799 struct skl_plane_wm *wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003800 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07003801 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003802
Lyudea62163e2016-10-04 14:28:20 -04003803 /*
3804 * We'll only calculate watermarks for planes that are actually
3805 * enabled, so make sure all other planes are set as disabled.
3806 */
3807 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
3808
3809 for_each_intel_plane_mask(&dev_priv->drm,
3810 intel_plane,
3811 cstate->base.plane_mask) {
3812 wm = &pipe_wm->planes[skl_wm_plane_id(intel_plane)];
3813
3814 for (level = 0; level <= max_level; level++) {
3815 ret = skl_compute_wm_level(dev_priv, ddb, cstate,
3816 intel_plane, level,
3817 &wm->wm[level]);
3818 if (ret)
3819 return ret;
3820 }
3821 skl_compute_transition_wm(cstate, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003822 }
Matt Roper024c9042015-09-24 15:53:11 -07003823 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003824
Matt Roper55994c22016-05-12 07:06:08 -07003825 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003826}
3827
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003828static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
3829 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00003830 const struct skl_ddb_entry *entry)
3831{
3832 if (entry->end)
3833 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3834 else
3835 I915_WRITE(reg, 0);
3836}
3837
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003838static void skl_write_wm_level(struct drm_i915_private *dev_priv,
3839 i915_reg_t reg,
3840 const struct skl_wm_level *level)
3841{
3842 uint32_t val = 0;
3843
3844 if (level->plane_en) {
3845 val |= PLANE_WM_EN;
3846 val |= level->plane_res_b;
3847 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
3848 }
3849
3850 I915_WRITE(reg, val);
3851}
3852
Lyude62e0fb82016-08-22 12:50:08 -04003853void skl_write_plane_wm(struct intel_crtc *intel_crtc,
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003854 const struct skl_plane_wm *wm,
3855 const struct skl_ddb_allocation *ddb,
Lyude62e0fb82016-08-22 12:50:08 -04003856 int plane)
3857{
3858 struct drm_crtc *crtc = &intel_crtc->base;
3859 struct drm_device *dev = crtc->dev;
3860 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003861 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003862 enum pipe pipe = intel_crtc->pipe;
3863
3864 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003865 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane, level),
3866 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003867 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003868 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane),
3869 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003870
3871 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003872 &ddb->plane[pipe][plane]);
Lyude27082492016-08-24 07:48:10 +02003873 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003874 &ddb->y_plane[pipe][plane]);
Lyude62e0fb82016-08-22 12:50:08 -04003875}
3876
3877void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003878 const struct skl_plane_wm *wm,
3879 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04003880{
3881 struct drm_crtc *crtc = &intel_crtc->base;
3882 struct drm_device *dev = crtc->dev;
3883 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003884 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003885 enum pipe pipe = intel_crtc->pipe;
3886
3887 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003888 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
3889 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003890 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003891 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003892
3893 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003894 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04003895}
3896
cpaul@redhat.com45ece232016-10-14 17:31:56 -04003897bool skl_wm_level_equals(const struct skl_wm_level *l1,
3898 const struct skl_wm_level *l2)
3899{
3900 if (l1->plane_en != l2->plane_en)
3901 return false;
3902
3903 /* If both planes aren't enabled, the rest shouldn't matter */
3904 if (!l1->plane_en)
3905 return true;
3906
3907 return (l1->plane_res_l == l2->plane_res_l &&
3908 l1->plane_res_b == l2->plane_res_b);
3909}
3910
Lyude27082492016-08-24 07:48:10 +02003911static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
3912 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003913{
Lyude27082492016-08-24 07:48:10 +02003914 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003915}
3916
Lyude27082492016-08-24 07:48:10 +02003917bool skl_ddb_allocation_overlaps(struct drm_atomic_state *state,
Lyudece0ba282016-09-15 10:46:35 -04003918 struct intel_crtc *intel_crtc)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003919{
Lyudece0ba282016-09-15 10:46:35 -04003920 struct drm_crtc *other_crtc;
3921 struct drm_crtc_state *other_cstate;
3922 struct intel_crtc *other_intel_crtc;
3923 const struct skl_ddb_entry *ddb =
3924 &to_intel_crtc_state(intel_crtc->base.state)->wm.skl.ddb;
3925 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003926
Lyudece0ba282016-09-15 10:46:35 -04003927 for_each_crtc_in_state(state, other_crtc, other_cstate, i) {
3928 other_intel_crtc = to_intel_crtc(other_crtc);
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003929
Lyudece0ba282016-09-15 10:46:35 -04003930 if (other_intel_crtc == intel_crtc)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003931 continue;
3932
Lyudece0ba282016-09-15 10:46:35 -04003933 if (skl_ddb_entries_overlap(ddb, &other_intel_crtc->hw_ddb))
Lyude27082492016-08-24 07:48:10 +02003934 return true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003935 }
3936
Lyude27082492016-08-24 07:48:10 +02003937 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003938}
3939
Matt Roper55994c22016-05-12 07:06:08 -07003940static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003941 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07003942 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003943 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07003944 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003945{
Matt Roperf4a96752016-05-12 07:06:06 -07003946 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07003947 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003948
Matt Roper55994c22016-05-12 07:06:08 -07003949 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
3950 if (ret)
3951 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003952
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003953 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07003954 *changed = false;
3955 else
3956 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003957
Matt Roper55994c22016-05-12 07:06:08 -07003958 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003959}
3960
Matt Roper9b613022016-06-27 16:42:44 -07003961static uint32_t
3962pipes_modified(struct drm_atomic_state *state)
3963{
3964 struct drm_crtc *crtc;
3965 struct drm_crtc_state *cstate;
3966 uint32_t i, ret = 0;
3967
3968 for_each_crtc_in_state(state, crtc, cstate, i)
3969 ret |= drm_crtc_mask(crtc);
3970
3971 return ret;
3972}
3973
Jani Nikulabb7791b2016-10-04 12:29:17 +03003974static int
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003975skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
3976{
3977 struct drm_atomic_state *state = cstate->base.state;
3978 struct drm_device *dev = state->dev;
3979 struct drm_crtc *crtc = cstate->base.crtc;
3980 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3981 struct drm_i915_private *dev_priv = to_i915(dev);
3982 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3983 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
3984 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3985 struct drm_plane_state *plane_state;
3986 struct drm_plane *plane;
3987 enum pipe pipe = intel_crtc->pipe;
3988 int id;
3989
3990 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
3991
Maarten Lankhorst220b0962016-10-26 15:41:30 +02003992 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003993 id = skl_wm_plane_id(to_intel_plane(plane));
3994
3995 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][id],
3996 &new_ddb->plane[pipe][id]) &&
3997 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][id],
3998 &new_ddb->y_plane[pipe][id]))
3999 continue;
4000
4001 plane_state = drm_atomic_get_plane_state(state, plane);
4002 if (IS_ERR(plane_state))
4003 return PTR_ERR(plane_state);
4004 }
4005
4006 return 0;
4007}
4008
Matt Roper98d39492016-05-12 07:06:03 -07004009static int
4010skl_compute_ddb(struct drm_atomic_state *state)
4011{
4012 struct drm_device *dev = state->dev;
4013 struct drm_i915_private *dev_priv = to_i915(dev);
4014 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4015 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07004016 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07004017 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07004018 int ret;
4019
4020 /*
4021 * If this is our first atomic update following hardware readout,
4022 * we can't trust the DDB that the BIOS programmed for us. Let's
4023 * pretend that all pipes switched active status so that we'll
4024 * ensure a full DDB recompute.
4025 */
Matt Roper1b54a882016-06-17 13:42:18 -07004026 if (dev_priv->wm.distrust_bios_wm) {
4027 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
4028 state->acquire_ctx);
4029 if (ret)
4030 return ret;
4031
Matt Roper98d39492016-05-12 07:06:03 -07004032 intel_state->active_pipe_changes = ~0;
4033
Matt Roper1b54a882016-06-17 13:42:18 -07004034 /*
4035 * We usually only initialize intel_state->active_crtcs if we
4036 * we're doing a modeset; make sure this field is always
4037 * initialized during the sanitization process that happens
4038 * on the first commit too.
4039 */
4040 if (!intel_state->modeset)
4041 intel_state->active_crtcs = dev_priv->active_crtcs;
4042 }
4043
Matt Roper98d39492016-05-12 07:06:03 -07004044 /*
4045 * If the modeset changes which CRTC's are active, we need to
4046 * recompute the DDB allocation for *all* active pipes, even
4047 * those that weren't otherwise being modified in any way by this
4048 * atomic commit. Due to the shrinking of the per-pipe allocations
4049 * when new active CRTC's are added, it's possible for a pipe that
4050 * we were already using and aren't changing at all here to suddenly
4051 * become invalid if its DDB needs exceeds its new allocation.
4052 *
4053 * Note that if we wind up doing a full DDB recompute, we can't let
4054 * any other display updates race with this transaction, so we need
4055 * to grab the lock on *all* CRTC's.
4056 */
Matt Roper734fa012016-05-12 15:11:40 -07004057 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004058 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004059 intel_state->wm_results.dirty_pipes = ~0;
4060 }
Matt Roper98d39492016-05-12 07:06:03 -07004061
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004062 /*
4063 * We're not recomputing for the pipes not included in the commit, so
4064 * make sure we start with the current state.
4065 */
4066 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4067
Matt Roper98d39492016-05-12 07:06:03 -07004068 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4069 struct intel_crtc_state *cstate;
4070
4071 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4072 if (IS_ERR(cstate))
4073 return PTR_ERR(cstate);
4074
Matt Roper734fa012016-05-12 15:11:40 -07004075 ret = skl_allocate_pipe_ddb(cstate, ddb);
Matt Roper98d39492016-05-12 07:06:03 -07004076 if (ret)
4077 return ret;
Lyude05a76d32016-08-17 15:55:57 -04004078
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004079 ret = skl_ddb_add_affected_planes(cstate);
Lyude05a76d32016-08-17 15:55:57 -04004080 if (ret)
4081 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004082 }
4083
4084 return 0;
4085}
4086
Matt Roper2722efb2016-08-17 15:55:55 -04004087static void
4088skl_copy_wm_for_pipe(struct skl_wm_values *dst,
4089 struct skl_wm_values *src,
4090 enum pipe pipe)
4091{
Matt Roper2722efb2016-08-17 15:55:55 -04004092 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
4093 sizeof(dst->ddb.y_plane[pipe]));
4094 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
4095 sizeof(dst->ddb.plane[pipe]));
4096}
4097
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004098static void
4099skl_print_wm_changes(const struct drm_atomic_state *state)
4100{
4101 const struct drm_device *dev = state->dev;
4102 const struct drm_i915_private *dev_priv = to_i915(dev);
4103 const struct intel_atomic_state *intel_state =
4104 to_intel_atomic_state(state);
4105 const struct drm_crtc *crtc;
4106 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004107 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004108 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
4109 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004110 int id;
Maarten Lankhorst75704982016-11-01 12:04:10 +01004111 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004112
4113 for_each_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01004114 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4115 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004116
Maarten Lankhorst75704982016-11-01 12:04:10 +01004117 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004118 const struct skl_ddb_entry *old, *new;
4119
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004120 id = skl_wm_plane_id(intel_plane);
4121 old = &old_ddb->plane[pipe][id];
4122 new = &new_ddb->plane[pipe][id];
4123
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004124 if (skl_ddb_entry_equal(old, new))
4125 continue;
4126
Maarten Lankhorst75704982016-11-01 12:04:10 +01004127 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
4128 intel_plane->base.base.id,
4129 intel_plane->base.name,
4130 old->start, old->end,
4131 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004132 }
4133 }
4134}
4135
Matt Roper98d39492016-05-12 07:06:03 -07004136static int
4137skl_compute_wm(struct drm_atomic_state *state)
4138{
4139 struct drm_crtc *crtc;
4140 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07004141 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4142 struct skl_wm_values *results = &intel_state->wm_results;
4143 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07004144 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07004145 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07004146
4147 /*
4148 * If this transaction isn't actually touching any CRTC's, don't
4149 * bother with watermark calculation. Note that if we pass this
4150 * test, we're guaranteed to hold at least one CRTC state mutex,
4151 * which means we can safely use values like dev_priv->active_crtcs
4152 * since any racing commits that want to update them would need to
4153 * hold _all_ CRTC state mutexes.
4154 */
4155 for_each_crtc_in_state(state, crtc, cstate, i)
4156 changed = true;
4157 if (!changed)
4158 return 0;
4159
Matt Roper734fa012016-05-12 15:11:40 -07004160 /* Clear all dirty flags */
4161 results->dirty_pipes = 0;
4162
Matt Roper98d39492016-05-12 07:06:03 -07004163 ret = skl_compute_ddb(state);
4164 if (ret)
4165 return ret;
4166
Matt Roper734fa012016-05-12 15:11:40 -07004167 /*
4168 * Calculate WM's for all pipes that are part of this transaction.
4169 * Note that the DDB allocation above may have added more CRTC's that
4170 * weren't otherwise being modified (and set bits in dirty_pipes) if
4171 * pipe allocations had to change.
4172 *
4173 * FIXME: Now that we're doing this in the atomic check phase, we
4174 * should allow skl_update_pipe_wm() to return failure in cases where
4175 * no suitable watermark values can be found.
4176 */
4177 for_each_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07004178 struct intel_crtc_state *intel_cstate =
4179 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004180 const struct skl_pipe_wm *old_pipe_wm =
4181 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07004182
4183 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004184 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
4185 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07004186 if (ret)
4187 return ret;
4188
4189 if (changed)
4190 results->dirty_pipes |= drm_crtc_mask(crtc);
4191
4192 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
4193 /* This pipe's WM's did not change */
4194 continue;
4195
4196 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07004197 }
4198
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004199 skl_print_wm_changes(state);
4200
Matt Roper98d39492016-05-12 07:06:03 -07004201 return 0;
4202}
4203
Ville Syrjälä432081b2016-10-31 22:37:03 +02004204static void skl_update_wm(struct intel_crtc *intel_crtc)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004205{
Ville Syrjälä432081b2016-10-31 22:37:03 +02004206 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004207 struct drm_i915_private *dev_priv = to_i915(dev);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004208 struct skl_wm_values *results = &dev_priv->wm.skl_results;
Matt Roper2722efb2016-08-17 15:55:55 -04004209 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Ville Syrjälä432081b2016-10-31 22:37:03 +02004210 struct intel_crtc_state *cstate = to_intel_crtc_state(intel_crtc->base.state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004211 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Lyude27082492016-08-24 07:48:10 +02004212 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07004213
Ville Syrjälä432081b2016-10-31 22:37:03 +02004214 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004215 return;
4216
Matt Roper734fa012016-05-12 15:11:40 -07004217 mutex_lock(&dev_priv->wm.wm_mutex);
4218
Matt Roper2722efb2016-08-17 15:55:55 -04004219 /*
Lyude27082492016-08-24 07:48:10 +02004220 * If this pipe isn't active already, we're going to be enabling it
4221 * very soon. Since it's safe to update a pipe's ddb allocation while
4222 * the pipe's shut off, just do so here. Already active pipes will have
4223 * their watermarks updated once we update their planes.
Matt Roper2722efb2016-08-17 15:55:55 -04004224 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02004225 if (intel_crtc->base.state->active_changed) {
Lyude27082492016-08-24 07:48:10 +02004226 int plane;
4227
Matt Roper2c4b49a2016-10-26 15:51:29 -07004228 for_each_universal_plane(dev_priv, pipe, plane)
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004229 skl_write_plane_wm(intel_crtc, &pipe_wm->planes[plane],
4230 &results->ddb, plane);
Lyude27082492016-08-24 07:48:10 +02004231
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004232 skl_write_cursor_wm(intel_crtc, &pipe_wm->planes[PLANE_CURSOR],
4233 &results->ddb);
Lyude27082492016-08-24 07:48:10 +02004234 }
4235
4236 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07004237
Lyudece0ba282016-09-15 10:46:35 -04004238 intel_crtc->hw_ddb = cstate->wm.skl.ddb;
4239
Matt Roper734fa012016-05-12 15:11:40 -07004240 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004241}
4242
Ville Syrjäläd8905652016-01-14 14:53:35 +02004243static void ilk_compute_wm_config(struct drm_device *dev,
4244 struct intel_wm_config *config)
4245{
4246 struct intel_crtc *crtc;
4247
4248 /* Compute the currently _active_ config */
4249 for_each_intel_crtc(dev, crtc) {
4250 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
4251
4252 if (!wm->pipe_enabled)
4253 continue;
4254
4255 config->sprites_enabled |= wm->sprites_enabled;
4256 config->sprites_scaled |= wm->sprites_scaled;
4257 config->num_pipes_active++;
4258 }
4259}
4260
Matt Ropered4a6a72016-02-23 17:20:13 -08004261static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03004262{
Chris Wilson91c8a322016-07-05 10:40:23 +01004263 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004264 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02004265 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02004266 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02004267 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004268 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07004269
Ville Syrjäläd8905652016-01-14 14:53:35 +02004270 ilk_compute_wm_config(dev, &config);
4271
4272 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
4273 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03004274
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004275 /* 5/6 split only in single pipe config on IVB+ */
Ville Syrjäläec98c8d2013-10-11 15:26:26 +03004276 if (INTEL_INFO(dev)->gen >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02004277 config.num_pipes_active == 1 && config.sprites_enabled) {
4278 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
4279 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004280
Imre Deak820c1982013-12-17 14:46:36 +02004281 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03004282 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004283 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004284 }
4285
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004286 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004287 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004288
Imre Deak820c1982013-12-17 14:46:36 +02004289 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03004290
Imre Deak820c1982013-12-17 14:46:36 +02004291 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03004292}
4293
Matt Ropered4a6a72016-02-23 17:20:13 -08004294static void ilk_initial_watermarks(struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004295{
Matt Ropered4a6a72016-02-23 17:20:13 -08004296 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4297 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004298
Matt Ropered4a6a72016-02-23 17:20:13 -08004299 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07004300 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08004301 ilk_program_watermarks(dev_priv);
4302 mutex_unlock(&dev_priv->wm.wm_mutex);
4303}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004304
Matt Ropered4a6a72016-02-23 17:20:13 -08004305static void ilk_optimize_watermarks(struct intel_crtc_state *cstate)
4306{
4307 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4308 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4309
4310 mutex_lock(&dev_priv->wm.wm_mutex);
4311 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07004312 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08004313 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004314 }
Matt Ropered4a6a72016-02-23 17:20:13 -08004315 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004316}
4317
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004318static inline void skl_wm_level_from_reg_val(uint32_t val,
4319 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00004320{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004321 level->plane_en = val & PLANE_WM_EN;
4322 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
4323 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
4324 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00004325}
4326
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004327void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
4328 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00004329{
4330 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004331 struct drm_i915_private *dev_priv = to_i915(dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00004332 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004333 struct intel_plane *intel_plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004334 struct skl_plane_wm *wm;
Pradeep Bhat30789992014-11-04 17:06:45 +00004335 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004336 int level, id, max_level;
4337 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00004338
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004339 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00004340
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004341 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
4342 id = skl_wm_plane_id(intel_plane);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004343 wm = &out->planes[id];
Pradeep Bhat30789992014-11-04 17:06:45 +00004344
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004345 for (level = 0; level <= max_level; level++) {
4346 if (id != PLANE_CURSOR)
4347 val = I915_READ(PLANE_WM(pipe, id, level));
4348 else
4349 val = I915_READ(CUR_WM(pipe, level));
4350
4351 skl_wm_level_from_reg_val(val, &wm->wm[level]);
4352 }
4353
4354 if (id != PLANE_CURSOR)
4355 val = I915_READ(PLANE_WM_TRANS(pipe, id));
4356 else
4357 val = I915_READ(CUR_WM_TRANS(pipe));
4358
4359 skl_wm_level_from_reg_val(val, &wm->trans_wm);
4360 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004361
Matt Roper3ef00282015-03-09 10:19:24 -07004362 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00004363 return;
4364
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004365 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00004366}
4367
4368void skl_wm_get_hw_state(struct drm_device *dev)
4369{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004370 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004371 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00004372 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00004373 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004374 struct intel_crtc *intel_crtc;
4375 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00004376
Damien Lespiaua269c582014-11-04 17:06:49 +00004377 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004378 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4379 intel_crtc = to_intel_crtc(crtc);
4380 cstate = to_intel_crtc_state(crtc->state);
4381
4382 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
4383
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004384 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004385 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004386 }
Matt Ropera1de91e2016-05-12 07:05:57 -07004387
Matt Roper279e99d2016-05-12 07:06:02 -07004388 if (dev_priv->active_crtcs) {
4389 /* Fully recompute DDB on first atomic commit */
4390 dev_priv->wm.distrust_bios_wm = true;
4391 } else {
4392 /* Easy/common case; just sanitize DDB now if everything off */
4393 memset(ddb, 0, sizeof(*ddb));
4394 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004395}
4396
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004397static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4398{
4399 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004400 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004401 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004402 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07004403 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004404 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004405 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004406 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004407 [PIPE_A] = WM0_PIPEA_ILK,
4408 [PIPE_B] = WM0_PIPEB_ILK,
4409 [PIPE_C] = WM0_PIPEC_IVB,
4410 };
4411
4412 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004413 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02004414 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004415
Ville Syrjälä15606532016-05-13 17:55:17 +03004416 memset(active, 0, sizeof(*active));
4417
Matt Roper3ef00282015-03-09 10:19:24 -07004418 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02004419
4420 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004421 u32 tmp = hw->wm_pipe[pipe];
4422
4423 /*
4424 * For active pipes LP0 watermark is marked as
4425 * enabled, and LP1+ watermaks as disabled since
4426 * we can't really reverse compute them in case
4427 * multiple pipes are active.
4428 */
4429 active->wm[0].enable = true;
4430 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
4431 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
4432 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
4433 active->linetime = hw->wm_linetime[pipe];
4434 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004435 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004436
4437 /*
4438 * For inactive pipes, all watermark levels
4439 * should be marked as enabled but zeroed,
4440 * which is what we'd compute them to.
4441 */
4442 for (level = 0; level <= max_level; level++)
4443 active->wm[level].enable = true;
4444 }
Matt Roper4e0963c2015-09-24 15:53:15 -07004445
4446 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004447}
4448
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004449#define _FW_WM(value, plane) \
4450 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
4451#define _FW_WM_VLV(value, plane) \
4452 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
4453
4454static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4455 struct vlv_wm_values *wm)
4456{
4457 enum pipe pipe;
4458 uint32_t tmp;
4459
4460 for_each_pipe(dev_priv, pipe) {
4461 tmp = I915_READ(VLV_DDL(pipe));
4462
4463 wm->ddl[pipe].primary =
4464 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4465 wm->ddl[pipe].cursor =
4466 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4467 wm->ddl[pipe].sprite[0] =
4468 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4469 wm->ddl[pipe].sprite[1] =
4470 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4471 }
4472
4473 tmp = I915_READ(DSPFW1);
4474 wm->sr.plane = _FW_WM(tmp, SR);
4475 wm->pipe[PIPE_B].cursor = _FW_WM(tmp, CURSORB);
4476 wm->pipe[PIPE_B].primary = _FW_WM_VLV(tmp, PLANEB);
4477 wm->pipe[PIPE_A].primary = _FW_WM_VLV(tmp, PLANEA);
4478
4479 tmp = I915_READ(DSPFW2);
4480 wm->pipe[PIPE_A].sprite[1] = _FW_WM_VLV(tmp, SPRITEB);
4481 wm->pipe[PIPE_A].cursor = _FW_WM(tmp, CURSORA);
4482 wm->pipe[PIPE_A].sprite[0] = _FW_WM_VLV(tmp, SPRITEA);
4483
4484 tmp = I915_READ(DSPFW3);
4485 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4486
4487 if (IS_CHERRYVIEW(dev_priv)) {
4488 tmp = I915_READ(DSPFW7_CHV);
4489 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
4490 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
4491
4492 tmp = I915_READ(DSPFW8_CHV);
4493 wm->pipe[PIPE_C].sprite[1] = _FW_WM_VLV(tmp, SPRITEF);
4494 wm->pipe[PIPE_C].sprite[0] = _FW_WM_VLV(tmp, SPRITEE);
4495
4496 tmp = I915_READ(DSPFW9_CHV);
4497 wm->pipe[PIPE_C].primary = _FW_WM_VLV(tmp, PLANEC);
4498 wm->pipe[PIPE_C].cursor = _FW_WM(tmp, CURSORC);
4499
4500 tmp = I915_READ(DSPHOWM);
4501 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
4502 wm->pipe[PIPE_C].sprite[1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4503 wm->pipe[PIPE_C].sprite[0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4504 wm->pipe[PIPE_C].primary |= _FW_WM(tmp, PLANEC_HI) << 8;
4505 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4506 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4507 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4508 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4509 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4510 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4511 } else {
4512 tmp = I915_READ(DSPFW7);
4513 wm->pipe[PIPE_B].sprite[1] = _FW_WM_VLV(tmp, SPRITED);
4514 wm->pipe[PIPE_B].sprite[0] = _FW_WM_VLV(tmp, SPRITEC);
4515
4516 tmp = I915_READ(DSPHOWM);
4517 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
4518 wm->pipe[PIPE_B].sprite[1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4519 wm->pipe[PIPE_B].sprite[0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4520 wm->pipe[PIPE_B].primary |= _FW_WM(tmp, PLANEB_HI) << 8;
4521 wm->pipe[PIPE_A].sprite[1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4522 wm->pipe[PIPE_A].sprite[0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4523 wm->pipe[PIPE_A].primary |= _FW_WM(tmp, PLANEA_HI) << 8;
4524 }
4525}
4526
4527#undef _FW_WM
4528#undef _FW_WM_VLV
4529
4530void vlv_wm_get_hw_state(struct drm_device *dev)
4531{
4532 struct drm_i915_private *dev_priv = to_i915(dev);
4533 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4534 struct intel_plane *plane;
4535 enum pipe pipe;
4536 u32 val;
4537
4538 vlv_read_wm_values(dev_priv, wm);
4539
4540 for_each_intel_plane(dev, plane) {
4541 switch (plane->base.type) {
4542 int sprite;
4543 case DRM_PLANE_TYPE_CURSOR:
4544 plane->wm.fifo_size = 63;
4545 break;
4546 case DRM_PLANE_TYPE_PRIMARY:
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02004547 plane->wm.fifo_size = vlv_get_fifo_size(dev_priv, plane->pipe, 0);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004548 break;
4549 case DRM_PLANE_TYPE_OVERLAY:
4550 sprite = plane->plane;
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02004551 plane->wm.fifo_size = vlv_get_fifo_size(dev_priv, plane->pipe, sprite + 1);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004552 break;
4553 }
4554 }
4555
4556 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4557 wm->level = VLV_WM_LEVEL_PM2;
4558
4559 if (IS_CHERRYVIEW(dev_priv)) {
4560 mutex_lock(&dev_priv->rps.hw_lock);
4561
4562 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4563 if (val & DSP_MAXFIFO_PM5_ENABLE)
4564 wm->level = VLV_WM_LEVEL_PM5;
4565
Ville Syrjälä58590c12015-09-08 21:05:12 +03004566 /*
4567 * If DDR DVFS is disabled in the BIOS, Punit
4568 * will never ack the request. So if that happens
4569 * assume we don't have to enable/disable DDR DVFS
4570 * dynamically. To test that just set the REQ_ACK
4571 * bit to poke the Punit, but don't change the
4572 * HIGH/LOW bits so that we don't actually change
4573 * the current state.
4574 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004575 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004576 val |= FORCE_DDR_FREQ_REQ_ACK;
4577 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4578
4579 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4580 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4581 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4582 "assuming DDR DVFS is disabled\n");
4583 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4584 } else {
4585 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4586 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4587 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4588 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004589
4590 mutex_unlock(&dev_priv->rps.hw_lock);
4591 }
4592
4593 for_each_pipe(dev_priv, pipe)
4594 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
4595 pipe_name(pipe), wm->pipe[pipe].primary, wm->pipe[pipe].cursor,
4596 wm->pipe[pipe].sprite[0], wm->pipe[pipe].sprite[1]);
4597
4598 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4599 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4600}
4601
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004602void ilk_wm_get_hw_state(struct drm_device *dev)
4603{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004604 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004605 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004606 struct drm_crtc *crtc;
4607
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004608 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004609 ilk_pipe_wm_get_hw_state(crtc);
4610
4611 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4612 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4613 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4614
4615 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004616 if (INTEL_INFO(dev)->gen >= 7) {
4617 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4618 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4619 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004620
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004621 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004622 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4623 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004624 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004625 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4626 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004627
4628 hw->enable_fbc_wm =
4629 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4630}
4631
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004632/**
4633 * intel_update_watermarks - update FIFO watermark values based on current modes
4634 *
4635 * Calculate watermark values for the various WM regs based on current mode
4636 * and plane configuration.
4637 *
4638 * There are several cases to deal with here:
4639 * - normal (i.e. non-self-refresh)
4640 * - self-refresh (SR) mode
4641 * - lines are large relative to FIFO size (buffer can hold up to 2)
4642 * - lines are small relative to FIFO size (buffer can hold more than 2
4643 * lines), so need to account for TLB latency
4644 *
4645 * The normal calculation is:
4646 * watermark = dotclock * bytes per pixel * latency
4647 * where latency is platform & configuration dependent (we assume pessimal
4648 * values here).
4649 *
4650 * The SR calculation is:
4651 * watermark = (trunc(latency/line time)+1) * surface width *
4652 * bytes per pixel
4653 * where
4654 * line time = htotal / dotclock
4655 * surface width = hdisplay for normal plane and 64 for cursor
4656 * and latency is assumed to be high, as above.
4657 *
4658 * The final value programmed to the register should always be rounded up,
4659 * and include an extra 2 entries to account for clock crossings.
4660 *
4661 * We don't use the sprite, so we can ignore that. And on Crestline we have
4662 * to set the non-SR watermarks to 8.
4663 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02004664void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004665{
Ville Syrjälä432081b2016-10-31 22:37:03 +02004666 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004667
4668 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004669 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004670}
4671
Jani Nikulae2828912016-01-18 09:19:47 +02004672/*
Daniel Vetter92703882012-08-09 16:46:01 +02004673 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004674 */
4675DEFINE_SPINLOCK(mchdev_lock);
4676
4677/* Global for IPS driver to get at the current i915 device. Protected by
4678 * mchdev_lock. */
4679static struct drm_i915_private *i915_mch_dev;
4680
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004681bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004682{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004683 u16 rgvswctl;
4684
Daniel Vetter92703882012-08-09 16:46:01 +02004685 assert_spin_locked(&mchdev_lock);
4686
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004687 rgvswctl = I915_READ16(MEMSWCTL);
4688 if (rgvswctl & MEMCTL_CMD_STS) {
4689 DRM_DEBUG("gpu busy, RCS change rejected\n");
4690 return false; /* still busy with another command */
4691 }
4692
4693 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4694 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4695 I915_WRITE16(MEMSWCTL, rgvswctl);
4696 POSTING_READ16(MEMSWCTL);
4697
4698 rgvswctl |= MEMCTL_CMD_STS;
4699 I915_WRITE16(MEMSWCTL, rgvswctl);
4700
4701 return true;
4702}
4703
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004704static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004705{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004706 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004707 u8 fmax, fmin, fstart, vstart;
4708
Daniel Vetter92703882012-08-09 16:46:01 +02004709 spin_lock_irq(&mchdev_lock);
4710
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004711 rgvmodectl = I915_READ(MEMMODECTL);
4712
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004713 /* Enable temp reporting */
4714 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4715 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4716
4717 /* 100ms RC evaluation intervals */
4718 I915_WRITE(RCUPEI, 100000);
4719 I915_WRITE(RCDNEI, 100000);
4720
4721 /* Set max/min thresholds to 90ms and 80ms respectively */
4722 I915_WRITE(RCBMAXAVG, 90000);
4723 I915_WRITE(RCBMINAVG, 80000);
4724
4725 I915_WRITE(MEMIHYST, 1);
4726
4727 /* Set up min, max, and cur for interrupt handling */
4728 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4729 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4730 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4731 MEMMODE_FSTART_SHIFT;
4732
Ville Syrjälä616847e2015-09-18 20:03:19 +03004733 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004734 PXVFREQ_PX_SHIFT;
4735
Daniel Vetter20e4d402012-08-08 23:35:39 +02004736 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4737 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004738
Daniel Vetter20e4d402012-08-08 23:35:39 +02004739 dev_priv->ips.max_delay = fstart;
4740 dev_priv->ips.min_delay = fmin;
4741 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004742
4743 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4744 fmax, fmin, fstart);
4745
4746 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4747
4748 /*
4749 * Interrupts will be enabled in ironlake_irq_postinstall
4750 */
4751
4752 I915_WRITE(VIDSTART, vstart);
4753 POSTING_READ(VIDSTART);
4754
4755 rgvmodectl |= MEMMODE_SWMODE_EN;
4756 I915_WRITE(MEMMODECTL, rgvmodectl);
4757
Daniel Vetter92703882012-08-09 16:46:01 +02004758 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004759 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004760 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004761
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004762 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004763
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004764 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4765 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004766 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004767 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004768 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004769
4770 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004771}
4772
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004773static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004774{
Daniel Vetter92703882012-08-09 16:46:01 +02004775 u16 rgvswctl;
4776
4777 spin_lock_irq(&mchdev_lock);
4778
4779 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004780
4781 /* Ack interrupts, disable EFC interrupt */
4782 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4783 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4784 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4785 I915_WRITE(DEIIR, DE_PCU_EVENT);
4786 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4787
4788 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004789 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004790 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004791 rgvswctl |= MEMCTL_CMD_STS;
4792 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004793 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004794
Daniel Vetter92703882012-08-09 16:46:01 +02004795 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004796}
4797
Daniel Vetteracbe9472012-07-26 11:50:05 +02004798/* There's a funny hw issue where the hw returns all 0 when reading from
4799 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4800 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4801 * all limits and the gpu stuck at whatever frequency it is at atm).
4802 */
Akash Goel74ef1172015-03-06 11:07:19 +05304803static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004804{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004805 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004806
Daniel Vetter20b46e52012-07-26 11:16:14 +02004807 /* Only set the down limit when we've reached the lowest level to avoid
4808 * getting more interrupts, otherwise leave this clear. This prevents a
4809 * race in the hw when coming out of rc6: There's a tiny window where
4810 * the hw runs at the minimal clock before selecting the desired
4811 * frequency, if the down threshold expires in that window we will not
4812 * receive a down interrupt. */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03004813 if (IS_GEN9(dev_priv)) {
Akash Goel74ef1172015-03-06 11:07:19 +05304814 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4815 if (val <= dev_priv->rps.min_freq_softlimit)
4816 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4817 } else {
4818 limits = dev_priv->rps.max_freq_softlimit << 24;
4819 if (val <= dev_priv->rps.min_freq_softlimit)
4820 limits |= dev_priv->rps.min_freq_softlimit << 16;
4821 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004822
4823 return limits;
4824}
4825
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004826static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4827{
4828 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304829 u32 threshold_up = 0, threshold_down = 0; /* in % */
4830 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004831
4832 new_power = dev_priv->rps.power;
4833 switch (dev_priv->rps.power) {
4834 case LOW_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004835 if (val > dev_priv->rps.efficient_freq + 1 &&
4836 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004837 new_power = BETWEEN;
4838 break;
4839
4840 case BETWEEN:
Chris Wilsona72b5622016-07-02 15:35:59 +01004841 if (val <= dev_priv->rps.efficient_freq &&
4842 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004843 new_power = LOW_POWER;
Chris Wilsona72b5622016-07-02 15:35:59 +01004844 else if (val >= dev_priv->rps.rp0_freq &&
4845 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004846 new_power = HIGH_POWER;
4847 break;
4848
4849 case HIGH_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004850 if (val < (dev_priv->rps.rp1_freq + dev_priv->rps.rp0_freq) >> 1 &&
4851 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004852 new_power = BETWEEN;
4853 break;
4854 }
4855 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004856 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004857 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004858 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004859 new_power = HIGH_POWER;
4860 if (new_power == dev_priv->rps.power)
4861 return;
4862
4863 /* Note the units here are not exactly 1us, but 1280ns. */
4864 switch (new_power) {
4865 case LOW_POWER:
4866 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304867 ei_up = 16000;
4868 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004869
4870 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304871 ei_down = 32000;
4872 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004873 break;
4874
4875 case BETWEEN:
4876 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304877 ei_up = 13000;
4878 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004879
4880 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304881 ei_down = 32000;
4882 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004883 break;
4884
4885 case HIGH_POWER:
4886 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304887 ei_up = 10000;
4888 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004889
4890 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304891 ei_down = 32000;
4892 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004893 break;
4894 }
4895
Akash Goel8a586432015-03-06 11:07:18 +05304896 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004897 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05304898 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004899 GT_INTERVAL_FROM_US(dev_priv,
4900 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304901
4902 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004903 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05304904 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004905 GT_INTERVAL_FROM_US(dev_priv,
4906 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304907
Chris Wilsona72b5622016-07-02 15:35:59 +01004908 I915_WRITE(GEN6_RP_CONTROL,
4909 GEN6_RP_MEDIA_TURBO |
4910 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4911 GEN6_RP_MEDIA_IS_GFX |
4912 GEN6_RP_ENABLE |
4913 GEN6_RP_UP_BUSY_AVG |
4914 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05304915
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004916 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004917 dev_priv->rps.up_threshold = threshold_up;
4918 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004919 dev_priv->rps.last_adj = 0;
4920}
4921
Chris Wilson2876ce72014-03-28 08:03:34 +00004922static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4923{
4924 u32 mask = 0;
4925
4926 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004927 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004928 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004929 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004930
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004931 mask &= dev_priv->pm_rps_events;
4932
Imre Deak59d02a12014-12-19 19:33:26 +02004933 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004934}
4935
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004936/* gen6_set_rps is called to update the frequency request, but should also be
4937 * called when the range (min_delay and max_delay) is modified so that we can
4938 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilsondc979972016-05-10 14:10:04 +01004939static void gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004940{
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304941 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
Chris Wilsondc979972016-05-10 14:10:04 +01004942 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1))
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05304943 return;
4944
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004945 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004946 WARN_ON(val > dev_priv->rps.max_freq);
4947 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004948
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004949 /* min/max delay may still have been modified so be sure to
4950 * write the limits value.
4951 */
4952 if (val != dev_priv->rps.cur_freq) {
4953 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004954
Chris Wilsondc979972016-05-10 14:10:04 +01004955 if (IS_GEN9(dev_priv))
Akash Goel57041952015-03-06 11:07:17 +05304956 I915_WRITE(GEN6_RPNSWREQ,
4957 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01004958 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004959 I915_WRITE(GEN6_RPNSWREQ,
4960 HSW_FREQUENCY(val));
4961 else
4962 I915_WRITE(GEN6_RPNSWREQ,
4963 GEN6_FREQUENCY(val) |
4964 GEN6_OFFSET(0) |
4965 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004966 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004967
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004968 /* Make sure we continue to get interrupts
4969 * until we hit the minimum or maximum frequencies.
4970 */
Akash Goel74ef1172015-03-06 11:07:19 +05304971 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004972 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004973
Ben Widawskyd5570a72012-09-07 19:43:41 -07004974 POSTING_READ(GEN6_RPNSWREQ);
4975
Ben Widawskyb39fb292014-03-19 18:31:11 -07004976 dev_priv->rps.cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02004977 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004978}
4979
Chris Wilsondc979972016-05-10 14:10:04 +01004980static void valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004981{
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004982 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004983 WARN_ON(val > dev_priv->rps.max_freq);
4984 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004985
Chris Wilsondc979972016-05-10 14:10:04 +01004986 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004987 "Odd GPU freq value\n"))
4988 val &= ~1;
4989
Deepak Scd25dd52015-07-10 18:31:40 +05304990 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4991
Chris Wilson8fb55192015-04-07 16:20:28 +01004992 if (val != dev_priv->rps.cur_freq) {
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004993 vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004994 if (!IS_CHERRYVIEW(dev_priv))
4995 gen6_set_rps_thresholds(dev_priv, val);
4996 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004997
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004998 dev_priv->rps.cur_freq = val;
4999 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
5000}
5001
Deepak Sa7f6e232015-05-09 18:04:44 +05305002/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05305003 *
5004 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05305005 * 1. Forcewake Media well.
5006 * 2. Request idle freq.
5007 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05305008*/
5009static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
5010{
Chris Wilsonaed242f2015-03-18 09:48:21 +00005011 u32 val = dev_priv->rps.idle_freq;
Deepak S5549d252014-06-28 11:26:11 +05305012
Chris Wilsonaed242f2015-03-18 09:48:21 +00005013 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05305014 return;
5015
Deepak Sa7f6e232015-05-09 18:04:44 +05305016 /* Wake up the media well, as that takes a lot less
5017 * power than the Render well. */
5018 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilsondc979972016-05-10 14:10:04 +01005019 valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05305020 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Deepak S76c3552f2014-01-30 23:08:16 +05305021}
5022
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005023void gen6_rps_busy(struct drm_i915_private *dev_priv)
5024{
5025 mutex_lock(&dev_priv->rps.hw_lock);
5026 if (dev_priv->rps.enabled) {
5027 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
5028 gen6_rps_reset_ei(dev_priv);
5029 I915_WRITE(GEN6_PMINTRMSK,
5030 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02005031
Chris Wilsonc33d2472016-07-04 08:08:36 +01005032 gen6_enable_rps_interrupts(dev_priv);
5033
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02005034 /* Ensure we start at the user's desired frequency */
5035 intel_set_rps(dev_priv,
5036 clamp(dev_priv->rps.cur_freq,
5037 dev_priv->rps.min_freq_softlimit,
5038 dev_priv->rps.max_freq_softlimit));
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005039 }
5040 mutex_unlock(&dev_priv->rps.hw_lock);
5041}
5042
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005043void gen6_rps_idle(struct drm_i915_private *dev_priv)
5044{
Chris Wilsonc33d2472016-07-04 08:08:36 +01005045 /* Flush our bottom-half so that it does not race with us
5046 * setting the idle frequency and so that it is bounded by
5047 * our rpm wakeref. And then disable the interrupts to stop any
5048 * futher RPS reclocking whilst we are asleep.
5049 */
5050 gen6_disable_rps_interrupts(dev_priv);
5051
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005052 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005053 if (dev_priv->rps.enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01005054 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05305055 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005056 else
Chris Wilsondc979972016-05-10 14:10:04 +01005057 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005058 dev_priv->rps.last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03005059 I915_WRITE(GEN6_PMINTRMSK,
5060 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01005061 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005062 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005063
Chris Wilson8d3afd72015-05-21 21:01:47 +01005064 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005065 while (!list_empty(&dev_priv->rps.clients))
5066 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005067 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005068}
5069
Chris Wilson1854d5c2015-04-07 16:20:32 +01005070void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01005071 struct intel_rps_client *rps,
5072 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005073{
Chris Wilson8d3afd72015-05-21 21:01:47 +01005074 /* This is intentionally racy! We peek at the state here, then
5075 * validate inside the RPS worker.
5076 */
Chris Wilson67d97da2016-07-04 08:08:31 +01005077 if (!(dev_priv->gt.awake &&
Chris Wilson8d3afd72015-05-21 21:01:47 +01005078 dev_priv->rps.enabled &&
Chris Wilson29ecd78d2016-07-13 09:10:35 +01005079 dev_priv->rps.cur_freq < dev_priv->rps.boost_freq))
Chris Wilson8d3afd72015-05-21 21:01:47 +01005080 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005081
Chris Wilsone61b9952015-04-27 13:41:24 +01005082 /* Force a RPS boost (and don't count it against the client) if
5083 * the GPU is severely congested.
5084 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01005085 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01005086 rps = NULL;
5087
Chris Wilson8d3afd72015-05-21 21:01:47 +01005088 spin_lock(&dev_priv->rps.client_lock);
5089 if (rps == NULL || list_empty(&rps->link)) {
5090 spin_lock_irq(&dev_priv->irq_lock);
5091 if (dev_priv->rps.interrupts_enabled) {
5092 dev_priv->rps.client_boost = true;
Chris Wilsonc33d2472016-07-04 08:08:36 +01005093 schedule_work(&dev_priv->rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005094 }
5095 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005096
Chris Wilson2e1b8732015-04-27 13:41:22 +01005097 if (rps != NULL) {
5098 list_add(&rps->link, &dev_priv->rps.clients);
5099 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01005100 } else
5101 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01005102 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005103 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005104}
5105
Chris Wilsondc979972016-05-10 14:10:04 +01005106void intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005107{
Chris Wilsondc979972016-05-10 14:10:04 +01005108 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
5109 valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005110 else
Chris Wilsondc979972016-05-10 14:10:04 +01005111 gen6_set_rps(dev_priv, val);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005112}
5113
Chris Wilsondc979972016-05-10 14:10:04 +01005114static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005115{
Zhe Wang20e49362014-11-04 17:07:05 +00005116 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005117 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005118}
5119
Chris Wilsondc979972016-05-10 14:10:04 +01005120static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05305121{
Akash Goel2030d682016-04-23 00:05:45 +05305122 I915_WRITE(GEN6_RP_CONTROL, 0);
5123}
5124
Chris Wilsondc979972016-05-10 14:10:04 +01005125static void gen6_disable_rps(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005126{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005127 I915_WRITE(GEN6_RC_CONTROL, 0);
5128 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05305129 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005130}
5131
Chris Wilsondc979972016-05-10 14:10:04 +01005132static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305133{
Deepak S38807742014-05-23 21:00:15 +05305134 I915_WRITE(GEN6_RC_CONTROL, 0);
5135}
5136
Chris Wilsondc979972016-05-10 14:10:04 +01005137static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005138{
Deepak S98a2e5f2014-08-18 10:35:27 -07005139 /* we're doing forcewake before Disabling RC6,
5140 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005141 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07005142
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005143 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005144
Mika Kuoppala59bad942015-01-16 11:34:40 +02005145 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005146}
5147
Chris Wilsondc979972016-05-10 14:10:04 +01005148static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07005149{
Chris Wilsondc979972016-05-10 14:10:04 +01005150 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03005151 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
5152 mode = GEN6_RC_CTL_RC6_ENABLE;
5153 else
5154 mode = 0;
5155 }
Chris Wilsondc979972016-05-10 14:10:04 +01005156 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03005157 DRM_DEBUG_DRIVER("Enabling RC6 states: "
5158 "RC6 %s RC6p %s RC6pp %s\n",
5159 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
5160 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
5161 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07005162
5163 else
Imre Deakb99d49c2016-06-29 19:13:54 +03005164 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
5165 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07005166}
5167
Chris Wilsondc979972016-05-10 14:10:04 +01005168static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305169{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005170 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305171 bool enable_rc6 = true;
5172 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03005173 u32 rc_ctl;
5174 int rc_sw_target;
5175
5176 rc_ctl = I915_READ(GEN6_RC_CONTROL);
5177 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
5178 RC_SW_TARGET_STATE_SHIFT;
5179 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
5180 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
5181 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
5182 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
5183 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305184
5185 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005186 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305187 enable_rc6 = false;
5188 }
5189
5190 /*
5191 * The exact context size is not known for BXT, so assume a page size
5192 * for this check.
5193 */
5194 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005195 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
5196 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
5197 ggtt->stolen_reserved_size))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005198 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305199 enable_rc6 = false;
5200 }
5201
5202 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
5203 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
5204 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
5205 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005206 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305207 enable_rc6 = false;
5208 }
5209
Imre Deakfc619842016-06-29 19:13:55 +03005210 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
5211 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
5212 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
5213 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
5214 enable_rc6 = false;
5215 }
5216
5217 if (!I915_READ(GEN6_GFXPAUSE)) {
5218 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
5219 enable_rc6 = false;
5220 }
5221
5222 if (!I915_READ(GEN8_MISC_CTRL0)) {
5223 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305224 enable_rc6 = false;
5225 }
5226
5227 return enable_rc6;
5228}
5229
Chris Wilsondc979972016-05-10 14:10:04 +01005230int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005231{
Daniel Vettere7d66d82015-06-15 23:23:54 +02005232 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01005233 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03005234 return 0;
5235
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305236 if (!enable_rc6)
5237 return 0;
5238
Chris Wilsondc979972016-05-10 14:10:04 +01005239 if (IS_BROXTON(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305240 DRM_INFO("RC6 disabled by BIOS\n");
5241 return 0;
5242 }
5243
Daniel Vetter456470e2012-08-08 23:35:40 +02005244 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03005245 if (enable_rc6 >= 0) {
5246 int mask;
5247
Chris Wilsondc979972016-05-10 14:10:04 +01005248 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03005249 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
5250 INTEL_RC6pp_ENABLE;
5251 else
5252 mask = INTEL_RC6_ENABLE;
5253
5254 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03005255 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
5256 "(requested %d, valid %d)\n",
5257 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03005258
5259 return enable_rc6 & mask;
5260 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005261
Chris Wilsondc979972016-05-10 14:10:04 +01005262 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08005263 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08005264
5265 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005266}
5267
Chris Wilsondc979972016-05-10 14:10:04 +01005268static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03005269{
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005270 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005271
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005272 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Chris Wilsondc979972016-05-10 14:10:04 +01005273 if (IS_BROXTON(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005274 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005275 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
5276 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5277 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
5278 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005279 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005280 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
5281 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5282 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
5283 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005284 /* hw_max = RP0 until we check for overclocking */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005285 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005286
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005287 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005288 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
5289 IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005290 u32 ddcc_status = 0;
5291
5292 if (sandybridge_pcode_read(dev_priv,
5293 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
5294 &ddcc_status) == 0)
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005295 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08005296 clamp_t(u8,
5297 ((ddcc_status >> 8) & 0xff),
5298 dev_priv->rps.min_freq,
5299 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005300 }
5301
Chris Wilsondc979972016-05-10 14:10:04 +01005302 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05305303 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01005304 * the natural hardware unit for SKL
5305 */
Akash Goelc5e06882015-06-29 14:50:19 +05305306 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
5307 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
5308 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
5309 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
5310 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
5311 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005312}
5313
Chris Wilson3a45b052016-07-13 09:10:32 +01005314static void reset_rps(struct drm_i915_private *dev_priv,
5315 void (*set)(struct drm_i915_private *, u8))
5316{
5317 u8 freq = dev_priv->rps.cur_freq;
5318
5319 /* force a reset */
5320 dev_priv->rps.power = -1;
5321 dev_priv->rps.cur_freq = -1;
5322
5323 set(dev_priv, freq);
5324}
5325
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005326/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01005327static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005328{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005329 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
5330
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05305331 /* WaGsvDisableTurbo: Workaround to disable turbo on BXT A* */
Chris Wilsondc979972016-05-10 14:10:04 +01005332 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1)) {
Akash Goel2030d682016-04-23 00:05:45 +05305333 /*
5334 * BIOS could leave the Hw Turbo enabled, so need to explicitly
5335 * clear out the Control register just to avoid inconsitency
5336 * with debugfs interface, which will show Turbo as enabled
5337 * only and that is not expected by the User after adding the
5338 * WaGsvDisableTurbo. Apart from this there is no problem even
5339 * if the Turbo is left enabled in the Control register, as the
5340 * Up/Down interrupts would remain masked.
5341 */
Chris Wilsondc979972016-05-10 14:10:04 +01005342 gen9_disable_rps(dev_priv);
Sagar Arun Kamble23eafea2015-08-23 17:52:48 +05305343 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5344 return;
5345 }
5346
Akash Goel0beb0592015-03-06 11:07:20 +05305347 /* Program defaults and thresholds for RPS*/
5348 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5349 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005350
Akash Goel0beb0592015-03-06 11:07:20 +05305351 /* 1 second timeout*/
5352 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
5353 GT_INTERVAL_FROM_US(dev_priv, 1000000));
5354
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005355 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005356
Akash Goel0beb0592015-03-06 11:07:20 +05305357 /* Leaning on the below call to gen6_set_rps to program/setup the
5358 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
5359 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01005360 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005361
5362 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5363}
5364
Chris Wilsondc979972016-05-10 14:10:04 +01005365static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005366{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005367 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305368 enum intel_engine_id id;
Zhe Wang20e49362014-11-04 17:07:05 +00005369 uint32_t rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00005370
5371 /* 1a: Software RC state - RC0 */
5372 I915_WRITE(GEN6_RC_STATE, 0);
5373
5374 /* 1b: Get forcewake during program sequence. Although the driver
5375 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005376 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005377
5378 /* 2a: Disable RC states. */
5379 I915_WRITE(GEN6_RC_CONTROL, 0);
5380
5381 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305382
5383 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Chris Wilsondc979972016-05-10 14:10:04 +01005384 if (IS_SKYLAKE(dev_priv))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305385 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
5386 else
5387 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00005388 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5389 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305390 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005391 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305392
Dave Gordon1a3d1892016-05-13 15:36:30 +01005393 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305394 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
5395
Zhe Wang20e49362014-11-04 17:07:05 +00005396 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005397
Zhe Wang38c23522015-01-20 12:23:04 +00005398 /* 2c: Program Coarse Power Gating Policies. */
5399 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
5400 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
5401
Zhe Wang20e49362014-11-04 17:07:05 +00005402 /* 3a: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005403 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00005404 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02005405 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Jani Nikula4ff40a42016-09-26 15:07:51 +03005406 /* WaRsUseTimeoutMode:bxt */
Jani Nikula9fc736e2016-09-16 16:59:46 +03005407 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1)) {
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05305408 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05305409 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5410 GEN7_RC_CTL_TO_MODE |
5411 rc6_mask);
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05305412 } else {
5413 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
Sagar Arun Kamblee3429cd2015-09-12 10:17:52 +05305414 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5415 GEN6_RC_CTL_EI_MODE(1) |
5416 rc6_mask);
Sagar Arun Kamble3e7732a2015-10-01 20:29:27 +05305417 }
Zhe Wang20e49362014-11-04 17:07:05 +00005418
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305419 /*
5420 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305421 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305422 */
Chris Wilsondc979972016-05-10 14:10:04 +01005423 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305424 I915_WRITE(GEN9_PG_ENABLE, 0);
5425 else
5426 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
5427 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005428
Mika Kuoppala59bad942015-01-16 11:34:40 +02005429 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005430}
5431
Chris Wilsondc979972016-05-10 14:10:04 +01005432static void gen8_enable_rps(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005433{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005434 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305435 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005436 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005437
5438 /* 1a: Software RC state - RC0 */
5439 I915_WRITE(GEN6_RC_STATE, 0);
5440
5441 /* 1c & 1d: Get forcewake during program sequence. Although the driver
5442 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005443 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005444
5445 /* 2a: Disable RC states. */
5446 I915_WRITE(GEN6_RC_CONTROL, 0);
5447
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005448 /* 2b: Program RC6 thresholds.*/
5449 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5450 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5451 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305452 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005453 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005454 I915_WRITE(GEN6_RC_SLEEP, 0);
Chris Wilsondc979972016-05-10 14:10:04 +01005455 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005456 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
5457 else
5458 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005459
5460 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005461 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005462 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01005463 intel_print_rc6_info(dev_priv, rc6_mask);
5464 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005465 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5466 GEN7_RC_CTL_TO_MODE |
5467 rc6_mask);
5468 else
5469 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5470 GEN6_RC_CTL_EI_MODE(1) |
5471 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005472
5473 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07005474 I915_WRITE(GEN6_RPNSWREQ,
5475 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
5476 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5477 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02005478 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
5479 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005480
Daniel Vetter7526ed72014-09-29 15:07:19 +02005481 /* Docs recommend 900MHz, and 300 MHz respectively */
5482 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
5483 dev_priv->rps.max_freq_softlimit << 24 |
5484 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005485
Daniel Vetter7526ed72014-09-29 15:07:19 +02005486 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
5487 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
5488 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
5489 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005490
Daniel Vetter7526ed72014-09-29 15:07:19 +02005491 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005492
5493 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02005494 I915_WRITE(GEN6_RP_CONTROL,
5495 GEN6_RP_MEDIA_TURBO |
5496 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5497 GEN6_RP_MEDIA_IS_GFX |
5498 GEN6_RP_ENABLE |
5499 GEN6_RP_UP_BUSY_AVG |
5500 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005501
Daniel Vetter7526ed72014-09-29 15:07:19 +02005502 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005503
Chris Wilson3a45b052016-07-13 09:10:32 +01005504 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005505
Mika Kuoppala59bad942015-01-16 11:34:40 +02005506 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005507}
5508
Chris Wilsondc979972016-05-10 14:10:04 +01005509static void gen6_enable_rps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005510{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005511 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305512 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01005513 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005514 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005515 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005516 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005517
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005518 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005519
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005520 /* Here begins a magic sequence of register writes to enable
5521 * auto-downclocking.
5522 *
5523 * Perhaps there might be some value in exposing these to
5524 * userspace...
5525 */
5526 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005527
5528 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005529 gtfifodbg = I915_READ(GTFIFODBG);
5530 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005531 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
5532 I915_WRITE(GTFIFODBG, gtfifodbg);
5533 }
5534
Mika Kuoppala59bad942015-01-16 11:34:40 +02005535 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005536
5537 /* disable the counters and set deterministic thresholds */
5538 I915_WRITE(GEN6_RC_CONTROL, 0);
5539
5540 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5541 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5542 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5543 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5544 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5545
Akash Goel3b3f1652016-10-13 22:44:48 +05305546 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005547 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005548
5549 I915_WRITE(GEN6_RC_SLEEP, 0);
5550 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01005551 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005552 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5553 else
5554 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005555 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005556 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5557
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005558 /* Check if we are enabling RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005559 rc6_mode = intel_enable_rc6();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005560 if (rc6_mode & INTEL_RC6_ENABLE)
5561 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5562
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005563 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01005564 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005565 if (rc6_mode & INTEL_RC6p_ENABLE)
5566 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005567
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005568 if (rc6_mode & INTEL_RC6pp_ENABLE)
5569 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5570 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005571
Chris Wilsondc979972016-05-10 14:10:04 +01005572 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005573
5574 I915_WRITE(GEN6_RC_CONTROL,
5575 rc6_mask |
5576 GEN6_RC_CTL_EI_MODE(1) |
5577 GEN6_RC_CTL_HW_ENABLE);
5578
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005579 /* Power down if completely idle for over 50ms */
5580 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005581 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005582
Chris Wilson3a45b052016-07-13 09:10:32 +01005583 reset_rps(dev_priv, gen6_set_rps);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005584
Ben Widawsky31643d52012-09-26 10:34:01 -07005585 rc6vids = 0;
5586 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01005587 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005588 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01005589 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005590 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5591 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5592 rc6vids &= 0xffff00;
5593 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5594 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5595 if (ret)
5596 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5597 }
5598
Mika Kuoppala59bad942015-01-16 11:34:40 +02005599 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005600}
5601
Chris Wilsonfb7404e2016-07-13 09:10:38 +01005602static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005603{
5604 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005605 unsigned int gpu_freq;
5606 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305607 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005608 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005609 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005610
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005611 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005612
Ben Widawskyeda79642013-10-07 17:15:48 -03005613 policy = cpufreq_cpu_get(0);
5614 if (policy) {
5615 max_ia_freq = policy->cpuinfo.max_freq;
5616 cpufreq_cpu_put(policy);
5617 } else {
5618 /*
5619 * Default to measured freq if none found, PCU will ensure we
5620 * don't go over
5621 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005622 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005623 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005624
5625 /* Convert from kHz to MHz */
5626 max_ia_freq /= 1000;
5627
Ben Widawsky153b4b952013-10-22 22:05:09 -07005628 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005629 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5630 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005631
Chris Wilsondc979972016-05-10 14:10:04 +01005632 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305633 /* Convert GT frequency to 50 HZ units */
5634 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5635 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5636 } else {
5637 min_gpu_freq = dev_priv->rps.min_freq;
5638 max_gpu_freq = dev_priv->rps.max_freq;
5639 }
5640
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005641 /*
5642 * For each potential GPU frequency, load a ring frequency we'd like
5643 * to use for memory access. We do this by specifying the IA frequency
5644 * the PCU should use as a reference to determine the ring frequency.
5645 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305646 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5647 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005648 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005649
Chris Wilsondc979972016-05-10 14:10:04 +01005650 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305651 /*
5652 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5653 * No floor required for ring frequency on SKL.
5654 */
5655 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005656 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005657 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5658 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01005659 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005660 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005661 ring_freq = max(min_ring_freq, ring_freq);
5662 /* leave ia_freq as the default, chosen by cpufreq */
5663 } else {
5664 /* On older processors, there is no separate ring
5665 * clock domain, so in order to boost the bandwidth
5666 * of the ring, we need to upclock the CPU (ia_freq).
5667 *
5668 * For GPU frequencies less than 750MHz,
5669 * just use the lowest ring freq.
5670 */
5671 if (gpu_freq < min_freq)
5672 ia_freq = 800;
5673 else
5674 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5675 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5676 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005677
Ben Widawsky42c05262012-09-26 10:34:00 -07005678 sandybridge_pcode_write(dev_priv,
5679 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005680 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5681 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5682 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005683 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005684}
5685
Ville Syrjälä03af2042014-06-28 02:03:53 +03005686static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305687{
5688 u32 val, rp0;
5689
Jani Nikula5b5929c2015-10-07 11:17:46 +03005690 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305691
Imre Deak43b67992016-08-31 19:13:02 +03005692 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03005693 case 8:
5694 /* (2 * 4) config */
5695 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5696 break;
5697 case 12:
5698 /* (2 * 6) config */
5699 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5700 break;
5701 case 16:
5702 /* (2 * 8) config */
5703 default:
5704 /* Setting (2 * 8) Min RP0 for any other combination */
5705 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5706 break;
Deepak S095acd52015-01-17 11:05:59 +05305707 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005708
5709 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5710
Deepak S2b6b3a02014-05-27 15:59:30 +05305711 return rp0;
5712}
5713
5714static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5715{
5716 u32 val, rpe;
5717
5718 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5719 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5720
5721 return rpe;
5722}
5723
Deepak S7707df42014-07-12 18:46:14 +05305724static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5725{
5726 u32 val, rp1;
5727
Jani Nikula5b5929c2015-10-07 11:17:46 +03005728 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5729 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5730
Deepak S7707df42014-07-12 18:46:14 +05305731 return rp1;
5732}
5733
Deepak Sf8f2b002014-07-10 13:16:21 +05305734static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5735{
5736 u32 val, rp1;
5737
5738 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5739
5740 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5741
5742 return rp1;
5743}
5744
Ville Syrjälä03af2042014-06-28 02:03:53 +03005745static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005746{
5747 u32 val, rp0;
5748
Jani Nikula64936252013-05-22 15:36:20 +03005749 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005750
5751 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5752 /* Clamp to max */
5753 rp0 = min_t(u32, rp0, 0xea);
5754
5755 return rp0;
5756}
5757
5758static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5759{
5760 u32 val, rpe;
5761
Jani Nikula64936252013-05-22 15:36:20 +03005762 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005763 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005764 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005765 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5766
5767 return rpe;
5768}
5769
Ville Syrjälä03af2042014-06-28 02:03:53 +03005770static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005771{
Imre Deak36146032014-12-04 18:39:35 +02005772 u32 val;
5773
5774 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
5775 /*
5776 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
5777 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
5778 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
5779 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
5780 * to make sure it matches what Punit accepts.
5781 */
5782 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005783}
5784
Imre Deakae484342014-03-31 15:10:44 +03005785/* Check that the pctx buffer wasn't move under us. */
5786static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5787{
5788 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5789
5790 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5791 dev_priv->vlv_pctx->stolen->start);
5792}
5793
Deepak S38807742014-05-23 21:00:15 +05305794
5795/* Check that the pcbr address is not empty. */
5796static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5797{
5798 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5799
5800 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5801}
5802
Chris Wilsondc979972016-05-10 14:10:04 +01005803static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305804{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005805 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005806 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05305807 u32 pcbr;
5808 int pctx_size = 32*1024;
5809
Deepak S38807742014-05-23 21:00:15 +05305810 pcbr = I915_READ(VLV_PCBR);
5811 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005812 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305813 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005814 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05305815
5816 pctx_paddr = (paddr & (~4095));
5817 I915_WRITE(VLV_PCBR, pctx_paddr);
5818 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005819
5820 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305821}
5822
Chris Wilsondc979972016-05-10 14:10:04 +01005823static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005824{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005825 struct drm_i915_gem_object *pctx;
5826 unsigned long pctx_paddr;
5827 u32 pcbr;
5828 int pctx_size = 24*1024;
5829
5830 pcbr = I915_READ(VLV_PCBR);
5831 if (pcbr) {
5832 /* BIOS set it up already, grab the pre-alloc'd space */
5833 int pcbr_offset;
5834
5835 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
Chris Wilson91c8a322016-07-05 10:40:23 +01005836 pctx = i915_gem_object_create_stolen_for_preallocated(&dev_priv->drm,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005837 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005838 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005839 pctx_size);
5840 goto out;
5841 }
5842
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005843 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5844
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005845 /*
5846 * From the Gunit register HAS:
5847 * The Gfx driver is expected to program this register and ensure
5848 * proper allocation within Gfx stolen memory. For example, this
5849 * register should be programmed such than the PCBR range does not
5850 * overlap with other ranges, such as the frame buffer, protected
5851 * memory, or any other relevant ranges.
5852 */
Chris Wilson91c8a322016-07-05 10:40:23 +01005853 pctx = i915_gem_object_create_stolen(&dev_priv->drm, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005854 if (!pctx) {
5855 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005856 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005857 }
5858
5859 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5860 I915_WRITE(VLV_PCBR, pctx_paddr);
5861
5862out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005863 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005864 dev_priv->vlv_pctx = pctx;
5865}
5866
Chris Wilsondc979972016-05-10 14:10:04 +01005867static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03005868{
Imre Deakae484342014-03-31 15:10:44 +03005869 if (WARN_ON(!dev_priv->vlv_pctx))
5870 return;
5871
Chris Wilsonf0cd5182016-10-28 13:58:43 +01005872 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03005873 dev_priv->vlv_pctx = NULL;
5874}
5875
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005876static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
5877{
5878 dev_priv->rps.gpll_ref_freq =
5879 vlv_get_cck_clock(dev_priv, "GPLL ref",
5880 CCK_GPLL_CLOCK_CONTROL,
5881 dev_priv->czclk_freq);
5882
5883 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
5884 dev_priv->rps.gpll_ref_freq);
5885}
5886
Chris Wilsondc979972016-05-10 14:10:04 +01005887static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005888{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005889 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005890
Chris Wilsondc979972016-05-10 14:10:04 +01005891 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005892
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005893 vlv_init_gpll_ref_freq(dev_priv);
5894
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005895 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5896 switch ((val >> 6) & 3) {
5897 case 0:
5898 case 1:
5899 dev_priv->mem_freq = 800;
5900 break;
5901 case 2:
5902 dev_priv->mem_freq = 1066;
5903 break;
5904 case 3:
5905 dev_priv->mem_freq = 1333;
5906 break;
5907 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005908 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005909
Imre Deak4e805192014-04-14 20:24:41 +03005910 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5911 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5912 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005913 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005914 dev_priv->rps.max_freq);
5915
5916 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5917 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005918 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005919 dev_priv->rps.efficient_freq);
5920
Deepak Sf8f2b002014-07-10 13:16:21 +05305921 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5922 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005923 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305924 dev_priv->rps.rp1_freq);
5925
Imre Deak4e805192014-04-14 20:24:41 +03005926 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5927 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005928 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005929 dev_priv->rps.min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03005930}
5931
Chris Wilsondc979972016-05-10 14:10:04 +01005932static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305933{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005934 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305935
Chris Wilsondc979972016-05-10 14:10:04 +01005936 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05305937
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005938 vlv_init_gpll_ref_freq(dev_priv);
5939
Ville Syrjäläa5805162015-05-26 20:42:30 +03005940 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005941 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005942 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005943
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005944 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005945 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005946 dev_priv->mem_freq = 2000;
5947 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03005948 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005949 dev_priv->mem_freq = 1600;
5950 break;
5951 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005952 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005953
Deepak S2b6b3a02014-05-27 15:59:30 +05305954 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5955 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5956 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005957 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305958 dev_priv->rps.max_freq);
5959
5960 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5961 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005962 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305963 dev_priv->rps.efficient_freq);
5964
Deepak S7707df42014-07-12 18:46:14 +05305965 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5966 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005967 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305968 dev_priv->rps.rp1_freq);
5969
Deepak S5b7c91b2015-05-09 18:15:46 +05305970 /* PUnit validated range is only [RPe, RP0] */
5971 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305972 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005973 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305974 dev_priv->rps.min_freq);
5975
Ville Syrjälä1c147622014-08-18 14:42:43 +03005976 WARN_ONCE((dev_priv->rps.max_freq |
5977 dev_priv->rps.efficient_freq |
5978 dev_priv->rps.rp1_freq |
5979 dev_priv->rps.min_freq) & 1,
5980 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05305981}
5982
Chris Wilsondc979972016-05-10 14:10:04 +01005983static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005984{
Chris Wilsondc979972016-05-10 14:10:04 +01005985 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005986}
5987
Chris Wilsondc979972016-05-10 14:10:04 +01005988static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305989{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005990 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305991 enum intel_engine_id id;
Deepak S2b6b3a02014-05-27 15:59:30 +05305992 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305993
5994 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5995
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005996 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
5997 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05305998 if (gtfifodbg) {
5999 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6000 gtfifodbg);
6001 I915_WRITE(GTFIFODBG, gtfifodbg);
6002 }
6003
6004 cherryview_check_pctx(dev_priv);
6005
6006 /* 1a & 1b: Get forcewake during program sequence. Although the driver
6007 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006008 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306009
Ville Syrjälä160614a2015-01-19 13:50:47 +02006010 /* Disable RC states. */
6011 I915_WRITE(GEN6_RC_CONTROL, 0);
6012
Deepak S38807742014-05-23 21:00:15 +05306013 /* 2a: Program RC6 thresholds.*/
6014 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
6015 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6016 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
6017
Akash Goel3b3f1652016-10-13 22:44:48 +05306018 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006019 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05306020 I915_WRITE(GEN6_RC_SLEEP, 0);
6021
Deepak Sf4f71c72015-03-28 15:23:35 +05306022 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
6023 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05306024
6025 /* allows RC6 residency counter to work */
6026 I915_WRITE(VLV_COUNTER_CONTROL,
6027 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
6028 VLV_MEDIA_RC6_COUNT_EN |
6029 VLV_RENDER_RC6_COUNT_EN));
6030
6031 /* For now we assume BIOS is allocating and populating the PCBR */
6032 pcbr = I915_READ(VLV_PCBR);
6033
Deepak S38807742014-05-23 21:00:15 +05306034 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01006035 if ((intel_enable_rc6() & INTEL_RC6_ENABLE) &&
6036 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02006037 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05306038
6039 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
6040
Deepak S2b6b3a02014-05-27 15:59:30 +05306041 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02006042 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05306043 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6044 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6045 I915_WRITE(GEN6_RP_UP_EI, 66000);
6046 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6047
6048 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6049
6050 /* 5: Enable RPS */
6051 I915_WRITE(GEN6_RP_CONTROL,
6052 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02006053 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05306054 GEN6_RP_ENABLE |
6055 GEN6_RP_UP_BUSY_AVG |
6056 GEN6_RP_DOWN_IDLE_AVG);
6057
Deepak S3ef62342015-04-29 08:36:24 +05306058 /* Setting Fixed Bias */
6059 val = VLV_OVERRIDE_EN |
6060 VLV_SOC_TDP_EN |
6061 CHV_BIAS_CPU_50_SOC_50;
6062 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6063
Deepak S2b6b3a02014-05-27 15:59:30 +05306064 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
6065
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006066 /* RPS code assumes GPLL is used */
6067 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6068
Jani Nikula742f4912015-09-03 11:16:09 +03006069 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05306070 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6071
Chris Wilson3a45b052016-07-13 09:10:32 +01006072 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05306073
Mika Kuoppala59bad942015-01-16 11:34:40 +02006074 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306075}
6076
Chris Wilsondc979972016-05-10 14:10:04 +01006077static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006078{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006079 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306080 enum intel_engine_id id;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07006081 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006082
6083 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6084
Imre Deakae484342014-03-31 15:10:44 +03006085 valleyview_check_pctx(dev_priv);
6086
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006087 gtfifodbg = I915_READ(GTFIFODBG);
6088 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07006089 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6090 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006091 I915_WRITE(GTFIFODBG, gtfifodbg);
6092 }
6093
Deepak Sc8d9a592013-11-23 14:55:42 +05306094 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006095 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006096
Ville Syrjälä160614a2015-01-19 13:50:47 +02006097 /* Disable RC states. */
6098 I915_WRITE(GEN6_RC_CONTROL, 0);
6099
Ville Syrjäläcad725f2015-01-19 13:50:48 +02006100 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006101 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6102 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6103 I915_WRITE(GEN6_RP_UP_EI, 66000);
6104 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6105
6106 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6107
6108 I915_WRITE(GEN6_RP_CONTROL,
6109 GEN6_RP_MEDIA_TURBO |
6110 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6111 GEN6_RP_MEDIA_IS_GFX |
6112 GEN6_RP_ENABLE |
6113 GEN6_RP_UP_BUSY_AVG |
6114 GEN6_RP_DOWN_IDLE_CONT);
6115
6116 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
6117 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6118 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6119
Akash Goel3b3f1652016-10-13 22:44:48 +05306120 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006121 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006122
Jesse Barnes2f0aa302013-11-15 09:32:11 -08006123 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006124
6125 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07006126 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04006127 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
6128 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07006129 VLV_MEDIA_RC6_COUNT_EN |
6130 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04006131
Chris Wilsondc979972016-05-10 14:10:04 +01006132 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08006133 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07006134
Chris Wilsondc979972016-05-10 14:10:04 +01006135 intel_print_rc6_info(dev_priv, rc6_mode);
Ben Widawskydc39fff2013-10-18 12:32:07 -07006136
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07006137 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006138
Deepak S3ef62342015-04-29 08:36:24 +05306139 /* Setting Fixed Bias */
6140 val = VLV_OVERRIDE_EN |
6141 VLV_SOC_TDP_EN |
6142 VLV_BIAS_CPU_125_SOC_875;
6143 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6144
Jani Nikula64936252013-05-22 15:36:20 +03006145 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006146
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006147 /* RPS code assumes GPLL is used */
6148 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6149
Jani Nikula742f4912015-09-03 11:16:09 +03006150 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07006151 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6152
Chris Wilson3a45b052016-07-13 09:10:32 +01006153 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006154
Mika Kuoppala59bad942015-01-16 11:34:40 +02006155 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006156}
6157
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006158static unsigned long intel_pxfreq(u32 vidfreq)
6159{
6160 unsigned long freq;
6161 int div = (vidfreq & 0x3f0000) >> 16;
6162 int post = (vidfreq & 0x3000) >> 12;
6163 int pre = (vidfreq & 0x7);
6164
6165 if (!pre)
6166 return 0;
6167
6168 freq = ((div * 133333) / ((1<<post) * pre));
6169
6170 return freq;
6171}
6172
Daniel Vettereb48eb02012-04-26 23:28:12 +02006173static const struct cparams {
6174 u16 i;
6175 u16 t;
6176 u16 m;
6177 u16 c;
6178} cparams[] = {
6179 { 1, 1333, 301, 28664 },
6180 { 1, 1066, 294, 24460 },
6181 { 1, 800, 294, 25192 },
6182 { 0, 1333, 276, 27605 },
6183 { 0, 1066, 276, 27605 },
6184 { 0, 800, 231, 23784 },
6185};
6186
Chris Wilsonf531dcb2012-09-25 10:16:12 +01006187static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006188{
6189 u64 total_count, diff, ret;
6190 u32 count1, count2, count3, m = 0, c = 0;
6191 unsigned long now = jiffies_to_msecs(jiffies), diff1;
6192 int i;
6193
Daniel Vetter02d71952012-08-09 16:44:54 +02006194 assert_spin_locked(&mchdev_lock);
6195
Daniel Vetter20e4d402012-08-08 23:35:39 +02006196 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006197
6198 /* Prevent division-by-zero if we are asking too fast.
6199 * Also, we don't get interesting results if we are polling
6200 * faster than once in 10ms, so just return the saved value
6201 * in such cases.
6202 */
6203 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02006204 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006205
6206 count1 = I915_READ(DMIEC);
6207 count2 = I915_READ(DDREC);
6208 count3 = I915_READ(CSIEC);
6209
6210 total_count = count1 + count2 + count3;
6211
6212 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02006213 if (total_count < dev_priv->ips.last_count1) {
6214 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006215 diff += total_count;
6216 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006217 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006218 }
6219
6220 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006221 if (cparams[i].i == dev_priv->ips.c_m &&
6222 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02006223 m = cparams[i].m;
6224 c = cparams[i].c;
6225 break;
6226 }
6227 }
6228
6229 diff = div_u64(diff, diff1);
6230 ret = ((m * diff) + c);
6231 ret = div_u64(ret, 10);
6232
Daniel Vetter20e4d402012-08-08 23:35:39 +02006233 dev_priv->ips.last_count1 = total_count;
6234 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006235
Daniel Vetter20e4d402012-08-08 23:35:39 +02006236 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006237
6238 return ret;
6239}
6240
Chris Wilsonf531dcb2012-09-25 10:16:12 +01006241unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
6242{
6243 unsigned long val;
6244
Chris Wilsondc979972016-05-10 14:10:04 +01006245 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01006246 return 0;
6247
6248 spin_lock_irq(&mchdev_lock);
6249
6250 val = __i915_chipset_val(dev_priv);
6251
6252 spin_unlock_irq(&mchdev_lock);
6253
6254 return val;
6255}
6256
Daniel Vettereb48eb02012-04-26 23:28:12 +02006257unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
6258{
6259 unsigned long m, x, b;
6260 u32 tsfs;
6261
6262 tsfs = I915_READ(TSFS);
6263
6264 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
6265 x = I915_READ8(TR1);
6266
6267 b = tsfs & TSFS_INTR_MASK;
6268
6269 return ((m * x) / 127) - b;
6270}
6271
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006272static int _pxvid_to_vd(u8 pxvid)
6273{
6274 if (pxvid == 0)
6275 return 0;
6276
6277 if (pxvid >= 8 && pxvid < 31)
6278 pxvid = 31;
6279
6280 return (pxvid + 2) * 125;
6281}
6282
6283static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006284{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006285 const int vd = _pxvid_to_vd(pxvid);
6286 const int vm = vd - 1125;
6287
Chris Wilsondc979972016-05-10 14:10:04 +01006288 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006289 return vm > 0 ? vm : 0;
6290
6291 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006292}
6293
Daniel Vetter02d71952012-08-09 16:44:54 +02006294static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006295{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006296 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006297 u32 count;
6298
Daniel Vetter02d71952012-08-09 16:44:54 +02006299 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006300
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006301 now = ktime_get_raw_ns();
6302 diffms = now - dev_priv->ips.last_time2;
6303 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006304
6305 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02006306 if (!diffms)
6307 return;
6308
6309 count = I915_READ(GFXEC);
6310
Daniel Vetter20e4d402012-08-08 23:35:39 +02006311 if (count < dev_priv->ips.last_count2) {
6312 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006313 diff += count;
6314 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006315 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006316 }
6317
Daniel Vetter20e4d402012-08-08 23:35:39 +02006318 dev_priv->ips.last_count2 = count;
6319 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006320
6321 /* More magic constants... */
6322 diff = diff * 1181;
6323 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02006324 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006325}
6326
Daniel Vetter02d71952012-08-09 16:44:54 +02006327void i915_update_gfx_val(struct drm_i915_private *dev_priv)
6328{
Chris Wilsondc979972016-05-10 14:10:04 +01006329 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02006330 return;
6331
Daniel Vetter92703882012-08-09 16:46:01 +02006332 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006333
6334 __i915_update_gfx_val(dev_priv);
6335
Daniel Vetter92703882012-08-09 16:46:01 +02006336 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006337}
6338
Chris Wilsonf531dcb2012-09-25 10:16:12 +01006339static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006340{
6341 unsigned long t, corr, state1, corr2, state2;
6342 u32 pxvid, ext_v;
6343
Daniel Vetter02d71952012-08-09 16:44:54 +02006344 assert_spin_locked(&mchdev_lock);
6345
Ville Syrjälä616847e2015-09-18 20:03:19 +03006346 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02006347 pxvid = (pxvid >> 24) & 0x7f;
6348 ext_v = pvid_to_extvid(dev_priv, pxvid);
6349
6350 state1 = ext_v;
6351
6352 t = i915_mch_val(dev_priv);
6353
6354 /* Revel in the empirically derived constants */
6355
6356 /* Correction factor in 1/100000 units */
6357 if (t > 80)
6358 corr = ((t * 2349) + 135940);
6359 else if (t >= 50)
6360 corr = ((t * 964) + 29317);
6361 else /* < 50 */
6362 corr = ((t * 301) + 1004);
6363
6364 corr = corr * ((150142 * state1) / 10000 - 78642);
6365 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02006366 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006367
6368 state2 = (corr2 * state1) / 10000;
6369 state2 /= 100; /* convert to mW */
6370
Daniel Vetter02d71952012-08-09 16:44:54 +02006371 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006372
Daniel Vetter20e4d402012-08-08 23:35:39 +02006373 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006374}
6375
Chris Wilsonf531dcb2012-09-25 10:16:12 +01006376unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
6377{
6378 unsigned long val;
6379
Chris Wilsondc979972016-05-10 14:10:04 +01006380 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb2012-09-25 10:16:12 +01006381 return 0;
6382
6383 spin_lock_irq(&mchdev_lock);
6384
6385 val = __i915_gfx_val(dev_priv);
6386
6387 spin_unlock_irq(&mchdev_lock);
6388
6389 return val;
6390}
6391
Daniel Vettereb48eb02012-04-26 23:28:12 +02006392/**
6393 * i915_read_mch_val - return value for IPS use
6394 *
6395 * Calculate and return a value for the IPS driver to use when deciding whether
6396 * we have thermal and power headroom to increase CPU or GPU power budget.
6397 */
6398unsigned long i915_read_mch_val(void)
6399{
6400 struct drm_i915_private *dev_priv;
6401 unsigned long chipset_val, graphics_val, ret = 0;
6402
Daniel Vetter92703882012-08-09 16:46:01 +02006403 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006404 if (!i915_mch_dev)
6405 goto out_unlock;
6406 dev_priv = i915_mch_dev;
6407
Chris Wilsonf531dcb2012-09-25 10:16:12 +01006408 chipset_val = __i915_chipset_val(dev_priv);
6409 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006410
6411 ret = chipset_val + graphics_val;
6412
6413out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006414 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006415
6416 return ret;
6417}
6418EXPORT_SYMBOL_GPL(i915_read_mch_val);
6419
6420/**
6421 * i915_gpu_raise - raise GPU frequency limit
6422 *
6423 * Raise the limit; IPS indicates we have thermal headroom.
6424 */
6425bool i915_gpu_raise(void)
6426{
6427 struct drm_i915_private *dev_priv;
6428 bool ret = true;
6429
Daniel Vetter92703882012-08-09 16:46:01 +02006430 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006431 if (!i915_mch_dev) {
6432 ret = false;
6433 goto out_unlock;
6434 }
6435 dev_priv = i915_mch_dev;
6436
Daniel Vetter20e4d402012-08-08 23:35:39 +02006437 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
6438 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006439
6440out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006441 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006442
6443 return ret;
6444}
6445EXPORT_SYMBOL_GPL(i915_gpu_raise);
6446
6447/**
6448 * i915_gpu_lower - lower GPU frequency limit
6449 *
6450 * IPS indicates we're close to a thermal limit, so throttle back the GPU
6451 * frequency maximum.
6452 */
6453bool i915_gpu_lower(void)
6454{
6455 struct drm_i915_private *dev_priv;
6456 bool ret = true;
6457
Daniel Vetter92703882012-08-09 16:46:01 +02006458 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006459 if (!i915_mch_dev) {
6460 ret = false;
6461 goto out_unlock;
6462 }
6463 dev_priv = i915_mch_dev;
6464
Daniel Vetter20e4d402012-08-08 23:35:39 +02006465 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
6466 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006467
6468out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006469 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006470
6471 return ret;
6472}
6473EXPORT_SYMBOL_GPL(i915_gpu_lower);
6474
6475/**
6476 * i915_gpu_busy - indicate GPU business to IPS
6477 *
6478 * Tell the IPS driver whether or not the GPU is busy.
6479 */
6480bool i915_gpu_busy(void)
6481{
Daniel Vettereb48eb02012-04-26 23:28:12 +02006482 bool ret = false;
6483
Daniel Vetter92703882012-08-09 16:46:01 +02006484 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01006485 if (i915_mch_dev)
6486 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02006487 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006488
6489 return ret;
6490}
6491EXPORT_SYMBOL_GPL(i915_gpu_busy);
6492
6493/**
6494 * i915_gpu_turbo_disable - disable graphics turbo
6495 *
6496 * Disable graphics turbo by resetting the max frequency and setting the
6497 * current frequency to the default.
6498 */
6499bool i915_gpu_turbo_disable(void)
6500{
6501 struct drm_i915_private *dev_priv;
6502 bool ret = true;
6503
Daniel Vetter92703882012-08-09 16:46:01 +02006504 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006505 if (!i915_mch_dev) {
6506 ret = false;
6507 goto out_unlock;
6508 }
6509 dev_priv = i915_mch_dev;
6510
Daniel Vetter20e4d402012-08-08 23:35:39 +02006511 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006512
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006513 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006514 ret = false;
6515
6516out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006517 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006518
6519 return ret;
6520}
6521EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6522
6523/**
6524 * Tells the intel_ips driver that the i915 driver is now loaded, if
6525 * IPS got loaded first.
6526 *
6527 * This awkward dance is so that neither module has to depend on the
6528 * other in order for IPS to do the appropriate communication of
6529 * GPU turbo limits to i915.
6530 */
6531static void
6532ips_ping_for_i915_load(void)
6533{
6534 void (*link)(void);
6535
6536 link = symbol_get(ips_link_to_i915_driver);
6537 if (link) {
6538 link();
6539 symbol_put(ips_link_to_i915_driver);
6540 }
6541}
6542
6543void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6544{
Daniel Vetter02d71952012-08-09 16:44:54 +02006545 /* We only register the i915 ips part with intel-ips once everything is
6546 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006547 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006548 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006549 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006550
6551 ips_ping_for_i915_load();
6552}
6553
6554void intel_gpu_ips_teardown(void)
6555{
Daniel Vetter92703882012-08-09 16:46:01 +02006556 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006557 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006558 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006559}
Deepak S76c3552f2014-01-30 23:08:16 +05306560
Chris Wilsondc979972016-05-10 14:10:04 +01006561static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006562{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006563 u32 lcfuse;
6564 u8 pxw[16];
6565 int i;
6566
6567 /* Disable to program */
6568 I915_WRITE(ECR, 0);
6569 POSTING_READ(ECR);
6570
6571 /* Program energy weights for various events */
6572 I915_WRITE(SDEW, 0x15040d00);
6573 I915_WRITE(CSIEW0, 0x007f0000);
6574 I915_WRITE(CSIEW1, 0x1e220004);
6575 I915_WRITE(CSIEW2, 0x04000004);
6576
6577 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006578 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006579 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006580 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006581
6582 /* Program P-state weights to account for frequency power adjustment */
6583 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006584 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006585 unsigned long freq = intel_pxfreq(pxvidfreq);
6586 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6587 PXVFREQ_PX_SHIFT;
6588 unsigned long val;
6589
6590 val = vid * vid;
6591 val *= (freq / 1000);
6592 val *= 255;
6593 val /= (127*127*900);
6594 if (val > 0xff)
6595 DRM_ERROR("bad pxval: %ld\n", val);
6596 pxw[i] = val;
6597 }
6598 /* Render standby states get 0 weight */
6599 pxw[14] = 0;
6600 pxw[15] = 0;
6601
6602 for (i = 0; i < 4; i++) {
6603 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6604 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006605 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006606 }
6607
6608 /* Adjust magic regs to magic values (more experimental results) */
6609 I915_WRITE(OGW0, 0);
6610 I915_WRITE(OGW1, 0);
6611 I915_WRITE(EG0, 0x00007f00);
6612 I915_WRITE(EG1, 0x0000000e);
6613 I915_WRITE(EG2, 0x000e0000);
6614 I915_WRITE(EG3, 0x68000300);
6615 I915_WRITE(EG4, 0x42000000);
6616 I915_WRITE(EG5, 0x00140031);
6617 I915_WRITE(EG6, 0);
6618 I915_WRITE(EG7, 0);
6619
6620 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006621 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006622
6623 /* Enable PMON + select events */
6624 I915_WRITE(ECR, 0x80000019);
6625
6626 lcfuse = I915_READ(LCFUSE02);
6627
Daniel Vetter20e4d402012-08-08 23:35:39 +02006628 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006629}
6630
Chris Wilsondc979972016-05-10 14:10:04 +01006631void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006632{
Imre Deakb268c692015-12-15 20:10:31 +02006633 /*
6634 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
6635 * requirement.
6636 */
6637 if (!i915.enable_rc6) {
6638 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
6639 intel_runtime_pm_get(dev_priv);
6640 }
Imre Deake6069ca2014-04-18 16:01:02 +03006641
Chris Wilsonb5163db2016-08-10 13:58:24 +01006642 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson773ea9a2016-07-13 09:10:33 +01006643 mutex_lock(&dev_priv->rps.hw_lock);
6644
6645 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01006646 if (IS_CHERRYVIEW(dev_priv))
6647 cherryview_init_gt_powersave(dev_priv);
6648 else if (IS_VALLEYVIEW(dev_priv))
6649 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01006650 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01006651 gen6_init_rps_frequencies(dev_priv);
6652
6653 /* Derive initial user preferences/limits from the hardware limits */
6654 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
6655 dev_priv->rps.cur_freq = dev_priv->rps.idle_freq;
6656
6657 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
6658 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
6659
6660 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
6661 dev_priv->rps.min_freq_softlimit =
6662 max_t(int,
6663 dev_priv->rps.efficient_freq,
6664 intel_freq_opcode(dev_priv, 450));
6665
Chris Wilson99ac9612016-07-13 09:10:34 +01006666 /* After setting max-softlimit, find the overclock max freq */
6667 if (IS_GEN6(dev_priv) ||
6668 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
6669 u32 params = 0;
6670
6671 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
6672 if (params & BIT(31)) { /* OC supported */
6673 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
6674 (dev_priv->rps.max_freq & 0xff) * 50,
6675 (params & 0xff) * 50);
6676 dev_priv->rps.max_freq = params & 0xff;
6677 }
6678 }
6679
Chris Wilson29ecd78d2016-07-13 09:10:35 +01006680 /* Finally allow us to boost to max by default */
6681 dev_priv->rps.boost_freq = dev_priv->rps.max_freq;
6682
Chris Wilson773ea9a2016-07-13 09:10:33 +01006683 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb5163db2016-08-10 13:58:24 +01006684 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson54b4f682016-07-21 21:16:19 +01006685
6686 intel_autoenable_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006687}
6688
Chris Wilsondc979972016-05-10 14:10:04 +01006689void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006690{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03006691 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01006692 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02006693
6694 if (!i915.enable_rc6)
6695 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006696}
6697
Chris Wilson54b4f682016-07-21 21:16:19 +01006698/**
6699 * intel_suspend_gt_powersave - suspend PM work and helper threads
6700 * @dev_priv: i915 device
6701 *
6702 * We don't want to disable RC6 or other features here, we just want
6703 * to make sure any work we've queued has finished and won't bother
6704 * us while we're suspended.
6705 */
6706void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
6707{
6708 if (INTEL_GEN(dev_priv) < 6)
6709 return;
6710
6711 if (cancel_delayed_work_sync(&dev_priv->rps.autoenable_work))
6712 intel_runtime_pm_put(dev_priv);
6713
6714 /* gen6_rps_idle() will be called later to disable interrupts */
6715}
6716
Chris Wilsonb7137e02016-07-13 09:10:37 +01006717void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
6718{
6719 dev_priv->rps.enabled = true; /* force disabling */
6720 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006721
6722 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006723}
6724
Chris Wilsondc979972016-05-10 14:10:04 +01006725void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006726{
Chris Wilsonb7137e02016-07-13 09:10:37 +01006727 if (!READ_ONCE(dev_priv->rps.enabled))
6728 return;
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006729
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006730 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006731
Chris Wilsonb7137e02016-07-13 09:10:37 +01006732 if (INTEL_GEN(dev_priv) >= 9) {
6733 gen9_disable_rc6(dev_priv);
6734 gen9_disable_rps(dev_priv);
6735 } else if (IS_CHERRYVIEW(dev_priv)) {
6736 cherryview_disable_rps(dev_priv);
6737 } else if (IS_VALLEYVIEW(dev_priv)) {
6738 valleyview_disable_rps(dev_priv);
6739 } else if (INTEL_GEN(dev_priv) >= 6) {
6740 gen6_disable_rps(dev_priv);
6741 } else if (IS_IRONLAKE_M(dev_priv)) {
6742 ironlake_disable_drps(dev_priv);
6743 }
6744
6745 dev_priv->rps.enabled = false;
6746 mutex_unlock(&dev_priv->rps.hw_lock);
6747}
6748
6749void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
6750{
Chris Wilson54b4f682016-07-21 21:16:19 +01006751 /* We shouldn't be disabling as we submit, so this should be less
6752 * racy than it appears!
6753 */
Chris Wilsonb7137e02016-07-13 09:10:37 +01006754 if (READ_ONCE(dev_priv->rps.enabled))
6755 return;
6756
6757 /* Powersaving is controlled by the host when inside a VM */
6758 if (intel_vgpu_active(dev_priv))
6759 return;
6760
6761 mutex_lock(&dev_priv->rps.hw_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02006762
Chris Wilsondc979972016-05-10 14:10:04 +01006763 if (IS_CHERRYVIEW(dev_priv)) {
6764 cherryview_enable_rps(dev_priv);
6765 } else if (IS_VALLEYVIEW(dev_priv)) {
6766 valleyview_enable_rps(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006767 } else if (INTEL_GEN(dev_priv) >= 9) {
Chris Wilsondc979972016-05-10 14:10:04 +01006768 gen9_enable_rc6(dev_priv);
6769 gen9_enable_rps(dev_priv);
6770 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006771 gen6_update_ring_freq(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01006772 } else if (IS_BROADWELL(dev_priv)) {
6773 gen8_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006774 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006775 } else if (INTEL_GEN(dev_priv) >= 6) {
Chris Wilsondc979972016-05-10 14:10:04 +01006776 gen6_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006777 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006778 } else if (IS_IRONLAKE_M(dev_priv)) {
6779 ironlake_enable_drps(dev_priv);
6780 intel_init_emon(dev_priv);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006781 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006782
6783 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6784 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6785
6786 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6787 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6788
Chris Wilson54b4f682016-07-21 21:16:19 +01006789 dev_priv->rps.enabled = true;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006790 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006791}
Imre Deakc6df39b2014-04-14 20:24:29 +03006792
Chris Wilson54b4f682016-07-21 21:16:19 +01006793static void __intel_autoenable_gt_powersave(struct work_struct *work)
6794{
6795 struct drm_i915_private *dev_priv =
6796 container_of(work, typeof(*dev_priv), rps.autoenable_work.work);
6797 struct intel_engine_cs *rcs;
6798 struct drm_i915_gem_request *req;
6799
6800 if (READ_ONCE(dev_priv->rps.enabled))
6801 goto out;
6802
Akash Goel3b3f1652016-10-13 22:44:48 +05306803 rcs = dev_priv->engine[RCS];
Chris Wilson54b4f682016-07-21 21:16:19 +01006804 if (rcs->last_context)
6805 goto out;
6806
6807 if (!rcs->init_context)
6808 goto out;
6809
6810 mutex_lock(&dev_priv->drm.struct_mutex);
6811
6812 req = i915_gem_request_alloc(rcs, dev_priv->kernel_context);
6813 if (IS_ERR(req))
6814 goto unlock;
6815
6816 if (!i915.enable_execlists && i915_switch_context(req) == 0)
6817 rcs->init_context(req);
6818
6819 /* Mark the device busy, calling intel_enable_gt_powersave() */
6820 i915_add_request_no_flush(req);
6821
6822unlock:
6823 mutex_unlock(&dev_priv->drm.struct_mutex);
6824out:
6825 intel_runtime_pm_put(dev_priv);
6826}
6827
6828void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv)
6829{
6830 if (READ_ONCE(dev_priv->rps.enabled))
6831 return;
6832
6833 if (IS_IRONLAKE_M(dev_priv)) {
6834 ironlake_enable_drps(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006835 intel_init_emon(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006836 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
6837 /*
6838 * PCU communication is slow and this doesn't need to be
6839 * done at any specific time, so do this out of our fast path
6840 * to make resume and init faster.
6841 *
6842 * We depend on the HW RC6 power context save/restore
6843 * mechanism when entering D3 through runtime PM suspend. So
6844 * disable RPM until RPS/RC6 is properly setup. We can only
6845 * get here via the driver load/system resume/runtime resume
6846 * paths, so the _noresume version is enough (and in case of
6847 * runtime resume it's necessary).
6848 */
6849 if (queue_delayed_work(dev_priv->wq,
6850 &dev_priv->rps.autoenable_work,
6851 round_jiffies_up_relative(HZ)))
6852 intel_runtime_pm_get_noresume(dev_priv);
6853 }
6854}
6855
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006856static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006857{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006858 /*
6859 * On Ibex Peak and Cougar Point, we need to disable clock
6860 * gating for the panel power sequencer or it will fail to
6861 * start up when no ports are active.
6862 */
6863 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6864}
6865
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006866static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006867{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006868 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006869
Damien Lespiau055e3932014-08-18 13:49:10 +01006870 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006871 I915_WRITE(DSPCNTR(pipe),
6872 I915_READ(DSPCNTR(pipe)) |
6873 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006874
6875 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6876 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006877 }
6878}
6879
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006880static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä017636c2013-12-05 15:51:37 +02006881{
Ville Syrjälä017636c2013-12-05 15:51:37 +02006882 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6883 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6884 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6885
6886 /*
6887 * Don't touch WM1S_LP_EN here.
6888 * Doing so could cause underruns.
6889 */
6890}
6891
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006892static void ironlake_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006893{
Damien Lespiau231e54f2012-10-19 17:55:41 +01006894 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006895
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006896 /*
6897 * Required for FBC
6898 * WaFbcDisableDpfcClockGating:ilk
6899 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006900 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6901 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6902 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006903
6904 I915_WRITE(PCH_3DCGDIS0,
6905 MARIUNIT_CLOCK_GATE_DISABLE |
6906 SVSMUNIT_CLOCK_GATE_DISABLE);
6907 I915_WRITE(PCH_3DCGDIS1,
6908 VFMUNIT_CLOCK_GATE_DISABLE);
6909
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006910 /*
6911 * According to the spec the following bits should be set in
6912 * order to enable memory self-refresh
6913 * The bit 22/21 of 0x42004
6914 * The bit 5 of 0x42020
6915 * The bit 15 of 0x45000
6916 */
6917 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6918 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6919 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006920 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006921 I915_WRITE(DISP_ARB_CTL,
6922 (I915_READ(DISP_ARB_CTL) |
6923 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006924
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006925 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006926
6927 /*
6928 * Based on the document from hardware guys the following bits
6929 * should be set unconditionally in order to enable FBC.
6930 * The bit 22 of 0x42000
6931 * The bit 22 of 0x42004
6932 * The bit 7,8,9 of 0x42020.
6933 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01006934 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006935 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006936 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6937 I915_READ(ILK_DISPLAY_CHICKEN1) |
6938 ILK_FBCQ_DIS);
6939 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6940 I915_READ(ILK_DISPLAY_CHICKEN2) |
6941 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006942 }
6943
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006944 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6945
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006946 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6947 I915_READ(ILK_DISPLAY_CHICKEN2) |
6948 ILK_ELPIN_409_SELECT);
6949 I915_WRITE(_3D_CHICKEN2,
6950 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6951 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006952
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006953 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006954 I915_WRITE(CACHE_MODE_0,
6955 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006956
Akash Goel4e046322014-04-04 17:14:38 +05306957 /* WaDisable_RenderCache_OperationalFlush:ilk */
6958 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6959
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006960 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006961
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006962 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006963}
6964
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006965static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006966{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006967 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006968 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006969
6970 /*
6971 * On Ibex Peak and Cougar Point, we need to disable clock
6972 * gating for the panel power sequencer or it will fail to
6973 * start up when no ports are active.
6974 */
Jesse Barnescd664072013-10-02 10:34:19 -07006975 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6976 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6977 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006978 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6979 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006980 /* The below fixes the weird display corruption, a few pixels shifted
6981 * downward, on (only) LVDS of some HP laptops with IVY.
6982 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006983 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006984 val = I915_READ(TRANS_CHICKEN2(pipe));
6985 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6986 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006987 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006988 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006989 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6990 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6991 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006992 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6993 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006994 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006995 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006996 I915_WRITE(TRANS_CHICKEN1(pipe),
6997 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6998 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006999}
7000
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007001static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007002{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007003 uint32_t tmp;
7004
7005 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02007006 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
7007 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
7008 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007009}
7010
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007011static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007012{
Damien Lespiau231e54f2012-10-19 17:55:41 +01007013 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007014
Damien Lespiau231e54f2012-10-19 17:55:41 +01007015 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007016
7017 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7018 I915_READ(ILK_DISPLAY_CHICKEN2) |
7019 ILK_ELPIN_409_SELECT);
7020
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007021 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01007022 I915_WRITE(_3D_CHICKEN,
7023 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
7024
Akash Goel4e046322014-04-04 17:14:38 +05307025 /* WaDisable_RenderCache_OperationalFlush:snb */
7026 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7027
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007028 /*
7029 * BSpec recoomends 8x4 when MSAA is used,
7030 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007031 *
7032 * Note that PS/WM thread counts depend on the WIZ hashing
7033 * disable bit, which we don't touch here, but it's good
7034 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007035 */
7036 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007037 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007038
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007039 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007040
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007041 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02007042 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007043
7044 I915_WRITE(GEN6_UCGCTL1,
7045 I915_READ(GEN6_UCGCTL1) |
7046 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
7047 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
7048
7049 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
7050 * gating disable must be set. Failure to set it results in
7051 * flickering pixels due to Z write ordering failures after
7052 * some amount of runtime in the Mesa "fire" demo, and Unigine
7053 * Sanctuary and Tropics, and apparently anything else with
7054 * alpha test or pixel discard.
7055 *
7056 * According to the spec, bit 11 (RCCUNIT) must also be set,
7057 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007058 *
Ville Syrjäläef593182014-01-22 21:32:47 +02007059 * WaDisableRCCUnitClockGating:snb
7060 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007061 */
7062 I915_WRITE(GEN6_UCGCTL2,
7063 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
7064 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
7065
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02007066 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02007067 I915_WRITE(_3D_CHICKEN3,
7068 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007069
7070 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02007071 * Bspec says:
7072 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
7073 * 3DSTATE_SF number of SF output attributes is more than 16."
7074 */
7075 I915_WRITE(_3D_CHICKEN3,
7076 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
7077
7078 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007079 * According to the spec the following bits should be
7080 * set in order to enable memory self-refresh and fbc:
7081 * The bit21 and bit22 of 0x42000
7082 * The bit21 and bit22 of 0x42004
7083 * The bit5 and bit7 of 0x42020
7084 * The bit14 of 0x70180
7085 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01007086 *
7087 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007088 */
7089 I915_WRITE(ILK_DISPLAY_CHICKEN1,
7090 I915_READ(ILK_DISPLAY_CHICKEN1) |
7091 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
7092 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7093 I915_READ(ILK_DISPLAY_CHICKEN2) |
7094 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01007095 I915_WRITE(ILK_DSPCLK_GATE_D,
7096 I915_READ(ILK_DSPCLK_GATE_D) |
7097 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
7098 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007099
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007100 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07007101
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007102 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007103
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007104 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007105}
7106
7107static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
7108{
7109 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
7110
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007111 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02007112 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007113 *
7114 * This actually overrides the dispatch
7115 * mode for all thread types.
7116 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007117 reg &= ~GEN7_FF_SCHED_MASK;
7118 reg |= GEN7_FF_TS_SCHED_HW;
7119 reg |= GEN7_FF_VS_SCHED_HW;
7120 reg |= GEN7_FF_DS_SCHED_HW;
7121
7122 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
7123}
7124
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007125static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007126{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007127 /*
7128 * TODO: this bit should only be enabled when really needed, then
7129 * disabled when not needed anymore in order to save power.
7130 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007131 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007132 I915_WRITE(SOUTH_DSPCLK_GATE_D,
7133 I915_READ(SOUTH_DSPCLK_GATE_D) |
7134 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007135
7136 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03007137 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
7138 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007139 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007140}
7141
Imre Deak7d708ee2013-04-17 14:04:50 +03007142static void lpt_suspend_hw(struct drm_device *dev)
7143{
Chris Wilsonfac5e232016-07-04 11:34:36 +01007144 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak7d708ee2013-04-17 14:04:50 +03007145
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007146 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03007147 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
7148
7149 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7150 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7151 }
7152}
7153
Imre Deak450174f2016-05-03 15:54:21 +03007154static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
7155 int general_prio_credits,
7156 int high_prio_credits)
7157{
7158 u32 misccpctl;
7159
7160 /* WaTempDisableDOPClkGating:bdw */
7161 misccpctl = I915_READ(GEN7_MISCCPCTL);
7162 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
7163
7164 I915_WRITE(GEN8_L3SQCREG1,
7165 L3_GENERAL_PRIO_CREDITS(general_prio_credits) |
7166 L3_HIGH_PRIO_CREDITS(high_prio_credits));
7167
7168 /*
7169 * Wait at least 100 clocks before re-enabling clock gating.
7170 * See the definition of L3SQCREG1 in BSpec.
7171 */
7172 POSTING_READ(GEN8_L3SQCREG1);
7173 udelay(1);
7174 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
7175}
7176
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007177static void kabylake_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007178{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007179 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007180
7181 /* WaDisableSDEUnitClockGating:kbl */
7182 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7183 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7184 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03007185
7186 /* WaDisableGamClockGating:kbl */
7187 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7188 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7189 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007190
7191 /* WaFbcNukeOnHostModify:kbl */
7192 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7193 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007194}
7195
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007196static void skylake_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007197{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007198 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03007199
7200 /* WAC6entrylatency:skl */
7201 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
7202 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007203
7204 /* WaFbcNukeOnHostModify:skl */
7205 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7206 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007207}
7208
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007209static void broadwell_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007210{
Damien Lespiau07d27e22014-03-03 17:31:46 +00007211 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007212
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007213 ilk_init_lp_watermarks(dev_priv);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007214
Ben Widawskyab57fff2013-12-12 15:28:04 -08007215 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007216 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007217
Ben Widawskyab57fff2013-12-12 15:28:04 -08007218 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007219 I915_WRITE(CHICKEN_PAR1_1,
7220 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
7221
Ben Widawskyab57fff2013-12-12 15:28:04 -08007222 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01007223 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00007224 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02007225 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02007226 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007227 }
Ben Widawsky63801f22013-12-12 17:26:03 -08007228
Ben Widawskyab57fff2013-12-12 15:28:04 -08007229 /* WaVSRefCountFullforceMissDisable:bdw */
7230 /* WaDSRefCountFullforceMissDisable:bdw */
7231 I915_WRITE(GEN7_FF_THREAD_MODE,
7232 I915_READ(GEN7_FF_THREAD_MODE) &
7233 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02007234
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02007235 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7236 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02007237
7238 /* WaDisableSDEUnitClockGating:bdw */
7239 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7240 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00007241
Imre Deak450174f2016-05-03 15:54:21 +03007242 /* WaProgramL3SqcReg1Default:bdw */
7243 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03007244
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007245 /*
7246 * WaGttCachingOffByDefault:bdw
7247 * GTT cache may not work with big pages, so if those
7248 * are ever enabled GTT cache may need to be disabled.
7249 */
7250 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
7251
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03007252 /* WaKVMNotificationOnConfigChange:bdw */
7253 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
7254 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
7255
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007256 lpt_init_clock_gating(dev_priv);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007257}
7258
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007259static void haswell_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007260{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007261 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007262
Francisco Jerezf3fc4882013-10-02 15:53:16 -07007263 /* L3 caching of data atomics doesn't work -- disable it. */
7264 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
7265 I915_WRITE(HSW_ROW_CHICKEN3,
7266 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
7267
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007268 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007269 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7270 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7271 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7272
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02007273 /* WaVSRefCountFullforceMissDisable:hsw */
7274 I915_WRITE(GEN7_FF_THREAD_MODE,
7275 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007276
Akash Goel4e046322014-04-04 17:14:38 +05307277 /* WaDisable_RenderCache_OperationalFlush:hsw */
7278 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7279
Chia-I Wufe27c602014-01-28 13:29:33 +08007280 /* enable HiZ Raw Stall Optimization */
7281 I915_WRITE(CACHE_MODE_0_GEN7,
7282 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7283
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007284 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007285 I915_WRITE(CACHE_MODE_1,
7286 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007287
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007288 /*
7289 * BSpec recommends 8x4 when MSAA is used,
7290 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007291 *
7292 * Note that PS/WM thread counts depend on the WIZ hashing
7293 * disable bit, which we don't touch here, but it's good
7294 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007295 */
7296 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007297 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007298
Kenneth Graunke94411592014-12-31 16:23:00 -08007299 /* WaSampleCChickenBitEnable:hsw */
7300 I915_WRITE(HALF_SLICE_CHICKEN3,
7301 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7302
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007303 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007304 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7305
Paulo Zanoni90a88642013-05-03 17:23:45 -03007306 /* WaRsPkgCStateDisplayPMReq:hsw */
7307 I915_WRITE(CHICKEN_PAR1_1,
7308 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007309
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007310 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007311}
7312
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007313static void ivybridge_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007314{
Ben Widawsky20848222012-05-04 18:58:59 -07007315 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007316
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007317 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007318
Damien Lespiau231e54f2012-10-19 17:55:41 +01007319 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007320
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007321 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007322 I915_WRITE(_3D_CHICKEN3,
7323 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7324
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007325 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007326 I915_WRITE(IVB_CHICKEN3,
7327 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7328 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7329
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007330 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007331 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07007332 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7333 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007334
Akash Goel4e046322014-04-04 17:14:38 +05307335 /* WaDisable_RenderCache_OperationalFlush:ivb */
7336 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7337
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007338 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007339 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7340 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7341
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007342 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007343 I915_WRITE(GEN7_L3CNTLREG1,
7344 GEN7_WA_FOR_GEN7_L3_CONTROL);
7345 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007346 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007347 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07007348 I915_WRITE(GEN7_ROW_CHICKEN2,
7349 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007350 else {
7351 /* must write both registers */
7352 I915_WRITE(GEN7_ROW_CHICKEN2,
7353 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007354 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7355 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007356 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007357
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007358 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007359 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7360 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7361
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007362 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007363 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007364 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007365 */
7366 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007367 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007368
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007369 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007370 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7371 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7372 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7373
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007374 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007375
7376 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007377
Chris Wilson22721342014-03-04 09:41:43 +00007378 if (0) { /* causes HiZ corruption on ivb:gt1 */
7379 /* enable HiZ Raw Stall Optimization */
7380 I915_WRITE(CACHE_MODE_0_GEN7,
7381 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7382 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007383
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007384 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007385 I915_WRITE(CACHE_MODE_1,
7386 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007387
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007388 /*
7389 * BSpec recommends 8x4 when MSAA is used,
7390 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007391 *
7392 * Note that PS/WM thread counts depend on the WIZ hashing
7393 * disable bit, which we don't touch here, but it's good
7394 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007395 */
7396 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007397 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007398
Ben Widawsky20848222012-05-04 18:58:59 -07007399 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7400 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7401 snpcr |= GEN6_MBC_SNPCR_MED;
7402 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007403
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007404 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007405 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007406
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007407 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007408}
7409
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007410static void valleyview_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007411{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007412 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007413 I915_WRITE(_3D_CHICKEN3,
7414 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7415
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007416 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007417 I915_WRITE(IVB_CHICKEN3,
7418 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7419 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7420
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007421 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007422 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007423 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007424 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7425 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007426
Akash Goel4e046322014-04-04 17:14:38 +05307427 /* WaDisable_RenderCache_OperationalFlush:vlv */
7428 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7429
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007430 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007431 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7432 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7433
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007434 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007435 I915_WRITE(GEN7_ROW_CHICKEN2,
7436 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7437
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007438 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007439 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7440 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7441 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7442
Ville Syrjälä46680e02014-01-22 21:33:01 +02007443 gen7_setup_fixed_func_scheduler(dev_priv);
7444
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007445 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007446 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007447 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007448 */
7449 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007450 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007451
Akash Goelc98f5062014-03-24 23:00:07 +05307452 /* WaDisableL3Bank2xClockGate:vlv
7453 * Disabling L3 clock gating- MMIO 940c[25] = 1
7454 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7455 I915_WRITE(GEN7_UCGCTL4,
7456 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007457
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007458 /*
7459 * BSpec says this must be set, even though
7460 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7461 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007462 I915_WRITE(CACHE_MODE_1,
7463 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007464
7465 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007466 * BSpec recommends 8x4 when MSAA is used,
7467 * however in practice 16x4 seems fastest.
7468 *
7469 * Note that PS/WM thread counts depend on the WIZ hashing
7470 * disable bit, which we don't touch here, but it's good
7471 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7472 */
7473 I915_WRITE(GEN7_GT_MODE,
7474 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7475
7476 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007477 * WaIncreaseL3CreditsForVLVB0:vlv
7478 * This is the hardware default actually.
7479 */
7480 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7481
7482 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007483 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007484 * Disable clock gating on th GCFG unit to prevent a delay
7485 * in the reporting of vblank events.
7486 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007487 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007488}
7489
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007490static void cherryview_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007491{
Ville Syrjälä232ce332014-04-09 13:28:35 +03007492 /* WaVSRefCountFullforceMissDisable:chv */
7493 /* WaDSRefCountFullforceMissDisable:chv */
7494 I915_WRITE(GEN7_FF_THREAD_MODE,
7495 I915_READ(GEN7_FF_THREAD_MODE) &
7496 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007497
7498 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7499 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7500 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007501
7502 /* WaDisableCSUnitClockGating:chv */
7503 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7504 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007505
7506 /* WaDisableSDEUnitClockGating:chv */
7507 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7508 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007509
7510 /*
Imre Deak450174f2016-05-03 15:54:21 +03007511 * WaProgramL3SqcReg1Default:chv
7512 * See gfxspecs/Related Documents/Performance Guide/
7513 * LSQC Setting Recommendations.
7514 */
7515 gen8_set_l3sqc_credits(dev_priv, 38, 2);
7516
7517 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007518 * GTT cache may not work with big pages, so if those
7519 * are ever enabled GTT cache may need to be disabled.
7520 */
7521 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007522}
7523
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007524static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007525{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007526 uint32_t dspclk_gate;
7527
7528 I915_WRITE(RENCLK_GATE_D1, 0);
7529 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7530 GS_UNIT_CLOCK_GATE_DISABLE |
7531 CL_UNIT_CLOCK_GATE_DISABLE);
7532 I915_WRITE(RAMCLK_GATE_D, 0);
7533 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7534 OVRUNIT_CLOCK_GATE_DISABLE |
7535 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007536 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007537 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7538 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007539
7540 /* WaDisableRenderCachePipelinedFlush */
7541 I915_WRITE(CACHE_MODE_0,
7542 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007543
Akash Goel4e046322014-04-04 17:14:38 +05307544 /* WaDisable_RenderCache_OperationalFlush:g4x */
7545 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7546
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007547 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007548}
7549
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007550static void crestline_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007551{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007552 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7553 I915_WRITE(RENCLK_GATE_D2, 0);
7554 I915_WRITE(DSPCLK_GATE_D, 0);
7555 I915_WRITE(RAMCLK_GATE_D, 0);
7556 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007557 I915_WRITE(MI_ARB_STATE,
7558 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307559
7560 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7561 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007562}
7563
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007564static void broadwater_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007565{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007566 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7567 I965_RCC_CLOCK_GATE_DISABLE |
7568 I965_RCPB_CLOCK_GATE_DISABLE |
7569 I965_ISC_CLOCK_GATE_DISABLE |
7570 I965_FBC_CLOCK_GATE_DISABLE);
7571 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007572 I915_WRITE(MI_ARB_STATE,
7573 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307574
7575 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7576 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007577}
7578
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007579static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007580{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007581 u32 dstate = I915_READ(D_STATE);
7582
7583 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7584 DSTATE_DOT_CLOCK_GATING;
7585 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007586
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007587 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01007588 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007589
7590 /* IIR "flip pending" means done if this bit is set */
7591 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007592
7593 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007594 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007595
7596 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7597 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007598
7599 I915_WRITE(MI_ARB_STATE,
7600 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007601}
7602
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007603static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007604{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007605 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007606
7607 /* interrupts should cause a wake up from C3 */
7608 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7609 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007610
7611 I915_WRITE(MEM_MODE,
7612 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007613}
7614
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007615static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007616{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007617 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä10383922014-08-15 01:21:54 +03007618
7619 I915_WRITE(MEM_MODE,
7620 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7621 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007622}
7623
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007624void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007625{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007626 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007627}
7628
Imre Deak7d708ee2013-04-17 14:04:50 +03007629void intel_suspend_hw(struct drm_device *dev)
7630{
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007631 if (HAS_PCH_LPT(to_i915(dev)))
Imre Deak7d708ee2013-04-17 14:04:50 +03007632 lpt_suspend_hw(dev);
7633}
7634
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007635static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02007636{
7637 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
7638}
7639
7640/**
7641 * intel_init_clock_gating_hooks - setup the clock gating hooks
7642 * @dev_priv: device private
7643 *
7644 * Setup the hooks that configure which clocks of a given platform can be
7645 * gated and also apply various GT and display specific workarounds for these
7646 * platforms. Note that some GT specific workarounds are applied separately
7647 * when GPU contexts or batchbuffers start their execution.
7648 */
7649void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7650{
7651 if (IS_SKYLAKE(dev_priv))
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007652 dev_priv->display.init_clock_gating = skylake_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007653 else if (IS_KABYLAKE(dev_priv))
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007654 dev_priv->display.init_clock_gating = kabylake_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007655 else if (IS_BROXTON(dev_priv))
7656 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
7657 else if (IS_BROADWELL(dev_priv))
7658 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
7659 else if (IS_CHERRYVIEW(dev_priv))
7660 dev_priv->display.init_clock_gating = cherryview_init_clock_gating;
7661 else if (IS_HASWELL(dev_priv))
7662 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
7663 else if (IS_IVYBRIDGE(dev_priv))
7664 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
7665 else if (IS_VALLEYVIEW(dev_priv))
7666 dev_priv->display.init_clock_gating = valleyview_init_clock_gating;
7667 else if (IS_GEN6(dev_priv))
7668 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
7669 else if (IS_GEN5(dev_priv))
7670 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
7671 else if (IS_G4X(dev_priv))
7672 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
7673 else if (IS_CRESTLINE(dev_priv))
7674 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
7675 else if (IS_BROADWATER(dev_priv))
7676 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7677 else if (IS_GEN3(dev_priv))
7678 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7679 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7680 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7681 else if (IS_GEN2(dev_priv))
7682 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7683 else {
7684 MISSING_CASE(INTEL_DEVID(dev_priv));
7685 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7686 }
7687}
7688
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007689/* Set up chip specific power management-related functions */
7690void intel_init_pm(struct drm_device *dev)
7691{
Chris Wilsonfac5e232016-07-04 11:34:36 +01007692 struct drm_i915_private *dev_priv = to_i915(dev);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007693
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007694 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007695
Daniel Vetterc921aba2012-04-26 23:28:17 +02007696 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007697 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007698 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007699 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007700 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02007701
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007702 /* For FIFO watermark updates */
Damien Lespiauf5ed50c2014-11-13 17:51:52 +00007703 if (INTEL_INFO(dev)->gen >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00007704 skl_setup_wm_latency(dev);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00007705 dev_priv->display.update_wm = skl_update_wm;
Matt Roper98d39492016-05-12 07:06:03 -07007706 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007707 } else if (HAS_PCH_SPLIT(dev_priv)) {
Damien Lespiaufa50ad62014-03-17 18:01:16 +00007708 ilk_setup_wm_latency(dev);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007709
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007710 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd6025442014-01-07 16:14:10 +02007711 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007712 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd6025442014-01-07 16:14:10 +02007713 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007714 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007715 dev_priv->display.compute_intermediate_wm =
7716 ilk_compute_intermediate_wm;
7717 dev_priv->display.initial_watermarks =
7718 ilk_initial_watermarks;
7719 dev_priv->display.optimize_watermarks =
7720 ilk_optimize_watermarks;
Ville Syrjäläbd6025442014-01-07 16:14:10 +02007721 } else {
7722 DRM_DEBUG_KMS("Failed to read display plane latency. "
7723 "Disable CxSR\n");
7724 }
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01007725 } else if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03007726 vlv_setup_wm_latency(dev);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03007727 dev_priv->display.update_wm = vlv_update_wm;
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +01007728 } else if (IS_VALLEYVIEW(dev_priv)) {
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007729 vlv_setup_wm_latency(dev);
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007730 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007731 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007732 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007733 dev_priv->is_ddr3,
7734 dev_priv->fsb_freq,
7735 dev_priv->mem_freq)) {
7736 DRM_INFO("failed to find known CxSR latency "
7737 "(found ddr%s fsb freq %d, mem freq %d), "
7738 "disabling CxSR\n",
7739 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7740 dev_priv->fsb_freq, dev_priv->mem_freq);
7741 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007742 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007743 dev_priv->display.update_wm = NULL;
7744 } else
7745 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01007746 } else if (IS_G4X(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007747 dev_priv->display.update_wm = g4x_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007748 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007749 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007750 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007751 dev_priv->display.update_wm = i9xx_update_wm;
7752 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007753 } else if (IS_GEN2(dev_priv)) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007754 if (INTEL_INFO(dev)->num_pipes == 1) {
7755 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007756 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007757 } else {
7758 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007759 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007760 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007761 } else {
7762 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007763 }
7764}
7765
Lyude87660502016-08-17 15:55:53 -04007766static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
7767{
7768 uint32_t flags =
7769 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7770
7771 switch (flags) {
7772 case GEN6_PCODE_SUCCESS:
7773 return 0;
7774 case GEN6_PCODE_UNIMPLEMENTED_CMD:
7775 case GEN6_PCODE_ILLEGAL_CMD:
7776 return -ENXIO;
7777 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01007778 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04007779 return -EOVERFLOW;
7780 case GEN6_PCODE_TIMEOUT:
7781 return -ETIMEDOUT;
7782 default:
7783 MISSING_CASE(flags)
7784 return 0;
7785 }
7786}
7787
7788static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
7789{
7790 uint32_t flags =
7791 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7792
7793 switch (flags) {
7794 case GEN6_PCODE_SUCCESS:
7795 return 0;
7796 case GEN6_PCODE_ILLEGAL_CMD:
7797 return -ENXIO;
7798 case GEN7_PCODE_TIMEOUT:
7799 return -ETIMEDOUT;
7800 case GEN7_PCODE_ILLEGAL_DATA:
7801 return -EINVAL;
7802 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
7803 return -EOVERFLOW;
7804 default:
7805 MISSING_CASE(flags);
7806 return 0;
7807 }
7808}
7809
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007810int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007811{
Lyude87660502016-08-17 15:55:53 -04007812 int status;
7813
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007814 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007815
Chris Wilson3f5582d2016-06-30 15:32:45 +01007816 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7817 * use te fw I915_READ variants to reduce the amount of work
7818 * required when reading/writing.
7819 */
7820
7821 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007822 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7823 return -EAGAIN;
7824 }
7825
Chris Wilson3f5582d2016-06-30 15:32:45 +01007826 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
7827 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
7828 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007829
Chris Wilson3f5582d2016-06-30 15:32:45 +01007830 if (intel_wait_for_register_fw(dev_priv,
7831 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7832 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007833 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7834 return -ETIMEDOUT;
7835 }
7836
Chris Wilson3f5582d2016-06-30 15:32:45 +01007837 *val = I915_READ_FW(GEN6_PCODE_DATA);
7838 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007839
Lyude87660502016-08-17 15:55:53 -04007840 if (INTEL_GEN(dev_priv) > 6)
7841 status = gen7_check_mailbox_status(dev_priv);
7842 else
7843 status = gen6_check_mailbox_status(dev_priv);
7844
7845 if (status) {
7846 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed: %d\n",
7847 status);
7848 return status;
7849 }
7850
Ben Widawsky42c05262012-09-26 10:34:00 -07007851 return 0;
7852}
7853
Chris Wilson3f5582d2016-06-30 15:32:45 +01007854int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04007855 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007856{
Lyude87660502016-08-17 15:55:53 -04007857 int status;
7858
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007859 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007860
Chris Wilson3f5582d2016-06-30 15:32:45 +01007861 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7862 * use te fw I915_READ variants to reduce the amount of work
7863 * required when reading/writing.
7864 */
7865
7866 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007867 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7868 return -EAGAIN;
7869 }
7870
Chris Wilson3f5582d2016-06-30 15:32:45 +01007871 I915_WRITE_FW(GEN6_PCODE_DATA, val);
7872 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007873
Chris Wilson3f5582d2016-06-30 15:32:45 +01007874 if (intel_wait_for_register_fw(dev_priv,
7875 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7876 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007877 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7878 return -ETIMEDOUT;
7879 }
7880
Chris Wilson3f5582d2016-06-30 15:32:45 +01007881 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007882
Lyude87660502016-08-17 15:55:53 -04007883 if (INTEL_GEN(dev_priv) > 6)
7884 status = gen7_check_mailbox_status(dev_priv);
7885 else
7886 status = gen6_check_mailbox_status(dev_priv);
7887
7888 if (status) {
7889 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed: %d\n",
7890 status);
7891 return status;
7892 }
7893
Ben Widawsky42c05262012-09-26 10:34:00 -07007894 return 0;
7895}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007896
Ville Syrjälädd06f882014-11-10 22:55:12 +02007897static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7898{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007899 /*
7900 * N = val - 0xb7
7901 * Slow = Fast = GPLL ref * N
7902 */
7903 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007904}
7905
Fengguang Wub55dd642014-07-12 11:21:39 +02007906static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007907{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007908 return DIV_ROUND_CLOSEST(1000 * val, dev_priv->rps.gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007909}
7910
Fengguang Wub55dd642014-07-12 11:21:39 +02007911static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307912{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007913 /*
7914 * N = val / 2
7915 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
7916 */
7917 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307918}
7919
Fengguang Wub55dd642014-07-12 11:21:39 +02007920static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307921{
Ville Syrjälä1c147622014-08-18 14:42:43 +03007922 /* CHV needs even values */
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007923 return DIV_ROUND_CLOSEST(2 * 1000 * val, dev_priv->rps.gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307924}
7925
Ville Syrjälä616bc822015-01-23 21:04:25 +02007926int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7927{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007928 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007929 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
7930 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007931 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007932 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007933 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007934 return byt_gpu_freq(dev_priv, val);
7935 else
7936 return val * GT_FREQUENCY_MULTIPLIER;
7937}
7938
Ville Syrjälä616bc822015-01-23 21:04:25 +02007939int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7940{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007941 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007942 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
7943 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007944 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007945 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007946 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007947 return byt_freq_opcode(dev_priv, val);
7948 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007949 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05307950}
7951
Chris Wilson6ad790c2015-04-07 16:20:31 +01007952struct request_boost {
7953 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02007954 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007955};
7956
7957static void __intel_rps_boost_work(struct work_struct *work)
7958{
7959 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01007960 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01007961
Chris Wilsonf69a02c2016-07-01 17:23:16 +01007962 if (!i915_gem_request_completed(req))
Chris Wilsonc0336662016-05-06 15:40:21 +01007963 gen6_rps_boost(req->i915, NULL, req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007964
Chris Wilsone8a261e2016-07-20 13:31:49 +01007965 i915_gem_request_put(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007966 kfree(boost);
7967}
7968
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007969void intel_queue_rps_boost_for_request(struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007970{
7971 struct request_boost *boost;
7972
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007973 if (req == NULL || INTEL_GEN(req->i915) < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01007974 return;
7975
Chris Wilsonf69a02c2016-07-01 17:23:16 +01007976 if (i915_gem_request_completed(req))
Chris Wilsone61b9952015-04-27 13:41:24 +01007977 return;
7978
Chris Wilson6ad790c2015-04-07 16:20:31 +01007979 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
7980 if (boost == NULL)
7981 return;
7982
Chris Wilsone8a261e2016-07-20 13:31:49 +01007983 boost->req = i915_gem_request_get(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007984
7985 INIT_WORK(&boost->work, __intel_rps_boost_work);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007986 queue_work(req->i915->wq, &boost->work);
Chris Wilson6ad790c2015-04-07 16:20:31 +01007987}
7988
Daniel Vetterf742a552013-12-06 10:17:53 +01007989void intel_pm_setup(struct drm_device *dev)
Chris Wilson907b28c2013-07-19 20:36:52 +01007990{
Chris Wilsonfac5e232016-07-04 11:34:36 +01007991 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson907b28c2013-07-19 20:36:52 +01007992
Daniel Vetterf742a552013-12-06 10:17:53 +01007993 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01007994 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01007995
Chris Wilson54b4f682016-07-21 21:16:19 +01007996 INIT_DELAYED_WORK(&dev_priv->rps.autoenable_work,
7997 __intel_autoenable_gt_powersave);
Chris Wilson1854d5c2015-04-07 16:20:32 +01007998 INIT_LIST_HEAD(&dev_priv->rps.clients);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03007999
Paulo Zanoni33688d92014-03-07 20:08:19 -03008000 dev_priv->pm.suspended = false;
Imre Deak1f814da2015-12-16 02:52:19 +02008001 atomic_set(&dev_priv->pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01008002}