blob: b00c95e4a81f6e5766796e972f52ff40f44027cb [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 */
Jani Nikula8aeaf642017-02-15 17:21:37 +0200102 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
103 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +0200104}
105
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200106static void glk_init_clock_gating(struct drm_i915_private *dev_priv)
107{
108 gen9_init_clock_gating(dev_priv);
109
110 /*
111 * WaDisablePWMClockGating:glk
112 * Backlight PWM may stop in the asserted state, causing backlight
113 * to stay fully on.
114 */
115 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
116 PWM1_GATING_DIS | PWM2_GATING_DIS);
Ander Conselvan de Oliveiraf4f4b592017-02-22 08:34:29 +0200117
118 /* WaDDIIOTimeout:glk */
119 if (IS_GLK_REVID(dev_priv, 0, GLK_REVID_A1)) {
120 u32 val = I915_READ(CHICKEN_MISC_2);
121 val &= ~(GLK_CL0_PWR_DOWN |
122 GLK_CL1_PWR_DOWN |
123 GLK_CL2_PWR_DOWN);
124 I915_WRITE(CHICKEN_MISC_2, val);
125 }
126
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200127}
128
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200129static void i915_pineview_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200130{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200131 u32 tmp;
132
133 tmp = I915_READ(CLKCFG);
134
135 switch (tmp & CLKCFG_FSB_MASK) {
136 case CLKCFG_FSB_533:
137 dev_priv->fsb_freq = 533; /* 133*4 */
138 break;
139 case CLKCFG_FSB_800:
140 dev_priv->fsb_freq = 800; /* 200*4 */
141 break;
142 case CLKCFG_FSB_667:
143 dev_priv->fsb_freq = 667; /* 167*4 */
144 break;
145 case CLKCFG_FSB_400:
146 dev_priv->fsb_freq = 400; /* 100*4 */
147 break;
148 }
149
150 switch (tmp & CLKCFG_MEM_MASK) {
151 case CLKCFG_MEM_533:
152 dev_priv->mem_freq = 533;
153 break;
154 case CLKCFG_MEM_667:
155 dev_priv->mem_freq = 667;
156 break;
157 case CLKCFG_MEM_800:
158 dev_priv->mem_freq = 800;
159 break;
160 }
161
162 /* detect pineview DDR3 setting */
163 tmp = I915_READ(CSHRDDR3CTL);
164 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
165}
166
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200167static void i915_ironlake_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200168{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200169 u16 ddrpll, csipll;
170
171 ddrpll = I915_READ16(DDRMPLL1);
172 csipll = I915_READ16(CSIPLL0);
173
174 switch (ddrpll & 0xff) {
175 case 0xc:
176 dev_priv->mem_freq = 800;
177 break;
178 case 0x10:
179 dev_priv->mem_freq = 1066;
180 break;
181 case 0x14:
182 dev_priv->mem_freq = 1333;
183 break;
184 case 0x18:
185 dev_priv->mem_freq = 1600;
186 break;
187 default:
188 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
189 ddrpll & 0xff);
190 dev_priv->mem_freq = 0;
191 break;
192 }
193
Daniel Vetter20e4d402012-08-08 23:35:39 +0200194 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200195
196 switch (csipll & 0x3ff) {
197 case 0x00c:
198 dev_priv->fsb_freq = 3200;
199 break;
200 case 0x00e:
201 dev_priv->fsb_freq = 3733;
202 break;
203 case 0x010:
204 dev_priv->fsb_freq = 4266;
205 break;
206 case 0x012:
207 dev_priv->fsb_freq = 4800;
208 break;
209 case 0x014:
210 dev_priv->fsb_freq = 5333;
211 break;
212 case 0x016:
213 dev_priv->fsb_freq = 5866;
214 break;
215 case 0x018:
216 dev_priv->fsb_freq = 6400;
217 break;
218 default:
219 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
220 csipll & 0x3ff);
221 dev_priv->fsb_freq = 0;
222 break;
223 }
224
225 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200226 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200227 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200228 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200229 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200230 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200231 }
232}
233
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300234static const struct cxsr_latency cxsr_latency_table[] = {
235 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
236 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
237 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
238 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
239 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
240
241 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
242 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
243 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
244 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
245 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
246
247 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
248 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
249 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
250 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
251 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
252
253 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
254 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
255 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
256 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
257 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
258
259 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
260 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
261 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
262 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
263 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
264
265 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
266 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
267 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
268 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
269 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
270};
271
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100272static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
273 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300274 int fsb,
275 int mem)
276{
277 const struct cxsr_latency *latency;
278 int i;
279
280 if (fsb == 0 || mem == 0)
281 return NULL;
282
283 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
284 latency = &cxsr_latency_table[i];
285 if (is_desktop == latency->is_desktop &&
286 is_ddr3 == latency->is_ddr3 &&
287 fsb == latency->fsb_freq && mem == latency->mem_freq)
288 return latency;
289 }
290
291 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
292
293 return NULL;
294}
295
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200296static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
297{
298 u32 val;
299
300 mutex_lock(&dev_priv->rps.hw_lock);
301
302 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
303 if (enable)
304 val &= ~FORCE_DDR_HIGH_FREQ;
305 else
306 val |= FORCE_DDR_HIGH_FREQ;
307 val &= ~FORCE_DDR_LOW_FREQ;
308 val |= FORCE_DDR_FREQ_REQ_ACK;
309 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
310
311 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
312 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
313 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
314
315 mutex_unlock(&dev_priv->rps.hw_lock);
316}
317
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200318static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
319{
320 u32 val;
321
322 mutex_lock(&dev_priv->rps.hw_lock);
323
324 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
325 if (enable)
326 val |= DSP_MAXFIFO_PM5_ENABLE;
327 else
328 val &= ~DSP_MAXFIFO_PM5_ENABLE;
329 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
330
331 mutex_unlock(&dev_priv->rps.hw_lock);
332}
333
Ville Syrjäläf4998962015-03-10 17:02:21 +0200334#define FW_WM(value, plane) \
335 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
336
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200337static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300338{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200339 bool was_enabled;
Imre Deak5209b1f2014-07-01 12:36:17 +0300340 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300341
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100342 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200343 was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300344 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300345 POSTING_READ(FW_BLC_SELF_VLV);
Jani Nikulac0f86832016-12-07 12:13:04 +0200346 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200347 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300348 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300349 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200350 } else if (IS_PINEVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200351 val = I915_READ(DSPFW3);
352 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
353 if (enable)
354 val |= PINEVIEW_SELF_REFRESH_EN;
355 else
356 val &= ~PINEVIEW_SELF_REFRESH_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300357 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300358 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100359 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200360 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300361 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
362 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
363 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300364 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100365 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300366 /*
367 * FIXME can't find a bit like this for 915G, and
368 * and yet it does have the related watermark in
369 * FW_BLC_SELF. What's going on?
370 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200371 was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300372 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
373 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
374 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300375 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300376 } else {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200377 return false;
Imre Deak5209b1f2014-07-01 12:36:17 +0300378 }
379
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200380 DRM_DEBUG_KMS("memory self-refresh is %s (was %s)\n",
381 enableddisabled(enable),
382 enableddisabled(was_enabled));
383
384 return was_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300385}
386
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200387bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200388{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200389 bool ret;
390
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200391 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200392 ret = _intel_set_memory_cxsr(dev_priv, enable);
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200393 dev_priv->wm.vlv.cxsr = enable;
394 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200395
396 return ret;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200397}
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200398
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300399/*
400 * Latency for FIFO fetches is dependent on several factors:
401 * - memory configuration (speed, channels)
402 * - chipset
403 * - current MCH state
404 * It can be fairly high in some situations, so here we assume a fairly
405 * pessimal value. It's a tradeoff between extra memory fetches (if we
406 * set this value too high, the FIFO will fetch frequently to stay full)
407 * and power consumption (set it too low to save power and we might see
408 * FIFO underruns and display "flicker").
409 *
410 * A value of 5us seems to be a good balance; safe for very low end
411 * platforms but not overly aggressive on lower latency configs.
412 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100413static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300414
Ville Syrjäläb5004722015-03-05 21:19:47 +0200415#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
416 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
417
Ville Syrjälä49845a22016-11-22 18:02:01 +0200418static int vlv_get_fifo_size(struct intel_plane *plane)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200419{
Ville Syrjälä49845a22016-11-22 18:02:01 +0200420 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläb5004722015-03-05 21:19:47 +0200421 int sprite0_start, sprite1_start, size;
422
Ville Syrjälä49845a22016-11-22 18:02:01 +0200423 if (plane->id == PLANE_CURSOR)
424 return 63;
425
426 switch (plane->pipe) {
Ville Syrjäläb5004722015-03-05 21:19:47 +0200427 uint32_t dsparb, dsparb2, dsparb3;
428 case PIPE_A:
429 dsparb = I915_READ(DSPARB);
430 dsparb2 = I915_READ(DSPARB2);
431 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
432 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
433 break;
434 case PIPE_B:
435 dsparb = I915_READ(DSPARB);
436 dsparb2 = I915_READ(DSPARB2);
437 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
438 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
439 break;
440 case PIPE_C:
441 dsparb2 = I915_READ(DSPARB2);
442 dsparb3 = I915_READ(DSPARB3);
443 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
444 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
445 break;
446 default:
447 return 0;
448 }
449
Ville Syrjälä49845a22016-11-22 18:02:01 +0200450 switch (plane->id) {
451 case PLANE_PRIMARY:
Ville Syrjäläb5004722015-03-05 21:19:47 +0200452 size = sprite0_start;
453 break;
Ville Syrjälä49845a22016-11-22 18:02:01 +0200454 case PLANE_SPRITE0:
Ville Syrjäläb5004722015-03-05 21:19:47 +0200455 size = sprite1_start - sprite0_start;
456 break;
Ville Syrjälä49845a22016-11-22 18:02:01 +0200457 case PLANE_SPRITE1:
Ville Syrjäläb5004722015-03-05 21:19:47 +0200458 size = 512 - 1 - sprite1_start;
459 break;
460 default:
461 return 0;
462 }
463
Ville Syrjälä49845a22016-11-22 18:02:01 +0200464 DRM_DEBUG_KMS("%s FIFO size: %d\n", plane->base.name, size);
Ville Syrjäläb5004722015-03-05 21:19:47 +0200465
466 return size;
467}
468
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200469static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300470{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300471 uint32_t dsparb = I915_READ(DSPARB);
472 int size;
473
474 size = dsparb & 0x7f;
475 if (plane)
476 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
477
478 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
479 plane ? "B" : "A", size);
480
481 return size;
482}
483
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200484static int i830_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300485{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300486 uint32_t dsparb = I915_READ(DSPARB);
487 int size;
488
489 size = dsparb & 0x1ff;
490 if (plane)
491 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
492 size >>= 1; /* Convert to cachelines */
493
494 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
495 plane ? "B" : "A", size);
496
497 return size;
498}
499
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200500static int i845_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300501{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300502 uint32_t dsparb = I915_READ(DSPARB);
503 int size;
504
505 size = dsparb & 0x7f;
506 size >>= 2; /* Convert to cachelines */
507
508 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
509 plane ? "B" : "A",
510 size);
511
512 return size;
513}
514
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300515/* Pineview has different values for various configs */
516static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300517 .fifo_size = PINEVIEW_DISPLAY_FIFO,
518 .max_wm = PINEVIEW_MAX_WM,
519 .default_wm = PINEVIEW_DFT_WM,
520 .guard_size = PINEVIEW_GUARD_WM,
521 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300522};
523static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300524 .fifo_size = PINEVIEW_DISPLAY_FIFO,
525 .max_wm = PINEVIEW_MAX_WM,
526 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
527 .guard_size = PINEVIEW_GUARD_WM,
528 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300529};
530static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300531 .fifo_size = PINEVIEW_CURSOR_FIFO,
532 .max_wm = PINEVIEW_CURSOR_MAX_WM,
533 .default_wm = PINEVIEW_CURSOR_DFT_WM,
534 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
535 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300536};
537static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300538 .fifo_size = PINEVIEW_CURSOR_FIFO,
539 .max_wm = PINEVIEW_CURSOR_MAX_WM,
540 .default_wm = PINEVIEW_CURSOR_DFT_WM,
541 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
542 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300543};
544static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300545 .fifo_size = G4X_FIFO_SIZE,
546 .max_wm = G4X_MAX_WM,
547 .default_wm = G4X_MAX_WM,
548 .guard_size = 2,
549 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300550};
551static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300552 .fifo_size = I965_CURSOR_FIFO,
553 .max_wm = I965_CURSOR_MAX_WM,
554 .default_wm = I965_CURSOR_DFT_WM,
555 .guard_size = 2,
556 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300557};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300558static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300559 .fifo_size = I965_CURSOR_FIFO,
560 .max_wm = I965_CURSOR_MAX_WM,
561 .default_wm = I965_CURSOR_DFT_WM,
562 .guard_size = 2,
563 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300564};
565static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300566 .fifo_size = I945_FIFO_SIZE,
567 .max_wm = I915_MAX_WM,
568 .default_wm = 1,
569 .guard_size = 2,
570 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300571};
572static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300573 .fifo_size = I915_FIFO_SIZE,
574 .max_wm = I915_MAX_WM,
575 .default_wm = 1,
576 .guard_size = 2,
577 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300578};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300579static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300580 .fifo_size = I855GM_FIFO_SIZE,
581 .max_wm = I915_MAX_WM,
582 .default_wm = 1,
583 .guard_size = 2,
584 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300585};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300586static const struct intel_watermark_params i830_bc_wm_info = {
587 .fifo_size = I855GM_FIFO_SIZE,
588 .max_wm = I915_MAX_WM/2,
589 .default_wm = 1,
590 .guard_size = 2,
591 .cacheline_size = I830_FIFO_LINE_SIZE,
592};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200593static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300594 .fifo_size = I830_FIFO_SIZE,
595 .max_wm = I915_MAX_WM,
596 .default_wm = 1,
597 .guard_size = 2,
598 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300599};
600
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300601/**
602 * intel_calculate_wm - calculate watermark level
603 * @clock_in_khz: pixel clock
604 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200605 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300606 * @latency_ns: memory latency for the platform
607 *
608 * Calculate the watermark level (the level at which the display plane will
609 * start fetching from memory again). Each chip has a different display
610 * FIFO size and allocation, so the caller needs to figure that out and pass
611 * in the correct intel_watermark_params structure.
612 *
613 * As the pixel clock runs, the FIFO will be drained at a rate that depends
614 * on the pixel size. When it reaches the watermark level, it'll start
615 * fetching FIFO line sized based chunks from memory until the FIFO fills
616 * past the watermark point. If the FIFO drains completely, a FIFO underrun
617 * will occur, and a display engine hang could result.
618 */
619static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
620 const struct intel_watermark_params *wm,
Ville Syrjäläac484962016-01-20 21:05:26 +0200621 int fifo_size, int cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300622 unsigned long latency_ns)
623{
624 long entries_required, wm_size;
625
626 /*
627 * Note: we need to make sure we don't overflow for various clock &
628 * latency values.
629 * clocks go from a few thousand to several hundred thousand.
630 * latency is usually a few thousand
631 */
Ville Syrjäläac484962016-01-20 21:05:26 +0200632 entries_required = ((clock_in_khz / 1000) * cpp * latency_ns) /
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300633 1000;
634 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
635
636 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
637
638 wm_size = fifo_size - (entries_required + wm->guard_size);
639
640 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
641
642 /* Don't promote wm_size to unsigned... */
643 if (wm_size > (long)wm->max_wm)
644 wm_size = wm->max_wm;
645 if (wm_size <= 0)
646 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300647
648 /*
649 * Bspec seems to indicate that the value shouldn't be lower than
650 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
651 * Lets go for 8 which is the burst size since certain platforms
652 * already use a hardcoded 8 (which is what the spec says should be
653 * done).
654 */
655 if (wm_size <= 8)
656 wm_size = 8;
657
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300658 return wm_size;
659}
660
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200661static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300662{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200663 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300664
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200665 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200666 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300667 if (enabled)
668 return NULL;
669 enabled = crtc;
670 }
671 }
672
673 return enabled;
674}
675
Ville Syrjälä432081b2016-10-31 22:37:03 +0200676static void pineview_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300677{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200678 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200679 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300680 const struct cxsr_latency *latency;
681 u32 reg;
682 unsigned long wm;
683
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100684 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
685 dev_priv->is_ddr3,
686 dev_priv->fsb_freq,
687 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300688 if (!latency) {
689 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300690 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300691 return;
692 }
693
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200694 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300695 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200696 const struct drm_display_mode *adjusted_mode =
697 &crtc->config->base.adjusted_mode;
698 const struct drm_framebuffer *fb =
699 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200700 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300701 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300702
703 /* Display SR */
704 wm = intel_calculate_wm(clock, &pineview_display_wm,
705 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200706 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300707 reg = I915_READ(DSPFW1);
708 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200709 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300710 I915_WRITE(DSPFW1, reg);
711 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
712
713 /* cursor SR */
714 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
715 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200716 cpp, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300717 reg = I915_READ(DSPFW3);
718 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200719 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300720 I915_WRITE(DSPFW3, reg);
721
722 /* Display HPLL off SR */
723 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
724 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200725 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300726 reg = I915_READ(DSPFW3);
727 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200728 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300729 I915_WRITE(DSPFW3, reg);
730
731 /* cursor HPLL off SR */
732 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
733 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200734 cpp, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300735 reg = I915_READ(DSPFW3);
736 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200737 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300738 I915_WRITE(DSPFW3, reg);
739 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
740
Imre Deak5209b1f2014-07-01 12:36:17 +0300741 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300742 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300743 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300744 }
745}
746
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200747static bool g4x_compute_wm0(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300748 int plane,
749 const struct intel_watermark_params *display,
750 int display_latency_ns,
751 const struct intel_watermark_params *cursor,
752 int cursor_latency_ns,
753 int *plane_wm,
754 int *cursor_wm)
755{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200756 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300757 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200758 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200759 int htotal, hdisplay, clock, cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300760 int line_time_us, line_count;
761 int entries, tlb_miss;
762
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200763 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200764 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300765 *cursor_wm = cursor->guard_size;
766 *plane_wm = display->guard_size;
767 return false;
768 }
769
Ville Syrjäläefc26112016-10-31 22:37:04 +0200770 adjusted_mode = &crtc->config->base.adjusted_mode;
771 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100772 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800773 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200774 hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200775 cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300776
777 /* Use the small buffer method to calculate plane watermark */
Ville Syrjäläac484962016-01-20 21:05:26 +0200778 entries = ((clock * cpp / 1000) * display_latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300779 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
780 if (tlb_miss > 0)
781 entries += tlb_miss;
782 entries = DIV_ROUND_UP(entries, display->cacheline_size);
783 *plane_wm = entries + display->guard_size;
784 if (*plane_wm > (int)display->max_wm)
785 *plane_wm = display->max_wm;
786
787 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200788 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300789 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200790 entries = line_count * crtc->base.cursor->state->crtc_w * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300791 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
792 if (tlb_miss > 0)
793 entries += tlb_miss;
794 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
795 *cursor_wm = entries + cursor->guard_size;
796 if (*cursor_wm > (int)cursor->max_wm)
797 *cursor_wm = (int)cursor->max_wm;
798
799 return true;
800}
801
802/*
803 * Check the wm result.
804 *
805 * If any calculated watermark values is larger than the maximum value that
806 * can be programmed into the associated watermark register, that watermark
807 * must be disabled.
808 */
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200809static bool g4x_check_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300810 int display_wm, int cursor_wm,
811 const struct intel_watermark_params *display,
812 const struct intel_watermark_params *cursor)
813{
814 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
815 display_wm, cursor_wm);
816
817 if (display_wm > display->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100818 DRM_DEBUG_KMS("display watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300819 display_wm, display->max_wm);
820 return false;
821 }
822
823 if (cursor_wm > cursor->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100824 DRM_DEBUG_KMS("cursor watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300825 cursor_wm, cursor->max_wm);
826 return false;
827 }
828
829 if (!(display_wm || cursor_wm)) {
830 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
831 return false;
832 }
833
834 return true;
835}
836
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200837static bool g4x_compute_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300838 int plane,
839 int latency_ns,
840 const struct intel_watermark_params *display,
841 const struct intel_watermark_params *cursor,
842 int *display_wm, int *cursor_wm)
843{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200844 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300845 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200846 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200847 int hdisplay, htotal, cpp, clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300848 unsigned long line_time_us;
849 int line_count, line_size;
850 int small, large;
851 int entries;
852
853 if (!latency_ns) {
854 *display_wm = *cursor_wm = 0;
855 return false;
856 }
857
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200858 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200859 adjusted_mode = &crtc->config->base.adjusted_mode;
860 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100861 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800862 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200863 hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200864 cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300865
Ville Syrjälä922044c2014-02-14 14:18:57 +0200866 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300867 line_count = (latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläac484962016-01-20 21:05:26 +0200868 line_size = hdisplay * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300869
870 /* Use the minimum of the small and large buffer method for primary */
Ville Syrjäläac484962016-01-20 21:05:26 +0200871 small = ((clock * cpp / 1000) * latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300872 large = line_count * line_size;
873
874 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
875 *display_wm = entries + display->guard_size;
876
877 /* calculate the self-refresh watermark for display cursor */
Ville Syrjäläefc26112016-10-31 22:37:04 +0200878 entries = line_count * cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300879 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
880 *cursor_wm = entries + cursor->guard_size;
881
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200882 return g4x_check_srwm(dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300883 *display_wm, *cursor_wm,
884 display, cursor);
885}
886
Ville Syrjälä15665972015-03-10 16:16:28 +0200887#define FW_WM_VLV(value, plane) \
888 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
889
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200890static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200891 const struct vlv_wm_values *wm)
892{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200893 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200894
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200895 for_each_pipe(dev_priv, pipe) {
896 I915_WRITE(VLV_DDL(pipe),
897 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
898 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
899 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
900 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
901 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200902
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +0200903 /*
904 * Zero the (unused) WM1 watermarks, and also clear all the
905 * high order bits so that there are no out of bounds values
906 * present in the registers during the reprogramming.
907 */
908 I915_WRITE(DSPHOWM, 0);
909 I915_WRITE(DSPHOWM1, 0);
910 I915_WRITE(DSPFW4, 0);
911 I915_WRITE(DSPFW5, 0);
912 I915_WRITE(DSPFW6, 0);
913
Ville Syrjäläae801522015-03-05 21:19:49 +0200914 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200915 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200916 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
917 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
918 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200919 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200920 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
921 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
922 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200923 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200924 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200925
926 if (IS_CHERRYVIEW(dev_priv)) {
927 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200928 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
929 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200930 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200931 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
932 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200933 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200934 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
935 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200936 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200937 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200938 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
939 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
940 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
941 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
942 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
943 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
944 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
945 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
946 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200947 } else {
948 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200949 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
950 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200951 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200952 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200953 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
954 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
955 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
956 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
957 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
958 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200959 }
960
961 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200962}
963
Ville Syrjälä15665972015-03-10 16:16:28 +0200964#undef FW_WM_VLV
965
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300966enum vlv_wm_level {
967 VLV_WM_LEVEL_PM2,
968 VLV_WM_LEVEL_PM5,
969 VLV_WM_LEVEL_DDR_DVFS,
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300970};
971
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300972/* latency must be in 0.1us units. */
973static unsigned int vlv_wm_method2(unsigned int pixel_rate,
974 unsigned int pipe_htotal,
975 unsigned int horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +0200976 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300977 unsigned int latency)
978{
979 unsigned int ret;
980
981 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +0200982 ret = (ret + 1) * horiz_pixels * cpp;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300983 ret = DIV_ROUND_UP(ret, 64);
984
985 return ret;
986}
987
Ville Syrjäläbb726512016-10-31 22:37:24 +0200988static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300989{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300990 /* all latencies in usec */
991 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
992
Ville Syrjälä58590c12015-09-08 21:05:12 +0300993 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
994
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300995 if (IS_CHERRYVIEW(dev_priv)) {
996 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
997 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300998
999 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001000 }
1001}
1002
Ville Syrjäläe339d672016-11-28 19:37:17 +02001003static uint16_t vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
1004 const struct intel_plane_state *plane_state,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001005 int level)
1006{
Ville Syrjäläe339d672016-11-28 19:37:17 +02001007 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001008 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +02001009 const struct drm_display_mode *adjusted_mode =
1010 &crtc_state->base.adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +02001011 int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001012
1013 if (dev_priv->wm.pri_latency[level] == 0)
1014 return USHRT_MAX;
1015
Ville Syrjäläe339d672016-11-28 19:37:17 +02001016 if (!plane_state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001017 return 0;
1018
Daniel Vetteref426c12017-01-04 11:41:10 +01001019 cpp = plane_state->base.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001020 clock = adjusted_mode->crtc_clock;
1021 htotal = adjusted_mode->crtc_htotal;
1022 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001023 if (WARN_ON(htotal == 0))
1024 htotal = 1;
1025
1026 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1027 /*
1028 * FIXME the formula gives values that are
1029 * too big for the cursor FIFO, and hence we
1030 * would never be able to use cursors. For
1031 * now just hardcode the watermark.
1032 */
1033 wm = 63;
1034 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001035 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001036 dev_priv->wm.pri_latency[level] * 10);
1037 }
1038
1039 return min_t(int, wm, USHRT_MAX);
1040}
1041
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001042static void vlv_compute_fifo(struct intel_crtc *crtc)
1043{
1044 struct drm_device *dev = crtc->base.dev;
1045 struct vlv_wm_state *wm_state = &crtc->wm_state;
1046 struct intel_plane *plane;
1047 unsigned int total_rate = 0;
1048 const int fifo_size = 512 - 1;
1049 int fifo_extra, fifo_left = fifo_size;
1050
1051 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1052 struct intel_plane_state *state =
1053 to_intel_plane_state(plane->base.state);
1054
1055 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1056 continue;
1057
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001058 if (state->base.visible) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001059 wm_state->num_active_planes++;
Ville Syrjälä353c8592016-12-14 23:30:57 +02001060 total_rate += state->base.fb->format->cpp[0];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001061 }
1062 }
1063
1064 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1065 struct intel_plane_state *state =
1066 to_intel_plane_state(plane->base.state);
1067 unsigned int rate;
1068
1069 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1070 plane->wm.fifo_size = 63;
1071 continue;
1072 }
1073
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001074 if (!state->base.visible) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001075 plane->wm.fifo_size = 0;
1076 continue;
1077 }
1078
Ville Syrjälä353c8592016-12-14 23:30:57 +02001079 rate = state->base.fb->format->cpp[0];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001080 plane->wm.fifo_size = fifo_size * rate / total_rate;
1081 fifo_left -= plane->wm.fifo_size;
1082 }
1083
1084 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1085
1086 /* spread the remainder evenly */
1087 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1088 int plane_extra;
1089
1090 if (fifo_left == 0)
1091 break;
1092
1093 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1094 continue;
1095
1096 /* give it all to the first plane if none are active */
1097 if (plane->wm.fifo_size == 0 &&
1098 wm_state->num_active_planes)
1099 continue;
1100
1101 plane_extra = min(fifo_extra, fifo_left);
1102 plane->wm.fifo_size += plane_extra;
1103 fifo_left -= plane_extra;
1104 }
1105
1106 WARN_ON(fifo_left != 0);
1107}
1108
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001109static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1110{
1111 if (wm > fifo_size)
1112 return USHRT_MAX;
1113 else
1114 return fifo_size - wm;
1115}
1116
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001117static void vlv_invert_wms(struct intel_crtc *crtc)
1118{
1119 struct vlv_wm_state *wm_state = &crtc->wm_state;
1120 int level;
1121
1122 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001123 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001124 const int sr_fifo_size =
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001125 INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001126 struct intel_plane *plane;
1127
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001128 wm_state->sr[level].plane =
1129 vlv_invert_wm_value(wm_state->sr[level].plane,
1130 sr_fifo_size);
1131 wm_state->sr[level].cursor =
1132 vlv_invert_wm_value(wm_state->sr[level].cursor,
1133 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001134
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001135 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001136 wm_state->wm[level].plane[plane->id] =
1137 vlv_invert_wm_value(wm_state->wm[level].plane[plane->id],
1138 plane->wm.fifo_size);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001139 }
1140 }
1141}
1142
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001143static void vlv_compute_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001144{
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001145 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001146 struct vlv_wm_state *wm_state = &crtc->wm_state;
1147 struct intel_plane *plane;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001148 int level;
1149
1150 memset(wm_state, 0, sizeof(*wm_state));
1151
Ville Syrjälä852eb002015-06-24 22:00:07 +03001152 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001153 wm_state->num_levels = dev_priv->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001154
1155 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001156
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001157 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001158
1159 if (wm_state->num_active_planes != 1)
1160 wm_state->cxsr = false;
1161
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001162 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001163 struct intel_plane_state *state =
1164 to_intel_plane_state(plane->base.state);
Ville Syrjälä1b313892016-11-28 19:37:08 +02001165 int level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001166
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001167 if (!state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001168 continue;
1169
1170 /* normal watermarks */
1171 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjäläe339d672016-11-28 19:37:17 +02001172 int wm = vlv_compute_wm_level(crtc->config, state, level);
Ville Syrjälä1be4d372016-11-28 19:37:05 +02001173 int max_wm = plane->wm.fifo_size;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001174
1175 /* hack */
1176 if (WARN_ON(level == 0 && wm > max_wm))
1177 wm = max_wm;
1178
Ville Syrjälä1be4d372016-11-28 19:37:05 +02001179 if (wm > max_wm)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001180 break;
1181
Ville Syrjälä1b313892016-11-28 19:37:08 +02001182 wm_state->wm[level].plane[plane->id] = wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001183 }
1184
1185 wm_state->num_levels = level;
1186
1187 if (!wm_state->cxsr)
1188 continue;
1189
1190 /* maxfifo watermarks */
Ville Syrjälä1b313892016-11-28 19:37:08 +02001191 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001192 for (level = 0; level < wm_state->num_levels; level++)
1193 wm_state->sr[level].cursor =
Ville Syrjälä1b313892016-11-28 19:37:08 +02001194 wm_state->wm[level].plane[PLANE_CURSOR];
1195 } else {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001196 for (level = 0; level < wm_state->num_levels; level++)
1197 wm_state->sr[level].plane =
Ville Syrjälä50a9dd32016-11-28 19:37:06 +02001198 max(wm_state->sr[level].plane,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001199 wm_state->wm[level].plane[plane->id]);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001200 }
1201 }
1202
1203 /* clear any (partially) filled invalid levels */
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001204 for (level = wm_state->num_levels; level < dev_priv->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001205 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1206 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1207 }
1208
1209 vlv_invert_wms(crtc);
1210}
1211
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001212#define VLV_FIFO(plane, value) \
1213 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1214
1215static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1216{
1217 struct drm_device *dev = crtc->base.dev;
1218 struct drm_i915_private *dev_priv = to_i915(dev);
1219 struct intel_plane *plane;
1220 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1221
1222 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjälä49845a22016-11-22 18:02:01 +02001223 switch (plane->id) {
1224 case PLANE_PRIMARY:
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001225 sprite0_start = plane->wm.fifo_size;
Ville Syrjälä49845a22016-11-22 18:02:01 +02001226 break;
1227 case PLANE_SPRITE0:
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001228 sprite1_start = sprite0_start + plane->wm.fifo_size;
Ville Syrjälä49845a22016-11-22 18:02:01 +02001229 break;
1230 case PLANE_SPRITE1:
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001231 fifo_size = sprite1_start + plane->wm.fifo_size;
Ville Syrjälä49845a22016-11-22 18:02:01 +02001232 break;
1233 case PLANE_CURSOR:
1234 WARN_ON(plane->wm.fifo_size != 63);
1235 break;
1236 default:
1237 MISSING_CASE(plane->id);
1238 break;
1239 }
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001240 }
1241
1242 WARN_ON(fifo_size != 512 - 1);
1243
1244 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1245 pipe_name(crtc->pipe), sprite0_start,
1246 sprite1_start, fifo_size);
1247
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001248 spin_lock(&dev_priv->wm.dsparb_lock);
1249
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001250 switch (crtc->pipe) {
1251 uint32_t dsparb, dsparb2, dsparb3;
1252 case PIPE_A:
1253 dsparb = I915_READ(DSPARB);
1254 dsparb2 = I915_READ(DSPARB2);
1255
1256 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1257 VLV_FIFO(SPRITEB, 0xff));
1258 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1259 VLV_FIFO(SPRITEB, sprite1_start));
1260
1261 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1262 VLV_FIFO(SPRITEB_HI, 0x1));
1263 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1264 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1265
1266 I915_WRITE(DSPARB, dsparb);
1267 I915_WRITE(DSPARB2, dsparb2);
1268 break;
1269 case PIPE_B:
1270 dsparb = I915_READ(DSPARB);
1271 dsparb2 = I915_READ(DSPARB2);
1272
1273 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1274 VLV_FIFO(SPRITED, 0xff));
1275 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1276 VLV_FIFO(SPRITED, sprite1_start));
1277
1278 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1279 VLV_FIFO(SPRITED_HI, 0xff));
1280 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1281 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1282
1283 I915_WRITE(DSPARB, dsparb);
1284 I915_WRITE(DSPARB2, dsparb2);
1285 break;
1286 case PIPE_C:
1287 dsparb3 = I915_READ(DSPARB3);
1288 dsparb2 = I915_READ(DSPARB2);
1289
1290 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1291 VLV_FIFO(SPRITEF, 0xff));
1292 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1293 VLV_FIFO(SPRITEF, sprite1_start));
1294
1295 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1296 VLV_FIFO(SPRITEF_HI, 0xff));
1297 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1298 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1299
1300 I915_WRITE(DSPARB3, dsparb3);
1301 I915_WRITE(DSPARB2, dsparb2);
1302 break;
1303 default:
1304 break;
1305 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001306
1307 POSTING_READ(DSPARB);
1308
1309 spin_unlock(&dev_priv->wm.dsparb_lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001310}
1311
1312#undef VLV_FIFO
1313
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001314static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001315 struct vlv_wm_values *wm)
1316{
1317 struct intel_crtc *crtc;
1318 int num_active_crtcs = 0;
1319
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001320 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001321 wm->cxsr = true;
1322
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001323 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001324 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1325
1326 if (!crtc->active)
1327 continue;
1328
1329 if (!wm_state->cxsr)
1330 wm->cxsr = false;
1331
1332 num_active_crtcs++;
1333 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1334 }
1335
1336 if (num_active_crtcs != 1)
1337 wm->cxsr = false;
1338
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001339 if (num_active_crtcs > 1)
1340 wm->level = VLV_WM_LEVEL_PM2;
1341
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001342 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001343 struct vlv_wm_state *wm_state = &crtc->wm_state;
1344 enum pipe pipe = crtc->pipe;
1345
1346 if (!crtc->active)
1347 continue;
1348
1349 wm->pipe[pipe] = wm_state->wm[wm->level];
1350 if (wm->cxsr)
1351 wm->sr = wm_state->sr[wm->level];
1352
Ville Syrjälä1b313892016-11-28 19:37:08 +02001353 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
1354 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
1355 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
1356 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001357 }
1358}
1359
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001360static bool is_disabling(int old, int new, int threshold)
1361{
1362 return old >= threshold && new < threshold;
1363}
1364
1365static bool is_enabling(int old, int new, int threshold)
1366{
1367 return old < threshold && new >= threshold;
1368}
1369
Ville Syrjälä432081b2016-10-31 22:37:03 +02001370static void vlv_update_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001371{
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001372 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä432081b2016-10-31 22:37:03 +02001373 enum pipe pipe = crtc->pipe;
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001374 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
1375 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001376
Ville Syrjälä432081b2016-10-31 22:37:03 +02001377 vlv_compute_wm(crtc);
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001378 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001379
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001380 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001381 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä432081b2016-10-31 22:37:03 +02001382 vlv_pipe_set_fifo_size(crtc);
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001383
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001384 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001385 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001386
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001387 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001388 chv_set_memory_dvfs(dev_priv, false);
1389
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001390 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001391 chv_set_memory_pm5(dev_priv, false);
1392
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001393 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001394 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001395
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001396 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä432081b2016-10-31 22:37:03 +02001397 vlv_pipe_set_fifo_size(crtc);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001398
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001399 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001400
1401 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1402 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001403 pipe_name(pipe), new_wm.pipe[pipe].plane[PLANE_PRIMARY], new_wm.pipe[pipe].plane[PLANE_CURSOR],
1404 new_wm.pipe[pipe].plane[PLANE_SPRITE0], new_wm.pipe[pipe].plane[PLANE_SPRITE1],
1405 new_wm.sr.plane, new_wm.sr.cursor, new_wm.level, new_wm.cxsr);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001406
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001407 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001408 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001409
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001410 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001411 chv_set_memory_pm5(dev_priv, true);
1412
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001413 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001414 chv_set_memory_dvfs(dev_priv, true);
1415
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001416 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001417}
1418
Ville Syrjäläae801522015-03-05 21:19:49 +02001419#define single_plane_enabled(mask) is_power_of_2(mask)
1420
Ville Syrjälä432081b2016-10-31 22:37:03 +02001421static void g4x_update_wm(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001422{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001423 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001424 static const int sr_latency_ns = 12000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001425 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1426 int plane_sr, cursor_sr;
1427 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001428 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001429
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001430 if (g4x_compute_wm0(dev_priv, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001431 &g4x_wm_info, pessimal_latency_ns,
1432 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001433 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001434 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001435
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001436 if (g4x_compute_wm0(dev_priv, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001437 &g4x_wm_info, pessimal_latency_ns,
1438 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001439 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001440 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001441
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001442 if (single_plane_enabled(enabled) &&
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001443 g4x_compute_srwm(dev_priv, ffs(enabled) - 1,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001444 sr_latency_ns,
1445 &g4x_wm_info,
1446 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001447 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001448 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001449 } else {
Imre Deak98584252014-06-13 14:54:20 +03001450 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001451 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001452 plane_sr = cursor_sr = 0;
1453 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001454
Ville Syrjäläa5043452014-06-28 02:04:18 +03001455 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1456 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001457 planea_wm, cursora_wm,
1458 planeb_wm, cursorb_wm,
1459 plane_sr, cursor_sr);
1460
1461 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001462 FW_WM(plane_sr, SR) |
1463 FW_WM(cursorb_wm, CURSORB) |
1464 FW_WM(planeb_wm, PLANEB) |
1465 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001466 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001467 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001468 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001469 /* HPLL off in SR has some issues on G4x... disable it */
1470 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001471 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001472 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001473
1474 if (cxsr_enabled)
1475 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001476}
1477
Ville Syrjälä432081b2016-10-31 22:37:03 +02001478static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001479{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001480 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001481 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001482 int srwm = 1;
1483 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001484 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001485
1486 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001487 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001488 if (crtc) {
1489 /* self-refresh has much higher latency */
1490 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001491 const struct drm_display_mode *adjusted_mode =
1492 &crtc->config->base.adjusted_mode;
1493 const struct drm_framebuffer *fb =
1494 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001495 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001496 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001497 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02001498 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001499 unsigned long line_time_us;
1500 int entries;
1501
Ville Syrjälä922044c2014-02-14 14:18:57 +02001502 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001503
1504 /* Use ns/us then divide to preserve precision */
1505 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001506 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001507 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1508 srwm = I965_FIFO_SIZE - entries;
1509 if (srwm < 0)
1510 srwm = 1;
1511 srwm &= 0x1ff;
1512 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1513 entries, srwm);
1514
1515 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläefc26112016-10-31 22:37:04 +02001516 cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001517 entries = DIV_ROUND_UP(entries,
1518 i965_cursor_wm_info.cacheline_size);
1519 cursor_sr = i965_cursor_wm_info.fifo_size -
1520 (entries + i965_cursor_wm_info.guard_size);
1521
1522 if (cursor_sr > i965_cursor_wm_info.max_wm)
1523 cursor_sr = i965_cursor_wm_info.max_wm;
1524
1525 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1526 "cursor %d\n", srwm, cursor_sr);
1527
Imre Deak98584252014-06-13 14:54:20 +03001528 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001529 } else {
Imre Deak98584252014-06-13 14:54:20 +03001530 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001531 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001532 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001533 }
1534
1535 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1536 srwm);
1537
1538 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001539 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1540 FW_WM(8, CURSORB) |
1541 FW_WM(8, PLANEB) |
1542 FW_WM(8, PLANEA));
1543 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1544 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001545 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001546 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001547
1548 if (cxsr_enabled)
1549 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001550}
1551
Ville Syrjäläf4998962015-03-10 17:02:21 +02001552#undef FW_WM
1553
Ville Syrjälä432081b2016-10-31 22:37:03 +02001554static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001555{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001556 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001557 const struct intel_watermark_params *wm_info;
1558 uint32_t fwater_lo;
1559 uint32_t fwater_hi;
1560 int cwm, srwm = 1;
1561 int fifo_size;
1562 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001563 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001564
Ville Syrjäläa9097be2016-10-31 22:37:20 +02001565 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001566 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001567 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001568 wm_info = &i915_wm_info;
1569 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001570 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001571
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001572 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 0);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001573 crtc = intel_get_crtc_for_plane(dev_priv, 0);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001574 if (intel_crtc_active(crtc)) {
1575 const struct drm_display_mode *adjusted_mode =
1576 &crtc->config->base.adjusted_mode;
1577 const struct drm_framebuffer *fb =
1578 crtc->base.primary->state->fb;
1579 int cpp;
1580
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001581 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001582 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001583 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001584 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001585
Damien Lespiau241bfc32013-09-25 16:45:37 +01001586 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001587 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001588 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001589 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001590 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001591 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001592 if (planea_wm > (long)wm_info->max_wm)
1593 planea_wm = wm_info->max_wm;
1594 }
1595
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001596 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03001597 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001598
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001599 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 1);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001600 crtc = intel_get_crtc_for_plane(dev_priv, 1);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001601 if (intel_crtc_active(crtc)) {
1602 const struct drm_display_mode *adjusted_mode =
1603 &crtc->config->base.adjusted_mode;
1604 const struct drm_framebuffer *fb =
1605 crtc->base.primary->state->fb;
1606 int cpp;
1607
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001608 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001609 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001610 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001611 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001612
Damien Lespiau241bfc32013-09-25 16:45:37 +01001613 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001614 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001615 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001616 if (enabled == NULL)
1617 enabled = crtc;
1618 else
1619 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001620 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001621 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001622 if (planeb_wm > (long)wm_info->max_wm)
1623 planeb_wm = wm_info->max_wm;
1624 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001625
1626 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1627
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001628 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001629 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001630
Ville Syrjäläefc26112016-10-31 22:37:04 +02001631 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001632
1633 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01001634 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001635 enabled = NULL;
1636 }
1637
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001638 /*
1639 * Overlay gets an aggressive default since video jitter is bad.
1640 */
1641 cwm = 2;
1642
1643 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001644 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001645
1646 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02001647 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001648 /* self-refresh has much higher latency */
1649 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001650 const struct drm_display_mode *adjusted_mode =
1651 &enabled->config->base.adjusted_mode;
1652 const struct drm_framebuffer *fb =
1653 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001654 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001655 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001656 int hdisplay = enabled->config->pipe_src_w;
1657 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001658 unsigned long line_time_us;
1659 int entries;
1660
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001661 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001662 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001663 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001664 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001665
Ville Syrjälä922044c2014-02-14 14:18:57 +02001666 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001667
1668 /* Use ns/us then divide to preserve precision */
1669 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001670 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001671 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1672 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1673 srwm = wm_info->fifo_size - entries;
1674 if (srwm < 0)
1675 srwm = 1;
1676
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001677 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001678 I915_WRITE(FW_BLC_SELF,
1679 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03001680 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001681 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1682 }
1683
1684 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1685 planea_wm, planeb_wm, cwm, srwm);
1686
1687 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1688 fwater_hi = (cwm & 0x1f);
1689
1690 /* Set request length to 8 cachelines per fetch */
1691 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1692 fwater_hi = fwater_hi | (1 << 8);
1693
1694 I915_WRITE(FW_BLC, fwater_lo);
1695 I915_WRITE(FW_BLC2, fwater_hi);
1696
Imre Deak5209b1f2014-07-01 12:36:17 +03001697 if (enabled)
1698 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001699}
1700
Ville Syrjälä432081b2016-10-31 22:37:03 +02001701static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001702{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001703 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001704 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001705 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001706 uint32_t fwater_lo;
1707 int planea_wm;
1708
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001709 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001710 if (crtc == NULL)
1711 return;
1712
Ville Syrjäläefc26112016-10-31 22:37:04 +02001713 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001714 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001715 &i845_wm_info,
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001716 dev_priv->display.get_fifo_size(dev_priv, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001717 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001718 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1719 fwater_lo |= (3<<8) | planea_wm;
1720
1721 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1722
1723 I915_WRITE(FW_BLC, fwater_lo);
1724}
1725
Ville Syrjälä37126462013-08-01 16:18:55 +03001726/* latency must be in 0.1us units. */
Ville Syrjäläac484962016-01-20 21:05:26 +02001727static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001728{
1729 uint64_t ret;
1730
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001731 if (WARN(latency == 0, "Latency value missing\n"))
1732 return UINT_MAX;
1733
Ville Syrjäläac484962016-01-20 21:05:26 +02001734 ret = (uint64_t) pixel_rate * cpp * latency;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001735 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1736
1737 return ret;
1738}
1739
Ville Syrjälä37126462013-08-01 16:18:55 +03001740/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001741static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02001742 uint32_t horiz_pixels, uint8_t cpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001743 uint32_t latency)
1744{
1745 uint32_t ret;
1746
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001747 if (WARN(latency == 0, "Latency value missing\n"))
1748 return UINT_MAX;
Matt Roper15126882015-12-03 11:37:40 -08001749 if (WARN_ON(!pipe_htotal))
1750 return UINT_MAX;
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001751
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001752 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +02001753 ret = (ret + 1) * horiz_pixels * cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001754 ret = DIV_ROUND_UP(ret, 64) + 2;
1755 return ret;
1756}
1757
Ville Syrjälä23297042013-07-05 11:57:17 +03001758static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02001759 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001760{
Matt Roper15126882015-12-03 11:37:40 -08001761 /*
1762 * Neither of these should be possible since this function shouldn't be
1763 * called if the CRTC is off or the plane is invisible. But let's be
1764 * extra paranoid to avoid a potential divide-by-zero if we screw up
1765 * elsewhere in the driver.
1766 */
Ville Syrjäläac484962016-01-20 21:05:26 +02001767 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08001768 return 0;
1769 if (WARN_ON(!horiz_pixels))
1770 return 0;
1771
Ville Syrjäläac484962016-01-20 21:05:26 +02001772 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001773}
1774
Imre Deak820c1982013-12-17 14:46:36 +02001775struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001776 uint16_t pri;
1777 uint16_t spr;
1778 uint16_t cur;
1779 uint16_t fbc;
1780};
1781
Ville Syrjälä37126462013-08-01 16:18:55 +03001782/*
1783 * For both WM_PIPE and WM_LP.
1784 * mem_value must be in 0.1us units.
1785 */
Matt Roper7221fc32015-09-24 15:53:08 -07001786static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001787 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001788 uint32_t mem_value,
1789 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001790{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001791 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001792 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001793
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001794 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001795 return 0;
1796
Ville Syrjälä353c8592016-12-14 23:30:57 +02001797 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001798
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001799 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001800
1801 if (!is_lp)
1802 return method1;
1803
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001804 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001805 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001806 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001807 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001808
1809 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001810}
1811
Ville Syrjälä37126462013-08-01 16:18:55 +03001812/*
1813 * For both WM_PIPE and WM_LP.
1814 * mem_value must be in 0.1us units.
1815 */
Matt Roper7221fc32015-09-24 15:53:08 -07001816static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001817 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001818 uint32_t mem_value)
1819{
1820 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001821 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001822
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001823 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001824 return 0;
1825
Ville Syrjälä353c8592016-12-14 23:30:57 +02001826 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001827
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001828 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
1829 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001830 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001831 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001832 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001833 return min(method1, method2);
1834}
1835
Ville Syrjälä37126462013-08-01 16:18:55 +03001836/*
1837 * For both WM_PIPE and WM_LP.
1838 * mem_value must be in 0.1us units.
1839 */
Matt Roper7221fc32015-09-24 15:53:08 -07001840static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001841 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001842 uint32_t mem_value)
1843{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001844 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07001845
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001846 /*
1847 * Treat cursor with fb as always visible since cursor updates
1848 * can happen faster than the vrefresh rate, and the current
1849 * watermark code doesn't handle that correctly. Cursor updates
1850 * which set/clear the fb or change the cursor size are going
1851 * to get throttled by intel_legacy_cursor_update() to work
1852 * around this problem with the watermark code.
1853 */
1854 if (!cstate->base.active || !pstate->base.fb)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001855 return 0;
1856
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001857 cpp = pstate->base.fb->format->cpp[0];
1858
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001859 return ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001860 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001861 pstate->base.crtc_w, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001862}
1863
Paulo Zanonicca32e92013-05-31 11:45:06 -03001864/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07001865static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001866 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001867 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001868{
Ville Syrjälä83054942016-11-18 21:53:00 +02001869 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07001870
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001871 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001872 return 0;
1873
Ville Syrjälä353c8592016-12-14 23:30:57 +02001874 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001875
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001876 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001877}
1878
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001879static unsigned int
1880ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001881{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001882 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07001883 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001884 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001885 return 768;
1886 else
1887 return 512;
1888}
1889
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001890static unsigned int
1891ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
1892 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001893{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001894 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001895 /* BDW primary/sprite plane watermarks */
1896 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001897 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001898 /* IVB/HSW primary/sprite plane watermarks */
1899 return level == 0 ? 127 : 1023;
1900 else if (!is_sprite)
1901 /* ILK/SNB primary plane watermarks */
1902 return level == 0 ? 127 : 511;
1903 else
1904 /* ILK/SNB sprite plane watermarks */
1905 return level == 0 ? 63 : 255;
1906}
1907
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001908static unsigned int
1909ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001910{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001911 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001912 return level == 0 ? 63 : 255;
1913 else
1914 return level == 0 ? 31 : 63;
1915}
1916
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001917static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001918{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001919 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001920 return 31;
1921 else
1922 return 15;
1923}
1924
Ville Syrjälä158ae642013-08-07 13:28:19 +03001925/* Calculate the maximum primary/sprite plane watermark */
1926static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1927 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001928 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001929 enum intel_ddb_partitioning ddb_partitioning,
1930 bool is_sprite)
1931{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001932 struct drm_i915_private *dev_priv = to_i915(dev);
1933 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001934
1935 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001936 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001937 return 0;
1938
1939 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001940 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001941 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03001942
1943 /*
1944 * For some reason the non self refresh
1945 * FIFO size is only half of the self
1946 * refresh FIFO size on ILK/SNB.
1947 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001948 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001949 fifo_size /= 2;
1950 }
1951
Ville Syrjälä240264f2013-08-07 13:29:12 +03001952 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001953 /* level 0 is always calculated with 1:1 split */
1954 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1955 if (is_sprite)
1956 fifo_size *= 5;
1957 fifo_size /= 6;
1958 } else {
1959 fifo_size /= 2;
1960 }
1961 }
1962
1963 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001964 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001965}
1966
1967/* Calculate the maximum cursor plane watermark */
1968static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001969 int level,
1970 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001971{
1972 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001973 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001974 return 64;
1975
1976 /* otherwise just report max that registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001977 return ilk_cursor_wm_reg_max(to_i915(dev), level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001978}
1979
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001980static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001981 int level,
1982 const struct intel_wm_config *config,
1983 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001984 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001985{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001986 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1987 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1988 max->cur = ilk_cursor_wm_max(dev, level, config);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001989 max->fbc = ilk_fbc_wm_reg_max(to_i915(dev));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001990}
1991
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001992static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001993 int level,
1994 struct ilk_wm_maximums *max)
1995{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001996 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
1997 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
1998 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
1999 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002000}
2001
Ville Syrjäläd9395652013-10-09 19:18:10 +03002002static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002003 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002004 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002005{
2006 bool ret;
2007
2008 /* already determined to be invalid? */
2009 if (!result->enable)
2010 return false;
2011
2012 result->enable = result->pri_val <= max->pri &&
2013 result->spr_val <= max->spr &&
2014 result->cur_val <= max->cur;
2015
2016 ret = result->enable;
2017
2018 /*
2019 * HACK until we can pre-compute everything,
2020 * and thus fail gracefully if LP0 watermarks
2021 * are exceeded...
2022 */
2023 if (level == 0 && !result->enable) {
2024 if (result->pri_val > max->pri)
2025 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2026 level, result->pri_val, max->pri);
2027 if (result->spr_val > max->spr)
2028 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2029 level, result->spr_val, max->spr);
2030 if (result->cur_val > max->cur)
2031 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2032 level, result->cur_val, max->cur);
2033
2034 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2035 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2036 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2037 result->enable = true;
2038 }
2039
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002040 return ret;
2041}
2042
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002043static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002044 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002045 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002046 struct intel_crtc_state *cstate,
Matt Roper86c8bbb2015-09-24 15:53:16 -07002047 struct intel_plane_state *pristate,
2048 struct intel_plane_state *sprstate,
2049 struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002050 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002051{
2052 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2053 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2054 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2055
2056 /* WM1+ latency values stored in 0.5us units */
2057 if (level > 0) {
2058 pri_latency *= 5;
2059 spr_latency *= 5;
2060 cur_latency *= 5;
2061 }
2062
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002063 if (pristate) {
2064 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2065 pri_latency, level);
2066 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2067 }
2068
2069 if (sprstate)
2070 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2071
2072 if (curstate)
2073 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2074
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002075 result->enable = true;
2076}
2077
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002078static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002079hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002080{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002081 const struct intel_atomic_state *intel_state =
2082 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002083 const struct drm_display_mode *adjusted_mode =
2084 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002085 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002086
Matt Roperee91a152015-12-03 11:37:39 -08002087 if (!cstate->base.active)
2088 return 0;
2089 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2090 return 0;
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002091 if (WARN_ON(intel_state->cdclk.logical.cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002092 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002093
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002094 /* The WM are computed with base on how long it takes to fill a single
2095 * row at the given clock rate, multiplied by 8.
2096 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002097 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2098 adjusted_mode->crtc_clock);
2099 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002100 intel_state->cdclk.logical.cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002101
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002102 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2103 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002104}
2105
Ville Syrjäläbb726512016-10-31 22:37:24 +02002106static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2107 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002108{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002109 if (IS_GEN9(dev_priv)) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002110 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002111 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002112 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002113
2114 /* read the first set of memory latencies[0:3] */
2115 val = 0; /* data0 to be programmed to 0 for first set */
2116 mutex_lock(&dev_priv->rps.hw_lock);
2117 ret = sandybridge_pcode_read(dev_priv,
2118 GEN9_PCODE_READ_MEM_LATENCY,
2119 &val);
2120 mutex_unlock(&dev_priv->rps.hw_lock);
2121
2122 if (ret) {
2123 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2124 return;
2125 }
2126
2127 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2128 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2129 GEN9_MEM_LATENCY_LEVEL_MASK;
2130 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2131 GEN9_MEM_LATENCY_LEVEL_MASK;
2132 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2133 GEN9_MEM_LATENCY_LEVEL_MASK;
2134
2135 /* read the second set of memory latencies[4:7] */
2136 val = 1; /* data0 to be programmed to 1 for second set */
2137 mutex_lock(&dev_priv->rps.hw_lock);
2138 ret = sandybridge_pcode_read(dev_priv,
2139 GEN9_PCODE_READ_MEM_LATENCY,
2140 &val);
2141 mutex_unlock(&dev_priv->rps.hw_lock);
2142 if (ret) {
2143 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2144 return;
2145 }
2146
2147 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2148 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2149 GEN9_MEM_LATENCY_LEVEL_MASK;
2150 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2151 GEN9_MEM_LATENCY_LEVEL_MASK;
2152 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2153 GEN9_MEM_LATENCY_LEVEL_MASK;
2154
Vandana Kannan367294b2014-11-04 17:06:46 +00002155 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002156 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2157 * need to be disabled. We make sure to sanitize the values out
2158 * of the punit to satisfy this requirement.
2159 */
2160 for (level = 1; level <= max_level; level++) {
2161 if (wm[level] == 0) {
2162 for (i = level + 1; i <= max_level; i++)
2163 wm[i] = 0;
2164 break;
2165 }
2166 }
2167
2168 /*
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02002169 * WaWmMemoryReadLatency:skl,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002170 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002171 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002172 * to add 2us to the various latency levels we retrieve from the
2173 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002174 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002175 if (wm[0] == 0) {
2176 wm[0] += 2;
2177 for (level = 1; level <= max_level; level++) {
2178 if (wm[level] == 0)
2179 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002180 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002181 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002182 }
2183
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002184 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002185 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2186
2187 wm[0] = (sskpd >> 56) & 0xFF;
2188 if (wm[0] == 0)
2189 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002190 wm[1] = (sskpd >> 4) & 0xFF;
2191 wm[2] = (sskpd >> 12) & 0xFF;
2192 wm[3] = (sskpd >> 20) & 0x1FF;
2193 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002194 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002195 uint32_t sskpd = I915_READ(MCH_SSKPD);
2196
2197 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2198 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2199 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2200 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002201 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002202 uint32_t mltr = I915_READ(MLTR_ILK);
2203
2204 /* ILK primary LP0 latency is 700 ns */
2205 wm[0] = 7;
2206 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2207 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002208 }
2209}
2210
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002211static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2212 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002213{
2214 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002215 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002216 wm[0] = 13;
2217}
2218
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002219static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2220 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002221{
2222 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002223 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002224 wm[0] = 13;
2225
2226 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002227 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002228 wm[3] *= 2;
2229}
2230
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002231int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002232{
2233 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002234 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002235 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002236 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002237 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002238 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002239 return 3;
2240 else
2241 return 2;
2242}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002243
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002244static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002245 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002246 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002247{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002248 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002249
2250 for (level = 0; level <= max_level; level++) {
2251 unsigned int latency = wm[level];
2252
2253 if (latency == 0) {
2254 DRM_ERROR("%s WM%d latency not provided\n",
2255 name, level);
2256 continue;
2257 }
2258
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002259 /*
2260 * - latencies are in us on gen9.
2261 * - before then, WM1+ latency values are in 0.5us units
2262 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002263 if (IS_GEN9(dev_priv))
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002264 latency *= 10;
2265 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002266 latency *= 5;
2267
2268 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2269 name, level, wm[level],
2270 latency / 10, latency % 10);
2271 }
2272}
2273
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002274static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2275 uint16_t wm[5], uint16_t min)
2276{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002277 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002278
2279 if (wm[0] >= min)
2280 return false;
2281
2282 wm[0] = max(wm[0], min);
2283 for (level = 1; level <= max_level; level++)
2284 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2285
2286 return true;
2287}
2288
Ville Syrjäläbb726512016-10-31 22:37:24 +02002289static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002290{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002291 bool changed;
2292
2293 /*
2294 * The BIOS provided WM memory latency values are often
2295 * inadequate for high resolution displays. Adjust them.
2296 */
2297 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2298 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2299 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2300
2301 if (!changed)
2302 return;
2303
2304 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002305 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2306 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2307 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002308}
2309
Ville Syrjäläbb726512016-10-31 22:37:24 +02002310static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002311{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002312 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002313
2314 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2315 sizeof(dev_priv->wm.pri_latency));
2316 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2317 sizeof(dev_priv->wm.pri_latency));
2318
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002319 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002320 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002321
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002322 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2323 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2324 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002325
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002326 if (IS_GEN6(dev_priv))
Ville Syrjäläbb726512016-10-31 22:37:24 +02002327 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002328}
2329
Ville Syrjäläbb726512016-10-31 22:37:24 +02002330static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002331{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002332 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002333 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002334}
2335
Matt Ropered4a6a72016-02-23 17:20:13 -08002336static bool ilk_validate_pipe_wm(struct drm_device *dev,
2337 struct intel_pipe_wm *pipe_wm)
2338{
2339 /* LP0 watermark maximums depend on this pipe alone */
2340 const struct intel_wm_config config = {
2341 .num_pipes_active = 1,
2342 .sprites_enabled = pipe_wm->sprites_enabled,
2343 .sprites_scaled = pipe_wm->sprites_scaled,
2344 };
2345 struct ilk_wm_maximums max;
2346
2347 /* LP0 watermarks always use 1/2 DDB partitioning */
2348 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2349
2350 /* At least LP0 must be valid */
2351 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
2352 DRM_DEBUG_KMS("LP0 watermark invalid\n");
2353 return false;
2354 }
2355
2356 return true;
2357}
2358
Matt Roper261a27d2015-10-08 15:28:25 -07002359/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002360static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07002361{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002362 struct drm_atomic_state *state = cstate->base.state;
2363 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07002364 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002365 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002366 const struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper43d59ed2015-09-24 15:53:07 -07002367 struct intel_plane *intel_plane;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002368 struct intel_plane_state *pristate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002369 struct intel_plane_state *sprstate = NULL;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002370 struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002371 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02002372 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002373
Matt Ropere8f1f022016-05-12 07:05:55 -07002374 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002375
Matt Roper43d59ed2015-09-24 15:53:07 -07002376 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002377 struct intel_plane_state *ps;
2378
2379 ps = intel_atomic_get_existing_plane_state(state,
2380 intel_plane);
2381 if (!ps)
2382 continue;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002383
2384 if (intel_plane->base.type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002385 pristate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002386 else if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002387 sprstate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002388 else if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002389 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07002390 }
2391
Matt Ropered4a6a72016-02-23 17:20:13 -08002392 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002393 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002394 pipe_wm->sprites_enabled = sprstate->base.visible;
2395 pipe_wm->sprites_scaled = sprstate->base.visible &&
2396 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
2397 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002398 }
2399
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002400 usable_level = max_level;
2401
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002402 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002403 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002404 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002405
2406 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08002407 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002408 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002409
Matt Roper86c8bbb2015-09-24 15:53:16 -07002410 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002411 pristate, sprstate, curstate, &pipe_wm->raw_wm[0]);
2412
2413 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
2414 pipe_wm->wm[0] = pipe_wm->raw_wm[0];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002415
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002416 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002417 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002418
Matt Ropered4a6a72016-02-23 17:20:13 -08002419 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01002420 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002421
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002422 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002423
2424 for (level = 1; level <= max_level; level++) {
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002425 struct intel_wm_level *wm = &pipe_wm->raw_wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002426
Matt Roper86c8bbb2015-09-24 15:53:16 -07002427 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002428 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002429
2430 /*
2431 * Disable any watermark level that exceeds the
2432 * register maximums since such watermarks are
2433 * always invalid.
2434 */
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002435 if (level > usable_level)
2436 continue;
2437
2438 if (ilk_validate_wm_level(level, &max, wm))
2439 pipe_wm->wm[level] = *wm;
2440 else
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002441 usable_level = level;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002442 }
2443
Matt Roper86c8bbb2015-09-24 15:53:16 -07002444 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002445}
2446
2447/*
Matt Ropered4a6a72016-02-23 17:20:13 -08002448 * Build a set of 'intermediate' watermark values that satisfy both the old
2449 * state and the new state. These can be programmed to the hardware
2450 * immediately.
2451 */
2452static int ilk_compute_intermediate_wm(struct drm_device *dev,
2453 struct intel_crtc *intel_crtc,
2454 struct intel_crtc_state *newstate)
2455{
Matt Ropere8f1f022016-05-12 07:05:55 -07002456 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08002457 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002458 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08002459
2460 /*
2461 * Start with the final, target watermarks, then combine with the
2462 * currently active watermarks to get values that are safe both before
2463 * and after the vblank.
2464 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002465 *a = newstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08002466 a->pipe_enabled |= b->pipe_enabled;
2467 a->sprites_enabled |= b->sprites_enabled;
2468 a->sprites_scaled |= b->sprites_scaled;
2469
2470 for (level = 0; level <= max_level; level++) {
2471 struct intel_wm_level *a_wm = &a->wm[level];
2472 const struct intel_wm_level *b_wm = &b->wm[level];
2473
2474 a_wm->enable &= b_wm->enable;
2475 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
2476 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
2477 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
2478 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
2479 }
2480
2481 /*
2482 * We need to make sure that these merged watermark values are
2483 * actually a valid configuration themselves. If they're not,
2484 * there's no safe way to transition from the old state to
2485 * the new state, so we need to fail the atomic transaction.
2486 */
2487 if (!ilk_validate_pipe_wm(dev, a))
2488 return -EINVAL;
2489
2490 /*
2491 * If our intermediate WM are identical to the final WM, then we can
2492 * omit the post-vblank programming; only update if it's different.
2493 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002494 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) == 0)
Matt Ropered4a6a72016-02-23 17:20:13 -08002495 newstate->wm.need_postvbl_update = false;
2496
2497 return 0;
2498}
2499
2500/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002501 * Merge the watermarks from all active pipes for a specific level.
2502 */
2503static void ilk_merge_wm_level(struct drm_device *dev,
2504 int level,
2505 struct intel_wm_level *ret_wm)
2506{
2507 const struct intel_crtc *intel_crtc;
2508
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002509 ret_wm->enable = true;
2510
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002511 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08002512 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002513 const struct intel_wm_level *wm = &active->wm[level];
2514
2515 if (!active->pipe_enabled)
2516 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002517
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002518 /*
2519 * The watermark values may have been used in the past,
2520 * so we must maintain them in the registers for some
2521 * time even if the level is now disabled.
2522 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002523 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002524 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002525
2526 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2527 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2528 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2529 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2530 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002531}
2532
2533/*
2534 * Merge all low power watermarks for all active pipes.
2535 */
2536static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002537 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002538 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002539 struct intel_pipe_wm *merged)
2540{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002541 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002542 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002543 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002544
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002545 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002546 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002547 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03002548 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002549
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002550 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002551 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002552
2553 /* merge each WM1+ level */
2554 for (level = 1; level <= max_level; level++) {
2555 struct intel_wm_level *wm = &merged->wm[level];
2556
2557 ilk_merge_wm_level(dev, level, wm);
2558
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002559 if (level > last_enabled_level)
2560 wm->enable = false;
2561 else if (!ilk_validate_wm_level(level, max, wm))
2562 /* make sure all following levels get disabled */
2563 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002564
2565 /*
2566 * The spec says it is preferred to disable
2567 * FBC WMs instead of disabling a WM level.
2568 */
2569 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002570 if (wm->enable)
2571 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002572 wm->fbc_val = 0;
2573 }
2574 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002575
2576 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2577 /*
2578 * FIXME this is racy. FBC might get enabled later.
2579 * What we should check here is whether FBC can be
2580 * enabled sometime later.
2581 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002582 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03002583 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002584 for (level = 2; level <= max_level; level++) {
2585 struct intel_wm_level *wm = &merged->wm[level];
2586
2587 wm->enable = false;
2588 }
2589 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002590}
2591
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002592static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2593{
2594 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2595 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2596}
2597
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002598/* The value we need to program into the WM_LPx latency field */
2599static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2600{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002601 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002602
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002603 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002604 return 2 * level;
2605 else
2606 return dev_priv->wm.pri_latency[level];
2607}
2608
Imre Deak820c1982013-12-17 14:46:36 +02002609static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002610 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002611 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002612 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002613{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002614 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002615 struct intel_crtc *intel_crtc;
2616 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002617
Ville Syrjälä0362c782013-10-09 19:17:57 +03002618 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002619 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002620
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002621 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002622 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002623 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002624
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002625 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002626
Ville Syrjälä0362c782013-10-09 19:17:57 +03002627 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002628
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002629 /*
2630 * Maintain the watermark values even if the level is
2631 * disabled. Doing otherwise could cause underruns.
2632 */
2633 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002634 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002635 (r->pri_val << WM1_LP_SR_SHIFT) |
2636 r->cur_val;
2637
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002638 if (r->enable)
2639 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2640
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002641 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002642 results->wm_lp[wm_lp - 1] |=
2643 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2644 else
2645 results->wm_lp[wm_lp - 1] |=
2646 r->fbc_val << WM1_LP_FBC_SHIFT;
2647
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002648 /*
2649 * Always set WM1S_LP_EN when spr_val != 0, even if the
2650 * level is disabled. Doing otherwise could cause underruns.
2651 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002652 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002653 WARN_ON(wm_lp != 1);
2654 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2655 } else
2656 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002657 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002658
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002659 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002660 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002661 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08002662 const struct intel_wm_level *r =
2663 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002664
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002665 if (WARN_ON(!r->enable))
2666 continue;
2667
Matt Ropered4a6a72016-02-23 17:20:13 -08002668 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002669
2670 results->wm_pipe[pipe] =
2671 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2672 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2673 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002674 }
2675}
2676
Paulo Zanoni861f3382013-05-31 10:19:21 -03002677/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2678 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002679static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002680 struct intel_pipe_wm *r1,
2681 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002682{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002683 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002684 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002685
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002686 for (level = 1; level <= max_level; level++) {
2687 if (r1->wm[level].enable)
2688 level1 = level;
2689 if (r2->wm[level].enable)
2690 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002691 }
2692
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002693 if (level1 == level2) {
2694 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002695 return r2;
2696 else
2697 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002698 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002699 return r1;
2700 } else {
2701 return r2;
2702 }
2703}
2704
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002705/* dirty bits used to track which watermarks need changes */
2706#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2707#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2708#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2709#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2710#define WM_DIRTY_FBC (1 << 24)
2711#define WM_DIRTY_DDB (1 << 25)
2712
Damien Lespiau055e3932014-08-18 13:49:10 +01002713static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002714 const struct ilk_wm_values *old,
2715 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002716{
2717 unsigned int dirty = 0;
2718 enum pipe pipe;
2719 int wm_lp;
2720
Damien Lespiau055e3932014-08-18 13:49:10 +01002721 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002722 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2723 dirty |= WM_DIRTY_LINETIME(pipe);
2724 /* Must disable LP1+ watermarks too */
2725 dirty |= WM_DIRTY_LP_ALL;
2726 }
2727
2728 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2729 dirty |= WM_DIRTY_PIPE(pipe);
2730 /* Must disable LP1+ watermarks too */
2731 dirty |= WM_DIRTY_LP_ALL;
2732 }
2733 }
2734
2735 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2736 dirty |= WM_DIRTY_FBC;
2737 /* Must disable LP1+ watermarks too */
2738 dirty |= WM_DIRTY_LP_ALL;
2739 }
2740
2741 if (old->partitioning != new->partitioning) {
2742 dirty |= WM_DIRTY_DDB;
2743 /* Must disable LP1+ watermarks too */
2744 dirty |= WM_DIRTY_LP_ALL;
2745 }
2746
2747 /* LP1+ watermarks already deemed dirty, no need to continue */
2748 if (dirty & WM_DIRTY_LP_ALL)
2749 return dirty;
2750
2751 /* Find the lowest numbered LP1+ watermark in need of an update... */
2752 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2753 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2754 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2755 break;
2756 }
2757
2758 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2759 for (; wm_lp <= 3; wm_lp++)
2760 dirty |= WM_DIRTY_LP(wm_lp);
2761
2762 return dirty;
2763}
2764
Ville Syrjälä8553c182013-12-05 15:51:39 +02002765static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2766 unsigned int dirty)
2767{
Imre Deak820c1982013-12-17 14:46:36 +02002768 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002769 bool changed = false;
2770
2771 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2772 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2773 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2774 changed = true;
2775 }
2776 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2777 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2778 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2779 changed = true;
2780 }
2781 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2782 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2783 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2784 changed = true;
2785 }
2786
2787 /*
2788 * Don't touch WM1S_LP_EN here.
2789 * Doing so could cause underruns.
2790 */
2791
2792 return changed;
2793}
2794
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002795/*
2796 * The spec says we shouldn't write when we don't need, because every write
2797 * causes WMs to be re-evaluated, expending some power.
2798 */
Imre Deak820c1982013-12-17 14:46:36 +02002799static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2800 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002801{
Imre Deak820c1982013-12-17 14:46:36 +02002802 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002803 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002804 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002805
Damien Lespiau055e3932014-08-18 13:49:10 +01002806 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002807 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002808 return;
2809
Ville Syrjälä8553c182013-12-05 15:51:39 +02002810 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002811
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002812 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002813 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002814 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002815 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002816 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002817 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2818
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002819 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002820 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002821 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002822 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002823 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002824 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2825
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002826 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002827 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002828 val = I915_READ(WM_MISC);
2829 if (results->partitioning == INTEL_DDB_PART_1_2)
2830 val &= ~WM_MISC_DATA_PARTITION_5_6;
2831 else
2832 val |= WM_MISC_DATA_PARTITION_5_6;
2833 I915_WRITE(WM_MISC, val);
2834 } else {
2835 val = I915_READ(DISP_ARB_CTL2);
2836 if (results->partitioning == INTEL_DDB_PART_1_2)
2837 val &= ~DISP_DATA_PARTITION_5_6;
2838 else
2839 val |= DISP_DATA_PARTITION_5_6;
2840 I915_WRITE(DISP_ARB_CTL2, val);
2841 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002842 }
2843
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002844 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002845 val = I915_READ(DISP_ARB_CTL);
2846 if (results->enable_fbc_wm)
2847 val &= ~DISP_FBC_WM_DIS;
2848 else
2849 val |= DISP_FBC_WM_DIS;
2850 I915_WRITE(DISP_ARB_CTL, val);
2851 }
2852
Imre Deak954911e2013-12-17 14:46:34 +02002853 if (dirty & WM_DIRTY_LP(1) &&
2854 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2855 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2856
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002857 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002858 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2859 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2860 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2861 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2862 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002863
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002864 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002865 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002866 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002867 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002868 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002869 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002870
2871 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002872}
2873
Matt Ropered4a6a72016-02-23 17:20:13 -08002874bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02002875{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002876 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02002877
2878 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2879}
2880
Lyude656d1b82016-08-17 15:55:54 -04002881#define SKL_SAGV_BLOCK_TIME 30 /* µs */
Damien Lespiaub9cec072014-11-04 17:06:43 +00002882
Matt Roper024c9042015-09-24 15:53:11 -07002883/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002884 * FIXME: We still don't have the proper code detect if we need to apply the WA,
2885 * so assume we'll always need it in order to avoid underruns.
2886 */
2887static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
2888{
2889 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
2890
Rodrigo Vivib976dc52017-01-23 10:32:37 -08002891 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002892 return true;
2893
2894 return false;
2895}
2896
Paulo Zanoni56feca92016-09-22 18:00:28 -03002897static bool
2898intel_has_sagv(struct drm_i915_private *dev_priv)
2899{
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002900 if (IS_KABYLAKE(dev_priv))
2901 return true;
2902
2903 if (IS_SKYLAKE(dev_priv) &&
2904 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
2905 return true;
2906
2907 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03002908}
2909
Lyude656d1b82016-08-17 15:55:54 -04002910/*
2911 * SAGV dynamically adjusts the system agent voltage and clock frequencies
2912 * depending on power and performance requirements. The display engine access
2913 * to system memory is blocked during the adjustment time. Because of the
2914 * blocking time, having this enabled can cause full system hangs and/or pipe
2915 * underruns if we don't meet all of the following requirements:
2916 *
2917 * - <= 1 pipe enabled
2918 * - All planes can enable watermarks for latencies >= SAGV engine block time
2919 * - We're not using an interlaced display configuration
2920 */
2921int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002922intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002923{
2924 int ret;
2925
Paulo Zanoni56feca92016-09-22 18:00:28 -03002926 if (!intel_has_sagv(dev_priv))
2927 return 0;
2928
2929 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04002930 return 0;
2931
2932 DRM_DEBUG_KMS("Enabling the SAGV\n");
2933 mutex_lock(&dev_priv->rps.hw_lock);
2934
2935 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2936 GEN9_SAGV_ENABLE);
2937
2938 /* We don't need to wait for the SAGV when enabling */
2939 mutex_unlock(&dev_priv->rps.hw_lock);
2940
2941 /*
2942 * Some skl systems, pre-release machines in particular,
2943 * don't actually have an SAGV.
2944 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002945 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04002946 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002947 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04002948 return 0;
2949 } else if (ret < 0) {
2950 DRM_ERROR("Failed to enable the SAGV\n");
2951 return ret;
2952 }
2953
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002954 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04002955 return 0;
2956}
2957
Lyude656d1b82016-08-17 15:55:54 -04002958int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002959intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002960{
Imre Deakb3b8e992016-12-05 18:27:38 +02002961 int ret;
Lyude656d1b82016-08-17 15:55:54 -04002962
Paulo Zanoni56feca92016-09-22 18:00:28 -03002963 if (!intel_has_sagv(dev_priv))
2964 return 0;
2965
2966 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04002967 return 0;
2968
2969 DRM_DEBUG_KMS("Disabling the SAGV\n");
2970 mutex_lock(&dev_priv->rps.hw_lock);
2971
2972 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02002973 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2974 GEN9_SAGV_DISABLE,
2975 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
2976 1);
Lyude656d1b82016-08-17 15:55:54 -04002977 mutex_unlock(&dev_priv->rps.hw_lock);
2978
Lyude656d1b82016-08-17 15:55:54 -04002979 /*
2980 * Some skl systems, pre-release machines in particular,
2981 * don't actually have an SAGV.
2982 */
Imre Deakb3b8e992016-12-05 18:27:38 +02002983 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04002984 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002985 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04002986 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02002987 } else if (ret < 0) {
2988 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
2989 return ret;
Lyude656d1b82016-08-17 15:55:54 -04002990 }
2991
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002992 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04002993 return 0;
2994}
2995
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002996bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04002997{
2998 struct drm_device *dev = state->dev;
2999 struct drm_i915_private *dev_priv = to_i915(dev);
3000 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003001 struct intel_crtc *crtc;
3002 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003003 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04003004 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003005 int level, latency;
Lyude656d1b82016-08-17 15:55:54 -04003006
Paulo Zanoni56feca92016-09-22 18:00:28 -03003007 if (!intel_has_sagv(dev_priv))
3008 return false;
3009
Lyude656d1b82016-08-17 15:55:54 -04003010 /*
3011 * SKL workaround: bspec recommends we disable the SAGV when we have
3012 * more then one pipe enabled
3013 *
3014 * If there are no active CRTCs, no additional checks need be performed
3015 */
3016 if (hweight32(intel_state->active_crtcs) == 0)
3017 return true;
3018 else if (hweight32(intel_state->active_crtcs) > 1)
3019 return false;
3020
3021 /* Since we're now guaranteed to only have one active CRTC... */
3022 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003023 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003024 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003025
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003026 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003027 return false;
3028
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003029 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003030 struct skl_plane_wm *wm =
3031 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003032
Lyude656d1b82016-08-17 15:55:54 -04003033 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003034 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003035 continue;
3036
3037 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003038 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003039 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003040 { }
3041
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003042 latency = dev_priv->wm.skl_latency[level];
3043
3044 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003045 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003046 I915_FORMAT_MOD_X_TILED)
3047 latency += 15;
3048
Lyude656d1b82016-08-17 15:55:54 -04003049 /*
3050 * If any of the planes on this pipe don't enable wm levels
3051 * that incur memory latencies higher then 30µs we can't enable
3052 * the SAGV
3053 */
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003054 if (latency < SKL_SAGV_BLOCK_TIME)
Lyude656d1b82016-08-17 15:55:54 -04003055 return false;
3056 }
3057
3058 return true;
3059}
3060
Damien Lespiaub9cec072014-11-04 17:06:43 +00003061static void
3062skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003063 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003064 struct skl_ddb_entry *alloc, /* out */
3065 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003066{
Matt Roperc107acf2016-05-12 07:06:01 -07003067 struct drm_atomic_state *state = cstate->base.state;
3068 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3069 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003070 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003071 unsigned int pipe_size, ddb_size;
3072 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003073
Matt Ropera6d3460e2016-05-12 07:06:04 -07003074 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003075 alloc->start = 0;
3076 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003077 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003078 return;
3079 }
3080
Matt Ropera6d3460e2016-05-12 07:06:04 -07003081 if (intel_state->active_pipe_changes)
3082 *num_active = hweight32(intel_state->active_crtcs);
3083 else
3084 *num_active = hweight32(dev_priv->active_crtcs);
3085
Deepak M6f3fff62016-09-15 15:01:10 +05303086 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3087 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003088
3089 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3090
Matt Roperc107acf2016-05-12 07:06:01 -07003091 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003092 * If the state doesn't change the active CRTC's, then there's
3093 * no need to recalculate; the existing pipe allocation limits
3094 * should remain unchanged. Note that we're safe from racing
3095 * commits since any racing commit that changes the active CRTC
3096 * list would need to grab _all_ crtc locks, including the one
3097 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003098 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003099 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003100 /*
3101 * alloc may be cleared by clear_intel_crtc_state,
3102 * copy from old state to be sure
3103 */
3104 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003105 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003106 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003107
3108 nth_active_pipe = hweight32(intel_state->active_crtcs &
3109 (drm_crtc_mask(for_crtc) - 1));
3110 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3111 alloc->start = nth_active_pipe * ddb_size / *num_active;
3112 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003113}
3114
Matt Roperc107acf2016-05-12 07:06:01 -07003115static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003116{
Matt Roperc107acf2016-05-12 07:06:01 -07003117 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003118 return 32;
3119
3120 return 8;
3121}
3122
Damien Lespiaua269c582014-11-04 17:06:49 +00003123static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3124{
3125 entry->start = reg & 0x3ff;
3126 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003127 if (entry->end)
3128 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003129}
3130
Damien Lespiau08db6652014-11-04 17:06:52 +00003131void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3132 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003133{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003134 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003135
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003136 memset(ddb, 0, sizeof(*ddb));
3137
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003138 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003139 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003140 enum plane_id plane_id;
3141 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003142
3143 power_domain = POWER_DOMAIN_PIPE(pipe);
3144 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003145 continue;
3146
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003147 for_each_plane_id_on_crtc(crtc, plane_id) {
3148 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003149
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003150 if (plane_id != PLANE_CURSOR)
3151 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3152 else
3153 val = I915_READ(CUR_BUF_CFG(pipe));
3154
3155 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3156 }
Imre Deak4d800032016-02-17 16:31:29 +02003157
3158 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003159 }
3160}
3161
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003162/*
3163 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3164 * The bspec defines downscale amount as:
3165 *
3166 * """
3167 * Horizontal down scale amount = maximum[1, Horizontal source size /
3168 * Horizontal destination size]
3169 * Vertical down scale amount = maximum[1, Vertical source size /
3170 * Vertical destination size]
3171 * Total down scale amount = Horizontal down scale amount *
3172 * Vertical down scale amount
3173 * """
3174 *
3175 * Return value is provided in 16.16 fixed point form to retain fractional part.
3176 * Caller should take care of dividing & rounding off the value.
3177 */
3178static uint32_t
3179skl_plane_downscale_amount(const struct intel_plane_state *pstate)
3180{
3181 uint32_t downscale_h, downscale_w;
3182 uint32_t src_w, src_h, dst_w, dst_h;
3183
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003184 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003185 return DRM_PLANE_HELPER_NO_SCALING;
3186
3187 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003188 src_w = drm_rect_width(&pstate->base.src);
3189 src_h = drm_rect_height(&pstate->base.src);
3190 dst_w = drm_rect_width(&pstate->base.dst);
3191 dst_h = drm_rect_height(&pstate->base.dst);
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003192 if (drm_rotation_90_or_270(pstate->base.rotation))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003193 swap(dst_w, dst_h);
3194
3195 downscale_h = max(src_h / dst_h, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3196 downscale_w = max(src_w / dst_w, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3197
3198 /* Provide result in 16.16 fixed point */
3199 return (uint64_t)downscale_w * downscale_h >> 16;
3200}
3201
Damien Lespiaub9cec072014-11-04 17:06:43 +00003202static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003203skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3204 const struct drm_plane_state *pstate,
3205 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003206{
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003207 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003208 uint32_t down_scale_amount, data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003209 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003210 struct drm_framebuffer *fb;
3211 u32 format;
Matt Ropera1de91e2016-05-12 07:05:57 -07003212
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003213 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07003214 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003215
3216 fb = pstate->fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003217 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02003218
Matt Ropera1de91e2016-05-12 07:05:57 -07003219 if (pstate->plane->type == DRM_PLANE_TYPE_CURSOR)
3220 return 0;
3221 if (y && format != DRM_FORMAT_NV12)
3222 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003223
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003224 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3225 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003226
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003227 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003228 swap(width, height);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003229
3230 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07003231 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003232 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003233 data_rate = width * height *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003234 fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003235 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003236 data_rate = (width / 2) * (height / 2) *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003237 fb->format->cpp[1];
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003238 } else {
3239 /* for packed formats */
Ville Syrjälä353c8592016-12-14 23:30:57 +02003240 data_rate = width * height * fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003241 }
3242
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003243 down_scale_amount = skl_plane_downscale_amount(intel_pstate);
3244
3245 return (uint64_t)data_rate * down_scale_amount >> 16;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003246}
3247
3248/*
3249 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
3250 * a 8192x4096@32bpp framebuffer:
3251 * 3 * 4096 * 8192 * 4 < 2^32
3252 */
3253static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003254skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
3255 unsigned *plane_data_rate,
3256 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003257{
Matt Roper9c74d822016-05-12 07:05:58 -07003258 struct drm_crtc_state *cstate = &intel_cstate->base;
3259 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003260 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003261 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003262 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003263
3264 if (WARN_ON(!state))
3265 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003266
Matt Ropera1de91e2016-05-12 07:05:57 -07003267 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003268 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003269 enum plane_id plane_id = to_intel_plane(plane)->id;
3270 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07003271
Matt Ropera6d3460e2016-05-12 07:06:04 -07003272 /* packed/uv */
3273 rate = skl_plane_relative_data_rate(intel_cstate,
3274 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003275 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003276
3277 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07003278
Matt Ropera6d3460e2016-05-12 07:06:04 -07003279 /* y-plane */
3280 rate = skl_plane_relative_data_rate(intel_cstate,
3281 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003282 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07003283
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003284 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003285 }
3286
3287 return total_data_rate;
3288}
3289
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003290static uint16_t
3291skl_ddb_min_alloc(const struct drm_plane_state *pstate,
3292 const int y)
3293{
3294 struct drm_framebuffer *fb = pstate->fb;
3295 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
3296 uint32_t src_w, src_h;
3297 uint32_t min_scanlines = 8;
3298 uint8_t plane_bpp;
3299
3300 if (WARN_ON(!fb))
3301 return 0;
3302
3303 /* For packed formats, no y-plane, return 0 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003304 if (y && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003305 return 0;
3306
3307 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003308 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
3309 fb->modifier != I915_FORMAT_MOD_Yf_TILED)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003310 return 8;
3311
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003312 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
3313 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003314
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003315 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003316 swap(src_w, src_h);
3317
3318 /* Halve UV plane width and height for NV12 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003319 if (fb->format->format == DRM_FORMAT_NV12 && !y) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003320 src_w /= 2;
3321 src_h /= 2;
3322 }
3323
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003324 if (fb->format->format == DRM_FORMAT_NV12 && !y)
Ville Syrjälä353c8592016-12-14 23:30:57 +02003325 plane_bpp = fb->format->cpp[1];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003326 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02003327 plane_bpp = fb->format->cpp[0];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003328
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003329 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003330 switch (plane_bpp) {
3331 case 1:
3332 min_scanlines = 32;
3333 break;
3334 case 2:
3335 min_scanlines = 16;
3336 break;
3337 case 4:
3338 min_scanlines = 8;
3339 break;
3340 case 8:
3341 min_scanlines = 4;
3342 break;
3343 default:
3344 WARN(1, "Unsupported pixel depth %u for rotation",
3345 plane_bpp);
3346 min_scanlines = 32;
3347 }
3348 }
3349
3350 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
3351}
3352
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003353static void
3354skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
3355 uint16_t *minimum, uint16_t *y_minimum)
3356{
3357 const struct drm_plane_state *pstate;
3358 struct drm_plane *plane;
3359
3360 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003361 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003362
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003363 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003364 continue;
3365
3366 if (!pstate->visible)
3367 continue;
3368
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003369 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
3370 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003371 }
3372
3373 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
3374}
3375
Matt Roperc107acf2016-05-12 07:06:01 -07003376static int
Matt Roper024c9042015-09-24 15:53:11 -07003377skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00003378 struct skl_ddb_allocation *ddb /* out */)
3379{
Matt Roperc107acf2016-05-12 07:06:01 -07003380 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003381 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003382 struct drm_device *dev = crtc->dev;
3383 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3384 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04003385 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003386 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02003387 uint16_t minimum[I915_MAX_PLANES] = {};
3388 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003389 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003390 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07003391 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003392 unsigned plane_data_rate[I915_MAX_PLANES] = {};
3393 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003394
Paulo Zanoni5a920b82016-10-04 14:37:32 -03003395 /* Clear the partitioning for disabled planes. */
3396 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
3397 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
3398
Matt Ropera6d3460e2016-05-12 07:06:04 -07003399 if (WARN_ON(!state))
3400 return 0;
3401
Matt Roperc107acf2016-05-12 07:06:01 -07003402 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04003403 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07003404 return 0;
3405 }
3406
Matt Ropera6d3460e2016-05-12 07:06:04 -07003407 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003408 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003409 if (alloc_size == 0) {
3410 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roperc107acf2016-05-12 07:06:01 -07003411 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003412 }
3413
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003414 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003415
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003416 /*
3417 * 1. Allocate the mininum required blocks for each active plane
3418 * and allocate the cursor, it doesn't require extra allocation
3419 * proportional to the data rate.
3420 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00003421
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003422 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
3423 alloc_size -= minimum[plane_id];
3424 alloc_size -= y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003425 }
3426
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003427 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
3428 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
3429
Damien Lespiaub9cec072014-11-04 17:06:43 +00003430 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003431 * 2. Distribute the remaining space in proportion to the amount of
3432 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003433 *
3434 * FIXME: we may not allocate every single block here.
3435 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003436 total_data_rate = skl_get_total_relative_data_rate(cstate,
3437 plane_data_rate,
3438 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07003439 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07003440 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003441
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003442 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003443 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003444 unsigned int data_rate, y_data_rate;
3445 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003446
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003447 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003448 continue;
3449
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003450 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003451
3452 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003453 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003454 * promote the expression to 64 bits to avoid overflowing, the
3455 * result is < available as data_rate / total_data_rate < 1
3456 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003457 plane_blocks = minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003458 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3459 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003460
Matt Roperc107acf2016-05-12 07:06:01 -07003461 /* Leave disabled planes at (0,0) */
3462 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003463 ddb->plane[pipe][plane_id].start = start;
3464 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003465 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00003466
3467 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003468
3469 /*
3470 * allocation for y_plane part of planar format:
3471 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003472 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003473
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003474 y_plane_blocks = y_minimum[plane_id];
Matt Ropera1de91e2016-05-12 07:05:57 -07003475 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3476 total_data_rate);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003477
Matt Roperc107acf2016-05-12 07:06:01 -07003478 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003479 ddb->y_plane[pipe][plane_id].start = start;
3480 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003481 }
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003482
Matt Ropera1de91e2016-05-12 07:05:57 -07003483 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003484 }
3485
Matt Roperc107acf2016-05-12 07:06:01 -07003486 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003487}
3488
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003489/*
3490 * 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 +02003491 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003492 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3493 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3494*/
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303495static uint_fixed_16_16_t skl_wm_method1(uint32_t pixel_rate, uint8_t cpp,
3496 uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003497{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303498 uint32_t wm_intermediate_val;
3499 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003500
3501 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303502 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003503
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303504 wm_intermediate_val = latency * pixel_rate * cpp;
3505 ret = fixed_16_16_div_round_up_u64(wm_intermediate_val, 1000 * 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003506 return ret;
3507}
3508
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303509static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
3510 uint32_t pipe_htotal,
3511 uint32_t latency,
3512 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003513{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003514 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303515 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003516
3517 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303518 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003519
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003520 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303521 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
3522 pipe_htotal * 1000);
3523 ret = mul_u32_fixed_16_16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003524 return ret;
3525}
3526
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003527static uint32_t skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
3528 struct intel_plane_state *pstate)
3529{
3530 uint64_t adjusted_pixel_rate;
3531 uint64_t downscale_amount;
3532 uint64_t pixel_rate;
3533
3534 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003535 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003536 return 0;
3537
3538 /*
3539 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
3540 * with additional adjustments for plane-specific scaling.
3541 */
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02003542 adjusted_pixel_rate = cstate->pixel_rate;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003543 downscale_amount = skl_plane_downscale_amount(pstate);
3544
3545 pixel_rate = adjusted_pixel_rate * downscale_amount >> 16;
3546 WARN_ON(pixel_rate != clamp_t(uint32_t, pixel_rate, 0, ~0));
3547
3548 return pixel_rate;
3549}
3550
Matt Roper55994c22016-05-12 07:06:08 -07003551static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3552 struct intel_crtc_state *cstate,
3553 struct intel_plane_state *intel_pstate,
3554 uint16_t ddb_allocation,
3555 int level,
3556 uint16_t *out_blocks, /* out */
3557 uint8_t *out_lines, /* out */
3558 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003559{
Matt Roper33815fa2016-05-12 07:06:05 -07003560 struct drm_plane_state *pstate = &intel_pstate->base;
3561 struct drm_framebuffer *fb = pstate->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003562 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303563 uint_fixed_16_16_t method1, method2;
3564 uint_fixed_16_16_t plane_blocks_per_line;
3565 uint_fixed_16_16_t selected_result;
3566 uint32_t interm_pbpl;
3567 uint32_t plane_bytes_per_line;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003568 uint32_t res_blocks, res_lines;
Ville Syrjäläac484962016-01-20 21:05:26 +02003569 uint8_t cpp;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003570 uint32_t width = 0, height = 0;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003571 uint32_t plane_pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303572 uint_fixed_16_16_t y_tile_minimum;
3573 uint32_t y_min_scanlines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003574 struct intel_atomic_state *state =
3575 to_intel_atomic_state(cstate->base.state);
3576 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303577 bool y_tiled, x_tiled;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003578
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003579 if (latency == 0 || !cstate->base.active || !intel_pstate->base.visible) {
Matt Roper55994c22016-05-12 07:06:08 -07003580 *enabled = false;
3581 return 0;
3582 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003583
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303584 y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
3585 fb->modifier == I915_FORMAT_MOD_Yf_TILED;
3586 x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
3587
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05303588 /* Display WA #1141: kbl. */
3589 if (IS_KABYLAKE(dev_priv) && dev_priv->ipc_enabled)
3590 latency += 4;
3591
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303592 if (apply_memory_bw_wa && x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003593 latency += 15;
3594
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003595 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3596 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003597
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003598 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003599 swap(width, height);
3600
Ville Syrjälä353c8592016-12-14 23:30:57 +02003601 cpp = fb->format->cpp[0];
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003602 plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate, intel_pstate);
3603
Dave Airlie61d0a042016-10-25 16:35:20 +10003604 if (drm_rotation_90_or_270(pstate->rotation)) {
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003605 int cpp = (fb->format->format == DRM_FORMAT_NV12) ?
Ville Syrjälä353c8592016-12-14 23:30:57 +02003606 fb->format->cpp[1] :
3607 fb->format->cpp[0];
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003608
3609 switch (cpp) {
3610 case 1:
3611 y_min_scanlines = 16;
3612 break;
3613 case 2:
3614 y_min_scanlines = 8;
3615 break;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003616 case 4:
3617 y_min_scanlines = 4;
3618 break;
Paulo Zanoni86a462b2016-09-22 18:00:35 -03003619 default:
3620 MISSING_CASE(cpp);
3621 return -EINVAL;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003622 }
3623 } else {
3624 y_min_scanlines = 4;
3625 }
3626
Paulo Zanoni2ef32de2016-11-08 18:22:11 -02003627 if (apply_memory_bw_wa)
3628 y_min_scanlines *= 2;
3629
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003630 plane_bytes_per_line = width * cpp;
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303631 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303632 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line *
3633 y_min_scanlines, 512);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003634 plane_blocks_per_line =
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303635 fixed_16_16_div_round_up(interm_pbpl, y_min_scanlines);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303636 } else if (x_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303637 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512);
3638 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303639 } else {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303640 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512) + 1;
3641 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003642 }
3643
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003644 method1 = skl_wm_method1(plane_pixel_rate, cpp, latency);
3645 method2 = skl_wm_method2(plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07003646 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003647 latency,
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003648 plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003649
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303650 y_tile_minimum = mul_u32_fixed_16_16(y_min_scanlines,
3651 plane_blocks_per_line);
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003652
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303653 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303654 selected_result = max_fixed_16_16(method2, y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003655 } else {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03003656 if ((cpp * cstate->base.adjusted_mode.crtc_htotal / 512 < 1) &&
3657 (plane_bytes_per_line / 512 < 1))
3658 selected_result = method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303659 else if ((ddb_allocation /
3660 fixed_16_16_to_u32_round_up(plane_blocks_per_line)) >= 1)
3661 selected_result = min_fixed_16_16(method1, method2);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003662 else
3663 selected_result = method1;
3664 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003665
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303666 res_blocks = fixed_16_16_to_u32_round_up(selected_result) + 1;
3667 res_lines = DIV_ROUND_UP(selected_result.val,
3668 plane_blocks_per_line.val);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003669
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003670 if (level >= 1 && level <= 7) {
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303671 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303672 res_blocks += fixed_16_16_to_u32_round_up(y_tile_minimum);
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003673 res_lines += y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003674 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003675 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003676 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003677 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003678
Matt Roper55994c22016-05-12 07:06:08 -07003679 if (res_blocks >= ddb_allocation || res_lines > 31) {
3680 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07003681
3682 /*
3683 * If there are no valid level 0 watermarks, then we can't
3684 * support this display configuration.
3685 */
3686 if (level) {
3687 return 0;
3688 } else {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003689 struct drm_plane *plane = pstate->plane;
Matt Roper6b6bada2016-05-12 07:06:10 -07003690
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003691 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
3692 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
3693 plane->base.id, plane->name,
3694 res_blocks, ddb_allocation, res_lines);
Matt Roper6b6bada2016-05-12 07:06:10 -07003695 return -EINVAL;
3696 }
Matt Roper55994c22016-05-12 07:06:08 -07003697 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00003698
3699 *out_blocks = res_blocks;
3700 *out_lines = res_lines;
Matt Roper55994c22016-05-12 07:06:08 -07003701 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003702
Matt Roper55994c22016-05-12 07:06:08 -07003703 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003704}
3705
Matt Roperf4a96752016-05-12 07:06:06 -07003706static int
3707skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3708 struct skl_ddb_allocation *ddb,
3709 struct intel_crtc_state *cstate,
Lyudea62163e2016-10-04 14:28:20 -04003710 struct intel_plane *intel_plane,
Matt Roperf4a96752016-05-12 07:06:06 -07003711 int level,
3712 struct skl_wm_level *result)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003713{
Matt Roperf4a96752016-05-12 07:06:06 -07003714 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003715 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Lyudea62163e2016-10-04 14:28:20 -04003716 struct drm_plane *plane = &intel_plane->base;
3717 struct intel_plane_state *intel_pstate = NULL;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003718 uint16_t ddb_blocks;
Matt Roper024c9042015-09-24 15:53:11 -07003719 enum pipe pipe = intel_crtc->pipe;
Matt Roper55994c22016-05-12 07:06:08 -07003720 int ret;
Lyudea62163e2016-10-04 14:28:20 -04003721
3722 if (state)
3723 intel_pstate =
3724 intel_atomic_get_existing_plane_state(state,
3725 intel_plane);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003726
Matt Roperf4a96752016-05-12 07:06:06 -07003727 /*
Lyudea62163e2016-10-04 14:28:20 -04003728 * Note: If we start supporting multiple pending atomic commits against
3729 * the same planes/CRTC's in the future, plane->state will no longer be
3730 * the correct pre-state to use for the calculations here and we'll
3731 * need to change where we get the 'unchanged' plane data from.
3732 *
3733 * For now this is fine because we only allow one queued commit against
3734 * a CRTC. Even if the plane isn't modified by this transaction and we
3735 * don't have a plane lock, we still have the CRTC's lock, so we know
3736 * that no other transactions are racing with us to update it.
Matt Roperf4a96752016-05-12 07:06:06 -07003737 */
Lyudea62163e2016-10-04 14:28:20 -04003738 if (!intel_pstate)
3739 intel_pstate = to_intel_plane_state(plane->state);
Matt Roperf4a96752016-05-12 07:06:06 -07003740
Lyudea62163e2016-10-04 14:28:20 -04003741 WARN_ON(!intel_pstate->base.fb);
Matt Roper024c9042015-09-24 15:53:11 -07003742
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003743 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
Matt Roperf4a96752016-05-12 07:06:06 -07003744
Lyudea62163e2016-10-04 14:28:20 -04003745 ret = skl_compute_plane_wm(dev_priv,
3746 cstate,
3747 intel_pstate,
3748 ddb_blocks,
3749 level,
3750 &result->plane_res_b,
3751 &result->plane_res_l,
3752 &result->plane_en);
3753 if (ret)
3754 return ret;
Matt Roperf4a96752016-05-12 07:06:06 -07003755
3756 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003757}
3758
Damien Lespiau407b50f2014-11-04 17:06:57 +00003759static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07003760skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003761{
Mahesh Kumara3a89862016-12-01 21:19:34 +05303762 struct drm_atomic_state *state = cstate->base.state;
3763 struct drm_i915_private *dev_priv = to_i915(state->dev);
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003764 uint32_t pixel_rate;
Mahesh Kumara3a89862016-12-01 21:19:34 +05303765 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003766
Matt Roper024c9042015-09-24 15:53:11 -07003767 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003768 return 0;
3769
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02003770 pixel_rate = cstate->pixel_rate;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003771
3772 if (WARN_ON(pixel_rate == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003773 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003774
Mahesh Kumara3a89862016-12-01 21:19:34 +05303775 linetime_wm = DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal *
3776 1000, pixel_rate);
3777
3778 /* Display WA #1135: bxt. */
3779 if (IS_BROXTON(dev_priv) && dev_priv->ipc_enabled)
3780 linetime_wm = DIV_ROUND_UP(linetime_wm, 2);
3781
3782 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003783}
3784
Matt Roper024c9042015-09-24 15:53:11 -07003785static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003786 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003787{
Matt Roper024c9042015-09-24 15:53:11 -07003788 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003789 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003790
3791 /* Until we know more, just disable transition WMs */
Lyudea62163e2016-10-04 14:28:20 -04003792 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003793}
3794
Matt Roper55994c22016-05-12 07:06:08 -07003795static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
3796 struct skl_ddb_allocation *ddb,
3797 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003798{
Matt Roper024c9042015-09-24 15:53:11 -07003799 struct drm_device *dev = cstate->base.crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003800 const struct drm_i915_private *dev_priv = to_i915(dev);
Lyudea62163e2016-10-04 14:28:20 -04003801 struct intel_plane *intel_plane;
3802 struct skl_plane_wm *wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003803 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07003804 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003805
Lyudea62163e2016-10-04 14:28:20 -04003806 /*
3807 * We'll only calculate watermarks for planes that are actually
3808 * enabled, so make sure all other planes are set as disabled.
3809 */
3810 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
3811
3812 for_each_intel_plane_mask(&dev_priv->drm,
3813 intel_plane,
3814 cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003815 wm = &pipe_wm->planes[intel_plane->id];
Lyudea62163e2016-10-04 14:28:20 -04003816
3817 for (level = 0; level <= max_level; level++) {
3818 ret = skl_compute_wm_level(dev_priv, ddb, cstate,
3819 intel_plane, level,
3820 &wm->wm[level]);
3821 if (ret)
3822 return ret;
3823 }
3824 skl_compute_transition_wm(cstate, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003825 }
Matt Roper024c9042015-09-24 15:53:11 -07003826 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003827
Matt Roper55994c22016-05-12 07:06:08 -07003828 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003829}
3830
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003831static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
3832 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00003833 const struct skl_ddb_entry *entry)
3834{
3835 if (entry->end)
3836 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3837 else
3838 I915_WRITE(reg, 0);
3839}
3840
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003841static void skl_write_wm_level(struct drm_i915_private *dev_priv,
3842 i915_reg_t reg,
3843 const struct skl_wm_level *level)
3844{
3845 uint32_t val = 0;
3846
3847 if (level->plane_en) {
3848 val |= PLANE_WM_EN;
3849 val |= level->plane_res_b;
3850 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
3851 }
3852
3853 I915_WRITE(reg, val);
3854}
3855
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003856static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
3857 const struct skl_plane_wm *wm,
3858 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003859 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04003860{
3861 struct drm_crtc *crtc = &intel_crtc->base;
3862 struct drm_device *dev = crtc->dev;
3863 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003864 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003865 enum pipe pipe = intel_crtc->pipe;
3866
3867 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003868 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003869 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003870 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003871 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003872 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003873
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003874 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
3875 &ddb->plane[pipe][plane_id]);
3876 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
3877 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04003878}
3879
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003880static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
3881 const struct skl_plane_wm *wm,
3882 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04003883{
3884 struct drm_crtc *crtc = &intel_crtc->base;
3885 struct drm_device *dev = crtc->dev;
3886 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003887 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003888 enum pipe pipe = intel_crtc->pipe;
3889
3890 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003891 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
3892 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003893 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003894 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003895
3896 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003897 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04003898}
3899
cpaul@redhat.com45ece232016-10-14 17:31:56 -04003900bool skl_wm_level_equals(const struct skl_wm_level *l1,
3901 const struct skl_wm_level *l2)
3902{
3903 if (l1->plane_en != l2->plane_en)
3904 return false;
3905
3906 /* If both planes aren't enabled, the rest shouldn't matter */
3907 if (!l1->plane_en)
3908 return true;
3909
3910 return (l1->plane_res_l == l2->plane_res_l &&
3911 l1->plane_res_b == l2->plane_res_b);
3912}
3913
Lyude27082492016-08-24 07:48:10 +02003914static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
3915 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003916{
Lyude27082492016-08-24 07:48:10 +02003917 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003918}
3919
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01003920bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry **entries,
3921 const struct skl_ddb_entry *ddb,
3922 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003923{
Lyudece0ba282016-09-15 10:46:35 -04003924 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003925
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01003926 for (i = 0; i < I915_MAX_PIPES; i++)
3927 if (i != ignore && entries[i] &&
3928 skl_ddb_entries_overlap(ddb, entries[i]))
Lyude27082492016-08-24 07:48:10 +02003929 return true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003930
Lyude27082492016-08-24 07:48:10 +02003931 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003932}
3933
Matt Roper55994c22016-05-12 07:06:08 -07003934static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003935 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07003936 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003937 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07003938 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003939{
Matt Roperf4a96752016-05-12 07:06:06 -07003940 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07003941 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003942
Matt Roper55994c22016-05-12 07:06:08 -07003943 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
3944 if (ret)
3945 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003946
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003947 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07003948 *changed = false;
3949 else
3950 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003951
Matt Roper55994c22016-05-12 07:06:08 -07003952 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003953}
3954
Matt Roper9b613022016-06-27 16:42:44 -07003955static uint32_t
3956pipes_modified(struct drm_atomic_state *state)
3957{
3958 struct drm_crtc *crtc;
3959 struct drm_crtc_state *cstate;
3960 uint32_t i, ret = 0;
3961
3962 for_each_crtc_in_state(state, crtc, cstate, i)
3963 ret |= drm_crtc_mask(crtc);
3964
3965 return ret;
3966}
3967
Jani Nikulabb7791b2016-10-04 12:29:17 +03003968static int
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003969skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
3970{
3971 struct drm_atomic_state *state = cstate->base.state;
3972 struct drm_device *dev = state->dev;
3973 struct drm_crtc *crtc = cstate->base.crtc;
3974 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3975 struct drm_i915_private *dev_priv = to_i915(dev);
3976 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3977 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
3978 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3979 struct drm_plane_state *plane_state;
3980 struct drm_plane *plane;
3981 enum pipe pipe = intel_crtc->pipe;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003982
3983 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
3984
Maarten Lankhorst220b0962016-10-26 15:41:30 +02003985 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003986 enum plane_id plane_id = to_intel_plane(plane)->id;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003987
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003988 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
3989 &new_ddb->plane[pipe][plane_id]) &&
3990 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
3991 &new_ddb->y_plane[pipe][plane_id]))
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003992 continue;
3993
3994 plane_state = drm_atomic_get_plane_state(state, plane);
3995 if (IS_ERR(plane_state))
3996 return PTR_ERR(plane_state);
3997 }
3998
3999 return 0;
4000}
4001
Matt Roper98d39492016-05-12 07:06:03 -07004002static int
4003skl_compute_ddb(struct drm_atomic_state *state)
4004{
4005 struct drm_device *dev = state->dev;
4006 struct drm_i915_private *dev_priv = to_i915(dev);
4007 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4008 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07004009 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07004010 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07004011 int ret;
4012
4013 /*
4014 * If this is our first atomic update following hardware readout,
4015 * we can't trust the DDB that the BIOS programmed for us. Let's
4016 * pretend that all pipes switched active status so that we'll
4017 * ensure a full DDB recompute.
4018 */
Matt Roper1b54a882016-06-17 13:42:18 -07004019 if (dev_priv->wm.distrust_bios_wm) {
4020 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
4021 state->acquire_ctx);
4022 if (ret)
4023 return ret;
4024
Matt Roper98d39492016-05-12 07:06:03 -07004025 intel_state->active_pipe_changes = ~0;
4026
Matt Roper1b54a882016-06-17 13:42:18 -07004027 /*
4028 * We usually only initialize intel_state->active_crtcs if we
4029 * we're doing a modeset; make sure this field is always
4030 * initialized during the sanitization process that happens
4031 * on the first commit too.
4032 */
4033 if (!intel_state->modeset)
4034 intel_state->active_crtcs = dev_priv->active_crtcs;
4035 }
4036
Matt Roper98d39492016-05-12 07:06:03 -07004037 /*
4038 * If the modeset changes which CRTC's are active, we need to
4039 * recompute the DDB allocation for *all* active pipes, even
4040 * those that weren't otherwise being modified in any way by this
4041 * atomic commit. Due to the shrinking of the per-pipe allocations
4042 * when new active CRTC's are added, it's possible for a pipe that
4043 * we were already using and aren't changing at all here to suddenly
4044 * become invalid if its DDB needs exceeds its new allocation.
4045 *
4046 * Note that if we wind up doing a full DDB recompute, we can't let
4047 * any other display updates race with this transaction, so we need
4048 * to grab the lock on *all* CRTC's.
4049 */
Matt Roper734fa012016-05-12 15:11:40 -07004050 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004051 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004052 intel_state->wm_results.dirty_pipes = ~0;
4053 }
Matt Roper98d39492016-05-12 07:06:03 -07004054
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004055 /*
4056 * We're not recomputing for the pipes not included in the commit, so
4057 * make sure we start with the current state.
4058 */
4059 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4060
Matt Roper98d39492016-05-12 07:06:03 -07004061 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4062 struct intel_crtc_state *cstate;
4063
4064 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4065 if (IS_ERR(cstate))
4066 return PTR_ERR(cstate);
4067
Matt Roper734fa012016-05-12 15:11:40 -07004068 ret = skl_allocate_pipe_ddb(cstate, ddb);
Matt Roper98d39492016-05-12 07:06:03 -07004069 if (ret)
4070 return ret;
Lyude05a76d32016-08-17 15:55:57 -04004071
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004072 ret = skl_ddb_add_affected_planes(cstate);
Lyude05a76d32016-08-17 15:55:57 -04004073 if (ret)
4074 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004075 }
4076
4077 return 0;
4078}
4079
Matt Roper2722efb2016-08-17 15:55:55 -04004080static void
4081skl_copy_wm_for_pipe(struct skl_wm_values *dst,
4082 struct skl_wm_values *src,
4083 enum pipe pipe)
4084{
Matt Roper2722efb2016-08-17 15:55:55 -04004085 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
4086 sizeof(dst->ddb.y_plane[pipe]));
4087 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
4088 sizeof(dst->ddb.plane[pipe]));
4089}
4090
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004091static void
4092skl_print_wm_changes(const struct drm_atomic_state *state)
4093{
4094 const struct drm_device *dev = state->dev;
4095 const struct drm_i915_private *dev_priv = to_i915(dev);
4096 const struct intel_atomic_state *intel_state =
4097 to_intel_atomic_state(state);
4098 const struct drm_crtc *crtc;
4099 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004100 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004101 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
4102 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01004103 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004104
4105 for_each_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01004106 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4107 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004108
Maarten Lankhorst75704982016-11-01 12:04:10 +01004109 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004110 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004111 const struct skl_ddb_entry *old, *new;
4112
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004113 old = &old_ddb->plane[pipe][plane_id];
4114 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004115
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004116 if (skl_ddb_entry_equal(old, new))
4117 continue;
4118
Maarten Lankhorst75704982016-11-01 12:04:10 +01004119 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
4120 intel_plane->base.base.id,
4121 intel_plane->base.name,
4122 old->start, old->end,
4123 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004124 }
4125 }
4126}
4127
Matt Roper98d39492016-05-12 07:06:03 -07004128static int
4129skl_compute_wm(struct drm_atomic_state *state)
4130{
4131 struct drm_crtc *crtc;
4132 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07004133 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4134 struct skl_wm_values *results = &intel_state->wm_results;
4135 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07004136 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07004137 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07004138
4139 /*
4140 * If this transaction isn't actually touching any CRTC's, don't
4141 * bother with watermark calculation. Note that if we pass this
4142 * test, we're guaranteed to hold at least one CRTC state mutex,
4143 * which means we can safely use values like dev_priv->active_crtcs
4144 * since any racing commits that want to update them would need to
4145 * hold _all_ CRTC state mutexes.
4146 */
4147 for_each_crtc_in_state(state, crtc, cstate, i)
4148 changed = true;
4149 if (!changed)
4150 return 0;
4151
Matt Roper734fa012016-05-12 15:11:40 -07004152 /* Clear all dirty flags */
4153 results->dirty_pipes = 0;
4154
Matt Roper98d39492016-05-12 07:06:03 -07004155 ret = skl_compute_ddb(state);
4156 if (ret)
4157 return ret;
4158
Matt Roper734fa012016-05-12 15:11:40 -07004159 /*
4160 * Calculate WM's for all pipes that are part of this transaction.
4161 * Note that the DDB allocation above may have added more CRTC's that
4162 * weren't otherwise being modified (and set bits in dirty_pipes) if
4163 * pipe allocations had to change.
4164 *
4165 * FIXME: Now that we're doing this in the atomic check phase, we
4166 * should allow skl_update_pipe_wm() to return failure in cases where
4167 * no suitable watermark values can be found.
4168 */
4169 for_each_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07004170 struct intel_crtc_state *intel_cstate =
4171 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004172 const struct skl_pipe_wm *old_pipe_wm =
4173 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07004174
4175 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004176 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
4177 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07004178 if (ret)
4179 return ret;
4180
4181 if (changed)
4182 results->dirty_pipes |= drm_crtc_mask(crtc);
4183
4184 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
4185 /* This pipe's WM's did not change */
4186 continue;
4187
4188 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07004189 }
4190
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004191 skl_print_wm_changes(state);
4192
Matt Roper98d39492016-05-12 07:06:03 -07004193 return 0;
4194}
4195
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004196static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
4197 struct intel_crtc_state *cstate)
4198{
4199 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
4200 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
4201 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004202 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004203 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004204 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004205
4206 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
4207 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004208
4209 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004210
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004211 for_each_plane_id_on_crtc(crtc, plane_id) {
4212 if (plane_id != PLANE_CURSOR)
4213 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
4214 ddb, plane_id);
4215 else
4216 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
4217 ddb);
4218 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004219}
4220
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004221static void skl_initial_wm(struct intel_atomic_state *state,
4222 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004223{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004224 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02004225 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004226 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004227 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04004228 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02004229 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07004230
Ville Syrjälä432081b2016-10-31 22:37:03 +02004231 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004232 return;
4233
Matt Roper734fa012016-05-12 15:11:40 -07004234 mutex_lock(&dev_priv->wm.wm_mutex);
4235
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004236 if (cstate->base.active_changed)
4237 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02004238
4239 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07004240
4241 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004242}
4243
Ville Syrjäläd8905652016-01-14 14:53:35 +02004244static void ilk_compute_wm_config(struct drm_device *dev,
4245 struct intel_wm_config *config)
4246{
4247 struct intel_crtc *crtc;
4248
4249 /* Compute the currently _active_ config */
4250 for_each_intel_crtc(dev, crtc) {
4251 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
4252
4253 if (!wm->pipe_enabled)
4254 continue;
4255
4256 config->sprites_enabled |= wm->sprites_enabled;
4257 config->sprites_scaled |= wm->sprites_scaled;
4258 config->num_pipes_active++;
4259 }
4260}
4261
Matt Ropered4a6a72016-02-23 17:20:13 -08004262static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03004263{
Chris Wilson91c8a322016-07-05 10:40:23 +01004264 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004265 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02004266 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02004267 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02004268 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004269 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07004270
Ville Syrjäläd8905652016-01-14 14:53:35 +02004271 ilk_compute_wm_config(dev, &config);
4272
4273 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
4274 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03004275
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004276 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004277 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02004278 config.num_pipes_active == 1 && config.sprites_enabled) {
4279 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
4280 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004281
Imre Deak820c1982013-12-17 14:46:36 +02004282 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03004283 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004284 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004285 }
4286
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004287 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004288 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004289
Imre Deak820c1982013-12-17 14:46:36 +02004290 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03004291
Imre Deak820c1982013-12-17 14:46:36 +02004292 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03004293}
4294
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004295static void ilk_initial_watermarks(struct intel_atomic_state *state,
4296 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004297{
Matt Ropered4a6a72016-02-23 17:20:13 -08004298 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4299 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004300
Matt Ropered4a6a72016-02-23 17:20:13 -08004301 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07004302 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08004303 ilk_program_watermarks(dev_priv);
4304 mutex_unlock(&dev_priv->wm.wm_mutex);
4305}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004306
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004307static void ilk_optimize_watermarks(struct intel_atomic_state *state,
4308 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08004309{
4310 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4311 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4312
4313 mutex_lock(&dev_priv->wm.wm_mutex);
4314 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07004315 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08004316 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004317 }
Matt Ropered4a6a72016-02-23 17:20:13 -08004318 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004319}
4320
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004321static inline void skl_wm_level_from_reg_val(uint32_t val,
4322 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00004323{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004324 level->plane_en = val & PLANE_WM_EN;
4325 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
4326 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
4327 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00004328}
4329
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004330void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
4331 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00004332{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004333 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00004334 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00004335 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004336 int level, max_level;
4337 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004338 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00004339
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004340 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00004341
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004342 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
4343 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00004344
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004345 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004346 if (plane_id != PLANE_CURSOR)
4347 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004348 else
4349 val = I915_READ(CUR_WM(pipe, level));
4350
4351 skl_wm_level_from_reg_val(val, &wm->wm[level]);
4352 }
4353
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004354 if (plane_id != PLANE_CURSOR)
4355 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004356 else
4357 val = I915_READ(CUR_WM_TRANS(pipe));
4358
4359 skl_wm_level_from_reg_val(val, &wm->trans_wm);
4360 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004361
Matt Roper3ef00282015-03-09 10:19:24 -07004362 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00004363 return;
4364
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004365 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00004366}
4367
4368void skl_wm_get_hw_state(struct drm_device *dev)
4369{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004370 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004371 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00004372 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00004373 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004374 struct intel_crtc *intel_crtc;
4375 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00004376
Damien Lespiaua269c582014-11-04 17:06:49 +00004377 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004378 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4379 intel_crtc = to_intel_crtc(crtc);
4380 cstate = to_intel_crtc_state(crtc->state);
4381
4382 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
4383
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004384 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004385 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004386 }
Matt Ropera1de91e2016-05-12 07:05:57 -07004387
Matt Roper279e99d2016-05-12 07:06:02 -07004388 if (dev_priv->active_crtcs) {
4389 /* Fully recompute DDB on first atomic commit */
4390 dev_priv->wm.distrust_bios_wm = true;
4391 } else {
4392 /* Easy/common case; just sanitize DDB now if everything off */
4393 memset(ddb, 0, sizeof(*ddb));
4394 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004395}
4396
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004397static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4398{
4399 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004400 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004401 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004402 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07004403 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004404 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004405 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004406 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004407 [PIPE_A] = WM0_PIPEA_ILK,
4408 [PIPE_B] = WM0_PIPEB_ILK,
4409 [PIPE_C] = WM0_PIPEC_IVB,
4410 };
4411
4412 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004413 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02004414 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004415
Ville Syrjälä15606532016-05-13 17:55:17 +03004416 memset(active, 0, sizeof(*active));
4417
Matt Roper3ef00282015-03-09 10:19:24 -07004418 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02004419
4420 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004421 u32 tmp = hw->wm_pipe[pipe];
4422
4423 /*
4424 * For active pipes LP0 watermark is marked as
4425 * enabled, and LP1+ watermaks as disabled since
4426 * we can't really reverse compute them in case
4427 * multiple pipes are active.
4428 */
4429 active->wm[0].enable = true;
4430 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
4431 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
4432 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
4433 active->linetime = hw->wm_linetime[pipe];
4434 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004435 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004436
4437 /*
4438 * For inactive pipes, all watermark levels
4439 * should be marked as enabled but zeroed,
4440 * which is what we'd compute them to.
4441 */
4442 for (level = 0; level <= max_level; level++)
4443 active->wm[level].enable = true;
4444 }
Matt Roper4e0963c2015-09-24 15:53:15 -07004445
4446 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004447}
4448
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004449#define _FW_WM(value, plane) \
4450 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
4451#define _FW_WM_VLV(value, plane) \
4452 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
4453
4454static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4455 struct vlv_wm_values *wm)
4456{
4457 enum pipe pipe;
4458 uint32_t tmp;
4459
4460 for_each_pipe(dev_priv, pipe) {
4461 tmp = I915_READ(VLV_DDL(pipe));
4462
Ville Syrjälä1b313892016-11-28 19:37:08 +02004463 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004464 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004465 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004466 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004467 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004468 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004469 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004470 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4471 }
4472
4473 tmp = I915_READ(DSPFW1);
4474 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004475 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
4476 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
4477 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004478
4479 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004480 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
4481 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
4482 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004483
4484 tmp = I915_READ(DSPFW3);
4485 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4486
4487 if (IS_CHERRYVIEW(dev_priv)) {
4488 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004489 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4490 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004491
4492 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004493 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
4494 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004495
4496 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004497 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
4498 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004499
4500 tmp = I915_READ(DSPHOWM);
4501 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004502 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4503 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4504 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
4505 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 } else {
4512 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004513 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4514 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004515
4516 tmp = I915_READ(DSPHOWM);
4517 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004518 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4519 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4520 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4521 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4522 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4523 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004524 }
4525}
4526
4527#undef _FW_WM
4528#undef _FW_WM_VLV
4529
4530void vlv_wm_get_hw_state(struct drm_device *dev)
4531{
4532 struct drm_i915_private *dev_priv = to_i915(dev);
4533 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4534 struct intel_plane *plane;
4535 enum pipe pipe;
4536 u32 val;
4537
4538 vlv_read_wm_values(dev_priv, wm);
4539
Ville Syrjälä49845a22016-11-22 18:02:01 +02004540 for_each_intel_plane(dev, plane)
4541 plane->wm.fifo_size = vlv_get_fifo_size(plane);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004542
4543 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4544 wm->level = VLV_WM_LEVEL_PM2;
4545
4546 if (IS_CHERRYVIEW(dev_priv)) {
4547 mutex_lock(&dev_priv->rps.hw_lock);
4548
4549 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4550 if (val & DSP_MAXFIFO_PM5_ENABLE)
4551 wm->level = VLV_WM_LEVEL_PM5;
4552
Ville Syrjälä58590c12015-09-08 21:05:12 +03004553 /*
4554 * If DDR DVFS is disabled in the BIOS, Punit
4555 * will never ack the request. So if that happens
4556 * assume we don't have to enable/disable DDR DVFS
4557 * dynamically. To test that just set the REQ_ACK
4558 * bit to poke the Punit, but don't change the
4559 * HIGH/LOW bits so that we don't actually change
4560 * the current state.
4561 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004562 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004563 val |= FORCE_DDR_FREQ_REQ_ACK;
4564 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4565
4566 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4567 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4568 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4569 "assuming DDR DVFS is disabled\n");
4570 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4571 } else {
4572 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4573 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4574 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4575 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004576
4577 mutex_unlock(&dev_priv->rps.hw_lock);
4578 }
4579
4580 for_each_pipe(dev_priv, pipe)
4581 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 +02004582 pipe_name(pipe),
4583 wm->pipe[pipe].plane[PLANE_PRIMARY],
4584 wm->pipe[pipe].plane[PLANE_CURSOR],
4585 wm->pipe[pipe].plane[PLANE_SPRITE0],
4586 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004587
4588 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4589 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4590}
4591
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004592void ilk_wm_get_hw_state(struct drm_device *dev)
4593{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004594 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004595 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004596 struct drm_crtc *crtc;
4597
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004598 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004599 ilk_pipe_wm_get_hw_state(crtc);
4600
4601 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4602 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4603 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4604
4605 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004606 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004607 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4608 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4609 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004610
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004611 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004612 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4613 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004614 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004615 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4616 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004617
4618 hw->enable_fbc_wm =
4619 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4620}
4621
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004622/**
4623 * intel_update_watermarks - update FIFO watermark values based on current modes
4624 *
4625 * Calculate watermark values for the various WM regs based on current mode
4626 * and plane configuration.
4627 *
4628 * There are several cases to deal with here:
4629 * - normal (i.e. non-self-refresh)
4630 * - self-refresh (SR) mode
4631 * - lines are large relative to FIFO size (buffer can hold up to 2)
4632 * - lines are small relative to FIFO size (buffer can hold more than 2
4633 * lines), so need to account for TLB latency
4634 *
4635 * The normal calculation is:
4636 * watermark = dotclock * bytes per pixel * latency
4637 * where latency is platform & configuration dependent (we assume pessimal
4638 * values here).
4639 *
4640 * The SR calculation is:
4641 * watermark = (trunc(latency/line time)+1) * surface width *
4642 * bytes per pixel
4643 * where
4644 * line time = htotal / dotclock
4645 * surface width = hdisplay for normal plane and 64 for cursor
4646 * and latency is assumed to be high, as above.
4647 *
4648 * The final value programmed to the register should always be rounded up,
4649 * and include an extra 2 entries to account for clock crossings.
4650 *
4651 * We don't use the sprite, so we can ignore that. And on Crestline we have
4652 * to set the non-SR watermarks to 8.
4653 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02004654void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004655{
Ville Syrjälä432081b2016-10-31 22:37:03 +02004656 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004657
4658 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004659 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004660}
4661
Jani Nikulae2828912016-01-18 09:19:47 +02004662/*
Daniel Vetter92703882012-08-09 16:46:01 +02004663 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004664 */
4665DEFINE_SPINLOCK(mchdev_lock);
4666
4667/* Global for IPS driver to get at the current i915 device. Protected by
4668 * mchdev_lock. */
4669static struct drm_i915_private *i915_mch_dev;
4670
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004671bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004672{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004673 u16 rgvswctl;
4674
Daniel Vetter92703882012-08-09 16:46:01 +02004675 assert_spin_locked(&mchdev_lock);
4676
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004677 rgvswctl = I915_READ16(MEMSWCTL);
4678 if (rgvswctl & MEMCTL_CMD_STS) {
4679 DRM_DEBUG("gpu busy, RCS change rejected\n");
4680 return false; /* still busy with another command */
4681 }
4682
4683 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4684 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4685 I915_WRITE16(MEMSWCTL, rgvswctl);
4686 POSTING_READ16(MEMSWCTL);
4687
4688 rgvswctl |= MEMCTL_CMD_STS;
4689 I915_WRITE16(MEMSWCTL, rgvswctl);
4690
4691 return true;
4692}
4693
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004694static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004695{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004696 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004697 u8 fmax, fmin, fstart, vstart;
4698
Daniel Vetter92703882012-08-09 16:46:01 +02004699 spin_lock_irq(&mchdev_lock);
4700
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004701 rgvmodectl = I915_READ(MEMMODECTL);
4702
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004703 /* Enable temp reporting */
4704 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4705 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4706
4707 /* 100ms RC evaluation intervals */
4708 I915_WRITE(RCUPEI, 100000);
4709 I915_WRITE(RCDNEI, 100000);
4710
4711 /* Set max/min thresholds to 90ms and 80ms respectively */
4712 I915_WRITE(RCBMAXAVG, 90000);
4713 I915_WRITE(RCBMINAVG, 80000);
4714
4715 I915_WRITE(MEMIHYST, 1);
4716
4717 /* Set up min, max, and cur for interrupt handling */
4718 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4719 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4720 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4721 MEMMODE_FSTART_SHIFT;
4722
Ville Syrjälä616847e2015-09-18 20:03:19 +03004723 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004724 PXVFREQ_PX_SHIFT;
4725
Daniel Vetter20e4d402012-08-08 23:35:39 +02004726 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4727 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004728
Daniel Vetter20e4d402012-08-08 23:35:39 +02004729 dev_priv->ips.max_delay = fstart;
4730 dev_priv->ips.min_delay = fmin;
4731 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004732
4733 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4734 fmax, fmin, fstart);
4735
4736 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4737
4738 /*
4739 * Interrupts will be enabled in ironlake_irq_postinstall
4740 */
4741
4742 I915_WRITE(VIDSTART, vstart);
4743 POSTING_READ(VIDSTART);
4744
4745 rgvmodectl |= MEMMODE_SWMODE_EN;
4746 I915_WRITE(MEMMODECTL, rgvmodectl);
4747
Daniel Vetter92703882012-08-09 16:46:01 +02004748 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004749 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004750 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004751
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004752 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004753
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004754 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4755 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004756 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004757 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004758 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004759
4760 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004761}
4762
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004763static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004764{
Daniel Vetter92703882012-08-09 16:46:01 +02004765 u16 rgvswctl;
4766
4767 spin_lock_irq(&mchdev_lock);
4768
4769 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004770
4771 /* Ack interrupts, disable EFC interrupt */
4772 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4773 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4774 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4775 I915_WRITE(DEIIR, DE_PCU_EVENT);
4776 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4777
4778 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004779 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004780 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004781 rgvswctl |= MEMCTL_CMD_STS;
4782 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004783 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004784
Daniel Vetter92703882012-08-09 16:46:01 +02004785 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004786}
4787
Daniel Vetteracbe9472012-07-26 11:50:05 +02004788/* There's a funny hw issue where the hw returns all 0 when reading from
4789 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4790 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4791 * all limits and the gpu stuck at whatever frequency it is at atm).
4792 */
Akash Goel74ef1172015-03-06 11:07:19 +05304793static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004794{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004795 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004796
Daniel Vetter20b46e52012-07-26 11:16:14 +02004797 /* Only set the down limit when we've reached the lowest level to avoid
4798 * getting more interrupts, otherwise leave this clear. This prevents a
4799 * race in the hw when coming out of rc6: There's a tiny window where
4800 * the hw runs at the minimal clock before selecting the desired
4801 * frequency, if the down threshold expires in that window we will not
4802 * receive a down interrupt. */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03004803 if (IS_GEN9(dev_priv)) {
Akash Goel74ef1172015-03-06 11:07:19 +05304804 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4805 if (val <= dev_priv->rps.min_freq_softlimit)
4806 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4807 } else {
4808 limits = dev_priv->rps.max_freq_softlimit << 24;
4809 if (val <= dev_priv->rps.min_freq_softlimit)
4810 limits |= dev_priv->rps.min_freq_softlimit << 16;
4811 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004812
4813 return limits;
4814}
4815
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004816static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4817{
4818 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304819 u32 threshold_up = 0, threshold_down = 0; /* in % */
4820 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004821
4822 new_power = dev_priv->rps.power;
4823 switch (dev_priv->rps.power) {
4824 case LOW_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004825 if (val > dev_priv->rps.efficient_freq + 1 &&
4826 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004827 new_power = BETWEEN;
4828 break;
4829
4830 case BETWEEN:
Chris Wilsona72b5622016-07-02 15:35:59 +01004831 if (val <= dev_priv->rps.efficient_freq &&
4832 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004833 new_power = LOW_POWER;
Chris Wilsona72b5622016-07-02 15:35:59 +01004834 else if (val >= dev_priv->rps.rp0_freq &&
4835 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004836 new_power = HIGH_POWER;
4837 break;
4838
4839 case HIGH_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004840 if (val < (dev_priv->rps.rp1_freq + dev_priv->rps.rp0_freq) >> 1 &&
4841 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004842 new_power = BETWEEN;
4843 break;
4844 }
4845 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004846 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004847 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004848 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004849 new_power = HIGH_POWER;
4850 if (new_power == dev_priv->rps.power)
4851 return;
4852
4853 /* Note the units here are not exactly 1us, but 1280ns. */
4854 switch (new_power) {
4855 case LOW_POWER:
4856 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304857 ei_up = 16000;
4858 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004859
4860 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304861 ei_down = 32000;
4862 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004863 break;
4864
4865 case BETWEEN:
4866 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304867 ei_up = 13000;
4868 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004869
4870 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304871 ei_down = 32000;
4872 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004873 break;
4874
4875 case HIGH_POWER:
4876 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304877 ei_up = 10000;
4878 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004879
4880 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304881 ei_down = 32000;
4882 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004883 break;
4884 }
4885
Mika Kuoppala6067a272017-02-15 15:52:59 +02004886 /* When byt can survive without system hang with dynamic
4887 * sw freq adjustments, this restriction can be lifted.
4888 */
4889 if (IS_VALLEYVIEW(dev_priv))
4890 goto skip_hw_write;
4891
Akash Goel8a586432015-03-06 11:07:18 +05304892 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004893 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05304894 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004895 GT_INTERVAL_FROM_US(dev_priv,
4896 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304897
4898 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004899 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05304900 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004901 GT_INTERVAL_FROM_US(dev_priv,
4902 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304903
Chris Wilsona72b5622016-07-02 15:35:59 +01004904 I915_WRITE(GEN6_RP_CONTROL,
4905 GEN6_RP_MEDIA_TURBO |
4906 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4907 GEN6_RP_MEDIA_IS_GFX |
4908 GEN6_RP_ENABLE |
4909 GEN6_RP_UP_BUSY_AVG |
4910 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05304911
Mika Kuoppala6067a272017-02-15 15:52:59 +02004912skip_hw_write:
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004913 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004914 dev_priv->rps.up_threshold = threshold_up;
4915 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004916 dev_priv->rps.last_adj = 0;
4917}
4918
Chris Wilson2876ce72014-03-28 08:03:34 +00004919static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4920{
4921 u32 mask = 0;
4922
4923 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004924 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004925 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004926 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004927
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004928 mask &= dev_priv->pm_rps_events;
4929
Imre Deak59d02a12014-12-19 19:33:26 +02004930 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004931}
4932
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004933/* gen6_set_rps is called to update the frequency request, but should also be
4934 * called when the range (min_delay and max_delay) is modified so that we can
4935 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004936static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004937{
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004938 /* min/max delay may still have been modified so be sure to
4939 * write the limits value.
4940 */
4941 if (val != dev_priv->rps.cur_freq) {
4942 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004943
Chris Wilsondc979972016-05-10 14:10:04 +01004944 if (IS_GEN9(dev_priv))
Akash Goel57041952015-03-06 11:07:17 +05304945 I915_WRITE(GEN6_RPNSWREQ,
4946 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01004947 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004948 I915_WRITE(GEN6_RPNSWREQ,
4949 HSW_FREQUENCY(val));
4950 else
4951 I915_WRITE(GEN6_RPNSWREQ,
4952 GEN6_FREQUENCY(val) |
4953 GEN6_OFFSET(0) |
4954 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004955 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004956
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004957 /* Make sure we continue to get interrupts
4958 * until we hit the minimum or maximum frequencies.
4959 */
Akash Goel74ef1172015-03-06 11:07:19 +05304960 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004961 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004962
Ben Widawskyb39fb292014-03-19 18:31:11 -07004963 dev_priv->rps.cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02004964 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004965
4966 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004967}
4968
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004969static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004970{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004971 int err;
4972
Chris Wilsondc979972016-05-10 14:10:04 +01004973 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004974 "Odd GPU freq value\n"))
4975 val &= ~1;
4976
Deepak Scd25dd52015-07-10 18:31:40 +05304977 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4978
Chris Wilson8fb55192015-04-07 16:20:28 +01004979 if (val != dev_priv->rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004980 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
4981 if (err)
4982 return err;
4983
Chris Wilsondb4c5e02017-02-10 15:03:46 +00004984 gen6_set_rps_thresholds(dev_priv, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004985 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004986
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004987 dev_priv->rps.cur_freq = val;
4988 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004989
4990 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004991}
4992
Deepak Sa7f6e232015-05-09 18:04:44 +05304993/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304994 *
4995 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304996 * 1. Forcewake Media well.
4997 * 2. Request idle freq.
4998 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304999*/
5000static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
5001{
Chris Wilsonaed242f2015-03-18 09:48:21 +00005002 u32 val = dev_priv->rps.idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005003 int err;
Deepak S5549d252014-06-28 11:26:11 +05305004
Chris Wilsonaed242f2015-03-18 09:48:21 +00005005 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05305006 return;
5007
Chris Wilsonc9efef72017-01-02 15:28:45 +00005008 /* The punit delays the write of the frequency and voltage until it
5009 * determines the GPU is awake. During normal usage we don't want to
5010 * waste power changing the frequency if the GPU is sleeping (rc6).
5011 * However, the GPU and driver is now idle and we do not want to delay
5012 * switching to minimum voltage (reducing power whilst idle) as we do
5013 * not expect to be woken in the near future and so must flush the
5014 * change by waking the device.
5015 *
5016 * We choose to take the media powerwell (either would do to trick the
5017 * punit into committing the voltage change) as that takes a lot less
5018 * power than the render powerwell.
5019 */
Deepak Sa7f6e232015-05-09 18:04:44 +05305020 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005021 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05305022 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005023
5024 if (err)
5025 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05305026}
5027
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005028void gen6_rps_busy(struct drm_i915_private *dev_priv)
5029{
5030 mutex_lock(&dev_priv->rps.hw_lock);
5031 if (dev_priv->rps.enabled) {
Chris Wilsonbd648182017-02-10 15:03:48 +00005032 u8 freq;
5033
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005034 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
5035 gen6_rps_reset_ei(dev_priv);
5036 I915_WRITE(GEN6_PMINTRMSK,
5037 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02005038
Chris Wilsonc33d2472016-07-04 08:08:36 +01005039 gen6_enable_rps_interrupts(dev_priv);
5040
Chris Wilsonbd648182017-02-10 15:03:48 +00005041 /* Use the user's desired frequency as a guide, but for better
5042 * performance, jump directly to RPe as our starting frequency.
5043 */
5044 freq = max(dev_priv->rps.cur_freq,
5045 dev_priv->rps.efficient_freq);
5046
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005047 if (intel_set_rps(dev_priv,
Chris Wilsonbd648182017-02-10 15:03:48 +00005048 clamp(freq,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005049 dev_priv->rps.min_freq_softlimit,
5050 dev_priv->rps.max_freq_softlimit)))
5051 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005052 }
5053 mutex_unlock(&dev_priv->rps.hw_lock);
5054}
5055
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005056void gen6_rps_idle(struct drm_i915_private *dev_priv)
5057{
Chris Wilsonc33d2472016-07-04 08:08:36 +01005058 /* Flush our bottom-half so that it does not race with us
5059 * setting the idle frequency and so that it is bounded by
5060 * our rpm wakeref. And then disable the interrupts to stop any
5061 * futher RPS reclocking whilst we are asleep.
5062 */
5063 gen6_disable_rps_interrupts(dev_priv);
5064
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005065 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005066 if (dev_priv->rps.enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01005067 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05305068 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005069 else
Chris Wilsondc979972016-05-10 14:10:04 +01005070 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005071 dev_priv->rps.last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03005072 I915_WRITE(GEN6_PMINTRMSK,
5073 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01005074 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005075 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005076
Chris Wilson8d3afd72015-05-21 21:01:47 +01005077 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005078 while (!list_empty(&dev_priv->rps.clients))
5079 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005080 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005081}
5082
Chris Wilson1854d5c2015-04-07 16:20:32 +01005083void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01005084 struct intel_rps_client *rps,
5085 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005086{
Chris Wilson8d3afd72015-05-21 21:01:47 +01005087 /* This is intentionally racy! We peek at the state here, then
5088 * validate inside the RPS worker.
5089 */
Chris Wilson67d97da2016-07-04 08:08:31 +01005090 if (!(dev_priv->gt.awake &&
Chris Wilson8d3afd72015-05-21 21:01:47 +01005091 dev_priv->rps.enabled &&
Chris Wilson29ecd78d2016-07-13 09:10:35 +01005092 dev_priv->rps.cur_freq < dev_priv->rps.boost_freq))
Chris Wilson8d3afd72015-05-21 21:01:47 +01005093 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005094
Chris Wilsone61b9952015-04-27 13:41:24 +01005095 /* Force a RPS boost (and don't count it against the client) if
5096 * the GPU is severely congested.
5097 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01005098 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01005099 rps = NULL;
5100
Chris Wilson8d3afd72015-05-21 21:01:47 +01005101 spin_lock(&dev_priv->rps.client_lock);
5102 if (rps == NULL || list_empty(&rps->link)) {
5103 spin_lock_irq(&dev_priv->irq_lock);
5104 if (dev_priv->rps.interrupts_enabled) {
5105 dev_priv->rps.client_boost = true;
Chris Wilsonc33d2472016-07-04 08:08:36 +01005106 schedule_work(&dev_priv->rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005107 }
5108 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005109
Chris Wilson2e1b8732015-04-27 13:41:22 +01005110 if (rps != NULL) {
5111 list_add(&rps->link, &dev_priv->rps.clients);
5112 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01005113 } else
5114 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01005115 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005116 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005117}
5118
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005119int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005120{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005121 int err;
5122
Chris Wilsoncfd1c482017-02-20 09:47:07 +00005123 lockdep_assert_held(&dev_priv->rps.hw_lock);
5124 GEM_BUG_ON(val > dev_priv->rps.max_freq);
5125 GEM_BUG_ON(val < dev_priv->rps.min_freq);
5126
Chris Wilson76e4e4b2017-02-20 09:47:08 +00005127 if (!dev_priv->rps.enabled) {
5128 dev_priv->rps.cur_freq = val;
5129 return 0;
5130 }
5131
Chris Wilsondc979972016-05-10 14:10:04 +01005132 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005133 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005134 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005135 err = gen6_set_rps(dev_priv, val);
5136
5137 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005138}
5139
Chris Wilsondc979972016-05-10 14:10:04 +01005140static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005141{
Zhe Wang20e49362014-11-04 17:07:05 +00005142 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005143 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005144}
5145
Chris Wilsondc979972016-05-10 14:10:04 +01005146static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05305147{
Akash Goel2030d682016-04-23 00:05:45 +05305148 I915_WRITE(GEN6_RP_CONTROL, 0);
5149}
5150
Chris Wilsondc979972016-05-10 14:10:04 +01005151static void gen6_disable_rps(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005152{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005153 I915_WRITE(GEN6_RC_CONTROL, 0);
5154 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05305155 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005156}
5157
Chris Wilsondc979972016-05-10 14:10:04 +01005158static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305159{
Deepak S38807742014-05-23 21:00:15 +05305160 I915_WRITE(GEN6_RC_CONTROL, 0);
5161}
5162
Chris Wilsondc979972016-05-10 14:10:04 +01005163static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005164{
Deepak S98a2e5f2014-08-18 10:35:27 -07005165 /* we're doing forcewake before Disabling RC6,
5166 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005167 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07005168
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005169 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005170
Mika Kuoppala59bad942015-01-16 11:34:40 +02005171 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005172}
5173
Chris Wilsondc979972016-05-10 14:10:04 +01005174static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07005175{
Chris Wilsondc979972016-05-10 14:10:04 +01005176 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03005177 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
5178 mode = GEN6_RC_CTL_RC6_ENABLE;
5179 else
5180 mode = 0;
5181 }
Chris Wilsondc979972016-05-10 14:10:04 +01005182 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03005183 DRM_DEBUG_DRIVER("Enabling RC6 states: "
5184 "RC6 %s RC6p %s RC6pp %s\n",
5185 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
5186 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
5187 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07005188
5189 else
Imre Deakb99d49c2016-06-29 19:13:54 +03005190 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
5191 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07005192}
5193
Chris Wilsondc979972016-05-10 14:10:04 +01005194static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305195{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005196 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305197 bool enable_rc6 = true;
5198 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03005199 u32 rc_ctl;
5200 int rc_sw_target;
5201
5202 rc_ctl = I915_READ(GEN6_RC_CONTROL);
5203 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
5204 RC_SW_TARGET_STATE_SHIFT;
5205 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
5206 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
5207 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
5208 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
5209 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305210
5211 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005212 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305213 enable_rc6 = false;
5214 }
5215
5216 /*
5217 * The exact context size is not known for BXT, so assume a page size
5218 * for this check.
5219 */
5220 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005221 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
5222 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
5223 ggtt->stolen_reserved_size))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005224 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305225 enable_rc6 = false;
5226 }
5227
5228 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
5229 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
5230 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
5231 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005232 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305233 enable_rc6 = false;
5234 }
5235
Imre Deakfc619842016-06-29 19:13:55 +03005236 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
5237 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
5238 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
5239 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
5240 enable_rc6 = false;
5241 }
5242
5243 if (!I915_READ(GEN6_GFXPAUSE)) {
5244 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
5245 enable_rc6 = false;
5246 }
5247
5248 if (!I915_READ(GEN8_MISC_CTRL0)) {
5249 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305250 enable_rc6 = false;
5251 }
5252
5253 return enable_rc6;
5254}
5255
Chris Wilsondc979972016-05-10 14:10:04 +01005256int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005257{
Daniel Vettere7d66d82015-06-15 23:23:54 +02005258 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01005259 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03005260 return 0;
5261
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305262 if (!enable_rc6)
5263 return 0;
5264
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005265 if (IS_GEN9_LP(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305266 DRM_INFO("RC6 disabled by BIOS\n");
5267 return 0;
5268 }
5269
Daniel Vetter456470e2012-08-08 23:35:40 +02005270 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03005271 if (enable_rc6 >= 0) {
5272 int mask;
5273
Chris Wilsondc979972016-05-10 14:10:04 +01005274 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03005275 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
5276 INTEL_RC6pp_ENABLE;
5277 else
5278 mask = INTEL_RC6_ENABLE;
5279
5280 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03005281 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
5282 "(requested %d, valid %d)\n",
5283 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03005284
5285 return enable_rc6 & mask;
5286 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005287
Chris Wilsondc979972016-05-10 14:10:04 +01005288 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08005289 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08005290
5291 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005292}
5293
Chris Wilsondc979972016-05-10 14:10:04 +01005294static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03005295{
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005296 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005297
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005298 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005299 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005300 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005301 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
5302 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5303 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
5304 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005305 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005306 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
5307 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5308 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
5309 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005310 /* hw_max = RP0 until we check for overclocking */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005311 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005312
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005313 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005314 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005315 IS_GEN9_BC(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005316 u32 ddcc_status = 0;
5317
5318 if (sandybridge_pcode_read(dev_priv,
5319 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
5320 &ddcc_status) == 0)
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005321 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08005322 clamp_t(u8,
5323 ((ddcc_status >> 8) & 0xff),
5324 dev_priv->rps.min_freq,
5325 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005326 }
5327
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005328 if (IS_GEN9_BC(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05305329 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01005330 * the natural hardware unit for SKL
5331 */
Akash Goelc5e06882015-06-29 14:50:19 +05305332 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
5333 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
5334 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
5335 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
5336 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
5337 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005338}
5339
Chris Wilson3a45b052016-07-13 09:10:32 +01005340static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005341 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01005342{
5343 u8 freq = dev_priv->rps.cur_freq;
5344
5345 /* force a reset */
5346 dev_priv->rps.power = -1;
5347 dev_priv->rps.cur_freq = -1;
5348
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005349 if (set(dev_priv, freq))
5350 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01005351}
5352
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005353/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01005354static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005355{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005356 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
5357
Akash Goel0beb0592015-03-06 11:07:20 +05305358 /* Program defaults and thresholds for RPS*/
5359 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5360 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005361
Akash Goel0beb0592015-03-06 11:07:20 +05305362 /* 1 second timeout*/
5363 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
5364 GT_INTERVAL_FROM_US(dev_priv, 1000000));
5365
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005366 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005367
Akash Goel0beb0592015-03-06 11:07:20 +05305368 /* Leaning on the below call to gen6_set_rps to program/setup the
5369 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
5370 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01005371 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005372
5373 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5374}
5375
Chris Wilsondc979972016-05-10 14:10:04 +01005376static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005377{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005378 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305379 enum intel_engine_id id;
Zhe Wang20e49362014-11-04 17:07:05 +00005380 uint32_t rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00005381
5382 /* 1a: Software RC state - RC0 */
5383 I915_WRITE(GEN6_RC_STATE, 0);
5384
5385 /* 1b: Get forcewake during program sequence. Although the driver
5386 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005387 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005388
5389 /* 2a: Disable RC states. */
5390 I915_WRITE(GEN6_RC_CONTROL, 0);
5391
5392 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305393
5394 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Chris Wilsondc979972016-05-10 14:10:04 +01005395 if (IS_SKYLAKE(dev_priv))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305396 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
5397 else
5398 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00005399 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5400 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305401 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005402 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305403
Dave Gordon1a3d1892016-05-13 15:36:30 +01005404 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305405 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
5406
Zhe Wang20e49362014-11-04 17:07:05 +00005407 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005408
Zhe Wang38c23522015-01-20 12:23:04 +00005409 /* 2c: Program Coarse Power Gating Policies. */
5410 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
5411 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
5412
Zhe Wang20e49362014-11-04 17:07:05 +00005413 /* 3a: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005414 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00005415 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02005416 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Chris Wilson1c044f92017-01-25 17:26:01 +00005417 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
5418 I915_WRITE(GEN6_RC_CONTROL,
5419 GEN6_RC_CTL_HW_ENABLE | GEN6_RC_CTL_EI_MODE(1) | rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00005420
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305421 /*
5422 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305423 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305424 */
Chris Wilsondc979972016-05-10 14:10:04 +01005425 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305426 I915_WRITE(GEN9_PG_ENABLE, 0);
5427 else
5428 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
5429 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005430
Mika Kuoppala59bad942015-01-16 11:34:40 +02005431 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005432}
5433
Chris Wilsondc979972016-05-10 14:10:04 +01005434static void gen8_enable_rps(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005435{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005436 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305437 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005438 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005439
5440 /* 1a: Software RC state - RC0 */
5441 I915_WRITE(GEN6_RC_STATE, 0);
5442
5443 /* 1c & 1d: Get forcewake during program sequence. Although the driver
5444 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005445 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005446
5447 /* 2a: Disable RC states. */
5448 I915_WRITE(GEN6_RC_CONTROL, 0);
5449
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005450 /* 2b: Program RC6 thresholds.*/
5451 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5452 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5453 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305454 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005455 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005456 I915_WRITE(GEN6_RC_SLEEP, 0);
Chris Wilsondc979972016-05-10 14:10:04 +01005457 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005458 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
5459 else
5460 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005461
5462 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005463 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005464 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01005465 intel_print_rc6_info(dev_priv, rc6_mask);
5466 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005467 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5468 GEN7_RC_CTL_TO_MODE |
5469 rc6_mask);
5470 else
5471 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5472 GEN6_RC_CTL_EI_MODE(1) |
5473 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005474
5475 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07005476 I915_WRITE(GEN6_RPNSWREQ,
5477 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
5478 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5479 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02005480 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
5481 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005482
Daniel Vetter7526ed72014-09-29 15:07:19 +02005483 /* Docs recommend 900MHz, and 300 MHz respectively */
5484 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
5485 dev_priv->rps.max_freq_softlimit << 24 |
5486 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005487
Daniel Vetter7526ed72014-09-29 15:07:19 +02005488 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
5489 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
5490 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
5491 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005492
Daniel Vetter7526ed72014-09-29 15:07:19 +02005493 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005494
5495 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02005496 I915_WRITE(GEN6_RP_CONTROL,
5497 GEN6_RP_MEDIA_TURBO |
5498 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5499 GEN6_RP_MEDIA_IS_GFX |
5500 GEN6_RP_ENABLE |
5501 GEN6_RP_UP_BUSY_AVG |
5502 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005503
Daniel Vetter7526ed72014-09-29 15:07:19 +02005504 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005505
Chris Wilson3a45b052016-07-13 09:10:32 +01005506 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005507
Mika Kuoppala59bad942015-01-16 11:34:40 +02005508 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005509}
5510
Chris Wilsondc979972016-05-10 14:10:04 +01005511static void gen6_enable_rps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005512{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005513 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305514 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01005515 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005516 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005517 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005518 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005519
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005520 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005521
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005522 /* Here begins a magic sequence of register writes to enable
5523 * auto-downclocking.
5524 *
5525 * Perhaps there might be some value in exposing these to
5526 * userspace...
5527 */
5528 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005529
5530 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005531 gtfifodbg = I915_READ(GTFIFODBG);
5532 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005533 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
5534 I915_WRITE(GTFIFODBG, gtfifodbg);
5535 }
5536
Mika Kuoppala59bad942015-01-16 11:34:40 +02005537 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005538
5539 /* disable the counters and set deterministic thresholds */
5540 I915_WRITE(GEN6_RC_CONTROL, 0);
5541
5542 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5543 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5544 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5545 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5546 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5547
Akash Goel3b3f1652016-10-13 22:44:48 +05305548 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005549 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005550
5551 I915_WRITE(GEN6_RC_SLEEP, 0);
5552 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01005553 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005554 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5555 else
5556 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005557 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005558 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5559
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005560 /* Check if we are enabling RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005561 rc6_mode = intel_enable_rc6();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005562 if (rc6_mode & INTEL_RC6_ENABLE)
5563 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5564
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005565 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01005566 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005567 if (rc6_mode & INTEL_RC6p_ENABLE)
5568 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005569
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005570 if (rc6_mode & INTEL_RC6pp_ENABLE)
5571 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5572 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005573
Chris Wilsondc979972016-05-10 14:10:04 +01005574 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005575
5576 I915_WRITE(GEN6_RC_CONTROL,
5577 rc6_mask |
5578 GEN6_RC_CTL_EI_MODE(1) |
5579 GEN6_RC_CTL_HW_ENABLE);
5580
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005581 /* Power down if completely idle for over 50ms */
5582 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005583 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005584
Chris Wilson3a45b052016-07-13 09:10:32 +01005585 reset_rps(dev_priv, gen6_set_rps);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005586
Ben Widawsky31643d52012-09-26 10:34:01 -07005587 rc6vids = 0;
5588 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01005589 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005590 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01005591 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005592 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5593 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5594 rc6vids &= 0xffff00;
5595 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5596 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5597 if (ret)
5598 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5599 }
5600
Mika Kuoppala59bad942015-01-16 11:34:40 +02005601 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005602}
5603
Chris Wilsonfb7404e2016-07-13 09:10:38 +01005604static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005605{
5606 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005607 unsigned int gpu_freq;
5608 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305609 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005610 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005611 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005612
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005613 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005614
Ben Widawskyeda79642013-10-07 17:15:48 -03005615 policy = cpufreq_cpu_get(0);
5616 if (policy) {
5617 max_ia_freq = policy->cpuinfo.max_freq;
5618 cpufreq_cpu_put(policy);
5619 } else {
5620 /*
5621 * Default to measured freq if none found, PCU will ensure we
5622 * don't go over
5623 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005624 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005625 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005626
5627 /* Convert from kHz to MHz */
5628 max_ia_freq /= 1000;
5629
Ben Widawsky153b4b952013-10-22 22:05:09 -07005630 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005631 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5632 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005633
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005634 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305635 /* Convert GT frequency to 50 HZ units */
5636 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5637 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5638 } else {
5639 min_gpu_freq = dev_priv->rps.min_freq;
5640 max_gpu_freq = dev_priv->rps.max_freq;
5641 }
5642
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005643 /*
5644 * For each potential GPU frequency, load a ring frequency we'd like
5645 * to use for memory access. We do this by specifying the IA frequency
5646 * the PCU should use as a reference to determine the ring frequency.
5647 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305648 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5649 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005650 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005651
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005652 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305653 /*
5654 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5655 * No floor required for ring frequency on SKL.
5656 */
5657 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005658 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005659 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5660 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01005661 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005662 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005663 ring_freq = max(min_ring_freq, ring_freq);
5664 /* leave ia_freq as the default, chosen by cpufreq */
5665 } else {
5666 /* On older processors, there is no separate ring
5667 * clock domain, so in order to boost the bandwidth
5668 * of the ring, we need to upclock the CPU (ia_freq).
5669 *
5670 * For GPU frequencies less than 750MHz,
5671 * just use the lowest ring freq.
5672 */
5673 if (gpu_freq < min_freq)
5674 ia_freq = 800;
5675 else
5676 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5677 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5678 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005679
Ben Widawsky42c05262012-09-26 10:34:00 -07005680 sandybridge_pcode_write(dev_priv,
5681 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005682 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5683 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5684 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005685 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005686}
5687
Ville Syrjälä03af2042014-06-28 02:03:53 +03005688static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305689{
5690 u32 val, rp0;
5691
Jani Nikula5b5929c2015-10-07 11:17:46 +03005692 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305693
Imre Deak43b67992016-08-31 19:13:02 +03005694 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03005695 case 8:
5696 /* (2 * 4) config */
5697 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5698 break;
5699 case 12:
5700 /* (2 * 6) config */
5701 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5702 break;
5703 case 16:
5704 /* (2 * 8) config */
5705 default:
5706 /* Setting (2 * 8) Min RP0 for any other combination */
5707 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5708 break;
Deepak S095acd52015-01-17 11:05:59 +05305709 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005710
5711 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5712
Deepak S2b6b3a02014-05-27 15:59:30 +05305713 return rp0;
5714}
5715
5716static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5717{
5718 u32 val, rpe;
5719
5720 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5721 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5722
5723 return rpe;
5724}
5725
Deepak S7707df42014-07-12 18:46:14 +05305726static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5727{
5728 u32 val, rp1;
5729
Jani Nikula5b5929c2015-10-07 11:17:46 +03005730 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5731 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5732
Deepak S7707df42014-07-12 18:46:14 +05305733 return rp1;
5734}
5735
Deepak S96676fe2016-08-12 18:46:41 +05305736static u32 cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
5737{
5738 u32 val, rpn;
5739
5740 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
5741 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
5742 FB_GFX_FREQ_FUSE_MASK);
5743
5744 return rpn;
5745}
5746
Deepak Sf8f2b002014-07-10 13:16:21 +05305747static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5748{
5749 u32 val, rp1;
5750
5751 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5752
5753 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5754
5755 return rp1;
5756}
5757
Ville Syrjälä03af2042014-06-28 02:03:53 +03005758static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005759{
5760 u32 val, rp0;
5761
Jani Nikula64936252013-05-22 15:36:20 +03005762 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005763
5764 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5765 /* Clamp to max */
5766 rp0 = min_t(u32, rp0, 0xea);
5767
5768 return rp0;
5769}
5770
5771static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5772{
5773 u32 val, rpe;
5774
Jani Nikula64936252013-05-22 15:36:20 +03005775 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005776 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005777 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005778 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5779
5780 return rpe;
5781}
5782
Ville Syrjälä03af2042014-06-28 02:03:53 +03005783static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005784{
Imre Deak36146032014-12-04 18:39:35 +02005785 u32 val;
5786
5787 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
5788 /*
5789 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
5790 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
5791 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
5792 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
5793 * to make sure it matches what Punit accepts.
5794 */
5795 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005796}
5797
Imre Deakae484342014-03-31 15:10:44 +03005798/* Check that the pctx buffer wasn't move under us. */
5799static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5800{
5801 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5802
5803 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5804 dev_priv->vlv_pctx->stolen->start);
5805}
5806
Deepak S38807742014-05-23 21:00:15 +05305807
5808/* Check that the pcbr address is not empty. */
5809static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5810{
5811 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5812
5813 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5814}
5815
Chris Wilsondc979972016-05-10 14:10:04 +01005816static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305817{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005818 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005819 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05305820 u32 pcbr;
5821 int pctx_size = 32*1024;
5822
Deepak S38807742014-05-23 21:00:15 +05305823 pcbr = I915_READ(VLV_PCBR);
5824 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005825 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305826 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005827 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05305828
5829 pctx_paddr = (paddr & (~4095));
5830 I915_WRITE(VLV_PCBR, pctx_paddr);
5831 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005832
5833 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305834}
5835
Chris Wilsondc979972016-05-10 14:10:04 +01005836static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005837{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005838 struct drm_i915_gem_object *pctx;
5839 unsigned long pctx_paddr;
5840 u32 pcbr;
5841 int pctx_size = 24*1024;
5842
5843 pcbr = I915_READ(VLV_PCBR);
5844 if (pcbr) {
5845 /* BIOS set it up already, grab the pre-alloc'd space */
5846 int pcbr_offset;
5847
5848 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00005849 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005850 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005851 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005852 pctx_size);
5853 goto out;
5854 }
5855
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005856 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5857
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005858 /*
5859 * From the Gunit register HAS:
5860 * The Gfx driver is expected to program this register and ensure
5861 * proper allocation within Gfx stolen memory. For example, this
5862 * register should be programmed such than the PCBR range does not
5863 * overlap with other ranges, such as the frame buffer, protected
5864 * memory, or any other relevant ranges.
5865 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00005866 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005867 if (!pctx) {
5868 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005869 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005870 }
5871
5872 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5873 I915_WRITE(VLV_PCBR, pctx_paddr);
5874
5875out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005876 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005877 dev_priv->vlv_pctx = pctx;
5878}
5879
Chris Wilsondc979972016-05-10 14:10:04 +01005880static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03005881{
Imre Deakae484342014-03-31 15:10:44 +03005882 if (WARN_ON(!dev_priv->vlv_pctx))
5883 return;
5884
Chris Wilsonf0cd5182016-10-28 13:58:43 +01005885 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03005886 dev_priv->vlv_pctx = NULL;
5887}
5888
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005889static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
5890{
5891 dev_priv->rps.gpll_ref_freq =
5892 vlv_get_cck_clock(dev_priv, "GPLL ref",
5893 CCK_GPLL_CLOCK_CONTROL,
5894 dev_priv->czclk_freq);
5895
5896 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
5897 dev_priv->rps.gpll_ref_freq);
5898}
5899
Chris Wilsondc979972016-05-10 14:10:04 +01005900static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005901{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005902 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005903
Chris Wilsondc979972016-05-10 14:10:04 +01005904 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005905
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005906 vlv_init_gpll_ref_freq(dev_priv);
5907
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005908 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5909 switch ((val >> 6) & 3) {
5910 case 0:
5911 case 1:
5912 dev_priv->mem_freq = 800;
5913 break;
5914 case 2:
5915 dev_priv->mem_freq = 1066;
5916 break;
5917 case 3:
5918 dev_priv->mem_freq = 1333;
5919 break;
5920 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005921 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005922
Imre Deak4e805192014-04-14 20:24:41 +03005923 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5924 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5925 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005926 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005927 dev_priv->rps.max_freq);
5928
5929 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5930 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005931 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005932 dev_priv->rps.efficient_freq);
5933
Deepak Sf8f2b002014-07-10 13:16:21 +05305934 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5935 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005936 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305937 dev_priv->rps.rp1_freq);
5938
Imre Deak4e805192014-04-14 20:24:41 +03005939 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5940 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005941 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005942 dev_priv->rps.min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03005943}
5944
Chris Wilsondc979972016-05-10 14:10:04 +01005945static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305946{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005947 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305948
Chris Wilsondc979972016-05-10 14:10:04 +01005949 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05305950
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005951 vlv_init_gpll_ref_freq(dev_priv);
5952
Ville Syrjäläa5805162015-05-26 20:42:30 +03005953 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005954 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005955 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005956
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005957 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005958 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005959 dev_priv->mem_freq = 2000;
5960 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03005961 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005962 dev_priv->mem_freq = 1600;
5963 break;
5964 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005965 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005966
Deepak S2b6b3a02014-05-27 15:59:30 +05305967 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5968 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5969 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005970 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305971 dev_priv->rps.max_freq);
5972
5973 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5974 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005975 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305976 dev_priv->rps.efficient_freq);
5977
Deepak S7707df42014-07-12 18:46:14 +05305978 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5979 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005980 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305981 dev_priv->rps.rp1_freq);
5982
Deepak S96676fe2016-08-12 18:46:41 +05305983 dev_priv->rps.min_freq = cherryview_rps_min_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05305984 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005985 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305986 dev_priv->rps.min_freq);
5987
Ville Syrjälä1c147622014-08-18 14:42:43 +03005988 WARN_ONCE((dev_priv->rps.max_freq |
5989 dev_priv->rps.efficient_freq |
5990 dev_priv->rps.rp1_freq |
5991 dev_priv->rps.min_freq) & 1,
5992 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05305993}
5994
Chris Wilsondc979972016-05-10 14:10:04 +01005995static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005996{
Chris Wilsondc979972016-05-10 14:10:04 +01005997 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005998}
5999
Chris Wilsondc979972016-05-10 14:10:04 +01006000static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05306001{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006002 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306003 enum intel_engine_id id;
Deepak S2b6b3a02014-05-27 15:59:30 +05306004 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05306005
6006 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6007
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006008 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
6009 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05306010 if (gtfifodbg) {
6011 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6012 gtfifodbg);
6013 I915_WRITE(GTFIFODBG, gtfifodbg);
6014 }
6015
6016 cherryview_check_pctx(dev_priv);
6017
6018 /* 1a & 1b: Get forcewake during program sequence. Although the driver
6019 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006020 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306021
Ville Syrjälä160614a2015-01-19 13:50:47 +02006022 /* Disable RC states. */
6023 I915_WRITE(GEN6_RC_CONTROL, 0);
6024
Deepak S38807742014-05-23 21:00:15 +05306025 /* 2a: Program RC6 thresholds.*/
6026 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
6027 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6028 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
6029
Akash Goel3b3f1652016-10-13 22:44:48 +05306030 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006031 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05306032 I915_WRITE(GEN6_RC_SLEEP, 0);
6033
Deepak Sf4f71c72015-03-28 15:23:35 +05306034 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
6035 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05306036
6037 /* allows RC6 residency counter to work */
6038 I915_WRITE(VLV_COUNTER_CONTROL,
6039 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
6040 VLV_MEDIA_RC6_COUNT_EN |
6041 VLV_RENDER_RC6_COUNT_EN));
6042
6043 /* For now we assume BIOS is allocating and populating the PCBR */
6044 pcbr = I915_READ(VLV_PCBR);
6045
Deepak S38807742014-05-23 21:00:15 +05306046 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01006047 if ((intel_enable_rc6() & INTEL_RC6_ENABLE) &&
6048 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02006049 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05306050
6051 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
6052
Deepak S2b6b3a02014-05-27 15:59:30 +05306053 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02006054 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05306055 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6056 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6057 I915_WRITE(GEN6_RP_UP_EI, 66000);
6058 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6059
6060 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6061
6062 /* 5: Enable RPS */
6063 I915_WRITE(GEN6_RP_CONTROL,
6064 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02006065 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05306066 GEN6_RP_ENABLE |
6067 GEN6_RP_UP_BUSY_AVG |
6068 GEN6_RP_DOWN_IDLE_AVG);
6069
Deepak S3ef62342015-04-29 08:36:24 +05306070 /* Setting Fixed Bias */
6071 val = VLV_OVERRIDE_EN |
6072 VLV_SOC_TDP_EN |
6073 CHV_BIAS_CPU_50_SOC_50;
6074 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6075
Deepak S2b6b3a02014-05-27 15:59:30 +05306076 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
6077
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006078 /* RPS code assumes GPLL is used */
6079 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6080
Jani Nikula742f4912015-09-03 11:16:09 +03006081 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05306082 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6083
Chris Wilson3a45b052016-07-13 09:10:32 +01006084 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05306085
Mika Kuoppala59bad942015-01-16 11:34:40 +02006086 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306087}
6088
Chris Wilsondc979972016-05-10 14:10:04 +01006089static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006090{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006091 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306092 enum intel_engine_id id;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07006093 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006094
6095 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6096
Imre Deakae484342014-03-31 15:10:44 +03006097 valleyview_check_pctx(dev_priv);
6098
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006099 gtfifodbg = I915_READ(GTFIFODBG);
6100 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07006101 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6102 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006103 I915_WRITE(GTFIFODBG, gtfifodbg);
6104 }
6105
Deepak Sc8d9a592013-11-23 14:55:42 +05306106 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006107 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006108
Ville Syrjälä160614a2015-01-19 13:50:47 +02006109 /* Disable RC states. */
6110 I915_WRITE(GEN6_RC_CONTROL, 0);
6111
Ville Syrjäläcad725f2015-01-19 13:50:48 +02006112 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006113 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6114 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6115 I915_WRITE(GEN6_RP_UP_EI, 66000);
6116 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6117
6118 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6119
6120 I915_WRITE(GEN6_RP_CONTROL,
6121 GEN6_RP_MEDIA_TURBO |
6122 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6123 GEN6_RP_MEDIA_IS_GFX |
6124 GEN6_RP_ENABLE |
6125 GEN6_RP_UP_BUSY_AVG |
6126 GEN6_RP_DOWN_IDLE_CONT);
6127
6128 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
6129 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6130 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6131
Akash Goel3b3f1652016-10-13 22:44:48 +05306132 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006133 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006134
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08006135 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006136
6137 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07006138 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04006139 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
6140 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07006141 VLV_MEDIA_RC6_COUNT_EN |
6142 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04006143
Chris Wilsondc979972016-05-10 14:10:04 +01006144 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08006145 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07006146
Chris Wilsondc979972016-05-10 14:10:04 +01006147 intel_print_rc6_info(dev_priv, rc6_mode);
Ben Widawskydc39fff2013-10-18 12:32:07 -07006148
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07006149 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006150
Deepak S3ef62342015-04-29 08:36:24 +05306151 /* Setting Fixed Bias */
6152 val = VLV_OVERRIDE_EN |
6153 VLV_SOC_TDP_EN |
6154 VLV_BIAS_CPU_125_SOC_875;
6155 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6156
Jani Nikula64936252013-05-22 15:36:20 +03006157 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006158
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006159 /* RPS code assumes GPLL is used */
6160 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6161
Jani Nikula742f4912015-09-03 11:16:09 +03006162 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07006163 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6164
Chris Wilson3a45b052016-07-13 09:10:32 +01006165 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006166
Mika Kuoppala59bad942015-01-16 11:34:40 +02006167 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006168}
6169
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006170static unsigned long intel_pxfreq(u32 vidfreq)
6171{
6172 unsigned long freq;
6173 int div = (vidfreq & 0x3f0000) >> 16;
6174 int post = (vidfreq & 0x3000) >> 12;
6175 int pre = (vidfreq & 0x7);
6176
6177 if (!pre)
6178 return 0;
6179
6180 freq = ((div * 133333) / ((1<<post) * pre));
6181
6182 return freq;
6183}
6184
Daniel Vettereb48eb02012-04-26 23:28:12 +02006185static const struct cparams {
6186 u16 i;
6187 u16 t;
6188 u16 m;
6189 u16 c;
6190} cparams[] = {
6191 { 1, 1333, 301, 28664 },
6192 { 1, 1066, 294, 24460 },
6193 { 1, 800, 294, 25192 },
6194 { 0, 1333, 276, 27605 },
6195 { 0, 1066, 276, 27605 },
6196 { 0, 800, 231, 23784 },
6197};
6198
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006199static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006200{
6201 u64 total_count, diff, ret;
6202 u32 count1, count2, count3, m = 0, c = 0;
6203 unsigned long now = jiffies_to_msecs(jiffies), diff1;
6204 int i;
6205
Daniel Vetter02d71952012-08-09 16:44:54 +02006206 assert_spin_locked(&mchdev_lock);
6207
Daniel Vetter20e4d402012-08-08 23:35:39 +02006208 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006209
6210 /* Prevent division-by-zero if we are asking too fast.
6211 * Also, we don't get interesting results if we are polling
6212 * faster than once in 10ms, so just return the saved value
6213 * in such cases.
6214 */
6215 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02006216 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006217
6218 count1 = I915_READ(DMIEC);
6219 count2 = I915_READ(DDREC);
6220 count3 = I915_READ(CSIEC);
6221
6222 total_count = count1 + count2 + count3;
6223
6224 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02006225 if (total_count < dev_priv->ips.last_count1) {
6226 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006227 diff += total_count;
6228 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006229 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006230 }
6231
6232 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006233 if (cparams[i].i == dev_priv->ips.c_m &&
6234 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02006235 m = cparams[i].m;
6236 c = cparams[i].c;
6237 break;
6238 }
6239 }
6240
6241 diff = div_u64(diff, diff1);
6242 ret = ((m * diff) + c);
6243 ret = div_u64(ret, 10);
6244
Daniel Vetter20e4d402012-08-08 23:35:39 +02006245 dev_priv->ips.last_count1 = total_count;
6246 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006247
Daniel Vetter20e4d402012-08-08 23:35:39 +02006248 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006249
6250 return ret;
6251}
6252
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006253unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
6254{
6255 unsigned long val;
6256
Chris Wilsondc979972016-05-10 14:10:04 +01006257 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006258 return 0;
6259
6260 spin_lock_irq(&mchdev_lock);
6261
6262 val = __i915_chipset_val(dev_priv);
6263
6264 spin_unlock_irq(&mchdev_lock);
6265
6266 return val;
6267}
6268
Daniel Vettereb48eb02012-04-26 23:28:12 +02006269unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
6270{
6271 unsigned long m, x, b;
6272 u32 tsfs;
6273
6274 tsfs = I915_READ(TSFS);
6275
6276 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
6277 x = I915_READ8(TR1);
6278
6279 b = tsfs & TSFS_INTR_MASK;
6280
6281 return ((m * x) / 127) - b;
6282}
6283
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006284static int _pxvid_to_vd(u8 pxvid)
6285{
6286 if (pxvid == 0)
6287 return 0;
6288
6289 if (pxvid >= 8 && pxvid < 31)
6290 pxvid = 31;
6291
6292 return (pxvid + 2) * 125;
6293}
6294
6295static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006296{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006297 const int vd = _pxvid_to_vd(pxvid);
6298 const int vm = vd - 1125;
6299
Chris Wilsondc979972016-05-10 14:10:04 +01006300 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006301 return vm > 0 ? vm : 0;
6302
6303 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006304}
6305
Daniel Vetter02d71952012-08-09 16:44:54 +02006306static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006307{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006308 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006309 u32 count;
6310
Daniel Vetter02d71952012-08-09 16:44:54 +02006311 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006312
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006313 now = ktime_get_raw_ns();
6314 diffms = now - dev_priv->ips.last_time2;
6315 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006316
6317 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02006318 if (!diffms)
6319 return;
6320
6321 count = I915_READ(GFXEC);
6322
Daniel Vetter20e4d402012-08-08 23:35:39 +02006323 if (count < dev_priv->ips.last_count2) {
6324 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006325 diff += count;
6326 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006327 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006328 }
6329
Daniel Vetter20e4d402012-08-08 23:35:39 +02006330 dev_priv->ips.last_count2 = count;
6331 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006332
6333 /* More magic constants... */
6334 diff = diff * 1181;
6335 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02006336 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006337}
6338
Daniel Vetter02d71952012-08-09 16:44:54 +02006339void i915_update_gfx_val(struct drm_i915_private *dev_priv)
6340{
Chris Wilsondc979972016-05-10 14:10:04 +01006341 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02006342 return;
6343
Daniel Vetter92703882012-08-09 16:46:01 +02006344 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006345
6346 __i915_update_gfx_val(dev_priv);
6347
Daniel Vetter92703882012-08-09 16:46:01 +02006348 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006349}
6350
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006351static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006352{
6353 unsigned long t, corr, state1, corr2, state2;
6354 u32 pxvid, ext_v;
6355
Daniel Vetter02d71952012-08-09 16:44:54 +02006356 assert_spin_locked(&mchdev_lock);
6357
Ville Syrjälä616847e2015-09-18 20:03:19 +03006358 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02006359 pxvid = (pxvid >> 24) & 0x7f;
6360 ext_v = pvid_to_extvid(dev_priv, pxvid);
6361
6362 state1 = ext_v;
6363
6364 t = i915_mch_val(dev_priv);
6365
6366 /* Revel in the empirically derived constants */
6367
6368 /* Correction factor in 1/100000 units */
6369 if (t > 80)
6370 corr = ((t * 2349) + 135940);
6371 else if (t >= 50)
6372 corr = ((t * 964) + 29317);
6373 else /* < 50 */
6374 corr = ((t * 301) + 1004);
6375
6376 corr = corr * ((150142 * state1) / 10000 - 78642);
6377 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02006378 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006379
6380 state2 = (corr2 * state1) / 10000;
6381 state2 /= 100; /* convert to mW */
6382
Daniel Vetter02d71952012-08-09 16:44:54 +02006383 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006384
Daniel Vetter20e4d402012-08-08 23:35:39 +02006385 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006386}
6387
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006388unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
6389{
6390 unsigned long val;
6391
Chris Wilsondc979972016-05-10 14:10:04 +01006392 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006393 return 0;
6394
6395 spin_lock_irq(&mchdev_lock);
6396
6397 val = __i915_gfx_val(dev_priv);
6398
6399 spin_unlock_irq(&mchdev_lock);
6400
6401 return val;
6402}
6403
Daniel Vettereb48eb02012-04-26 23:28:12 +02006404/**
6405 * i915_read_mch_val - return value for IPS use
6406 *
6407 * Calculate and return a value for the IPS driver to use when deciding whether
6408 * we have thermal and power headroom to increase CPU or GPU power budget.
6409 */
6410unsigned long i915_read_mch_val(void)
6411{
6412 struct drm_i915_private *dev_priv;
6413 unsigned long chipset_val, graphics_val, ret = 0;
6414
Daniel Vetter92703882012-08-09 16:46:01 +02006415 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006416 if (!i915_mch_dev)
6417 goto out_unlock;
6418 dev_priv = i915_mch_dev;
6419
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006420 chipset_val = __i915_chipset_val(dev_priv);
6421 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006422
6423 ret = chipset_val + graphics_val;
6424
6425out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006426 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006427
6428 return ret;
6429}
6430EXPORT_SYMBOL_GPL(i915_read_mch_val);
6431
6432/**
6433 * i915_gpu_raise - raise GPU frequency limit
6434 *
6435 * Raise the limit; IPS indicates we have thermal headroom.
6436 */
6437bool i915_gpu_raise(void)
6438{
6439 struct drm_i915_private *dev_priv;
6440 bool ret = true;
6441
Daniel Vetter92703882012-08-09 16:46:01 +02006442 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006443 if (!i915_mch_dev) {
6444 ret = false;
6445 goto out_unlock;
6446 }
6447 dev_priv = i915_mch_dev;
6448
Daniel Vetter20e4d402012-08-08 23:35:39 +02006449 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
6450 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006451
6452out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006453 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006454
6455 return ret;
6456}
6457EXPORT_SYMBOL_GPL(i915_gpu_raise);
6458
6459/**
6460 * i915_gpu_lower - lower GPU frequency limit
6461 *
6462 * IPS indicates we're close to a thermal limit, so throttle back the GPU
6463 * frequency maximum.
6464 */
6465bool i915_gpu_lower(void)
6466{
6467 struct drm_i915_private *dev_priv;
6468 bool ret = true;
6469
Daniel Vetter92703882012-08-09 16:46:01 +02006470 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006471 if (!i915_mch_dev) {
6472 ret = false;
6473 goto out_unlock;
6474 }
6475 dev_priv = i915_mch_dev;
6476
Daniel Vetter20e4d402012-08-08 23:35:39 +02006477 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
6478 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006479
6480out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006481 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006482
6483 return ret;
6484}
6485EXPORT_SYMBOL_GPL(i915_gpu_lower);
6486
6487/**
6488 * i915_gpu_busy - indicate GPU business to IPS
6489 *
6490 * Tell the IPS driver whether or not the GPU is busy.
6491 */
6492bool i915_gpu_busy(void)
6493{
Daniel Vettereb48eb02012-04-26 23:28:12 +02006494 bool ret = false;
6495
Daniel Vetter92703882012-08-09 16:46:01 +02006496 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01006497 if (i915_mch_dev)
6498 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02006499 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006500
6501 return ret;
6502}
6503EXPORT_SYMBOL_GPL(i915_gpu_busy);
6504
6505/**
6506 * i915_gpu_turbo_disable - disable graphics turbo
6507 *
6508 * Disable graphics turbo by resetting the max frequency and setting the
6509 * current frequency to the default.
6510 */
6511bool i915_gpu_turbo_disable(void)
6512{
6513 struct drm_i915_private *dev_priv;
6514 bool ret = true;
6515
Daniel Vetter92703882012-08-09 16:46:01 +02006516 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006517 if (!i915_mch_dev) {
6518 ret = false;
6519 goto out_unlock;
6520 }
6521 dev_priv = i915_mch_dev;
6522
Daniel Vetter20e4d402012-08-08 23:35:39 +02006523 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006524
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006525 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006526 ret = false;
6527
6528out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006529 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006530
6531 return ret;
6532}
6533EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6534
6535/**
6536 * Tells the intel_ips driver that the i915 driver is now loaded, if
6537 * IPS got loaded first.
6538 *
6539 * This awkward dance is so that neither module has to depend on the
6540 * other in order for IPS to do the appropriate communication of
6541 * GPU turbo limits to i915.
6542 */
6543static void
6544ips_ping_for_i915_load(void)
6545{
6546 void (*link)(void);
6547
6548 link = symbol_get(ips_link_to_i915_driver);
6549 if (link) {
6550 link();
6551 symbol_put(ips_link_to_i915_driver);
6552 }
6553}
6554
6555void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6556{
Daniel Vetter02d71952012-08-09 16:44:54 +02006557 /* We only register the i915 ips part with intel-ips once everything is
6558 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006559 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006560 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006561 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006562
6563 ips_ping_for_i915_load();
6564}
6565
6566void intel_gpu_ips_teardown(void)
6567{
Daniel Vetter92703882012-08-09 16:46:01 +02006568 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006569 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006570 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006571}
Deepak S76c3552f2014-01-30 23:08:16 +05306572
Chris Wilsondc979972016-05-10 14:10:04 +01006573static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006574{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006575 u32 lcfuse;
6576 u8 pxw[16];
6577 int i;
6578
6579 /* Disable to program */
6580 I915_WRITE(ECR, 0);
6581 POSTING_READ(ECR);
6582
6583 /* Program energy weights for various events */
6584 I915_WRITE(SDEW, 0x15040d00);
6585 I915_WRITE(CSIEW0, 0x007f0000);
6586 I915_WRITE(CSIEW1, 0x1e220004);
6587 I915_WRITE(CSIEW2, 0x04000004);
6588
6589 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006590 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006591 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006592 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006593
6594 /* Program P-state weights to account for frequency power adjustment */
6595 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006596 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006597 unsigned long freq = intel_pxfreq(pxvidfreq);
6598 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6599 PXVFREQ_PX_SHIFT;
6600 unsigned long val;
6601
6602 val = vid * vid;
6603 val *= (freq / 1000);
6604 val *= 255;
6605 val /= (127*127*900);
6606 if (val > 0xff)
6607 DRM_ERROR("bad pxval: %ld\n", val);
6608 pxw[i] = val;
6609 }
6610 /* Render standby states get 0 weight */
6611 pxw[14] = 0;
6612 pxw[15] = 0;
6613
6614 for (i = 0; i < 4; i++) {
6615 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6616 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006617 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006618 }
6619
6620 /* Adjust magic regs to magic values (more experimental results) */
6621 I915_WRITE(OGW0, 0);
6622 I915_WRITE(OGW1, 0);
6623 I915_WRITE(EG0, 0x00007f00);
6624 I915_WRITE(EG1, 0x0000000e);
6625 I915_WRITE(EG2, 0x000e0000);
6626 I915_WRITE(EG3, 0x68000300);
6627 I915_WRITE(EG4, 0x42000000);
6628 I915_WRITE(EG5, 0x00140031);
6629 I915_WRITE(EG6, 0);
6630 I915_WRITE(EG7, 0);
6631
6632 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006633 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006634
6635 /* Enable PMON + select events */
6636 I915_WRITE(ECR, 0x80000019);
6637
6638 lcfuse = I915_READ(LCFUSE02);
6639
Daniel Vetter20e4d402012-08-08 23:35:39 +02006640 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006641}
6642
Chris Wilsondc979972016-05-10 14:10:04 +01006643void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006644{
Imre Deakb268c692015-12-15 20:10:31 +02006645 /*
6646 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
6647 * requirement.
6648 */
6649 if (!i915.enable_rc6) {
6650 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
6651 intel_runtime_pm_get(dev_priv);
6652 }
Imre Deake6069ca2014-04-18 16:01:02 +03006653
Chris Wilsonb5163db2016-08-10 13:58:24 +01006654 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson773ea9a2016-07-13 09:10:33 +01006655 mutex_lock(&dev_priv->rps.hw_lock);
6656
6657 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01006658 if (IS_CHERRYVIEW(dev_priv))
6659 cherryview_init_gt_powersave(dev_priv);
6660 else if (IS_VALLEYVIEW(dev_priv))
6661 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01006662 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01006663 gen6_init_rps_frequencies(dev_priv);
6664
6665 /* Derive initial user preferences/limits from the hardware limits */
6666 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
6667 dev_priv->rps.cur_freq = dev_priv->rps.idle_freq;
6668
6669 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
6670 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
6671
6672 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
6673 dev_priv->rps.min_freq_softlimit =
6674 max_t(int,
6675 dev_priv->rps.efficient_freq,
6676 intel_freq_opcode(dev_priv, 450));
6677
Chris Wilson99ac9612016-07-13 09:10:34 +01006678 /* After setting max-softlimit, find the overclock max freq */
6679 if (IS_GEN6(dev_priv) ||
6680 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
6681 u32 params = 0;
6682
6683 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
6684 if (params & BIT(31)) { /* OC supported */
6685 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
6686 (dev_priv->rps.max_freq & 0xff) * 50,
6687 (params & 0xff) * 50);
6688 dev_priv->rps.max_freq = params & 0xff;
6689 }
6690 }
6691
Chris Wilson29ecd78d2016-07-13 09:10:35 +01006692 /* Finally allow us to boost to max by default */
6693 dev_priv->rps.boost_freq = dev_priv->rps.max_freq;
6694
Chris Wilson773ea9a2016-07-13 09:10:33 +01006695 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb5163db2016-08-10 13:58:24 +01006696 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson54b4f682016-07-21 21:16:19 +01006697
6698 intel_autoenable_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006699}
6700
Chris Wilsondc979972016-05-10 14:10:04 +01006701void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006702{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03006703 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01006704 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02006705
6706 if (!i915.enable_rc6)
6707 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006708}
6709
Chris Wilson54b4f682016-07-21 21:16:19 +01006710/**
6711 * intel_suspend_gt_powersave - suspend PM work and helper threads
6712 * @dev_priv: i915 device
6713 *
6714 * We don't want to disable RC6 or other features here, we just want
6715 * to make sure any work we've queued has finished and won't bother
6716 * us while we're suspended.
6717 */
6718void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
6719{
6720 if (INTEL_GEN(dev_priv) < 6)
6721 return;
6722
6723 if (cancel_delayed_work_sync(&dev_priv->rps.autoenable_work))
6724 intel_runtime_pm_put(dev_priv);
6725
6726 /* gen6_rps_idle() will be called later to disable interrupts */
6727}
6728
Chris Wilsonb7137e02016-07-13 09:10:37 +01006729void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
6730{
6731 dev_priv->rps.enabled = true; /* force disabling */
6732 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006733
6734 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006735}
6736
Chris Wilsondc979972016-05-10 14:10:04 +01006737void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006738{
Chris Wilsonb7137e02016-07-13 09:10:37 +01006739 if (!READ_ONCE(dev_priv->rps.enabled))
6740 return;
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006741
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006742 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006743
Chris Wilsonb7137e02016-07-13 09:10:37 +01006744 if (INTEL_GEN(dev_priv) >= 9) {
6745 gen9_disable_rc6(dev_priv);
6746 gen9_disable_rps(dev_priv);
6747 } else if (IS_CHERRYVIEW(dev_priv)) {
6748 cherryview_disable_rps(dev_priv);
6749 } else if (IS_VALLEYVIEW(dev_priv)) {
6750 valleyview_disable_rps(dev_priv);
6751 } else if (INTEL_GEN(dev_priv) >= 6) {
6752 gen6_disable_rps(dev_priv);
6753 } else if (IS_IRONLAKE_M(dev_priv)) {
6754 ironlake_disable_drps(dev_priv);
6755 }
6756
6757 dev_priv->rps.enabled = false;
6758 mutex_unlock(&dev_priv->rps.hw_lock);
6759}
6760
6761void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
6762{
Chris Wilson54b4f682016-07-21 21:16:19 +01006763 /* We shouldn't be disabling as we submit, so this should be less
6764 * racy than it appears!
6765 */
Chris Wilsonb7137e02016-07-13 09:10:37 +01006766 if (READ_ONCE(dev_priv->rps.enabled))
6767 return;
6768
6769 /* Powersaving is controlled by the host when inside a VM */
6770 if (intel_vgpu_active(dev_priv))
6771 return;
6772
6773 mutex_lock(&dev_priv->rps.hw_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02006774
Chris Wilsondc979972016-05-10 14:10:04 +01006775 if (IS_CHERRYVIEW(dev_priv)) {
6776 cherryview_enable_rps(dev_priv);
6777 } else if (IS_VALLEYVIEW(dev_priv)) {
6778 valleyview_enable_rps(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006779 } else if (INTEL_GEN(dev_priv) >= 9) {
Chris Wilsondc979972016-05-10 14:10:04 +01006780 gen9_enable_rc6(dev_priv);
6781 gen9_enable_rps(dev_priv);
Rodrigo Vivib976dc52017-01-23 10:32:37 -08006782 if (IS_GEN9_BC(dev_priv))
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006783 gen6_update_ring_freq(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01006784 } else if (IS_BROADWELL(dev_priv)) {
6785 gen8_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006786 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006787 } else if (INTEL_GEN(dev_priv) >= 6) {
Chris Wilsondc979972016-05-10 14:10:04 +01006788 gen6_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006789 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006790 } else if (IS_IRONLAKE_M(dev_priv)) {
6791 ironlake_enable_drps(dev_priv);
6792 intel_init_emon(dev_priv);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006793 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006794
6795 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6796 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6797
6798 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6799 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6800
Chris Wilson54b4f682016-07-21 21:16:19 +01006801 dev_priv->rps.enabled = true;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006802 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006803}
Imre Deakc6df39b2014-04-14 20:24:29 +03006804
Chris Wilson54b4f682016-07-21 21:16:19 +01006805static void __intel_autoenable_gt_powersave(struct work_struct *work)
6806{
6807 struct drm_i915_private *dev_priv =
6808 container_of(work, typeof(*dev_priv), rps.autoenable_work.work);
6809 struct intel_engine_cs *rcs;
6810 struct drm_i915_gem_request *req;
6811
6812 if (READ_ONCE(dev_priv->rps.enabled))
6813 goto out;
6814
Akash Goel3b3f1652016-10-13 22:44:48 +05306815 rcs = dev_priv->engine[RCS];
Chris Wilsone8a9c582016-12-18 15:37:20 +00006816 if (rcs->last_retired_context)
Chris Wilson54b4f682016-07-21 21:16:19 +01006817 goto out;
6818
6819 if (!rcs->init_context)
6820 goto out;
6821
6822 mutex_lock(&dev_priv->drm.struct_mutex);
6823
6824 req = i915_gem_request_alloc(rcs, dev_priv->kernel_context);
6825 if (IS_ERR(req))
6826 goto unlock;
6827
6828 if (!i915.enable_execlists && i915_switch_context(req) == 0)
6829 rcs->init_context(req);
6830
6831 /* Mark the device busy, calling intel_enable_gt_powersave() */
6832 i915_add_request_no_flush(req);
6833
6834unlock:
6835 mutex_unlock(&dev_priv->drm.struct_mutex);
6836out:
6837 intel_runtime_pm_put(dev_priv);
6838}
6839
6840void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv)
6841{
6842 if (READ_ONCE(dev_priv->rps.enabled))
6843 return;
6844
6845 if (IS_IRONLAKE_M(dev_priv)) {
6846 ironlake_enable_drps(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006847 intel_init_emon(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006848 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
6849 /*
6850 * PCU communication is slow and this doesn't need to be
6851 * done at any specific time, so do this out of our fast path
6852 * to make resume and init faster.
6853 *
6854 * We depend on the HW RC6 power context save/restore
6855 * mechanism when entering D3 through runtime PM suspend. So
6856 * disable RPM until RPS/RC6 is properly setup. We can only
6857 * get here via the driver load/system resume/runtime resume
6858 * paths, so the _noresume version is enough (and in case of
6859 * runtime resume it's necessary).
6860 */
6861 if (queue_delayed_work(dev_priv->wq,
6862 &dev_priv->rps.autoenable_work,
6863 round_jiffies_up_relative(HZ)))
6864 intel_runtime_pm_get_noresume(dev_priv);
6865 }
6866}
6867
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006868static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006869{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006870 /*
6871 * On Ibex Peak and Cougar Point, we need to disable clock
6872 * gating for the panel power sequencer or it will fail to
6873 * start up when no ports are active.
6874 */
6875 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6876}
6877
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006878static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006879{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006880 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006881
Damien Lespiau055e3932014-08-18 13:49:10 +01006882 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006883 I915_WRITE(DSPCNTR(pipe),
6884 I915_READ(DSPCNTR(pipe)) |
6885 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006886
6887 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6888 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006889 }
6890}
6891
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006892static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä017636c2013-12-05 15:51:37 +02006893{
Ville Syrjälä017636c2013-12-05 15:51:37 +02006894 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6895 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6896 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6897
6898 /*
6899 * Don't touch WM1S_LP_EN here.
6900 * Doing so could cause underruns.
6901 */
6902}
6903
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006904static void ironlake_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006905{
Damien Lespiau231e54f2012-10-19 17:55:41 +01006906 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006907
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006908 /*
6909 * Required for FBC
6910 * WaFbcDisableDpfcClockGating:ilk
6911 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006912 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6913 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6914 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006915
6916 I915_WRITE(PCH_3DCGDIS0,
6917 MARIUNIT_CLOCK_GATE_DISABLE |
6918 SVSMUNIT_CLOCK_GATE_DISABLE);
6919 I915_WRITE(PCH_3DCGDIS1,
6920 VFMUNIT_CLOCK_GATE_DISABLE);
6921
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006922 /*
6923 * According to the spec the following bits should be set in
6924 * order to enable memory self-refresh
6925 * The bit 22/21 of 0x42004
6926 * The bit 5 of 0x42020
6927 * The bit 15 of 0x45000
6928 */
6929 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6930 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6931 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006932 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006933 I915_WRITE(DISP_ARB_CTL,
6934 (I915_READ(DISP_ARB_CTL) |
6935 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006936
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006937 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006938
6939 /*
6940 * Based on the document from hardware guys the following bits
6941 * should be set unconditionally in order to enable FBC.
6942 * The bit 22 of 0x42000
6943 * The bit 22 of 0x42004
6944 * The bit 7,8,9 of 0x42020.
6945 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01006946 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006947 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006948 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6949 I915_READ(ILK_DISPLAY_CHICKEN1) |
6950 ILK_FBCQ_DIS);
6951 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6952 I915_READ(ILK_DISPLAY_CHICKEN2) |
6953 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006954 }
6955
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006956 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6957
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006958 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6959 I915_READ(ILK_DISPLAY_CHICKEN2) |
6960 ILK_ELPIN_409_SELECT);
6961 I915_WRITE(_3D_CHICKEN2,
6962 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6963 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006964
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006965 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006966 I915_WRITE(CACHE_MODE_0,
6967 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006968
Akash Goel4e046322014-04-04 17:14:38 +05306969 /* WaDisable_RenderCache_OperationalFlush:ilk */
6970 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6971
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006972 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006973
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006974 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006975}
6976
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006977static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006978{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006979 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006980 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006981
6982 /*
6983 * On Ibex Peak and Cougar Point, we need to disable clock
6984 * gating for the panel power sequencer or it will fail to
6985 * start up when no ports are active.
6986 */
Jesse Barnescd664072013-10-02 10:34:19 -07006987 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6988 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6989 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006990 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6991 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006992 /* The below fixes the weird display corruption, a few pixels shifted
6993 * downward, on (only) LVDS of some HP laptops with IVY.
6994 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006995 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006996 val = I915_READ(TRANS_CHICKEN2(pipe));
6997 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6998 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006999 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03007000 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03007001 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
7002 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
7003 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03007004 I915_WRITE(TRANS_CHICKEN2(pipe), val);
7005 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01007006 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01007007 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01007008 I915_WRITE(TRANS_CHICKEN1(pipe),
7009 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
7010 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007011}
7012
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007013static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007014{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007015 uint32_t tmp;
7016
7017 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02007018 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
7019 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
7020 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007021}
7022
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007023static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007024{
Damien Lespiau231e54f2012-10-19 17:55:41 +01007025 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007026
Damien Lespiau231e54f2012-10-19 17:55:41 +01007027 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007028
7029 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7030 I915_READ(ILK_DISPLAY_CHICKEN2) |
7031 ILK_ELPIN_409_SELECT);
7032
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007033 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01007034 I915_WRITE(_3D_CHICKEN,
7035 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
7036
Akash Goel4e046322014-04-04 17:14:38 +05307037 /* WaDisable_RenderCache_OperationalFlush:snb */
7038 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7039
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007040 /*
7041 * BSpec recoomends 8x4 when MSAA is used,
7042 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007043 *
7044 * Note that PS/WM thread counts depend on the WIZ hashing
7045 * disable bit, which we don't touch here, but it's good
7046 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007047 */
7048 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007049 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007050
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007051 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007052
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007053 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02007054 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007055
7056 I915_WRITE(GEN6_UCGCTL1,
7057 I915_READ(GEN6_UCGCTL1) |
7058 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
7059 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
7060
7061 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
7062 * gating disable must be set. Failure to set it results in
7063 * flickering pixels due to Z write ordering failures after
7064 * some amount of runtime in the Mesa "fire" demo, and Unigine
7065 * Sanctuary and Tropics, and apparently anything else with
7066 * alpha test or pixel discard.
7067 *
7068 * According to the spec, bit 11 (RCCUNIT) must also be set,
7069 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007070 *
Ville Syrjäläef593182014-01-22 21:32:47 +02007071 * WaDisableRCCUnitClockGating:snb
7072 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007073 */
7074 I915_WRITE(GEN6_UCGCTL2,
7075 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
7076 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
7077
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02007078 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02007079 I915_WRITE(_3D_CHICKEN3,
7080 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007081
7082 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02007083 * Bspec says:
7084 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
7085 * 3DSTATE_SF number of SF output attributes is more than 16."
7086 */
7087 I915_WRITE(_3D_CHICKEN3,
7088 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
7089
7090 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007091 * According to the spec the following bits should be
7092 * set in order to enable memory self-refresh and fbc:
7093 * The bit21 and bit22 of 0x42000
7094 * The bit21 and bit22 of 0x42004
7095 * The bit5 and bit7 of 0x42020
7096 * The bit14 of 0x70180
7097 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01007098 *
7099 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007100 */
7101 I915_WRITE(ILK_DISPLAY_CHICKEN1,
7102 I915_READ(ILK_DISPLAY_CHICKEN1) |
7103 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
7104 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7105 I915_READ(ILK_DISPLAY_CHICKEN2) |
7106 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01007107 I915_WRITE(ILK_DSPCLK_GATE_D,
7108 I915_READ(ILK_DSPCLK_GATE_D) |
7109 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
7110 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007111
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007112 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07007113
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007114 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007115
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007116 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007117}
7118
7119static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
7120{
7121 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
7122
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007123 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02007124 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007125 *
7126 * This actually overrides the dispatch
7127 * mode for all thread types.
7128 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007129 reg &= ~GEN7_FF_SCHED_MASK;
7130 reg |= GEN7_FF_TS_SCHED_HW;
7131 reg |= GEN7_FF_VS_SCHED_HW;
7132 reg |= GEN7_FF_DS_SCHED_HW;
7133
7134 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
7135}
7136
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007137static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007138{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007139 /*
7140 * TODO: this bit should only be enabled when really needed, then
7141 * disabled when not needed anymore in order to save power.
7142 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007143 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007144 I915_WRITE(SOUTH_DSPCLK_GATE_D,
7145 I915_READ(SOUTH_DSPCLK_GATE_D) |
7146 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007147
7148 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03007149 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
7150 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007151 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007152}
7153
Ville Syrjälä712bf362016-10-31 22:37:23 +02007154static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007155{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007156 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03007157 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
7158
7159 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7160 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7161 }
7162}
7163
Imre Deak450174f2016-05-03 15:54:21 +03007164static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
7165 int general_prio_credits,
7166 int high_prio_credits)
7167{
7168 u32 misccpctl;
7169
7170 /* WaTempDisableDOPClkGating:bdw */
7171 misccpctl = I915_READ(GEN7_MISCCPCTL);
7172 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
7173
7174 I915_WRITE(GEN8_L3SQCREG1,
7175 L3_GENERAL_PRIO_CREDITS(general_prio_credits) |
7176 L3_HIGH_PRIO_CREDITS(high_prio_credits));
7177
7178 /*
7179 * Wait at least 100 clocks before re-enabling clock gating.
7180 * See the definition of L3SQCREG1 in BSpec.
7181 */
7182 POSTING_READ(GEN8_L3SQCREG1);
7183 udelay(1);
7184 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
7185}
7186
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007187static void kabylake_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007188{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007189 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007190
7191 /* WaDisableSDEUnitClockGating:kbl */
7192 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7193 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7194 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03007195
7196 /* WaDisableGamClockGating:kbl */
7197 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7198 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7199 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007200
7201 /* WaFbcNukeOnHostModify:kbl */
7202 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7203 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007204}
7205
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007206static void skylake_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007207{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007208 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03007209
7210 /* WAC6entrylatency:skl */
7211 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
7212 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007213
7214 /* WaFbcNukeOnHostModify:skl */
7215 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7216 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007217}
7218
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007219static void broadwell_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007220{
Damien Lespiau07d27e22014-03-03 17:31:46 +00007221 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007222
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007223 ilk_init_lp_watermarks(dev_priv);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007224
Ben Widawskyab57fff2013-12-12 15:28:04 -08007225 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007226 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007227
Ben Widawskyab57fff2013-12-12 15:28:04 -08007228 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007229 I915_WRITE(CHICKEN_PAR1_1,
7230 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
7231
Ben Widawskyab57fff2013-12-12 15:28:04 -08007232 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01007233 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00007234 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02007235 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02007236 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007237 }
Ben Widawsky63801f22013-12-12 17:26:03 -08007238
Ben Widawskyab57fff2013-12-12 15:28:04 -08007239 /* WaVSRefCountFullforceMissDisable:bdw */
7240 /* WaDSRefCountFullforceMissDisable:bdw */
7241 I915_WRITE(GEN7_FF_THREAD_MODE,
7242 I915_READ(GEN7_FF_THREAD_MODE) &
7243 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02007244
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02007245 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7246 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02007247
7248 /* WaDisableSDEUnitClockGating:bdw */
7249 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7250 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00007251
Imre Deak450174f2016-05-03 15:54:21 +03007252 /* WaProgramL3SqcReg1Default:bdw */
7253 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03007254
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007255 /*
7256 * WaGttCachingOffByDefault:bdw
7257 * GTT cache may not work with big pages, so if those
7258 * are ever enabled GTT cache may need to be disabled.
7259 */
7260 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
7261
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03007262 /* WaKVMNotificationOnConfigChange:bdw */
7263 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
7264 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
7265
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007266 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00007267
7268 /* WaDisableDopClockGating:bdw
7269 *
7270 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
7271 * clock gating.
7272 */
7273 I915_WRITE(GEN6_UCGCTL1,
7274 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007275}
7276
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007277static void haswell_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007278{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007279 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007280
Francisco Jerezf3fc4882013-10-02 15:53:16 -07007281 /* L3 caching of data atomics doesn't work -- disable it. */
7282 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
7283 I915_WRITE(HSW_ROW_CHICKEN3,
7284 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
7285
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007286 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007287 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7288 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7289 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7290
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02007291 /* WaVSRefCountFullforceMissDisable:hsw */
7292 I915_WRITE(GEN7_FF_THREAD_MODE,
7293 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007294
Akash Goel4e046322014-04-04 17:14:38 +05307295 /* WaDisable_RenderCache_OperationalFlush:hsw */
7296 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7297
Chia-I Wufe27c602014-01-28 13:29:33 +08007298 /* enable HiZ Raw Stall Optimization */
7299 I915_WRITE(CACHE_MODE_0_GEN7,
7300 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7301
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007302 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007303 I915_WRITE(CACHE_MODE_1,
7304 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007305
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007306 /*
7307 * BSpec recommends 8x4 when MSAA is used,
7308 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007309 *
7310 * Note that PS/WM thread counts depend on the WIZ hashing
7311 * disable bit, which we don't touch here, but it's good
7312 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007313 */
7314 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007315 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007316
Kenneth Graunke94411592014-12-31 16:23:00 -08007317 /* WaSampleCChickenBitEnable:hsw */
7318 I915_WRITE(HALF_SLICE_CHICKEN3,
7319 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7320
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007321 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007322 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7323
Paulo Zanoni90a88642013-05-03 17:23:45 -03007324 /* WaRsPkgCStateDisplayPMReq:hsw */
7325 I915_WRITE(CHICKEN_PAR1_1,
7326 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007327
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007328 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007329}
7330
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007331static void ivybridge_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007332{
Ben Widawsky20848222012-05-04 18:58:59 -07007333 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007334
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007335 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007336
Damien Lespiau231e54f2012-10-19 17:55:41 +01007337 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007338
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007339 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007340 I915_WRITE(_3D_CHICKEN3,
7341 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7342
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007343 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007344 I915_WRITE(IVB_CHICKEN3,
7345 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7346 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7347
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007348 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007349 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07007350 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7351 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007352
Akash Goel4e046322014-04-04 17:14:38 +05307353 /* WaDisable_RenderCache_OperationalFlush:ivb */
7354 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7355
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007356 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007357 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7358 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7359
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007360 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007361 I915_WRITE(GEN7_L3CNTLREG1,
7362 GEN7_WA_FOR_GEN7_L3_CONTROL);
7363 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007364 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007365 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07007366 I915_WRITE(GEN7_ROW_CHICKEN2,
7367 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007368 else {
7369 /* must write both registers */
7370 I915_WRITE(GEN7_ROW_CHICKEN2,
7371 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007372 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7373 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007374 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007375
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007376 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007377 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7378 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7379
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007380 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007381 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007382 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007383 */
7384 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007385 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007386
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007387 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007388 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7389 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7390 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7391
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007392 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007393
7394 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007395
Chris Wilson22721342014-03-04 09:41:43 +00007396 if (0) { /* causes HiZ corruption on ivb:gt1 */
7397 /* enable HiZ Raw Stall Optimization */
7398 I915_WRITE(CACHE_MODE_0_GEN7,
7399 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7400 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007401
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007402 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007403 I915_WRITE(CACHE_MODE_1,
7404 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007405
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007406 /*
7407 * BSpec recommends 8x4 when MSAA is used,
7408 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007409 *
7410 * Note that PS/WM thread counts depend on the WIZ hashing
7411 * disable bit, which we don't touch here, but it's good
7412 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007413 */
7414 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007415 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007416
Ben Widawsky20848222012-05-04 18:58:59 -07007417 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7418 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7419 snpcr |= GEN6_MBC_SNPCR_MED;
7420 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007421
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007422 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007423 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007424
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007425 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007426}
7427
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007428static void valleyview_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007429{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007430 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007431 I915_WRITE(_3D_CHICKEN3,
7432 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7433
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007434 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007435 I915_WRITE(IVB_CHICKEN3,
7436 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7437 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7438
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007439 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007440 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007441 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007442 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7443 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007444
Akash Goel4e046322014-04-04 17:14:38 +05307445 /* WaDisable_RenderCache_OperationalFlush:vlv */
7446 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7447
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007448 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007449 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7450 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7451
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007452 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007453 I915_WRITE(GEN7_ROW_CHICKEN2,
7454 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7455
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007456 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007457 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7458 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7459 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7460
Ville Syrjälä46680e02014-01-22 21:33:01 +02007461 gen7_setup_fixed_func_scheduler(dev_priv);
7462
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007463 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007464 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007465 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007466 */
7467 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007468 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007469
Akash Goelc98f5062014-03-24 23:00:07 +05307470 /* WaDisableL3Bank2xClockGate:vlv
7471 * Disabling L3 clock gating- MMIO 940c[25] = 1
7472 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7473 I915_WRITE(GEN7_UCGCTL4,
7474 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007475
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007476 /*
7477 * BSpec says this must be set, even though
7478 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7479 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007480 I915_WRITE(CACHE_MODE_1,
7481 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007482
7483 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007484 * BSpec recommends 8x4 when MSAA is used,
7485 * however in practice 16x4 seems fastest.
7486 *
7487 * Note that PS/WM thread counts depend on the WIZ hashing
7488 * disable bit, which we don't touch here, but it's good
7489 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7490 */
7491 I915_WRITE(GEN7_GT_MODE,
7492 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7493
7494 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007495 * WaIncreaseL3CreditsForVLVB0:vlv
7496 * This is the hardware default actually.
7497 */
7498 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7499
7500 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007501 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007502 * Disable clock gating on th GCFG unit to prevent a delay
7503 * in the reporting of vblank events.
7504 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007505 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007506}
7507
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007508static void cherryview_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007509{
Ville Syrjälä232ce332014-04-09 13:28:35 +03007510 /* WaVSRefCountFullforceMissDisable:chv */
7511 /* WaDSRefCountFullforceMissDisable:chv */
7512 I915_WRITE(GEN7_FF_THREAD_MODE,
7513 I915_READ(GEN7_FF_THREAD_MODE) &
7514 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007515
7516 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7517 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7518 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007519
7520 /* WaDisableCSUnitClockGating:chv */
7521 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7522 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007523
7524 /* WaDisableSDEUnitClockGating:chv */
7525 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7526 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007527
7528 /*
Imre Deak450174f2016-05-03 15:54:21 +03007529 * WaProgramL3SqcReg1Default:chv
7530 * See gfxspecs/Related Documents/Performance Guide/
7531 * LSQC Setting Recommendations.
7532 */
7533 gen8_set_l3sqc_credits(dev_priv, 38, 2);
7534
7535 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007536 * GTT cache may not work with big pages, so if those
7537 * are ever enabled GTT cache may need to be disabled.
7538 */
7539 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007540}
7541
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007542static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007543{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007544 uint32_t dspclk_gate;
7545
7546 I915_WRITE(RENCLK_GATE_D1, 0);
7547 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7548 GS_UNIT_CLOCK_GATE_DISABLE |
7549 CL_UNIT_CLOCK_GATE_DISABLE);
7550 I915_WRITE(RAMCLK_GATE_D, 0);
7551 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7552 OVRUNIT_CLOCK_GATE_DISABLE |
7553 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007554 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007555 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7556 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007557
7558 /* WaDisableRenderCachePipelinedFlush */
7559 I915_WRITE(CACHE_MODE_0,
7560 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007561
Akash Goel4e046322014-04-04 17:14:38 +05307562 /* WaDisable_RenderCache_OperationalFlush:g4x */
7563 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7564
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007565 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007566}
7567
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007568static void crestline_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007569{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007570 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7571 I915_WRITE(RENCLK_GATE_D2, 0);
7572 I915_WRITE(DSPCLK_GATE_D, 0);
7573 I915_WRITE(RAMCLK_GATE_D, 0);
7574 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007575 I915_WRITE(MI_ARB_STATE,
7576 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307577
7578 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7579 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007580}
7581
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007582static void broadwater_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007583{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007584 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7585 I965_RCC_CLOCK_GATE_DISABLE |
7586 I965_RCPB_CLOCK_GATE_DISABLE |
7587 I965_ISC_CLOCK_GATE_DISABLE |
7588 I965_FBC_CLOCK_GATE_DISABLE);
7589 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007590 I915_WRITE(MI_ARB_STATE,
7591 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307592
7593 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7594 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007595}
7596
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007597static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007598{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007599 u32 dstate = I915_READ(D_STATE);
7600
7601 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7602 DSTATE_DOT_CLOCK_GATING;
7603 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007604
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007605 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01007606 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007607
7608 /* IIR "flip pending" means done if this bit is set */
7609 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007610
7611 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007612 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007613
7614 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7615 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007616
7617 I915_WRITE(MI_ARB_STATE,
7618 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007619}
7620
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007621static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007622{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007623 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007624
7625 /* interrupts should cause a wake up from C3 */
7626 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7627 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007628
7629 I915_WRITE(MEM_MODE,
7630 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007631}
7632
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007633static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007634{
Ville Syrjälä10383922014-08-15 01:21:54 +03007635 I915_WRITE(MEM_MODE,
7636 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7637 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007638}
7639
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007640void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007641{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007642 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007643}
7644
Ville Syrjälä712bf362016-10-31 22:37:23 +02007645void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007646{
Ville Syrjälä712bf362016-10-31 22:37:23 +02007647 if (HAS_PCH_LPT(dev_priv))
7648 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03007649}
7650
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007651static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02007652{
7653 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
7654}
7655
7656/**
7657 * intel_init_clock_gating_hooks - setup the clock gating hooks
7658 * @dev_priv: device private
7659 *
7660 * Setup the hooks that configure which clocks of a given platform can be
7661 * gated and also apply various GT and display specific workarounds for these
7662 * platforms. Note that some GT specific workarounds are applied separately
7663 * when GPU contexts or batchbuffers start their execution.
7664 */
7665void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7666{
7667 if (IS_SKYLAKE(dev_priv))
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007668 dev_priv->display.init_clock_gating = skylake_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007669 else if (IS_KABYLAKE(dev_priv))
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007670 dev_priv->display.init_clock_gating = kabylake_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007671 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007672 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007673 else if (IS_GEMINILAKE(dev_priv))
7674 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007675 else if (IS_BROADWELL(dev_priv))
7676 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
7677 else if (IS_CHERRYVIEW(dev_priv))
7678 dev_priv->display.init_clock_gating = cherryview_init_clock_gating;
7679 else if (IS_HASWELL(dev_priv))
7680 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
7681 else if (IS_IVYBRIDGE(dev_priv))
7682 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
7683 else if (IS_VALLEYVIEW(dev_priv))
7684 dev_priv->display.init_clock_gating = valleyview_init_clock_gating;
7685 else if (IS_GEN6(dev_priv))
7686 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
7687 else if (IS_GEN5(dev_priv))
7688 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
7689 else if (IS_G4X(dev_priv))
7690 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007691 else if (IS_I965GM(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007692 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007693 else if (IS_I965G(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007694 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7695 else if (IS_GEN3(dev_priv))
7696 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7697 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7698 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7699 else if (IS_GEN2(dev_priv))
7700 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7701 else {
7702 MISSING_CASE(INTEL_DEVID(dev_priv));
7703 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7704 }
7705}
7706
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007707/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007708void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007709{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007710 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007711
Daniel Vetterc921aba2012-04-26 23:28:17 +02007712 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007713 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007714 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007715 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007716 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02007717
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007718 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007719 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007720 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01007721 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01007722 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07007723 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007724 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007725 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007726
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007727 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007728 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007729 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007730 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007731 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007732 dev_priv->display.compute_intermediate_wm =
7733 ilk_compute_intermediate_wm;
7734 dev_priv->display.initial_watermarks =
7735 ilk_initial_watermarks;
7736 dev_priv->display.optimize_watermarks =
7737 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007738 } else {
7739 DRM_DEBUG_KMS("Failed to read display plane latency. "
7740 "Disable CxSR\n");
7741 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02007742 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007743 vlv_setup_wm_latency(dev_priv);
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007744 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007745 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007746 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007747 dev_priv->is_ddr3,
7748 dev_priv->fsb_freq,
7749 dev_priv->mem_freq)) {
7750 DRM_INFO("failed to find known CxSR latency "
7751 "(found ddr%s fsb freq %d, mem freq %d), "
7752 "disabling CxSR\n",
7753 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7754 dev_priv->fsb_freq, dev_priv->mem_freq);
7755 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007756 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007757 dev_priv->display.update_wm = NULL;
7758 } else
7759 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01007760 } else if (IS_G4X(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007761 dev_priv->display.update_wm = g4x_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007762 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007763 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007764 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007765 dev_priv->display.update_wm = i9xx_update_wm;
7766 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007767 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007768 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007769 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007770 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007771 } else {
7772 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007773 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007774 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007775 } else {
7776 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007777 }
7778}
7779
Lyude87660502016-08-17 15:55:53 -04007780static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
7781{
7782 uint32_t flags =
7783 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7784
7785 switch (flags) {
7786 case GEN6_PCODE_SUCCESS:
7787 return 0;
7788 case GEN6_PCODE_UNIMPLEMENTED_CMD:
7789 case GEN6_PCODE_ILLEGAL_CMD:
7790 return -ENXIO;
7791 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01007792 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04007793 return -EOVERFLOW;
7794 case GEN6_PCODE_TIMEOUT:
7795 return -ETIMEDOUT;
7796 default:
7797 MISSING_CASE(flags)
7798 return 0;
7799 }
7800}
7801
7802static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
7803{
7804 uint32_t flags =
7805 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7806
7807 switch (flags) {
7808 case GEN6_PCODE_SUCCESS:
7809 return 0;
7810 case GEN6_PCODE_ILLEGAL_CMD:
7811 return -ENXIO;
7812 case GEN7_PCODE_TIMEOUT:
7813 return -ETIMEDOUT;
7814 case GEN7_PCODE_ILLEGAL_DATA:
7815 return -EINVAL;
7816 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
7817 return -EOVERFLOW;
7818 default:
7819 MISSING_CASE(flags);
7820 return 0;
7821 }
7822}
7823
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007824int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007825{
Lyude87660502016-08-17 15:55:53 -04007826 int status;
7827
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007828 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007829
Chris Wilson3f5582d2016-06-30 15:32:45 +01007830 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7831 * use te fw I915_READ variants to reduce the amount of work
7832 * required when reading/writing.
7833 */
7834
7835 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007836 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7837 return -EAGAIN;
7838 }
7839
Chris Wilson3f5582d2016-06-30 15:32:45 +01007840 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
7841 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
7842 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007843
Chris Wilson3f5582d2016-06-30 15:32:45 +01007844 if (intel_wait_for_register_fw(dev_priv,
7845 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7846 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007847 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7848 return -ETIMEDOUT;
7849 }
7850
Chris Wilson3f5582d2016-06-30 15:32:45 +01007851 *val = I915_READ_FW(GEN6_PCODE_DATA);
7852 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007853
Lyude87660502016-08-17 15:55:53 -04007854 if (INTEL_GEN(dev_priv) > 6)
7855 status = gen7_check_mailbox_status(dev_priv);
7856 else
7857 status = gen6_check_mailbox_status(dev_priv);
7858
7859 if (status) {
7860 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed: %d\n",
7861 status);
7862 return status;
7863 }
7864
Ben Widawsky42c05262012-09-26 10:34:00 -07007865 return 0;
7866}
7867
Chris Wilson3f5582d2016-06-30 15:32:45 +01007868int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04007869 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007870{
Lyude87660502016-08-17 15:55:53 -04007871 int status;
7872
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007873 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007874
Chris Wilson3f5582d2016-06-30 15:32:45 +01007875 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7876 * use te fw I915_READ variants to reduce the amount of work
7877 * required when reading/writing.
7878 */
7879
7880 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007881 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7882 return -EAGAIN;
7883 }
7884
Chris Wilson3f5582d2016-06-30 15:32:45 +01007885 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02007886 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01007887 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007888
Chris Wilson3f5582d2016-06-30 15:32:45 +01007889 if (intel_wait_for_register_fw(dev_priv,
7890 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7891 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007892 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7893 return -ETIMEDOUT;
7894 }
7895
Chris Wilson3f5582d2016-06-30 15:32:45 +01007896 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007897
Lyude87660502016-08-17 15:55:53 -04007898 if (INTEL_GEN(dev_priv) > 6)
7899 status = gen7_check_mailbox_status(dev_priv);
7900 else
7901 status = gen6_check_mailbox_status(dev_priv);
7902
7903 if (status) {
7904 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed: %d\n",
7905 status);
7906 return status;
7907 }
7908
Ben Widawsky42c05262012-09-26 10:34:00 -07007909 return 0;
7910}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007911
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007912static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
7913 u32 request, u32 reply_mask, u32 reply,
7914 u32 *status)
7915{
7916 u32 val = request;
7917
7918 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
7919
7920 return *status || ((val & reply_mask) == reply);
7921}
7922
7923/**
7924 * skl_pcode_request - send PCODE request until acknowledgment
7925 * @dev_priv: device private
7926 * @mbox: PCODE mailbox ID the request is targeted for
7927 * @request: request ID
7928 * @reply_mask: mask used to check for request acknowledgment
7929 * @reply: value used to check for request acknowledgment
7930 * @timeout_base_ms: timeout for polling with preemption enabled
7931 *
7932 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
Imre Deak01299362017-02-24 16:32:10 +02007933 * reports an error or an overall timeout of @timeout_base_ms+50 ms expires.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007934 * The request is acknowledged once the PCODE reply dword equals @reply after
7935 * applying @reply_mask. Polling is first attempted with preemption enabled
Imre Deak01299362017-02-24 16:32:10 +02007936 * for @timeout_base_ms and if this times out for another 50 ms with
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007937 * preemption disabled.
7938 *
7939 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
7940 * other error as reported by PCODE.
7941 */
7942int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
7943 u32 reply_mask, u32 reply, int timeout_base_ms)
7944{
7945 u32 status;
7946 int ret;
7947
7948 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
7949
7950#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
7951 &status)
7952
7953 /*
7954 * Prime the PCODE by doing a request first. Normally it guarantees
7955 * that a subsequent request, at most @timeout_base_ms later, succeeds.
7956 * _wait_for() doesn't guarantee when its passed condition is evaluated
7957 * first, so send the first request explicitly.
7958 */
7959 if (COND) {
7960 ret = 0;
7961 goto out;
7962 }
7963 ret = _wait_for(COND, timeout_base_ms * 1000, 10);
7964 if (!ret)
7965 goto out;
7966
7967 /*
7968 * The above can time out if the number of requests was low (2 in the
7969 * worst case) _and_ PCODE was busy for some reason even after a
7970 * (queued) request and @timeout_base_ms delay. As a workaround retry
7971 * the poll with preemption disabled to maximize the number of
Imre Deak01299362017-02-24 16:32:10 +02007972 * requests. Increase the timeout from @timeout_base_ms to 50ms to
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007973 * account for interrupts that could reduce the number of these
Imre Deak01299362017-02-24 16:32:10 +02007974 * requests, and for any quirks of the PCODE firmware that delays
7975 * the request completion.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007976 */
7977 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
7978 WARN_ON_ONCE(timeout_base_ms > 3);
7979 preempt_disable();
Imre Deak01299362017-02-24 16:32:10 +02007980 ret = wait_for_atomic(COND, 50);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007981 preempt_enable();
7982
7983out:
7984 return ret ? ret : status;
7985#undef COND
7986}
7987
Ville Syrjälädd06f882014-11-10 22:55:12 +02007988static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7989{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007990 /*
7991 * N = val - 0xb7
7992 * Slow = Fast = GPLL ref * N
7993 */
7994 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007995}
7996
Fengguang Wub55dd642014-07-12 11:21:39 +02007997static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007998{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007999 return DIV_ROUND_CLOSEST(1000 * val, dev_priv->rps.gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07008000}
8001
Fengguang Wub55dd642014-07-12 11:21:39 +02008002static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05308003{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02008004 /*
8005 * N = val / 2
8006 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
8007 */
8008 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05308009}
8010
Fengguang Wub55dd642014-07-12 11:21:39 +02008011static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05308012{
Ville Syrjälä1c147622014-08-18 14:42:43 +03008013 /* CHV needs even values */
Ville Syrjäläc30fec62016-03-04 21:43:02 +02008014 return DIV_ROUND_CLOSEST(2 * 1000 * val, dev_priv->rps.gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05308015}
8016
Ville Syrjälä616bc822015-01-23 21:04:25 +02008017int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
8018{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008019 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008020 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
8021 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008022 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008023 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008024 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008025 return byt_gpu_freq(dev_priv, val);
8026 else
8027 return val * GT_FREQUENCY_MULTIPLIER;
8028}
8029
Ville Syrjälä616bc822015-01-23 21:04:25 +02008030int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
8031{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008032 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008033 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
8034 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008035 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008036 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008037 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008038 return byt_freq_opcode(dev_priv, val);
8039 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008040 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05308041}
8042
Chris Wilson6ad790c2015-04-07 16:20:31 +01008043struct request_boost {
8044 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02008045 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008046};
8047
8048static void __intel_rps_boost_work(struct work_struct *work)
8049{
8050 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01008051 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008052
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008053 if (!i915_gem_request_completed(req))
Chris Wilsonc0336662016-05-06 15:40:21 +01008054 gen6_rps_boost(req->i915, NULL, req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008055
Chris Wilsone8a261e2016-07-20 13:31:49 +01008056 i915_gem_request_put(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008057 kfree(boost);
8058}
8059
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008060void intel_queue_rps_boost_for_request(struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008061{
8062 struct request_boost *boost;
8063
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008064 if (req == NULL || INTEL_GEN(req->i915) < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008065 return;
8066
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008067 if (i915_gem_request_completed(req))
Chris Wilsone61b9952015-04-27 13:41:24 +01008068 return;
8069
Chris Wilson6ad790c2015-04-07 16:20:31 +01008070 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
8071 if (boost == NULL)
8072 return;
8073
Chris Wilsone8a261e2016-07-20 13:31:49 +01008074 boost->req = i915_gem_request_get(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008075
8076 INIT_WORK(&boost->work, __intel_rps_boost_work);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008077 queue_work(req->i915->wq, &boost->work);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008078}
8079
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00008080void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01008081{
Daniel Vetterf742a552013-12-06 10:17:53 +01008082 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01008083 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01008084
Chris Wilson54b4f682016-07-21 21:16:19 +01008085 INIT_DELAYED_WORK(&dev_priv->rps.autoenable_work,
8086 __intel_autoenable_gt_powersave);
Chris Wilson1854d5c2015-04-07 16:20:32 +01008087 INIT_LIST_HEAD(&dev_priv->rps.clients);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03008088
Paulo Zanoni33688d92014-03-07 20:08:19 -03008089 dev_priv->pm.suspended = false;
Imre Deak1f814da2015-12-16 02:52:19 +02008090 atomic_set(&dev_priv->pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01008091}