blob: 3c13be8985f134c90a68086b492c58a4c6cd14f8 [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
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +020068 /* WaEnableChickenDCPR:skl,bxt,kbl,glk */
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030069 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 */
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +020073 /* WaFbcWakeMemOn:skl,bxt,kbl,glk */
Mika Kuoppala303d4ea2016-06-07 17:19:17 +030074 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 Deakd965e7ac2015-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
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200107static void glk_init_clock_gating(struct drm_i915_private *dev_priv)
108{
109 gen9_init_clock_gating(dev_priv);
110
111 /*
112 * WaDisablePWMClockGating:glk
113 * Backlight PWM may stop in the asserted state, causing backlight
114 * to stay fully on.
115 */
116 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
117 PWM1_GATING_DIS | PWM2_GATING_DIS);
118}
119
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200120static void i915_pineview_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200121{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200122 u32 tmp;
123
124 tmp = I915_READ(CLKCFG);
125
126 switch (tmp & CLKCFG_FSB_MASK) {
127 case CLKCFG_FSB_533:
128 dev_priv->fsb_freq = 533; /* 133*4 */
129 break;
130 case CLKCFG_FSB_800:
131 dev_priv->fsb_freq = 800; /* 200*4 */
132 break;
133 case CLKCFG_FSB_667:
134 dev_priv->fsb_freq = 667; /* 167*4 */
135 break;
136 case CLKCFG_FSB_400:
137 dev_priv->fsb_freq = 400; /* 100*4 */
138 break;
139 }
140
141 switch (tmp & CLKCFG_MEM_MASK) {
142 case CLKCFG_MEM_533:
143 dev_priv->mem_freq = 533;
144 break;
145 case CLKCFG_MEM_667:
146 dev_priv->mem_freq = 667;
147 break;
148 case CLKCFG_MEM_800:
149 dev_priv->mem_freq = 800;
150 break;
151 }
152
153 /* detect pineview DDR3 setting */
154 tmp = I915_READ(CSHRDDR3CTL);
155 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
156}
157
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200158static void i915_ironlake_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200159{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200160 u16 ddrpll, csipll;
161
162 ddrpll = I915_READ16(DDRMPLL1);
163 csipll = I915_READ16(CSIPLL0);
164
165 switch (ddrpll & 0xff) {
166 case 0xc:
167 dev_priv->mem_freq = 800;
168 break;
169 case 0x10:
170 dev_priv->mem_freq = 1066;
171 break;
172 case 0x14:
173 dev_priv->mem_freq = 1333;
174 break;
175 case 0x18:
176 dev_priv->mem_freq = 1600;
177 break;
178 default:
179 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
180 ddrpll & 0xff);
181 dev_priv->mem_freq = 0;
182 break;
183 }
184
Daniel Vetter20e4d402012-08-08 23:35:39 +0200185 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200186
187 switch (csipll & 0x3ff) {
188 case 0x00c:
189 dev_priv->fsb_freq = 3200;
190 break;
191 case 0x00e:
192 dev_priv->fsb_freq = 3733;
193 break;
194 case 0x010:
195 dev_priv->fsb_freq = 4266;
196 break;
197 case 0x012:
198 dev_priv->fsb_freq = 4800;
199 break;
200 case 0x014:
201 dev_priv->fsb_freq = 5333;
202 break;
203 case 0x016:
204 dev_priv->fsb_freq = 5866;
205 break;
206 case 0x018:
207 dev_priv->fsb_freq = 6400;
208 break;
209 default:
210 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
211 csipll & 0x3ff);
212 dev_priv->fsb_freq = 0;
213 break;
214 }
215
216 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200217 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200218 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200219 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200220 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200221 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200222 }
223}
224
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300225static const struct cxsr_latency cxsr_latency_table[] = {
226 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
227 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
228 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
229 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
230 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
231
232 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
233 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
234 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
235 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
236 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
237
238 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
239 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
240 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
241 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
242 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
243
244 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
245 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
246 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
247 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
248 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
249
250 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
251 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
252 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
253 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
254 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
255
256 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
257 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
258 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
259 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
260 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
261};
262
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100263static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
264 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300265 int fsb,
266 int mem)
267{
268 const struct cxsr_latency *latency;
269 int i;
270
271 if (fsb == 0 || mem == 0)
272 return NULL;
273
274 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
275 latency = &cxsr_latency_table[i];
276 if (is_desktop == latency->is_desktop &&
277 is_ddr3 == latency->is_ddr3 &&
278 fsb == latency->fsb_freq && mem == latency->mem_freq)
279 return latency;
280 }
281
282 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
283
284 return NULL;
285}
286
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200287static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
288{
289 u32 val;
290
291 mutex_lock(&dev_priv->rps.hw_lock);
292
293 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
294 if (enable)
295 val &= ~FORCE_DDR_HIGH_FREQ;
296 else
297 val |= FORCE_DDR_HIGH_FREQ;
298 val &= ~FORCE_DDR_LOW_FREQ;
299 val |= FORCE_DDR_FREQ_REQ_ACK;
300 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
301
302 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
303 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
304 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
305
306 mutex_unlock(&dev_priv->rps.hw_lock);
307}
308
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200309static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
310{
311 u32 val;
312
313 mutex_lock(&dev_priv->rps.hw_lock);
314
315 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
316 if (enable)
317 val |= DSP_MAXFIFO_PM5_ENABLE;
318 else
319 val &= ~DSP_MAXFIFO_PM5_ENABLE;
320 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
321
322 mutex_unlock(&dev_priv->rps.hw_lock);
323}
324
Ville Syrjäläf4998962015-03-10 17:02:21 +0200325#define FW_WM(value, plane) \
326 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
327
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200328static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300329{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200330 bool was_enabled;
Imre Deak5209b1f2014-07-01 12:36:17 +0300331 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300332
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100333 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200334 was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300335 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300336 POSTING_READ(FW_BLC_SELF_VLV);
Jani Nikulac0f86832016-12-07 12:13:04 +0200337 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200338 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300339 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300340 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200341 } else if (IS_PINEVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200342 val = I915_READ(DSPFW3);
343 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
344 if (enable)
345 val |= PINEVIEW_SELF_REFRESH_EN;
346 else
347 val &= ~PINEVIEW_SELF_REFRESH_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300348 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300349 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100350 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200351 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300352 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
353 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
354 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300355 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100356 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300357 /*
358 * FIXME can't find a bit like this for 915G, and
359 * and yet it does have the related watermark in
360 * FW_BLC_SELF. What's going on?
361 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200362 was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300363 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
364 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
365 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300366 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300367 } else {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200368 return false;
Imre Deak5209b1f2014-07-01 12:36:17 +0300369 }
370
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200371 DRM_DEBUG_KMS("memory self-refresh is %s (was %s)\n",
372 enableddisabled(enable),
373 enableddisabled(was_enabled));
374
375 return was_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300376}
377
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200378bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200379{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200380 bool ret;
381
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200382 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200383 ret = _intel_set_memory_cxsr(dev_priv, enable);
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200384 dev_priv->wm.vlv.cxsr = enable;
385 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200386
387 return ret;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200388}
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200389
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300390/*
391 * Latency for FIFO fetches is dependent on several factors:
392 * - memory configuration (speed, channels)
393 * - chipset
394 * - current MCH state
395 * It can be fairly high in some situations, so here we assume a fairly
396 * pessimal value. It's a tradeoff between extra memory fetches (if we
397 * set this value too high, the FIFO will fetch frequently to stay full)
398 * and power consumption (set it too low to save power and we might see
399 * FIFO underruns and display "flicker").
400 *
401 * A value of 5us seems to be a good balance; safe for very low end
402 * platforms but not overly aggressive on lower latency configs.
403 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100404static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300405
Ville Syrjäläb5004722015-03-05 21:19:47 +0200406#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
407 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
408
Ville Syrjälä49845a22016-11-22 18:02:01 +0200409static int vlv_get_fifo_size(struct intel_plane *plane)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200410{
Ville Syrjälä49845a22016-11-22 18:02:01 +0200411 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläb5004722015-03-05 21:19:47 +0200412 int sprite0_start, sprite1_start, size;
413
Ville Syrjälä49845a22016-11-22 18:02:01 +0200414 if (plane->id == PLANE_CURSOR)
415 return 63;
416
417 switch (plane->pipe) {
Ville Syrjäläb5004722015-03-05 21:19:47 +0200418 uint32_t dsparb, dsparb2, dsparb3;
419 case PIPE_A:
420 dsparb = I915_READ(DSPARB);
421 dsparb2 = I915_READ(DSPARB2);
422 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
423 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
424 break;
425 case PIPE_B:
426 dsparb = I915_READ(DSPARB);
427 dsparb2 = I915_READ(DSPARB2);
428 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
429 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
430 break;
431 case PIPE_C:
432 dsparb2 = I915_READ(DSPARB2);
433 dsparb3 = I915_READ(DSPARB3);
434 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
435 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
436 break;
437 default:
438 return 0;
439 }
440
Ville Syrjälä49845a22016-11-22 18:02:01 +0200441 switch (plane->id) {
442 case PLANE_PRIMARY:
Ville Syrjäläb5004722015-03-05 21:19:47 +0200443 size = sprite0_start;
444 break;
Ville Syrjälä49845a22016-11-22 18:02:01 +0200445 case PLANE_SPRITE0:
Ville Syrjäläb5004722015-03-05 21:19:47 +0200446 size = sprite1_start - sprite0_start;
447 break;
Ville Syrjälä49845a22016-11-22 18:02:01 +0200448 case PLANE_SPRITE1:
Ville Syrjäläb5004722015-03-05 21:19:47 +0200449 size = 512 - 1 - sprite1_start;
450 break;
451 default:
452 return 0;
453 }
454
Ville Syrjälä49845a22016-11-22 18:02:01 +0200455 DRM_DEBUG_KMS("%s FIFO size: %d\n", plane->base.name, size);
Ville Syrjäläb5004722015-03-05 21:19:47 +0200456
457 return size;
458}
459
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200460static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300461{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300462 uint32_t dsparb = I915_READ(DSPARB);
463 int size;
464
465 size = dsparb & 0x7f;
466 if (plane)
467 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
468
469 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
470 plane ? "B" : "A", size);
471
472 return size;
473}
474
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200475static int i830_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300476{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300477 uint32_t dsparb = I915_READ(DSPARB);
478 int size;
479
480 size = dsparb & 0x1ff;
481 if (plane)
482 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
483 size >>= 1; /* Convert to cachelines */
484
485 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
486 plane ? "B" : "A", size);
487
488 return size;
489}
490
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200491static int i845_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300492{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300493 uint32_t dsparb = I915_READ(DSPARB);
494 int size;
495
496 size = dsparb & 0x7f;
497 size >>= 2; /* Convert to cachelines */
498
499 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
500 plane ? "B" : "A",
501 size);
502
503 return size;
504}
505
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300506/* Pineview has different values for various configs */
507static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300508 .fifo_size = PINEVIEW_DISPLAY_FIFO,
509 .max_wm = PINEVIEW_MAX_WM,
510 .default_wm = PINEVIEW_DFT_WM,
511 .guard_size = PINEVIEW_GUARD_WM,
512 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300513};
514static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300515 .fifo_size = PINEVIEW_DISPLAY_FIFO,
516 .max_wm = PINEVIEW_MAX_WM,
517 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
518 .guard_size = PINEVIEW_GUARD_WM,
519 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300520};
521static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300522 .fifo_size = PINEVIEW_CURSOR_FIFO,
523 .max_wm = PINEVIEW_CURSOR_MAX_WM,
524 .default_wm = PINEVIEW_CURSOR_DFT_WM,
525 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
526 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300527};
528static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300529 .fifo_size = PINEVIEW_CURSOR_FIFO,
530 .max_wm = PINEVIEW_CURSOR_MAX_WM,
531 .default_wm = PINEVIEW_CURSOR_DFT_WM,
532 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
533 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300534};
535static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300536 .fifo_size = G4X_FIFO_SIZE,
537 .max_wm = G4X_MAX_WM,
538 .default_wm = G4X_MAX_WM,
539 .guard_size = 2,
540 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300541};
542static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300543 .fifo_size = I965_CURSOR_FIFO,
544 .max_wm = I965_CURSOR_MAX_WM,
545 .default_wm = I965_CURSOR_DFT_WM,
546 .guard_size = 2,
547 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300548};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300549static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300550 .fifo_size = I965_CURSOR_FIFO,
551 .max_wm = I965_CURSOR_MAX_WM,
552 .default_wm = I965_CURSOR_DFT_WM,
553 .guard_size = 2,
554 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300555};
556static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300557 .fifo_size = I945_FIFO_SIZE,
558 .max_wm = I915_MAX_WM,
559 .default_wm = 1,
560 .guard_size = 2,
561 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300562};
563static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300564 .fifo_size = I915_FIFO_SIZE,
565 .max_wm = I915_MAX_WM,
566 .default_wm = 1,
567 .guard_size = 2,
568 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300569};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300570static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300571 .fifo_size = I855GM_FIFO_SIZE,
572 .max_wm = I915_MAX_WM,
573 .default_wm = 1,
574 .guard_size = 2,
575 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300576};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300577static const struct intel_watermark_params i830_bc_wm_info = {
578 .fifo_size = I855GM_FIFO_SIZE,
579 .max_wm = I915_MAX_WM/2,
580 .default_wm = 1,
581 .guard_size = 2,
582 .cacheline_size = I830_FIFO_LINE_SIZE,
583};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200584static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300585 .fifo_size = I830_FIFO_SIZE,
586 .max_wm = I915_MAX_WM,
587 .default_wm = 1,
588 .guard_size = 2,
589 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300590};
591
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300592/**
593 * intel_calculate_wm - calculate watermark level
594 * @clock_in_khz: pixel clock
595 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200596 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300597 * @latency_ns: memory latency for the platform
598 *
599 * Calculate the watermark level (the level at which the display plane will
600 * start fetching from memory again). Each chip has a different display
601 * FIFO size and allocation, so the caller needs to figure that out and pass
602 * in the correct intel_watermark_params structure.
603 *
604 * As the pixel clock runs, the FIFO will be drained at a rate that depends
605 * on the pixel size. When it reaches the watermark level, it'll start
606 * fetching FIFO line sized based chunks from memory until the FIFO fills
607 * past the watermark point. If the FIFO drains completely, a FIFO underrun
608 * will occur, and a display engine hang could result.
609 */
610static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
611 const struct intel_watermark_params *wm,
Ville Syrjäläac484962016-01-20 21:05:26 +0200612 int fifo_size, int cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300613 unsigned long latency_ns)
614{
615 long entries_required, wm_size;
616
617 /*
618 * Note: we need to make sure we don't overflow for various clock &
619 * latency values.
620 * clocks go from a few thousand to several hundred thousand.
621 * latency is usually a few thousand
622 */
Ville Syrjäläac484962016-01-20 21:05:26 +0200623 entries_required = ((clock_in_khz / 1000) * cpp * latency_ns) /
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300624 1000;
625 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
626
627 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
628
629 wm_size = fifo_size - (entries_required + wm->guard_size);
630
631 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
632
633 /* Don't promote wm_size to unsigned... */
634 if (wm_size > (long)wm->max_wm)
635 wm_size = wm->max_wm;
636 if (wm_size <= 0)
637 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300638
639 /*
640 * Bspec seems to indicate that the value shouldn't be lower than
641 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
642 * Lets go for 8 which is the burst size since certain platforms
643 * already use a hardcoded 8 (which is what the spec says should be
644 * done).
645 */
646 if (wm_size <= 8)
647 wm_size = 8;
648
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300649 return wm_size;
650}
651
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200652static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300653{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200654 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300655
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200656 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200657 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300658 if (enabled)
659 return NULL;
660 enabled = crtc;
661 }
662 }
663
664 return enabled;
665}
666
Ville Syrjälä432081b2016-10-31 22:37:03 +0200667static void pineview_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300668{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200669 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200670 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300671 const struct cxsr_latency *latency;
672 u32 reg;
673 unsigned long wm;
674
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100675 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
676 dev_priv->is_ddr3,
677 dev_priv->fsb_freq,
678 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300679 if (!latency) {
680 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300681 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300682 return;
683 }
684
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200685 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300686 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200687 const struct drm_display_mode *adjusted_mode =
688 &crtc->config->base.adjusted_mode;
689 const struct drm_framebuffer *fb =
690 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200691 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300692 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300693
694 /* Display SR */
695 wm = intel_calculate_wm(clock, &pineview_display_wm,
696 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200697 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300698 reg = I915_READ(DSPFW1);
699 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200700 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300701 I915_WRITE(DSPFW1, reg);
702 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
703
704 /* cursor SR */
705 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
706 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200707 cpp, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300708 reg = I915_READ(DSPFW3);
709 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200710 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300711 I915_WRITE(DSPFW3, reg);
712
713 /* Display HPLL off SR */
714 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
715 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200716 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300717 reg = I915_READ(DSPFW3);
718 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200719 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300720 I915_WRITE(DSPFW3, reg);
721
722 /* cursor HPLL off SR */
723 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
724 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200725 cpp, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300726 reg = I915_READ(DSPFW3);
727 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200728 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300729 I915_WRITE(DSPFW3, reg);
730 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
731
Imre Deak5209b1f2014-07-01 12:36:17 +0300732 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300733 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300734 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300735 }
736}
737
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200738static bool g4x_compute_wm0(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300739 int plane,
740 const struct intel_watermark_params *display,
741 int display_latency_ns,
742 const struct intel_watermark_params *cursor,
743 int cursor_latency_ns,
744 int *plane_wm,
745 int *cursor_wm)
746{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200747 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300748 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200749 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200750 int htotal, hdisplay, clock, cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300751 int line_time_us, line_count;
752 int entries, tlb_miss;
753
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200754 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200755 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300756 *cursor_wm = cursor->guard_size;
757 *plane_wm = display->guard_size;
758 return false;
759 }
760
Ville Syrjäläefc26112016-10-31 22:37:04 +0200761 adjusted_mode = &crtc->config->base.adjusted_mode;
762 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100763 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800764 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200765 hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200766 cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300767
768 /* Use the small buffer method to calculate plane watermark */
Ville Syrjäläac484962016-01-20 21:05:26 +0200769 entries = ((clock * cpp / 1000) * display_latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300770 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
771 if (tlb_miss > 0)
772 entries += tlb_miss;
773 entries = DIV_ROUND_UP(entries, display->cacheline_size);
774 *plane_wm = entries + display->guard_size;
775 if (*plane_wm > (int)display->max_wm)
776 *plane_wm = display->max_wm;
777
778 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200779 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300780 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200781 entries = line_count * crtc->base.cursor->state->crtc_w * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300782 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
783 if (tlb_miss > 0)
784 entries += tlb_miss;
785 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
786 *cursor_wm = entries + cursor->guard_size;
787 if (*cursor_wm > (int)cursor->max_wm)
788 *cursor_wm = (int)cursor->max_wm;
789
790 return true;
791}
792
793/*
794 * Check the wm result.
795 *
796 * If any calculated watermark values is larger than the maximum value that
797 * can be programmed into the associated watermark register, that watermark
798 * must be disabled.
799 */
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200800static bool g4x_check_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300801 int display_wm, int cursor_wm,
802 const struct intel_watermark_params *display,
803 const struct intel_watermark_params *cursor)
804{
805 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
806 display_wm, cursor_wm);
807
808 if (display_wm > display->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100809 DRM_DEBUG_KMS("display watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300810 display_wm, display->max_wm);
811 return false;
812 }
813
814 if (cursor_wm > cursor->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100815 DRM_DEBUG_KMS("cursor watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300816 cursor_wm, cursor->max_wm);
817 return false;
818 }
819
820 if (!(display_wm || cursor_wm)) {
821 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
822 return false;
823 }
824
825 return true;
826}
827
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200828static bool g4x_compute_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300829 int plane,
830 int latency_ns,
831 const struct intel_watermark_params *display,
832 const struct intel_watermark_params *cursor,
833 int *display_wm, int *cursor_wm)
834{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200835 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300836 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200837 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200838 int hdisplay, htotal, cpp, clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300839 unsigned long line_time_us;
840 int line_count, line_size;
841 int small, large;
842 int entries;
843
844 if (!latency_ns) {
845 *display_wm = *cursor_wm = 0;
846 return false;
847 }
848
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200849 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200850 adjusted_mode = &crtc->config->base.adjusted_mode;
851 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100852 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800853 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200854 hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200855 cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300856
Ville Syrjälä922044c2014-02-14 14:18:57 +0200857 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300858 line_count = (latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläac484962016-01-20 21:05:26 +0200859 line_size = hdisplay * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300860
861 /* Use the minimum of the small and large buffer method for primary */
Ville Syrjäläac484962016-01-20 21:05:26 +0200862 small = ((clock * cpp / 1000) * latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300863 large = line_count * line_size;
864
865 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
866 *display_wm = entries + display->guard_size;
867
868 /* calculate the self-refresh watermark for display cursor */
Ville Syrjäläefc26112016-10-31 22:37:04 +0200869 entries = line_count * cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300870 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
871 *cursor_wm = entries + cursor->guard_size;
872
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200873 return g4x_check_srwm(dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300874 *display_wm, *cursor_wm,
875 display, cursor);
876}
877
Ville Syrjälä15665972015-03-10 16:16:28 +0200878#define FW_WM_VLV(value, plane) \
879 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
880
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200881static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200882 const struct vlv_wm_values *wm)
883{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200884 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200885
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200886 for_each_pipe(dev_priv, pipe) {
887 I915_WRITE(VLV_DDL(pipe),
888 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
889 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
890 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
891 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
892 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200893
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +0200894 /*
895 * Zero the (unused) WM1 watermarks, and also clear all the
896 * high order bits so that there are no out of bounds values
897 * present in the registers during the reprogramming.
898 */
899 I915_WRITE(DSPHOWM, 0);
900 I915_WRITE(DSPHOWM1, 0);
901 I915_WRITE(DSPFW4, 0);
902 I915_WRITE(DSPFW5, 0);
903 I915_WRITE(DSPFW6, 0);
904
Ville Syrjäläae801522015-03-05 21:19:49 +0200905 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200906 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200907 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
908 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
909 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200910 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200911 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
912 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
913 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200914 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200915 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200916
917 if (IS_CHERRYVIEW(dev_priv)) {
918 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200919 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
920 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200921 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200922 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
923 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200924 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200925 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
926 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200927 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200928 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200929 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
930 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
931 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
932 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
933 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
934 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
935 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
936 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
937 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200938 } else {
939 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200940 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
941 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200942 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200943 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200944 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
945 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
946 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
947 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
948 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
949 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200950 }
951
952 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200953}
954
Ville Syrjälä15665972015-03-10 16:16:28 +0200955#undef FW_WM_VLV
956
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300957enum vlv_wm_level {
958 VLV_WM_LEVEL_PM2,
959 VLV_WM_LEVEL_PM5,
960 VLV_WM_LEVEL_DDR_DVFS,
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300961};
962
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300963/* latency must be in 0.1us units. */
964static unsigned int vlv_wm_method2(unsigned int pixel_rate,
965 unsigned int pipe_htotal,
966 unsigned int horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +0200967 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300968 unsigned int latency)
969{
970 unsigned int ret;
971
972 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +0200973 ret = (ret + 1) * horiz_pixels * cpp;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300974 ret = DIV_ROUND_UP(ret, 64);
975
976 return ret;
977}
978
Ville Syrjäläbb726512016-10-31 22:37:24 +0200979static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300980{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300981 /* all latencies in usec */
982 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
983
Ville Syrjälä58590c12015-09-08 21:05:12 +0300984 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
985
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300986 if (IS_CHERRYVIEW(dev_priv)) {
987 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
988 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300989
990 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300991 }
992}
993
Ville Syrjäläe339d672016-11-28 19:37:17 +0200994static uint16_t vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
995 const struct intel_plane_state *plane_state,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300996 int level)
997{
Ville Syrjäläe339d672016-11-28 19:37:17 +0200998 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300999 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +02001000 const struct drm_display_mode *adjusted_mode =
1001 &crtc_state->base.adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +02001002 int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001003
1004 if (dev_priv->wm.pri_latency[level] == 0)
1005 return USHRT_MAX;
1006
Ville Syrjäläe339d672016-11-28 19:37:17 +02001007 if (!plane_state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001008 return 0;
1009
Daniel Vetteref426c12017-01-04 11:41:10 +01001010 cpp = plane_state->base.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001011 clock = adjusted_mode->crtc_clock;
1012 htotal = adjusted_mode->crtc_htotal;
1013 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001014 if (WARN_ON(htotal == 0))
1015 htotal = 1;
1016
1017 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1018 /*
1019 * FIXME the formula gives values that are
1020 * too big for the cursor FIFO, and hence we
1021 * would never be able to use cursors. For
1022 * now just hardcode the watermark.
1023 */
1024 wm = 63;
1025 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001026 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001027 dev_priv->wm.pri_latency[level] * 10);
1028 }
1029
1030 return min_t(int, wm, USHRT_MAX);
1031}
1032
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001033static void vlv_compute_fifo(struct intel_crtc *crtc)
1034{
1035 struct drm_device *dev = crtc->base.dev;
1036 struct vlv_wm_state *wm_state = &crtc->wm_state;
1037 struct intel_plane *plane;
1038 unsigned int total_rate = 0;
1039 const int fifo_size = 512 - 1;
1040 int fifo_extra, fifo_left = fifo_size;
1041
1042 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1043 struct intel_plane_state *state =
1044 to_intel_plane_state(plane->base.state);
1045
1046 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1047 continue;
1048
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001049 if (state->base.visible) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001050 wm_state->num_active_planes++;
Ville Syrjälä353c8592016-12-14 23:30:57 +02001051 total_rate += state->base.fb->format->cpp[0];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001052 }
1053 }
1054
1055 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1056 struct intel_plane_state *state =
1057 to_intel_plane_state(plane->base.state);
1058 unsigned int rate;
1059
1060 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1061 plane->wm.fifo_size = 63;
1062 continue;
1063 }
1064
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001065 if (!state->base.visible) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001066 plane->wm.fifo_size = 0;
1067 continue;
1068 }
1069
Ville Syrjälä353c8592016-12-14 23:30:57 +02001070 rate = state->base.fb->format->cpp[0];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001071 plane->wm.fifo_size = fifo_size * rate / total_rate;
1072 fifo_left -= plane->wm.fifo_size;
1073 }
1074
1075 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1076
1077 /* spread the remainder evenly */
1078 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1079 int plane_extra;
1080
1081 if (fifo_left == 0)
1082 break;
1083
1084 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1085 continue;
1086
1087 /* give it all to the first plane if none are active */
1088 if (plane->wm.fifo_size == 0 &&
1089 wm_state->num_active_planes)
1090 continue;
1091
1092 plane_extra = min(fifo_extra, fifo_left);
1093 plane->wm.fifo_size += plane_extra;
1094 fifo_left -= plane_extra;
1095 }
1096
1097 WARN_ON(fifo_left != 0);
1098}
1099
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001100static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1101{
1102 if (wm > fifo_size)
1103 return USHRT_MAX;
1104 else
1105 return fifo_size - wm;
1106}
1107
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001108static void vlv_invert_wms(struct intel_crtc *crtc)
1109{
1110 struct vlv_wm_state *wm_state = &crtc->wm_state;
1111 int level;
1112
1113 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001114 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001115 const int sr_fifo_size =
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001116 INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001117 struct intel_plane *plane;
1118
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001119 wm_state->sr[level].plane =
1120 vlv_invert_wm_value(wm_state->sr[level].plane,
1121 sr_fifo_size);
1122 wm_state->sr[level].cursor =
1123 vlv_invert_wm_value(wm_state->sr[level].cursor,
1124 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001125
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001126 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001127 wm_state->wm[level].plane[plane->id] =
1128 vlv_invert_wm_value(wm_state->wm[level].plane[plane->id],
1129 plane->wm.fifo_size);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001130 }
1131 }
1132}
1133
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001134static void vlv_compute_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001135{
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001136 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001137 struct vlv_wm_state *wm_state = &crtc->wm_state;
1138 struct intel_plane *plane;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001139 int level;
1140
1141 memset(wm_state, 0, sizeof(*wm_state));
1142
Ville Syrjälä852eb002015-06-24 22:00:07 +03001143 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001144 wm_state->num_levels = dev_priv->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001145
1146 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001147
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001148 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001149
1150 if (wm_state->num_active_planes != 1)
1151 wm_state->cxsr = false;
1152
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001153 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001154 struct intel_plane_state *state =
1155 to_intel_plane_state(plane->base.state);
Ville Syrjälä1b313892016-11-28 19:37:08 +02001156 int level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001157
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001158 if (!state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001159 continue;
1160
1161 /* normal watermarks */
1162 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjäläe339d672016-11-28 19:37:17 +02001163 int wm = vlv_compute_wm_level(crtc->config, state, level);
Ville Syrjälä1be4d372016-11-28 19:37:05 +02001164 int max_wm = plane->wm.fifo_size;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001165
1166 /* hack */
1167 if (WARN_ON(level == 0 && wm > max_wm))
1168 wm = max_wm;
1169
Ville Syrjälä1be4d372016-11-28 19:37:05 +02001170 if (wm > max_wm)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001171 break;
1172
Ville Syrjälä1b313892016-11-28 19:37:08 +02001173 wm_state->wm[level].plane[plane->id] = wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001174 }
1175
1176 wm_state->num_levels = level;
1177
1178 if (!wm_state->cxsr)
1179 continue;
1180
1181 /* maxfifo watermarks */
Ville Syrjälä1b313892016-11-28 19:37:08 +02001182 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001183 for (level = 0; level < wm_state->num_levels; level++)
1184 wm_state->sr[level].cursor =
Ville Syrjälä1b313892016-11-28 19:37:08 +02001185 wm_state->wm[level].plane[PLANE_CURSOR];
1186 } else {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001187 for (level = 0; level < wm_state->num_levels; level++)
1188 wm_state->sr[level].plane =
Ville Syrjälä50a9dd32016-11-28 19:37:06 +02001189 max(wm_state->sr[level].plane,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001190 wm_state->wm[level].plane[plane->id]);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001191 }
1192 }
1193
1194 /* clear any (partially) filled invalid levels */
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001195 for (level = wm_state->num_levels; level < dev_priv->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001196 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1197 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1198 }
1199
1200 vlv_invert_wms(crtc);
1201}
1202
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001203#define VLV_FIFO(plane, value) \
1204 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1205
1206static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1207{
1208 struct drm_device *dev = crtc->base.dev;
1209 struct drm_i915_private *dev_priv = to_i915(dev);
1210 struct intel_plane *plane;
1211 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1212
1213 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjälä49845a22016-11-22 18:02:01 +02001214 switch (plane->id) {
1215 case PLANE_PRIMARY:
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001216 sprite0_start = plane->wm.fifo_size;
Ville Syrjälä49845a22016-11-22 18:02:01 +02001217 break;
1218 case PLANE_SPRITE0:
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001219 sprite1_start = sprite0_start + plane->wm.fifo_size;
Ville Syrjälä49845a22016-11-22 18:02:01 +02001220 break;
1221 case PLANE_SPRITE1:
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001222 fifo_size = sprite1_start + plane->wm.fifo_size;
Ville Syrjälä49845a22016-11-22 18:02:01 +02001223 break;
1224 case PLANE_CURSOR:
1225 WARN_ON(plane->wm.fifo_size != 63);
1226 break;
1227 default:
1228 MISSING_CASE(plane->id);
1229 break;
1230 }
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001231 }
1232
1233 WARN_ON(fifo_size != 512 - 1);
1234
1235 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1236 pipe_name(crtc->pipe), sprite0_start,
1237 sprite1_start, fifo_size);
1238
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001239 spin_lock(&dev_priv->wm.dsparb_lock);
1240
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001241 switch (crtc->pipe) {
1242 uint32_t dsparb, dsparb2, dsparb3;
1243 case PIPE_A:
1244 dsparb = I915_READ(DSPARB);
1245 dsparb2 = I915_READ(DSPARB2);
1246
1247 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1248 VLV_FIFO(SPRITEB, 0xff));
1249 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1250 VLV_FIFO(SPRITEB, sprite1_start));
1251
1252 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1253 VLV_FIFO(SPRITEB_HI, 0x1));
1254 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1255 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1256
1257 I915_WRITE(DSPARB, dsparb);
1258 I915_WRITE(DSPARB2, dsparb2);
1259 break;
1260 case PIPE_B:
1261 dsparb = I915_READ(DSPARB);
1262 dsparb2 = I915_READ(DSPARB2);
1263
1264 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1265 VLV_FIFO(SPRITED, 0xff));
1266 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1267 VLV_FIFO(SPRITED, sprite1_start));
1268
1269 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1270 VLV_FIFO(SPRITED_HI, 0xff));
1271 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1272 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1273
1274 I915_WRITE(DSPARB, dsparb);
1275 I915_WRITE(DSPARB2, dsparb2);
1276 break;
1277 case PIPE_C:
1278 dsparb3 = I915_READ(DSPARB3);
1279 dsparb2 = I915_READ(DSPARB2);
1280
1281 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1282 VLV_FIFO(SPRITEF, 0xff));
1283 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1284 VLV_FIFO(SPRITEF, sprite1_start));
1285
1286 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1287 VLV_FIFO(SPRITEF_HI, 0xff));
1288 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1289 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1290
1291 I915_WRITE(DSPARB3, dsparb3);
1292 I915_WRITE(DSPARB2, dsparb2);
1293 break;
1294 default:
1295 break;
1296 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001297
1298 POSTING_READ(DSPARB);
1299
1300 spin_unlock(&dev_priv->wm.dsparb_lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001301}
1302
1303#undef VLV_FIFO
1304
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001305static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001306 struct vlv_wm_values *wm)
1307{
1308 struct intel_crtc *crtc;
1309 int num_active_crtcs = 0;
1310
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001311 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001312 wm->cxsr = true;
1313
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001314 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001315 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1316
1317 if (!crtc->active)
1318 continue;
1319
1320 if (!wm_state->cxsr)
1321 wm->cxsr = false;
1322
1323 num_active_crtcs++;
1324 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1325 }
1326
1327 if (num_active_crtcs != 1)
1328 wm->cxsr = false;
1329
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001330 if (num_active_crtcs > 1)
1331 wm->level = VLV_WM_LEVEL_PM2;
1332
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001333 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001334 struct vlv_wm_state *wm_state = &crtc->wm_state;
1335 enum pipe pipe = crtc->pipe;
1336
1337 if (!crtc->active)
1338 continue;
1339
1340 wm->pipe[pipe] = wm_state->wm[wm->level];
1341 if (wm->cxsr)
1342 wm->sr = wm_state->sr[wm->level];
1343
Ville Syrjälä1b313892016-11-28 19:37:08 +02001344 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
1345 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
1346 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
1347 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001348 }
1349}
1350
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001351static bool is_disabling(int old, int new, int threshold)
1352{
1353 return old >= threshold && new < threshold;
1354}
1355
1356static bool is_enabling(int old, int new, int threshold)
1357{
1358 return old < threshold && new >= threshold;
1359}
1360
Ville Syrjälä432081b2016-10-31 22:37:03 +02001361static void vlv_update_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001362{
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001363 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä432081b2016-10-31 22:37:03 +02001364 enum pipe pipe = crtc->pipe;
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001365 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
1366 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001367
Ville Syrjälä432081b2016-10-31 22:37:03 +02001368 vlv_compute_wm(crtc);
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001369 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001370
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001371 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001372 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä432081b2016-10-31 22:37:03 +02001373 vlv_pipe_set_fifo_size(crtc);
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001374
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001375 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001376 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001377
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001378 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001379 chv_set_memory_dvfs(dev_priv, false);
1380
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001381 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001382 chv_set_memory_pm5(dev_priv, false);
1383
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001384 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001385 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001386
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001387 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä432081b2016-10-31 22:37:03 +02001388 vlv_pipe_set_fifo_size(crtc);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001389
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001390 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001391
1392 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1393 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001394 pipe_name(pipe), new_wm.pipe[pipe].plane[PLANE_PRIMARY], new_wm.pipe[pipe].plane[PLANE_CURSOR],
1395 new_wm.pipe[pipe].plane[PLANE_SPRITE0], new_wm.pipe[pipe].plane[PLANE_SPRITE1],
1396 new_wm.sr.plane, new_wm.sr.cursor, new_wm.level, new_wm.cxsr);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001397
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001398 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001399 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001400
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001401 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001402 chv_set_memory_pm5(dev_priv, true);
1403
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001404 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001405 chv_set_memory_dvfs(dev_priv, true);
1406
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001407 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001408}
1409
Ville Syrjäläae801522015-03-05 21:19:49 +02001410#define single_plane_enabled(mask) is_power_of_2(mask)
1411
Ville Syrjälä432081b2016-10-31 22:37:03 +02001412static void g4x_update_wm(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001413{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001414 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001415 static const int sr_latency_ns = 12000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001416 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1417 int plane_sr, cursor_sr;
1418 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001419 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001420
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001421 if (g4x_compute_wm0(dev_priv, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001422 &g4x_wm_info, pessimal_latency_ns,
1423 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001424 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001425 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001426
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001427 if (g4x_compute_wm0(dev_priv, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001428 &g4x_wm_info, pessimal_latency_ns,
1429 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001430 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001431 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001432
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001433 if (single_plane_enabled(enabled) &&
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001434 g4x_compute_srwm(dev_priv, ffs(enabled) - 1,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001435 sr_latency_ns,
1436 &g4x_wm_info,
1437 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001438 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001439 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001440 } else {
Imre Deak98584252014-06-13 14:54:20 +03001441 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001442 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001443 plane_sr = cursor_sr = 0;
1444 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001445
Ville Syrjäläa5043452014-06-28 02:04:18 +03001446 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1447 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001448 planea_wm, cursora_wm,
1449 planeb_wm, cursorb_wm,
1450 plane_sr, cursor_sr);
1451
1452 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001453 FW_WM(plane_sr, SR) |
1454 FW_WM(cursorb_wm, CURSORB) |
1455 FW_WM(planeb_wm, PLANEB) |
1456 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001457 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001458 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001459 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001460 /* HPLL off in SR has some issues on G4x... disable it */
1461 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001462 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001463 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001464
1465 if (cxsr_enabled)
1466 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001467}
1468
Ville Syrjälä432081b2016-10-31 22:37:03 +02001469static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001470{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001471 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001472 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001473 int srwm = 1;
1474 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001475 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001476
1477 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001478 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001479 if (crtc) {
1480 /* self-refresh has much higher latency */
1481 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001482 const struct drm_display_mode *adjusted_mode =
1483 &crtc->config->base.adjusted_mode;
1484 const struct drm_framebuffer *fb =
1485 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001486 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001487 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001488 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02001489 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001490 unsigned long line_time_us;
1491 int entries;
1492
Ville Syrjälä922044c2014-02-14 14:18:57 +02001493 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001494
1495 /* Use ns/us then divide to preserve precision */
1496 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001497 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001498 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1499 srwm = I965_FIFO_SIZE - entries;
1500 if (srwm < 0)
1501 srwm = 1;
1502 srwm &= 0x1ff;
1503 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1504 entries, srwm);
1505
1506 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläefc26112016-10-31 22:37:04 +02001507 cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001508 entries = DIV_ROUND_UP(entries,
1509 i965_cursor_wm_info.cacheline_size);
1510 cursor_sr = i965_cursor_wm_info.fifo_size -
1511 (entries + i965_cursor_wm_info.guard_size);
1512
1513 if (cursor_sr > i965_cursor_wm_info.max_wm)
1514 cursor_sr = i965_cursor_wm_info.max_wm;
1515
1516 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1517 "cursor %d\n", srwm, cursor_sr);
1518
Imre Deak98584252014-06-13 14:54:20 +03001519 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001520 } else {
Imre Deak98584252014-06-13 14:54:20 +03001521 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001522 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001523 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001524 }
1525
1526 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1527 srwm);
1528
1529 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001530 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1531 FW_WM(8, CURSORB) |
1532 FW_WM(8, PLANEB) |
1533 FW_WM(8, PLANEA));
1534 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1535 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001536 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001537 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001538
1539 if (cxsr_enabled)
1540 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001541}
1542
Ville Syrjäläf4998962015-03-10 17:02:21 +02001543#undef FW_WM
1544
Ville Syrjälä432081b2016-10-31 22:37:03 +02001545static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001546{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001547 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001548 const struct intel_watermark_params *wm_info;
1549 uint32_t fwater_lo;
1550 uint32_t fwater_hi;
1551 int cwm, srwm = 1;
1552 int fifo_size;
1553 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001554 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001555
Ville Syrjäläa9097be2016-10-31 22:37:20 +02001556 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001557 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001558 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001559 wm_info = &i915_wm_info;
1560 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001561 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001562
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001563 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 0);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001564 crtc = intel_get_crtc_for_plane(dev_priv, 0);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001565 if (intel_crtc_active(crtc)) {
1566 const struct drm_display_mode *adjusted_mode =
1567 &crtc->config->base.adjusted_mode;
1568 const struct drm_framebuffer *fb =
1569 crtc->base.primary->state->fb;
1570 int cpp;
1571
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001572 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001573 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001574 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001575 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001576
Damien Lespiau241bfc32013-09-25 16:45:37 +01001577 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001578 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001579 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001580 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001581 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001582 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001583 if (planea_wm > (long)wm_info->max_wm)
1584 planea_wm = wm_info->max_wm;
1585 }
1586
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001587 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03001588 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001589
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001590 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 1);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001591 crtc = intel_get_crtc_for_plane(dev_priv, 1);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001592 if (intel_crtc_active(crtc)) {
1593 const struct drm_display_mode *adjusted_mode =
1594 &crtc->config->base.adjusted_mode;
1595 const struct drm_framebuffer *fb =
1596 crtc->base.primary->state->fb;
1597 int cpp;
1598
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001599 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001600 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001601 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001602 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001603
Damien Lespiau241bfc32013-09-25 16:45:37 +01001604 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001605 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001606 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001607 if (enabled == NULL)
1608 enabled = crtc;
1609 else
1610 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001611 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001612 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001613 if (planeb_wm > (long)wm_info->max_wm)
1614 planeb_wm = wm_info->max_wm;
1615 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001616
1617 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1618
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001619 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001620 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001621
Ville Syrjäläefc26112016-10-31 22:37:04 +02001622 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001623
1624 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01001625 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001626 enabled = NULL;
1627 }
1628
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001629 /*
1630 * Overlay gets an aggressive default since video jitter is bad.
1631 */
1632 cwm = 2;
1633
1634 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001635 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001636
1637 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02001638 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001639 /* self-refresh has much higher latency */
1640 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001641 const struct drm_display_mode *adjusted_mode =
1642 &enabled->config->base.adjusted_mode;
1643 const struct drm_framebuffer *fb =
1644 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001645 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001646 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001647 int hdisplay = enabled->config->pipe_src_w;
1648 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001649 unsigned long line_time_us;
1650 int entries;
1651
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001652 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001653 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001654 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001655 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001656
Ville Syrjälä922044c2014-02-14 14:18:57 +02001657 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001658
1659 /* Use ns/us then divide to preserve precision */
1660 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001661 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001662 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1663 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1664 srwm = wm_info->fifo_size - entries;
1665 if (srwm < 0)
1666 srwm = 1;
1667
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001668 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001669 I915_WRITE(FW_BLC_SELF,
1670 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03001671 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001672 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1673 }
1674
1675 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1676 planea_wm, planeb_wm, cwm, srwm);
1677
1678 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1679 fwater_hi = (cwm & 0x1f);
1680
1681 /* Set request length to 8 cachelines per fetch */
1682 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1683 fwater_hi = fwater_hi | (1 << 8);
1684
1685 I915_WRITE(FW_BLC, fwater_lo);
1686 I915_WRITE(FW_BLC2, fwater_hi);
1687
Imre Deak5209b1f2014-07-01 12:36:17 +03001688 if (enabled)
1689 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001690}
1691
Ville Syrjälä432081b2016-10-31 22:37:03 +02001692static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001693{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001694 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001695 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001696 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001697 uint32_t fwater_lo;
1698 int planea_wm;
1699
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001700 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001701 if (crtc == NULL)
1702 return;
1703
Ville Syrjäläefc26112016-10-31 22:37:04 +02001704 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001705 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001706 &i845_wm_info,
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001707 dev_priv->display.get_fifo_size(dev_priv, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001708 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001709 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1710 fwater_lo |= (3<<8) | planea_wm;
1711
1712 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1713
1714 I915_WRITE(FW_BLC, fwater_lo);
1715}
1716
Ville Syrjälä37126462013-08-01 16:18:55 +03001717/* latency must be in 0.1us units. */
Ville Syrjäläac484962016-01-20 21:05:26 +02001718static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001719{
1720 uint64_t ret;
1721
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001722 if (WARN(latency == 0, "Latency value missing\n"))
1723 return UINT_MAX;
1724
Ville Syrjäläac484962016-01-20 21:05:26 +02001725 ret = (uint64_t) pixel_rate * cpp * latency;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001726 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1727
1728 return ret;
1729}
1730
Ville Syrjälä37126462013-08-01 16:18:55 +03001731/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001732static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02001733 uint32_t horiz_pixels, uint8_t cpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001734 uint32_t latency)
1735{
1736 uint32_t ret;
1737
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001738 if (WARN(latency == 0, "Latency value missing\n"))
1739 return UINT_MAX;
Matt Roper15126882015-12-03 11:37:40 -08001740 if (WARN_ON(!pipe_htotal))
1741 return UINT_MAX;
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001742
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001743 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +02001744 ret = (ret + 1) * horiz_pixels * cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001745 ret = DIV_ROUND_UP(ret, 64) + 2;
1746 return ret;
1747}
1748
Ville Syrjälä23297042013-07-05 11:57:17 +03001749static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02001750 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001751{
Matt Roper15126882015-12-03 11:37:40 -08001752 /*
1753 * Neither of these should be possible since this function shouldn't be
1754 * called if the CRTC is off or the plane is invisible. But let's be
1755 * extra paranoid to avoid a potential divide-by-zero if we screw up
1756 * elsewhere in the driver.
1757 */
Ville Syrjäläac484962016-01-20 21:05:26 +02001758 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08001759 return 0;
1760 if (WARN_ON(!horiz_pixels))
1761 return 0;
1762
Ville Syrjäläac484962016-01-20 21:05:26 +02001763 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001764}
1765
Imre Deak820c1982013-12-17 14:46:36 +02001766struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001767 uint16_t pri;
1768 uint16_t spr;
1769 uint16_t cur;
1770 uint16_t fbc;
1771};
1772
Ville Syrjälä37126462013-08-01 16:18:55 +03001773/*
1774 * For both WM_PIPE and WM_LP.
1775 * mem_value must be in 0.1us units.
1776 */
Matt Roper7221fc32015-09-24 15:53:08 -07001777static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001778 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001779 uint32_t mem_value,
1780 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001781{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001782 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001783 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001784
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001785 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001786 return 0;
1787
Ville Syrjälä353c8592016-12-14 23:30:57 +02001788 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001789
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001790 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001791
1792 if (!is_lp)
1793 return method1;
1794
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001795 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001796 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001797 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001798 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001799
1800 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001801}
1802
Ville Syrjälä37126462013-08-01 16:18:55 +03001803/*
1804 * For both WM_PIPE and WM_LP.
1805 * mem_value must be in 0.1us units.
1806 */
Matt Roper7221fc32015-09-24 15:53:08 -07001807static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001808 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001809 uint32_t mem_value)
1810{
1811 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001812 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001813
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001814 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001815 return 0;
1816
Ville Syrjälä353c8592016-12-14 23:30:57 +02001817 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001818
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001819 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
1820 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001821 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001822 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001823 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001824 return min(method1, method2);
1825}
1826
Ville Syrjälä37126462013-08-01 16:18:55 +03001827/*
1828 * For both WM_PIPE and WM_LP.
1829 * mem_value must be in 0.1us units.
1830 */
Matt Roper7221fc32015-09-24 15:53:08 -07001831static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001832 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001833 uint32_t mem_value)
1834{
Matt Roperb2435692016-02-02 22:06:51 -08001835 /*
1836 * We treat the cursor plane as always-on for the purposes of watermark
1837 * calculation. Until we have two-stage watermark programming merged,
1838 * this is necessary to avoid flickering.
1839 */
1840 int cpp = 4;
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001841 int width = pstate->base.visible ? pstate->base.crtc_w : 64;
Matt Roper43d59ed2015-09-24 15:53:07 -07001842
Matt Roperb2435692016-02-02 22:06:51 -08001843 if (!cstate->base.active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001844 return 0;
1845
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001846 return ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001847 cstate->base.adjusted_mode.crtc_htotal,
Matt Roperb2435692016-02-02 22:06:51 -08001848 width, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001849}
1850
Paulo Zanonicca32e92013-05-31 11:45:06 -03001851/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07001852static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001853 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001854 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001855{
Ville Syrjälä83054942016-11-18 21:53:00 +02001856 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07001857
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001858 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001859 return 0;
1860
Ville Syrjälä353c8592016-12-14 23:30:57 +02001861 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001862
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
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001866static unsigned int
1867ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001868{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001869 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07001870 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001871 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001872 return 768;
1873 else
1874 return 512;
1875}
1876
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001877static unsigned int
1878ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
1879 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001880{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001881 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001882 /* BDW primary/sprite plane watermarks */
1883 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001884 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001885 /* IVB/HSW primary/sprite plane watermarks */
1886 return level == 0 ? 127 : 1023;
1887 else if (!is_sprite)
1888 /* ILK/SNB primary plane watermarks */
1889 return level == 0 ? 127 : 511;
1890 else
1891 /* ILK/SNB sprite plane watermarks */
1892 return level == 0 ? 63 : 255;
1893}
1894
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001895static unsigned int
1896ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001897{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001898 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001899 return level == 0 ? 63 : 255;
1900 else
1901 return level == 0 ? 31 : 63;
1902}
1903
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001904static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001905{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001906 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001907 return 31;
1908 else
1909 return 15;
1910}
1911
Ville Syrjälä158ae642013-08-07 13:28:19 +03001912/* Calculate the maximum primary/sprite plane watermark */
1913static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1914 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001915 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001916 enum intel_ddb_partitioning ddb_partitioning,
1917 bool is_sprite)
1918{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001919 struct drm_i915_private *dev_priv = to_i915(dev);
1920 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001921
1922 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001923 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001924 return 0;
1925
1926 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001927 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001928 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03001929
1930 /*
1931 * For some reason the non self refresh
1932 * FIFO size is only half of the self
1933 * refresh FIFO size on ILK/SNB.
1934 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001935 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001936 fifo_size /= 2;
1937 }
1938
Ville Syrjälä240264f2013-08-07 13:29:12 +03001939 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001940 /* level 0 is always calculated with 1:1 split */
1941 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1942 if (is_sprite)
1943 fifo_size *= 5;
1944 fifo_size /= 6;
1945 } else {
1946 fifo_size /= 2;
1947 }
1948 }
1949
1950 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001951 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001952}
1953
1954/* Calculate the maximum cursor plane watermark */
1955static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001956 int level,
1957 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001958{
1959 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001960 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001961 return 64;
1962
1963 /* otherwise just report max that registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001964 return ilk_cursor_wm_reg_max(to_i915(dev), level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001965}
1966
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001967static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001968 int level,
1969 const struct intel_wm_config *config,
1970 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001971 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001972{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001973 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1974 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1975 max->cur = ilk_cursor_wm_max(dev, level, config);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001976 max->fbc = ilk_fbc_wm_reg_max(to_i915(dev));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001977}
1978
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001979static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001980 int level,
1981 struct ilk_wm_maximums *max)
1982{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001983 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
1984 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
1985 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
1986 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001987}
1988
Ville Syrjäläd9395652013-10-09 19:18:10 +03001989static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001990 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001991 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001992{
1993 bool ret;
1994
1995 /* already determined to be invalid? */
1996 if (!result->enable)
1997 return false;
1998
1999 result->enable = result->pri_val <= max->pri &&
2000 result->spr_val <= max->spr &&
2001 result->cur_val <= max->cur;
2002
2003 ret = result->enable;
2004
2005 /*
2006 * HACK until we can pre-compute everything,
2007 * and thus fail gracefully if LP0 watermarks
2008 * are exceeded...
2009 */
2010 if (level == 0 && !result->enable) {
2011 if (result->pri_val > max->pri)
2012 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2013 level, result->pri_val, max->pri);
2014 if (result->spr_val > max->spr)
2015 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2016 level, result->spr_val, max->spr);
2017 if (result->cur_val > max->cur)
2018 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2019 level, result->cur_val, max->cur);
2020
2021 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2022 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2023 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2024 result->enable = true;
2025 }
2026
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002027 return ret;
2028}
2029
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002030static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002031 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002032 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002033 struct intel_crtc_state *cstate,
Matt Roper86c8bbb2015-09-24 15:53:16 -07002034 struct intel_plane_state *pristate,
2035 struct intel_plane_state *sprstate,
2036 struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002037 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002038{
2039 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2040 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2041 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2042
2043 /* WM1+ latency values stored in 0.5us units */
2044 if (level > 0) {
2045 pri_latency *= 5;
2046 spr_latency *= 5;
2047 cur_latency *= 5;
2048 }
2049
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002050 if (pristate) {
2051 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2052 pri_latency, level);
2053 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2054 }
2055
2056 if (sprstate)
2057 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2058
2059 if (curstate)
2060 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2061
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002062 result->enable = true;
2063}
2064
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002065static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002066hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002067{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002068 const struct intel_atomic_state *intel_state =
2069 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002070 const struct drm_display_mode *adjusted_mode =
2071 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002072 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002073
Matt Roperee91a152015-12-03 11:37:39 -08002074 if (!cstate->base.active)
2075 return 0;
2076 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2077 return 0;
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002078 if (WARN_ON(intel_state->cdclk.logical.cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002079 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002080
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002081 /* The WM are computed with base on how long it takes to fill a single
2082 * row at the given clock rate, multiplied by 8.
2083 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002084 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2085 adjusted_mode->crtc_clock);
2086 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002087 intel_state->cdclk.logical.cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002088
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002089 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2090 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002091}
2092
Ville Syrjäläbb726512016-10-31 22:37:24 +02002093static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2094 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002095{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002096 if (IS_GEN9(dev_priv)) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002097 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002098 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002099 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002100
2101 /* read the first set of memory latencies[0:3] */
2102 val = 0; /* data0 to be programmed to 0 for first set */
2103 mutex_lock(&dev_priv->rps.hw_lock);
2104 ret = sandybridge_pcode_read(dev_priv,
2105 GEN9_PCODE_READ_MEM_LATENCY,
2106 &val);
2107 mutex_unlock(&dev_priv->rps.hw_lock);
2108
2109 if (ret) {
2110 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2111 return;
2112 }
2113
2114 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2115 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2116 GEN9_MEM_LATENCY_LEVEL_MASK;
2117 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2118 GEN9_MEM_LATENCY_LEVEL_MASK;
2119 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2120 GEN9_MEM_LATENCY_LEVEL_MASK;
2121
2122 /* read the second set of memory latencies[4:7] */
2123 val = 1; /* data0 to be programmed to 1 for second set */
2124 mutex_lock(&dev_priv->rps.hw_lock);
2125 ret = sandybridge_pcode_read(dev_priv,
2126 GEN9_PCODE_READ_MEM_LATENCY,
2127 &val);
2128 mutex_unlock(&dev_priv->rps.hw_lock);
2129 if (ret) {
2130 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2131 return;
2132 }
2133
2134 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2135 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2136 GEN9_MEM_LATENCY_LEVEL_MASK;
2137 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2138 GEN9_MEM_LATENCY_LEVEL_MASK;
2139 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2140 GEN9_MEM_LATENCY_LEVEL_MASK;
2141
Vandana Kannan367294b2014-11-04 17:06:46 +00002142 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002143 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2144 * need to be disabled. We make sure to sanitize the values out
2145 * of the punit to satisfy this requirement.
2146 */
2147 for (level = 1; level <= max_level; level++) {
2148 if (wm[level] == 0) {
2149 for (i = level + 1; i <= max_level; i++)
2150 wm[i] = 0;
2151 break;
2152 }
2153 }
2154
2155 /*
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02002156 * WaWmMemoryReadLatency:skl,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002157 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002158 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002159 * to add 2us to the various latency levels we retrieve from the
2160 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002161 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002162 if (wm[0] == 0) {
2163 wm[0] += 2;
2164 for (level = 1; level <= max_level; level++) {
2165 if (wm[level] == 0)
2166 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002167 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002168 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002169 }
2170
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002171 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002172 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2173
2174 wm[0] = (sskpd >> 56) & 0xFF;
2175 if (wm[0] == 0)
2176 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002177 wm[1] = (sskpd >> 4) & 0xFF;
2178 wm[2] = (sskpd >> 12) & 0xFF;
2179 wm[3] = (sskpd >> 20) & 0x1FF;
2180 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002181 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002182 uint32_t sskpd = I915_READ(MCH_SSKPD);
2183
2184 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2185 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2186 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2187 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002188 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002189 uint32_t mltr = I915_READ(MLTR_ILK);
2190
2191 /* ILK primary LP0 latency is 700 ns */
2192 wm[0] = 7;
2193 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2194 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002195 }
2196}
2197
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002198static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2199 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002200{
2201 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002202 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002203 wm[0] = 13;
2204}
2205
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002206static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2207 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002208{
2209 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002210 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002211 wm[0] = 13;
2212
2213 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002214 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002215 wm[3] *= 2;
2216}
2217
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002218int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002219{
2220 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002221 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002222 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002223 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002224 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002225 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002226 return 3;
2227 else
2228 return 2;
2229}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002230
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002231static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002232 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002233 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002234{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002235 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002236
2237 for (level = 0; level <= max_level; level++) {
2238 unsigned int latency = wm[level];
2239
2240 if (latency == 0) {
2241 DRM_ERROR("%s WM%d latency not provided\n",
2242 name, level);
2243 continue;
2244 }
2245
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002246 /*
2247 * - latencies are in us on gen9.
2248 * - before then, WM1+ latency values are in 0.5us units
2249 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002250 if (IS_GEN9(dev_priv))
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002251 latency *= 10;
2252 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002253 latency *= 5;
2254
2255 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2256 name, level, wm[level],
2257 latency / 10, latency % 10);
2258 }
2259}
2260
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002261static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2262 uint16_t wm[5], uint16_t min)
2263{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002264 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002265
2266 if (wm[0] >= min)
2267 return false;
2268
2269 wm[0] = max(wm[0], min);
2270 for (level = 1; level <= max_level; level++)
2271 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2272
2273 return true;
2274}
2275
Ville Syrjäläbb726512016-10-31 22:37:24 +02002276static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002277{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002278 bool changed;
2279
2280 /*
2281 * The BIOS provided WM memory latency values are often
2282 * inadequate for high resolution displays. Adjust them.
2283 */
2284 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2285 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2286 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2287
2288 if (!changed)
2289 return;
2290
2291 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002292 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2293 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2294 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002295}
2296
Ville Syrjäläbb726512016-10-31 22:37:24 +02002297static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002298{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002299 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002300
2301 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2302 sizeof(dev_priv->wm.pri_latency));
2303 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2304 sizeof(dev_priv->wm.pri_latency));
2305
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002306 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002307 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002308
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002309 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2310 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2311 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002312
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002313 if (IS_GEN6(dev_priv))
Ville Syrjäläbb726512016-10-31 22:37:24 +02002314 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002315}
2316
Ville Syrjäläbb726512016-10-31 22:37:24 +02002317static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002318{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002319 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002320 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002321}
2322
Matt Ropered4a6a72016-02-23 17:20:13 -08002323static bool ilk_validate_pipe_wm(struct drm_device *dev,
2324 struct intel_pipe_wm *pipe_wm)
2325{
2326 /* LP0 watermark maximums depend on this pipe alone */
2327 const struct intel_wm_config config = {
2328 .num_pipes_active = 1,
2329 .sprites_enabled = pipe_wm->sprites_enabled,
2330 .sprites_scaled = pipe_wm->sprites_scaled,
2331 };
2332 struct ilk_wm_maximums max;
2333
2334 /* LP0 watermarks always use 1/2 DDB partitioning */
2335 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2336
2337 /* At least LP0 must be valid */
2338 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
2339 DRM_DEBUG_KMS("LP0 watermark invalid\n");
2340 return false;
2341 }
2342
2343 return true;
2344}
2345
Matt Roper261a27d2015-10-08 15:28:25 -07002346/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002347static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07002348{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002349 struct drm_atomic_state *state = cstate->base.state;
2350 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07002351 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002352 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002353 const struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper43d59ed2015-09-24 15:53:07 -07002354 struct intel_plane *intel_plane;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002355 struct intel_plane_state *pristate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002356 struct intel_plane_state *sprstate = NULL;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002357 struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002358 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02002359 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002360
Matt Ropere8f1f022016-05-12 07:05:55 -07002361 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002362
Matt Roper43d59ed2015-09-24 15:53:07 -07002363 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002364 struct intel_plane_state *ps;
2365
2366 ps = intel_atomic_get_existing_plane_state(state,
2367 intel_plane);
2368 if (!ps)
2369 continue;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002370
2371 if (intel_plane->base.type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002372 pristate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002373 else if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002374 sprstate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002375 else if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002376 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07002377 }
2378
Matt Ropered4a6a72016-02-23 17:20:13 -08002379 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002380 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002381 pipe_wm->sprites_enabled = sprstate->base.visible;
2382 pipe_wm->sprites_scaled = sprstate->base.visible &&
2383 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
2384 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002385 }
2386
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002387 usable_level = max_level;
2388
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002389 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002390 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002391 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002392
2393 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08002394 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002395 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002396
Matt Roper86c8bbb2015-09-24 15:53:16 -07002397 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002398 pristate, sprstate, curstate, &pipe_wm->raw_wm[0]);
2399
2400 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
2401 pipe_wm->wm[0] = pipe_wm->raw_wm[0];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002402
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002403 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002404 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002405
Matt Ropered4a6a72016-02-23 17:20:13 -08002406 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01002407 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002408
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002409 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002410
2411 for (level = 1; level <= max_level; level++) {
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002412 struct intel_wm_level *wm = &pipe_wm->raw_wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002413
Matt Roper86c8bbb2015-09-24 15:53:16 -07002414 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002415 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002416
2417 /*
2418 * Disable any watermark level that exceeds the
2419 * register maximums since such watermarks are
2420 * always invalid.
2421 */
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002422 if (level > usable_level)
2423 continue;
2424
2425 if (ilk_validate_wm_level(level, &max, wm))
2426 pipe_wm->wm[level] = *wm;
2427 else
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002428 usable_level = level;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002429 }
2430
Matt Roper86c8bbb2015-09-24 15:53:16 -07002431 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002432}
2433
2434/*
Matt Ropered4a6a72016-02-23 17:20:13 -08002435 * Build a set of 'intermediate' watermark values that satisfy both the old
2436 * state and the new state. These can be programmed to the hardware
2437 * immediately.
2438 */
2439static int ilk_compute_intermediate_wm(struct drm_device *dev,
2440 struct intel_crtc *intel_crtc,
2441 struct intel_crtc_state *newstate)
2442{
Matt Ropere8f1f022016-05-12 07:05:55 -07002443 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08002444 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002445 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08002446
2447 /*
2448 * Start with the final, target watermarks, then combine with the
2449 * currently active watermarks to get values that are safe both before
2450 * and after the vblank.
2451 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002452 *a = newstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08002453 a->pipe_enabled |= b->pipe_enabled;
2454 a->sprites_enabled |= b->sprites_enabled;
2455 a->sprites_scaled |= b->sprites_scaled;
2456
2457 for (level = 0; level <= max_level; level++) {
2458 struct intel_wm_level *a_wm = &a->wm[level];
2459 const struct intel_wm_level *b_wm = &b->wm[level];
2460
2461 a_wm->enable &= b_wm->enable;
2462 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
2463 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
2464 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
2465 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
2466 }
2467
2468 /*
2469 * We need to make sure that these merged watermark values are
2470 * actually a valid configuration themselves. If they're not,
2471 * there's no safe way to transition from the old state to
2472 * the new state, so we need to fail the atomic transaction.
2473 */
2474 if (!ilk_validate_pipe_wm(dev, a))
2475 return -EINVAL;
2476
2477 /*
2478 * If our intermediate WM are identical to the final WM, then we can
2479 * omit the post-vblank programming; only update if it's different.
2480 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002481 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) == 0)
Matt Ropered4a6a72016-02-23 17:20:13 -08002482 newstate->wm.need_postvbl_update = false;
2483
2484 return 0;
2485}
2486
2487/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002488 * Merge the watermarks from all active pipes for a specific level.
2489 */
2490static void ilk_merge_wm_level(struct drm_device *dev,
2491 int level,
2492 struct intel_wm_level *ret_wm)
2493{
2494 const struct intel_crtc *intel_crtc;
2495
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002496 ret_wm->enable = true;
2497
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002498 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08002499 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002500 const struct intel_wm_level *wm = &active->wm[level];
2501
2502 if (!active->pipe_enabled)
2503 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002504
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002505 /*
2506 * The watermark values may have been used in the past,
2507 * so we must maintain them in the registers for some
2508 * time even if the level is now disabled.
2509 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002510 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002511 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002512
2513 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2514 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2515 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2516 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2517 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002518}
2519
2520/*
2521 * Merge all low power watermarks for all active pipes.
2522 */
2523static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002524 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002525 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002526 struct intel_pipe_wm *merged)
2527{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002528 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002529 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002530 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002531
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002532 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002533 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002534 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03002535 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002536
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002537 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002538 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002539
2540 /* merge each WM1+ level */
2541 for (level = 1; level <= max_level; level++) {
2542 struct intel_wm_level *wm = &merged->wm[level];
2543
2544 ilk_merge_wm_level(dev, level, wm);
2545
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002546 if (level > last_enabled_level)
2547 wm->enable = false;
2548 else if (!ilk_validate_wm_level(level, max, wm))
2549 /* make sure all following levels get disabled */
2550 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002551
2552 /*
2553 * The spec says it is preferred to disable
2554 * FBC WMs instead of disabling a WM level.
2555 */
2556 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002557 if (wm->enable)
2558 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002559 wm->fbc_val = 0;
2560 }
2561 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002562
2563 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2564 /*
2565 * FIXME this is racy. FBC might get enabled later.
2566 * What we should check here is whether FBC can be
2567 * enabled sometime later.
2568 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002569 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03002570 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002571 for (level = 2; level <= max_level; level++) {
2572 struct intel_wm_level *wm = &merged->wm[level];
2573
2574 wm->enable = false;
2575 }
2576 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002577}
2578
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002579static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2580{
2581 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2582 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2583}
2584
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002585/* The value we need to program into the WM_LPx latency field */
2586static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2587{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002588 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002589
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002590 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002591 return 2 * level;
2592 else
2593 return dev_priv->wm.pri_latency[level];
2594}
2595
Imre Deak820c1982013-12-17 14:46:36 +02002596static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002597 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002598 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002599 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002600{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002601 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002602 struct intel_crtc *intel_crtc;
2603 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002604
Ville Syrjälä0362c782013-10-09 19:17:57 +03002605 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002606 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002607
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002608 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002609 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002610 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002611
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002612 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002613
Ville Syrjälä0362c782013-10-09 19:17:57 +03002614 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002615
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002616 /*
2617 * Maintain the watermark values even if the level is
2618 * disabled. Doing otherwise could cause underruns.
2619 */
2620 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002621 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002622 (r->pri_val << WM1_LP_SR_SHIFT) |
2623 r->cur_val;
2624
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002625 if (r->enable)
2626 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2627
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002628 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002629 results->wm_lp[wm_lp - 1] |=
2630 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2631 else
2632 results->wm_lp[wm_lp - 1] |=
2633 r->fbc_val << WM1_LP_FBC_SHIFT;
2634
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002635 /*
2636 * Always set WM1S_LP_EN when spr_val != 0, even if the
2637 * level is disabled. Doing otherwise could cause underruns.
2638 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002639 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002640 WARN_ON(wm_lp != 1);
2641 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2642 } else
2643 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002644 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002645
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002646 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002647 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002648 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08002649 const struct intel_wm_level *r =
2650 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002651
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002652 if (WARN_ON(!r->enable))
2653 continue;
2654
Matt Ropered4a6a72016-02-23 17:20:13 -08002655 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002656
2657 results->wm_pipe[pipe] =
2658 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2659 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2660 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002661 }
2662}
2663
Paulo Zanoni861f3382013-05-31 10:19:21 -03002664/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2665 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002666static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002667 struct intel_pipe_wm *r1,
2668 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002669{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002670 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002671 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002672
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002673 for (level = 1; level <= max_level; level++) {
2674 if (r1->wm[level].enable)
2675 level1 = level;
2676 if (r2->wm[level].enable)
2677 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002678 }
2679
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002680 if (level1 == level2) {
2681 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002682 return r2;
2683 else
2684 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002685 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002686 return r1;
2687 } else {
2688 return r2;
2689 }
2690}
2691
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002692/* dirty bits used to track which watermarks need changes */
2693#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2694#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2695#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2696#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2697#define WM_DIRTY_FBC (1 << 24)
2698#define WM_DIRTY_DDB (1 << 25)
2699
Damien Lespiau055e3932014-08-18 13:49:10 +01002700static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002701 const struct ilk_wm_values *old,
2702 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002703{
2704 unsigned int dirty = 0;
2705 enum pipe pipe;
2706 int wm_lp;
2707
Damien Lespiau055e3932014-08-18 13:49:10 +01002708 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002709 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2710 dirty |= WM_DIRTY_LINETIME(pipe);
2711 /* Must disable LP1+ watermarks too */
2712 dirty |= WM_DIRTY_LP_ALL;
2713 }
2714
2715 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2716 dirty |= WM_DIRTY_PIPE(pipe);
2717 /* Must disable LP1+ watermarks too */
2718 dirty |= WM_DIRTY_LP_ALL;
2719 }
2720 }
2721
2722 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2723 dirty |= WM_DIRTY_FBC;
2724 /* Must disable LP1+ watermarks too */
2725 dirty |= WM_DIRTY_LP_ALL;
2726 }
2727
2728 if (old->partitioning != new->partitioning) {
2729 dirty |= WM_DIRTY_DDB;
2730 /* Must disable LP1+ watermarks too */
2731 dirty |= WM_DIRTY_LP_ALL;
2732 }
2733
2734 /* LP1+ watermarks already deemed dirty, no need to continue */
2735 if (dirty & WM_DIRTY_LP_ALL)
2736 return dirty;
2737
2738 /* Find the lowest numbered LP1+ watermark in need of an update... */
2739 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2740 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2741 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2742 break;
2743 }
2744
2745 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2746 for (; wm_lp <= 3; wm_lp++)
2747 dirty |= WM_DIRTY_LP(wm_lp);
2748
2749 return dirty;
2750}
2751
Ville Syrjälä8553c182013-12-05 15:51:39 +02002752static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2753 unsigned int dirty)
2754{
Imre Deak820c1982013-12-17 14:46:36 +02002755 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002756 bool changed = false;
2757
2758 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2759 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2760 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2761 changed = true;
2762 }
2763 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2764 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2765 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2766 changed = true;
2767 }
2768 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2769 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2770 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2771 changed = true;
2772 }
2773
2774 /*
2775 * Don't touch WM1S_LP_EN here.
2776 * Doing so could cause underruns.
2777 */
2778
2779 return changed;
2780}
2781
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002782/*
2783 * The spec says we shouldn't write when we don't need, because every write
2784 * causes WMs to be re-evaluated, expending some power.
2785 */
Imre Deak820c1982013-12-17 14:46:36 +02002786static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2787 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002788{
Imre Deak820c1982013-12-17 14:46:36 +02002789 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002790 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002791 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002792
Damien Lespiau055e3932014-08-18 13:49:10 +01002793 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002794 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002795 return;
2796
Ville Syrjälä8553c182013-12-05 15:51:39 +02002797 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002798
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002799 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002800 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002801 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002802 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002803 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002804 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2805
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002806 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002807 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002808 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002809 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002810 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002811 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2812
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002813 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002814 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002815 val = I915_READ(WM_MISC);
2816 if (results->partitioning == INTEL_DDB_PART_1_2)
2817 val &= ~WM_MISC_DATA_PARTITION_5_6;
2818 else
2819 val |= WM_MISC_DATA_PARTITION_5_6;
2820 I915_WRITE(WM_MISC, val);
2821 } else {
2822 val = I915_READ(DISP_ARB_CTL2);
2823 if (results->partitioning == INTEL_DDB_PART_1_2)
2824 val &= ~DISP_DATA_PARTITION_5_6;
2825 else
2826 val |= DISP_DATA_PARTITION_5_6;
2827 I915_WRITE(DISP_ARB_CTL2, val);
2828 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002829 }
2830
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002831 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002832 val = I915_READ(DISP_ARB_CTL);
2833 if (results->enable_fbc_wm)
2834 val &= ~DISP_FBC_WM_DIS;
2835 else
2836 val |= DISP_FBC_WM_DIS;
2837 I915_WRITE(DISP_ARB_CTL, val);
2838 }
2839
Imre Deak954911e2013-12-17 14:46:34 +02002840 if (dirty & WM_DIRTY_LP(1) &&
2841 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2842 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2843
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002844 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002845 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2846 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2847 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2848 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2849 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002850
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002851 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002852 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002853 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002854 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002855 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002856 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002857
2858 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002859}
2860
Matt Ropered4a6a72016-02-23 17:20:13 -08002861bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02002862{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002863 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02002864
2865 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2866}
2867
Lyude656d1b82016-08-17 15:55:54 -04002868#define SKL_SAGV_BLOCK_TIME 30 /* µs */
Damien Lespiaub9cec072014-11-04 17:06:43 +00002869
Matt Roper024c9042015-09-24 15:53:11 -07002870/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002871 * FIXME: We still don't have the proper code detect if we need to apply the WA,
2872 * so assume we'll always need it in order to avoid underruns.
2873 */
2874static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
2875{
2876 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
2877
Rodrigo Vivib976dc52017-01-23 10:32:37 -08002878 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002879 return true;
2880
2881 return false;
2882}
2883
Paulo Zanoni56feca92016-09-22 18:00:28 -03002884static bool
2885intel_has_sagv(struct drm_i915_private *dev_priv)
2886{
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002887 if (IS_KABYLAKE(dev_priv))
2888 return true;
2889
2890 if (IS_SKYLAKE(dev_priv) &&
2891 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
2892 return true;
2893
2894 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03002895}
2896
Lyude656d1b82016-08-17 15:55:54 -04002897/*
2898 * SAGV dynamically adjusts the system agent voltage and clock frequencies
2899 * depending on power and performance requirements. The display engine access
2900 * to system memory is blocked during the adjustment time. Because of the
2901 * blocking time, having this enabled can cause full system hangs and/or pipe
2902 * underruns if we don't meet all of the following requirements:
2903 *
2904 * - <= 1 pipe enabled
2905 * - All planes can enable watermarks for latencies >= SAGV engine block time
2906 * - We're not using an interlaced display configuration
2907 */
2908int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002909intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002910{
2911 int ret;
2912
Paulo Zanoni56feca92016-09-22 18:00:28 -03002913 if (!intel_has_sagv(dev_priv))
2914 return 0;
2915
2916 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04002917 return 0;
2918
2919 DRM_DEBUG_KMS("Enabling the SAGV\n");
2920 mutex_lock(&dev_priv->rps.hw_lock);
2921
2922 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2923 GEN9_SAGV_ENABLE);
2924
2925 /* We don't need to wait for the SAGV when enabling */
2926 mutex_unlock(&dev_priv->rps.hw_lock);
2927
2928 /*
2929 * Some skl systems, pre-release machines in particular,
2930 * don't actually have an SAGV.
2931 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002932 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04002933 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002934 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04002935 return 0;
2936 } else if (ret < 0) {
2937 DRM_ERROR("Failed to enable the SAGV\n");
2938 return ret;
2939 }
2940
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002941 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04002942 return 0;
2943}
2944
Lyude656d1b82016-08-17 15:55:54 -04002945int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002946intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002947{
Imre Deakb3b8e992016-12-05 18:27:38 +02002948 int ret;
Lyude656d1b82016-08-17 15:55:54 -04002949
Paulo Zanoni56feca92016-09-22 18:00:28 -03002950 if (!intel_has_sagv(dev_priv))
2951 return 0;
2952
2953 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04002954 return 0;
2955
2956 DRM_DEBUG_KMS("Disabling the SAGV\n");
2957 mutex_lock(&dev_priv->rps.hw_lock);
2958
2959 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02002960 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2961 GEN9_SAGV_DISABLE,
2962 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
2963 1);
Lyude656d1b82016-08-17 15:55:54 -04002964 mutex_unlock(&dev_priv->rps.hw_lock);
2965
Lyude656d1b82016-08-17 15:55:54 -04002966 /*
2967 * Some skl systems, pre-release machines in particular,
2968 * don't actually have an SAGV.
2969 */
Imre Deakb3b8e992016-12-05 18:27:38 +02002970 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04002971 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002972 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04002973 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02002974 } else if (ret < 0) {
2975 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
2976 return ret;
Lyude656d1b82016-08-17 15:55:54 -04002977 }
2978
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002979 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04002980 return 0;
2981}
2982
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002983bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04002984{
2985 struct drm_device *dev = state->dev;
2986 struct drm_i915_private *dev_priv = to_i915(dev);
2987 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002988 struct intel_crtc *crtc;
2989 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02002990 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04002991 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02002992 int level, latency;
Lyude656d1b82016-08-17 15:55:54 -04002993
Paulo Zanoni56feca92016-09-22 18:00:28 -03002994 if (!intel_has_sagv(dev_priv))
2995 return false;
2996
Lyude656d1b82016-08-17 15:55:54 -04002997 /*
2998 * SKL workaround: bspec recommends we disable the SAGV when we have
2999 * more then one pipe enabled
3000 *
3001 * If there are no active CRTCs, no additional checks need be performed
3002 */
3003 if (hweight32(intel_state->active_crtcs) == 0)
3004 return true;
3005 else if (hweight32(intel_state->active_crtcs) > 1)
3006 return false;
3007
3008 /* Since we're now guaranteed to only have one active CRTC... */
3009 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003010 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003011 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003012
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003013 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003014 return false;
3015
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003016 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003017 struct skl_plane_wm *wm =
3018 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003019
Lyude656d1b82016-08-17 15:55:54 -04003020 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003021 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003022 continue;
3023
3024 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003025 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003026 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003027 { }
3028
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003029 latency = dev_priv->wm.skl_latency[level];
3030
3031 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003032 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003033 I915_FORMAT_MOD_X_TILED)
3034 latency += 15;
3035
Lyude656d1b82016-08-17 15:55:54 -04003036 /*
3037 * If any of the planes on this pipe don't enable wm levels
3038 * that incur memory latencies higher then 30µs we can't enable
3039 * the SAGV
3040 */
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003041 if (latency < SKL_SAGV_BLOCK_TIME)
Lyude656d1b82016-08-17 15:55:54 -04003042 return false;
3043 }
3044
3045 return true;
3046}
3047
Damien Lespiaub9cec072014-11-04 17:06:43 +00003048static void
3049skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003050 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003051 struct skl_ddb_entry *alloc, /* out */
3052 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003053{
Matt Roperc107acf2016-05-12 07:06:01 -07003054 struct drm_atomic_state *state = cstate->base.state;
3055 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3056 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003057 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003058 unsigned int pipe_size, ddb_size;
3059 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003060
Matt Ropera6d3460e2016-05-12 07:06:04 -07003061 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003062 alloc->start = 0;
3063 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003064 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003065 return;
3066 }
3067
Matt Ropera6d3460e2016-05-12 07:06:04 -07003068 if (intel_state->active_pipe_changes)
3069 *num_active = hweight32(intel_state->active_crtcs);
3070 else
3071 *num_active = hweight32(dev_priv->active_crtcs);
3072
Deepak M6f3fff62016-09-15 15:01:10 +05303073 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3074 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003075
3076 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3077
Matt Roperc107acf2016-05-12 07:06:01 -07003078 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003079 * If the state doesn't change the active CRTC's, then there's
3080 * no need to recalculate; the existing pipe allocation limits
3081 * should remain unchanged. Note that we're safe from racing
3082 * commits since any racing commit that changes the active CRTC
3083 * list would need to grab _all_ crtc locks, including the one
3084 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003085 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003086 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003087 /*
3088 * alloc may be cleared by clear_intel_crtc_state,
3089 * copy from old state to be sure
3090 */
3091 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003092 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003093 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003094
3095 nth_active_pipe = hweight32(intel_state->active_crtcs &
3096 (drm_crtc_mask(for_crtc) - 1));
3097 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3098 alloc->start = nth_active_pipe * ddb_size / *num_active;
3099 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003100}
3101
Matt Roperc107acf2016-05-12 07:06:01 -07003102static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003103{
Matt Roperc107acf2016-05-12 07:06:01 -07003104 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003105 return 32;
3106
3107 return 8;
3108}
3109
Damien Lespiaua269c582014-11-04 17:06:49 +00003110static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3111{
3112 entry->start = reg & 0x3ff;
3113 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003114 if (entry->end)
3115 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003116}
3117
Damien Lespiau08db6652014-11-04 17:06:52 +00003118void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3119 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003120{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003121 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003122
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003123 memset(ddb, 0, sizeof(*ddb));
3124
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003125 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003126 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003127 enum plane_id plane_id;
3128 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003129
3130 power_domain = POWER_DOMAIN_PIPE(pipe);
3131 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003132 continue;
3133
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003134 for_each_plane_id_on_crtc(crtc, plane_id) {
3135 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003136
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003137 if (plane_id != PLANE_CURSOR)
3138 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3139 else
3140 val = I915_READ(CUR_BUF_CFG(pipe));
3141
3142 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3143 }
Imre Deak4d800032016-02-17 16:31:29 +02003144
3145 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003146 }
3147}
3148
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003149/*
3150 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3151 * The bspec defines downscale amount as:
3152 *
3153 * """
3154 * Horizontal down scale amount = maximum[1, Horizontal source size /
3155 * Horizontal destination size]
3156 * Vertical down scale amount = maximum[1, Vertical source size /
3157 * Vertical destination size]
3158 * Total down scale amount = Horizontal down scale amount *
3159 * Vertical down scale amount
3160 * """
3161 *
3162 * Return value is provided in 16.16 fixed point form to retain fractional part.
3163 * Caller should take care of dividing & rounding off the value.
3164 */
3165static uint32_t
3166skl_plane_downscale_amount(const struct intel_plane_state *pstate)
3167{
3168 uint32_t downscale_h, downscale_w;
3169 uint32_t src_w, src_h, dst_w, dst_h;
3170
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003171 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003172 return DRM_PLANE_HELPER_NO_SCALING;
3173
3174 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003175 src_w = drm_rect_width(&pstate->base.src);
3176 src_h = drm_rect_height(&pstate->base.src);
3177 dst_w = drm_rect_width(&pstate->base.dst);
3178 dst_h = drm_rect_height(&pstate->base.dst);
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003179 if (drm_rotation_90_or_270(pstate->base.rotation))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003180 swap(dst_w, dst_h);
3181
3182 downscale_h = max(src_h / dst_h, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3183 downscale_w = max(src_w / dst_w, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3184
3185 /* Provide result in 16.16 fixed point */
3186 return (uint64_t)downscale_w * downscale_h >> 16;
3187}
3188
Damien Lespiaub9cec072014-11-04 17:06:43 +00003189static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003190skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3191 const struct drm_plane_state *pstate,
3192 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003193{
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003194 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003195 uint32_t down_scale_amount, data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003196 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003197 struct drm_framebuffer *fb;
3198 u32 format;
Matt Ropera1de91e2016-05-12 07:05:57 -07003199
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003200 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07003201 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003202
3203 fb = pstate->fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003204 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02003205
Matt Ropera1de91e2016-05-12 07:05:57 -07003206 if (pstate->plane->type == DRM_PLANE_TYPE_CURSOR)
3207 return 0;
3208 if (y && format != DRM_FORMAT_NV12)
3209 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003210
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003211 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3212 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003213
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003214 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003215 swap(width, height);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003216
3217 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07003218 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003219 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003220 data_rate = width * height *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003221 fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003222 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003223 data_rate = (width / 2) * (height / 2) *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003224 fb->format->cpp[1];
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003225 } else {
3226 /* for packed formats */
Ville Syrjälä353c8592016-12-14 23:30:57 +02003227 data_rate = width * height * fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003228 }
3229
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003230 down_scale_amount = skl_plane_downscale_amount(intel_pstate);
3231
3232 return (uint64_t)data_rate * down_scale_amount >> 16;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003233}
3234
3235/*
3236 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
3237 * a 8192x4096@32bpp framebuffer:
3238 * 3 * 4096 * 8192 * 4 < 2^32
3239 */
3240static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003241skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
3242 unsigned *plane_data_rate,
3243 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003244{
Matt Roper9c74d822016-05-12 07:05:58 -07003245 struct drm_crtc_state *cstate = &intel_cstate->base;
3246 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003247 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003248 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003249 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003250
3251 if (WARN_ON(!state))
3252 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003253
Matt Ropera1de91e2016-05-12 07:05:57 -07003254 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003255 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003256 enum plane_id plane_id = to_intel_plane(plane)->id;
3257 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07003258
Matt Ropera6d3460e2016-05-12 07:06:04 -07003259 /* packed/uv */
3260 rate = skl_plane_relative_data_rate(intel_cstate,
3261 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003262 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003263
3264 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07003265
Matt Ropera6d3460e2016-05-12 07:06:04 -07003266 /* y-plane */
3267 rate = skl_plane_relative_data_rate(intel_cstate,
3268 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003269 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07003270
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003271 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003272 }
3273
3274 return total_data_rate;
3275}
3276
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003277static uint16_t
3278skl_ddb_min_alloc(const struct drm_plane_state *pstate,
3279 const int y)
3280{
3281 struct drm_framebuffer *fb = pstate->fb;
3282 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
3283 uint32_t src_w, src_h;
3284 uint32_t min_scanlines = 8;
3285 uint8_t plane_bpp;
3286
3287 if (WARN_ON(!fb))
3288 return 0;
3289
3290 /* For packed formats, no y-plane, return 0 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003291 if (y && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003292 return 0;
3293
3294 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003295 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
3296 fb->modifier != I915_FORMAT_MOD_Yf_TILED)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003297 return 8;
3298
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003299 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
3300 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003301
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003302 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003303 swap(src_w, src_h);
3304
3305 /* Halve UV plane width and height for NV12 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003306 if (fb->format->format == DRM_FORMAT_NV12 && !y) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003307 src_w /= 2;
3308 src_h /= 2;
3309 }
3310
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003311 if (fb->format->format == DRM_FORMAT_NV12 && !y)
Ville Syrjälä353c8592016-12-14 23:30:57 +02003312 plane_bpp = fb->format->cpp[1];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003313 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02003314 plane_bpp = fb->format->cpp[0];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003315
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003316 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003317 switch (plane_bpp) {
3318 case 1:
3319 min_scanlines = 32;
3320 break;
3321 case 2:
3322 min_scanlines = 16;
3323 break;
3324 case 4:
3325 min_scanlines = 8;
3326 break;
3327 case 8:
3328 min_scanlines = 4;
3329 break;
3330 default:
3331 WARN(1, "Unsupported pixel depth %u for rotation",
3332 plane_bpp);
3333 min_scanlines = 32;
3334 }
3335 }
3336
3337 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
3338}
3339
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003340static void
3341skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
3342 uint16_t *minimum, uint16_t *y_minimum)
3343{
3344 const struct drm_plane_state *pstate;
3345 struct drm_plane *plane;
3346
3347 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003348 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003349
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003350 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003351 continue;
3352
3353 if (!pstate->visible)
3354 continue;
3355
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003356 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
3357 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003358 }
3359
3360 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
3361}
3362
Matt Roperc107acf2016-05-12 07:06:01 -07003363static int
Matt Roper024c9042015-09-24 15:53:11 -07003364skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00003365 struct skl_ddb_allocation *ddb /* out */)
3366{
Matt Roperc107acf2016-05-12 07:06:01 -07003367 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003368 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003369 struct drm_device *dev = crtc->dev;
3370 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3371 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04003372 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003373 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02003374 uint16_t minimum[I915_MAX_PLANES] = {};
3375 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003376 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003377 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07003378 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003379 unsigned plane_data_rate[I915_MAX_PLANES] = {};
3380 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003381
Paulo Zanoni5a920b82016-10-04 14:37:32 -03003382 /* Clear the partitioning for disabled planes. */
3383 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
3384 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
3385
Matt Ropera6d3460e2016-05-12 07:06:04 -07003386 if (WARN_ON(!state))
3387 return 0;
3388
Matt Roperc107acf2016-05-12 07:06:01 -07003389 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04003390 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07003391 return 0;
3392 }
3393
Matt Ropera6d3460e2016-05-12 07:06:04 -07003394 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003395 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003396 if (alloc_size == 0) {
3397 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roperc107acf2016-05-12 07:06:01 -07003398 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003399 }
3400
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003401 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003402
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003403 /*
3404 * 1. Allocate the mininum required blocks for each active plane
3405 * and allocate the cursor, it doesn't require extra allocation
3406 * proportional to the data rate.
3407 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00003408
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003409 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
3410 alloc_size -= minimum[plane_id];
3411 alloc_size -= y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003412 }
3413
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003414 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
3415 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
3416
Damien Lespiaub9cec072014-11-04 17:06:43 +00003417 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003418 * 2. Distribute the remaining space in proportion to the amount of
3419 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003420 *
3421 * FIXME: we may not allocate every single block here.
3422 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003423 total_data_rate = skl_get_total_relative_data_rate(cstate,
3424 plane_data_rate,
3425 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07003426 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07003427 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003428
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003429 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003430 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003431 unsigned int data_rate, y_data_rate;
3432 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003433
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003434 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003435 continue;
3436
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003437 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003438
3439 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003440 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003441 * promote the expression to 64 bits to avoid overflowing, the
3442 * result is < available as data_rate / total_data_rate < 1
3443 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003444 plane_blocks = minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003445 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3446 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003447
Matt Roperc107acf2016-05-12 07:06:01 -07003448 /* Leave disabled planes at (0,0) */
3449 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003450 ddb->plane[pipe][plane_id].start = start;
3451 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003452 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00003453
3454 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003455
3456 /*
3457 * allocation for y_plane part of planar format:
3458 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003459 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003460
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003461 y_plane_blocks = y_minimum[plane_id];
Matt Ropera1de91e2016-05-12 07:05:57 -07003462 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3463 total_data_rate);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003464
Matt Roperc107acf2016-05-12 07:06:01 -07003465 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003466 ddb->y_plane[pipe][plane_id].start = start;
3467 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003468 }
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003469
Matt Ropera1de91e2016-05-12 07:05:57 -07003470 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003471 }
3472
Matt Roperc107acf2016-05-12 07:06:01 -07003473 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003474}
3475
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003476/*
3477 * 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 +02003478 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003479 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3480 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3481*/
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303482static uint_fixed_16_16_t skl_wm_method1(uint32_t pixel_rate, uint8_t cpp,
3483 uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003484{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303485 uint32_t wm_intermediate_val;
3486 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003487
3488 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303489 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003490
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303491 wm_intermediate_val = latency * pixel_rate * cpp;
3492 ret = fixed_16_16_div_round_up_u64(wm_intermediate_val, 1000 * 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003493 return ret;
3494}
3495
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303496static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
3497 uint32_t pipe_htotal,
3498 uint32_t latency,
3499 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003500{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003501 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303502 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003503
3504 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303505 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003506
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003507 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303508 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
3509 pipe_htotal * 1000);
3510 ret = mul_u32_fixed_16_16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003511 return ret;
3512}
3513
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003514static uint32_t skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
3515 struct intel_plane_state *pstate)
3516{
3517 uint64_t adjusted_pixel_rate;
3518 uint64_t downscale_amount;
3519 uint64_t pixel_rate;
3520
3521 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003522 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003523 return 0;
3524
3525 /*
3526 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
3527 * with additional adjustments for plane-specific scaling.
3528 */
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02003529 adjusted_pixel_rate = cstate->pixel_rate;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003530 downscale_amount = skl_plane_downscale_amount(pstate);
3531
3532 pixel_rate = adjusted_pixel_rate * downscale_amount >> 16;
3533 WARN_ON(pixel_rate != clamp_t(uint32_t, pixel_rate, 0, ~0));
3534
3535 return pixel_rate;
3536}
3537
Matt Roper55994c22016-05-12 07:06:08 -07003538static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3539 struct intel_crtc_state *cstate,
3540 struct intel_plane_state *intel_pstate,
3541 uint16_t ddb_allocation,
3542 int level,
3543 uint16_t *out_blocks, /* out */
3544 uint8_t *out_lines, /* out */
3545 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003546{
Matt Roper33815fa2016-05-12 07:06:05 -07003547 struct drm_plane_state *pstate = &intel_pstate->base;
3548 struct drm_framebuffer *fb = pstate->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003549 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303550 uint_fixed_16_16_t method1, method2;
3551 uint_fixed_16_16_t plane_blocks_per_line;
3552 uint_fixed_16_16_t selected_result;
3553 uint32_t interm_pbpl;
3554 uint32_t plane_bytes_per_line;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003555 uint32_t res_blocks, res_lines;
Ville Syrjäläac484962016-01-20 21:05:26 +02003556 uint8_t cpp;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003557 uint32_t width = 0, height = 0;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003558 uint32_t plane_pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303559 uint_fixed_16_16_t y_tile_minimum;
3560 uint32_t y_min_scanlines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003561 struct intel_atomic_state *state =
3562 to_intel_atomic_state(cstate->base.state);
3563 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303564 bool y_tiled, x_tiled;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003565
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003566 if (latency == 0 || !cstate->base.active || !intel_pstate->base.visible) {
Matt Roper55994c22016-05-12 07:06:08 -07003567 *enabled = false;
3568 return 0;
3569 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003570
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303571 y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
3572 fb->modifier == I915_FORMAT_MOD_Yf_TILED;
3573 x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
3574
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05303575 /* Display WA #1141: kbl. */
3576 if (IS_KABYLAKE(dev_priv) && dev_priv->ipc_enabled)
3577 latency += 4;
3578
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303579 if (apply_memory_bw_wa && x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003580 latency += 15;
3581
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003582 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3583 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003584
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003585 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003586 swap(width, height);
3587
Ville Syrjälä353c8592016-12-14 23:30:57 +02003588 cpp = fb->format->cpp[0];
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003589 plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate, intel_pstate);
3590
Dave Airlie61d0a042016-10-25 16:35:20 +10003591 if (drm_rotation_90_or_270(pstate->rotation)) {
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003592 int cpp = (fb->format->format == DRM_FORMAT_NV12) ?
Ville Syrjälä353c8592016-12-14 23:30:57 +02003593 fb->format->cpp[1] :
3594 fb->format->cpp[0];
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003595
3596 switch (cpp) {
3597 case 1:
3598 y_min_scanlines = 16;
3599 break;
3600 case 2:
3601 y_min_scanlines = 8;
3602 break;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003603 case 4:
3604 y_min_scanlines = 4;
3605 break;
Paulo Zanoni86a462b2016-09-22 18:00:35 -03003606 default:
3607 MISSING_CASE(cpp);
3608 return -EINVAL;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003609 }
3610 } else {
3611 y_min_scanlines = 4;
3612 }
3613
Paulo Zanoni2ef32de2016-11-08 18:22:11 -02003614 if (apply_memory_bw_wa)
3615 y_min_scanlines *= 2;
3616
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003617 plane_bytes_per_line = width * cpp;
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303618 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303619 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line *
3620 y_min_scanlines, 512);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003621 plane_blocks_per_line =
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303622 fixed_16_16_div_round_up(interm_pbpl, y_min_scanlines);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303623 } else if (x_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303624 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512);
3625 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303626 } else {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303627 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512) + 1;
3628 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003629 }
3630
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003631 method1 = skl_wm_method1(plane_pixel_rate, cpp, latency);
3632 method2 = skl_wm_method2(plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07003633 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003634 latency,
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003635 plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003636
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303637 y_tile_minimum = mul_u32_fixed_16_16(y_min_scanlines,
3638 plane_blocks_per_line);
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003639
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303640 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303641 selected_result = max_fixed_16_16(method2, y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003642 } else {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03003643 if ((cpp * cstate->base.adjusted_mode.crtc_htotal / 512 < 1) &&
3644 (plane_bytes_per_line / 512 < 1))
3645 selected_result = method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303646 else if ((ddb_allocation /
3647 fixed_16_16_to_u32_round_up(plane_blocks_per_line)) >= 1)
3648 selected_result = min_fixed_16_16(method1, method2);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003649 else
3650 selected_result = method1;
3651 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003652
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303653 res_blocks = fixed_16_16_to_u32_round_up(selected_result) + 1;
3654 res_lines = DIV_ROUND_UP(selected_result.val,
3655 plane_blocks_per_line.val);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003656
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003657 if (level >= 1 && level <= 7) {
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303658 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303659 res_blocks += fixed_16_16_to_u32_round_up(y_tile_minimum);
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003660 res_lines += y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003661 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003662 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003663 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003664 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003665
Matt Roper55994c22016-05-12 07:06:08 -07003666 if (res_blocks >= ddb_allocation || res_lines > 31) {
3667 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07003668
3669 /*
3670 * If there are no valid level 0 watermarks, then we can't
3671 * support this display configuration.
3672 */
3673 if (level) {
3674 return 0;
3675 } else {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003676 struct drm_plane *plane = pstate->plane;
Matt Roper6b6bada2016-05-12 07:06:10 -07003677
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003678 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
3679 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
3680 plane->base.id, plane->name,
3681 res_blocks, ddb_allocation, res_lines);
Matt Roper6b6bada2016-05-12 07:06:10 -07003682 return -EINVAL;
3683 }
Matt Roper55994c22016-05-12 07:06:08 -07003684 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00003685
3686 *out_blocks = res_blocks;
3687 *out_lines = res_lines;
Matt Roper55994c22016-05-12 07:06:08 -07003688 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003689
Matt Roper55994c22016-05-12 07:06:08 -07003690 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003691}
3692
Matt Roperf4a96752016-05-12 07:06:06 -07003693static int
3694skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3695 struct skl_ddb_allocation *ddb,
3696 struct intel_crtc_state *cstate,
Lyudea62163e2016-10-04 14:28:20 -04003697 struct intel_plane *intel_plane,
Matt Roperf4a96752016-05-12 07:06:06 -07003698 int level,
3699 struct skl_wm_level *result)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003700{
Matt Roperf4a96752016-05-12 07:06:06 -07003701 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003702 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Lyudea62163e2016-10-04 14:28:20 -04003703 struct drm_plane *plane = &intel_plane->base;
3704 struct intel_plane_state *intel_pstate = NULL;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003705 uint16_t ddb_blocks;
Matt Roper024c9042015-09-24 15:53:11 -07003706 enum pipe pipe = intel_crtc->pipe;
Matt Roper55994c22016-05-12 07:06:08 -07003707 int ret;
Lyudea62163e2016-10-04 14:28:20 -04003708
3709 if (state)
3710 intel_pstate =
3711 intel_atomic_get_existing_plane_state(state,
3712 intel_plane);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003713
Matt Roperf4a96752016-05-12 07:06:06 -07003714 /*
Lyudea62163e2016-10-04 14:28:20 -04003715 * Note: If we start supporting multiple pending atomic commits against
3716 * the same planes/CRTC's in the future, plane->state will no longer be
3717 * the correct pre-state to use for the calculations here and we'll
3718 * need to change where we get the 'unchanged' plane data from.
3719 *
3720 * For now this is fine because we only allow one queued commit against
3721 * a CRTC. Even if the plane isn't modified by this transaction and we
3722 * don't have a plane lock, we still have the CRTC's lock, so we know
3723 * that no other transactions are racing with us to update it.
Matt Roperf4a96752016-05-12 07:06:06 -07003724 */
Lyudea62163e2016-10-04 14:28:20 -04003725 if (!intel_pstate)
3726 intel_pstate = to_intel_plane_state(plane->state);
Matt Roperf4a96752016-05-12 07:06:06 -07003727
Lyudea62163e2016-10-04 14:28:20 -04003728 WARN_ON(!intel_pstate->base.fb);
Matt Roper024c9042015-09-24 15:53:11 -07003729
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003730 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
Matt Roperf4a96752016-05-12 07:06:06 -07003731
Lyudea62163e2016-10-04 14:28:20 -04003732 ret = skl_compute_plane_wm(dev_priv,
3733 cstate,
3734 intel_pstate,
3735 ddb_blocks,
3736 level,
3737 &result->plane_res_b,
3738 &result->plane_res_l,
3739 &result->plane_en);
3740 if (ret)
3741 return ret;
Matt Roperf4a96752016-05-12 07:06:06 -07003742
3743 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003744}
3745
Damien Lespiau407b50f2014-11-04 17:06:57 +00003746static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07003747skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003748{
Mahesh Kumara3a89862016-12-01 21:19:34 +05303749 struct drm_atomic_state *state = cstate->base.state;
3750 struct drm_i915_private *dev_priv = to_i915(state->dev);
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003751 uint32_t pixel_rate;
Mahesh Kumara3a89862016-12-01 21:19:34 +05303752 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003753
Matt Roper024c9042015-09-24 15:53:11 -07003754 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003755 return 0;
3756
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02003757 pixel_rate = cstate->pixel_rate;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003758
3759 if (WARN_ON(pixel_rate == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003760 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003761
Mahesh Kumara3a89862016-12-01 21:19:34 +05303762 linetime_wm = DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal *
3763 1000, pixel_rate);
3764
3765 /* Display WA #1135: bxt. */
3766 if (IS_BROXTON(dev_priv) && dev_priv->ipc_enabled)
3767 linetime_wm = DIV_ROUND_UP(linetime_wm, 2);
3768
3769 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003770}
3771
Matt Roper024c9042015-09-24 15:53:11 -07003772static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003773 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003774{
Matt Roper024c9042015-09-24 15:53:11 -07003775 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003776 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003777
3778 /* Until we know more, just disable transition WMs */
Lyudea62163e2016-10-04 14:28:20 -04003779 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003780}
3781
Matt Roper55994c22016-05-12 07:06:08 -07003782static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
3783 struct skl_ddb_allocation *ddb,
3784 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003785{
Matt Roper024c9042015-09-24 15:53:11 -07003786 struct drm_device *dev = cstate->base.crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003787 const struct drm_i915_private *dev_priv = to_i915(dev);
Lyudea62163e2016-10-04 14:28:20 -04003788 struct intel_plane *intel_plane;
3789 struct skl_plane_wm *wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003790 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07003791 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003792
Lyudea62163e2016-10-04 14:28:20 -04003793 /*
3794 * We'll only calculate watermarks for planes that are actually
3795 * enabled, so make sure all other planes are set as disabled.
3796 */
3797 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
3798
3799 for_each_intel_plane_mask(&dev_priv->drm,
3800 intel_plane,
3801 cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003802 wm = &pipe_wm->planes[intel_plane->id];
Lyudea62163e2016-10-04 14:28:20 -04003803
3804 for (level = 0; level <= max_level; level++) {
3805 ret = skl_compute_wm_level(dev_priv, ddb, cstate,
3806 intel_plane, level,
3807 &wm->wm[level]);
3808 if (ret)
3809 return ret;
3810 }
3811 skl_compute_transition_wm(cstate, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003812 }
Matt Roper024c9042015-09-24 15:53:11 -07003813 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003814
Matt Roper55994c22016-05-12 07:06:08 -07003815 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003816}
3817
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003818static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
3819 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00003820 const struct skl_ddb_entry *entry)
3821{
3822 if (entry->end)
3823 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3824 else
3825 I915_WRITE(reg, 0);
3826}
3827
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003828static void skl_write_wm_level(struct drm_i915_private *dev_priv,
3829 i915_reg_t reg,
3830 const struct skl_wm_level *level)
3831{
3832 uint32_t val = 0;
3833
3834 if (level->plane_en) {
3835 val |= PLANE_WM_EN;
3836 val |= level->plane_res_b;
3837 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
3838 }
3839
3840 I915_WRITE(reg, val);
3841}
3842
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003843static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
3844 const struct skl_plane_wm *wm,
3845 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003846 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04003847{
3848 struct drm_crtc *crtc = &intel_crtc->base;
3849 struct drm_device *dev = crtc->dev;
3850 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003851 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003852 enum pipe pipe = intel_crtc->pipe;
3853
3854 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003855 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003856 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003857 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003858 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003859 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003860
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003861 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
3862 &ddb->plane[pipe][plane_id]);
3863 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
3864 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04003865}
3866
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003867static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
3868 const struct skl_plane_wm *wm,
3869 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04003870{
3871 struct drm_crtc *crtc = &intel_crtc->base;
3872 struct drm_device *dev = crtc->dev;
3873 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003874 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003875 enum pipe pipe = intel_crtc->pipe;
3876
3877 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003878 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
3879 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003880 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003881 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003882
3883 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003884 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04003885}
3886
cpaul@redhat.com45ece232016-10-14 17:31:56 -04003887bool skl_wm_level_equals(const struct skl_wm_level *l1,
3888 const struct skl_wm_level *l2)
3889{
3890 if (l1->plane_en != l2->plane_en)
3891 return false;
3892
3893 /* If both planes aren't enabled, the rest shouldn't matter */
3894 if (!l1->plane_en)
3895 return true;
3896
3897 return (l1->plane_res_l == l2->plane_res_l &&
3898 l1->plane_res_b == l2->plane_res_b);
3899}
3900
Lyude27082492016-08-24 07:48:10 +02003901static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
3902 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003903{
Lyude27082492016-08-24 07:48:10 +02003904 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003905}
3906
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01003907bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry **entries,
3908 const struct skl_ddb_entry *ddb,
3909 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003910{
Lyudece0ba282016-09-15 10:46:35 -04003911 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003912
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01003913 for (i = 0; i < I915_MAX_PIPES; i++)
3914 if (i != ignore && entries[i] &&
3915 skl_ddb_entries_overlap(ddb, entries[i]))
Lyude27082492016-08-24 07:48:10 +02003916 return true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003917
Lyude27082492016-08-24 07:48:10 +02003918 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003919}
3920
Matt Roper55994c22016-05-12 07:06:08 -07003921static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003922 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07003923 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003924 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07003925 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003926{
Matt Roperf4a96752016-05-12 07:06:06 -07003927 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07003928 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003929
Matt Roper55994c22016-05-12 07:06:08 -07003930 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
3931 if (ret)
3932 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003933
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003934 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07003935 *changed = false;
3936 else
3937 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003938
Matt Roper55994c22016-05-12 07:06:08 -07003939 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003940}
3941
Matt Roper9b613022016-06-27 16:42:44 -07003942static uint32_t
3943pipes_modified(struct drm_atomic_state *state)
3944{
3945 struct drm_crtc *crtc;
3946 struct drm_crtc_state *cstate;
3947 uint32_t i, ret = 0;
3948
3949 for_each_crtc_in_state(state, crtc, cstate, i)
3950 ret |= drm_crtc_mask(crtc);
3951
3952 return ret;
3953}
3954
Jani Nikulabb7791b2016-10-04 12:29:17 +03003955static int
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003956skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
3957{
3958 struct drm_atomic_state *state = cstate->base.state;
3959 struct drm_device *dev = state->dev;
3960 struct drm_crtc *crtc = cstate->base.crtc;
3961 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3962 struct drm_i915_private *dev_priv = to_i915(dev);
3963 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3964 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
3965 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3966 struct drm_plane_state *plane_state;
3967 struct drm_plane *plane;
3968 enum pipe pipe = intel_crtc->pipe;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003969
3970 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
3971
Maarten Lankhorst220b0962016-10-26 15:41:30 +02003972 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003973 enum plane_id plane_id = to_intel_plane(plane)->id;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003974
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003975 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
3976 &new_ddb->plane[pipe][plane_id]) &&
3977 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
3978 &new_ddb->y_plane[pipe][plane_id]))
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003979 continue;
3980
3981 plane_state = drm_atomic_get_plane_state(state, plane);
3982 if (IS_ERR(plane_state))
3983 return PTR_ERR(plane_state);
3984 }
3985
3986 return 0;
3987}
3988
Matt Roper98d39492016-05-12 07:06:03 -07003989static int
3990skl_compute_ddb(struct drm_atomic_state *state)
3991{
3992 struct drm_device *dev = state->dev;
3993 struct drm_i915_private *dev_priv = to_i915(dev);
3994 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3995 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07003996 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07003997 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07003998 int ret;
3999
4000 /*
4001 * If this is our first atomic update following hardware readout,
4002 * we can't trust the DDB that the BIOS programmed for us. Let's
4003 * pretend that all pipes switched active status so that we'll
4004 * ensure a full DDB recompute.
4005 */
Matt Roper1b54a882016-06-17 13:42:18 -07004006 if (dev_priv->wm.distrust_bios_wm) {
4007 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
4008 state->acquire_ctx);
4009 if (ret)
4010 return ret;
4011
Matt Roper98d39492016-05-12 07:06:03 -07004012 intel_state->active_pipe_changes = ~0;
4013
Matt Roper1b54a882016-06-17 13:42:18 -07004014 /*
4015 * We usually only initialize intel_state->active_crtcs if we
4016 * we're doing a modeset; make sure this field is always
4017 * initialized during the sanitization process that happens
4018 * on the first commit too.
4019 */
4020 if (!intel_state->modeset)
4021 intel_state->active_crtcs = dev_priv->active_crtcs;
4022 }
4023
Matt Roper98d39492016-05-12 07:06:03 -07004024 /*
4025 * If the modeset changes which CRTC's are active, we need to
4026 * recompute the DDB allocation for *all* active pipes, even
4027 * those that weren't otherwise being modified in any way by this
4028 * atomic commit. Due to the shrinking of the per-pipe allocations
4029 * when new active CRTC's are added, it's possible for a pipe that
4030 * we were already using and aren't changing at all here to suddenly
4031 * become invalid if its DDB needs exceeds its new allocation.
4032 *
4033 * Note that if we wind up doing a full DDB recompute, we can't let
4034 * any other display updates race with this transaction, so we need
4035 * to grab the lock on *all* CRTC's.
4036 */
Matt Roper734fa012016-05-12 15:11:40 -07004037 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004038 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004039 intel_state->wm_results.dirty_pipes = ~0;
4040 }
Matt Roper98d39492016-05-12 07:06:03 -07004041
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004042 /*
4043 * We're not recomputing for the pipes not included in the commit, so
4044 * make sure we start with the current state.
4045 */
4046 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4047
Matt Roper98d39492016-05-12 07:06:03 -07004048 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4049 struct intel_crtc_state *cstate;
4050
4051 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4052 if (IS_ERR(cstate))
4053 return PTR_ERR(cstate);
4054
Matt Roper734fa012016-05-12 15:11:40 -07004055 ret = skl_allocate_pipe_ddb(cstate, ddb);
Matt Roper98d39492016-05-12 07:06:03 -07004056 if (ret)
4057 return ret;
Lyude05a76d32016-08-17 15:55:57 -04004058
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004059 ret = skl_ddb_add_affected_planes(cstate);
Lyude05a76d32016-08-17 15:55:57 -04004060 if (ret)
4061 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004062 }
4063
4064 return 0;
4065}
4066
Matt Roper2722efb2016-08-17 15:55:55 -04004067static void
4068skl_copy_wm_for_pipe(struct skl_wm_values *dst,
4069 struct skl_wm_values *src,
4070 enum pipe pipe)
4071{
Matt Roper2722efb2016-08-17 15:55:55 -04004072 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
4073 sizeof(dst->ddb.y_plane[pipe]));
4074 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
4075 sizeof(dst->ddb.plane[pipe]));
4076}
4077
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004078static void
4079skl_print_wm_changes(const struct drm_atomic_state *state)
4080{
4081 const struct drm_device *dev = state->dev;
4082 const struct drm_i915_private *dev_priv = to_i915(dev);
4083 const struct intel_atomic_state *intel_state =
4084 to_intel_atomic_state(state);
4085 const struct drm_crtc *crtc;
4086 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004087 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004088 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
4089 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01004090 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004091
4092 for_each_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01004093 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4094 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004095
Maarten Lankhorst75704982016-11-01 12:04:10 +01004096 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004097 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004098 const struct skl_ddb_entry *old, *new;
4099
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004100 old = &old_ddb->plane[pipe][plane_id];
4101 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004102
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004103 if (skl_ddb_entry_equal(old, new))
4104 continue;
4105
Maarten Lankhorst75704982016-11-01 12:04:10 +01004106 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
4107 intel_plane->base.base.id,
4108 intel_plane->base.name,
4109 old->start, old->end,
4110 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004111 }
4112 }
4113}
4114
Matt Roper98d39492016-05-12 07:06:03 -07004115static int
4116skl_compute_wm(struct drm_atomic_state *state)
4117{
4118 struct drm_crtc *crtc;
4119 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07004120 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4121 struct skl_wm_values *results = &intel_state->wm_results;
4122 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07004123 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07004124 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07004125
4126 /*
4127 * If this transaction isn't actually touching any CRTC's, don't
4128 * bother with watermark calculation. Note that if we pass this
4129 * test, we're guaranteed to hold at least one CRTC state mutex,
4130 * which means we can safely use values like dev_priv->active_crtcs
4131 * since any racing commits that want to update them would need to
4132 * hold _all_ CRTC state mutexes.
4133 */
4134 for_each_crtc_in_state(state, crtc, cstate, i)
4135 changed = true;
4136 if (!changed)
4137 return 0;
4138
Matt Roper734fa012016-05-12 15:11:40 -07004139 /* Clear all dirty flags */
4140 results->dirty_pipes = 0;
4141
Matt Roper98d39492016-05-12 07:06:03 -07004142 ret = skl_compute_ddb(state);
4143 if (ret)
4144 return ret;
4145
Matt Roper734fa012016-05-12 15:11:40 -07004146 /*
4147 * Calculate WM's for all pipes that are part of this transaction.
4148 * Note that the DDB allocation above may have added more CRTC's that
4149 * weren't otherwise being modified (and set bits in dirty_pipes) if
4150 * pipe allocations had to change.
4151 *
4152 * FIXME: Now that we're doing this in the atomic check phase, we
4153 * should allow skl_update_pipe_wm() to return failure in cases where
4154 * no suitable watermark values can be found.
4155 */
4156 for_each_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07004157 struct intel_crtc_state *intel_cstate =
4158 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004159 const struct skl_pipe_wm *old_pipe_wm =
4160 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07004161
4162 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004163 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
4164 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07004165 if (ret)
4166 return ret;
4167
4168 if (changed)
4169 results->dirty_pipes |= drm_crtc_mask(crtc);
4170
4171 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
4172 /* This pipe's WM's did not change */
4173 continue;
4174
4175 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07004176 }
4177
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004178 skl_print_wm_changes(state);
4179
Matt Roper98d39492016-05-12 07:06:03 -07004180 return 0;
4181}
4182
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004183static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
4184 struct intel_crtc_state *cstate)
4185{
4186 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
4187 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
4188 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004189 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004190 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004191 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004192
4193 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
4194 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004195
4196 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004197
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004198 for_each_plane_id_on_crtc(crtc, plane_id) {
4199 if (plane_id != PLANE_CURSOR)
4200 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
4201 ddb, plane_id);
4202 else
4203 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
4204 ddb);
4205 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004206}
4207
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004208static void skl_initial_wm(struct intel_atomic_state *state,
4209 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004210{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004211 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02004212 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004213 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004214 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04004215 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02004216 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07004217
Ville Syrjälä432081b2016-10-31 22:37:03 +02004218 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004219 return;
4220
Matt Roper734fa012016-05-12 15:11:40 -07004221 mutex_lock(&dev_priv->wm.wm_mutex);
4222
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004223 if (cstate->base.active_changed)
4224 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02004225
4226 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07004227
4228 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004229}
4230
Ville Syrjäläd8905652016-01-14 14:53:35 +02004231static void ilk_compute_wm_config(struct drm_device *dev,
4232 struct intel_wm_config *config)
4233{
4234 struct intel_crtc *crtc;
4235
4236 /* Compute the currently _active_ config */
4237 for_each_intel_crtc(dev, crtc) {
4238 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
4239
4240 if (!wm->pipe_enabled)
4241 continue;
4242
4243 config->sprites_enabled |= wm->sprites_enabled;
4244 config->sprites_scaled |= wm->sprites_scaled;
4245 config->num_pipes_active++;
4246 }
4247}
4248
Matt Ropered4a6a72016-02-23 17:20:13 -08004249static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03004250{
Chris Wilson91c8a322016-07-05 10:40:23 +01004251 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004252 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02004253 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02004254 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02004255 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004256 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07004257
Ville Syrjäläd8905652016-01-14 14:53:35 +02004258 ilk_compute_wm_config(dev, &config);
4259
4260 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
4261 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03004262
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004263 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004264 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02004265 config.num_pipes_active == 1 && config.sprites_enabled) {
4266 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
4267 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004268
Imre Deak820c1982013-12-17 14:46:36 +02004269 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03004270 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004271 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004272 }
4273
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004274 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004275 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004276
Imre Deak820c1982013-12-17 14:46:36 +02004277 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03004278
Imre Deak820c1982013-12-17 14:46:36 +02004279 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03004280}
4281
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004282static void ilk_initial_watermarks(struct intel_atomic_state *state,
4283 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004284{
Matt Ropered4a6a72016-02-23 17:20:13 -08004285 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4286 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004287
Matt Ropered4a6a72016-02-23 17:20:13 -08004288 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07004289 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08004290 ilk_program_watermarks(dev_priv);
4291 mutex_unlock(&dev_priv->wm.wm_mutex);
4292}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004293
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004294static void ilk_optimize_watermarks(struct intel_atomic_state *state,
4295 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08004296{
4297 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4298 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4299
4300 mutex_lock(&dev_priv->wm.wm_mutex);
4301 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07004302 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08004303 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004304 }
Matt Ropered4a6a72016-02-23 17:20:13 -08004305 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004306}
4307
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004308static inline void skl_wm_level_from_reg_val(uint32_t val,
4309 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00004310{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004311 level->plane_en = val & PLANE_WM_EN;
4312 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
4313 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
4314 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00004315}
4316
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004317void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
4318 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00004319{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004320 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00004321 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00004322 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004323 int level, max_level;
4324 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004325 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00004326
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004327 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00004328
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004329 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
4330 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00004331
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004332 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004333 if (plane_id != PLANE_CURSOR)
4334 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004335 else
4336 val = I915_READ(CUR_WM(pipe, level));
4337
4338 skl_wm_level_from_reg_val(val, &wm->wm[level]);
4339 }
4340
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004341 if (plane_id != PLANE_CURSOR)
4342 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004343 else
4344 val = I915_READ(CUR_WM_TRANS(pipe));
4345
4346 skl_wm_level_from_reg_val(val, &wm->trans_wm);
4347 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004348
Matt Roper3ef00282015-03-09 10:19:24 -07004349 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00004350 return;
4351
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004352 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00004353}
4354
4355void skl_wm_get_hw_state(struct drm_device *dev)
4356{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004357 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004358 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00004359 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00004360 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004361 struct intel_crtc *intel_crtc;
4362 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00004363
Damien Lespiaua269c582014-11-04 17:06:49 +00004364 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004365 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4366 intel_crtc = to_intel_crtc(crtc);
4367 cstate = to_intel_crtc_state(crtc->state);
4368
4369 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
4370
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004371 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004372 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004373 }
Matt Ropera1de91e2016-05-12 07:05:57 -07004374
Matt Roper279e99d2016-05-12 07:06:02 -07004375 if (dev_priv->active_crtcs) {
4376 /* Fully recompute DDB on first atomic commit */
4377 dev_priv->wm.distrust_bios_wm = true;
4378 } else {
4379 /* Easy/common case; just sanitize DDB now if everything off */
4380 memset(ddb, 0, sizeof(*ddb));
4381 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004382}
4383
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004384static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4385{
4386 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004387 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004388 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004389 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07004390 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004391 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004392 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004393 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004394 [PIPE_A] = WM0_PIPEA_ILK,
4395 [PIPE_B] = WM0_PIPEB_ILK,
4396 [PIPE_C] = WM0_PIPEC_IVB,
4397 };
4398
4399 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004400 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02004401 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004402
Ville Syrjälä15606532016-05-13 17:55:17 +03004403 memset(active, 0, sizeof(*active));
4404
Matt Roper3ef00282015-03-09 10:19:24 -07004405 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02004406
4407 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004408 u32 tmp = hw->wm_pipe[pipe];
4409
4410 /*
4411 * For active pipes LP0 watermark is marked as
4412 * enabled, and LP1+ watermaks as disabled since
4413 * we can't really reverse compute them in case
4414 * multiple pipes are active.
4415 */
4416 active->wm[0].enable = true;
4417 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
4418 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
4419 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
4420 active->linetime = hw->wm_linetime[pipe];
4421 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004422 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004423
4424 /*
4425 * For inactive pipes, all watermark levels
4426 * should be marked as enabled but zeroed,
4427 * which is what we'd compute them to.
4428 */
4429 for (level = 0; level <= max_level; level++)
4430 active->wm[level].enable = true;
4431 }
Matt Roper4e0963c2015-09-24 15:53:15 -07004432
4433 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004434}
4435
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004436#define _FW_WM(value, plane) \
4437 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
4438#define _FW_WM_VLV(value, plane) \
4439 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
4440
4441static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4442 struct vlv_wm_values *wm)
4443{
4444 enum pipe pipe;
4445 uint32_t tmp;
4446
4447 for_each_pipe(dev_priv, pipe) {
4448 tmp = I915_READ(VLV_DDL(pipe));
4449
Ville Syrjälä1b313892016-11-28 19:37:08 +02004450 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004451 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004452 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004453 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004454 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004455 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004456 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004457 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4458 }
4459
4460 tmp = I915_READ(DSPFW1);
4461 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004462 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
4463 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
4464 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004465
4466 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004467 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
4468 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
4469 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004470
4471 tmp = I915_READ(DSPFW3);
4472 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4473
4474 if (IS_CHERRYVIEW(dev_priv)) {
4475 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004476 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4477 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004478
4479 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004480 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
4481 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004482
4483 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004484 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
4485 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004486
4487 tmp = I915_READ(DSPHOWM);
4488 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004489 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4490 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4491 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
4492 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4493 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4494 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4495 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4496 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4497 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004498 } else {
4499 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004500 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4501 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004502
4503 tmp = I915_READ(DSPHOWM);
4504 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004505 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4506 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4507 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4508 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4509 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4510 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004511 }
4512}
4513
4514#undef _FW_WM
4515#undef _FW_WM_VLV
4516
4517void vlv_wm_get_hw_state(struct drm_device *dev)
4518{
4519 struct drm_i915_private *dev_priv = to_i915(dev);
4520 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4521 struct intel_plane *plane;
4522 enum pipe pipe;
4523 u32 val;
4524
4525 vlv_read_wm_values(dev_priv, wm);
4526
Ville Syrjälä49845a22016-11-22 18:02:01 +02004527 for_each_intel_plane(dev, plane)
4528 plane->wm.fifo_size = vlv_get_fifo_size(plane);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004529
4530 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4531 wm->level = VLV_WM_LEVEL_PM2;
4532
4533 if (IS_CHERRYVIEW(dev_priv)) {
4534 mutex_lock(&dev_priv->rps.hw_lock);
4535
4536 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4537 if (val & DSP_MAXFIFO_PM5_ENABLE)
4538 wm->level = VLV_WM_LEVEL_PM5;
4539
Ville Syrjälä58590c12015-09-08 21:05:12 +03004540 /*
4541 * If DDR DVFS is disabled in the BIOS, Punit
4542 * will never ack the request. So if that happens
4543 * assume we don't have to enable/disable DDR DVFS
4544 * dynamically. To test that just set the REQ_ACK
4545 * bit to poke the Punit, but don't change the
4546 * HIGH/LOW bits so that we don't actually change
4547 * the current state.
4548 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004549 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004550 val |= FORCE_DDR_FREQ_REQ_ACK;
4551 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4552
4553 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4554 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4555 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4556 "assuming DDR DVFS is disabled\n");
4557 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4558 } else {
4559 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4560 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4561 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4562 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004563
4564 mutex_unlock(&dev_priv->rps.hw_lock);
4565 }
4566
4567 for_each_pipe(dev_priv, pipe)
4568 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
Ville Syrjälä1b313892016-11-28 19:37:08 +02004569 pipe_name(pipe),
4570 wm->pipe[pipe].plane[PLANE_PRIMARY],
4571 wm->pipe[pipe].plane[PLANE_CURSOR],
4572 wm->pipe[pipe].plane[PLANE_SPRITE0],
4573 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004574
4575 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4576 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4577}
4578
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004579void ilk_wm_get_hw_state(struct drm_device *dev)
4580{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004581 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004582 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004583 struct drm_crtc *crtc;
4584
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004585 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004586 ilk_pipe_wm_get_hw_state(crtc);
4587
4588 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4589 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4590 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4591
4592 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004593 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004594 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4595 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4596 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004597
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004598 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004599 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4600 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004601 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004602 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4603 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004604
4605 hw->enable_fbc_wm =
4606 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4607}
4608
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004609/**
4610 * intel_update_watermarks - update FIFO watermark values based on current modes
4611 *
4612 * Calculate watermark values for the various WM regs based on current mode
4613 * and plane configuration.
4614 *
4615 * There are several cases to deal with here:
4616 * - normal (i.e. non-self-refresh)
4617 * - self-refresh (SR) mode
4618 * - lines are large relative to FIFO size (buffer can hold up to 2)
4619 * - lines are small relative to FIFO size (buffer can hold more than 2
4620 * lines), so need to account for TLB latency
4621 *
4622 * The normal calculation is:
4623 * watermark = dotclock * bytes per pixel * latency
4624 * where latency is platform & configuration dependent (we assume pessimal
4625 * values here).
4626 *
4627 * The SR calculation is:
4628 * watermark = (trunc(latency/line time)+1) * surface width *
4629 * bytes per pixel
4630 * where
4631 * line time = htotal / dotclock
4632 * surface width = hdisplay for normal plane and 64 for cursor
4633 * and latency is assumed to be high, as above.
4634 *
4635 * The final value programmed to the register should always be rounded up,
4636 * and include an extra 2 entries to account for clock crossings.
4637 *
4638 * We don't use the sprite, so we can ignore that. And on Crestline we have
4639 * to set the non-SR watermarks to 8.
4640 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02004641void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004642{
Ville Syrjälä432081b2016-10-31 22:37:03 +02004643 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004644
4645 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004646 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004647}
4648
Jani Nikulae2828912016-01-18 09:19:47 +02004649/*
Daniel Vetter92703882012-08-09 16:46:01 +02004650 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004651 */
4652DEFINE_SPINLOCK(mchdev_lock);
4653
4654/* Global for IPS driver to get at the current i915 device. Protected by
4655 * mchdev_lock. */
4656static struct drm_i915_private *i915_mch_dev;
4657
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004658bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004659{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004660 u16 rgvswctl;
4661
Daniel Vetter92703882012-08-09 16:46:01 +02004662 assert_spin_locked(&mchdev_lock);
4663
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004664 rgvswctl = I915_READ16(MEMSWCTL);
4665 if (rgvswctl & MEMCTL_CMD_STS) {
4666 DRM_DEBUG("gpu busy, RCS change rejected\n");
4667 return false; /* still busy with another command */
4668 }
4669
4670 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4671 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4672 I915_WRITE16(MEMSWCTL, rgvswctl);
4673 POSTING_READ16(MEMSWCTL);
4674
4675 rgvswctl |= MEMCTL_CMD_STS;
4676 I915_WRITE16(MEMSWCTL, rgvswctl);
4677
4678 return true;
4679}
4680
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004681static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004682{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004683 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004684 u8 fmax, fmin, fstart, vstart;
4685
Daniel Vetter92703882012-08-09 16:46:01 +02004686 spin_lock_irq(&mchdev_lock);
4687
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004688 rgvmodectl = I915_READ(MEMMODECTL);
4689
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004690 /* Enable temp reporting */
4691 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4692 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4693
4694 /* 100ms RC evaluation intervals */
4695 I915_WRITE(RCUPEI, 100000);
4696 I915_WRITE(RCDNEI, 100000);
4697
4698 /* Set max/min thresholds to 90ms and 80ms respectively */
4699 I915_WRITE(RCBMAXAVG, 90000);
4700 I915_WRITE(RCBMINAVG, 80000);
4701
4702 I915_WRITE(MEMIHYST, 1);
4703
4704 /* Set up min, max, and cur for interrupt handling */
4705 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4706 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4707 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4708 MEMMODE_FSTART_SHIFT;
4709
Ville Syrjälä616847e2015-09-18 20:03:19 +03004710 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004711 PXVFREQ_PX_SHIFT;
4712
Daniel Vetter20e4d402012-08-08 23:35:39 +02004713 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4714 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004715
Daniel Vetter20e4d402012-08-08 23:35:39 +02004716 dev_priv->ips.max_delay = fstart;
4717 dev_priv->ips.min_delay = fmin;
4718 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004719
4720 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4721 fmax, fmin, fstart);
4722
4723 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4724
4725 /*
4726 * Interrupts will be enabled in ironlake_irq_postinstall
4727 */
4728
4729 I915_WRITE(VIDSTART, vstart);
4730 POSTING_READ(VIDSTART);
4731
4732 rgvmodectl |= MEMMODE_SWMODE_EN;
4733 I915_WRITE(MEMMODECTL, rgvmodectl);
4734
Daniel Vetter92703882012-08-09 16:46:01 +02004735 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004736 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004737 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004738
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004739 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004740
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004741 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4742 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004743 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004744 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004745 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004746
4747 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004748}
4749
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004750static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004751{
Daniel Vetter92703882012-08-09 16:46:01 +02004752 u16 rgvswctl;
4753
4754 spin_lock_irq(&mchdev_lock);
4755
4756 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004757
4758 /* Ack interrupts, disable EFC interrupt */
4759 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4760 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4761 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4762 I915_WRITE(DEIIR, DE_PCU_EVENT);
4763 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4764
4765 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004766 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004767 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004768 rgvswctl |= MEMCTL_CMD_STS;
4769 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004770 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004771
Daniel Vetter92703882012-08-09 16:46:01 +02004772 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004773}
4774
Daniel Vetteracbe9472012-07-26 11:50:05 +02004775/* There's a funny hw issue where the hw returns all 0 when reading from
4776 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4777 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4778 * all limits and the gpu stuck at whatever frequency it is at atm).
4779 */
Akash Goel74ef1172015-03-06 11:07:19 +05304780static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004781{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004782 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004783
Daniel Vetter20b46e52012-07-26 11:16:14 +02004784 /* Only set the down limit when we've reached the lowest level to avoid
4785 * getting more interrupts, otherwise leave this clear. This prevents a
4786 * race in the hw when coming out of rc6: There's a tiny window where
4787 * the hw runs at the minimal clock before selecting the desired
4788 * frequency, if the down threshold expires in that window we will not
4789 * receive a down interrupt. */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03004790 if (IS_GEN9(dev_priv)) {
Akash Goel74ef1172015-03-06 11:07:19 +05304791 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4792 if (val <= dev_priv->rps.min_freq_softlimit)
4793 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4794 } else {
4795 limits = dev_priv->rps.max_freq_softlimit << 24;
4796 if (val <= dev_priv->rps.min_freq_softlimit)
4797 limits |= dev_priv->rps.min_freq_softlimit << 16;
4798 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004799
4800 return limits;
4801}
4802
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004803static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4804{
4805 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304806 u32 threshold_up = 0, threshold_down = 0; /* in % */
4807 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004808
4809 new_power = dev_priv->rps.power;
4810 switch (dev_priv->rps.power) {
4811 case LOW_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004812 if (val > dev_priv->rps.efficient_freq + 1 &&
4813 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004814 new_power = BETWEEN;
4815 break;
4816
4817 case BETWEEN:
Chris Wilsona72b5622016-07-02 15:35:59 +01004818 if (val <= dev_priv->rps.efficient_freq &&
4819 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004820 new_power = LOW_POWER;
Chris Wilsona72b5622016-07-02 15:35:59 +01004821 else if (val >= dev_priv->rps.rp0_freq &&
4822 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004823 new_power = HIGH_POWER;
4824 break;
4825
4826 case HIGH_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004827 if (val < (dev_priv->rps.rp1_freq + dev_priv->rps.rp0_freq) >> 1 &&
4828 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004829 new_power = BETWEEN;
4830 break;
4831 }
4832 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004833 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004834 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004835 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004836 new_power = HIGH_POWER;
4837 if (new_power == dev_priv->rps.power)
4838 return;
4839
4840 /* Note the units here are not exactly 1us, but 1280ns. */
4841 switch (new_power) {
4842 case LOW_POWER:
4843 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304844 ei_up = 16000;
4845 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004846
4847 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304848 ei_down = 32000;
4849 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004850 break;
4851
4852 case BETWEEN:
4853 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304854 ei_up = 13000;
4855 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004856
4857 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304858 ei_down = 32000;
4859 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004860 break;
4861
4862 case HIGH_POWER:
4863 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304864 ei_up = 10000;
4865 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004866
4867 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304868 ei_down = 32000;
4869 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004870 break;
4871 }
4872
Akash Goel8a586432015-03-06 11:07:18 +05304873 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004874 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05304875 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004876 GT_INTERVAL_FROM_US(dev_priv,
4877 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304878
4879 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004880 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05304881 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004882 GT_INTERVAL_FROM_US(dev_priv,
4883 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304884
Chris Wilsona72b5622016-07-02 15:35:59 +01004885 I915_WRITE(GEN6_RP_CONTROL,
4886 GEN6_RP_MEDIA_TURBO |
4887 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4888 GEN6_RP_MEDIA_IS_GFX |
4889 GEN6_RP_ENABLE |
4890 GEN6_RP_UP_BUSY_AVG |
4891 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05304892
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004893 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004894 dev_priv->rps.up_threshold = threshold_up;
4895 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004896 dev_priv->rps.last_adj = 0;
4897}
4898
Chris Wilson2876ce72014-03-28 08:03:34 +00004899static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4900{
4901 u32 mask = 0;
4902
4903 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004904 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004905 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004906 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004907
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004908 mask &= dev_priv->pm_rps_events;
4909
Imre Deak59d02a12014-12-19 19:33:26 +02004910 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004911}
4912
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004913/* gen6_set_rps is called to update the frequency request, but should also be
4914 * called when the range (min_delay and max_delay) is modified so that we can
4915 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004916static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004917{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004918 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004919 WARN_ON(val > dev_priv->rps.max_freq);
4920 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004921
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004922 /* min/max delay may still have been modified so be sure to
4923 * write the limits value.
4924 */
4925 if (val != dev_priv->rps.cur_freq) {
4926 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004927
Chris Wilsondc979972016-05-10 14:10:04 +01004928 if (IS_GEN9(dev_priv))
Akash Goel57041952015-03-06 11:07:17 +05304929 I915_WRITE(GEN6_RPNSWREQ,
4930 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01004931 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004932 I915_WRITE(GEN6_RPNSWREQ,
4933 HSW_FREQUENCY(val));
4934 else
4935 I915_WRITE(GEN6_RPNSWREQ,
4936 GEN6_FREQUENCY(val) |
4937 GEN6_OFFSET(0) |
4938 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004939 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004940
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004941 /* Make sure we continue to get interrupts
4942 * until we hit the minimum or maximum frequencies.
4943 */
Akash Goel74ef1172015-03-06 11:07:19 +05304944 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004945 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004946
Ben Widawskyd5570a72012-09-07 19:43:41 -07004947 POSTING_READ(GEN6_RPNSWREQ);
4948
Ben Widawskyb39fb292014-03-19 18:31:11 -07004949 dev_priv->rps.cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02004950 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004951
4952 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004953}
4954
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004955static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004956{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004957 int err;
4958
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004959 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004960 WARN_ON(val > dev_priv->rps.max_freq);
4961 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004962
Chris Wilsondc979972016-05-10 14:10:04 +01004963 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004964 "Odd GPU freq value\n"))
4965 val &= ~1;
4966
Deepak Scd25dd52015-07-10 18:31:40 +05304967 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4968
Chris Wilson8fb55192015-04-07 16:20:28 +01004969 if (val != dev_priv->rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004970 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
4971 if (err)
4972 return err;
4973
Chris Wilson8fb55192015-04-07 16:20:28 +01004974 if (!IS_CHERRYVIEW(dev_priv))
4975 gen6_set_rps_thresholds(dev_priv, val);
4976 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004977
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004978 dev_priv->rps.cur_freq = val;
4979 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004980
4981 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004982}
4983
Deepak Sa7f6e232015-05-09 18:04:44 +05304984/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304985 *
4986 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304987 * 1. Forcewake Media well.
4988 * 2. Request idle freq.
4989 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304990*/
4991static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4992{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004993 u32 val = dev_priv->rps.idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004994 int err;
Deepak S5549d252014-06-28 11:26:11 +05304995
Chris Wilsonaed242f2015-03-18 09:48:21 +00004996 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304997 return;
4998
Chris Wilsonc9efef72017-01-02 15:28:45 +00004999 /* The punit delays the write of the frequency and voltage until it
5000 * determines the GPU is awake. During normal usage we don't want to
5001 * waste power changing the frequency if the GPU is sleeping (rc6).
5002 * However, the GPU and driver is now idle and we do not want to delay
5003 * switching to minimum voltage (reducing power whilst idle) as we do
5004 * not expect to be woken in the near future and so must flush the
5005 * change by waking the device.
5006 *
5007 * We choose to take the media powerwell (either would do to trick the
5008 * punit into committing the voltage change) as that takes a lot less
5009 * power than the render powerwell.
5010 */
Deepak Sa7f6e232015-05-09 18:04:44 +05305011 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005012 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05305013 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005014
5015 if (err)
5016 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05305017}
5018
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005019void gen6_rps_busy(struct drm_i915_private *dev_priv)
5020{
5021 mutex_lock(&dev_priv->rps.hw_lock);
5022 if (dev_priv->rps.enabled) {
5023 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
5024 gen6_rps_reset_ei(dev_priv);
5025 I915_WRITE(GEN6_PMINTRMSK,
5026 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02005027
Chris Wilsonc33d2472016-07-04 08:08:36 +01005028 gen6_enable_rps_interrupts(dev_priv);
5029
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02005030 /* Ensure we start at the user's desired frequency */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005031 if (intel_set_rps(dev_priv,
5032 clamp(dev_priv->rps.cur_freq,
5033 dev_priv->rps.min_freq_softlimit,
5034 dev_priv->rps.max_freq_softlimit)))
5035 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005036 }
5037 mutex_unlock(&dev_priv->rps.hw_lock);
5038}
5039
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005040void gen6_rps_idle(struct drm_i915_private *dev_priv)
5041{
Chris Wilsonc33d2472016-07-04 08:08:36 +01005042 /* Flush our bottom-half so that it does not race with us
5043 * setting the idle frequency and so that it is bounded by
5044 * our rpm wakeref. And then disable the interrupts to stop any
5045 * futher RPS reclocking whilst we are asleep.
5046 */
5047 gen6_disable_rps_interrupts(dev_priv);
5048
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005049 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005050 if (dev_priv->rps.enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01005051 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05305052 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005053 else
Chris Wilsondc979972016-05-10 14:10:04 +01005054 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005055 dev_priv->rps.last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03005056 I915_WRITE(GEN6_PMINTRMSK,
5057 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01005058 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005059 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005060
Chris Wilson8d3afd72015-05-21 21:01:47 +01005061 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005062 while (!list_empty(&dev_priv->rps.clients))
5063 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005064 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005065}
5066
Chris Wilson1854d5c2015-04-07 16:20:32 +01005067void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01005068 struct intel_rps_client *rps,
5069 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005070{
Chris Wilson8d3afd72015-05-21 21:01:47 +01005071 /* This is intentionally racy! We peek at the state here, then
5072 * validate inside the RPS worker.
5073 */
Chris Wilson67d97da2016-07-04 08:08:31 +01005074 if (!(dev_priv->gt.awake &&
Chris Wilson8d3afd72015-05-21 21:01:47 +01005075 dev_priv->rps.enabled &&
Chris Wilson29ecd78d2016-07-13 09:10:35 +01005076 dev_priv->rps.cur_freq < dev_priv->rps.boost_freq))
Chris Wilson8d3afd72015-05-21 21:01:47 +01005077 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005078
Chris Wilsone61b9952015-04-27 13:41:24 +01005079 /* Force a RPS boost (and don't count it against the client) if
5080 * the GPU is severely congested.
5081 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01005082 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01005083 rps = NULL;
5084
Chris Wilson8d3afd72015-05-21 21:01:47 +01005085 spin_lock(&dev_priv->rps.client_lock);
5086 if (rps == NULL || list_empty(&rps->link)) {
5087 spin_lock_irq(&dev_priv->irq_lock);
5088 if (dev_priv->rps.interrupts_enabled) {
5089 dev_priv->rps.client_boost = true;
Chris Wilsonc33d2472016-07-04 08:08:36 +01005090 schedule_work(&dev_priv->rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005091 }
5092 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005093
Chris Wilson2e1b8732015-04-27 13:41:22 +01005094 if (rps != NULL) {
5095 list_add(&rps->link, &dev_priv->rps.clients);
5096 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01005097 } else
5098 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01005099 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005100 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005101}
5102
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005103int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005104{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005105 int err;
5106
Chris Wilsondc979972016-05-10 14:10:04 +01005107 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005108 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005109 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005110 err = gen6_set_rps(dev_priv, val);
5111
5112 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005113}
5114
Chris Wilsondc979972016-05-10 14:10:04 +01005115static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005116{
Zhe Wang20e49362014-11-04 17:07:05 +00005117 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005118 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005119}
5120
Chris Wilsondc979972016-05-10 14:10:04 +01005121static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05305122{
Akash Goel2030d682016-04-23 00:05:45 +05305123 I915_WRITE(GEN6_RP_CONTROL, 0);
5124}
5125
Chris Wilsondc979972016-05-10 14:10:04 +01005126static void gen6_disable_rps(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005127{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005128 I915_WRITE(GEN6_RC_CONTROL, 0);
5129 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05305130 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005131}
5132
Chris Wilsondc979972016-05-10 14:10:04 +01005133static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305134{
Deepak S38807742014-05-23 21:00:15 +05305135 I915_WRITE(GEN6_RC_CONTROL, 0);
5136}
5137
Chris Wilsondc979972016-05-10 14:10:04 +01005138static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005139{
Deepak S98a2e5f2014-08-18 10:35:27 -07005140 /* we're doing forcewake before Disabling RC6,
5141 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005142 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07005143
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005144 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005145
Mika Kuoppala59bad942015-01-16 11:34:40 +02005146 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005147}
5148
Chris Wilsondc979972016-05-10 14:10:04 +01005149static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07005150{
Chris Wilsondc979972016-05-10 14:10:04 +01005151 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03005152 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
5153 mode = GEN6_RC_CTL_RC6_ENABLE;
5154 else
5155 mode = 0;
5156 }
Chris Wilsondc979972016-05-10 14:10:04 +01005157 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03005158 DRM_DEBUG_DRIVER("Enabling RC6 states: "
5159 "RC6 %s RC6p %s RC6pp %s\n",
5160 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
5161 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
5162 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07005163
5164 else
Imre Deakb99d49c2016-06-29 19:13:54 +03005165 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
5166 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07005167}
5168
Chris Wilsondc979972016-05-10 14:10:04 +01005169static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305170{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005171 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305172 bool enable_rc6 = true;
5173 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03005174 u32 rc_ctl;
5175 int rc_sw_target;
5176
5177 rc_ctl = I915_READ(GEN6_RC_CONTROL);
5178 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
5179 RC_SW_TARGET_STATE_SHIFT;
5180 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
5181 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
5182 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
5183 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
5184 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305185
5186 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005187 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305188 enable_rc6 = false;
5189 }
5190
5191 /*
5192 * The exact context size is not known for BXT, so assume a page size
5193 * for this check.
5194 */
5195 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005196 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
5197 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
5198 ggtt->stolen_reserved_size))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005199 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305200 enable_rc6 = false;
5201 }
5202
5203 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
5204 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
5205 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
5206 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005207 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305208 enable_rc6 = false;
5209 }
5210
Imre Deakfc619842016-06-29 19:13:55 +03005211 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
5212 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
5213 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
5214 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
5215 enable_rc6 = false;
5216 }
5217
5218 if (!I915_READ(GEN6_GFXPAUSE)) {
5219 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
5220 enable_rc6 = false;
5221 }
5222
5223 if (!I915_READ(GEN8_MISC_CTRL0)) {
5224 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305225 enable_rc6 = false;
5226 }
5227
5228 return enable_rc6;
5229}
5230
Chris Wilsondc979972016-05-10 14:10:04 +01005231int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005232{
Daniel Vettere7d66d82015-06-15 23:23:54 +02005233 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01005234 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03005235 return 0;
5236
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305237 if (!enable_rc6)
5238 return 0;
5239
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005240 if (IS_GEN9_LP(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305241 DRM_INFO("RC6 disabled by BIOS\n");
5242 return 0;
5243 }
5244
Daniel Vetter456470e2012-08-08 23:35:40 +02005245 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03005246 if (enable_rc6 >= 0) {
5247 int mask;
5248
Chris Wilsondc979972016-05-10 14:10:04 +01005249 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03005250 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
5251 INTEL_RC6pp_ENABLE;
5252 else
5253 mask = INTEL_RC6_ENABLE;
5254
5255 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03005256 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
5257 "(requested %d, valid %d)\n",
5258 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03005259
5260 return enable_rc6 & mask;
5261 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005262
Chris Wilsondc979972016-05-10 14:10:04 +01005263 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08005264 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08005265
5266 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005267}
5268
Chris Wilsondc979972016-05-10 14:10:04 +01005269static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03005270{
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005271 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005272
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005273 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005274 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005275 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005276 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
5277 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5278 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
5279 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005280 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005281 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
5282 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5283 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
5284 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005285 /* hw_max = RP0 until we check for overclocking */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005286 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005287
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005288 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005289 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005290 IS_GEN9_BC(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005291 u32 ddcc_status = 0;
5292
5293 if (sandybridge_pcode_read(dev_priv,
5294 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
5295 &ddcc_status) == 0)
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005296 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08005297 clamp_t(u8,
5298 ((ddcc_status >> 8) & 0xff),
5299 dev_priv->rps.min_freq,
5300 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005301 }
5302
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005303 if (IS_GEN9_BC(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05305304 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01005305 * the natural hardware unit for SKL
5306 */
Akash Goelc5e06882015-06-29 14:50:19 +05305307 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
5308 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
5309 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
5310 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
5311 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
5312 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005313}
5314
Chris Wilson3a45b052016-07-13 09:10:32 +01005315static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005316 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01005317{
5318 u8 freq = dev_priv->rps.cur_freq;
5319
5320 /* force a reset */
5321 dev_priv->rps.power = -1;
5322 dev_priv->rps.cur_freq = -1;
5323
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005324 if (set(dev_priv, freq))
5325 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01005326}
5327
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005328/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01005329static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005330{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005331 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
5332
Akash Goel0beb0592015-03-06 11:07:20 +05305333 /* Program defaults and thresholds for RPS*/
5334 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5335 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005336
Akash Goel0beb0592015-03-06 11:07:20 +05305337 /* 1 second timeout*/
5338 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
5339 GT_INTERVAL_FROM_US(dev_priv, 1000000));
5340
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005341 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005342
Akash Goel0beb0592015-03-06 11:07:20 +05305343 /* Leaning on the below call to gen6_set_rps to program/setup the
5344 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
5345 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01005346 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005347
5348 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5349}
5350
Chris Wilsondc979972016-05-10 14:10:04 +01005351static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005352{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005353 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305354 enum intel_engine_id id;
Zhe Wang20e49362014-11-04 17:07:05 +00005355 uint32_t rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00005356
5357 /* 1a: Software RC state - RC0 */
5358 I915_WRITE(GEN6_RC_STATE, 0);
5359
5360 /* 1b: Get forcewake during program sequence. Although the driver
5361 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005362 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005363
5364 /* 2a: Disable RC states. */
5365 I915_WRITE(GEN6_RC_CONTROL, 0);
5366
5367 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305368
5369 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Chris Wilsondc979972016-05-10 14:10:04 +01005370 if (IS_SKYLAKE(dev_priv))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305371 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
5372 else
5373 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00005374 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5375 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305376 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005377 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305378
Dave Gordon1a3d1892016-05-13 15:36:30 +01005379 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305380 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
5381
Zhe Wang20e49362014-11-04 17:07:05 +00005382 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005383
Zhe Wang38c23522015-01-20 12:23:04 +00005384 /* 2c: Program Coarse Power Gating Policies. */
5385 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
5386 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
5387
Zhe Wang20e49362014-11-04 17:07:05 +00005388 /* 3a: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005389 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00005390 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02005391 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Chris Wilson1c044f92017-01-25 17:26:01 +00005392 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
5393 I915_WRITE(GEN6_RC_CONTROL,
5394 GEN6_RC_CTL_HW_ENABLE | GEN6_RC_CTL_EI_MODE(1) | rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00005395
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305396 /*
5397 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305398 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305399 */
Chris Wilsondc979972016-05-10 14:10:04 +01005400 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305401 I915_WRITE(GEN9_PG_ENABLE, 0);
5402 else
5403 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
5404 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005405
Mika Kuoppala59bad942015-01-16 11:34:40 +02005406 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005407}
5408
Chris Wilsondc979972016-05-10 14:10:04 +01005409static void gen8_enable_rps(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005410{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005411 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305412 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005413 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005414
5415 /* 1a: Software RC state - RC0 */
5416 I915_WRITE(GEN6_RC_STATE, 0);
5417
5418 /* 1c & 1d: Get forcewake during program sequence. Although the driver
5419 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005420 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005421
5422 /* 2a: Disable RC states. */
5423 I915_WRITE(GEN6_RC_CONTROL, 0);
5424
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005425 /* 2b: Program RC6 thresholds.*/
5426 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5427 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5428 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305429 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005430 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005431 I915_WRITE(GEN6_RC_SLEEP, 0);
Chris Wilsondc979972016-05-10 14:10:04 +01005432 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005433 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
5434 else
5435 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005436
5437 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005438 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005439 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01005440 intel_print_rc6_info(dev_priv, rc6_mask);
5441 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005442 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5443 GEN7_RC_CTL_TO_MODE |
5444 rc6_mask);
5445 else
5446 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5447 GEN6_RC_CTL_EI_MODE(1) |
5448 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005449
5450 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07005451 I915_WRITE(GEN6_RPNSWREQ,
5452 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
5453 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5454 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02005455 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
5456 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005457
Daniel Vetter7526ed72014-09-29 15:07:19 +02005458 /* Docs recommend 900MHz, and 300 MHz respectively */
5459 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
5460 dev_priv->rps.max_freq_softlimit << 24 |
5461 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005462
Daniel Vetter7526ed72014-09-29 15:07:19 +02005463 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
5464 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
5465 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
5466 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005467
Daniel Vetter7526ed72014-09-29 15:07:19 +02005468 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005469
5470 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02005471 I915_WRITE(GEN6_RP_CONTROL,
5472 GEN6_RP_MEDIA_TURBO |
5473 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5474 GEN6_RP_MEDIA_IS_GFX |
5475 GEN6_RP_ENABLE |
5476 GEN6_RP_UP_BUSY_AVG |
5477 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005478
Daniel Vetter7526ed72014-09-29 15:07:19 +02005479 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005480
Chris Wilson3a45b052016-07-13 09:10:32 +01005481 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005482
Mika Kuoppala59bad942015-01-16 11:34:40 +02005483 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005484}
5485
Chris Wilsondc979972016-05-10 14:10:04 +01005486static void gen6_enable_rps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005487{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005488 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305489 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01005490 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005491 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005492 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005493 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005494
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005495 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005496
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005497 /* Here begins a magic sequence of register writes to enable
5498 * auto-downclocking.
5499 *
5500 * Perhaps there might be some value in exposing these to
5501 * userspace...
5502 */
5503 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005504
5505 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005506 gtfifodbg = I915_READ(GTFIFODBG);
5507 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005508 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
5509 I915_WRITE(GTFIFODBG, gtfifodbg);
5510 }
5511
Mika Kuoppala59bad942015-01-16 11:34:40 +02005512 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005513
5514 /* disable the counters and set deterministic thresholds */
5515 I915_WRITE(GEN6_RC_CONTROL, 0);
5516
5517 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5518 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5519 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5520 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5521 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5522
Akash Goel3b3f1652016-10-13 22:44:48 +05305523 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005524 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005525
5526 I915_WRITE(GEN6_RC_SLEEP, 0);
5527 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01005528 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005529 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5530 else
5531 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005532 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005533 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5534
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005535 /* Check if we are enabling RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005536 rc6_mode = intel_enable_rc6();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005537 if (rc6_mode & INTEL_RC6_ENABLE)
5538 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5539
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005540 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01005541 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005542 if (rc6_mode & INTEL_RC6p_ENABLE)
5543 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005544
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005545 if (rc6_mode & INTEL_RC6pp_ENABLE)
5546 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5547 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005548
Chris Wilsondc979972016-05-10 14:10:04 +01005549 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005550
5551 I915_WRITE(GEN6_RC_CONTROL,
5552 rc6_mask |
5553 GEN6_RC_CTL_EI_MODE(1) |
5554 GEN6_RC_CTL_HW_ENABLE);
5555
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005556 /* Power down if completely idle for over 50ms */
5557 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005558 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005559
Chris Wilson3a45b052016-07-13 09:10:32 +01005560 reset_rps(dev_priv, gen6_set_rps);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005561
Ben Widawsky31643d52012-09-26 10:34:01 -07005562 rc6vids = 0;
5563 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01005564 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005565 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01005566 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005567 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5568 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5569 rc6vids &= 0xffff00;
5570 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5571 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5572 if (ret)
5573 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5574 }
5575
Mika Kuoppala59bad942015-01-16 11:34:40 +02005576 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005577}
5578
Chris Wilsonfb7404e2016-07-13 09:10:38 +01005579static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005580{
5581 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005582 unsigned int gpu_freq;
5583 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305584 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005585 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005586 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005587
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005588 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005589
Ben Widawskyeda79642013-10-07 17:15:48 -03005590 policy = cpufreq_cpu_get(0);
5591 if (policy) {
5592 max_ia_freq = policy->cpuinfo.max_freq;
5593 cpufreq_cpu_put(policy);
5594 } else {
5595 /*
5596 * Default to measured freq if none found, PCU will ensure we
5597 * don't go over
5598 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005599 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005600 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005601
5602 /* Convert from kHz to MHz */
5603 max_ia_freq /= 1000;
5604
Ben Widawsky153b4b952013-10-22 22:05:09 -07005605 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005606 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5607 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005608
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005609 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305610 /* Convert GT frequency to 50 HZ units */
5611 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5612 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5613 } else {
5614 min_gpu_freq = dev_priv->rps.min_freq;
5615 max_gpu_freq = dev_priv->rps.max_freq;
5616 }
5617
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005618 /*
5619 * For each potential GPU frequency, load a ring frequency we'd like
5620 * to use for memory access. We do this by specifying the IA frequency
5621 * the PCU should use as a reference to determine the ring frequency.
5622 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305623 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5624 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005625 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005626
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005627 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305628 /*
5629 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5630 * No floor required for ring frequency on SKL.
5631 */
5632 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005633 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005634 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5635 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01005636 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005637 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005638 ring_freq = max(min_ring_freq, ring_freq);
5639 /* leave ia_freq as the default, chosen by cpufreq */
5640 } else {
5641 /* On older processors, there is no separate ring
5642 * clock domain, so in order to boost the bandwidth
5643 * of the ring, we need to upclock the CPU (ia_freq).
5644 *
5645 * For GPU frequencies less than 750MHz,
5646 * just use the lowest ring freq.
5647 */
5648 if (gpu_freq < min_freq)
5649 ia_freq = 800;
5650 else
5651 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5652 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5653 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005654
Ben Widawsky42c05262012-09-26 10:34:00 -07005655 sandybridge_pcode_write(dev_priv,
5656 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005657 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5658 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5659 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005660 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005661}
5662
Ville Syrjälä03af2042014-06-28 02:03:53 +03005663static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305664{
5665 u32 val, rp0;
5666
Jani Nikula5b5929c2015-10-07 11:17:46 +03005667 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305668
Imre Deak43b67992016-08-31 19:13:02 +03005669 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03005670 case 8:
5671 /* (2 * 4) config */
5672 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5673 break;
5674 case 12:
5675 /* (2 * 6) config */
5676 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5677 break;
5678 case 16:
5679 /* (2 * 8) config */
5680 default:
5681 /* Setting (2 * 8) Min RP0 for any other combination */
5682 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5683 break;
Deepak S095acd52015-01-17 11:05:59 +05305684 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005685
5686 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5687
Deepak S2b6b3a02014-05-27 15:59:30 +05305688 return rp0;
5689}
5690
5691static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5692{
5693 u32 val, rpe;
5694
5695 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5696 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5697
5698 return rpe;
5699}
5700
Deepak S7707df42014-07-12 18:46:14 +05305701static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5702{
5703 u32 val, rp1;
5704
Jani Nikula5b5929c2015-10-07 11:17:46 +03005705 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5706 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5707
Deepak S7707df42014-07-12 18:46:14 +05305708 return rp1;
5709}
5710
Deepak Sf8f2b002014-07-10 13:16:21 +05305711static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5712{
5713 u32 val, rp1;
5714
5715 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5716
5717 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5718
5719 return rp1;
5720}
5721
Ville Syrjälä03af2042014-06-28 02:03:53 +03005722static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005723{
5724 u32 val, rp0;
5725
Jani Nikula64936252013-05-22 15:36:20 +03005726 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005727
5728 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5729 /* Clamp to max */
5730 rp0 = min_t(u32, rp0, 0xea);
5731
5732 return rp0;
5733}
5734
5735static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5736{
5737 u32 val, rpe;
5738
Jani Nikula64936252013-05-22 15:36:20 +03005739 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005740 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005741 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005742 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5743
5744 return rpe;
5745}
5746
Ville Syrjälä03af2042014-06-28 02:03:53 +03005747static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005748{
Imre Deak36146032014-12-04 18:39:35 +02005749 u32 val;
5750
5751 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
5752 /*
5753 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
5754 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
5755 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
5756 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
5757 * to make sure it matches what Punit accepts.
5758 */
5759 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005760}
5761
Imre Deakae484342014-03-31 15:10:44 +03005762/* Check that the pctx buffer wasn't move under us. */
5763static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5764{
5765 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5766
5767 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5768 dev_priv->vlv_pctx->stolen->start);
5769}
5770
Deepak S38807742014-05-23 21:00:15 +05305771
5772/* Check that the pcbr address is not empty. */
5773static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5774{
5775 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5776
5777 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5778}
5779
Chris Wilsondc979972016-05-10 14:10:04 +01005780static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305781{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005782 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005783 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05305784 u32 pcbr;
5785 int pctx_size = 32*1024;
5786
Deepak S38807742014-05-23 21:00:15 +05305787 pcbr = I915_READ(VLV_PCBR);
5788 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005789 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305790 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005791 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05305792
5793 pctx_paddr = (paddr & (~4095));
5794 I915_WRITE(VLV_PCBR, pctx_paddr);
5795 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005796
5797 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305798}
5799
Chris Wilsondc979972016-05-10 14:10:04 +01005800static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005801{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005802 struct drm_i915_gem_object *pctx;
5803 unsigned long pctx_paddr;
5804 u32 pcbr;
5805 int pctx_size = 24*1024;
5806
5807 pcbr = I915_READ(VLV_PCBR);
5808 if (pcbr) {
5809 /* BIOS set it up already, grab the pre-alloc'd space */
5810 int pcbr_offset;
5811
5812 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00005813 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005814 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005815 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005816 pctx_size);
5817 goto out;
5818 }
5819
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005820 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5821
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005822 /*
5823 * From the Gunit register HAS:
5824 * The Gfx driver is expected to program this register and ensure
5825 * proper allocation within Gfx stolen memory. For example, this
5826 * register should be programmed such than the PCBR range does not
5827 * overlap with other ranges, such as the frame buffer, protected
5828 * memory, or any other relevant ranges.
5829 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00005830 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005831 if (!pctx) {
5832 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005833 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005834 }
5835
5836 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5837 I915_WRITE(VLV_PCBR, pctx_paddr);
5838
5839out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005840 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005841 dev_priv->vlv_pctx = pctx;
5842}
5843
Chris Wilsondc979972016-05-10 14:10:04 +01005844static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03005845{
Imre Deakae484342014-03-31 15:10:44 +03005846 if (WARN_ON(!dev_priv->vlv_pctx))
5847 return;
5848
Chris Wilsonf0cd5182016-10-28 13:58:43 +01005849 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03005850 dev_priv->vlv_pctx = NULL;
5851}
5852
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005853static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
5854{
5855 dev_priv->rps.gpll_ref_freq =
5856 vlv_get_cck_clock(dev_priv, "GPLL ref",
5857 CCK_GPLL_CLOCK_CONTROL,
5858 dev_priv->czclk_freq);
5859
5860 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
5861 dev_priv->rps.gpll_ref_freq);
5862}
5863
Chris Wilsondc979972016-05-10 14:10:04 +01005864static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005865{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005866 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005867
Chris Wilsondc979972016-05-10 14:10:04 +01005868 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005869
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005870 vlv_init_gpll_ref_freq(dev_priv);
5871
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005872 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5873 switch ((val >> 6) & 3) {
5874 case 0:
5875 case 1:
5876 dev_priv->mem_freq = 800;
5877 break;
5878 case 2:
5879 dev_priv->mem_freq = 1066;
5880 break;
5881 case 3:
5882 dev_priv->mem_freq = 1333;
5883 break;
5884 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005885 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005886
Imre Deak4e805192014-04-14 20:24:41 +03005887 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5888 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5889 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005890 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005891 dev_priv->rps.max_freq);
5892
5893 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5894 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005895 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005896 dev_priv->rps.efficient_freq);
5897
Deepak Sf8f2b002014-07-10 13:16:21 +05305898 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5899 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005900 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305901 dev_priv->rps.rp1_freq);
5902
Imre Deak4e805192014-04-14 20:24:41 +03005903 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5904 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005905 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005906 dev_priv->rps.min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03005907}
5908
Chris Wilsondc979972016-05-10 14:10:04 +01005909static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305910{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005911 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305912
Chris Wilsondc979972016-05-10 14:10:04 +01005913 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05305914
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005915 vlv_init_gpll_ref_freq(dev_priv);
5916
Ville Syrjäläa5805162015-05-26 20:42:30 +03005917 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005918 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005919 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005920
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005921 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005922 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005923 dev_priv->mem_freq = 2000;
5924 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03005925 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005926 dev_priv->mem_freq = 1600;
5927 break;
5928 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005929 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005930
Deepak S2b6b3a02014-05-27 15:59:30 +05305931 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5932 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5933 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005934 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305935 dev_priv->rps.max_freq);
5936
5937 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5938 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005939 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305940 dev_priv->rps.efficient_freq);
5941
Deepak S7707df42014-07-12 18:46:14 +05305942 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5943 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005944 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305945 dev_priv->rps.rp1_freq);
5946
Deepak S5b7c91b2015-05-09 18:15:46 +05305947 /* PUnit validated range is only [RPe, RP0] */
5948 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305949 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005950 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305951 dev_priv->rps.min_freq);
5952
Ville Syrjälä1c147622014-08-18 14:42:43 +03005953 WARN_ONCE((dev_priv->rps.max_freq |
5954 dev_priv->rps.efficient_freq |
5955 dev_priv->rps.rp1_freq |
5956 dev_priv->rps.min_freq) & 1,
5957 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05305958}
5959
Chris Wilsondc979972016-05-10 14:10:04 +01005960static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005961{
Chris Wilsondc979972016-05-10 14:10:04 +01005962 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005963}
5964
Chris Wilsondc979972016-05-10 14:10:04 +01005965static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305966{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005967 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305968 enum intel_engine_id id;
Deepak S2b6b3a02014-05-27 15:59:30 +05305969 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305970
5971 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5972
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005973 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
5974 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05305975 if (gtfifodbg) {
5976 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5977 gtfifodbg);
5978 I915_WRITE(GTFIFODBG, gtfifodbg);
5979 }
5980
5981 cherryview_check_pctx(dev_priv);
5982
5983 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5984 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005985 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305986
Ville Syrjälä160614a2015-01-19 13:50:47 +02005987 /* Disable RC states. */
5988 I915_WRITE(GEN6_RC_CONTROL, 0);
5989
Deepak S38807742014-05-23 21:00:15 +05305990 /* 2a: Program RC6 thresholds.*/
5991 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5992 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5993 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
5994
Akash Goel3b3f1652016-10-13 22:44:48 +05305995 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005996 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05305997 I915_WRITE(GEN6_RC_SLEEP, 0);
5998
Deepak Sf4f71c72015-03-28 15:23:35 +05305999 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
6000 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05306001
6002 /* allows RC6 residency counter to work */
6003 I915_WRITE(VLV_COUNTER_CONTROL,
6004 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
6005 VLV_MEDIA_RC6_COUNT_EN |
6006 VLV_RENDER_RC6_COUNT_EN));
6007
6008 /* For now we assume BIOS is allocating and populating the PCBR */
6009 pcbr = I915_READ(VLV_PCBR);
6010
Deepak S38807742014-05-23 21:00:15 +05306011 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01006012 if ((intel_enable_rc6() & INTEL_RC6_ENABLE) &&
6013 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02006014 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05306015
6016 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
6017
Deepak S2b6b3a02014-05-27 15:59:30 +05306018 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02006019 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05306020 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6021 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6022 I915_WRITE(GEN6_RP_UP_EI, 66000);
6023 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6024
6025 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6026
6027 /* 5: Enable RPS */
6028 I915_WRITE(GEN6_RP_CONTROL,
6029 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02006030 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05306031 GEN6_RP_ENABLE |
6032 GEN6_RP_UP_BUSY_AVG |
6033 GEN6_RP_DOWN_IDLE_AVG);
6034
Deepak S3ef62342015-04-29 08:36:24 +05306035 /* Setting Fixed Bias */
6036 val = VLV_OVERRIDE_EN |
6037 VLV_SOC_TDP_EN |
6038 CHV_BIAS_CPU_50_SOC_50;
6039 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6040
Deepak S2b6b3a02014-05-27 15:59:30 +05306041 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
6042
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006043 /* RPS code assumes GPLL is used */
6044 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6045
Jani Nikula742f4912015-09-03 11:16:09 +03006046 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05306047 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6048
Chris Wilson3a45b052016-07-13 09:10:32 +01006049 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05306050
Mika Kuoppala59bad942015-01-16 11:34:40 +02006051 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306052}
6053
Chris Wilsondc979972016-05-10 14:10:04 +01006054static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006055{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006056 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306057 enum intel_engine_id id;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07006058 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006059
6060 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6061
Imre Deakae484342014-03-31 15:10:44 +03006062 valleyview_check_pctx(dev_priv);
6063
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006064 gtfifodbg = I915_READ(GTFIFODBG);
6065 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07006066 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6067 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006068 I915_WRITE(GTFIFODBG, gtfifodbg);
6069 }
6070
Deepak Sc8d9a592013-11-23 14:55:42 +05306071 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006072 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006073
Ville Syrjälä160614a2015-01-19 13:50:47 +02006074 /* Disable RC states. */
6075 I915_WRITE(GEN6_RC_CONTROL, 0);
6076
Ville Syrjäläcad725f2015-01-19 13:50:48 +02006077 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006078 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6079 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6080 I915_WRITE(GEN6_RP_UP_EI, 66000);
6081 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6082
6083 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6084
6085 I915_WRITE(GEN6_RP_CONTROL,
6086 GEN6_RP_MEDIA_TURBO |
6087 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6088 GEN6_RP_MEDIA_IS_GFX |
6089 GEN6_RP_ENABLE |
6090 GEN6_RP_UP_BUSY_AVG |
6091 GEN6_RP_DOWN_IDLE_CONT);
6092
6093 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
6094 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6095 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6096
Akash Goel3b3f1652016-10-13 22:44:48 +05306097 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006098 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006099
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08006100 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006101
6102 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07006103 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04006104 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
6105 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07006106 VLV_MEDIA_RC6_COUNT_EN |
6107 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04006108
Chris Wilsondc979972016-05-10 14:10:04 +01006109 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08006110 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07006111
Chris Wilsondc979972016-05-10 14:10:04 +01006112 intel_print_rc6_info(dev_priv, rc6_mode);
Ben Widawskydc39fff2013-10-18 12:32:07 -07006113
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07006114 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006115
Deepak S3ef62342015-04-29 08:36:24 +05306116 /* Setting Fixed Bias */
6117 val = VLV_OVERRIDE_EN |
6118 VLV_SOC_TDP_EN |
6119 VLV_BIAS_CPU_125_SOC_875;
6120 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6121
Jani Nikula64936252013-05-22 15:36:20 +03006122 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006123
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006124 /* RPS code assumes GPLL is used */
6125 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6126
Jani Nikula742f4912015-09-03 11:16:09 +03006127 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07006128 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6129
Chris Wilson3a45b052016-07-13 09:10:32 +01006130 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006131
Mika Kuoppala59bad942015-01-16 11:34:40 +02006132 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006133}
6134
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006135static unsigned long intel_pxfreq(u32 vidfreq)
6136{
6137 unsigned long freq;
6138 int div = (vidfreq & 0x3f0000) >> 16;
6139 int post = (vidfreq & 0x3000) >> 12;
6140 int pre = (vidfreq & 0x7);
6141
6142 if (!pre)
6143 return 0;
6144
6145 freq = ((div * 133333) / ((1<<post) * pre));
6146
6147 return freq;
6148}
6149
Daniel Vettereb48eb02012-04-26 23:28:12 +02006150static const struct cparams {
6151 u16 i;
6152 u16 t;
6153 u16 m;
6154 u16 c;
6155} cparams[] = {
6156 { 1, 1333, 301, 28664 },
6157 { 1, 1066, 294, 24460 },
6158 { 1, 800, 294, 25192 },
6159 { 0, 1333, 276, 27605 },
6160 { 0, 1066, 276, 27605 },
6161 { 0, 800, 231, 23784 },
6162};
6163
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006164static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006165{
6166 u64 total_count, diff, ret;
6167 u32 count1, count2, count3, m = 0, c = 0;
6168 unsigned long now = jiffies_to_msecs(jiffies), diff1;
6169 int i;
6170
Daniel Vetter02d71952012-08-09 16:44:54 +02006171 assert_spin_locked(&mchdev_lock);
6172
Daniel Vetter20e4d402012-08-08 23:35:39 +02006173 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006174
6175 /* Prevent division-by-zero if we are asking too fast.
6176 * Also, we don't get interesting results if we are polling
6177 * faster than once in 10ms, so just return the saved value
6178 * in such cases.
6179 */
6180 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02006181 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006182
6183 count1 = I915_READ(DMIEC);
6184 count2 = I915_READ(DDREC);
6185 count3 = I915_READ(CSIEC);
6186
6187 total_count = count1 + count2 + count3;
6188
6189 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02006190 if (total_count < dev_priv->ips.last_count1) {
6191 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006192 diff += total_count;
6193 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006194 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006195 }
6196
6197 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006198 if (cparams[i].i == dev_priv->ips.c_m &&
6199 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02006200 m = cparams[i].m;
6201 c = cparams[i].c;
6202 break;
6203 }
6204 }
6205
6206 diff = div_u64(diff, diff1);
6207 ret = ((m * diff) + c);
6208 ret = div_u64(ret, 10);
6209
Daniel Vetter20e4d402012-08-08 23:35:39 +02006210 dev_priv->ips.last_count1 = total_count;
6211 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006212
Daniel Vetter20e4d402012-08-08 23:35:39 +02006213 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006214
6215 return ret;
6216}
6217
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006218unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
6219{
6220 unsigned long val;
6221
Chris Wilsondc979972016-05-10 14:10:04 +01006222 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006223 return 0;
6224
6225 spin_lock_irq(&mchdev_lock);
6226
6227 val = __i915_chipset_val(dev_priv);
6228
6229 spin_unlock_irq(&mchdev_lock);
6230
6231 return val;
6232}
6233
Daniel Vettereb48eb02012-04-26 23:28:12 +02006234unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
6235{
6236 unsigned long m, x, b;
6237 u32 tsfs;
6238
6239 tsfs = I915_READ(TSFS);
6240
6241 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
6242 x = I915_READ8(TR1);
6243
6244 b = tsfs & TSFS_INTR_MASK;
6245
6246 return ((m * x) / 127) - b;
6247}
6248
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006249static int _pxvid_to_vd(u8 pxvid)
6250{
6251 if (pxvid == 0)
6252 return 0;
6253
6254 if (pxvid >= 8 && pxvid < 31)
6255 pxvid = 31;
6256
6257 return (pxvid + 2) * 125;
6258}
6259
6260static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006261{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006262 const int vd = _pxvid_to_vd(pxvid);
6263 const int vm = vd - 1125;
6264
Chris Wilsondc979972016-05-10 14:10:04 +01006265 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006266 return vm > 0 ? vm : 0;
6267
6268 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006269}
6270
Daniel Vetter02d71952012-08-09 16:44:54 +02006271static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006272{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006273 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006274 u32 count;
6275
Daniel Vetter02d71952012-08-09 16:44:54 +02006276 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006277
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006278 now = ktime_get_raw_ns();
6279 diffms = now - dev_priv->ips.last_time2;
6280 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006281
6282 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02006283 if (!diffms)
6284 return;
6285
6286 count = I915_READ(GFXEC);
6287
Daniel Vetter20e4d402012-08-08 23:35:39 +02006288 if (count < dev_priv->ips.last_count2) {
6289 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006290 diff += count;
6291 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006292 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006293 }
6294
Daniel Vetter20e4d402012-08-08 23:35:39 +02006295 dev_priv->ips.last_count2 = count;
6296 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006297
6298 /* More magic constants... */
6299 diff = diff * 1181;
6300 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02006301 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006302}
6303
Daniel Vetter02d71952012-08-09 16:44:54 +02006304void i915_update_gfx_val(struct drm_i915_private *dev_priv)
6305{
Chris Wilsondc979972016-05-10 14:10:04 +01006306 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02006307 return;
6308
Daniel Vetter92703882012-08-09 16:46:01 +02006309 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006310
6311 __i915_update_gfx_val(dev_priv);
6312
Daniel Vetter92703882012-08-09 16:46:01 +02006313 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006314}
6315
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006316static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006317{
6318 unsigned long t, corr, state1, corr2, state2;
6319 u32 pxvid, ext_v;
6320
Daniel Vetter02d71952012-08-09 16:44:54 +02006321 assert_spin_locked(&mchdev_lock);
6322
Ville Syrjälä616847e2015-09-18 20:03:19 +03006323 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02006324 pxvid = (pxvid >> 24) & 0x7f;
6325 ext_v = pvid_to_extvid(dev_priv, pxvid);
6326
6327 state1 = ext_v;
6328
6329 t = i915_mch_val(dev_priv);
6330
6331 /* Revel in the empirically derived constants */
6332
6333 /* Correction factor in 1/100000 units */
6334 if (t > 80)
6335 corr = ((t * 2349) + 135940);
6336 else if (t >= 50)
6337 corr = ((t * 964) + 29317);
6338 else /* < 50 */
6339 corr = ((t * 301) + 1004);
6340
6341 corr = corr * ((150142 * state1) / 10000 - 78642);
6342 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02006343 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006344
6345 state2 = (corr2 * state1) / 10000;
6346 state2 /= 100; /* convert to mW */
6347
Daniel Vetter02d71952012-08-09 16:44:54 +02006348 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006349
Daniel Vetter20e4d402012-08-08 23:35:39 +02006350 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006351}
6352
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006353unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
6354{
6355 unsigned long val;
6356
Chris Wilsondc979972016-05-10 14:10:04 +01006357 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006358 return 0;
6359
6360 spin_lock_irq(&mchdev_lock);
6361
6362 val = __i915_gfx_val(dev_priv);
6363
6364 spin_unlock_irq(&mchdev_lock);
6365
6366 return val;
6367}
6368
Daniel Vettereb48eb02012-04-26 23:28:12 +02006369/**
6370 * i915_read_mch_val - return value for IPS use
6371 *
6372 * Calculate and return a value for the IPS driver to use when deciding whether
6373 * we have thermal and power headroom to increase CPU or GPU power budget.
6374 */
6375unsigned long i915_read_mch_val(void)
6376{
6377 struct drm_i915_private *dev_priv;
6378 unsigned long chipset_val, graphics_val, ret = 0;
6379
Daniel Vetter92703882012-08-09 16:46:01 +02006380 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006381 if (!i915_mch_dev)
6382 goto out_unlock;
6383 dev_priv = i915_mch_dev;
6384
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006385 chipset_val = __i915_chipset_val(dev_priv);
6386 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006387
6388 ret = chipset_val + graphics_val;
6389
6390out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006391 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006392
6393 return ret;
6394}
6395EXPORT_SYMBOL_GPL(i915_read_mch_val);
6396
6397/**
6398 * i915_gpu_raise - raise GPU frequency limit
6399 *
6400 * Raise the limit; IPS indicates we have thermal headroom.
6401 */
6402bool i915_gpu_raise(void)
6403{
6404 struct drm_i915_private *dev_priv;
6405 bool ret = true;
6406
Daniel Vetter92703882012-08-09 16:46:01 +02006407 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006408 if (!i915_mch_dev) {
6409 ret = false;
6410 goto out_unlock;
6411 }
6412 dev_priv = i915_mch_dev;
6413
Daniel Vetter20e4d402012-08-08 23:35:39 +02006414 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
6415 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006416
6417out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006418 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006419
6420 return ret;
6421}
6422EXPORT_SYMBOL_GPL(i915_gpu_raise);
6423
6424/**
6425 * i915_gpu_lower - lower GPU frequency limit
6426 *
6427 * IPS indicates we're close to a thermal limit, so throttle back the GPU
6428 * frequency maximum.
6429 */
6430bool i915_gpu_lower(void)
6431{
6432 struct drm_i915_private *dev_priv;
6433 bool ret = true;
6434
Daniel Vetter92703882012-08-09 16:46:01 +02006435 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006436 if (!i915_mch_dev) {
6437 ret = false;
6438 goto out_unlock;
6439 }
6440 dev_priv = i915_mch_dev;
6441
Daniel Vetter20e4d402012-08-08 23:35:39 +02006442 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
6443 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006444
6445out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006446 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006447
6448 return ret;
6449}
6450EXPORT_SYMBOL_GPL(i915_gpu_lower);
6451
6452/**
6453 * i915_gpu_busy - indicate GPU business to IPS
6454 *
6455 * Tell the IPS driver whether or not the GPU is busy.
6456 */
6457bool i915_gpu_busy(void)
6458{
Daniel Vettereb48eb02012-04-26 23:28:12 +02006459 bool ret = false;
6460
Daniel Vetter92703882012-08-09 16:46:01 +02006461 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01006462 if (i915_mch_dev)
6463 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02006464 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006465
6466 return ret;
6467}
6468EXPORT_SYMBOL_GPL(i915_gpu_busy);
6469
6470/**
6471 * i915_gpu_turbo_disable - disable graphics turbo
6472 *
6473 * Disable graphics turbo by resetting the max frequency and setting the
6474 * current frequency to the default.
6475 */
6476bool i915_gpu_turbo_disable(void)
6477{
6478 struct drm_i915_private *dev_priv;
6479 bool ret = true;
6480
Daniel Vetter92703882012-08-09 16:46:01 +02006481 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006482 if (!i915_mch_dev) {
6483 ret = false;
6484 goto out_unlock;
6485 }
6486 dev_priv = i915_mch_dev;
6487
Daniel Vetter20e4d402012-08-08 23:35:39 +02006488 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006489
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006490 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006491 ret = false;
6492
6493out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006494 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006495
6496 return ret;
6497}
6498EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6499
6500/**
6501 * Tells the intel_ips driver that the i915 driver is now loaded, if
6502 * IPS got loaded first.
6503 *
6504 * This awkward dance is so that neither module has to depend on the
6505 * other in order for IPS to do the appropriate communication of
6506 * GPU turbo limits to i915.
6507 */
6508static void
6509ips_ping_for_i915_load(void)
6510{
6511 void (*link)(void);
6512
6513 link = symbol_get(ips_link_to_i915_driver);
6514 if (link) {
6515 link();
6516 symbol_put(ips_link_to_i915_driver);
6517 }
6518}
6519
6520void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6521{
Daniel Vetter02d71952012-08-09 16:44:54 +02006522 /* We only register the i915 ips part with intel-ips once everything is
6523 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006524 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006525 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006526 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006527
6528 ips_ping_for_i915_load();
6529}
6530
6531void intel_gpu_ips_teardown(void)
6532{
Daniel Vetter92703882012-08-09 16:46:01 +02006533 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006534 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006535 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006536}
Deepak S76c3552f2014-01-30 23:08:16 +05306537
Chris Wilsondc979972016-05-10 14:10:04 +01006538static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006539{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006540 u32 lcfuse;
6541 u8 pxw[16];
6542 int i;
6543
6544 /* Disable to program */
6545 I915_WRITE(ECR, 0);
6546 POSTING_READ(ECR);
6547
6548 /* Program energy weights for various events */
6549 I915_WRITE(SDEW, 0x15040d00);
6550 I915_WRITE(CSIEW0, 0x007f0000);
6551 I915_WRITE(CSIEW1, 0x1e220004);
6552 I915_WRITE(CSIEW2, 0x04000004);
6553
6554 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006555 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006556 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006557 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006558
6559 /* Program P-state weights to account for frequency power adjustment */
6560 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006561 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006562 unsigned long freq = intel_pxfreq(pxvidfreq);
6563 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6564 PXVFREQ_PX_SHIFT;
6565 unsigned long val;
6566
6567 val = vid * vid;
6568 val *= (freq / 1000);
6569 val *= 255;
6570 val /= (127*127*900);
6571 if (val > 0xff)
6572 DRM_ERROR("bad pxval: %ld\n", val);
6573 pxw[i] = val;
6574 }
6575 /* Render standby states get 0 weight */
6576 pxw[14] = 0;
6577 pxw[15] = 0;
6578
6579 for (i = 0; i < 4; i++) {
6580 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6581 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006582 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006583 }
6584
6585 /* Adjust magic regs to magic values (more experimental results) */
6586 I915_WRITE(OGW0, 0);
6587 I915_WRITE(OGW1, 0);
6588 I915_WRITE(EG0, 0x00007f00);
6589 I915_WRITE(EG1, 0x0000000e);
6590 I915_WRITE(EG2, 0x000e0000);
6591 I915_WRITE(EG3, 0x68000300);
6592 I915_WRITE(EG4, 0x42000000);
6593 I915_WRITE(EG5, 0x00140031);
6594 I915_WRITE(EG6, 0);
6595 I915_WRITE(EG7, 0);
6596
6597 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006598 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006599
6600 /* Enable PMON + select events */
6601 I915_WRITE(ECR, 0x80000019);
6602
6603 lcfuse = I915_READ(LCFUSE02);
6604
Daniel Vetter20e4d402012-08-08 23:35:39 +02006605 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006606}
6607
Chris Wilsondc979972016-05-10 14:10:04 +01006608void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006609{
Imre Deakb268c692015-12-15 20:10:31 +02006610 /*
6611 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
6612 * requirement.
6613 */
6614 if (!i915.enable_rc6) {
6615 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
6616 intel_runtime_pm_get(dev_priv);
6617 }
Imre Deake6069ca2014-04-18 16:01:02 +03006618
Chris Wilsonb5163db2016-08-10 13:58:24 +01006619 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson773ea9a2016-07-13 09:10:33 +01006620 mutex_lock(&dev_priv->rps.hw_lock);
6621
6622 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01006623 if (IS_CHERRYVIEW(dev_priv))
6624 cherryview_init_gt_powersave(dev_priv);
6625 else if (IS_VALLEYVIEW(dev_priv))
6626 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01006627 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01006628 gen6_init_rps_frequencies(dev_priv);
6629
6630 /* Derive initial user preferences/limits from the hardware limits */
6631 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
6632 dev_priv->rps.cur_freq = dev_priv->rps.idle_freq;
6633
6634 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
6635 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
6636
6637 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
6638 dev_priv->rps.min_freq_softlimit =
6639 max_t(int,
6640 dev_priv->rps.efficient_freq,
6641 intel_freq_opcode(dev_priv, 450));
6642
Chris Wilson99ac9612016-07-13 09:10:34 +01006643 /* After setting max-softlimit, find the overclock max freq */
6644 if (IS_GEN6(dev_priv) ||
6645 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
6646 u32 params = 0;
6647
6648 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
6649 if (params & BIT(31)) { /* OC supported */
6650 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
6651 (dev_priv->rps.max_freq & 0xff) * 50,
6652 (params & 0xff) * 50);
6653 dev_priv->rps.max_freq = params & 0xff;
6654 }
6655 }
6656
Chris Wilson29ecd78d2016-07-13 09:10:35 +01006657 /* Finally allow us to boost to max by default */
6658 dev_priv->rps.boost_freq = dev_priv->rps.max_freq;
6659
Chris Wilson773ea9a2016-07-13 09:10:33 +01006660 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb5163db2016-08-10 13:58:24 +01006661 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson54b4f682016-07-21 21:16:19 +01006662
6663 intel_autoenable_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006664}
6665
Chris Wilsondc979972016-05-10 14:10:04 +01006666void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006667{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03006668 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01006669 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02006670
6671 if (!i915.enable_rc6)
6672 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006673}
6674
Chris Wilson54b4f682016-07-21 21:16:19 +01006675/**
6676 * intel_suspend_gt_powersave - suspend PM work and helper threads
6677 * @dev_priv: i915 device
6678 *
6679 * We don't want to disable RC6 or other features here, we just want
6680 * to make sure any work we've queued has finished and won't bother
6681 * us while we're suspended.
6682 */
6683void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
6684{
6685 if (INTEL_GEN(dev_priv) < 6)
6686 return;
6687
6688 if (cancel_delayed_work_sync(&dev_priv->rps.autoenable_work))
6689 intel_runtime_pm_put(dev_priv);
6690
6691 /* gen6_rps_idle() will be called later to disable interrupts */
6692}
6693
Chris Wilsonb7137e02016-07-13 09:10:37 +01006694void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
6695{
6696 dev_priv->rps.enabled = true; /* force disabling */
6697 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006698
6699 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006700}
6701
Chris Wilsondc979972016-05-10 14:10:04 +01006702void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006703{
Chris Wilsonb7137e02016-07-13 09:10:37 +01006704 if (!READ_ONCE(dev_priv->rps.enabled))
6705 return;
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006706
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006707 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006708
Chris Wilsonb7137e02016-07-13 09:10:37 +01006709 if (INTEL_GEN(dev_priv) >= 9) {
6710 gen9_disable_rc6(dev_priv);
6711 gen9_disable_rps(dev_priv);
6712 } else if (IS_CHERRYVIEW(dev_priv)) {
6713 cherryview_disable_rps(dev_priv);
6714 } else if (IS_VALLEYVIEW(dev_priv)) {
6715 valleyview_disable_rps(dev_priv);
6716 } else if (INTEL_GEN(dev_priv) >= 6) {
6717 gen6_disable_rps(dev_priv);
6718 } else if (IS_IRONLAKE_M(dev_priv)) {
6719 ironlake_disable_drps(dev_priv);
6720 }
6721
6722 dev_priv->rps.enabled = false;
6723 mutex_unlock(&dev_priv->rps.hw_lock);
6724}
6725
6726void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
6727{
Chris Wilson54b4f682016-07-21 21:16:19 +01006728 /* We shouldn't be disabling as we submit, so this should be less
6729 * racy than it appears!
6730 */
Chris Wilsonb7137e02016-07-13 09:10:37 +01006731 if (READ_ONCE(dev_priv->rps.enabled))
6732 return;
6733
6734 /* Powersaving is controlled by the host when inside a VM */
6735 if (intel_vgpu_active(dev_priv))
6736 return;
6737
6738 mutex_lock(&dev_priv->rps.hw_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02006739
Chris Wilsondc979972016-05-10 14:10:04 +01006740 if (IS_CHERRYVIEW(dev_priv)) {
6741 cherryview_enable_rps(dev_priv);
6742 } else if (IS_VALLEYVIEW(dev_priv)) {
6743 valleyview_enable_rps(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006744 } else if (INTEL_GEN(dev_priv) >= 9) {
Chris Wilsondc979972016-05-10 14:10:04 +01006745 gen9_enable_rc6(dev_priv);
6746 gen9_enable_rps(dev_priv);
Rodrigo Vivib976dc52017-01-23 10:32:37 -08006747 if (IS_GEN9_BC(dev_priv))
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006748 gen6_update_ring_freq(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01006749 } else if (IS_BROADWELL(dev_priv)) {
6750 gen8_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006751 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006752 } else if (INTEL_GEN(dev_priv) >= 6) {
Chris Wilsondc979972016-05-10 14:10:04 +01006753 gen6_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006754 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006755 } else if (IS_IRONLAKE_M(dev_priv)) {
6756 ironlake_enable_drps(dev_priv);
6757 intel_init_emon(dev_priv);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006758 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006759
6760 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6761 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6762
6763 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6764 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6765
Chris Wilson54b4f682016-07-21 21:16:19 +01006766 dev_priv->rps.enabled = true;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006767 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006768}
Imre Deakc6df39b2014-04-14 20:24:29 +03006769
Chris Wilson54b4f682016-07-21 21:16:19 +01006770static void __intel_autoenable_gt_powersave(struct work_struct *work)
6771{
6772 struct drm_i915_private *dev_priv =
6773 container_of(work, typeof(*dev_priv), rps.autoenable_work.work);
6774 struct intel_engine_cs *rcs;
6775 struct drm_i915_gem_request *req;
6776
6777 if (READ_ONCE(dev_priv->rps.enabled))
6778 goto out;
6779
Akash Goel3b3f1652016-10-13 22:44:48 +05306780 rcs = dev_priv->engine[RCS];
Chris Wilsone8a9c582016-12-18 15:37:20 +00006781 if (rcs->last_retired_context)
Chris Wilson54b4f682016-07-21 21:16:19 +01006782 goto out;
6783
6784 if (!rcs->init_context)
6785 goto out;
6786
6787 mutex_lock(&dev_priv->drm.struct_mutex);
6788
6789 req = i915_gem_request_alloc(rcs, dev_priv->kernel_context);
6790 if (IS_ERR(req))
6791 goto unlock;
6792
6793 if (!i915.enable_execlists && i915_switch_context(req) == 0)
6794 rcs->init_context(req);
6795
6796 /* Mark the device busy, calling intel_enable_gt_powersave() */
6797 i915_add_request_no_flush(req);
6798
6799unlock:
6800 mutex_unlock(&dev_priv->drm.struct_mutex);
6801out:
6802 intel_runtime_pm_put(dev_priv);
6803}
6804
6805void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv)
6806{
6807 if (READ_ONCE(dev_priv->rps.enabled))
6808 return;
6809
6810 if (IS_IRONLAKE_M(dev_priv)) {
6811 ironlake_enable_drps(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006812 intel_init_emon(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006813 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
6814 /*
6815 * PCU communication is slow and this doesn't need to be
6816 * done at any specific time, so do this out of our fast path
6817 * to make resume and init faster.
6818 *
6819 * We depend on the HW RC6 power context save/restore
6820 * mechanism when entering D3 through runtime PM suspend. So
6821 * disable RPM until RPS/RC6 is properly setup. We can only
6822 * get here via the driver load/system resume/runtime resume
6823 * paths, so the _noresume version is enough (and in case of
6824 * runtime resume it's necessary).
6825 */
6826 if (queue_delayed_work(dev_priv->wq,
6827 &dev_priv->rps.autoenable_work,
6828 round_jiffies_up_relative(HZ)))
6829 intel_runtime_pm_get_noresume(dev_priv);
6830 }
6831}
6832
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006833static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006834{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006835 /*
6836 * On Ibex Peak and Cougar Point, we need to disable clock
6837 * gating for the panel power sequencer or it will fail to
6838 * start up when no ports are active.
6839 */
6840 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6841}
6842
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006843static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006844{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006845 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006846
Damien Lespiau055e3932014-08-18 13:49:10 +01006847 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006848 I915_WRITE(DSPCNTR(pipe),
6849 I915_READ(DSPCNTR(pipe)) |
6850 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006851
6852 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6853 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006854 }
6855}
6856
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006857static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä017636c2013-12-05 15:51:37 +02006858{
Ville Syrjälä017636c2013-12-05 15:51:37 +02006859 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6860 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6861 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6862
6863 /*
6864 * Don't touch WM1S_LP_EN here.
6865 * Doing so could cause underruns.
6866 */
6867}
6868
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006869static void ironlake_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006870{
Damien Lespiau231e54f2012-10-19 17:55:41 +01006871 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006872
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006873 /*
6874 * Required for FBC
6875 * WaFbcDisableDpfcClockGating:ilk
6876 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006877 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6878 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6879 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006880
6881 I915_WRITE(PCH_3DCGDIS0,
6882 MARIUNIT_CLOCK_GATE_DISABLE |
6883 SVSMUNIT_CLOCK_GATE_DISABLE);
6884 I915_WRITE(PCH_3DCGDIS1,
6885 VFMUNIT_CLOCK_GATE_DISABLE);
6886
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006887 /*
6888 * According to the spec the following bits should be set in
6889 * order to enable memory self-refresh
6890 * The bit 22/21 of 0x42004
6891 * The bit 5 of 0x42020
6892 * The bit 15 of 0x45000
6893 */
6894 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6895 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6896 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006897 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006898 I915_WRITE(DISP_ARB_CTL,
6899 (I915_READ(DISP_ARB_CTL) |
6900 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006901
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006902 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006903
6904 /*
6905 * Based on the document from hardware guys the following bits
6906 * should be set unconditionally in order to enable FBC.
6907 * The bit 22 of 0x42000
6908 * The bit 22 of 0x42004
6909 * The bit 7,8,9 of 0x42020.
6910 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01006911 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006912 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006913 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6914 I915_READ(ILK_DISPLAY_CHICKEN1) |
6915 ILK_FBCQ_DIS);
6916 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6917 I915_READ(ILK_DISPLAY_CHICKEN2) |
6918 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006919 }
6920
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006921 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6922
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006923 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6924 I915_READ(ILK_DISPLAY_CHICKEN2) |
6925 ILK_ELPIN_409_SELECT);
6926 I915_WRITE(_3D_CHICKEN2,
6927 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6928 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006929
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006930 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006931 I915_WRITE(CACHE_MODE_0,
6932 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006933
Akash Goel4e046322014-04-04 17:14:38 +05306934 /* WaDisable_RenderCache_OperationalFlush:ilk */
6935 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6936
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006937 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006938
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006939 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006940}
6941
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006942static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006943{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006944 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006945 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006946
6947 /*
6948 * On Ibex Peak and Cougar Point, we need to disable clock
6949 * gating for the panel power sequencer or it will fail to
6950 * start up when no ports are active.
6951 */
Jesse Barnescd664072013-10-02 10:34:19 -07006952 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6953 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6954 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006955 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6956 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006957 /* The below fixes the weird display corruption, a few pixels shifted
6958 * downward, on (only) LVDS of some HP laptops with IVY.
6959 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006960 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006961 val = I915_READ(TRANS_CHICKEN2(pipe));
6962 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6963 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006964 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006965 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006966 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6967 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6968 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006969 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6970 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006971 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006972 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006973 I915_WRITE(TRANS_CHICKEN1(pipe),
6974 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6975 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006976}
6977
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006978static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006979{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006980 uint32_t tmp;
6981
6982 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006983 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6984 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6985 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006986}
6987
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006988static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006989{
Damien Lespiau231e54f2012-10-19 17:55:41 +01006990 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006991
Damien Lespiau231e54f2012-10-19 17:55:41 +01006992 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006993
6994 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6995 I915_READ(ILK_DISPLAY_CHICKEN2) |
6996 ILK_ELPIN_409_SELECT);
6997
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006998 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006999 I915_WRITE(_3D_CHICKEN,
7000 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
7001
Akash Goel4e046322014-04-04 17:14:38 +05307002 /* WaDisable_RenderCache_OperationalFlush:snb */
7003 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7004
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007005 /*
7006 * BSpec recoomends 8x4 when MSAA is used,
7007 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007008 *
7009 * Note that PS/WM thread counts depend on the WIZ hashing
7010 * disable bit, which we don't touch here, but it's good
7011 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007012 */
7013 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007014 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007015
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007016 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007017
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007018 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02007019 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007020
7021 I915_WRITE(GEN6_UCGCTL1,
7022 I915_READ(GEN6_UCGCTL1) |
7023 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
7024 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
7025
7026 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
7027 * gating disable must be set. Failure to set it results in
7028 * flickering pixels due to Z write ordering failures after
7029 * some amount of runtime in the Mesa "fire" demo, and Unigine
7030 * Sanctuary and Tropics, and apparently anything else with
7031 * alpha test or pixel discard.
7032 *
7033 * According to the spec, bit 11 (RCCUNIT) must also be set,
7034 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007035 *
Ville Syrjäläef593182014-01-22 21:32:47 +02007036 * WaDisableRCCUnitClockGating:snb
7037 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007038 */
7039 I915_WRITE(GEN6_UCGCTL2,
7040 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
7041 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
7042
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02007043 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02007044 I915_WRITE(_3D_CHICKEN3,
7045 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007046
7047 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02007048 * Bspec says:
7049 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
7050 * 3DSTATE_SF number of SF output attributes is more than 16."
7051 */
7052 I915_WRITE(_3D_CHICKEN3,
7053 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
7054
7055 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007056 * According to the spec the following bits should be
7057 * set in order to enable memory self-refresh and fbc:
7058 * The bit21 and bit22 of 0x42000
7059 * The bit21 and bit22 of 0x42004
7060 * The bit5 and bit7 of 0x42020
7061 * The bit14 of 0x70180
7062 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01007063 *
7064 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007065 */
7066 I915_WRITE(ILK_DISPLAY_CHICKEN1,
7067 I915_READ(ILK_DISPLAY_CHICKEN1) |
7068 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
7069 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7070 I915_READ(ILK_DISPLAY_CHICKEN2) |
7071 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01007072 I915_WRITE(ILK_DSPCLK_GATE_D,
7073 I915_READ(ILK_DSPCLK_GATE_D) |
7074 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
7075 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007076
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007077 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07007078
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007079 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007080
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007081 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007082}
7083
7084static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
7085{
7086 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
7087
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007088 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02007089 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007090 *
7091 * This actually overrides the dispatch
7092 * mode for all thread types.
7093 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007094 reg &= ~GEN7_FF_SCHED_MASK;
7095 reg |= GEN7_FF_TS_SCHED_HW;
7096 reg |= GEN7_FF_VS_SCHED_HW;
7097 reg |= GEN7_FF_DS_SCHED_HW;
7098
7099 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
7100}
7101
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007102static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007103{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007104 /*
7105 * TODO: this bit should only be enabled when really needed, then
7106 * disabled when not needed anymore in order to save power.
7107 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007108 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007109 I915_WRITE(SOUTH_DSPCLK_GATE_D,
7110 I915_READ(SOUTH_DSPCLK_GATE_D) |
7111 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007112
7113 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03007114 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
7115 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007116 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007117}
7118
Ville Syrjälä712bf362016-10-31 22:37:23 +02007119static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007120{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007121 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03007122 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
7123
7124 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7125 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7126 }
7127}
7128
Imre Deak450174f2016-05-03 15:54:21 +03007129static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
7130 int general_prio_credits,
7131 int high_prio_credits)
7132{
7133 u32 misccpctl;
7134
7135 /* WaTempDisableDOPClkGating:bdw */
7136 misccpctl = I915_READ(GEN7_MISCCPCTL);
7137 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
7138
7139 I915_WRITE(GEN8_L3SQCREG1,
7140 L3_GENERAL_PRIO_CREDITS(general_prio_credits) |
7141 L3_HIGH_PRIO_CREDITS(high_prio_credits));
7142
7143 /*
7144 * Wait at least 100 clocks before re-enabling clock gating.
7145 * See the definition of L3SQCREG1 in BSpec.
7146 */
7147 POSTING_READ(GEN8_L3SQCREG1);
7148 udelay(1);
7149 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
7150}
7151
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007152static void kabylake_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007153{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007154 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007155
7156 /* WaDisableSDEUnitClockGating:kbl */
7157 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7158 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7159 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03007160
7161 /* WaDisableGamClockGating:kbl */
7162 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7163 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7164 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007165
7166 /* WaFbcNukeOnHostModify:kbl */
7167 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7168 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007169}
7170
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007171static void skylake_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007172{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007173 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03007174
7175 /* WAC6entrylatency:skl */
7176 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
7177 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007178
7179 /* WaFbcNukeOnHostModify:skl */
7180 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7181 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007182}
7183
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007184static void broadwell_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007185{
Damien Lespiau07d27e22014-03-03 17:31:46 +00007186 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007187
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007188 ilk_init_lp_watermarks(dev_priv);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007189
Ben Widawskyab57fff2013-12-12 15:28:04 -08007190 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007191 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007192
Ben Widawskyab57fff2013-12-12 15:28:04 -08007193 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007194 I915_WRITE(CHICKEN_PAR1_1,
7195 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
7196
Ben Widawskyab57fff2013-12-12 15:28:04 -08007197 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01007198 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00007199 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02007200 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02007201 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007202 }
Ben Widawsky63801f22013-12-12 17:26:03 -08007203
Ben Widawskyab57fff2013-12-12 15:28:04 -08007204 /* WaVSRefCountFullforceMissDisable:bdw */
7205 /* WaDSRefCountFullforceMissDisable:bdw */
7206 I915_WRITE(GEN7_FF_THREAD_MODE,
7207 I915_READ(GEN7_FF_THREAD_MODE) &
7208 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02007209
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02007210 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7211 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02007212
7213 /* WaDisableSDEUnitClockGating:bdw */
7214 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7215 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00007216
Imre Deak450174f2016-05-03 15:54:21 +03007217 /* WaProgramL3SqcReg1Default:bdw */
7218 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03007219
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007220 /*
7221 * WaGttCachingOffByDefault:bdw
7222 * GTT cache may not work with big pages, so if those
7223 * are ever enabled GTT cache may need to be disabled.
7224 */
7225 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
7226
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03007227 /* WaKVMNotificationOnConfigChange:bdw */
7228 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
7229 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
7230
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007231 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00007232
7233 /* WaDisableDopClockGating:bdw
7234 *
7235 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
7236 * clock gating.
7237 */
7238 I915_WRITE(GEN6_UCGCTL1,
7239 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007240}
7241
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007242static void haswell_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007243{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007244 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007245
Francisco Jerezf3fc4882013-10-02 15:53:16 -07007246 /* L3 caching of data atomics doesn't work -- disable it. */
7247 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
7248 I915_WRITE(HSW_ROW_CHICKEN3,
7249 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
7250
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007251 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007252 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7253 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7254 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7255
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02007256 /* WaVSRefCountFullforceMissDisable:hsw */
7257 I915_WRITE(GEN7_FF_THREAD_MODE,
7258 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007259
Akash Goel4e046322014-04-04 17:14:38 +05307260 /* WaDisable_RenderCache_OperationalFlush:hsw */
7261 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7262
Chia-I Wufe27c602014-01-28 13:29:33 +08007263 /* enable HiZ Raw Stall Optimization */
7264 I915_WRITE(CACHE_MODE_0_GEN7,
7265 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7266
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007267 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007268 I915_WRITE(CACHE_MODE_1,
7269 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007270
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007271 /*
7272 * BSpec recommends 8x4 when MSAA is used,
7273 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007274 *
7275 * Note that PS/WM thread counts depend on the WIZ hashing
7276 * disable bit, which we don't touch here, but it's good
7277 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007278 */
7279 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007280 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007281
Kenneth Graunke94411592014-12-31 16:23:00 -08007282 /* WaSampleCChickenBitEnable:hsw */
7283 I915_WRITE(HALF_SLICE_CHICKEN3,
7284 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7285
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007286 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007287 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7288
Paulo Zanoni90a88642013-05-03 17:23:45 -03007289 /* WaRsPkgCStateDisplayPMReq:hsw */
7290 I915_WRITE(CHICKEN_PAR1_1,
7291 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007292
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007293 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007294}
7295
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007296static void ivybridge_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007297{
Ben Widawsky20848222012-05-04 18:58:59 -07007298 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007299
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007300 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007301
Damien Lespiau231e54f2012-10-19 17:55:41 +01007302 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007303
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007304 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007305 I915_WRITE(_3D_CHICKEN3,
7306 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7307
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007308 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007309 I915_WRITE(IVB_CHICKEN3,
7310 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7311 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7312
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007313 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007314 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07007315 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7316 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007317
Akash Goel4e046322014-04-04 17:14:38 +05307318 /* WaDisable_RenderCache_OperationalFlush:ivb */
7319 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7320
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007321 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007322 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7323 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7324
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007325 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007326 I915_WRITE(GEN7_L3CNTLREG1,
7327 GEN7_WA_FOR_GEN7_L3_CONTROL);
7328 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007329 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007330 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07007331 I915_WRITE(GEN7_ROW_CHICKEN2,
7332 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007333 else {
7334 /* must write both registers */
7335 I915_WRITE(GEN7_ROW_CHICKEN2,
7336 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007337 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7338 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007339 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007340
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007341 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007342 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7343 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7344
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007345 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007346 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007347 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007348 */
7349 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007350 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007351
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007352 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007353 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7354 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7355 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7356
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007357 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007358
7359 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007360
Chris Wilson22721342014-03-04 09:41:43 +00007361 if (0) { /* causes HiZ corruption on ivb:gt1 */
7362 /* enable HiZ Raw Stall Optimization */
7363 I915_WRITE(CACHE_MODE_0_GEN7,
7364 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7365 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007366
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007367 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007368 I915_WRITE(CACHE_MODE_1,
7369 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007370
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007371 /*
7372 * BSpec recommends 8x4 when MSAA is used,
7373 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007374 *
7375 * Note that PS/WM thread counts depend on the WIZ hashing
7376 * disable bit, which we don't touch here, but it's good
7377 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007378 */
7379 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007380 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007381
Ben Widawsky20848222012-05-04 18:58:59 -07007382 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7383 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7384 snpcr |= GEN6_MBC_SNPCR_MED;
7385 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007386
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007387 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007388 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007389
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007390 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007391}
7392
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007393static void valleyview_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007394{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007395 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007396 I915_WRITE(_3D_CHICKEN3,
7397 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7398
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007399 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007400 I915_WRITE(IVB_CHICKEN3,
7401 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7402 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7403
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007404 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007405 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007406 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007407 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7408 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007409
Akash Goel4e046322014-04-04 17:14:38 +05307410 /* WaDisable_RenderCache_OperationalFlush:vlv */
7411 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7412
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007413 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007414 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7415 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7416
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007417 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007418 I915_WRITE(GEN7_ROW_CHICKEN2,
7419 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7420
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007421 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007422 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7423 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7424 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7425
Ville Syrjälä46680e02014-01-22 21:33:01 +02007426 gen7_setup_fixed_func_scheduler(dev_priv);
7427
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007428 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007429 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007430 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007431 */
7432 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007433 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007434
Akash Goelc98f5062014-03-24 23:00:07 +05307435 /* WaDisableL3Bank2xClockGate:vlv
7436 * Disabling L3 clock gating- MMIO 940c[25] = 1
7437 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7438 I915_WRITE(GEN7_UCGCTL4,
7439 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007440
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007441 /*
7442 * BSpec says this must be set, even though
7443 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7444 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007445 I915_WRITE(CACHE_MODE_1,
7446 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007447
7448 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007449 * BSpec recommends 8x4 when MSAA is used,
7450 * however in practice 16x4 seems fastest.
7451 *
7452 * Note that PS/WM thread counts depend on the WIZ hashing
7453 * disable bit, which we don't touch here, but it's good
7454 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7455 */
7456 I915_WRITE(GEN7_GT_MODE,
7457 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7458
7459 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007460 * WaIncreaseL3CreditsForVLVB0:vlv
7461 * This is the hardware default actually.
7462 */
7463 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7464
7465 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007466 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007467 * Disable clock gating on th GCFG unit to prevent a delay
7468 * in the reporting of vblank events.
7469 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007470 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007471}
7472
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007473static void cherryview_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007474{
Ville Syrjälä232ce332014-04-09 13:28:35 +03007475 /* WaVSRefCountFullforceMissDisable:chv */
7476 /* WaDSRefCountFullforceMissDisable:chv */
7477 I915_WRITE(GEN7_FF_THREAD_MODE,
7478 I915_READ(GEN7_FF_THREAD_MODE) &
7479 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007480
7481 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7482 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7483 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007484
7485 /* WaDisableCSUnitClockGating:chv */
7486 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7487 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007488
7489 /* WaDisableSDEUnitClockGating:chv */
7490 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7491 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007492
7493 /*
Imre Deak450174f2016-05-03 15:54:21 +03007494 * WaProgramL3SqcReg1Default:chv
7495 * See gfxspecs/Related Documents/Performance Guide/
7496 * LSQC Setting Recommendations.
7497 */
7498 gen8_set_l3sqc_credits(dev_priv, 38, 2);
7499
7500 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007501 * GTT cache may not work with big pages, so if those
7502 * are ever enabled GTT cache may need to be disabled.
7503 */
7504 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007505}
7506
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007507static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007508{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007509 uint32_t dspclk_gate;
7510
7511 I915_WRITE(RENCLK_GATE_D1, 0);
7512 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7513 GS_UNIT_CLOCK_GATE_DISABLE |
7514 CL_UNIT_CLOCK_GATE_DISABLE);
7515 I915_WRITE(RAMCLK_GATE_D, 0);
7516 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7517 OVRUNIT_CLOCK_GATE_DISABLE |
7518 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007519 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007520 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7521 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007522
7523 /* WaDisableRenderCachePipelinedFlush */
7524 I915_WRITE(CACHE_MODE_0,
7525 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007526
Akash Goel4e046322014-04-04 17:14:38 +05307527 /* WaDisable_RenderCache_OperationalFlush:g4x */
7528 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7529
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007530 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007531}
7532
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007533static void crestline_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007534{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007535 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7536 I915_WRITE(RENCLK_GATE_D2, 0);
7537 I915_WRITE(DSPCLK_GATE_D, 0);
7538 I915_WRITE(RAMCLK_GATE_D, 0);
7539 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007540 I915_WRITE(MI_ARB_STATE,
7541 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307542
7543 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7544 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007545}
7546
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007547static void broadwater_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007548{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007549 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7550 I965_RCC_CLOCK_GATE_DISABLE |
7551 I965_RCPB_CLOCK_GATE_DISABLE |
7552 I965_ISC_CLOCK_GATE_DISABLE |
7553 I965_FBC_CLOCK_GATE_DISABLE);
7554 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007555 I915_WRITE(MI_ARB_STATE,
7556 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307557
7558 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7559 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007560}
7561
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007562static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007563{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007564 u32 dstate = I915_READ(D_STATE);
7565
7566 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7567 DSTATE_DOT_CLOCK_GATING;
7568 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007569
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007570 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01007571 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007572
7573 /* IIR "flip pending" means done if this bit is set */
7574 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007575
7576 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007577 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007578
7579 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7580 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007581
7582 I915_WRITE(MI_ARB_STATE,
7583 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007584}
7585
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007586static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007587{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007588 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007589
7590 /* interrupts should cause a wake up from C3 */
7591 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7592 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007593
7594 I915_WRITE(MEM_MODE,
7595 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007596}
7597
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007598static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007599{
Ville Syrjälä10383922014-08-15 01:21:54 +03007600 I915_WRITE(MEM_MODE,
7601 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7602 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007603}
7604
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007605void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007606{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007607 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007608}
7609
Ville Syrjälä712bf362016-10-31 22:37:23 +02007610void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007611{
Ville Syrjälä712bf362016-10-31 22:37:23 +02007612 if (HAS_PCH_LPT(dev_priv))
7613 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03007614}
7615
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007616static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02007617{
7618 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
7619}
7620
7621/**
7622 * intel_init_clock_gating_hooks - setup the clock gating hooks
7623 * @dev_priv: device private
7624 *
7625 * Setup the hooks that configure which clocks of a given platform can be
7626 * gated and also apply various GT and display specific workarounds for these
7627 * platforms. Note that some GT specific workarounds are applied separately
7628 * when GPU contexts or batchbuffers start their execution.
7629 */
7630void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7631{
7632 if (IS_SKYLAKE(dev_priv))
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007633 dev_priv->display.init_clock_gating = skylake_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007634 else if (IS_KABYLAKE(dev_priv))
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007635 dev_priv->display.init_clock_gating = kabylake_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007636 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007637 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007638 else if (IS_GEMINILAKE(dev_priv))
7639 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007640 else if (IS_BROADWELL(dev_priv))
7641 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
7642 else if (IS_CHERRYVIEW(dev_priv))
7643 dev_priv->display.init_clock_gating = cherryview_init_clock_gating;
7644 else if (IS_HASWELL(dev_priv))
7645 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
7646 else if (IS_IVYBRIDGE(dev_priv))
7647 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
7648 else if (IS_VALLEYVIEW(dev_priv))
7649 dev_priv->display.init_clock_gating = valleyview_init_clock_gating;
7650 else if (IS_GEN6(dev_priv))
7651 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
7652 else if (IS_GEN5(dev_priv))
7653 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
7654 else if (IS_G4X(dev_priv))
7655 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007656 else if (IS_I965GM(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007657 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007658 else if (IS_I965G(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007659 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7660 else if (IS_GEN3(dev_priv))
7661 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7662 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7663 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7664 else if (IS_GEN2(dev_priv))
7665 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7666 else {
7667 MISSING_CASE(INTEL_DEVID(dev_priv));
7668 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7669 }
7670}
7671
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007672/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007673void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007674{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007675 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007676
Daniel Vetterc921aba2012-04-26 23:28:17 +02007677 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007678 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007679 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007680 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007681 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02007682
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007683 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007684 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007685 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01007686 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01007687 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07007688 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007689 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007690 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007691
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007692 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007693 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007694 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007695 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007696 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007697 dev_priv->display.compute_intermediate_wm =
7698 ilk_compute_intermediate_wm;
7699 dev_priv->display.initial_watermarks =
7700 ilk_initial_watermarks;
7701 dev_priv->display.optimize_watermarks =
7702 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007703 } else {
7704 DRM_DEBUG_KMS("Failed to read display plane latency. "
7705 "Disable CxSR\n");
7706 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02007707 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007708 vlv_setup_wm_latency(dev_priv);
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007709 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007710 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007711 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007712 dev_priv->is_ddr3,
7713 dev_priv->fsb_freq,
7714 dev_priv->mem_freq)) {
7715 DRM_INFO("failed to find known CxSR latency "
7716 "(found ddr%s fsb freq %d, mem freq %d), "
7717 "disabling CxSR\n",
7718 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7719 dev_priv->fsb_freq, dev_priv->mem_freq);
7720 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007721 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007722 dev_priv->display.update_wm = NULL;
7723 } else
7724 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01007725 } else if (IS_G4X(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007726 dev_priv->display.update_wm = g4x_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007727 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007728 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007729 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007730 dev_priv->display.update_wm = i9xx_update_wm;
7731 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007732 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007733 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007734 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007735 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007736 } else {
7737 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007738 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007739 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007740 } else {
7741 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007742 }
7743}
7744
Lyude87660502016-08-17 15:55:53 -04007745static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
7746{
7747 uint32_t flags =
7748 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7749
7750 switch (flags) {
7751 case GEN6_PCODE_SUCCESS:
7752 return 0;
7753 case GEN6_PCODE_UNIMPLEMENTED_CMD:
7754 case GEN6_PCODE_ILLEGAL_CMD:
7755 return -ENXIO;
7756 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01007757 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04007758 return -EOVERFLOW;
7759 case GEN6_PCODE_TIMEOUT:
7760 return -ETIMEDOUT;
7761 default:
7762 MISSING_CASE(flags)
7763 return 0;
7764 }
7765}
7766
7767static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
7768{
7769 uint32_t flags =
7770 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7771
7772 switch (flags) {
7773 case GEN6_PCODE_SUCCESS:
7774 return 0;
7775 case GEN6_PCODE_ILLEGAL_CMD:
7776 return -ENXIO;
7777 case GEN7_PCODE_TIMEOUT:
7778 return -ETIMEDOUT;
7779 case GEN7_PCODE_ILLEGAL_DATA:
7780 return -EINVAL;
7781 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
7782 return -EOVERFLOW;
7783 default:
7784 MISSING_CASE(flags);
7785 return 0;
7786 }
7787}
7788
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007789int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007790{
Lyude87660502016-08-17 15:55:53 -04007791 int status;
7792
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007793 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007794
Chris Wilson3f5582d2016-06-30 15:32:45 +01007795 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7796 * use te fw I915_READ variants to reduce the amount of work
7797 * required when reading/writing.
7798 */
7799
7800 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007801 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7802 return -EAGAIN;
7803 }
7804
Chris Wilson3f5582d2016-06-30 15:32:45 +01007805 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
7806 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
7807 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007808
Chris Wilson3f5582d2016-06-30 15:32:45 +01007809 if (intel_wait_for_register_fw(dev_priv,
7810 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7811 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007812 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7813 return -ETIMEDOUT;
7814 }
7815
Chris Wilson3f5582d2016-06-30 15:32:45 +01007816 *val = I915_READ_FW(GEN6_PCODE_DATA);
7817 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007818
Lyude87660502016-08-17 15:55:53 -04007819 if (INTEL_GEN(dev_priv) > 6)
7820 status = gen7_check_mailbox_status(dev_priv);
7821 else
7822 status = gen6_check_mailbox_status(dev_priv);
7823
7824 if (status) {
7825 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed: %d\n",
7826 status);
7827 return status;
7828 }
7829
Ben Widawsky42c05262012-09-26 10:34:00 -07007830 return 0;
7831}
7832
Chris Wilson3f5582d2016-06-30 15:32:45 +01007833int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04007834 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007835{
Lyude87660502016-08-17 15:55:53 -04007836 int status;
7837
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007838 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007839
Chris Wilson3f5582d2016-06-30 15:32:45 +01007840 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7841 * use te fw I915_READ variants to reduce the amount of work
7842 * required when reading/writing.
7843 */
7844
7845 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007846 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7847 return -EAGAIN;
7848 }
7849
Chris Wilson3f5582d2016-06-30 15:32:45 +01007850 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02007851 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01007852 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007853
Chris Wilson3f5582d2016-06-30 15:32:45 +01007854 if (intel_wait_for_register_fw(dev_priv,
7855 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7856 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007857 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7858 return -ETIMEDOUT;
7859 }
7860
Chris Wilson3f5582d2016-06-30 15:32:45 +01007861 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007862
Lyude87660502016-08-17 15:55:53 -04007863 if (INTEL_GEN(dev_priv) > 6)
7864 status = gen7_check_mailbox_status(dev_priv);
7865 else
7866 status = gen6_check_mailbox_status(dev_priv);
7867
7868 if (status) {
7869 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed: %d\n",
7870 status);
7871 return status;
7872 }
7873
Ben Widawsky42c05262012-09-26 10:34:00 -07007874 return 0;
7875}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007876
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007877static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
7878 u32 request, u32 reply_mask, u32 reply,
7879 u32 *status)
7880{
7881 u32 val = request;
7882
7883 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
7884
7885 return *status || ((val & reply_mask) == reply);
7886}
7887
7888/**
7889 * skl_pcode_request - send PCODE request until acknowledgment
7890 * @dev_priv: device private
7891 * @mbox: PCODE mailbox ID the request is targeted for
7892 * @request: request ID
7893 * @reply_mask: mask used to check for request acknowledgment
7894 * @reply: value used to check for request acknowledgment
7895 * @timeout_base_ms: timeout for polling with preemption enabled
7896 *
7897 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
7898 * reports an error or an overall timeout of @timeout_base_ms+10 ms expires.
7899 * The request is acknowledged once the PCODE reply dword equals @reply after
7900 * applying @reply_mask. Polling is first attempted with preemption enabled
7901 * for @timeout_base_ms and if this times out for another 10 ms with
7902 * preemption disabled.
7903 *
7904 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
7905 * other error as reported by PCODE.
7906 */
7907int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
7908 u32 reply_mask, u32 reply, int timeout_base_ms)
7909{
7910 u32 status;
7911 int ret;
7912
7913 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
7914
7915#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
7916 &status)
7917
7918 /*
7919 * Prime the PCODE by doing a request first. Normally it guarantees
7920 * that a subsequent request, at most @timeout_base_ms later, succeeds.
7921 * _wait_for() doesn't guarantee when its passed condition is evaluated
7922 * first, so send the first request explicitly.
7923 */
7924 if (COND) {
7925 ret = 0;
7926 goto out;
7927 }
7928 ret = _wait_for(COND, timeout_base_ms * 1000, 10);
7929 if (!ret)
7930 goto out;
7931
7932 /*
7933 * The above can time out if the number of requests was low (2 in the
7934 * worst case) _and_ PCODE was busy for some reason even after a
7935 * (queued) request and @timeout_base_ms delay. As a workaround retry
7936 * the poll with preemption disabled to maximize the number of
7937 * requests. Increase the timeout from @timeout_base_ms to 10ms to
7938 * account for interrupts that could reduce the number of these
7939 * requests.
7940 */
7941 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
7942 WARN_ON_ONCE(timeout_base_ms > 3);
7943 preempt_disable();
7944 ret = wait_for_atomic(COND, 10);
7945 preempt_enable();
7946
7947out:
7948 return ret ? ret : status;
7949#undef COND
7950}
7951
Ville Syrjälädd06f882014-11-10 22:55:12 +02007952static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7953{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007954 /*
7955 * N = val - 0xb7
7956 * Slow = Fast = GPLL ref * N
7957 */
7958 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007959}
7960
Fengguang Wub55dd642014-07-12 11:21:39 +02007961static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007962{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007963 return DIV_ROUND_CLOSEST(1000 * val, dev_priv->rps.gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007964}
7965
Fengguang Wub55dd642014-07-12 11:21:39 +02007966static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307967{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007968 /*
7969 * N = val / 2
7970 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
7971 */
7972 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307973}
7974
Fengguang Wub55dd642014-07-12 11:21:39 +02007975static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307976{
Ville Syrjälä1c147622014-08-18 14:42:43 +03007977 /* CHV needs even values */
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007978 return DIV_ROUND_CLOSEST(2 * 1000 * val, dev_priv->rps.gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307979}
7980
Ville Syrjälä616bc822015-01-23 21:04:25 +02007981int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7982{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007983 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007984 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
7985 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007986 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007987 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007988 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007989 return byt_gpu_freq(dev_priv, val);
7990 else
7991 return val * GT_FREQUENCY_MULTIPLIER;
7992}
7993
Ville Syrjälä616bc822015-01-23 21:04:25 +02007994int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
7995{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007996 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007997 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
7998 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007999 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008000 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008001 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008002 return byt_freq_opcode(dev_priv, val);
8003 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008004 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05308005}
8006
Chris Wilson6ad790c2015-04-07 16:20:31 +01008007struct request_boost {
8008 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02008009 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008010};
8011
8012static void __intel_rps_boost_work(struct work_struct *work)
8013{
8014 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01008015 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008016
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008017 if (!i915_gem_request_completed(req))
Chris Wilsonc0336662016-05-06 15:40:21 +01008018 gen6_rps_boost(req->i915, NULL, req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008019
Chris Wilsone8a261e2016-07-20 13:31:49 +01008020 i915_gem_request_put(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008021 kfree(boost);
8022}
8023
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008024void intel_queue_rps_boost_for_request(struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008025{
8026 struct request_boost *boost;
8027
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008028 if (req == NULL || INTEL_GEN(req->i915) < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008029 return;
8030
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008031 if (i915_gem_request_completed(req))
Chris Wilsone61b9952015-04-27 13:41:24 +01008032 return;
8033
Chris Wilson6ad790c2015-04-07 16:20:31 +01008034 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
8035 if (boost == NULL)
8036 return;
8037
Chris Wilsone8a261e2016-07-20 13:31:49 +01008038 boost->req = i915_gem_request_get(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008039
8040 INIT_WORK(&boost->work, __intel_rps_boost_work);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008041 queue_work(req->i915->wq, &boost->work);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008042}
8043
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00008044void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01008045{
Daniel Vetterf742a552013-12-06 10:17:53 +01008046 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01008047 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01008048
Chris Wilson54b4f682016-07-21 21:16:19 +01008049 INIT_DELAYED_WORK(&dev_priv->rps.autoenable_work,
8050 __intel_autoenable_gt_powersave);
Chris Wilson1854d5c2015-04-07 16:20:32 +01008051 INIT_LIST_HEAD(&dev_priv->rps.clients);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03008052
Paulo Zanoni33688d92014-03-07 20:08:19 -03008053 dev_priv->pm.suspended = false;
Imre Deak1f814da2015-12-16 02:52:19 +02008054 atomic_set(&dev_priv->pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01008055}