blob: a6040abffcebafd6b88773b75d7cefcd5847d800 [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ä814e7f02017-03-02 19:14:55 +0200418static void vlv_get_fifo_size(struct intel_crtc_state *crtc_state)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200419{
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200420 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200421 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200422 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200423 enum pipe pipe = crtc->pipe;
424 int sprite0_start, sprite1_start;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200425
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200426 switch (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:
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200447 MISSING_CASE(pipe);
448 return;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200449 }
450
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200451 fifo_state->plane[PLANE_PRIMARY] = sprite0_start;
452 fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start;
453 fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start;
454 fifo_state->plane[PLANE_CURSOR] = 63;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200455
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200456 DRM_DEBUG_KMS("Pipe %c FIFO size: %d/%d/%d/%d\n",
457 pipe_name(pipe),
458 fifo_state->plane[PLANE_PRIMARY],
459 fifo_state->plane[PLANE_SPRITE0],
460 fifo_state->plane[PLANE_SPRITE1],
461 fifo_state->plane[PLANE_CURSOR]);
Ville Syrjäläb5004722015-03-05 21:19:47 +0200462}
463
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200464static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300465{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300466 uint32_t dsparb = I915_READ(DSPARB);
467 int size;
468
469 size = dsparb & 0x7f;
470 if (plane)
471 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
472
473 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
474 plane ? "B" : "A", size);
475
476 return size;
477}
478
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200479static int i830_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300480{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300481 uint32_t dsparb = I915_READ(DSPARB);
482 int size;
483
484 size = dsparb & 0x1ff;
485 if (plane)
486 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
487 size >>= 1; /* Convert to cachelines */
488
489 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
490 plane ? "B" : "A", size);
491
492 return size;
493}
494
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200495static int i845_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300496{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300497 uint32_t dsparb = I915_READ(DSPARB);
498 int size;
499
500 size = dsparb & 0x7f;
501 size >>= 2; /* Convert to cachelines */
502
503 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
504 plane ? "B" : "A",
505 size);
506
507 return size;
508}
509
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300510/* Pineview has different values for various configs */
511static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300512 .fifo_size = PINEVIEW_DISPLAY_FIFO,
513 .max_wm = PINEVIEW_MAX_WM,
514 .default_wm = PINEVIEW_DFT_WM,
515 .guard_size = PINEVIEW_GUARD_WM,
516 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300517};
518static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300519 .fifo_size = PINEVIEW_DISPLAY_FIFO,
520 .max_wm = PINEVIEW_MAX_WM,
521 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
522 .guard_size = PINEVIEW_GUARD_WM,
523 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300524};
525static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300526 .fifo_size = PINEVIEW_CURSOR_FIFO,
527 .max_wm = PINEVIEW_CURSOR_MAX_WM,
528 .default_wm = PINEVIEW_CURSOR_DFT_WM,
529 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
530 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300531};
532static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300533 .fifo_size = PINEVIEW_CURSOR_FIFO,
534 .max_wm = PINEVIEW_CURSOR_MAX_WM,
535 .default_wm = PINEVIEW_CURSOR_DFT_WM,
536 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
537 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300538};
539static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300540 .fifo_size = G4X_FIFO_SIZE,
541 .max_wm = G4X_MAX_WM,
542 .default_wm = G4X_MAX_WM,
543 .guard_size = 2,
544 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300545};
546static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300547 .fifo_size = I965_CURSOR_FIFO,
548 .max_wm = I965_CURSOR_MAX_WM,
549 .default_wm = I965_CURSOR_DFT_WM,
550 .guard_size = 2,
551 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300552};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300553static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300554 .fifo_size = I965_CURSOR_FIFO,
555 .max_wm = I965_CURSOR_MAX_WM,
556 .default_wm = I965_CURSOR_DFT_WM,
557 .guard_size = 2,
558 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300559};
560static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300561 .fifo_size = I945_FIFO_SIZE,
562 .max_wm = I915_MAX_WM,
563 .default_wm = 1,
564 .guard_size = 2,
565 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300566};
567static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300568 .fifo_size = I915_FIFO_SIZE,
569 .max_wm = I915_MAX_WM,
570 .default_wm = 1,
571 .guard_size = 2,
572 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300573};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300574static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300575 .fifo_size = I855GM_FIFO_SIZE,
576 .max_wm = I915_MAX_WM,
577 .default_wm = 1,
578 .guard_size = 2,
579 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300580};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300581static const struct intel_watermark_params i830_bc_wm_info = {
582 .fifo_size = I855GM_FIFO_SIZE,
583 .max_wm = I915_MAX_WM/2,
584 .default_wm = 1,
585 .guard_size = 2,
586 .cacheline_size = I830_FIFO_LINE_SIZE,
587};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200588static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300589 .fifo_size = I830_FIFO_SIZE,
590 .max_wm = I915_MAX_WM,
591 .default_wm = 1,
592 .guard_size = 2,
593 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300594};
595
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300596/**
597 * intel_calculate_wm - calculate watermark level
598 * @clock_in_khz: pixel clock
599 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200600 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300601 * @latency_ns: memory latency for the platform
602 *
603 * Calculate the watermark level (the level at which the display plane will
604 * start fetching from memory again). Each chip has a different display
605 * FIFO size and allocation, so the caller needs to figure that out and pass
606 * in the correct intel_watermark_params structure.
607 *
608 * As the pixel clock runs, the FIFO will be drained at a rate that depends
609 * on the pixel size. When it reaches the watermark level, it'll start
610 * fetching FIFO line sized based chunks from memory until the FIFO fills
611 * past the watermark point. If the FIFO drains completely, a FIFO underrun
612 * will occur, and a display engine hang could result.
613 */
614static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
615 const struct intel_watermark_params *wm,
Ville Syrjäläac484962016-01-20 21:05:26 +0200616 int fifo_size, int cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300617 unsigned long latency_ns)
618{
619 long entries_required, wm_size;
620
621 /*
622 * Note: we need to make sure we don't overflow for various clock &
623 * latency values.
624 * clocks go from a few thousand to several hundred thousand.
625 * latency is usually a few thousand
626 */
Ville Syrjäläac484962016-01-20 21:05:26 +0200627 entries_required = ((clock_in_khz / 1000) * cpp * latency_ns) /
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300628 1000;
629 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
630
631 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
632
633 wm_size = fifo_size - (entries_required + wm->guard_size);
634
635 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
636
637 /* Don't promote wm_size to unsigned... */
638 if (wm_size > (long)wm->max_wm)
639 wm_size = wm->max_wm;
640 if (wm_size <= 0)
641 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300642
643 /*
644 * Bspec seems to indicate that the value shouldn't be lower than
645 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
646 * Lets go for 8 which is the burst size since certain platforms
647 * already use a hardcoded 8 (which is what the spec says should be
648 * done).
649 */
650 if (wm_size <= 8)
651 wm_size = 8;
652
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300653 return wm_size;
654}
655
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200656static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300657{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200658 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300659
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200660 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200661 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300662 if (enabled)
663 return NULL;
664 enabled = crtc;
665 }
666 }
667
668 return enabled;
669}
670
Ville Syrjälä432081b2016-10-31 22:37:03 +0200671static void pineview_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300672{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200673 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200674 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300675 const struct cxsr_latency *latency;
676 u32 reg;
677 unsigned long wm;
678
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100679 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
680 dev_priv->is_ddr3,
681 dev_priv->fsb_freq,
682 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300683 if (!latency) {
684 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300685 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300686 return;
687 }
688
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200689 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300690 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200691 const struct drm_display_mode *adjusted_mode =
692 &crtc->config->base.adjusted_mode;
693 const struct drm_framebuffer *fb =
694 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200695 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300696 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300697
698 /* Display SR */
699 wm = intel_calculate_wm(clock, &pineview_display_wm,
700 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200701 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300702 reg = I915_READ(DSPFW1);
703 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200704 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300705 I915_WRITE(DSPFW1, reg);
706 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
707
708 /* cursor SR */
709 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
710 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200711 cpp, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300712 reg = I915_READ(DSPFW3);
713 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200714 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300715 I915_WRITE(DSPFW3, reg);
716
717 /* Display HPLL off SR */
718 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
719 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200720 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300721 reg = I915_READ(DSPFW3);
722 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200723 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300724 I915_WRITE(DSPFW3, reg);
725
726 /* cursor HPLL off SR */
727 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
728 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200729 cpp, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300730 reg = I915_READ(DSPFW3);
731 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200732 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300733 I915_WRITE(DSPFW3, reg);
734 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
735
Imre Deak5209b1f2014-07-01 12:36:17 +0300736 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300737 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300738 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300739 }
740}
741
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200742static bool g4x_compute_wm0(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300743 int plane,
744 const struct intel_watermark_params *display,
745 int display_latency_ns,
746 const struct intel_watermark_params *cursor,
747 int cursor_latency_ns,
748 int *plane_wm,
749 int *cursor_wm)
750{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200751 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300752 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200753 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200754 int htotal, hdisplay, clock, cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300755 int line_time_us, line_count;
756 int entries, tlb_miss;
757
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200758 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200759 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300760 *cursor_wm = cursor->guard_size;
761 *plane_wm = display->guard_size;
762 return false;
763 }
764
Ville Syrjäläefc26112016-10-31 22:37:04 +0200765 adjusted_mode = &crtc->config->base.adjusted_mode;
766 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100767 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800768 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200769 hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200770 cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300771
772 /* Use the small buffer method to calculate plane watermark */
Ville Syrjäläac484962016-01-20 21:05:26 +0200773 entries = ((clock * cpp / 1000) * display_latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300774 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
775 if (tlb_miss > 0)
776 entries += tlb_miss;
777 entries = DIV_ROUND_UP(entries, display->cacheline_size);
778 *plane_wm = entries + display->guard_size;
779 if (*plane_wm > (int)display->max_wm)
780 *plane_wm = display->max_wm;
781
782 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200783 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300784 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200785 entries = line_count * crtc->base.cursor->state->crtc_w * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300786 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
787 if (tlb_miss > 0)
788 entries += tlb_miss;
789 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
790 *cursor_wm = entries + cursor->guard_size;
791 if (*cursor_wm > (int)cursor->max_wm)
792 *cursor_wm = (int)cursor->max_wm;
793
794 return true;
795}
796
797/*
798 * Check the wm result.
799 *
800 * If any calculated watermark values is larger than the maximum value that
801 * can be programmed into the associated watermark register, that watermark
802 * must be disabled.
803 */
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200804static bool g4x_check_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300805 int display_wm, int cursor_wm,
806 const struct intel_watermark_params *display,
807 const struct intel_watermark_params *cursor)
808{
809 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
810 display_wm, cursor_wm);
811
812 if (display_wm > display->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100813 DRM_DEBUG_KMS("display watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300814 display_wm, display->max_wm);
815 return false;
816 }
817
818 if (cursor_wm > cursor->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100819 DRM_DEBUG_KMS("cursor watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300820 cursor_wm, cursor->max_wm);
821 return false;
822 }
823
824 if (!(display_wm || cursor_wm)) {
825 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
826 return false;
827 }
828
829 return true;
830}
831
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200832static bool g4x_compute_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300833 int plane,
834 int latency_ns,
835 const struct intel_watermark_params *display,
836 const struct intel_watermark_params *cursor,
837 int *display_wm, int *cursor_wm)
838{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200839 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300840 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200841 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200842 int hdisplay, htotal, cpp, clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300843 unsigned long line_time_us;
844 int line_count, line_size;
845 int small, large;
846 int entries;
847
848 if (!latency_ns) {
849 *display_wm = *cursor_wm = 0;
850 return false;
851 }
852
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200853 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200854 adjusted_mode = &crtc->config->base.adjusted_mode;
855 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100856 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800857 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200858 hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200859 cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300860
Ville Syrjälä922044c2014-02-14 14:18:57 +0200861 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300862 line_count = (latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläac484962016-01-20 21:05:26 +0200863 line_size = hdisplay * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300864
865 /* Use the minimum of the small and large buffer method for primary */
Ville Syrjäläac484962016-01-20 21:05:26 +0200866 small = ((clock * cpp / 1000) * latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300867 large = line_count * line_size;
868
869 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
870 *display_wm = entries + display->guard_size;
871
872 /* calculate the self-refresh watermark for display cursor */
Ville Syrjäläefc26112016-10-31 22:37:04 +0200873 entries = line_count * cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300874 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
875 *cursor_wm = entries + cursor->guard_size;
876
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200877 return g4x_check_srwm(dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300878 *display_wm, *cursor_wm,
879 display, cursor);
880}
881
Ville Syrjälä15665972015-03-10 16:16:28 +0200882#define FW_WM_VLV(value, plane) \
883 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
884
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200885static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200886 const struct vlv_wm_values *wm)
887{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200888 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200889
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200890 for_each_pipe(dev_priv, pipe) {
891 I915_WRITE(VLV_DDL(pipe),
892 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
893 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
894 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
895 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
896 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200897
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +0200898 /*
899 * Zero the (unused) WM1 watermarks, and also clear all the
900 * high order bits so that there are no out of bounds values
901 * present in the registers during the reprogramming.
902 */
903 I915_WRITE(DSPHOWM, 0);
904 I915_WRITE(DSPHOWM1, 0);
905 I915_WRITE(DSPFW4, 0);
906 I915_WRITE(DSPFW5, 0);
907 I915_WRITE(DSPFW6, 0);
908
Ville Syrjäläae801522015-03-05 21:19:49 +0200909 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200910 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200911 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
912 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
913 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200914 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200915 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
916 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
917 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200918 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200919 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200920
921 if (IS_CHERRYVIEW(dev_priv)) {
922 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200923 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
924 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200925 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200926 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
927 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200928 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200929 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
930 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200931 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200932 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200933 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
934 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
935 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
936 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
937 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
938 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
939 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
940 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
941 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200942 } else {
943 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200944 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
945 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200946 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200947 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200948 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
949 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
950 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
951 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
952 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
953 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200954 }
955
956 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200957}
958
Ville Syrjälä15665972015-03-10 16:16:28 +0200959#undef FW_WM_VLV
960
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300961/* latency must be in 0.1us units. */
962static unsigned int vlv_wm_method2(unsigned int pixel_rate,
963 unsigned int pipe_htotal,
964 unsigned int horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +0200965 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300966 unsigned int latency)
967{
968 unsigned int ret;
969
970 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +0200971 ret = (ret + 1) * horiz_pixels * cpp;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300972 ret = DIV_ROUND_UP(ret, 64);
973
974 return ret;
975}
976
Ville Syrjäläbb726512016-10-31 22:37:24 +0200977static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300978{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300979 /* all latencies in usec */
980 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
981
Ville Syrjälä58590c12015-09-08 21:05:12 +0300982 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
983
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300984 if (IS_CHERRYVIEW(dev_priv)) {
985 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
986 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300987
988 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300989 }
990}
991
Ville Syrjäläe339d672016-11-28 19:37:17 +0200992static uint16_t vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
993 const struct intel_plane_state *plane_state,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300994 int level)
995{
Ville Syrjäläe339d672016-11-28 19:37:17 +0200996 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300997 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +0200998 const struct drm_display_mode *adjusted_mode =
999 &crtc_state->base.adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +02001000 int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001001
1002 if (dev_priv->wm.pri_latency[level] == 0)
1003 return USHRT_MAX;
1004
Ville Syrjäläe339d672016-11-28 19:37:17 +02001005 if (!plane_state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001006 return 0;
1007
Daniel Vetteref426c12017-01-04 11:41:10 +01001008 cpp = plane_state->base.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001009 clock = adjusted_mode->crtc_clock;
1010 htotal = adjusted_mode->crtc_htotal;
1011 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001012 if (WARN_ON(htotal == 0))
1013 htotal = 1;
1014
1015 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1016 /*
1017 * FIXME the formula gives values that are
1018 * too big for the cursor FIFO, and hence we
1019 * would never be able to use cursors. For
1020 * now just hardcode the watermark.
1021 */
1022 wm = 63;
1023 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001024 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001025 dev_priv->wm.pri_latency[level] * 10);
1026 }
1027
1028 return min_t(int, wm, USHRT_MAX);
1029}
1030
Ville Syrjälä5012e602017-03-02 19:14:56 +02001031static int vlv_compute_fifo(struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001032{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001033 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001034 const struct vlv_pipe_wm *raw =
1035 &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2];
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001036 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001037 unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR);
1038 int num_active_planes = hweight32(active_planes);
1039 const int fifo_size = 511;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001040 int fifo_extra, fifo_left = fifo_size;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001041 unsigned int total_rate;
1042 enum plane_id plane_id;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001043
Ville Syrjälä5012e602017-03-02 19:14:56 +02001044 total_rate = raw->plane[PLANE_PRIMARY] +
1045 raw->plane[PLANE_SPRITE0] +
1046 raw->plane[PLANE_SPRITE1];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001047
Ville Syrjälä5012e602017-03-02 19:14:56 +02001048 if (total_rate > fifo_size)
1049 return -EINVAL;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001050
Ville Syrjälä5012e602017-03-02 19:14:56 +02001051 if (total_rate == 0)
1052 total_rate = 1;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001053
Ville Syrjälä5012e602017-03-02 19:14:56 +02001054 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001055 unsigned int rate;
1056
Ville Syrjälä5012e602017-03-02 19:14:56 +02001057 if ((active_planes & BIT(plane_id)) == 0) {
1058 fifo_state->plane[plane_id] = 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001059 continue;
1060 }
1061
Ville Syrjälä5012e602017-03-02 19:14:56 +02001062 rate = raw->plane[plane_id];
1063 fifo_state->plane[plane_id] = fifo_size * rate / total_rate;
1064 fifo_left -= fifo_state->plane[plane_id];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001065 }
1066
Ville Syrjälä5012e602017-03-02 19:14:56 +02001067 fifo_state->plane[PLANE_CURSOR] = 63;
1068
1069 fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001070
1071 /* spread the remainder evenly */
Ville Syrjälä5012e602017-03-02 19:14:56 +02001072 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001073 int plane_extra;
1074
1075 if (fifo_left == 0)
1076 break;
1077
Ville Syrjälä5012e602017-03-02 19:14:56 +02001078 if ((active_planes & BIT(plane_id)) == 0)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001079 continue;
1080
1081 plane_extra = min(fifo_extra, fifo_left);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001082 fifo_state->plane[plane_id] += plane_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001083 fifo_left -= plane_extra;
1084 }
1085
Ville Syrjälä5012e602017-03-02 19:14:56 +02001086 WARN_ON(active_planes != 0 && fifo_left != 0);
1087
1088 /* give it all to the first plane if none are active */
1089 if (active_planes == 0) {
1090 WARN_ON(fifo_left != fifo_size);
1091 fifo_state->plane[PLANE_PRIMARY] = fifo_left;
1092 }
1093
1094 return 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001095}
1096
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001097static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1098{
1099 if (wm > fifo_size)
1100 return USHRT_MAX;
1101 else
1102 return fifo_size - wm;
1103}
1104
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001105static void vlv_invert_wms(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001106{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001107 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1108 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001109 const struct vlv_fifo_state *fifo_state =
1110 &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001111 int level;
1112
1113 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001114 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001115 const int sr_fifo_size =
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001116 INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001117 enum plane_id plane_id;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001118
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001119 wm_state->sr[level].plane =
1120 vlv_invert_wm_value(wm_state->sr[level].plane,
1121 sr_fifo_size);
1122 wm_state->sr[level].cursor =
1123 vlv_invert_wm_value(wm_state->sr[level].cursor,
1124 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001125
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001126 for_each_plane_id_on_crtc(crtc, plane_id) {
1127 wm_state->wm[level].plane[plane_id] =
1128 vlv_invert_wm_value(wm_state->wm[level].plane[plane_id],
1129 fifo_state->plane[plane_id]);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001130 }
1131 }
1132}
1133
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001134static void vlv_compute_wm(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001135{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001136 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001137 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001138 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001139 struct intel_plane *plane;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001140 int level;
1141
1142 memset(wm_state, 0, sizeof(*wm_state));
Ville Syrjälä5012e602017-03-02 19:14:56 +02001143 memset(&crtc_state->wm.vlv.raw, 0, sizeof(crtc_state->wm.vlv.raw));
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001144
Ville Syrjälä852eb002015-06-24 22:00:07 +03001145 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001146 wm_state->num_levels = dev_priv->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001147
1148 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001149
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001150 if (wm_state->num_active_planes != 1)
1151 wm_state->cxsr = false;
1152
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001153 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001154 struct intel_plane_state *state =
1155 to_intel_plane_state(plane->base.state);
1156
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001157 if (!state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001158 continue;
1159
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001160 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä5012e602017-03-02 19:14:56 +02001161 struct vlv_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001162 int wm = vlv_compute_wm_level(crtc_state, state, level);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001163 int max_wm = plane->id == PLANE_CURSOR ? 63 : 511;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001164
1165 /* hack */
1166 if (WARN_ON(level == 0 && wm > max_wm))
1167 wm = max_wm;
1168
Ville Syrjälä1be4d372016-11-28 19:37:05 +02001169 if (wm > max_wm)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001170 break;
1171
Ville Syrjälä5012e602017-03-02 19:14:56 +02001172 raw->plane[plane->id] = wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001173 }
1174
1175 wm_state->num_levels = level;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001176 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001177
Ville Syrjälä5012e602017-03-02 19:14:56 +02001178 vlv_compute_fifo(crtc_state);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001179
Ville Syrjälä5012e602017-03-02 19:14:56 +02001180 for (level = 0; level < wm_state->num_levels; level++) {
1181 struct vlv_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
1182
1183 wm_state->wm[level] = *raw;
1184
1185 wm_state->sr[level].plane = max3(raw->plane[PLANE_PRIMARY],
1186 raw->plane[PLANE_SPRITE0],
1187 raw->plane[PLANE_SPRITE1]);
1188 wm_state->sr[level].cursor = raw->plane[PLANE_CURSOR];
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001189 }
1190
1191 /* clear any (partially) filled invalid levels */
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001192 for (level = wm_state->num_levels; level < dev_priv->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001193 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1194 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1195 }
1196
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001197 vlv_invert_wms(crtc_state);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001198}
1199
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001200#define VLV_FIFO(plane, value) \
1201 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1202
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001203static void vlv_pipe_set_fifo_size(const struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001204{
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001205 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001206 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001207 const struct vlv_fifo_state *fifo_state =
1208 &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001209 int sprite0_start, sprite1_start, fifo_size;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001210
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001211 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
1212 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
1213 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001214
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001215 WARN_ON(fifo_state->plane[PLANE_CURSOR] != 63);
1216 WARN_ON(fifo_size != 511);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001217
1218 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1219 pipe_name(crtc->pipe), sprite0_start,
1220 sprite1_start, fifo_size);
1221
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001222 spin_lock(&dev_priv->wm.dsparb_lock);
1223
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001224 switch (crtc->pipe) {
1225 uint32_t dsparb, dsparb2, dsparb3;
1226 case PIPE_A:
1227 dsparb = I915_READ(DSPARB);
1228 dsparb2 = I915_READ(DSPARB2);
1229
1230 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1231 VLV_FIFO(SPRITEB, 0xff));
1232 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1233 VLV_FIFO(SPRITEB, sprite1_start));
1234
1235 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1236 VLV_FIFO(SPRITEB_HI, 0x1));
1237 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1238 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1239
1240 I915_WRITE(DSPARB, dsparb);
1241 I915_WRITE(DSPARB2, dsparb2);
1242 break;
1243 case PIPE_B:
1244 dsparb = I915_READ(DSPARB);
1245 dsparb2 = I915_READ(DSPARB2);
1246
1247 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1248 VLV_FIFO(SPRITED, 0xff));
1249 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1250 VLV_FIFO(SPRITED, sprite1_start));
1251
1252 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1253 VLV_FIFO(SPRITED_HI, 0xff));
1254 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1255 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1256
1257 I915_WRITE(DSPARB, dsparb);
1258 I915_WRITE(DSPARB2, dsparb2);
1259 break;
1260 case PIPE_C:
1261 dsparb3 = I915_READ(DSPARB3);
1262 dsparb2 = I915_READ(DSPARB2);
1263
1264 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1265 VLV_FIFO(SPRITEF, 0xff));
1266 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1267 VLV_FIFO(SPRITEF, sprite1_start));
1268
1269 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1270 VLV_FIFO(SPRITEF_HI, 0xff));
1271 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1272 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1273
1274 I915_WRITE(DSPARB3, dsparb3);
1275 I915_WRITE(DSPARB2, dsparb2);
1276 break;
1277 default:
1278 break;
1279 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001280
1281 POSTING_READ(DSPARB);
1282
1283 spin_unlock(&dev_priv->wm.dsparb_lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001284}
1285
1286#undef VLV_FIFO
1287
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001288static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001289 struct vlv_wm_values *wm)
1290{
1291 struct intel_crtc *crtc;
1292 int num_active_crtcs = 0;
1293
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001294 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001295 wm->cxsr = true;
1296
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001297 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02001298 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001299
1300 if (!crtc->active)
1301 continue;
1302
1303 if (!wm_state->cxsr)
1304 wm->cxsr = false;
1305
1306 num_active_crtcs++;
1307 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1308 }
1309
1310 if (num_active_crtcs != 1)
1311 wm->cxsr = false;
1312
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001313 if (num_active_crtcs > 1)
1314 wm->level = VLV_WM_LEVEL_PM2;
1315
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001316 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02001317 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001318 enum pipe pipe = crtc->pipe;
1319
1320 if (!crtc->active)
1321 continue;
1322
1323 wm->pipe[pipe] = wm_state->wm[wm->level];
1324 if (wm->cxsr)
1325 wm->sr = wm_state->sr[wm->level];
1326
Ville Syrjälä1b313892016-11-28 19:37:08 +02001327 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
1328 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
1329 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
1330 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001331 }
1332}
1333
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001334static bool is_disabling(int old, int new, int threshold)
1335{
1336 return old >= threshold && new < threshold;
1337}
1338
1339static bool is_enabling(int old, int new, int threshold)
1340{
1341 return old < threshold && new >= threshold;
1342}
1343
Ville Syrjälä432081b2016-10-31 22:37:03 +02001344static void vlv_update_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001345{
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001346 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001347 struct intel_crtc_state *crtc_state =
1348 to_intel_crtc_state(crtc->base.state);
Ville Syrjälä432081b2016-10-31 22:37:03 +02001349 enum pipe pipe = crtc->pipe;
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001350 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
1351 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001352
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001353 vlv_compute_wm(crtc_state);
1354 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001355 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001356
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001357 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001358 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001359 vlv_pipe_set_fifo_size(crtc_state);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001360 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001361 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001362
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001363 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001364 chv_set_memory_dvfs(dev_priv, false);
1365
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001366 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001367 chv_set_memory_pm5(dev_priv, false);
1368
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001369 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001370 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001371
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001372 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001373 vlv_pipe_set_fifo_size(crtc_state);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001374
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001375 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001376
1377 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1378 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001379 pipe_name(pipe), new_wm.pipe[pipe].plane[PLANE_PRIMARY], new_wm.pipe[pipe].plane[PLANE_CURSOR],
1380 new_wm.pipe[pipe].plane[PLANE_SPRITE0], new_wm.pipe[pipe].plane[PLANE_SPRITE1],
1381 new_wm.sr.plane, new_wm.sr.cursor, new_wm.level, new_wm.cxsr);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001382
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001383 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001384 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001385
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001386 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001387 chv_set_memory_pm5(dev_priv, true);
1388
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001389 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001390 chv_set_memory_dvfs(dev_priv, true);
1391
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001392 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001393}
1394
Ville Syrjäläae801522015-03-05 21:19:49 +02001395#define single_plane_enabled(mask) is_power_of_2(mask)
1396
Ville Syrjälä432081b2016-10-31 22:37:03 +02001397static void g4x_update_wm(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001398{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001399 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001400 static const int sr_latency_ns = 12000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001401 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1402 int plane_sr, cursor_sr;
1403 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001404 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001405
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001406 if (g4x_compute_wm0(dev_priv, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001407 &g4x_wm_info, pessimal_latency_ns,
1408 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001409 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001410 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001411
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001412 if (g4x_compute_wm0(dev_priv, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001413 &g4x_wm_info, pessimal_latency_ns,
1414 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001415 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001416 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001417
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001418 if (single_plane_enabled(enabled) &&
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001419 g4x_compute_srwm(dev_priv, ffs(enabled) - 1,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001420 sr_latency_ns,
1421 &g4x_wm_info,
1422 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001423 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001424 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001425 } else {
Imre Deak98584252014-06-13 14:54:20 +03001426 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001427 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001428 plane_sr = cursor_sr = 0;
1429 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001430
Ville Syrjäläa5043452014-06-28 02:04:18 +03001431 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1432 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001433 planea_wm, cursora_wm,
1434 planeb_wm, cursorb_wm,
1435 plane_sr, cursor_sr);
1436
1437 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001438 FW_WM(plane_sr, SR) |
1439 FW_WM(cursorb_wm, CURSORB) |
1440 FW_WM(planeb_wm, PLANEB) |
1441 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001442 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001443 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001444 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001445 /* HPLL off in SR has some issues on G4x... disable it */
1446 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001447 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001448 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001449
1450 if (cxsr_enabled)
1451 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001452}
1453
Ville Syrjälä432081b2016-10-31 22:37:03 +02001454static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001455{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001456 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001457 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001458 int srwm = 1;
1459 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001460 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001461
1462 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001463 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001464 if (crtc) {
1465 /* self-refresh has much higher latency */
1466 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001467 const struct drm_display_mode *adjusted_mode =
1468 &crtc->config->base.adjusted_mode;
1469 const struct drm_framebuffer *fb =
1470 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001471 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001472 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001473 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02001474 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001475 unsigned long line_time_us;
1476 int entries;
1477
Ville Syrjälä922044c2014-02-14 14:18:57 +02001478 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001479
1480 /* Use ns/us then divide to preserve precision */
1481 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001482 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001483 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1484 srwm = I965_FIFO_SIZE - entries;
1485 if (srwm < 0)
1486 srwm = 1;
1487 srwm &= 0x1ff;
1488 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1489 entries, srwm);
1490
1491 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläefc26112016-10-31 22:37:04 +02001492 cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001493 entries = DIV_ROUND_UP(entries,
1494 i965_cursor_wm_info.cacheline_size);
1495 cursor_sr = i965_cursor_wm_info.fifo_size -
1496 (entries + i965_cursor_wm_info.guard_size);
1497
1498 if (cursor_sr > i965_cursor_wm_info.max_wm)
1499 cursor_sr = i965_cursor_wm_info.max_wm;
1500
1501 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1502 "cursor %d\n", srwm, cursor_sr);
1503
Imre Deak98584252014-06-13 14:54:20 +03001504 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001505 } else {
Imre Deak98584252014-06-13 14:54:20 +03001506 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001507 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001508 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001509 }
1510
1511 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1512 srwm);
1513
1514 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001515 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1516 FW_WM(8, CURSORB) |
1517 FW_WM(8, PLANEB) |
1518 FW_WM(8, PLANEA));
1519 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1520 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001521 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001522 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001523
1524 if (cxsr_enabled)
1525 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001526}
1527
Ville Syrjäläf4998962015-03-10 17:02:21 +02001528#undef FW_WM
1529
Ville Syrjälä432081b2016-10-31 22:37:03 +02001530static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001531{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001532 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001533 const struct intel_watermark_params *wm_info;
1534 uint32_t fwater_lo;
1535 uint32_t fwater_hi;
1536 int cwm, srwm = 1;
1537 int fifo_size;
1538 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001539 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001540
Ville Syrjäläa9097be2016-10-31 22:37:20 +02001541 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001542 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001543 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001544 wm_info = &i915_wm_info;
1545 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001546 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001547
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001548 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 0);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001549 crtc = intel_get_crtc_for_plane(dev_priv, 0);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001550 if (intel_crtc_active(crtc)) {
1551 const struct drm_display_mode *adjusted_mode =
1552 &crtc->config->base.adjusted_mode;
1553 const struct drm_framebuffer *fb =
1554 crtc->base.primary->state->fb;
1555 int cpp;
1556
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001557 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001558 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001559 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001560 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001561
Damien Lespiau241bfc32013-09-25 16:45:37 +01001562 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001563 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001564 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001565 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001566 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001567 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001568 if (planea_wm > (long)wm_info->max_wm)
1569 planea_wm = wm_info->max_wm;
1570 }
1571
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001572 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03001573 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001574
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001575 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 1);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001576 crtc = intel_get_crtc_for_plane(dev_priv, 1);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001577 if (intel_crtc_active(crtc)) {
1578 const struct drm_display_mode *adjusted_mode =
1579 &crtc->config->base.adjusted_mode;
1580 const struct drm_framebuffer *fb =
1581 crtc->base.primary->state->fb;
1582 int cpp;
1583
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001584 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001585 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001586 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001587 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001588
Damien Lespiau241bfc32013-09-25 16:45:37 +01001589 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001590 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001591 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001592 if (enabled == NULL)
1593 enabled = crtc;
1594 else
1595 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001596 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001597 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001598 if (planeb_wm > (long)wm_info->max_wm)
1599 planeb_wm = wm_info->max_wm;
1600 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001601
1602 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1603
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001604 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001605 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001606
Ville Syrjäläefc26112016-10-31 22:37:04 +02001607 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001608
1609 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01001610 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001611 enabled = NULL;
1612 }
1613
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001614 /*
1615 * Overlay gets an aggressive default since video jitter is bad.
1616 */
1617 cwm = 2;
1618
1619 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001620 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001621
1622 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02001623 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001624 /* self-refresh has much higher latency */
1625 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001626 const struct drm_display_mode *adjusted_mode =
1627 &enabled->config->base.adjusted_mode;
1628 const struct drm_framebuffer *fb =
1629 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001630 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001631 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001632 int hdisplay = enabled->config->pipe_src_w;
1633 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001634 unsigned long line_time_us;
1635 int entries;
1636
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001637 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001638 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001639 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001640 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001641
Ville Syrjälä922044c2014-02-14 14:18:57 +02001642 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001643
1644 /* Use ns/us then divide to preserve precision */
1645 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001646 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001647 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1648 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1649 srwm = wm_info->fifo_size - entries;
1650 if (srwm < 0)
1651 srwm = 1;
1652
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001653 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001654 I915_WRITE(FW_BLC_SELF,
1655 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03001656 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001657 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1658 }
1659
1660 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1661 planea_wm, planeb_wm, cwm, srwm);
1662
1663 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1664 fwater_hi = (cwm & 0x1f);
1665
1666 /* Set request length to 8 cachelines per fetch */
1667 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1668 fwater_hi = fwater_hi | (1 << 8);
1669
1670 I915_WRITE(FW_BLC, fwater_lo);
1671 I915_WRITE(FW_BLC2, fwater_hi);
1672
Imre Deak5209b1f2014-07-01 12:36:17 +03001673 if (enabled)
1674 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001675}
1676
Ville Syrjälä432081b2016-10-31 22:37:03 +02001677static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001678{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001679 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001680 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001681 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001682 uint32_t fwater_lo;
1683 int planea_wm;
1684
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001685 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001686 if (crtc == NULL)
1687 return;
1688
Ville Syrjäläefc26112016-10-31 22:37:04 +02001689 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001690 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001691 &i845_wm_info,
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001692 dev_priv->display.get_fifo_size(dev_priv, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001693 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001694 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1695 fwater_lo |= (3<<8) | planea_wm;
1696
1697 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1698
1699 I915_WRITE(FW_BLC, fwater_lo);
1700}
1701
Ville Syrjälä37126462013-08-01 16:18:55 +03001702/* latency must be in 0.1us units. */
Ville Syrjäläac484962016-01-20 21:05:26 +02001703static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001704{
1705 uint64_t ret;
1706
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001707 if (WARN(latency == 0, "Latency value missing\n"))
1708 return UINT_MAX;
1709
Ville Syrjäläac484962016-01-20 21:05:26 +02001710 ret = (uint64_t) pixel_rate * cpp * latency;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001711 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1712
1713 return ret;
1714}
1715
Ville Syrjälä37126462013-08-01 16:18:55 +03001716/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001717static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02001718 uint32_t horiz_pixels, uint8_t cpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001719 uint32_t latency)
1720{
1721 uint32_t ret;
1722
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001723 if (WARN(latency == 0, "Latency value missing\n"))
1724 return UINT_MAX;
Matt Roper15126882015-12-03 11:37:40 -08001725 if (WARN_ON(!pipe_htotal))
1726 return UINT_MAX;
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001727
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001728 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +02001729 ret = (ret + 1) * horiz_pixels * cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001730 ret = DIV_ROUND_UP(ret, 64) + 2;
1731 return ret;
1732}
1733
Ville Syrjälä23297042013-07-05 11:57:17 +03001734static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02001735 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001736{
Matt Roper15126882015-12-03 11:37:40 -08001737 /*
1738 * Neither of these should be possible since this function shouldn't be
1739 * called if the CRTC is off or the plane is invisible. But let's be
1740 * extra paranoid to avoid a potential divide-by-zero if we screw up
1741 * elsewhere in the driver.
1742 */
Ville Syrjäläac484962016-01-20 21:05:26 +02001743 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08001744 return 0;
1745 if (WARN_ON(!horiz_pixels))
1746 return 0;
1747
Ville Syrjäläac484962016-01-20 21:05:26 +02001748 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001749}
1750
Imre Deak820c1982013-12-17 14:46:36 +02001751struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001752 uint16_t pri;
1753 uint16_t spr;
1754 uint16_t cur;
1755 uint16_t fbc;
1756};
1757
Ville Syrjälä37126462013-08-01 16:18:55 +03001758/*
1759 * For both WM_PIPE and WM_LP.
1760 * mem_value must be in 0.1us units.
1761 */
Matt Roper7221fc32015-09-24 15:53:08 -07001762static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001763 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001764 uint32_t mem_value,
1765 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001766{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001767 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001768 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001769
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001770 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001771 return 0;
1772
Ville Syrjälä353c8592016-12-14 23:30:57 +02001773 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001774
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001775 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001776
1777 if (!is_lp)
1778 return method1;
1779
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001780 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001781 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001782 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001783 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001784
1785 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001786}
1787
Ville Syrjälä37126462013-08-01 16:18:55 +03001788/*
1789 * For both WM_PIPE and WM_LP.
1790 * mem_value must be in 0.1us units.
1791 */
Matt Roper7221fc32015-09-24 15:53:08 -07001792static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001793 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001794 uint32_t mem_value)
1795{
1796 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001797 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001798
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001799 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001800 return 0;
1801
Ville Syrjälä353c8592016-12-14 23:30:57 +02001802 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001803
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001804 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
1805 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001806 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001807 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001808 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001809 return min(method1, method2);
1810}
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_cur_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{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001820 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07001821
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001822 /*
1823 * Treat cursor with fb as always visible since cursor updates
1824 * can happen faster than the vrefresh rate, and the current
1825 * watermark code doesn't handle that correctly. Cursor updates
1826 * which set/clear the fb or change the cursor size are going
1827 * to get throttled by intel_legacy_cursor_update() to work
1828 * around this problem with the watermark code.
1829 */
1830 if (!cstate->base.active || !pstate->base.fb)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001831 return 0;
1832
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001833 cpp = pstate->base.fb->format->cpp[0];
1834
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001835 return ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001836 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001837 pstate->base.crtc_w, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001838}
1839
Paulo Zanonicca32e92013-05-31 11:45:06 -03001840/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07001841static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001842 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001843 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001844{
Ville Syrjälä83054942016-11-18 21:53:00 +02001845 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07001846
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001847 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001848 return 0;
1849
Ville Syrjälä353c8592016-12-14 23:30:57 +02001850 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001851
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001852 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001853}
1854
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001855static unsigned int
1856ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001857{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001858 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07001859 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001860 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001861 return 768;
1862 else
1863 return 512;
1864}
1865
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001866static unsigned int
1867ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
1868 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001869{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001870 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001871 /* BDW primary/sprite plane watermarks */
1872 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001873 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001874 /* IVB/HSW primary/sprite plane watermarks */
1875 return level == 0 ? 127 : 1023;
1876 else if (!is_sprite)
1877 /* ILK/SNB primary plane watermarks */
1878 return level == 0 ? 127 : 511;
1879 else
1880 /* ILK/SNB sprite plane watermarks */
1881 return level == 0 ? 63 : 255;
1882}
1883
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001884static unsigned int
1885ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001886{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001887 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001888 return level == 0 ? 63 : 255;
1889 else
1890 return level == 0 ? 31 : 63;
1891}
1892
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001893static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001894{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001895 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001896 return 31;
1897 else
1898 return 15;
1899}
1900
Ville Syrjälä158ae642013-08-07 13:28:19 +03001901/* Calculate the maximum primary/sprite plane watermark */
1902static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1903 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001904 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001905 enum intel_ddb_partitioning ddb_partitioning,
1906 bool is_sprite)
1907{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001908 struct drm_i915_private *dev_priv = to_i915(dev);
1909 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001910
1911 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001912 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001913 return 0;
1914
1915 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001916 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001917 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03001918
1919 /*
1920 * For some reason the non self refresh
1921 * FIFO size is only half of the self
1922 * refresh FIFO size on ILK/SNB.
1923 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001924 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001925 fifo_size /= 2;
1926 }
1927
Ville Syrjälä240264f2013-08-07 13:29:12 +03001928 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001929 /* level 0 is always calculated with 1:1 split */
1930 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1931 if (is_sprite)
1932 fifo_size *= 5;
1933 fifo_size /= 6;
1934 } else {
1935 fifo_size /= 2;
1936 }
1937 }
1938
1939 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001940 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001941}
1942
1943/* Calculate the maximum cursor plane watermark */
1944static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001945 int level,
1946 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001947{
1948 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001949 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001950 return 64;
1951
1952 /* otherwise just report max that registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001953 return ilk_cursor_wm_reg_max(to_i915(dev), level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001954}
1955
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001956static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001957 int level,
1958 const struct intel_wm_config *config,
1959 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001960 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001961{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001962 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1963 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1964 max->cur = ilk_cursor_wm_max(dev, level, config);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001965 max->fbc = ilk_fbc_wm_reg_max(to_i915(dev));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001966}
1967
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001968static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001969 int level,
1970 struct ilk_wm_maximums *max)
1971{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001972 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
1973 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
1974 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
1975 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001976}
1977
Ville Syrjäläd9395652013-10-09 19:18:10 +03001978static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001979 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001980 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001981{
1982 bool ret;
1983
1984 /* already determined to be invalid? */
1985 if (!result->enable)
1986 return false;
1987
1988 result->enable = result->pri_val <= max->pri &&
1989 result->spr_val <= max->spr &&
1990 result->cur_val <= max->cur;
1991
1992 ret = result->enable;
1993
1994 /*
1995 * HACK until we can pre-compute everything,
1996 * and thus fail gracefully if LP0 watermarks
1997 * are exceeded...
1998 */
1999 if (level == 0 && !result->enable) {
2000 if (result->pri_val > max->pri)
2001 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2002 level, result->pri_val, max->pri);
2003 if (result->spr_val > max->spr)
2004 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2005 level, result->spr_val, max->spr);
2006 if (result->cur_val > max->cur)
2007 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2008 level, result->cur_val, max->cur);
2009
2010 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2011 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2012 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2013 result->enable = true;
2014 }
2015
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002016 return ret;
2017}
2018
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002019static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002020 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002021 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002022 struct intel_crtc_state *cstate,
Matt Roper86c8bbb2015-09-24 15:53:16 -07002023 struct intel_plane_state *pristate,
2024 struct intel_plane_state *sprstate,
2025 struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002026 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002027{
2028 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2029 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2030 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2031
2032 /* WM1+ latency values stored in 0.5us units */
2033 if (level > 0) {
2034 pri_latency *= 5;
2035 spr_latency *= 5;
2036 cur_latency *= 5;
2037 }
2038
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002039 if (pristate) {
2040 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2041 pri_latency, level);
2042 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2043 }
2044
2045 if (sprstate)
2046 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2047
2048 if (curstate)
2049 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2050
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002051 result->enable = true;
2052}
2053
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002054static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002055hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002056{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002057 const struct intel_atomic_state *intel_state =
2058 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002059 const struct drm_display_mode *adjusted_mode =
2060 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002061 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002062
Matt Roperee91a152015-12-03 11:37:39 -08002063 if (!cstate->base.active)
2064 return 0;
2065 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2066 return 0;
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002067 if (WARN_ON(intel_state->cdclk.logical.cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002068 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002069
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002070 /* The WM are computed with base on how long it takes to fill a single
2071 * row at the given clock rate, multiplied by 8.
2072 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002073 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2074 adjusted_mode->crtc_clock);
2075 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002076 intel_state->cdclk.logical.cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002077
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002078 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2079 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002080}
2081
Ville Syrjäläbb726512016-10-31 22:37:24 +02002082static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2083 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002084{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002085 if (IS_GEN9(dev_priv)) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002086 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002087 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002088 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002089
2090 /* read the first set of memory latencies[0:3] */
2091 val = 0; /* data0 to be programmed to 0 for first set */
2092 mutex_lock(&dev_priv->rps.hw_lock);
2093 ret = sandybridge_pcode_read(dev_priv,
2094 GEN9_PCODE_READ_MEM_LATENCY,
2095 &val);
2096 mutex_unlock(&dev_priv->rps.hw_lock);
2097
2098 if (ret) {
2099 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2100 return;
2101 }
2102
2103 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2104 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2105 GEN9_MEM_LATENCY_LEVEL_MASK;
2106 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2107 GEN9_MEM_LATENCY_LEVEL_MASK;
2108 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2109 GEN9_MEM_LATENCY_LEVEL_MASK;
2110
2111 /* read the second set of memory latencies[4:7] */
2112 val = 1; /* data0 to be programmed to 1 for second set */
2113 mutex_lock(&dev_priv->rps.hw_lock);
2114 ret = sandybridge_pcode_read(dev_priv,
2115 GEN9_PCODE_READ_MEM_LATENCY,
2116 &val);
2117 mutex_unlock(&dev_priv->rps.hw_lock);
2118 if (ret) {
2119 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2120 return;
2121 }
2122
2123 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2124 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2125 GEN9_MEM_LATENCY_LEVEL_MASK;
2126 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2127 GEN9_MEM_LATENCY_LEVEL_MASK;
2128 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2129 GEN9_MEM_LATENCY_LEVEL_MASK;
2130
Vandana Kannan367294b2014-11-04 17:06:46 +00002131 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002132 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2133 * need to be disabled. We make sure to sanitize the values out
2134 * of the punit to satisfy this requirement.
2135 */
2136 for (level = 1; level <= max_level; level++) {
2137 if (wm[level] == 0) {
2138 for (i = level + 1; i <= max_level; i++)
2139 wm[i] = 0;
2140 break;
2141 }
2142 }
2143
2144 /*
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02002145 * WaWmMemoryReadLatency:skl,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002146 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002147 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002148 * to add 2us to the various latency levels we retrieve from the
2149 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002150 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002151 if (wm[0] == 0) {
2152 wm[0] += 2;
2153 for (level = 1; level <= max_level; level++) {
2154 if (wm[level] == 0)
2155 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002156 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002157 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002158 }
2159
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002160 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002161 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2162
2163 wm[0] = (sskpd >> 56) & 0xFF;
2164 if (wm[0] == 0)
2165 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002166 wm[1] = (sskpd >> 4) & 0xFF;
2167 wm[2] = (sskpd >> 12) & 0xFF;
2168 wm[3] = (sskpd >> 20) & 0x1FF;
2169 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002170 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002171 uint32_t sskpd = I915_READ(MCH_SSKPD);
2172
2173 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2174 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2175 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2176 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002177 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002178 uint32_t mltr = I915_READ(MLTR_ILK);
2179
2180 /* ILK primary LP0 latency is 700 ns */
2181 wm[0] = 7;
2182 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2183 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002184 }
2185}
2186
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002187static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2188 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002189{
2190 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002191 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002192 wm[0] = 13;
2193}
2194
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002195static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2196 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002197{
2198 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002199 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002200 wm[0] = 13;
2201
2202 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002203 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002204 wm[3] *= 2;
2205}
2206
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002207int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002208{
2209 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002210 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002211 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002212 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002213 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002214 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002215 return 3;
2216 else
2217 return 2;
2218}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002219
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002220static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002221 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002222 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002223{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002224 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002225
2226 for (level = 0; level <= max_level; level++) {
2227 unsigned int latency = wm[level];
2228
2229 if (latency == 0) {
2230 DRM_ERROR("%s WM%d latency not provided\n",
2231 name, level);
2232 continue;
2233 }
2234
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002235 /*
2236 * - latencies are in us on gen9.
2237 * - before then, WM1+ latency values are in 0.5us units
2238 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002239 if (IS_GEN9(dev_priv))
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002240 latency *= 10;
2241 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002242 latency *= 5;
2243
2244 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2245 name, level, wm[level],
2246 latency / 10, latency % 10);
2247 }
2248}
2249
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002250static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2251 uint16_t wm[5], uint16_t min)
2252{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002253 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002254
2255 if (wm[0] >= min)
2256 return false;
2257
2258 wm[0] = max(wm[0], min);
2259 for (level = 1; level <= max_level; level++)
2260 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2261
2262 return true;
2263}
2264
Ville Syrjäläbb726512016-10-31 22:37:24 +02002265static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002266{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002267 bool changed;
2268
2269 /*
2270 * The BIOS provided WM memory latency values are often
2271 * inadequate for high resolution displays. Adjust them.
2272 */
2273 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2274 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2275 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2276
2277 if (!changed)
2278 return;
2279
2280 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002281 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2282 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2283 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002284}
2285
Ville Syrjäläbb726512016-10-31 22:37:24 +02002286static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002287{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002288 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002289
2290 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2291 sizeof(dev_priv->wm.pri_latency));
2292 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2293 sizeof(dev_priv->wm.pri_latency));
2294
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002295 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002296 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002297
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002298 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2299 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2300 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002301
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002302 if (IS_GEN6(dev_priv))
Ville Syrjäläbb726512016-10-31 22:37:24 +02002303 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002304}
2305
Ville Syrjäläbb726512016-10-31 22:37:24 +02002306static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002307{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002308 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002309 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002310}
2311
Matt Ropered4a6a72016-02-23 17:20:13 -08002312static bool ilk_validate_pipe_wm(struct drm_device *dev,
2313 struct intel_pipe_wm *pipe_wm)
2314{
2315 /* LP0 watermark maximums depend on this pipe alone */
2316 const struct intel_wm_config config = {
2317 .num_pipes_active = 1,
2318 .sprites_enabled = pipe_wm->sprites_enabled,
2319 .sprites_scaled = pipe_wm->sprites_scaled,
2320 };
2321 struct ilk_wm_maximums max;
2322
2323 /* LP0 watermarks always use 1/2 DDB partitioning */
2324 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2325
2326 /* At least LP0 must be valid */
2327 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
2328 DRM_DEBUG_KMS("LP0 watermark invalid\n");
2329 return false;
2330 }
2331
2332 return true;
2333}
2334
Matt Roper261a27d2015-10-08 15:28:25 -07002335/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002336static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07002337{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002338 struct drm_atomic_state *state = cstate->base.state;
2339 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07002340 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002341 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002342 const struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper43d59ed2015-09-24 15:53:07 -07002343 struct intel_plane *intel_plane;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002344 struct intel_plane_state *pristate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002345 struct intel_plane_state *sprstate = NULL;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002346 struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002347 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02002348 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002349
Matt Ropere8f1f022016-05-12 07:05:55 -07002350 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002351
Matt Roper43d59ed2015-09-24 15:53:07 -07002352 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002353 struct intel_plane_state *ps;
2354
2355 ps = intel_atomic_get_existing_plane_state(state,
2356 intel_plane);
2357 if (!ps)
2358 continue;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002359
2360 if (intel_plane->base.type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002361 pristate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002362 else if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002363 sprstate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002364 else if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002365 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07002366 }
2367
Matt Ropered4a6a72016-02-23 17:20:13 -08002368 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002369 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002370 pipe_wm->sprites_enabled = sprstate->base.visible;
2371 pipe_wm->sprites_scaled = sprstate->base.visible &&
2372 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
2373 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002374 }
2375
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002376 usable_level = max_level;
2377
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002378 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002379 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002380 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002381
2382 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08002383 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002384 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002385
Matt Roper86c8bbb2015-09-24 15:53:16 -07002386 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002387 pristate, sprstate, curstate, &pipe_wm->raw_wm[0]);
2388
2389 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
2390 pipe_wm->wm[0] = pipe_wm->raw_wm[0];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002391
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002392 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002393 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002394
Matt Ropered4a6a72016-02-23 17:20:13 -08002395 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01002396 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002397
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002398 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002399
2400 for (level = 1; level <= max_level; level++) {
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002401 struct intel_wm_level *wm = &pipe_wm->raw_wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002402
Matt Roper86c8bbb2015-09-24 15:53:16 -07002403 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002404 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002405
2406 /*
2407 * Disable any watermark level that exceeds the
2408 * register maximums since such watermarks are
2409 * always invalid.
2410 */
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002411 if (level > usable_level)
2412 continue;
2413
2414 if (ilk_validate_wm_level(level, &max, wm))
2415 pipe_wm->wm[level] = *wm;
2416 else
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002417 usable_level = level;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002418 }
2419
Matt Roper86c8bbb2015-09-24 15:53:16 -07002420 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002421}
2422
2423/*
Matt Ropered4a6a72016-02-23 17:20:13 -08002424 * Build a set of 'intermediate' watermark values that satisfy both the old
2425 * state and the new state. These can be programmed to the hardware
2426 * immediately.
2427 */
2428static int ilk_compute_intermediate_wm(struct drm_device *dev,
2429 struct intel_crtc *intel_crtc,
2430 struct intel_crtc_state *newstate)
2431{
Matt Ropere8f1f022016-05-12 07:05:55 -07002432 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08002433 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002434 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08002435
2436 /*
2437 * Start with the final, target watermarks, then combine with the
2438 * currently active watermarks to get values that are safe both before
2439 * and after the vblank.
2440 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002441 *a = newstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08002442 a->pipe_enabled |= b->pipe_enabled;
2443 a->sprites_enabled |= b->sprites_enabled;
2444 a->sprites_scaled |= b->sprites_scaled;
2445
2446 for (level = 0; level <= max_level; level++) {
2447 struct intel_wm_level *a_wm = &a->wm[level];
2448 const struct intel_wm_level *b_wm = &b->wm[level];
2449
2450 a_wm->enable &= b_wm->enable;
2451 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
2452 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
2453 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
2454 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
2455 }
2456
2457 /*
2458 * We need to make sure that these merged watermark values are
2459 * actually a valid configuration themselves. If they're not,
2460 * there's no safe way to transition from the old state to
2461 * the new state, so we need to fail the atomic transaction.
2462 */
2463 if (!ilk_validate_pipe_wm(dev, a))
2464 return -EINVAL;
2465
2466 /*
2467 * If our intermediate WM are identical to the final WM, then we can
2468 * omit the post-vblank programming; only update if it's different.
2469 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002470 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) == 0)
Matt Ropered4a6a72016-02-23 17:20:13 -08002471 newstate->wm.need_postvbl_update = false;
2472
2473 return 0;
2474}
2475
2476/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002477 * Merge the watermarks from all active pipes for a specific level.
2478 */
2479static void ilk_merge_wm_level(struct drm_device *dev,
2480 int level,
2481 struct intel_wm_level *ret_wm)
2482{
2483 const struct intel_crtc *intel_crtc;
2484
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002485 ret_wm->enable = true;
2486
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002487 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08002488 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002489 const struct intel_wm_level *wm = &active->wm[level];
2490
2491 if (!active->pipe_enabled)
2492 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002493
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002494 /*
2495 * The watermark values may have been used in the past,
2496 * so we must maintain them in the registers for some
2497 * time even if the level is now disabled.
2498 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002499 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002500 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002501
2502 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2503 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2504 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2505 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2506 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002507}
2508
2509/*
2510 * Merge all low power watermarks for all active pipes.
2511 */
2512static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002513 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002514 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002515 struct intel_pipe_wm *merged)
2516{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002517 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002518 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002519 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002520
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002521 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002522 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002523 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03002524 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002525
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002526 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002527 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002528
2529 /* merge each WM1+ level */
2530 for (level = 1; level <= max_level; level++) {
2531 struct intel_wm_level *wm = &merged->wm[level];
2532
2533 ilk_merge_wm_level(dev, level, wm);
2534
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002535 if (level > last_enabled_level)
2536 wm->enable = false;
2537 else if (!ilk_validate_wm_level(level, max, wm))
2538 /* make sure all following levels get disabled */
2539 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002540
2541 /*
2542 * The spec says it is preferred to disable
2543 * FBC WMs instead of disabling a WM level.
2544 */
2545 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002546 if (wm->enable)
2547 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002548 wm->fbc_val = 0;
2549 }
2550 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002551
2552 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2553 /*
2554 * FIXME this is racy. FBC might get enabled later.
2555 * What we should check here is whether FBC can be
2556 * enabled sometime later.
2557 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002558 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03002559 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002560 for (level = 2; level <= max_level; level++) {
2561 struct intel_wm_level *wm = &merged->wm[level];
2562
2563 wm->enable = false;
2564 }
2565 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002566}
2567
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002568static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2569{
2570 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2571 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2572}
2573
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002574/* The value we need to program into the WM_LPx latency field */
2575static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2576{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002577 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002578
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002579 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002580 return 2 * level;
2581 else
2582 return dev_priv->wm.pri_latency[level];
2583}
2584
Imre Deak820c1982013-12-17 14:46:36 +02002585static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002586 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002587 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002588 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002589{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002590 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002591 struct intel_crtc *intel_crtc;
2592 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002593
Ville Syrjälä0362c782013-10-09 19:17:57 +03002594 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002595 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002596
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002597 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002598 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002599 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002600
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002601 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002602
Ville Syrjälä0362c782013-10-09 19:17:57 +03002603 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002604
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002605 /*
2606 * Maintain the watermark values even if the level is
2607 * disabled. Doing otherwise could cause underruns.
2608 */
2609 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002610 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002611 (r->pri_val << WM1_LP_SR_SHIFT) |
2612 r->cur_val;
2613
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002614 if (r->enable)
2615 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2616
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002617 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002618 results->wm_lp[wm_lp - 1] |=
2619 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2620 else
2621 results->wm_lp[wm_lp - 1] |=
2622 r->fbc_val << WM1_LP_FBC_SHIFT;
2623
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002624 /*
2625 * Always set WM1S_LP_EN when spr_val != 0, even if the
2626 * level is disabled. Doing otherwise could cause underruns.
2627 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002628 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002629 WARN_ON(wm_lp != 1);
2630 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2631 } else
2632 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002633 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002634
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002635 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002636 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002637 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08002638 const struct intel_wm_level *r =
2639 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002640
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002641 if (WARN_ON(!r->enable))
2642 continue;
2643
Matt Ropered4a6a72016-02-23 17:20:13 -08002644 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002645
2646 results->wm_pipe[pipe] =
2647 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2648 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2649 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002650 }
2651}
2652
Paulo Zanoni861f3382013-05-31 10:19:21 -03002653/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2654 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002655static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002656 struct intel_pipe_wm *r1,
2657 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002658{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002659 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002660 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002661
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002662 for (level = 1; level <= max_level; level++) {
2663 if (r1->wm[level].enable)
2664 level1 = level;
2665 if (r2->wm[level].enable)
2666 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002667 }
2668
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002669 if (level1 == level2) {
2670 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002671 return r2;
2672 else
2673 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002674 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002675 return r1;
2676 } else {
2677 return r2;
2678 }
2679}
2680
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002681/* dirty bits used to track which watermarks need changes */
2682#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2683#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2684#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2685#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2686#define WM_DIRTY_FBC (1 << 24)
2687#define WM_DIRTY_DDB (1 << 25)
2688
Damien Lespiau055e3932014-08-18 13:49:10 +01002689static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002690 const struct ilk_wm_values *old,
2691 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002692{
2693 unsigned int dirty = 0;
2694 enum pipe pipe;
2695 int wm_lp;
2696
Damien Lespiau055e3932014-08-18 13:49:10 +01002697 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002698 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2699 dirty |= WM_DIRTY_LINETIME(pipe);
2700 /* Must disable LP1+ watermarks too */
2701 dirty |= WM_DIRTY_LP_ALL;
2702 }
2703
2704 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2705 dirty |= WM_DIRTY_PIPE(pipe);
2706 /* Must disable LP1+ watermarks too */
2707 dirty |= WM_DIRTY_LP_ALL;
2708 }
2709 }
2710
2711 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2712 dirty |= WM_DIRTY_FBC;
2713 /* Must disable LP1+ watermarks too */
2714 dirty |= WM_DIRTY_LP_ALL;
2715 }
2716
2717 if (old->partitioning != new->partitioning) {
2718 dirty |= WM_DIRTY_DDB;
2719 /* Must disable LP1+ watermarks too */
2720 dirty |= WM_DIRTY_LP_ALL;
2721 }
2722
2723 /* LP1+ watermarks already deemed dirty, no need to continue */
2724 if (dirty & WM_DIRTY_LP_ALL)
2725 return dirty;
2726
2727 /* Find the lowest numbered LP1+ watermark in need of an update... */
2728 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2729 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2730 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2731 break;
2732 }
2733
2734 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2735 for (; wm_lp <= 3; wm_lp++)
2736 dirty |= WM_DIRTY_LP(wm_lp);
2737
2738 return dirty;
2739}
2740
Ville Syrjälä8553c182013-12-05 15:51:39 +02002741static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2742 unsigned int dirty)
2743{
Imre Deak820c1982013-12-17 14:46:36 +02002744 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002745 bool changed = false;
2746
2747 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2748 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2749 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2750 changed = true;
2751 }
2752 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2753 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2754 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2755 changed = true;
2756 }
2757 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2758 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2759 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2760 changed = true;
2761 }
2762
2763 /*
2764 * Don't touch WM1S_LP_EN here.
2765 * Doing so could cause underruns.
2766 */
2767
2768 return changed;
2769}
2770
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002771/*
2772 * The spec says we shouldn't write when we don't need, because every write
2773 * causes WMs to be re-evaluated, expending some power.
2774 */
Imre Deak820c1982013-12-17 14:46:36 +02002775static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2776 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002777{
Imre Deak820c1982013-12-17 14:46:36 +02002778 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002779 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002780 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002781
Damien Lespiau055e3932014-08-18 13:49:10 +01002782 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002783 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002784 return;
2785
Ville Syrjälä8553c182013-12-05 15:51:39 +02002786 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002787
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002788 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002789 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002790 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002791 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002792 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002793 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2794
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002795 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002796 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002797 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002798 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002799 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002800 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2801
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002802 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002803 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002804 val = I915_READ(WM_MISC);
2805 if (results->partitioning == INTEL_DDB_PART_1_2)
2806 val &= ~WM_MISC_DATA_PARTITION_5_6;
2807 else
2808 val |= WM_MISC_DATA_PARTITION_5_6;
2809 I915_WRITE(WM_MISC, val);
2810 } else {
2811 val = I915_READ(DISP_ARB_CTL2);
2812 if (results->partitioning == INTEL_DDB_PART_1_2)
2813 val &= ~DISP_DATA_PARTITION_5_6;
2814 else
2815 val |= DISP_DATA_PARTITION_5_6;
2816 I915_WRITE(DISP_ARB_CTL2, val);
2817 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002818 }
2819
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002820 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002821 val = I915_READ(DISP_ARB_CTL);
2822 if (results->enable_fbc_wm)
2823 val &= ~DISP_FBC_WM_DIS;
2824 else
2825 val |= DISP_FBC_WM_DIS;
2826 I915_WRITE(DISP_ARB_CTL, val);
2827 }
2828
Imre Deak954911e2013-12-17 14:46:34 +02002829 if (dirty & WM_DIRTY_LP(1) &&
2830 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2831 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2832
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002833 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002834 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2835 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2836 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2837 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2838 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002839
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002840 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002841 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002842 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002843 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002844 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002845 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002846
2847 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002848}
2849
Matt Ropered4a6a72016-02-23 17:20:13 -08002850bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02002851{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002852 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02002853
2854 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2855}
2856
Lyude656d1b82016-08-17 15:55:54 -04002857#define SKL_SAGV_BLOCK_TIME 30 /* µs */
Damien Lespiaub9cec072014-11-04 17:06:43 +00002858
Matt Roper024c9042015-09-24 15:53:11 -07002859/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002860 * FIXME: We still don't have the proper code detect if we need to apply the WA,
2861 * so assume we'll always need it in order to avoid underruns.
2862 */
2863static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
2864{
2865 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
2866
Rodrigo Vivib976dc52017-01-23 10:32:37 -08002867 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002868 return true;
2869
2870 return false;
2871}
2872
Paulo Zanoni56feca92016-09-22 18:00:28 -03002873static bool
2874intel_has_sagv(struct drm_i915_private *dev_priv)
2875{
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002876 if (IS_KABYLAKE(dev_priv))
2877 return true;
2878
2879 if (IS_SKYLAKE(dev_priv) &&
2880 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
2881 return true;
2882
2883 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03002884}
2885
Lyude656d1b82016-08-17 15:55:54 -04002886/*
2887 * SAGV dynamically adjusts the system agent voltage and clock frequencies
2888 * depending on power and performance requirements. The display engine access
2889 * to system memory is blocked during the adjustment time. Because of the
2890 * blocking time, having this enabled can cause full system hangs and/or pipe
2891 * underruns if we don't meet all of the following requirements:
2892 *
2893 * - <= 1 pipe enabled
2894 * - All planes can enable watermarks for latencies >= SAGV engine block time
2895 * - We're not using an interlaced display configuration
2896 */
2897int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002898intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002899{
2900 int ret;
2901
Paulo Zanoni56feca92016-09-22 18:00:28 -03002902 if (!intel_has_sagv(dev_priv))
2903 return 0;
2904
2905 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04002906 return 0;
2907
2908 DRM_DEBUG_KMS("Enabling the SAGV\n");
2909 mutex_lock(&dev_priv->rps.hw_lock);
2910
2911 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2912 GEN9_SAGV_ENABLE);
2913
2914 /* We don't need to wait for the SAGV when enabling */
2915 mutex_unlock(&dev_priv->rps.hw_lock);
2916
2917 /*
2918 * Some skl systems, pre-release machines in particular,
2919 * don't actually have an SAGV.
2920 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002921 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04002922 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002923 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04002924 return 0;
2925 } else if (ret < 0) {
2926 DRM_ERROR("Failed to enable the SAGV\n");
2927 return ret;
2928 }
2929
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002930 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04002931 return 0;
2932}
2933
Lyude656d1b82016-08-17 15:55:54 -04002934int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002935intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002936{
Imre Deakb3b8e992016-12-05 18:27:38 +02002937 int ret;
Lyude656d1b82016-08-17 15:55:54 -04002938
Paulo Zanoni56feca92016-09-22 18:00:28 -03002939 if (!intel_has_sagv(dev_priv))
2940 return 0;
2941
2942 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04002943 return 0;
2944
2945 DRM_DEBUG_KMS("Disabling the SAGV\n");
2946 mutex_lock(&dev_priv->rps.hw_lock);
2947
2948 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02002949 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2950 GEN9_SAGV_DISABLE,
2951 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
2952 1);
Lyude656d1b82016-08-17 15:55:54 -04002953 mutex_unlock(&dev_priv->rps.hw_lock);
2954
Lyude656d1b82016-08-17 15:55:54 -04002955 /*
2956 * Some skl systems, pre-release machines in particular,
2957 * don't actually have an SAGV.
2958 */
Imre Deakb3b8e992016-12-05 18:27:38 +02002959 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04002960 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002961 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04002962 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02002963 } else if (ret < 0) {
2964 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
2965 return ret;
Lyude656d1b82016-08-17 15:55:54 -04002966 }
2967
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002968 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04002969 return 0;
2970}
2971
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002972bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04002973{
2974 struct drm_device *dev = state->dev;
2975 struct drm_i915_private *dev_priv = to_i915(dev);
2976 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002977 struct intel_crtc *crtc;
2978 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02002979 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04002980 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02002981 int level, latency;
Lyude656d1b82016-08-17 15:55:54 -04002982
Paulo Zanoni56feca92016-09-22 18:00:28 -03002983 if (!intel_has_sagv(dev_priv))
2984 return false;
2985
Lyude656d1b82016-08-17 15:55:54 -04002986 /*
2987 * SKL workaround: bspec recommends we disable the SAGV when we have
2988 * more then one pipe enabled
2989 *
2990 * If there are no active CRTCs, no additional checks need be performed
2991 */
2992 if (hweight32(intel_state->active_crtcs) == 0)
2993 return true;
2994 else if (hweight32(intel_state->active_crtcs) > 1)
2995 return false;
2996
2997 /* Since we're now guaranteed to only have one active CRTC... */
2998 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02002999 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003000 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003001
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003002 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003003 return false;
3004
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003005 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003006 struct skl_plane_wm *wm =
3007 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003008
Lyude656d1b82016-08-17 15:55:54 -04003009 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003010 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003011 continue;
3012
3013 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003014 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003015 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003016 { }
3017
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003018 latency = dev_priv->wm.skl_latency[level];
3019
3020 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003021 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003022 I915_FORMAT_MOD_X_TILED)
3023 latency += 15;
3024
Lyude656d1b82016-08-17 15:55:54 -04003025 /*
3026 * If any of the planes on this pipe don't enable wm levels
3027 * that incur memory latencies higher then 30µs we can't enable
3028 * the SAGV
3029 */
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003030 if (latency < SKL_SAGV_BLOCK_TIME)
Lyude656d1b82016-08-17 15:55:54 -04003031 return false;
3032 }
3033
3034 return true;
3035}
3036
Damien Lespiaub9cec072014-11-04 17:06:43 +00003037static void
3038skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003039 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003040 struct skl_ddb_entry *alloc, /* out */
3041 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003042{
Matt Roperc107acf2016-05-12 07:06:01 -07003043 struct drm_atomic_state *state = cstate->base.state;
3044 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3045 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003046 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003047 unsigned int pipe_size, ddb_size;
3048 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003049
Matt Ropera6d3460e2016-05-12 07:06:04 -07003050 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003051 alloc->start = 0;
3052 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003053 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003054 return;
3055 }
3056
Matt Ropera6d3460e2016-05-12 07:06:04 -07003057 if (intel_state->active_pipe_changes)
3058 *num_active = hweight32(intel_state->active_crtcs);
3059 else
3060 *num_active = hweight32(dev_priv->active_crtcs);
3061
Deepak M6f3fff62016-09-15 15:01:10 +05303062 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3063 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003064
3065 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3066
Matt Roperc107acf2016-05-12 07:06:01 -07003067 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003068 * If the state doesn't change the active CRTC's, then there's
3069 * no need to recalculate; the existing pipe allocation limits
3070 * should remain unchanged. Note that we're safe from racing
3071 * commits since any racing commit that changes the active CRTC
3072 * list would need to grab _all_ crtc locks, including the one
3073 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003074 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003075 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003076 /*
3077 * alloc may be cleared by clear_intel_crtc_state,
3078 * copy from old state to be sure
3079 */
3080 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003081 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003082 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003083
3084 nth_active_pipe = hweight32(intel_state->active_crtcs &
3085 (drm_crtc_mask(for_crtc) - 1));
3086 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3087 alloc->start = nth_active_pipe * ddb_size / *num_active;
3088 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003089}
3090
Matt Roperc107acf2016-05-12 07:06:01 -07003091static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003092{
Matt Roperc107acf2016-05-12 07:06:01 -07003093 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003094 return 32;
3095
3096 return 8;
3097}
3098
Damien Lespiaua269c582014-11-04 17:06:49 +00003099static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3100{
3101 entry->start = reg & 0x3ff;
3102 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003103 if (entry->end)
3104 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003105}
3106
Damien Lespiau08db6652014-11-04 17:06:52 +00003107void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3108 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003109{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003110 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003111
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003112 memset(ddb, 0, sizeof(*ddb));
3113
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003114 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003115 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003116 enum plane_id plane_id;
3117 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003118
3119 power_domain = POWER_DOMAIN_PIPE(pipe);
3120 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003121 continue;
3122
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003123 for_each_plane_id_on_crtc(crtc, plane_id) {
3124 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003125
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003126 if (plane_id != PLANE_CURSOR)
3127 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3128 else
3129 val = I915_READ(CUR_BUF_CFG(pipe));
3130
3131 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3132 }
Imre Deak4d800032016-02-17 16:31:29 +02003133
3134 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003135 }
3136}
3137
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003138/*
3139 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3140 * The bspec defines downscale amount as:
3141 *
3142 * """
3143 * Horizontal down scale amount = maximum[1, Horizontal source size /
3144 * Horizontal destination size]
3145 * Vertical down scale amount = maximum[1, Vertical source size /
3146 * Vertical destination size]
3147 * Total down scale amount = Horizontal down scale amount *
3148 * Vertical down scale amount
3149 * """
3150 *
3151 * Return value is provided in 16.16 fixed point form to retain fractional part.
3152 * Caller should take care of dividing & rounding off the value.
3153 */
3154static uint32_t
3155skl_plane_downscale_amount(const struct intel_plane_state *pstate)
3156{
3157 uint32_t downscale_h, downscale_w;
3158 uint32_t src_w, src_h, dst_w, dst_h;
3159
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003160 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003161 return DRM_PLANE_HELPER_NO_SCALING;
3162
3163 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003164 src_w = drm_rect_width(&pstate->base.src);
3165 src_h = drm_rect_height(&pstate->base.src);
3166 dst_w = drm_rect_width(&pstate->base.dst);
3167 dst_h = drm_rect_height(&pstate->base.dst);
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003168 if (drm_rotation_90_or_270(pstate->base.rotation))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003169 swap(dst_w, dst_h);
3170
3171 downscale_h = max(src_h / dst_h, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3172 downscale_w = max(src_w / dst_w, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3173
3174 /* Provide result in 16.16 fixed point */
3175 return (uint64_t)downscale_w * downscale_h >> 16;
3176}
3177
Damien Lespiaub9cec072014-11-04 17:06:43 +00003178static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003179skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3180 const struct drm_plane_state *pstate,
3181 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003182{
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003183 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003184 uint32_t down_scale_amount, data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003185 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003186 struct drm_framebuffer *fb;
3187 u32 format;
Matt Ropera1de91e2016-05-12 07:05:57 -07003188
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003189 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07003190 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003191
3192 fb = pstate->fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003193 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02003194
Matt Ropera1de91e2016-05-12 07:05:57 -07003195 if (pstate->plane->type == DRM_PLANE_TYPE_CURSOR)
3196 return 0;
3197 if (y && format != DRM_FORMAT_NV12)
3198 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003199
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003200 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3201 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003202
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003203 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003204 swap(width, height);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003205
3206 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07003207 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003208 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003209 data_rate = width * height *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003210 fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003211 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003212 data_rate = (width / 2) * (height / 2) *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003213 fb->format->cpp[1];
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003214 } else {
3215 /* for packed formats */
Ville Syrjälä353c8592016-12-14 23:30:57 +02003216 data_rate = width * height * fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003217 }
3218
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003219 down_scale_amount = skl_plane_downscale_amount(intel_pstate);
3220
3221 return (uint64_t)data_rate * down_scale_amount >> 16;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003222}
3223
3224/*
3225 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
3226 * a 8192x4096@32bpp framebuffer:
3227 * 3 * 4096 * 8192 * 4 < 2^32
3228 */
3229static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003230skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
3231 unsigned *plane_data_rate,
3232 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003233{
Matt Roper9c74d822016-05-12 07:05:58 -07003234 struct drm_crtc_state *cstate = &intel_cstate->base;
3235 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003236 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003237 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003238 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003239
3240 if (WARN_ON(!state))
3241 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003242
Matt Ropera1de91e2016-05-12 07:05:57 -07003243 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003244 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003245 enum plane_id plane_id = to_intel_plane(plane)->id;
3246 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07003247
Matt Ropera6d3460e2016-05-12 07:06:04 -07003248 /* packed/uv */
3249 rate = skl_plane_relative_data_rate(intel_cstate,
3250 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003251 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003252
3253 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07003254
Matt Ropera6d3460e2016-05-12 07:06:04 -07003255 /* y-plane */
3256 rate = skl_plane_relative_data_rate(intel_cstate,
3257 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003258 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07003259
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003260 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003261 }
3262
3263 return total_data_rate;
3264}
3265
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003266static uint16_t
3267skl_ddb_min_alloc(const struct drm_plane_state *pstate,
3268 const int y)
3269{
3270 struct drm_framebuffer *fb = pstate->fb;
3271 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
3272 uint32_t src_w, src_h;
3273 uint32_t min_scanlines = 8;
3274 uint8_t plane_bpp;
3275
3276 if (WARN_ON(!fb))
3277 return 0;
3278
3279 /* For packed formats, no y-plane, return 0 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003280 if (y && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003281 return 0;
3282
3283 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003284 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
3285 fb->modifier != I915_FORMAT_MOD_Yf_TILED)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003286 return 8;
3287
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003288 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
3289 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003290
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003291 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003292 swap(src_w, src_h);
3293
3294 /* Halve UV plane width and height for NV12 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003295 if (fb->format->format == DRM_FORMAT_NV12 && !y) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003296 src_w /= 2;
3297 src_h /= 2;
3298 }
3299
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003300 if (fb->format->format == DRM_FORMAT_NV12 && !y)
Ville Syrjälä353c8592016-12-14 23:30:57 +02003301 plane_bpp = fb->format->cpp[1];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003302 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02003303 plane_bpp = fb->format->cpp[0];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003304
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003305 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003306 switch (plane_bpp) {
3307 case 1:
3308 min_scanlines = 32;
3309 break;
3310 case 2:
3311 min_scanlines = 16;
3312 break;
3313 case 4:
3314 min_scanlines = 8;
3315 break;
3316 case 8:
3317 min_scanlines = 4;
3318 break;
3319 default:
3320 WARN(1, "Unsupported pixel depth %u for rotation",
3321 plane_bpp);
3322 min_scanlines = 32;
3323 }
3324 }
3325
3326 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
3327}
3328
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003329static void
3330skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
3331 uint16_t *minimum, uint16_t *y_minimum)
3332{
3333 const struct drm_plane_state *pstate;
3334 struct drm_plane *plane;
3335
3336 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003337 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003338
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003339 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003340 continue;
3341
3342 if (!pstate->visible)
3343 continue;
3344
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003345 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
3346 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003347 }
3348
3349 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
3350}
3351
Matt Roperc107acf2016-05-12 07:06:01 -07003352static int
Matt Roper024c9042015-09-24 15:53:11 -07003353skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00003354 struct skl_ddb_allocation *ddb /* out */)
3355{
Matt Roperc107acf2016-05-12 07:06:01 -07003356 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003357 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003358 struct drm_device *dev = crtc->dev;
3359 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3360 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04003361 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003362 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02003363 uint16_t minimum[I915_MAX_PLANES] = {};
3364 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003365 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003366 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07003367 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003368 unsigned plane_data_rate[I915_MAX_PLANES] = {};
3369 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003370
Paulo Zanoni5a920b82016-10-04 14:37:32 -03003371 /* Clear the partitioning for disabled planes. */
3372 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
3373 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
3374
Matt Ropera6d3460e2016-05-12 07:06:04 -07003375 if (WARN_ON(!state))
3376 return 0;
3377
Matt Roperc107acf2016-05-12 07:06:01 -07003378 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04003379 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07003380 return 0;
3381 }
3382
Matt Ropera6d3460e2016-05-12 07:06:04 -07003383 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003384 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003385 if (alloc_size == 0) {
3386 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roperc107acf2016-05-12 07:06:01 -07003387 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003388 }
3389
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003390 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003391
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003392 /*
3393 * 1. Allocate the mininum required blocks for each active plane
3394 * and allocate the cursor, it doesn't require extra allocation
3395 * proportional to the data rate.
3396 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00003397
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003398 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
3399 alloc_size -= minimum[plane_id];
3400 alloc_size -= y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003401 }
3402
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003403 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
3404 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
3405
Damien Lespiaub9cec072014-11-04 17:06:43 +00003406 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003407 * 2. Distribute the remaining space in proportion to the amount of
3408 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003409 *
3410 * FIXME: we may not allocate every single block here.
3411 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003412 total_data_rate = skl_get_total_relative_data_rate(cstate,
3413 plane_data_rate,
3414 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07003415 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07003416 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003417
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003418 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003419 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003420 unsigned int data_rate, y_data_rate;
3421 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003422
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003423 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003424 continue;
3425
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003426 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003427
3428 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003429 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003430 * promote the expression to 64 bits to avoid overflowing, the
3431 * result is < available as data_rate / total_data_rate < 1
3432 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003433 plane_blocks = minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003434 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3435 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003436
Matt Roperc107acf2016-05-12 07:06:01 -07003437 /* Leave disabled planes at (0,0) */
3438 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003439 ddb->plane[pipe][plane_id].start = start;
3440 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003441 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00003442
3443 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003444
3445 /*
3446 * allocation for y_plane part of planar format:
3447 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003448 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003449
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003450 y_plane_blocks = y_minimum[plane_id];
Matt Ropera1de91e2016-05-12 07:05:57 -07003451 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3452 total_data_rate);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003453
Matt Roperc107acf2016-05-12 07:06:01 -07003454 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003455 ddb->y_plane[pipe][plane_id].start = start;
3456 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003457 }
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003458
Matt Ropera1de91e2016-05-12 07:05:57 -07003459 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003460 }
3461
Matt Roperc107acf2016-05-12 07:06:01 -07003462 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003463}
3464
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003465/*
3466 * 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 +02003467 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003468 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3469 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3470*/
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303471static uint_fixed_16_16_t skl_wm_method1(uint32_t pixel_rate, uint8_t cpp,
3472 uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003473{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303474 uint32_t wm_intermediate_val;
3475 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003476
3477 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303478 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003479
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303480 wm_intermediate_val = latency * pixel_rate * cpp;
3481 ret = fixed_16_16_div_round_up_u64(wm_intermediate_val, 1000 * 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003482 return ret;
3483}
3484
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303485static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
3486 uint32_t pipe_htotal,
3487 uint32_t latency,
3488 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003489{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003490 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303491 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003492
3493 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303494 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003495
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003496 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303497 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
3498 pipe_htotal * 1000);
3499 ret = mul_u32_fixed_16_16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003500 return ret;
3501}
3502
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003503static uint32_t skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
3504 struct intel_plane_state *pstate)
3505{
3506 uint64_t adjusted_pixel_rate;
3507 uint64_t downscale_amount;
3508 uint64_t pixel_rate;
3509
3510 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003511 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003512 return 0;
3513
3514 /*
3515 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
3516 * with additional adjustments for plane-specific scaling.
3517 */
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02003518 adjusted_pixel_rate = cstate->pixel_rate;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003519 downscale_amount = skl_plane_downscale_amount(pstate);
3520
3521 pixel_rate = adjusted_pixel_rate * downscale_amount >> 16;
3522 WARN_ON(pixel_rate != clamp_t(uint32_t, pixel_rate, 0, ~0));
3523
3524 return pixel_rate;
3525}
3526
Matt Roper55994c22016-05-12 07:06:08 -07003527static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3528 struct intel_crtc_state *cstate,
3529 struct intel_plane_state *intel_pstate,
3530 uint16_t ddb_allocation,
3531 int level,
3532 uint16_t *out_blocks, /* out */
3533 uint8_t *out_lines, /* out */
3534 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003535{
Matt Roper33815fa2016-05-12 07:06:05 -07003536 struct drm_plane_state *pstate = &intel_pstate->base;
3537 struct drm_framebuffer *fb = pstate->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003538 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303539 uint_fixed_16_16_t method1, method2;
3540 uint_fixed_16_16_t plane_blocks_per_line;
3541 uint_fixed_16_16_t selected_result;
3542 uint32_t interm_pbpl;
3543 uint32_t plane_bytes_per_line;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003544 uint32_t res_blocks, res_lines;
Ville Syrjäläac484962016-01-20 21:05:26 +02003545 uint8_t cpp;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003546 uint32_t width = 0, height = 0;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003547 uint32_t plane_pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303548 uint_fixed_16_16_t y_tile_minimum;
3549 uint32_t y_min_scanlines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003550 struct intel_atomic_state *state =
3551 to_intel_atomic_state(cstate->base.state);
3552 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303553 bool y_tiled, x_tiled;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003554
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003555 if (latency == 0 || !cstate->base.active || !intel_pstate->base.visible) {
Matt Roper55994c22016-05-12 07:06:08 -07003556 *enabled = false;
3557 return 0;
3558 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003559
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303560 y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
3561 fb->modifier == I915_FORMAT_MOD_Yf_TILED;
3562 x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
3563
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05303564 /* Display WA #1141: kbl. */
3565 if (IS_KABYLAKE(dev_priv) && dev_priv->ipc_enabled)
3566 latency += 4;
3567
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303568 if (apply_memory_bw_wa && x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003569 latency += 15;
3570
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003571 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3572 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003573
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003574 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003575 swap(width, height);
3576
Ville Syrjälä353c8592016-12-14 23:30:57 +02003577 cpp = fb->format->cpp[0];
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003578 plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate, intel_pstate);
3579
Dave Airlie61d0a042016-10-25 16:35:20 +10003580 if (drm_rotation_90_or_270(pstate->rotation)) {
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003581 int cpp = (fb->format->format == DRM_FORMAT_NV12) ?
Ville Syrjälä353c8592016-12-14 23:30:57 +02003582 fb->format->cpp[1] :
3583 fb->format->cpp[0];
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003584
3585 switch (cpp) {
3586 case 1:
3587 y_min_scanlines = 16;
3588 break;
3589 case 2:
3590 y_min_scanlines = 8;
3591 break;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003592 case 4:
3593 y_min_scanlines = 4;
3594 break;
Paulo Zanoni86a462b2016-09-22 18:00:35 -03003595 default:
3596 MISSING_CASE(cpp);
3597 return -EINVAL;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003598 }
3599 } else {
3600 y_min_scanlines = 4;
3601 }
3602
Paulo Zanoni2ef32de2016-11-08 18:22:11 -02003603 if (apply_memory_bw_wa)
3604 y_min_scanlines *= 2;
3605
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003606 plane_bytes_per_line = width * cpp;
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303607 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303608 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line *
3609 y_min_scanlines, 512);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003610 plane_blocks_per_line =
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303611 fixed_16_16_div_round_up(interm_pbpl, y_min_scanlines);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303612 } else if (x_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303613 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512);
3614 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303615 } else {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303616 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512) + 1;
3617 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003618 }
3619
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003620 method1 = skl_wm_method1(plane_pixel_rate, cpp, latency);
3621 method2 = skl_wm_method2(plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07003622 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003623 latency,
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003624 plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003625
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303626 y_tile_minimum = mul_u32_fixed_16_16(y_min_scanlines,
3627 plane_blocks_per_line);
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003628
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303629 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303630 selected_result = max_fixed_16_16(method2, y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003631 } else {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03003632 if ((cpp * cstate->base.adjusted_mode.crtc_htotal / 512 < 1) &&
3633 (plane_bytes_per_line / 512 < 1))
3634 selected_result = method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303635 else if ((ddb_allocation /
3636 fixed_16_16_to_u32_round_up(plane_blocks_per_line)) >= 1)
3637 selected_result = min_fixed_16_16(method1, method2);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003638 else
3639 selected_result = method1;
3640 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003641
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303642 res_blocks = fixed_16_16_to_u32_round_up(selected_result) + 1;
3643 res_lines = DIV_ROUND_UP(selected_result.val,
3644 plane_blocks_per_line.val);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003645
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003646 if (level >= 1 && level <= 7) {
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303647 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303648 res_blocks += fixed_16_16_to_u32_round_up(y_tile_minimum);
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003649 res_lines += y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003650 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003651 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003652 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003653 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003654
Matt Roper55994c22016-05-12 07:06:08 -07003655 if (res_blocks >= ddb_allocation || res_lines > 31) {
3656 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07003657
3658 /*
3659 * If there are no valid level 0 watermarks, then we can't
3660 * support this display configuration.
3661 */
3662 if (level) {
3663 return 0;
3664 } else {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003665 struct drm_plane *plane = pstate->plane;
Matt Roper6b6bada2016-05-12 07:06:10 -07003666
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003667 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
3668 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
3669 plane->base.id, plane->name,
3670 res_blocks, ddb_allocation, res_lines);
Matt Roper6b6bada2016-05-12 07:06:10 -07003671 return -EINVAL;
3672 }
Matt Roper55994c22016-05-12 07:06:08 -07003673 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00003674
3675 *out_blocks = res_blocks;
3676 *out_lines = res_lines;
Matt Roper55994c22016-05-12 07:06:08 -07003677 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003678
Matt Roper55994c22016-05-12 07:06:08 -07003679 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003680}
3681
Matt Roperf4a96752016-05-12 07:06:06 -07003682static int
3683skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3684 struct skl_ddb_allocation *ddb,
3685 struct intel_crtc_state *cstate,
Lyudea62163e2016-10-04 14:28:20 -04003686 struct intel_plane *intel_plane,
Matt Roperf4a96752016-05-12 07:06:06 -07003687 int level,
3688 struct skl_wm_level *result)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003689{
Matt Roperf4a96752016-05-12 07:06:06 -07003690 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003691 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Lyudea62163e2016-10-04 14:28:20 -04003692 struct drm_plane *plane = &intel_plane->base;
3693 struct intel_plane_state *intel_pstate = NULL;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003694 uint16_t ddb_blocks;
Matt Roper024c9042015-09-24 15:53:11 -07003695 enum pipe pipe = intel_crtc->pipe;
Matt Roper55994c22016-05-12 07:06:08 -07003696 int ret;
Lyudea62163e2016-10-04 14:28:20 -04003697
3698 if (state)
3699 intel_pstate =
3700 intel_atomic_get_existing_plane_state(state,
3701 intel_plane);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003702
Matt Roperf4a96752016-05-12 07:06:06 -07003703 /*
Lyudea62163e2016-10-04 14:28:20 -04003704 * Note: If we start supporting multiple pending atomic commits against
3705 * the same planes/CRTC's in the future, plane->state will no longer be
3706 * the correct pre-state to use for the calculations here and we'll
3707 * need to change where we get the 'unchanged' plane data from.
3708 *
3709 * For now this is fine because we only allow one queued commit against
3710 * a CRTC. Even if the plane isn't modified by this transaction and we
3711 * don't have a plane lock, we still have the CRTC's lock, so we know
3712 * that no other transactions are racing with us to update it.
Matt Roperf4a96752016-05-12 07:06:06 -07003713 */
Lyudea62163e2016-10-04 14:28:20 -04003714 if (!intel_pstate)
3715 intel_pstate = to_intel_plane_state(plane->state);
Matt Roperf4a96752016-05-12 07:06:06 -07003716
Lyudea62163e2016-10-04 14:28:20 -04003717 WARN_ON(!intel_pstate->base.fb);
Matt Roper024c9042015-09-24 15:53:11 -07003718
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003719 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
Matt Roperf4a96752016-05-12 07:06:06 -07003720
Lyudea62163e2016-10-04 14:28:20 -04003721 ret = skl_compute_plane_wm(dev_priv,
3722 cstate,
3723 intel_pstate,
3724 ddb_blocks,
3725 level,
3726 &result->plane_res_b,
3727 &result->plane_res_l,
3728 &result->plane_en);
3729 if (ret)
3730 return ret;
Matt Roperf4a96752016-05-12 07:06:06 -07003731
3732 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003733}
3734
Damien Lespiau407b50f2014-11-04 17:06:57 +00003735static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07003736skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003737{
Mahesh Kumara3a89862016-12-01 21:19:34 +05303738 struct drm_atomic_state *state = cstate->base.state;
3739 struct drm_i915_private *dev_priv = to_i915(state->dev);
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003740 uint32_t pixel_rate;
Mahesh Kumara3a89862016-12-01 21:19:34 +05303741 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003742
Matt Roper024c9042015-09-24 15:53:11 -07003743 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003744 return 0;
3745
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02003746 pixel_rate = cstate->pixel_rate;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003747
3748 if (WARN_ON(pixel_rate == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003749 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003750
Mahesh Kumara3a89862016-12-01 21:19:34 +05303751 linetime_wm = DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal *
3752 1000, pixel_rate);
3753
3754 /* Display WA #1135: bxt. */
3755 if (IS_BROXTON(dev_priv) && dev_priv->ipc_enabled)
3756 linetime_wm = DIV_ROUND_UP(linetime_wm, 2);
3757
3758 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003759}
3760
Matt Roper024c9042015-09-24 15:53:11 -07003761static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003762 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003763{
Matt Roper024c9042015-09-24 15:53:11 -07003764 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003765 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003766
3767 /* Until we know more, just disable transition WMs */
Lyudea62163e2016-10-04 14:28:20 -04003768 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003769}
3770
Matt Roper55994c22016-05-12 07:06:08 -07003771static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
3772 struct skl_ddb_allocation *ddb,
3773 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003774{
Matt Roper024c9042015-09-24 15:53:11 -07003775 struct drm_device *dev = cstate->base.crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003776 const struct drm_i915_private *dev_priv = to_i915(dev);
Lyudea62163e2016-10-04 14:28:20 -04003777 struct intel_plane *intel_plane;
3778 struct skl_plane_wm *wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003779 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07003780 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003781
Lyudea62163e2016-10-04 14:28:20 -04003782 /*
3783 * We'll only calculate watermarks for planes that are actually
3784 * enabled, so make sure all other planes are set as disabled.
3785 */
3786 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
3787
3788 for_each_intel_plane_mask(&dev_priv->drm,
3789 intel_plane,
3790 cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003791 wm = &pipe_wm->planes[intel_plane->id];
Lyudea62163e2016-10-04 14:28:20 -04003792
3793 for (level = 0; level <= max_level; level++) {
3794 ret = skl_compute_wm_level(dev_priv, ddb, cstate,
3795 intel_plane, level,
3796 &wm->wm[level]);
3797 if (ret)
3798 return ret;
3799 }
3800 skl_compute_transition_wm(cstate, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003801 }
Matt Roper024c9042015-09-24 15:53:11 -07003802 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003803
Matt Roper55994c22016-05-12 07:06:08 -07003804 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003805}
3806
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003807static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
3808 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00003809 const struct skl_ddb_entry *entry)
3810{
3811 if (entry->end)
3812 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3813 else
3814 I915_WRITE(reg, 0);
3815}
3816
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003817static void skl_write_wm_level(struct drm_i915_private *dev_priv,
3818 i915_reg_t reg,
3819 const struct skl_wm_level *level)
3820{
3821 uint32_t val = 0;
3822
3823 if (level->plane_en) {
3824 val |= PLANE_WM_EN;
3825 val |= level->plane_res_b;
3826 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
3827 }
3828
3829 I915_WRITE(reg, val);
3830}
3831
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003832static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
3833 const struct skl_plane_wm *wm,
3834 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003835 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04003836{
3837 struct drm_crtc *crtc = &intel_crtc->base;
3838 struct drm_device *dev = crtc->dev;
3839 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003840 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003841 enum pipe pipe = intel_crtc->pipe;
3842
3843 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003844 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003845 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003846 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003847 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003848 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003849
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003850 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
3851 &ddb->plane[pipe][plane_id]);
3852 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
3853 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04003854}
3855
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003856static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
3857 const struct skl_plane_wm *wm,
3858 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04003859{
3860 struct drm_crtc *crtc = &intel_crtc->base;
3861 struct drm_device *dev = crtc->dev;
3862 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003863 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003864 enum pipe pipe = intel_crtc->pipe;
3865
3866 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003867 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
3868 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003869 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003870 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003871
3872 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003873 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04003874}
3875
cpaul@redhat.com45ece232016-10-14 17:31:56 -04003876bool skl_wm_level_equals(const struct skl_wm_level *l1,
3877 const struct skl_wm_level *l2)
3878{
3879 if (l1->plane_en != l2->plane_en)
3880 return false;
3881
3882 /* If both planes aren't enabled, the rest shouldn't matter */
3883 if (!l1->plane_en)
3884 return true;
3885
3886 return (l1->plane_res_l == l2->plane_res_l &&
3887 l1->plane_res_b == l2->plane_res_b);
3888}
3889
Lyude27082492016-08-24 07:48:10 +02003890static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
3891 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003892{
Lyude27082492016-08-24 07:48:10 +02003893 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003894}
3895
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01003896bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry **entries,
3897 const struct skl_ddb_entry *ddb,
3898 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003899{
Lyudece0ba282016-09-15 10:46:35 -04003900 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003901
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01003902 for (i = 0; i < I915_MAX_PIPES; i++)
3903 if (i != ignore && entries[i] &&
3904 skl_ddb_entries_overlap(ddb, entries[i]))
Lyude27082492016-08-24 07:48:10 +02003905 return true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003906
Lyude27082492016-08-24 07:48:10 +02003907 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003908}
3909
Matt Roper55994c22016-05-12 07:06:08 -07003910static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003911 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07003912 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003913 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07003914 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003915{
Matt Roperf4a96752016-05-12 07:06:06 -07003916 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07003917 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003918
Matt Roper55994c22016-05-12 07:06:08 -07003919 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
3920 if (ret)
3921 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003922
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003923 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07003924 *changed = false;
3925 else
3926 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003927
Matt Roper55994c22016-05-12 07:06:08 -07003928 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003929}
3930
Matt Roper9b613022016-06-27 16:42:44 -07003931static uint32_t
3932pipes_modified(struct drm_atomic_state *state)
3933{
3934 struct drm_crtc *crtc;
3935 struct drm_crtc_state *cstate;
3936 uint32_t i, ret = 0;
3937
3938 for_each_crtc_in_state(state, crtc, cstate, i)
3939 ret |= drm_crtc_mask(crtc);
3940
3941 return ret;
3942}
3943
Jani Nikulabb7791b2016-10-04 12:29:17 +03003944static int
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003945skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
3946{
3947 struct drm_atomic_state *state = cstate->base.state;
3948 struct drm_device *dev = state->dev;
3949 struct drm_crtc *crtc = cstate->base.crtc;
3950 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3951 struct drm_i915_private *dev_priv = to_i915(dev);
3952 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3953 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
3954 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3955 struct drm_plane_state *plane_state;
3956 struct drm_plane *plane;
3957 enum pipe pipe = intel_crtc->pipe;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003958
3959 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
3960
Maarten Lankhorst220b0962016-10-26 15:41:30 +02003961 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003962 enum plane_id plane_id = to_intel_plane(plane)->id;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003963
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003964 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
3965 &new_ddb->plane[pipe][plane_id]) &&
3966 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
3967 &new_ddb->y_plane[pipe][plane_id]))
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003968 continue;
3969
3970 plane_state = drm_atomic_get_plane_state(state, plane);
3971 if (IS_ERR(plane_state))
3972 return PTR_ERR(plane_state);
3973 }
3974
3975 return 0;
3976}
3977
Matt Roper98d39492016-05-12 07:06:03 -07003978static int
3979skl_compute_ddb(struct drm_atomic_state *state)
3980{
3981 struct drm_device *dev = state->dev;
3982 struct drm_i915_private *dev_priv = to_i915(dev);
3983 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3984 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07003985 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07003986 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07003987 int ret;
3988
3989 /*
3990 * If this is our first atomic update following hardware readout,
3991 * we can't trust the DDB that the BIOS programmed for us. Let's
3992 * pretend that all pipes switched active status so that we'll
3993 * ensure a full DDB recompute.
3994 */
Matt Roper1b54a882016-06-17 13:42:18 -07003995 if (dev_priv->wm.distrust_bios_wm) {
3996 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
3997 state->acquire_ctx);
3998 if (ret)
3999 return ret;
4000
Matt Roper98d39492016-05-12 07:06:03 -07004001 intel_state->active_pipe_changes = ~0;
4002
Matt Roper1b54a882016-06-17 13:42:18 -07004003 /*
4004 * We usually only initialize intel_state->active_crtcs if we
4005 * we're doing a modeset; make sure this field is always
4006 * initialized during the sanitization process that happens
4007 * on the first commit too.
4008 */
4009 if (!intel_state->modeset)
4010 intel_state->active_crtcs = dev_priv->active_crtcs;
4011 }
4012
Matt Roper98d39492016-05-12 07:06:03 -07004013 /*
4014 * If the modeset changes which CRTC's are active, we need to
4015 * recompute the DDB allocation for *all* active pipes, even
4016 * those that weren't otherwise being modified in any way by this
4017 * atomic commit. Due to the shrinking of the per-pipe allocations
4018 * when new active CRTC's are added, it's possible for a pipe that
4019 * we were already using and aren't changing at all here to suddenly
4020 * become invalid if its DDB needs exceeds its new allocation.
4021 *
4022 * Note that if we wind up doing a full DDB recompute, we can't let
4023 * any other display updates race with this transaction, so we need
4024 * to grab the lock on *all* CRTC's.
4025 */
Matt Roper734fa012016-05-12 15:11:40 -07004026 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004027 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004028 intel_state->wm_results.dirty_pipes = ~0;
4029 }
Matt Roper98d39492016-05-12 07:06:03 -07004030
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004031 /*
4032 * We're not recomputing for the pipes not included in the commit, so
4033 * make sure we start with the current state.
4034 */
4035 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4036
Matt Roper98d39492016-05-12 07:06:03 -07004037 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4038 struct intel_crtc_state *cstate;
4039
4040 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4041 if (IS_ERR(cstate))
4042 return PTR_ERR(cstate);
4043
Matt Roper734fa012016-05-12 15:11:40 -07004044 ret = skl_allocate_pipe_ddb(cstate, ddb);
Matt Roper98d39492016-05-12 07:06:03 -07004045 if (ret)
4046 return ret;
Lyude05a76d32016-08-17 15:55:57 -04004047
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004048 ret = skl_ddb_add_affected_planes(cstate);
Lyude05a76d32016-08-17 15:55:57 -04004049 if (ret)
4050 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004051 }
4052
4053 return 0;
4054}
4055
Matt Roper2722efb2016-08-17 15:55:55 -04004056static void
4057skl_copy_wm_for_pipe(struct skl_wm_values *dst,
4058 struct skl_wm_values *src,
4059 enum pipe pipe)
4060{
Matt Roper2722efb2016-08-17 15:55:55 -04004061 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
4062 sizeof(dst->ddb.y_plane[pipe]));
4063 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
4064 sizeof(dst->ddb.plane[pipe]));
4065}
4066
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004067static void
4068skl_print_wm_changes(const struct drm_atomic_state *state)
4069{
4070 const struct drm_device *dev = state->dev;
4071 const struct drm_i915_private *dev_priv = to_i915(dev);
4072 const struct intel_atomic_state *intel_state =
4073 to_intel_atomic_state(state);
4074 const struct drm_crtc *crtc;
4075 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004076 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004077 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
4078 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01004079 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004080
4081 for_each_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01004082 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4083 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004084
Maarten Lankhorst75704982016-11-01 12:04:10 +01004085 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004086 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004087 const struct skl_ddb_entry *old, *new;
4088
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004089 old = &old_ddb->plane[pipe][plane_id];
4090 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004091
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004092 if (skl_ddb_entry_equal(old, new))
4093 continue;
4094
Maarten Lankhorst75704982016-11-01 12:04:10 +01004095 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
4096 intel_plane->base.base.id,
4097 intel_plane->base.name,
4098 old->start, old->end,
4099 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004100 }
4101 }
4102}
4103
Matt Roper98d39492016-05-12 07:06:03 -07004104static int
4105skl_compute_wm(struct drm_atomic_state *state)
4106{
4107 struct drm_crtc *crtc;
4108 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07004109 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4110 struct skl_wm_values *results = &intel_state->wm_results;
4111 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07004112 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07004113 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07004114
4115 /*
4116 * If this transaction isn't actually touching any CRTC's, don't
4117 * bother with watermark calculation. Note that if we pass this
4118 * test, we're guaranteed to hold at least one CRTC state mutex,
4119 * which means we can safely use values like dev_priv->active_crtcs
4120 * since any racing commits that want to update them would need to
4121 * hold _all_ CRTC state mutexes.
4122 */
4123 for_each_crtc_in_state(state, crtc, cstate, i)
4124 changed = true;
4125 if (!changed)
4126 return 0;
4127
Matt Roper734fa012016-05-12 15:11:40 -07004128 /* Clear all dirty flags */
4129 results->dirty_pipes = 0;
4130
Matt Roper98d39492016-05-12 07:06:03 -07004131 ret = skl_compute_ddb(state);
4132 if (ret)
4133 return ret;
4134
Matt Roper734fa012016-05-12 15:11:40 -07004135 /*
4136 * Calculate WM's for all pipes that are part of this transaction.
4137 * Note that the DDB allocation above may have added more CRTC's that
4138 * weren't otherwise being modified (and set bits in dirty_pipes) if
4139 * pipe allocations had to change.
4140 *
4141 * FIXME: Now that we're doing this in the atomic check phase, we
4142 * should allow skl_update_pipe_wm() to return failure in cases where
4143 * no suitable watermark values can be found.
4144 */
4145 for_each_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07004146 struct intel_crtc_state *intel_cstate =
4147 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004148 const struct skl_pipe_wm *old_pipe_wm =
4149 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07004150
4151 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004152 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
4153 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07004154 if (ret)
4155 return ret;
4156
4157 if (changed)
4158 results->dirty_pipes |= drm_crtc_mask(crtc);
4159
4160 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
4161 /* This pipe's WM's did not change */
4162 continue;
4163
4164 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07004165 }
4166
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004167 skl_print_wm_changes(state);
4168
Matt Roper98d39492016-05-12 07:06:03 -07004169 return 0;
4170}
4171
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004172static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
4173 struct intel_crtc_state *cstate)
4174{
4175 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
4176 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
4177 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004178 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004179 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004180 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004181
4182 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
4183 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004184
4185 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004186
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004187 for_each_plane_id_on_crtc(crtc, plane_id) {
4188 if (plane_id != PLANE_CURSOR)
4189 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
4190 ddb, plane_id);
4191 else
4192 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
4193 ddb);
4194 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004195}
4196
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004197static void skl_initial_wm(struct intel_atomic_state *state,
4198 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004199{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004200 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02004201 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004202 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004203 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04004204 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02004205 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07004206
Ville Syrjälä432081b2016-10-31 22:37:03 +02004207 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004208 return;
4209
Matt Roper734fa012016-05-12 15:11:40 -07004210 mutex_lock(&dev_priv->wm.wm_mutex);
4211
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004212 if (cstate->base.active_changed)
4213 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02004214
4215 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07004216
4217 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004218}
4219
Ville Syrjäläd8905652016-01-14 14:53:35 +02004220static void ilk_compute_wm_config(struct drm_device *dev,
4221 struct intel_wm_config *config)
4222{
4223 struct intel_crtc *crtc;
4224
4225 /* Compute the currently _active_ config */
4226 for_each_intel_crtc(dev, crtc) {
4227 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
4228
4229 if (!wm->pipe_enabled)
4230 continue;
4231
4232 config->sprites_enabled |= wm->sprites_enabled;
4233 config->sprites_scaled |= wm->sprites_scaled;
4234 config->num_pipes_active++;
4235 }
4236}
4237
Matt Ropered4a6a72016-02-23 17:20:13 -08004238static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03004239{
Chris Wilson91c8a322016-07-05 10:40:23 +01004240 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004241 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02004242 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02004243 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02004244 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004245 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07004246
Ville Syrjäläd8905652016-01-14 14:53:35 +02004247 ilk_compute_wm_config(dev, &config);
4248
4249 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
4250 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03004251
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004252 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004253 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02004254 config.num_pipes_active == 1 && config.sprites_enabled) {
4255 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
4256 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004257
Imre Deak820c1982013-12-17 14:46:36 +02004258 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03004259 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004260 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004261 }
4262
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004263 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004264 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004265
Imre Deak820c1982013-12-17 14:46:36 +02004266 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03004267
Imre Deak820c1982013-12-17 14:46:36 +02004268 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03004269}
4270
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004271static void ilk_initial_watermarks(struct intel_atomic_state *state,
4272 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004273{
Matt Ropered4a6a72016-02-23 17:20:13 -08004274 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4275 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004276
Matt Ropered4a6a72016-02-23 17:20:13 -08004277 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07004278 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08004279 ilk_program_watermarks(dev_priv);
4280 mutex_unlock(&dev_priv->wm.wm_mutex);
4281}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004282
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004283static void ilk_optimize_watermarks(struct intel_atomic_state *state,
4284 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08004285{
4286 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4287 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4288
4289 mutex_lock(&dev_priv->wm.wm_mutex);
4290 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07004291 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08004292 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004293 }
Matt Ropered4a6a72016-02-23 17:20:13 -08004294 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004295}
4296
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004297static inline void skl_wm_level_from_reg_val(uint32_t val,
4298 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00004299{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004300 level->plane_en = val & PLANE_WM_EN;
4301 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
4302 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
4303 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00004304}
4305
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004306void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
4307 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00004308{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004309 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00004310 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00004311 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004312 int level, max_level;
4313 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004314 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00004315
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004316 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00004317
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004318 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
4319 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00004320
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004321 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004322 if (plane_id != PLANE_CURSOR)
4323 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004324 else
4325 val = I915_READ(CUR_WM(pipe, level));
4326
4327 skl_wm_level_from_reg_val(val, &wm->wm[level]);
4328 }
4329
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004330 if (plane_id != PLANE_CURSOR)
4331 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004332 else
4333 val = I915_READ(CUR_WM_TRANS(pipe));
4334
4335 skl_wm_level_from_reg_val(val, &wm->trans_wm);
4336 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004337
Matt Roper3ef00282015-03-09 10:19:24 -07004338 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00004339 return;
4340
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004341 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00004342}
4343
4344void skl_wm_get_hw_state(struct drm_device *dev)
4345{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004346 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004347 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00004348 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00004349 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004350 struct intel_crtc *intel_crtc;
4351 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00004352
Damien Lespiaua269c582014-11-04 17:06:49 +00004353 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004354 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4355 intel_crtc = to_intel_crtc(crtc);
4356 cstate = to_intel_crtc_state(crtc->state);
4357
4358 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
4359
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004360 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004361 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004362 }
Matt Ropera1de91e2016-05-12 07:05:57 -07004363
Matt Roper279e99d2016-05-12 07:06:02 -07004364 if (dev_priv->active_crtcs) {
4365 /* Fully recompute DDB on first atomic commit */
4366 dev_priv->wm.distrust_bios_wm = true;
4367 } else {
4368 /* Easy/common case; just sanitize DDB now if everything off */
4369 memset(ddb, 0, sizeof(*ddb));
4370 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004371}
4372
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004373static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4374{
4375 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004376 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004377 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004378 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07004379 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004380 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004381 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004382 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004383 [PIPE_A] = WM0_PIPEA_ILK,
4384 [PIPE_B] = WM0_PIPEB_ILK,
4385 [PIPE_C] = WM0_PIPEC_IVB,
4386 };
4387
4388 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004389 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02004390 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004391
Ville Syrjälä15606532016-05-13 17:55:17 +03004392 memset(active, 0, sizeof(*active));
4393
Matt Roper3ef00282015-03-09 10:19:24 -07004394 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02004395
4396 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004397 u32 tmp = hw->wm_pipe[pipe];
4398
4399 /*
4400 * For active pipes LP0 watermark is marked as
4401 * enabled, and LP1+ watermaks as disabled since
4402 * we can't really reverse compute them in case
4403 * multiple pipes are active.
4404 */
4405 active->wm[0].enable = true;
4406 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
4407 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
4408 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
4409 active->linetime = hw->wm_linetime[pipe];
4410 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004411 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004412
4413 /*
4414 * For inactive pipes, all watermark levels
4415 * should be marked as enabled but zeroed,
4416 * which is what we'd compute them to.
4417 */
4418 for (level = 0; level <= max_level; level++)
4419 active->wm[level].enable = true;
4420 }
Matt Roper4e0963c2015-09-24 15:53:15 -07004421
4422 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004423}
4424
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004425#define _FW_WM(value, plane) \
4426 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
4427#define _FW_WM_VLV(value, plane) \
4428 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
4429
4430static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4431 struct vlv_wm_values *wm)
4432{
4433 enum pipe pipe;
4434 uint32_t tmp;
4435
4436 for_each_pipe(dev_priv, pipe) {
4437 tmp = I915_READ(VLV_DDL(pipe));
4438
Ville Syrjälä1b313892016-11-28 19:37:08 +02004439 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004440 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004441 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004442 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004443 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004444 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004445 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004446 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4447 }
4448
4449 tmp = I915_READ(DSPFW1);
4450 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004451 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
4452 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
4453 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004454
4455 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004456 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
4457 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
4458 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004459
4460 tmp = I915_READ(DSPFW3);
4461 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4462
4463 if (IS_CHERRYVIEW(dev_priv)) {
4464 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004465 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4466 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004467
4468 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004469 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
4470 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004471
4472 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004473 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
4474 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004475
4476 tmp = I915_READ(DSPHOWM);
4477 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004478 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4479 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4480 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
4481 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4482 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4483 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4484 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4485 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4486 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004487 } else {
4488 tmp = I915_READ(DSPFW7);
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(DSPHOWM);
4493 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004494 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4495 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4496 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4497 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4498 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4499 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004500 }
4501}
4502
4503#undef _FW_WM
4504#undef _FW_WM_VLV
4505
4506void vlv_wm_get_hw_state(struct drm_device *dev)
4507{
4508 struct drm_i915_private *dev_priv = to_i915(dev);
4509 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02004510 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004511 enum pipe pipe;
4512 u32 val;
4513
4514 vlv_read_wm_values(dev_priv, wm);
4515
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02004516 for_each_intel_crtc(dev, crtc)
Ville Syrjälä814e7f02017-03-02 19:14:55 +02004517 vlv_get_fifo_size(to_intel_crtc_state(crtc->base.state));
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004518
4519 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4520 wm->level = VLV_WM_LEVEL_PM2;
4521
4522 if (IS_CHERRYVIEW(dev_priv)) {
4523 mutex_lock(&dev_priv->rps.hw_lock);
4524
4525 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4526 if (val & DSP_MAXFIFO_PM5_ENABLE)
4527 wm->level = VLV_WM_LEVEL_PM5;
4528
Ville Syrjälä58590c12015-09-08 21:05:12 +03004529 /*
4530 * If DDR DVFS is disabled in the BIOS, Punit
4531 * will never ack the request. So if that happens
4532 * assume we don't have to enable/disable DDR DVFS
4533 * dynamically. To test that just set the REQ_ACK
4534 * bit to poke the Punit, but don't change the
4535 * HIGH/LOW bits so that we don't actually change
4536 * the current state.
4537 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004538 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004539 val |= FORCE_DDR_FREQ_REQ_ACK;
4540 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4541
4542 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4543 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4544 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4545 "assuming DDR DVFS is disabled\n");
4546 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4547 } else {
4548 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4549 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4550 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4551 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004552
4553 mutex_unlock(&dev_priv->rps.hw_lock);
4554 }
4555
4556 for_each_pipe(dev_priv, pipe)
4557 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 +02004558 pipe_name(pipe),
4559 wm->pipe[pipe].plane[PLANE_PRIMARY],
4560 wm->pipe[pipe].plane[PLANE_CURSOR],
4561 wm->pipe[pipe].plane[PLANE_SPRITE0],
4562 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004563
4564 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4565 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4566}
4567
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004568void ilk_wm_get_hw_state(struct drm_device *dev)
4569{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004570 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004571 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004572 struct drm_crtc *crtc;
4573
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004574 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004575 ilk_pipe_wm_get_hw_state(crtc);
4576
4577 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4578 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4579 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4580
4581 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004582 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004583 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4584 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4585 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004586
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004587 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004588 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4589 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004590 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004591 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4592 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004593
4594 hw->enable_fbc_wm =
4595 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4596}
4597
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004598/**
4599 * intel_update_watermarks - update FIFO watermark values based on current modes
4600 *
4601 * Calculate watermark values for the various WM regs based on current mode
4602 * and plane configuration.
4603 *
4604 * There are several cases to deal with here:
4605 * - normal (i.e. non-self-refresh)
4606 * - self-refresh (SR) mode
4607 * - lines are large relative to FIFO size (buffer can hold up to 2)
4608 * - lines are small relative to FIFO size (buffer can hold more than 2
4609 * lines), so need to account for TLB latency
4610 *
4611 * The normal calculation is:
4612 * watermark = dotclock * bytes per pixel * latency
4613 * where latency is platform & configuration dependent (we assume pessimal
4614 * values here).
4615 *
4616 * The SR calculation is:
4617 * watermark = (trunc(latency/line time)+1) * surface width *
4618 * bytes per pixel
4619 * where
4620 * line time = htotal / dotclock
4621 * surface width = hdisplay for normal plane and 64 for cursor
4622 * and latency is assumed to be high, as above.
4623 *
4624 * The final value programmed to the register should always be rounded up,
4625 * and include an extra 2 entries to account for clock crossings.
4626 *
4627 * We don't use the sprite, so we can ignore that. And on Crestline we have
4628 * to set the non-SR watermarks to 8.
4629 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02004630void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004631{
Ville Syrjälä432081b2016-10-31 22:37:03 +02004632 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004633
4634 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004635 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004636}
4637
Jani Nikulae2828912016-01-18 09:19:47 +02004638/*
Daniel Vetter92703882012-08-09 16:46:01 +02004639 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004640 */
4641DEFINE_SPINLOCK(mchdev_lock);
4642
4643/* Global for IPS driver to get at the current i915 device. Protected by
4644 * mchdev_lock. */
4645static struct drm_i915_private *i915_mch_dev;
4646
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004647bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004648{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004649 u16 rgvswctl;
4650
Chris Wilson67520412017-03-02 13:28:01 +00004651 lockdep_assert_held(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02004652
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004653 rgvswctl = I915_READ16(MEMSWCTL);
4654 if (rgvswctl & MEMCTL_CMD_STS) {
4655 DRM_DEBUG("gpu busy, RCS change rejected\n");
4656 return false; /* still busy with another command */
4657 }
4658
4659 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4660 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4661 I915_WRITE16(MEMSWCTL, rgvswctl);
4662 POSTING_READ16(MEMSWCTL);
4663
4664 rgvswctl |= MEMCTL_CMD_STS;
4665 I915_WRITE16(MEMSWCTL, rgvswctl);
4666
4667 return true;
4668}
4669
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004670static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004671{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004672 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004673 u8 fmax, fmin, fstart, vstart;
4674
Daniel Vetter92703882012-08-09 16:46:01 +02004675 spin_lock_irq(&mchdev_lock);
4676
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004677 rgvmodectl = I915_READ(MEMMODECTL);
4678
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004679 /* Enable temp reporting */
4680 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4681 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4682
4683 /* 100ms RC evaluation intervals */
4684 I915_WRITE(RCUPEI, 100000);
4685 I915_WRITE(RCDNEI, 100000);
4686
4687 /* Set max/min thresholds to 90ms and 80ms respectively */
4688 I915_WRITE(RCBMAXAVG, 90000);
4689 I915_WRITE(RCBMINAVG, 80000);
4690
4691 I915_WRITE(MEMIHYST, 1);
4692
4693 /* Set up min, max, and cur for interrupt handling */
4694 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4695 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4696 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4697 MEMMODE_FSTART_SHIFT;
4698
Ville Syrjälä616847e2015-09-18 20:03:19 +03004699 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004700 PXVFREQ_PX_SHIFT;
4701
Daniel Vetter20e4d402012-08-08 23:35:39 +02004702 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4703 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004704
Daniel Vetter20e4d402012-08-08 23:35:39 +02004705 dev_priv->ips.max_delay = fstart;
4706 dev_priv->ips.min_delay = fmin;
4707 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004708
4709 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4710 fmax, fmin, fstart);
4711
4712 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4713
4714 /*
4715 * Interrupts will be enabled in ironlake_irq_postinstall
4716 */
4717
4718 I915_WRITE(VIDSTART, vstart);
4719 POSTING_READ(VIDSTART);
4720
4721 rgvmodectl |= MEMMODE_SWMODE_EN;
4722 I915_WRITE(MEMMODECTL, rgvmodectl);
4723
Daniel Vetter92703882012-08-09 16:46:01 +02004724 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004725 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004726 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004727
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004728 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004729
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004730 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4731 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004732 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004733 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004734 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004735
4736 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004737}
4738
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004739static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004740{
Daniel Vetter92703882012-08-09 16:46:01 +02004741 u16 rgvswctl;
4742
4743 spin_lock_irq(&mchdev_lock);
4744
4745 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004746
4747 /* Ack interrupts, disable EFC interrupt */
4748 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4749 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4750 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4751 I915_WRITE(DEIIR, DE_PCU_EVENT);
4752 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4753
4754 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004755 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004756 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004757 rgvswctl |= MEMCTL_CMD_STS;
4758 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004759 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004760
Daniel Vetter92703882012-08-09 16:46:01 +02004761 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004762}
4763
Daniel Vetteracbe9472012-07-26 11:50:05 +02004764/* There's a funny hw issue where the hw returns all 0 when reading from
4765 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4766 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4767 * all limits and the gpu stuck at whatever frequency it is at atm).
4768 */
Akash Goel74ef1172015-03-06 11:07:19 +05304769static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004770{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004771 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004772
Daniel Vetter20b46e52012-07-26 11:16:14 +02004773 /* Only set the down limit when we've reached the lowest level to avoid
4774 * getting more interrupts, otherwise leave this clear. This prevents a
4775 * race in the hw when coming out of rc6: There's a tiny window where
4776 * the hw runs at the minimal clock before selecting the desired
4777 * frequency, if the down threshold expires in that window we will not
4778 * receive a down interrupt. */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03004779 if (IS_GEN9(dev_priv)) {
Akash Goel74ef1172015-03-06 11:07:19 +05304780 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4781 if (val <= dev_priv->rps.min_freq_softlimit)
4782 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4783 } else {
4784 limits = dev_priv->rps.max_freq_softlimit << 24;
4785 if (val <= dev_priv->rps.min_freq_softlimit)
4786 limits |= dev_priv->rps.min_freq_softlimit << 16;
4787 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004788
4789 return limits;
4790}
4791
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004792static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4793{
4794 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304795 u32 threshold_up = 0, threshold_down = 0; /* in % */
4796 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004797
4798 new_power = dev_priv->rps.power;
4799 switch (dev_priv->rps.power) {
4800 case LOW_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004801 if (val > dev_priv->rps.efficient_freq + 1 &&
4802 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004803 new_power = BETWEEN;
4804 break;
4805
4806 case BETWEEN:
Chris Wilsona72b5622016-07-02 15:35:59 +01004807 if (val <= dev_priv->rps.efficient_freq &&
4808 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004809 new_power = LOW_POWER;
Chris Wilsona72b5622016-07-02 15:35:59 +01004810 else if (val >= dev_priv->rps.rp0_freq &&
4811 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004812 new_power = HIGH_POWER;
4813 break;
4814
4815 case HIGH_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004816 if (val < (dev_priv->rps.rp1_freq + dev_priv->rps.rp0_freq) >> 1 &&
4817 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004818 new_power = BETWEEN;
4819 break;
4820 }
4821 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004822 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004823 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004824 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004825 new_power = HIGH_POWER;
4826 if (new_power == dev_priv->rps.power)
4827 return;
4828
4829 /* Note the units here are not exactly 1us, but 1280ns. */
4830 switch (new_power) {
4831 case LOW_POWER:
4832 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304833 ei_up = 16000;
4834 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004835
4836 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304837 ei_down = 32000;
4838 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004839 break;
4840
4841 case BETWEEN:
4842 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304843 ei_up = 13000;
4844 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004845
4846 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304847 ei_down = 32000;
4848 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004849 break;
4850
4851 case HIGH_POWER:
4852 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304853 ei_up = 10000;
4854 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004855
4856 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304857 ei_down = 32000;
4858 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004859 break;
4860 }
4861
Mika Kuoppala6067a272017-02-15 15:52:59 +02004862 /* When byt can survive without system hang with dynamic
4863 * sw freq adjustments, this restriction can be lifted.
4864 */
4865 if (IS_VALLEYVIEW(dev_priv))
4866 goto skip_hw_write;
4867
Akash Goel8a586432015-03-06 11:07:18 +05304868 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004869 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05304870 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004871 GT_INTERVAL_FROM_US(dev_priv,
4872 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304873
4874 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004875 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05304876 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004877 GT_INTERVAL_FROM_US(dev_priv,
4878 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304879
Chris Wilsona72b5622016-07-02 15:35:59 +01004880 I915_WRITE(GEN6_RP_CONTROL,
4881 GEN6_RP_MEDIA_TURBO |
4882 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4883 GEN6_RP_MEDIA_IS_GFX |
4884 GEN6_RP_ENABLE |
4885 GEN6_RP_UP_BUSY_AVG |
4886 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05304887
Mika Kuoppala6067a272017-02-15 15:52:59 +02004888skip_hw_write:
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004889 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004890 dev_priv->rps.up_threshold = threshold_up;
4891 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004892 dev_priv->rps.last_adj = 0;
4893}
4894
Chris Wilson2876ce72014-03-28 08:03:34 +00004895static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4896{
4897 u32 mask = 0;
4898
4899 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004900 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004901 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004902 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004903
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004904 mask &= dev_priv->pm_rps_events;
4905
Imre Deak59d02a12014-12-19 19:33:26 +02004906 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004907}
4908
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004909/* gen6_set_rps is called to update the frequency request, but should also be
4910 * called when the range (min_delay and max_delay) is modified so that we can
4911 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004912static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004913{
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004914 /* min/max delay may still have been modified so be sure to
4915 * write the limits value.
4916 */
4917 if (val != dev_priv->rps.cur_freq) {
4918 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004919
Chris Wilsondc979972016-05-10 14:10:04 +01004920 if (IS_GEN9(dev_priv))
Akash Goel57041952015-03-06 11:07:17 +05304921 I915_WRITE(GEN6_RPNSWREQ,
4922 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01004923 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004924 I915_WRITE(GEN6_RPNSWREQ,
4925 HSW_FREQUENCY(val));
4926 else
4927 I915_WRITE(GEN6_RPNSWREQ,
4928 GEN6_FREQUENCY(val) |
4929 GEN6_OFFSET(0) |
4930 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004931 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004932
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004933 /* Make sure we continue to get interrupts
4934 * until we hit the minimum or maximum frequencies.
4935 */
Akash Goel74ef1172015-03-06 11:07:19 +05304936 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004937 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004938
Ben Widawskyb39fb292014-03-19 18:31:11 -07004939 dev_priv->rps.cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02004940 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004941
4942 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004943}
4944
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004945static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004946{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004947 int err;
4948
Chris Wilsondc979972016-05-10 14:10:04 +01004949 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004950 "Odd GPU freq value\n"))
4951 val &= ~1;
4952
Deepak Scd25dd52015-07-10 18:31:40 +05304953 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4954
Chris Wilson8fb55192015-04-07 16:20:28 +01004955 if (val != dev_priv->rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004956 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
4957 if (err)
4958 return err;
4959
Chris Wilsondb4c5e02017-02-10 15:03:46 +00004960 gen6_set_rps_thresholds(dev_priv, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004961 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004962
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004963 dev_priv->rps.cur_freq = val;
4964 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004965
4966 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004967}
4968
Deepak Sa7f6e232015-05-09 18:04:44 +05304969/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304970 *
4971 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304972 * 1. Forcewake Media well.
4973 * 2. Request idle freq.
4974 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304975*/
4976static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4977{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004978 u32 val = dev_priv->rps.idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004979 int err;
Deepak S5549d252014-06-28 11:26:11 +05304980
Chris Wilsonaed242f2015-03-18 09:48:21 +00004981 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304982 return;
4983
Chris Wilsonc9efef72017-01-02 15:28:45 +00004984 /* The punit delays the write of the frequency and voltage until it
4985 * determines the GPU is awake. During normal usage we don't want to
4986 * waste power changing the frequency if the GPU is sleeping (rc6).
4987 * However, the GPU and driver is now idle and we do not want to delay
4988 * switching to minimum voltage (reducing power whilst idle) as we do
4989 * not expect to be woken in the near future and so must flush the
4990 * change by waking the device.
4991 *
4992 * We choose to take the media powerwell (either would do to trick the
4993 * punit into committing the voltage change) as that takes a lot less
4994 * power than the render powerwell.
4995 */
Deepak Sa7f6e232015-05-09 18:04:44 +05304996 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004997 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05304998 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004999
5000 if (err)
5001 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05305002}
5003
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005004void gen6_rps_busy(struct drm_i915_private *dev_priv)
5005{
5006 mutex_lock(&dev_priv->rps.hw_lock);
5007 if (dev_priv->rps.enabled) {
Chris Wilsonbd648182017-02-10 15:03:48 +00005008 u8 freq;
5009
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005010 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
5011 gen6_rps_reset_ei(dev_priv);
5012 I915_WRITE(GEN6_PMINTRMSK,
5013 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02005014
Chris Wilsonc33d2472016-07-04 08:08:36 +01005015 gen6_enable_rps_interrupts(dev_priv);
5016
Chris Wilsonbd648182017-02-10 15:03:48 +00005017 /* Use the user's desired frequency as a guide, but for better
5018 * performance, jump directly to RPe as our starting frequency.
5019 */
5020 freq = max(dev_priv->rps.cur_freq,
5021 dev_priv->rps.efficient_freq);
5022
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005023 if (intel_set_rps(dev_priv,
Chris Wilsonbd648182017-02-10 15:03:48 +00005024 clamp(freq,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005025 dev_priv->rps.min_freq_softlimit,
5026 dev_priv->rps.max_freq_softlimit)))
5027 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005028 }
5029 mutex_unlock(&dev_priv->rps.hw_lock);
5030}
5031
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005032void gen6_rps_idle(struct drm_i915_private *dev_priv)
5033{
Chris Wilsonc33d2472016-07-04 08:08:36 +01005034 /* Flush our bottom-half so that it does not race with us
5035 * setting the idle frequency and so that it is bounded by
5036 * our rpm wakeref. And then disable the interrupts to stop any
5037 * futher RPS reclocking whilst we are asleep.
5038 */
5039 gen6_disable_rps_interrupts(dev_priv);
5040
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005041 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005042 if (dev_priv->rps.enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01005043 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05305044 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005045 else
Chris Wilsondc979972016-05-10 14:10:04 +01005046 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005047 dev_priv->rps.last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03005048 I915_WRITE(GEN6_PMINTRMSK,
5049 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01005050 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005051 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005052
Chris Wilson8d3afd72015-05-21 21:01:47 +01005053 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005054 while (!list_empty(&dev_priv->rps.clients))
5055 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005056 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005057}
5058
Chris Wilson1854d5c2015-04-07 16:20:32 +01005059void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01005060 struct intel_rps_client *rps,
5061 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005062{
Chris Wilson8d3afd72015-05-21 21:01:47 +01005063 /* This is intentionally racy! We peek at the state here, then
5064 * validate inside the RPS worker.
5065 */
Chris Wilson67d97da2016-07-04 08:08:31 +01005066 if (!(dev_priv->gt.awake &&
Chris Wilson8d3afd72015-05-21 21:01:47 +01005067 dev_priv->rps.enabled &&
Chris Wilson29ecd78d2016-07-13 09:10:35 +01005068 dev_priv->rps.cur_freq < dev_priv->rps.boost_freq))
Chris Wilson8d3afd72015-05-21 21:01:47 +01005069 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005070
Chris Wilsone61b9952015-04-27 13:41:24 +01005071 /* Force a RPS boost (and don't count it against the client) if
5072 * the GPU is severely congested.
5073 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01005074 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01005075 rps = NULL;
5076
Chris Wilson8d3afd72015-05-21 21:01:47 +01005077 spin_lock(&dev_priv->rps.client_lock);
5078 if (rps == NULL || list_empty(&rps->link)) {
5079 spin_lock_irq(&dev_priv->irq_lock);
5080 if (dev_priv->rps.interrupts_enabled) {
5081 dev_priv->rps.client_boost = true;
Chris Wilsonc33d2472016-07-04 08:08:36 +01005082 schedule_work(&dev_priv->rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005083 }
5084 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005085
Chris Wilson2e1b8732015-04-27 13:41:22 +01005086 if (rps != NULL) {
5087 list_add(&rps->link, &dev_priv->rps.clients);
5088 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01005089 } else
5090 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01005091 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005092 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005093}
5094
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005095int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005096{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005097 int err;
5098
Chris Wilsoncfd1c482017-02-20 09:47:07 +00005099 lockdep_assert_held(&dev_priv->rps.hw_lock);
5100 GEM_BUG_ON(val > dev_priv->rps.max_freq);
5101 GEM_BUG_ON(val < dev_priv->rps.min_freq);
5102
Chris Wilson76e4e4b2017-02-20 09:47:08 +00005103 if (!dev_priv->rps.enabled) {
5104 dev_priv->rps.cur_freq = val;
5105 return 0;
5106 }
5107
Chris Wilsondc979972016-05-10 14:10:04 +01005108 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005109 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005110 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005111 err = gen6_set_rps(dev_priv, val);
5112
5113 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005114}
5115
Chris Wilsondc979972016-05-10 14:10:04 +01005116static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005117{
Zhe Wang20e49362014-11-04 17:07:05 +00005118 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005119 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005120}
5121
Chris Wilsondc979972016-05-10 14:10:04 +01005122static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05305123{
Akash Goel2030d682016-04-23 00:05:45 +05305124 I915_WRITE(GEN6_RP_CONTROL, 0);
5125}
5126
Chris Wilsondc979972016-05-10 14:10:04 +01005127static void gen6_disable_rps(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005128{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005129 I915_WRITE(GEN6_RC_CONTROL, 0);
5130 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05305131 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005132}
5133
Chris Wilsondc979972016-05-10 14:10:04 +01005134static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305135{
Deepak S38807742014-05-23 21:00:15 +05305136 I915_WRITE(GEN6_RC_CONTROL, 0);
5137}
5138
Chris Wilsondc979972016-05-10 14:10:04 +01005139static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005140{
Deepak S98a2e5f2014-08-18 10:35:27 -07005141 /* we're doing forcewake before Disabling RC6,
5142 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005143 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07005144
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005145 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005146
Mika Kuoppala59bad942015-01-16 11:34:40 +02005147 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005148}
5149
Chris Wilsondc979972016-05-10 14:10:04 +01005150static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07005151{
Chris Wilsondc979972016-05-10 14:10:04 +01005152 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03005153 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
5154 mode = GEN6_RC_CTL_RC6_ENABLE;
5155 else
5156 mode = 0;
5157 }
Chris Wilsondc979972016-05-10 14:10:04 +01005158 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03005159 DRM_DEBUG_DRIVER("Enabling RC6 states: "
5160 "RC6 %s RC6p %s RC6pp %s\n",
5161 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
5162 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
5163 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07005164
5165 else
Imre Deakb99d49c2016-06-29 19:13:54 +03005166 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
5167 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07005168}
5169
Chris Wilsondc979972016-05-10 14:10:04 +01005170static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305171{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005172 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305173 bool enable_rc6 = true;
5174 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03005175 u32 rc_ctl;
5176 int rc_sw_target;
5177
5178 rc_ctl = I915_READ(GEN6_RC_CONTROL);
5179 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
5180 RC_SW_TARGET_STATE_SHIFT;
5181 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
5182 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
5183 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
5184 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
5185 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305186
5187 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005188 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305189 enable_rc6 = false;
5190 }
5191
5192 /*
5193 * The exact context size is not known for BXT, so assume a page size
5194 * for this check.
5195 */
5196 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005197 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
5198 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
5199 ggtt->stolen_reserved_size))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005200 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305201 enable_rc6 = false;
5202 }
5203
5204 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
5205 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
5206 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
5207 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005208 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305209 enable_rc6 = false;
5210 }
5211
Imre Deakfc619842016-06-29 19:13:55 +03005212 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
5213 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
5214 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
5215 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
5216 enable_rc6 = false;
5217 }
5218
5219 if (!I915_READ(GEN6_GFXPAUSE)) {
5220 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
5221 enable_rc6 = false;
5222 }
5223
5224 if (!I915_READ(GEN8_MISC_CTRL0)) {
5225 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305226 enable_rc6 = false;
5227 }
5228
5229 return enable_rc6;
5230}
5231
Chris Wilsondc979972016-05-10 14:10:04 +01005232int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005233{
Daniel Vettere7d66d82015-06-15 23:23:54 +02005234 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01005235 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03005236 return 0;
5237
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305238 if (!enable_rc6)
5239 return 0;
5240
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005241 if (IS_GEN9_LP(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305242 DRM_INFO("RC6 disabled by BIOS\n");
5243 return 0;
5244 }
5245
Daniel Vetter456470e2012-08-08 23:35:40 +02005246 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03005247 if (enable_rc6 >= 0) {
5248 int mask;
5249
Chris Wilsondc979972016-05-10 14:10:04 +01005250 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03005251 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
5252 INTEL_RC6pp_ENABLE;
5253 else
5254 mask = INTEL_RC6_ENABLE;
5255
5256 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03005257 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
5258 "(requested %d, valid %d)\n",
5259 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03005260
5261 return enable_rc6 & mask;
5262 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005263
Chris Wilsondc979972016-05-10 14:10:04 +01005264 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08005265 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08005266
5267 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005268}
5269
Chris Wilsondc979972016-05-10 14:10:04 +01005270static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03005271{
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005272 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005273
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005274 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005275 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005276 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005277 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
5278 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5279 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
5280 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005281 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005282 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
5283 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5284 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
5285 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005286 /* hw_max = RP0 until we check for overclocking */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005287 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005288
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005289 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005290 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005291 IS_GEN9_BC(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005292 u32 ddcc_status = 0;
5293
5294 if (sandybridge_pcode_read(dev_priv,
5295 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
5296 &ddcc_status) == 0)
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005297 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08005298 clamp_t(u8,
5299 ((ddcc_status >> 8) & 0xff),
5300 dev_priv->rps.min_freq,
5301 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005302 }
5303
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005304 if (IS_GEN9_BC(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05305305 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01005306 * the natural hardware unit for SKL
5307 */
Akash Goelc5e06882015-06-29 14:50:19 +05305308 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
5309 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
5310 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
5311 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
5312 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
5313 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005314}
5315
Chris Wilson3a45b052016-07-13 09:10:32 +01005316static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005317 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01005318{
5319 u8 freq = dev_priv->rps.cur_freq;
5320
5321 /* force a reset */
5322 dev_priv->rps.power = -1;
5323 dev_priv->rps.cur_freq = -1;
5324
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005325 if (set(dev_priv, freq))
5326 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01005327}
5328
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005329/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01005330static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005331{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005332 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
5333
Akash Goel0beb0592015-03-06 11:07:20 +05305334 /* Program defaults and thresholds for RPS*/
5335 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5336 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005337
Akash Goel0beb0592015-03-06 11:07:20 +05305338 /* 1 second timeout*/
5339 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
5340 GT_INTERVAL_FROM_US(dev_priv, 1000000));
5341
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005342 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005343
Akash Goel0beb0592015-03-06 11:07:20 +05305344 /* Leaning on the below call to gen6_set_rps to program/setup the
5345 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
5346 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01005347 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005348
5349 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5350}
5351
Chris Wilsondc979972016-05-10 14:10:04 +01005352static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005353{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005354 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305355 enum intel_engine_id id;
Zhe Wang20e49362014-11-04 17:07:05 +00005356 uint32_t rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00005357
5358 /* 1a: Software RC state - RC0 */
5359 I915_WRITE(GEN6_RC_STATE, 0);
5360
5361 /* 1b: Get forcewake during program sequence. Although the driver
5362 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005363 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005364
5365 /* 2a: Disable RC states. */
5366 I915_WRITE(GEN6_RC_CONTROL, 0);
5367
5368 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305369
5370 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Chris Wilsondc979972016-05-10 14:10:04 +01005371 if (IS_SKYLAKE(dev_priv))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305372 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
5373 else
5374 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00005375 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5376 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305377 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005378 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305379
Dave Gordon1a3d1892016-05-13 15:36:30 +01005380 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305381 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
5382
Zhe Wang20e49362014-11-04 17:07:05 +00005383 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005384
Zhe Wang38c23522015-01-20 12:23:04 +00005385 /* 2c: Program Coarse Power Gating Policies. */
5386 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
5387 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
5388
Zhe Wang20e49362014-11-04 17:07:05 +00005389 /* 3a: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005390 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00005391 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02005392 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Chris Wilson1c044f92017-01-25 17:26:01 +00005393 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
5394 I915_WRITE(GEN6_RC_CONTROL,
5395 GEN6_RC_CTL_HW_ENABLE | GEN6_RC_CTL_EI_MODE(1) | rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00005396
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305397 /*
5398 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305399 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305400 */
Chris Wilsondc979972016-05-10 14:10:04 +01005401 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305402 I915_WRITE(GEN9_PG_ENABLE, 0);
5403 else
5404 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
5405 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005406
Mika Kuoppala59bad942015-01-16 11:34:40 +02005407 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005408}
5409
Chris Wilsondc979972016-05-10 14:10:04 +01005410static void gen8_enable_rps(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005411{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005412 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305413 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005414 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005415
5416 /* 1a: Software RC state - RC0 */
5417 I915_WRITE(GEN6_RC_STATE, 0);
5418
5419 /* 1c & 1d: Get forcewake during program sequence. Although the driver
5420 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005421 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005422
5423 /* 2a: Disable RC states. */
5424 I915_WRITE(GEN6_RC_CONTROL, 0);
5425
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005426 /* 2b: Program RC6 thresholds.*/
5427 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5428 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5429 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305430 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005431 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005432 I915_WRITE(GEN6_RC_SLEEP, 0);
Chris Wilsondc979972016-05-10 14:10:04 +01005433 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005434 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
5435 else
5436 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005437
5438 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005439 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005440 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01005441 intel_print_rc6_info(dev_priv, rc6_mask);
5442 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005443 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5444 GEN7_RC_CTL_TO_MODE |
5445 rc6_mask);
5446 else
5447 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5448 GEN6_RC_CTL_EI_MODE(1) |
5449 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005450
5451 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07005452 I915_WRITE(GEN6_RPNSWREQ,
5453 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
5454 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5455 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02005456 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
5457 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005458
Daniel Vetter7526ed72014-09-29 15:07:19 +02005459 /* Docs recommend 900MHz, and 300 MHz respectively */
5460 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
5461 dev_priv->rps.max_freq_softlimit << 24 |
5462 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005463
Daniel Vetter7526ed72014-09-29 15:07:19 +02005464 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
5465 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
5466 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
5467 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005468
Daniel Vetter7526ed72014-09-29 15:07:19 +02005469 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005470
5471 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02005472 I915_WRITE(GEN6_RP_CONTROL,
5473 GEN6_RP_MEDIA_TURBO |
5474 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5475 GEN6_RP_MEDIA_IS_GFX |
5476 GEN6_RP_ENABLE |
5477 GEN6_RP_UP_BUSY_AVG |
5478 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005479
Daniel Vetter7526ed72014-09-29 15:07:19 +02005480 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005481
Chris Wilson3a45b052016-07-13 09:10:32 +01005482 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005483
Mika Kuoppala59bad942015-01-16 11:34:40 +02005484 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005485}
5486
Chris Wilsondc979972016-05-10 14:10:04 +01005487static void gen6_enable_rps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005488{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005489 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305490 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01005491 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005492 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005493 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005494 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005495
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005496 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005497
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005498 /* Here begins a magic sequence of register writes to enable
5499 * auto-downclocking.
5500 *
5501 * Perhaps there might be some value in exposing these to
5502 * userspace...
5503 */
5504 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005505
5506 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005507 gtfifodbg = I915_READ(GTFIFODBG);
5508 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005509 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
5510 I915_WRITE(GTFIFODBG, gtfifodbg);
5511 }
5512
Mika Kuoppala59bad942015-01-16 11:34:40 +02005513 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005514
5515 /* disable the counters and set deterministic thresholds */
5516 I915_WRITE(GEN6_RC_CONTROL, 0);
5517
5518 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5519 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5520 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5521 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5522 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5523
Akash Goel3b3f1652016-10-13 22:44:48 +05305524 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005525 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005526
5527 I915_WRITE(GEN6_RC_SLEEP, 0);
5528 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01005529 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005530 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5531 else
5532 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005533 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005534 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5535
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005536 /* Check if we are enabling RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005537 rc6_mode = intel_enable_rc6();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005538 if (rc6_mode & INTEL_RC6_ENABLE)
5539 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5540
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005541 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01005542 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005543 if (rc6_mode & INTEL_RC6p_ENABLE)
5544 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005545
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005546 if (rc6_mode & INTEL_RC6pp_ENABLE)
5547 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5548 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005549
Chris Wilsondc979972016-05-10 14:10:04 +01005550 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005551
5552 I915_WRITE(GEN6_RC_CONTROL,
5553 rc6_mask |
5554 GEN6_RC_CTL_EI_MODE(1) |
5555 GEN6_RC_CTL_HW_ENABLE);
5556
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005557 /* Power down if completely idle for over 50ms */
5558 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005559 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005560
Chris Wilson3a45b052016-07-13 09:10:32 +01005561 reset_rps(dev_priv, gen6_set_rps);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005562
Ben Widawsky31643d52012-09-26 10:34:01 -07005563 rc6vids = 0;
5564 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01005565 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005566 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01005567 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005568 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5569 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5570 rc6vids &= 0xffff00;
5571 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5572 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5573 if (ret)
5574 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5575 }
5576
Mika Kuoppala59bad942015-01-16 11:34:40 +02005577 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005578}
5579
Chris Wilsonfb7404e2016-07-13 09:10:38 +01005580static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005581{
5582 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005583 unsigned int gpu_freq;
5584 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305585 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005586 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005587 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005588
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005589 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005590
Ben Widawskyeda79642013-10-07 17:15:48 -03005591 policy = cpufreq_cpu_get(0);
5592 if (policy) {
5593 max_ia_freq = policy->cpuinfo.max_freq;
5594 cpufreq_cpu_put(policy);
5595 } else {
5596 /*
5597 * Default to measured freq if none found, PCU will ensure we
5598 * don't go over
5599 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005600 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005601 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005602
5603 /* Convert from kHz to MHz */
5604 max_ia_freq /= 1000;
5605
Ben Widawsky153b4b952013-10-22 22:05:09 -07005606 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005607 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5608 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005609
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005610 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305611 /* Convert GT frequency to 50 HZ units */
5612 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5613 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5614 } else {
5615 min_gpu_freq = dev_priv->rps.min_freq;
5616 max_gpu_freq = dev_priv->rps.max_freq;
5617 }
5618
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005619 /*
5620 * For each potential GPU frequency, load a ring frequency we'd like
5621 * to use for memory access. We do this by specifying the IA frequency
5622 * the PCU should use as a reference to determine the ring frequency.
5623 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305624 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5625 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005626 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005627
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005628 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305629 /*
5630 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5631 * No floor required for ring frequency on SKL.
5632 */
5633 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005634 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005635 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5636 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01005637 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005638 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005639 ring_freq = max(min_ring_freq, ring_freq);
5640 /* leave ia_freq as the default, chosen by cpufreq */
5641 } else {
5642 /* On older processors, there is no separate ring
5643 * clock domain, so in order to boost the bandwidth
5644 * of the ring, we need to upclock the CPU (ia_freq).
5645 *
5646 * For GPU frequencies less than 750MHz,
5647 * just use the lowest ring freq.
5648 */
5649 if (gpu_freq < min_freq)
5650 ia_freq = 800;
5651 else
5652 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5653 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5654 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005655
Ben Widawsky42c05262012-09-26 10:34:00 -07005656 sandybridge_pcode_write(dev_priv,
5657 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005658 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5659 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5660 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005661 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005662}
5663
Ville Syrjälä03af2042014-06-28 02:03:53 +03005664static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305665{
5666 u32 val, rp0;
5667
Jani Nikula5b5929c2015-10-07 11:17:46 +03005668 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305669
Imre Deak43b67992016-08-31 19:13:02 +03005670 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03005671 case 8:
5672 /* (2 * 4) config */
5673 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5674 break;
5675 case 12:
5676 /* (2 * 6) config */
5677 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5678 break;
5679 case 16:
5680 /* (2 * 8) config */
5681 default:
5682 /* Setting (2 * 8) Min RP0 for any other combination */
5683 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5684 break;
Deepak S095acd52015-01-17 11:05:59 +05305685 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005686
5687 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5688
Deepak S2b6b3a02014-05-27 15:59:30 +05305689 return rp0;
5690}
5691
5692static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5693{
5694 u32 val, rpe;
5695
5696 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5697 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5698
5699 return rpe;
5700}
5701
Deepak S7707df42014-07-12 18:46:14 +05305702static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5703{
5704 u32 val, rp1;
5705
Jani Nikula5b5929c2015-10-07 11:17:46 +03005706 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5707 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5708
Deepak S7707df42014-07-12 18:46:14 +05305709 return rp1;
5710}
5711
Deepak S96676fe2016-08-12 18:46:41 +05305712static u32 cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
5713{
5714 u32 val, rpn;
5715
5716 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
5717 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
5718 FB_GFX_FREQ_FUSE_MASK);
5719
5720 return rpn;
5721}
5722
Deepak Sf8f2b002014-07-10 13:16:21 +05305723static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5724{
5725 u32 val, rp1;
5726
5727 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5728
5729 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5730
5731 return rp1;
5732}
5733
Ville Syrjälä03af2042014-06-28 02:03:53 +03005734static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005735{
5736 u32 val, rp0;
5737
Jani Nikula64936252013-05-22 15:36:20 +03005738 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005739
5740 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5741 /* Clamp to max */
5742 rp0 = min_t(u32, rp0, 0xea);
5743
5744 return rp0;
5745}
5746
5747static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5748{
5749 u32 val, rpe;
5750
Jani Nikula64936252013-05-22 15:36:20 +03005751 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005752 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005753 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005754 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5755
5756 return rpe;
5757}
5758
Ville Syrjälä03af2042014-06-28 02:03:53 +03005759static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005760{
Imre Deak36146032014-12-04 18:39:35 +02005761 u32 val;
5762
5763 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
5764 /*
5765 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
5766 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
5767 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
5768 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
5769 * to make sure it matches what Punit accepts.
5770 */
5771 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005772}
5773
Imre Deakae484342014-03-31 15:10:44 +03005774/* Check that the pctx buffer wasn't move under us. */
5775static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5776{
5777 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5778
5779 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5780 dev_priv->vlv_pctx->stolen->start);
5781}
5782
Deepak S38807742014-05-23 21:00:15 +05305783
5784/* Check that the pcbr address is not empty. */
5785static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5786{
5787 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5788
5789 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5790}
5791
Chris Wilsondc979972016-05-10 14:10:04 +01005792static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305793{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005794 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005795 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05305796 u32 pcbr;
5797 int pctx_size = 32*1024;
5798
Deepak S38807742014-05-23 21:00:15 +05305799 pcbr = I915_READ(VLV_PCBR);
5800 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005801 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305802 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005803 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05305804
5805 pctx_paddr = (paddr & (~4095));
5806 I915_WRITE(VLV_PCBR, pctx_paddr);
5807 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005808
5809 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305810}
5811
Chris Wilsondc979972016-05-10 14:10:04 +01005812static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005813{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005814 struct drm_i915_gem_object *pctx;
5815 unsigned long pctx_paddr;
5816 u32 pcbr;
5817 int pctx_size = 24*1024;
5818
5819 pcbr = I915_READ(VLV_PCBR);
5820 if (pcbr) {
5821 /* BIOS set it up already, grab the pre-alloc'd space */
5822 int pcbr_offset;
5823
5824 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00005825 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005826 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005827 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005828 pctx_size);
5829 goto out;
5830 }
5831
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005832 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5833
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005834 /*
5835 * From the Gunit register HAS:
5836 * The Gfx driver is expected to program this register and ensure
5837 * proper allocation within Gfx stolen memory. For example, this
5838 * register should be programmed such than the PCBR range does not
5839 * overlap with other ranges, such as the frame buffer, protected
5840 * memory, or any other relevant ranges.
5841 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00005842 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005843 if (!pctx) {
5844 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005845 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005846 }
5847
5848 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5849 I915_WRITE(VLV_PCBR, pctx_paddr);
5850
5851out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005852 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005853 dev_priv->vlv_pctx = pctx;
5854}
5855
Chris Wilsondc979972016-05-10 14:10:04 +01005856static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03005857{
Imre Deakae484342014-03-31 15:10:44 +03005858 if (WARN_ON(!dev_priv->vlv_pctx))
5859 return;
5860
Chris Wilsonf0cd5182016-10-28 13:58:43 +01005861 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03005862 dev_priv->vlv_pctx = NULL;
5863}
5864
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005865static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
5866{
5867 dev_priv->rps.gpll_ref_freq =
5868 vlv_get_cck_clock(dev_priv, "GPLL ref",
5869 CCK_GPLL_CLOCK_CONTROL,
5870 dev_priv->czclk_freq);
5871
5872 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
5873 dev_priv->rps.gpll_ref_freq);
5874}
5875
Chris Wilsondc979972016-05-10 14:10:04 +01005876static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005877{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005878 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005879
Chris Wilsondc979972016-05-10 14:10:04 +01005880 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005881
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005882 vlv_init_gpll_ref_freq(dev_priv);
5883
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005884 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5885 switch ((val >> 6) & 3) {
5886 case 0:
5887 case 1:
5888 dev_priv->mem_freq = 800;
5889 break;
5890 case 2:
5891 dev_priv->mem_freq = 1066;
5892 break;
5893 case 3:
5894 dev_priv->mem_freq = 1333;
5895 break;
5896 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005897 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005898
Imre Deak4e805192014-04-14 20:24:41 +03005899 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5900 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5901 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005902 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005903 dev_priv->rps.max_freq);
5904
5905 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5906 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005907 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005908 dev_priv->rps.efficient_freq);
5909
Deepak Sf8f2b002014-07-10 13:16:21 +05305910 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5911 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005912 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305913 dev_priv->rps.rp1_freq);
5914
Imre Deak4e805192014-04-14 20:24:41 +03005915 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5916 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005917 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005918 dev_priv->rps.min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03005919}
5920
Chris Wilsondc979972016-05-10 14:10:04 +01005921static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305922{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005923 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305924
Chris Wilsondc979972016-05-10 14:10:04 +01005925 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05305926
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005927 vlv_init_gpll_ref_freq(dev_priv);
5928
Ville Syrjäläa5805162015-05-26 20:42:30 +03005929 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005930 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005931 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005932
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005933 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005934 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005935 dev_priv->mem_freq = 2000;
5936 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03005937 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005938 dev_priv->mem_freq = 1600;
5939 break;
5940 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005941 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005942
Deepak S2b6b3a02014-05-27 15:59:30 +05305943 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5944 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5945 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005946 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305947 dev_priv->rps.max_freq);
5948
5949 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5950 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005951 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305952 dev_priv->rps.efficient_freq);
5953
Deepak S7707df42014-07-12 18:46:14 +05305954 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5955 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005956 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305957 dev_priv->rps.rp1_freq);
5958
Deepak S96676fe2016-08-12 18:46:41 +05305959 dev_priv->rps.min_freq = cherryview_rps_min_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05305960 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005961 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305962 dev_priv->rps.min_freq);
5963
Ville Syrjälä1c147622014-08-18 14:42:43 +03005964 WARN_ONCE((dev_priv->rps.max_freq |
5965 dev_priv->rps.efficient_freq |
5966 dev_priv->rps.rp1_freq |
5967 dev_priv->rps.min_freq) & 1,
5968 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05305969}
5970
Chris Wilsondc979972016-05-10 14:10:04 +01005971static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005972{
Chris Wilsondc979972016-05-10 14:10:04 +01005973 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005974}
5975
Chris Wilsondc979972016-05-10 14:10:04 +01005976static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305977{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005978 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305979 enum intel_engine_id id;
Deepak S2b6b3a02014-05-27 15:59:30 +05305980 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305981
5982 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5983
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005984 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
5985 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05305986 if (gtfifodbg) {
5987 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5988 gtfifodbg);
5989 I915_WRITE(GTFIFODBG, gtfifodbg);
5990 }
5991
5992 cherryview_check_pctx(dev_priv);
5993
5994 /* 1a & 1b: Get forcewake during program sequence. Although the driver
5995 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005996 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05305997
Ville Syrjälä160614a2015-01-19 13:50:47 +02005998 /* Disable RC states. */
5999 I915_WRITE(GEN6_RC_CONTROL, 0);
6000
Deepak S38807742014-05-23 21:00:15 +05306001 /* 2a: Program RC6 thresholds.*/
6002 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
6003 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6004 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
6005
Akash Goel3b3f1652016-10-13 22:44:48 +05306006 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006007 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05306008 I915_WRITE(GEN6_RC_SLEEP, 0);
6009
Deepak Sf4f71c72015-03-28 15:23:35 +05306010 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
6011 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05306012
6013 /* allows RC6 residency counter to work */
6014 I915_WRITE(VLV_COUNTER_CONTROL,
6015 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
6016 VLV_MEDIA_RC6_COUNT_EN |
6017 VLV_RENDER_RC6_COUNT_EN));
6018
6019 /* For now we assume BIOS is allocating and populating the PCBR */
6020 pcbr = I915_READ(VLV_PCBR);
6021
Deepak S38807742014-05-23 21:00:15 +05306022 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01006023 if ((intel_enable_rc6() & INTEL_RC6_ENABLE) &&
6024 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02006025 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05306026
6027 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
6028
Deepak S2b6b3a02014-05-27 15:59:30 +05306029 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02006030 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05306031 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6032 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6033 I915_WRITE(GEN6_RP_UP_EI, 66000);
6034 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6035
6036 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6037
6038 /* 5: Enable RPS */
6039 I915_WRITE(GEN6_RP_CONTROL,
6040 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02006041 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05306042 GEN6_RP_ENABLE |
6043 GEN6_RP_UP_BUSY_AVG |
6044 GEN6_RP_DOWN_IDLE_AVG);
6045
Deepak S3ef62342015-04-29 08:36:24 +05306046 /* Setting Fixed Bias */
6047 val = VLV_OVERRIDE_EN |
6048 VLV_SOC_TDP_EN |
6049 CHV_BIAS_CPU_50_SOC_50;
6050 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6051
Deepak S2b6b3a02014-05-27 15:59:30 +05306052 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
6053
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006054 /* RPS code assumes GPLL is used */
6055 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6056
Jani Nikula742f4912015-09-03 11:16:09 +03006057 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05306058 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6059
Chris Wilson3a45b052016-07-13 09:10:32 +01006060 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05306061
Mika Kuoppala59bad942015-01-16 11:34:40 +02006062 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306063}
6064
Chris Wilsondc979972016-05-10 14:10:04 +01006065static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006066{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006067 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306068 enum intel_engine_id id;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07006069 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006070
6071 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6072
Imre Deakae484342014-03-31 15:10:44 +03006073 valleyview_check_pctx(dev_priv);
6074
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006075 gtfifodbg = I915_READ(GTFIFODBG);
6076 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07006077 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6078 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006079 I915_WRITE(GTFIFODBG, gtfifodbg);
6080 }
6081
Deepak Sc8d9a592013-11-23 14:55:42 +05306082 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006083 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006084
Ville Syrjälä160614a2015-01-19 13:50:47 +02006085 /* Disable RC states. */
6086 I915_WRITE(GEN6_RC_CONTROL, 0);
6087
Ville Syrjäläcad725f2015-01-19 13:50:48 +02006088 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006089 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6090 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6091 I915_WRITE(GEN6_RP_UP_EI, 66000);
6092 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6093
6094 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6095
6096 I915_WRITE(GEN6_RP_CONTROL,
6097 GEN6_RP_MEDIA_TURBO |
6098 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6099 GEN6_RP_MEDIA_IS_GFX |
6100 GEN6_RP_ENABLE |
6101 GEN6_RP_UP_BUSY_AVG |
6102 GEN6_RP_DOWN_IDLE_CONT);
6103
6104 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
6105 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6106 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6107
Akash Goel3b3f1652016-10-13 22:44:48 +05306108 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006109 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006110
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08006111 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006112
6113 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07006114 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04006115 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
6116 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07006117 VLV_MEDIA_RC6_COUNT_EN |
6118 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04006119
Chris Wilsondc979972016-05-10 14:10:04 +01006120 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08006121 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07006122
Chris Wilsondc979972016-05-10 14:10:04 +01006123 intel_print_rc6_info(dev_priv, rc6_mode);
Ben Widawskydc39fff2013-10-18 12:32:07 -07006124
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07006125 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006126
Deepak S3ef62342015-04-29 08:36:24 +05306127 /* Setting Fixed Bias */
6128 val = VLV_OVERRIDE_EN |
6129 VLV_SOC_TDP_EN |
6130 VLV_BIAS_CPU_125_SOC_875;
6131 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6132
Jani Nikula64936252013-05-22 15:36:20 +03006133 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006134
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006135 /* RPS code assumes GPLL is used */
6136 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6137
Jani Nikula742f4912015-09-03 11:16:09 +03006138 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07006139 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6140
Chris Wilson3a45b052016-07-13 09:10:32 +01006141 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006142
Mika Kuoppala59bad942015-01-16 11:34:40 +02006143 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006144}
6145
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006146static unsigned long intel_pxfreq(u32 vidfreq)
6147{
6148 unsigned long freq;
6149 int div = (vidfreq & 0x3f0000) >> 16;
6150 int post = (vidfreq & 0x3000) >> 12;
6151 int pre = (vidfreq & 0x7);
6152
6153 if (!pre)
6154 return 0;
6155
6156 freq = ((div * 133333) / ((1<<post) * pre));
6157
6158 return freq;
6159}
6160
Daniel Vettereb48eb02012-04-26 23:28:12 +02006161static const struct cparams {
6162 u16 i;
6163 u16 t;
6164 u16 m;
6165 u16 c;
6166} cparams[] = {
6167 { 1, 1333, 301, 28664 },
6168 { 1, 1066, 294, 24460 },
6169 { 1, 800, 294, 25192 },
6170 { 0, 1333, 276, 27605 },
6171 { 0, 1066, 276, 27605 },
6172 { 0, 800, 231, 23784 },
6173};
6174
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006175static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006176{
6177 u64 total_count, diff, ret;
6178 u32 count1, count2, count3, m = 0, c = 0;
6179 unsigned long now = jiffies_to_msecs(jiffies), diff1;
6180 int i;
6181
Chris Wilson67520412017-03-02 13:28:01 +00006182 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006183
Daniel Vetter20e4d402012-08-08 23:35:39 +02006184 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006185
6186 /* Prevent division-by-zero if we are asking too fast.
6187 * Also, we don't get interesting results if we are polling
6188 * faster than once in 10ms, so just return the saved value
6189 * in such cases.
6190 */
6191 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02006192 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006193
6194 count1 = I915_READ(DMIEC);
6195 count2 = I915_READ(DDREC);
6196 count3 = I915_READ(CSIEC);
6197
6198 total_count = count1 + count2 + count3;
6199
6200 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02006201 if (total_count < dev_priv->ips.last_count1) {
6202 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006203 diff += total_count;
6204 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006205 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006206 }
6207
6208 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006209 if (cparams[i].i == dev_priv->ips.c_m &&
6210 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02006211 m = cparams[i].m;
6212 c = cparams[i].c;
6213 break;
6214 }
6215 }
6216
6217 diff = div_u64(diff, diff1);
6218 ret = ((m * diff) + c);
6219 ret = div_u64(ret, 10);
6220
Daniel Vetter20e4d402012-08-08 23:35:39 +02006221 dev_priv->ips.last_count1 = total_count;
6222 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006223
Daniel Vetter20e4d402012-08-08 23:35:39 +02006224 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006225
6226 return ret;
6227}
6228
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006229unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
6230{
6231 unsigned long val;
6232
Chris Wilsondc979972016-05-10 14:10:04 +01006233 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006234 return 0;
6235
6236 spin_lock_irq(&mchdev_lock);
6237
6238 val = __i915_chipset_val(dev_priv);
6239
6240 spin_unlock_irq(&mchdev_lock);
6241
6242 return val;
6243}
6244
Daniel Vettereb48eb02012-04-26 23:28:12 +02006245unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
6246{
6247 unsigned long m, x, b;
6248 u32 tsfs;
6249
6250 tsfs = I915_READ(TSFS);
6251
6252 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
6253 x = I915_READ8(TR1);
6254
6255 b = tsfs & TSFS_INTR_MASK;
6256
6257 return ((m * x) / 127) - b;
6258}
6259
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006260static int _pxvid_to_vd(u8 pxvid)
6261{
6262 if (pxvid == 0)
6263 return 0;
6264
6265 if (pxvid >= 8 && pxvid < 31)
6266 pxvid = 31;
6267
6268 return (pxvid + 2) * 125;
6269}
6270
6271static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006272{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006273 const int vd = _pxvid_to_vd(pxvid);
6274 const int vm = vd - 1125;
6275
Chris Wilsondc979972016-05-10 14:10:04 +01006276 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006277 return vm > 0 ? vm : 0;
6278
6279 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006280}
6281
Daniel Vetter02d71952012-08-09 16:44:54 +02006282static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006283{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006284 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006285 u32 count;
6286
Chris Wilson67520412017-03-02 13:28:01 +00006287 lockdep_assert_held(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006288
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006289 now = ktime_get_raw_ns();
6290 diffms = now - dev_priv->ips.last_time2;
6291 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006292
6293 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02006294 if (!diffms)
6295 return;
6296
6297 count = I915_READ(GFXEC);
6298
Daniel Vetter20e4d402012-08-08 23:35:39 +02006299 if (count < dev_priv->ips.last_count2) {
6300 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006301 diff += count;
6302 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006303 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006304 }
6305
Daniel Vetter20e4d402012-08-08 23:35:39 +02006306 dev_priv->ips.last_count2 = count;
6307 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006308
6309 /* More magic constants... */
6310 diff = diff * 1181;
6311 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02006312 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006313}
6314
Daniel Vetter02d71952012-08-09 16:44:54 +02006315void i915_update_gfx_val(struct drm_i915_private *dev_priv)
6316{
Chris Wilsondc979972016-05-10 14:10:04 +01006317 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02006318 return;
6319
Daniel Vetter92703882012-08-09 16:46:01 +02006320 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006321
6322 __i915_update_gfx_val(dev_priv);
6323
Daniel Vetter92703882012-08-09 16:46:01 +02006324 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006325}
6326
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006327static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006328{
6329 unsigned long t, corr, state1, corr2, state2;
6330 u32 pxvid, ext_v;
6331
Chris Wilson67520412017-03-02 13:28:01 +00006332 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006333
Ville Syrjälä616847e2015-09-18 20:03:19 +03006334 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02006335 pxvid = (pxvid >> 24) & 0x7f;
6336 ext_v = pvid_to_extvid(dev_priv, pxvid);
6337
6338 state1 = ext_v;
6339
6340 t = i915_mch_val(dev_priv);
6341
6342 /* Revel in the empirically derived constants */
6343
6344 /* Correction factor in 1/100000 units */
6345 if (t > 80)
6346 corr = ((t * 2349) + 135940);
6347 else if (t >= 50)
6348 corr = ((t * 964) + 29317);
6349 else /* < 50 */
6350 corr = ((t * 301) + 1004);
6351
6352 corr = corr * ((150142 * state1) / 10000 - 78642);
6353 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02006354 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006355
6356 state2 = (corr2 * state1) / 10000;
6357 state2 /= 100; /* convert to mW */
6358
Daniel Vetter02d71952012-08-09 16:44:54 +02006359 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006360
Daniel Vetter20e4d402012-08-08 23:35:39 +02006361 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006362}
6363
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006364unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
6365{
6366 unsigned long val;
6367
Chris Wilsondc979972016-05-10 14:10:04 +01006368 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006369 return 0;
6370
6371 spin_lock_irq(&mchdev_lock);
6372
6373 val = __i915_gfx_val(dev_priv);
6374
6375 spin_unlock_irq(&mchdev_lock);
6376
6377 return val;
6378}
6379
Daniel Vettereb48eb02012-04-26 23:28:12 +02006380/**
6381 * i915_read_mch_val - return value for IPS use
6382 *
6383 * Calculate and return a value for the IPS driver to use when deciding whether
6384 * we have thermal and power headroom to increase CPU or GPU power budget.
6385 */
6386unsigned long i915_read_mch_val(void)
6387{
6388 struct drm_i915_private *dev_priv;
6389 unsigned long chipset_val, graphics_val, ret = 0;
6390
Daniel Vetter92703882012-08-09 16:46:01 +02006391 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006392 if (!i915_mch_dev)
6393 goto out_unlock;
6394 dev_priv = i915_mch_dev;
6395
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006396 chipset_val = __i915_chipset_val(dev_priv);
6397 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006398
6399 ret = chipset_val + graphics_val;
6400
6401out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006402 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006403
6404 return ret;
6405}
6406EXPORT_SYMBOL_GPL(i915_read_mch_val);
6407
6408/**
6409 * i915_gpu_raise - raise GPU frequency limit
6410 *
6411 * Raise the limit; IPS indicates we have thermal headroom.
6412 */
6413bool i915_gpu_raise(void)
6414{
6415 struct drm_i915_private *dev_priv;
6416 bool ret = true;
6417
Daniel Vetter92703882012-08-09 16:46:01 +02006418 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006419 if (!i915_mch_dev) {
6420 ret = false;
6421 goto out_unlock;
6422 }
6423 dev_priv = i915_mch_dev;
6424
Daniel Vetter20e4d402012-08-08 23:35:39 +02006425 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
6426 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006427
6428out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006429 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006430
6431 return ret;
6432}
6433EXPORT_SYMBOL_GPL(i915_gpu_raise);
6434
6435/**
6436 * i915_gpu_lower - lower GPU frequency limit
6437 *
6438 * IPS indicates we're close to a thermal limit, so throttle back the GPU
6439 * frequency maximum.
6440 */
6441bool i915_gpu_lower(void)
6442{
6443 struct drm_i915_private *dev_priv;
6444 bool ret = true;
6445
Daniel Vetter92703882012-08-09 16:46:01 +02006446 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006447 if (!i915_mch_dev) {
6448 ret = false;
6449 goto out_unlock;
6450 }
6451 dev_priv = i915_mch_dev;
6452
Daniel Vetter20e4d402012-08-08 23:35:39 +02006453 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
6454 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006455
6456out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006457 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006458
6459 return ret;
6460}
6461EXPORT_SYMBOL_GPL(i915_gpu_lower);
6462
6463/**
6464 * i915_gpu_busy - indicate GPU business to IPS
6465 *
6466 * Tell the IPS driver whether or not the GPU is busy.
6467 */
6468bool i915_gpu_busy(void)
6469{
Daniel Vettereb48eb02012-04-26 23:28:12 +02006470 bool ret = false;
6471
Daniel Vetter92703882012-08-09 16:46:01 +02006472 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01006473 if (i915_mch_dev)
6474 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02006475 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006476
6477 return ret;
6478}
6479EXPORT_SYMBOL_GPL(i915_gpu_busy);
6480
6481/**
6482 * i915_gpu_turbo_disable - disable graphics turbo
6483 *
6484 * Disable graphics turbo by resetting the max frequency and setting the
6485 * current frequency to the default.
6486 */
6487bool i915_gpu_turbo_disable(void)
6488{
6489 struct drm_i915_private *dev_priv;
6490 bool ret = true;
6491
Daniel Vetter92703882012-08-09 16:46:01 +02006492 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006493 if (!i915_mch_dev) {
6494 ret = false;
6495 goto out_unlock;
6496 }
6497 dev_priv = i915_mch_dev;
6498
Daniel Vetter20e4d402012-08-08 23:35:39 +02006499 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006500
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006501 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006502 ret = false;
6503
6504out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006505 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006506
6507 return ret;
6508}
6509EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6510
6511/**
6512 * Tells the intel_ips driver that the i915 driver is now loaded, if
6513 * IPS got loaded first.
6514 *
6515 * This awkward dance is so that neither module has to depend on the
6516 * other in order for IPS to do the appropriate communication of
6517 * GPU turbo limits to i915.
6518 */
6519static void
6520ips_ping_for_i915_load(void)
6521{
6522 void (*link)(void);
6523
6524 link = symbol_get(ips_link_to_i915_driver);
6525 if (link) {
6526 link();
6527 symbol_put(ips_link_to_i915_driver);
6528 }
6529}
6530
6531void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6532{
Daniel Vetter02d71952012-08-09 16:44:54 +02006533 /* We only register the i915 ips part with intel-ips once everything is
6534 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006535 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006536 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006537 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006538
6539 ips_ping_for_i915_load();
6540}
6541
6542void intel_gpu_ips_teardown(void)
6543{
Daniel Vetter92703882012-08-09 16:46:01 +02006544 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006545 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006546 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006547}
Deepak S76c3552f2014-01-30 23:08:16 +05306548
Chris Wilsondc979972016-05-10 14:10:04 +01006549static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006550{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006551 u32 lcfuse;
6552 u8 pxw[16];
6553 int i;
6554
6555 /* Disable to program */
6556 I915_WRITE(ECR, 0);
6557 POSTING_READ(ECR);
6558
6559 /* Program energy weights for various events */
6560 I915_WRITE(SDEW, 0x15040d00);
6561 I915_WRITE(CSIEW0, 0x007f0000);
6562 I915_WRITE(CSIEW1, 0x1e220004);
6563 I915_WRITE(CSIEW2, 0x04000004);
6564
6565 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006566 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006567 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006568 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006569
6570 /* Program P-state weights to account for frequency power adjustment */
6571 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006572 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006573 unsigned long freq = intel_pxfreq(pxvidfreq);
6574 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6575 PXVFREQ_PX_SHIFT;
6576 unsigned long val;
6577
6578 val = vid * vid;
6579 val *= (freq / 1000);
6580 val *= 255;
6581 val /= (127*127*900);
6582 if (val > 0xff)
6583 DRM_ERROR("bad pxval: %ld\n", val);
6584 pxw[i] = val;
6585 }
6586 /* Render standby states get 0 weight */
6587 pxw[14] = 0;
6588 pxw[15] = 0;
6589
6590 for (i = 0; i < 4; i++) {
6591 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6592 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006593 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006594 }
6595
6596 /* Adjust magic regs to magic values (more experimental results) */
6597 I915_WRITE(OGW0, 0);
6598 I915_WRITE(OGW1, 0);
6599 I915_WRITE(EG0, 0x00007f00);
6600 I915_WRITE(EG1, 0x0000000e);
6601 I915_WRITE(EG2, 0x000e0000);
6602 I915_WRITE(EG3, 0x68000300);
6603 I915_WRITE(EG4, 0x42000000);
6604 I915_WRITE(EG5, 0x00140031);
6605 I915_WRITE(EG6, 0);
6606 I915_WRITE(EG7, 0);
6607
6608 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006609 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006610
6611 /* Enable PMON + select events */
6612 I915_WRITE(ECR, 0x80000019);
6613
6614 lcfuse = I915_READ(LCFUSE02);
6615
Daniel Vetter20e4d402012-08-08 23:35:39 +02006616 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006617}
6618
Chris Wilsondc979972016-05-10 14:10:04 +01006619void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006620{
Imre Deakb268c692015-12-15 20:10:31 +02006621 /*
6622 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
6623 * requirement.
6624 */
6625 if (!i915.enable_rc6) {
6626 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
6627 intel_runtime_pm_get(dev_priv);
6628 }
Imre Deake6069ca2014-04-18 16:01:02 +03006629
Chris Wilsonb5163db2016-08-10 13:58:24 +01006630 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson773ea9a2016-07-13 09:10:33 +01006631 mutex_lock(&dev_priv->rps.hw_lock);
6632
6633 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01006634 if (IS_CHERRYVIEW(dev_priv))
6635 cherryview_init_gt_powersave(dev_priv);
6636 else if (IS_VALLEYVIEW(dev_priv))
6637 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01006638 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01006639 gen6_init_rps_frequencies(dev_priv);
6640
6641 /* Derive initial user preferences/limits from the hardware limits */
6642 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
6643 dev_priv->rps.cur_freq = dev_priv->rps.idle_freq;
6644
6645 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
6646 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
6647
6648 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
6649 dev_priv->rps.min_freq_softlimit =
6650 max_t(int,
6651 dev_priv->rps.efficient_freq,
6652 intel_freq_opcode(dev_priv, 450));
6653
Chris Wilson99ac9612016-07-13 09:10:34 +01006654 /* After setting max-softlimit, find the overclock max freq */
6655 if (IS_GEN6(dev_priv) ||
6656 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
6657 u32 params = 0;
6658
6659 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
6660 if (params & BIT(31)) { /* OC supported */
6661 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
6662 (dev_priv->rps.max_freq & 0xff) * 50,
6663 (params & 0xff) * 50);
6664 dev_priv->rps.max_freq = params & 0xff;
6665 }
6666 }
6667
Chris Wilson29ecd78d2016-07-13 09:10:35 +01006668 /* Finally allow us to boost to max by default */
6669 dev_priv->rps.boost_freq = dev_priv->rps.max_freq;
6670
Chris Wilson773ea9a2016-07-13 09:10:33 +01006671 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb5163db2016-08-10 13:58:24 +01006672 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson54b4f682016-07-21 21:16:19 +01006673
6674 intel_autoenable_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006675}
6676
Chris Wilsondc979972016-05-10 14:10:04 +01006677void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006678{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03006679 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01006680 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02006681
6682 if (!i915.enable_rc6)
6683 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006684}
6685
Chris Wilson54b4f682016-07-21 21:16:19 +01006686/**
6687 * intel_suspend_gt_powersave - suspend PM work and helper threads
6688 * @dev_priv: i915 device
6689 *
6690 * We don't want to disable RC6 or other features here, we just want
6691 * to make sure any work we've queued has finished and won't bother
6692 * us while we're suspended.
6693 */
6694void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
6695{
6696 if (INTEL_GEN(dev_priv) < 6)
6697 return;
6698
6699 if (cancel_delayed_work_sync(&dev_priv->rps.autoenable_work))
6700 intel_runtime_pm_put(dev_priv);
6701
6702 /* gen6_rps_idle() will be called later to disable interrupts */
6703}
6704
Chris Wilsonb7137e02016-07-13 09:10:37 +01006705void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
6706{
6707 dev_priv->rps.enabled = true; /* force disabling */
6708 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006709
6710 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006711}
6712
Chris Wilsondc979972016-05-10 14:10:04 +01006713void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006714{
Chris Wilsonb7137e02016-07-13 09:10:37 +01006715 if (!READ_ONCE(dev_priv->rps.enabled))
6716 return;
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006717
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006718 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006719
Chris Wilsonb7137e02016-07-13 09:10:37 +01006720 if (INTEL_GEN(dev_priv) >= 9) {
6721 gen9_disable_rc6(dev_priv);
6722 gen9_disable_rps(dev_priv);
6723 } else if (IS_CHERRYVIEW(dev_priv)) {
6724 cherryview_disable_rps(dev_priv);
6725 } else if (IS_VALLEYVIEW(dev_priv)) {
6726 valleyview_disable_rps(dev_priv);
6727 } else if (INTEL_GEN(dev_priv) >= 6) {
6728 gen6_disable_rps(dev_priv);
6729 } else if (IS_IRONLAKE_M(dev_priv)) {
6730 ironlake_disable_drps(dev_priv);
6731 }
6732
6733 dev_priv->rps.enabled = false;
6734 mutex_unlock(&dev_priv->rps.hw_lock);
6735}
6736
6737void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
6738{
Chris Wilson54b4f682016-07-21 21:16:19 +01006739 /* We shouldn't be disabling as we submit, so this should be less
6740 * racy than it appears!
6741 */
Chris Wilsonb7137e02016-07-13 09:10:37 +01006742 if (READ_ONCE(dev_priv->rps.enabled))
6743 return;
6744
6745 /* Powersaving is controlled by the host when inside a VM */
6746 if (intel_vgpu_active(dev_priv))
6747 return;
6748
6749 mutex_lock(&dev_priv->rps.hw_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02006750
Chris Wilsondc979972016-05-10 14:10:04 +01006751 if (IS_CHERRYVIEW(dev_priv)) {
6752 cherryview_enable_rps(dev_priv);
6753 } else if (IS_VALLEYVIEW(dev_priv)) {
6754 valleyview_enable_rps(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006755 } else if (INTEL_GEN(dev_priv) >= 9) {
Chris Wilsondc979972016-05-10 14:10:04 +01006756 gen9_enable_rc6(dev_priv);
6757 gen9_enable_rps(dev_priv);
Rodrigo Vivib976dc52017-01-23 10:32:37 -08006758 if (IS_GEN9_BC(dev_priv))
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006759 gen6_update_ring_freq(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01006760 } else if (IS_BROADWELL(dev_priv)) {
6761 gen8_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006762 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006763 } else if (INTEL_GEN(dev_priv) >= 6) {
Chris Wilsondc979972016-05-10 14:10:04 +01006764 gen6_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006765 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006766 } else if (IS_IRONLAKE_M(dev_priv)) {
6767 ironlake_enable_drps(dev_priv);
6768 intel_init_emon(dev_priv);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006769 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006770
6771 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6772 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6773
6774 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6775 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6776
Chris Wilson54b4f682016-07-21 21:16:19 +01006777 dev_priv->rps.enabled = true;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006778 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006779}
Imre Deakc6df39b2014-04-14 20:24:29 +03006780
Chris Wilson54b4f682016-07-21 21:16:19 +01006781static void __intel_autoenable_gt_powersave(struct work_struct *work)
6782{
6783 struct drm_i915_private *dev_priv =
6784 container_of(work, typeof(*dev_priv), rps.autoenable_work.work);
6785 struct intel_engine_cs *rcs;
6786 struct drm_i915_gem_request *req;
6787
6788 if (READ_ONCE(dev_priv->rps.enabled))
6789 goto out;
6790
Akash Goel3b3f1652016-10-13 22:44:48 +05306791 rcs = dev_priv->engine[RCS];
Chris Wilsone8a9c582016-12-18 15:37:20 +00006792 if (rcs->last_retired_context)
Chris Wilson54b4f682016-07-21 21:16:19 +01006793 goto out;
6794
6795 if (!rcs->init_context)
6796 goto out;
6797
6798 mutex_lock(&dev_priv->drm.struct_mutex);
6799
6800 req = i915_gem_request_alloc(rcs, dev_priv->kernel_context);
6801 if (IS_ERR(req))
6802 goto unlock;
6803
6804 if (!i915.enable_execlists && i915_switch_context(req) == 0)
6805 rcs->init_context(req);
6806
6807 /* Mark the device busy, calling intel_enable_gt_powersave() */
6808 i915_add_request_no_flush(req);
6809
6810unlock:
6811 mutex_unlock(&dev_priv->drm.struct_mutex);
6812out:
6813 intel_runtime_pm_put(dev_priv);
6814}
6815
6816void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv)
6817{
6818 if (READ_ONCE(dev_priv->rps.enabled))
6819 return;
6820
6821 if (IS_IRONLAKE_M(dev_priv)) {
6822 ironlake_enable_drps(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006823 intel_init_emon(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006824 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
6825 /*
6826 * PCU communication is slow and this doesn't need to be
6827 * done at any specific time, so do this out of our fast path
6828 * to make resume and init faster.
6829 *
6830 * We depend on the HW RC6 power context save/restore
6831 * mechanism when entering D3 through runtime PM suspend. So
6832 * disable RPM until RPS/RC6 is properly setup. We can only
6833 * get here via the driver load/system resume/runtime resume
6834 * paths, so the _noresume version is enough (and in case of
6835 * runtime resume it's necessary).
6836 */
6837 if (queue_delayed_work(dev_priv->wq,
6838 &dev_priv->rps.autoenable_work,
6839 round_jiffies_up_relative(HZ)))
6840 intel_runtime_pm_get_noresume(dev_priv);
6841 }
6842}
6843
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006844static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006845{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006846 /*
6847 * On Ibex Peak and Cougar Point, we need to disable clock
6848 * gating for the panel power sequencer or it will fail to
6849 * start up when no ports are active.
6850 */
6851 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6852}
6853
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006854static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006855{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006856 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006857
Damien Lespiau055e3932014-08-18 13:49:10 +01006858 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006859 I915_WRITE(DSPCNTR(pipe),
6860 I915_READ(DSPCNTR(pipe)) |
6861 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006862
6863 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6864 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006865 }
6866}
6867
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006868static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä017636c2013-12-05 15:51:37 +02006869{
Ville Syrjälä017636c2013-12-05 15:51:37 +02006870 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6871 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6872 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6873
6874 /*
6875 * Don't touch WM1S_LP_EN here.
6876 * Doing so could cause underruns.
6877 */
6878}
6879
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006880static void ironlake_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006881{
Damien Lespiau231e54f2012-10-19 17:55:41 +01006882 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006883
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006884 /*
6885 * Required for FBC
6886 * WaFbcDisableDpfcClockGating:ilk
6887 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006888 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6889 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6890 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006891
6892 I915_WRITE(PCH_3DCGDIS0,
6893 MARIUNIT_CLOCK_GATE_DISABLE |
6894 SVSMUNIT_CLOCK_GATE_DISABLE);
6895 I915_WRITE(PCH_3DCGDIS1,
6896 VFMUNIT_CLOCK_GATE_DISABLE);
6897
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006898 /*
6899 * According to the spec the following bits should be set in
6900 * order to enable memory self-refresh
6901 * The bit 22/21 of 0x42004
6902 * The bit 5 of 0x42020
6903 * The bit 15 of 0x45000
6904 */
6905 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6906 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6907 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006908 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006909 I915_WRITE(DISP_ARB_CTL,
6910 (I915_READ(DISP_ARB_CTL) |
6911 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006912
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006913 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006914
6915 /*
6916 * Based on the document from hardware guys the following bits
6917 * should be set unconditionally in order to enable FBC.
6918 * The bit 22 of 0x42000
6919 * The bit 22 of 0x42004
6920 * The bit 7,8,9 of 0x42020.
6921 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01006922 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006923 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006924 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6925 I915_READ(ILK_DISPLAY_CHICKEN1) |
6926 ILK_FBCQ_DIS);
6927 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6928 I915_READ(ILK_DISPLAY_CHICKEN2) |
6929 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006930 }
6931
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006932 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6933
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006934 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6935 I915_READ(ILK_DISPLAY_CHICKEN2) |
6936 ILK_ELPIN_409_SELECT);
6937 I915_WRITE(_3D_CHICKEN2,
6938 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6939 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006940
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006941 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006942 I915_WRITE(CACHE_MODE_0,
6943 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006944
Akash Goel4e046322014-04-04 17:14:38 +05306945 /* WaDisable_RenderCache_OperationalFlush:ilk */
6946 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6947
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006948 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006949
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006950 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006951}
6952
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006953static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006954{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006955 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006956 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006957
6958 /*
6959 * On Ibex Peak and Cougar Point, we need to disable clock
6960 * gating for the panel power sequencer or it will fail to
6961 * start up when no ports are active.
6962 */
Jesse Barnescd664072013-10-02 10:34:19 -07006963 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6964 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6965 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006966 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6967 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006968 /* The below fixes the weird display corruption, a few pixels shifted
6969 * downward, on (only) LVDS of some HP laptops with IVY.
6970 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006971 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006972 val = I915_READ(TRANS_CHICKEN2(pipe));
6973 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6974 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006975 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006976 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006977 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6978 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6979 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006980 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6981 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006982 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006983 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006984 I915_WRITE(TRANS_CHICKEN1(pipe),
6985 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6986 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006987}
6988
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006989static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006990{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006991 uint32_t tmp;
6992
6993 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006994 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6995 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6996 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006997}
6998
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006999static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007000{
Damien Lespiau231e54f2012-10-19 17:55:41 +01007001 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007002
Damien Lespiau231e54f2012-10-19 17:55:41 +01007003 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007004
7005 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7006 I915_READ(ILK_DISPLAY_CHICKEN2) |
7007 ILK_ELPIN_409_SELECT);
7008
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007009 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01007010 I915_WRITE(_3D_CHICKEN,
7011 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
7012
Akash Goel4e046322014-04-04 17:14:38 +05307013 /* WaDisable_RenderCache_OperationalFlush:snb */
7014 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7015
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007016 /*
7017 * BSpec recoomends 8x4 when MSAA is used,
7018 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007019 *
7020 * Note that PS/WM thread counts depend on the WIZ hashing
7021 * disable bit, which we don't touch here, but it's good
7022 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007023 */
7024 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007025 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007026
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007027 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007028
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007029 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02007030 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007031
7032 I915_WRITE(GEN6_UCGCTL1,
7033 I915_READ(GEN6_UCGCTL1) |
7034 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
7035 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
7036
7037 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
7038 * gating disable must be set. Failure to set it results in
7039 * flickering pixels due to Z write ordering failures after
7040 * some amount of runtime in the Mesa "fire" demo, and Unigine
7041 * Sanctuary and Tropics, and apparently anything else with
7042 * alpha test or pixel discard.
7043 *
7044 * According to the spec, bit 11 (RCCUNIT) must also be set,
7045 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007046 *
Ville Syrjäläef593182014-01-22 21:32:47 +02007047 * WaDisableRCCUnitClockGating:snb
7048 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007049 */
7050 I915_WRITE(GEN6_UCGCTL2,
7051 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
7052 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
7053
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02007054 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02007055 I915_WRITE(_3D_CHICKEN3,
7056 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007057
7058 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02007059 * Bspec says:
7060 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
7061 * 3DSTATE_SF number of SF output attributes is more than 16."
7062 */
7063 I915_WRITE(_3D_CHICKEN3,
7064 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
7065
7066 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007067 * According to the spec the following bits should be
7068 * set in order to enable memory self-refresh and fbc:
7069 * The bit21 and bit22 of 0x42000
7070 * The bit21 and bit22 of 0x42004
7071 * The bit5 and bit7 of 0x42020
7072 * The bit14 of 0x70180
7073 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01007074 *
7075 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007076 */
7077 I915_WRITE(ILK_DISPLAY_CHICKEN1,
7078 I915_READ(ILK_DISPLAY_CHICKEN1) |
7079 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
7080 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7081 I915_READ(ILK_DISPLAY_CHICKEN2) |
7082 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01007083 I915_WRITE(ILK_DSPCLK_GATE_D,
7084 I915_READ(ILK_DSPCLK_GATE_D) |
7085 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
7086 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007087
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007088 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07007089
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007090 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007091
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007092 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007093}
7094
7095static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
7096{
7097 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
7098
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007099 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02007100 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007101 *
7102 * This actually overrides the dispatch
7103 * mode for all thread types.
7104 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007105 reg &= ~GEN7_FF_SCHED_MASK;
7106 reg |= GEN7_FF_TS_SCHED_HW;
7107 reg |= GEN7_FF_VS_SCHED_HW;
7108 reg |= GEN7_FF_DS_SCHED_HW;
7109
7110 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
7111}
7112
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007113static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007114{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007115 /*
7116 * TODO: this bit should only be enabled when really needed, then
7117 * disabled when not needed anymore in order to save power.
7118 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007119 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007120 I915_WRITE(SOUTH_DSPCLK_GATE_D,
7121 I915_READ(SOUTH_DSPCLK_GATE_D) |
7122 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007123
7124 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03007125 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
7126 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007127 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007128}
7129
Ville Syrjälä712bf362016-10-31 22:37:23 +02007130static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007131{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007132 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03007133 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
7134
7135 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7136 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7137 }
7138}
7139
Imre Deak450174f2016-05-03 15:54:21 +03007140static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
7141 int general_prio_credits,
7142 int high_prio_credits)
7143{
7144 u32 misccpctl;
7145
7146 /* WaTempDisableDOPClkGating:bdw */
7147 misccpctl = I915_READ(GEN7_MISCCPCTL);
7148 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
7149
7150 I915_WRITE(GEN8_L3SQCREG1,
7151 L3_GENERAL_PRIO_CREDITS(general_prio_credits) |
7152 L3_HIGH_PRIO_CREDITS(high_prio_credits));
7153
7154 /*
7155 * Wait at least 100 clocks before re-enabling clock gating.
7156 * See the definition of L3SQCREG1 in BSpec.
7157 */
7158 POSTING_READ(GEN8_L3SQCREG1);
7159 udelay(1);
7160 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
7161}
7162
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007163static void kabylake_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007164{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007165 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007166
7167 /* WaDisableSDEUnitClockGating:kbl */
7168 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7169 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7170 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03007171
7172 /* WaDisableGamClockGating:kbl */
7173 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7174 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7175 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007176
7177 /* WaFbcNukeOnHostModify:kbl */
7178 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7179 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007180}
7181
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007182static void skylake_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007183{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007184 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03007185
7186 /* WAC6entrylatency:skl */
7187 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
7188 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007189
7190 /* WaFbcNukeOnHostModify:skl */
7191 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7192 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007193}
7194
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007195static void broadwell_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007196{
Damien Lespiau07d27e22014-03-03 17:31:46 +00007197 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007198
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007199 ilk_init_lp_watermarks(dev_priv);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007200
Ben Widawskyab57fff2013-12-12 15:28:04 -08007201 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007202 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007203
Ben Widawskyab57fff2013-12-12 15:28:04 -08007204 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007205 I915_WRITE(CHICKEN_PAR1_1,
7206 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
7207
Ben Widawskyab57fff2013-12-12 15:28:04 -08007208 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01007209 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00007210 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02007211 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02007212 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007213 }
Ben Widawsky63801f22013-12-12 17:26:03 -08007214
Ben Widawskyab57fff2013-12-12 15:28:04 -08007215 /* WaVSRefCountFullforceMissDisable:bdw */
7216 /* WaDSRefCountFullforceMissDisable:bdw */
7217 I915_WRITE(GEN7_FF_THREAD_MODE,
7218 I915_READ(GEN7_FF_THREAD_MODE) &
7219 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02007220
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02007221 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7222 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02007223
7224 /* WaDisableSDEUnitClockGating:bdw */
7225 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7226 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00007227
Imre Deak450174f2016-05-03 15:54:21 +03007228 /* WaProgramL3SqcReg1Default:bdw */
7229 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03007230
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007231 /*
7232 * WaGttCachingOffByDefault:bdw
7233 * GTT cache may not work with big pages, so if those
7234 * are ever enabled GTT cache may need to be disabled.
7235 */
7236 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
7237
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03007238 /* WaKVMNotificationOnConfigChange:bdw */
7239 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
7240 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
7241
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007242 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00007243
7244 /* WaDisableDopClockGating:bdw
7245 *
7246 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
7247 * clock gating.
7248 */
7249 I915_WRITE(GEN6_UCGCTL1,
7250 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007251}
7252
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007253static void haswell_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007254{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007255 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007256
Francisco Jerezf3fc4882013-10-02 15:53:16 -07007257 /* L3 caching of data atomics doesn't work -- disable it. */
7258 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
7259 I915_WRITE(HSW_ROW_CHICKEN3,
7260 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
7261
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007262 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007263 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7264 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7265 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7266
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02007267 /* WaVSRefCountFullforceMissDisable:hsw */
7268 I915_WRITE(GEN7_FF_THREAD_MODE,
7269 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007270
Akash Goel4e046322014-04-04 17:14:38 +05307271 /* WaDisable_RenderCache_OperationalFlush:hsw */
7272 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7273
Chia-I Wufe27c602014-01-28 13:29:33 +08007274 /* enable HiZ Raw Stall Optimization */
7275 I915_WRITE(CACHE_MODE_0_GEN7,
7276 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7277
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007278 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007279 I915_WRITE(CACHE_MODE_1,
7280 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007281
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007282 /*
7283 * BSpec recommends 8x4 when MSAA is used,
7284 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007285 *
7286 * Note that PS/WM thread counts depend on the WIZ hashing
7287 * disable bit, which we don't touch here, but it's good
7288 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007289 */
7290 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007291 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007292
Kenneth Graunke94411592014-12-31 16:23:00 -08007293 /* WaSampleCChickenBitEnable:hsw */
7294 I915_WRITE(HALF_SLICE_CHICKEN3,
7295 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7296
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007297 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007298 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7299
Paulo Zanoni90a88642013-05-03 17:23:45 -03007300 /* WaRsPkgCStateDisplayPMReq:hsw */
7301 I915_WRITE(CHICKEN_PAR1_1,
7302 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007303
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007304 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007305}
7306
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007307static void ivybridge_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007308{
Ben Widawsky20848222012-05-04 18:58:59 -07007309 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007310
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007311 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007312
Damien Lespiau231e54f2012-10-19 17:55:41 +01007313 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007314
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007315 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007316 I915_WRITE(_3D_CHICKEN3,
7317 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7318
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007319 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007320 I915_WRITE(IVB_CHICKEN3,
7321 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7322 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7323
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007324 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007325 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07007326 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7327 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007328
Akash Goel4e046322014-04-04 17:14:38 +05307329 /* WaDisable_RenderCache_OperationalFlush:ivb */
7330 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7331
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007332 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007333 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7334 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7335
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007336 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007337 I915_WRITE(GEN7_L3CNTLREG1,
7338 GEN7_WA_FOR_GEN7_L3_CONTROL);
7339 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007340 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007341 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07007342 I915_WRITE(GEN7_ROW_CHICKEN2,
7343 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007344 else {
7345 /* must write both registers */
7346 I915_WRITE(GEN7_ROW_CHICKEN2,
7347 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007348 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7349 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007350 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007351
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007352 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007353 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7354 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7355
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007356 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007357 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007358 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007359 */
7360 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007361 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007362
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007363 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007364 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7365 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7366 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7367
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007368 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007369
7370 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007371
Chris Wilson22721342014-03-04 09:41:43 +00007372 if (0) { /* causes HiZ corruption on ivb:gt1 */
7373 /* enable HiZ Raw Stall Optimization */
7374 I915_WRITE(CACHE_MODE_0_GEN7,
7375 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7376 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007377
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007378 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007379 I915_WRITE(CACHE_MODE_1,
7380 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007381
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007382 /*
7383 * BSpec recommends 8x4 when MSAA is used,
7384 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007385 *
7386 * Note that PS/WM thread counts depend on the WIZ hashing
7387 * disable bit, which we don't touch here, but it's good
7388 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007389 */
7390 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007391 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007392
Ben Widawsky20848222012-05-04 18:58:59 -07007393 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7394 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7395 snpcr |= GEN6_MBC_SNPCR_MED;
7396 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007397
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007398 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007399 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007400
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007401 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007402}
7403
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007404static void valleyview_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007405{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007406 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007407 I915_WRITE(_3D_CHICKEN3,
7408 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7409
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007410 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007411 I915_WRITE(IVB_CHICKEN3,
7412 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7413 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7414
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007415 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007416 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007417 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007418 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7419 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007420
Akash Goel4e046322014-04-04 17:14:38 +05307421 /* WaDisable_RenderCache_OperationalFlush:vlv */
7422 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7423
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007424 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007425 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7426 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7427
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007428 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007429 I915_WRITE(GEN7_ROW_CHICKEN2,
7430 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7431
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007432 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007433 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7434 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7435 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7436
Ville Syrjälä46680e02014-01-22 21:33:01 +02007437 gen7_setup_fixed_func_scheduler(dev_priv);
7438
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007439 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007440 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007441 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007442 */
7443 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007444 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007445
Akash Goelc98f5062014-03-24 23:00:07 +05307446 /* WaDisableL3Bank2xClockGate:vlv
7447 * Disabling L3 clock gating- MMIO 940c[25] = 1
7448 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7449 I915_WRITE(GEN7_UCGCTL4,
7450 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007451
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007452 /*
7453 * BSpec says this must be set, even though
7454 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7455 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007456 I915_WRITE(CACHE_MODE_1,
7457 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007458
7459 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007460 * BSpec recommends 8x4 when MSAA is used,
7461 * however in practice 16x4 seems fastest.
7462 *
7463 * Note that PS/WM thread counts depend on the WIZ hashing
7464 * disable bit, which we don't touch here, but it's good
7465 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7466 */
7467 I915_WRITE(GEN7_GT_MODE,
7468 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7469
7470 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007471 * WaIncreaseL3CreditsForVLVB0:vlv
7472 * This is the hardware default actually.
7473 */
7474 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7475
7476 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007477 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007478 * Disable clock gating on th GCFG unit to prevent a delay
7479 * in the reporting of vblank events.
7480 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007481 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007482}
7483
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007484static void cherryview_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007485{
Ville Syrjälä232ce332014-04-09 13:28:35 +03007486 /* WaVSRefCountFullforceMissDisable:chv */
7487 /* WaDSRefCountFullforceMissDisable:chv */
7488 I915_WRITE(GEN7_FF_THREAD_MODE,
7489 I915_READ(GEN7_FF_THREAD_MODE) &
7490 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007491
7492 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7493 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7494 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007495
7496 /* WaDisableCSUnitClockGating:chv */
7497 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7498 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007499
7500 /* WaDisableSDEUnitClockGating:chv */
7501 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7502 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007503
7504 /*
Imre Deak450174f2016-05-03 15:54:21 +03007505 * WaProgramL3SqcReg1Default:chv
7506 * See gfxspecs/Related Documents/Performance Guide/
7507 * LSQC Setting Recommendations.
7508 */
7509 gen8_set_l3sqc_credits(dev_priv, 38, 2);
7510
7511 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007512 * GTT cache may not work with big pages, so if those
7513 * are ever enabled GTT cache may need to be disabled.
7514 */
7515 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007516}
7517
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007518static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007519{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007520 uint32_t dspclk_gate;
7521
7522 I915_WRITE(RENCLK_GATE_D1, 0);
7523 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7524 GS_UNIT_CLOCK_GATE_DISABLE |
7525 CL_UNIT_CLOCK_GATE_DISABLE);
7526 I915_WRITE(RAMCLK_GATE_D, 0);
7527 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7528 OVRUNIT_CLOCK_GATE_DISABLE |
7529 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007530 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007531 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7532 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007533
7534 /* WaDisableRenderCachePipelinedFlush */
7535 I915_WRITE(CACHE_MODE_0,
7536 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007537
Akash Goel4e046322014-04-04 17:14:38 +05307538 /* WaDisable_RenderCache_OperationalFlush:g4x */
7539 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7540
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007541 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007542}
7543
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007544static void crestline_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007545{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007546 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7547 I915_WRITE(RENCLK_GATE_D2, 0);
7548 I915_WRITE(DSPCLK_GATE_D, 0);
7549 I915_WRITE(RAMCLK_GATE_D, 0);
7550 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007551 I915_WRITE(MI_ARB_STATE,
7552 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307553
7554 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7555 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007556}
7557
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007558static void broadwater_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007559{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007560 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7561 I965_RCC_CLOCK_GATE_DISABLE |
7562 I965_RCPB_CLOCK_GATE_DISABLE |
7563 I965_ISC_CLOCK_GATE_DISABLE |
7564 I965_FBC_CLOCK_GATE_DISABLE);
7565 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007566 I915_WRITE(MI_ARB_STATE,
7567 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307568
7569 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7570 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007571}
7572
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007573static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007574{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007575 u32 dstate = I915_READ(D_STATE);
7576
7577 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7578 DSTATE_DOT_CLOCK_GATING;
7579 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007580
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007581 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01007582 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007583
7584 /* IIR "flip pending" means done if this bit is set */
7585 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007586
7587 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007588 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007589
7590 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7591 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007592
7593 I915_WRITE(MI_ARB_STATE,
7594 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007595}
7596
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007597static void i85x_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 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007600
7601 /* interrupts should cause a wake up from C3 */
7602 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7603 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007604
7605 I915_WRITE(MEM_MODE,
7606 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007607}
7608
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007609static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007610{
Ville Syrjälä10383922014-08-15 01:21:54 +03007611 I915_WRITE(MEM_MODE,
7612 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7613 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007614}
7615
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007616void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007617{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007618 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007619}
7620
Ville Syrjälä712bf362016-10-31 22:37:23 +02007621void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007622{
Ville Syrjälä712bf362016-10-31 22:37:23 +02007623 if (HAS_PCH_LPT(dev_priv))
7624 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03007625}
7626
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007627static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02007628{
7629 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
7630}
7631
7632/**
7633 * intel_init_clock_gating_hooks - setup the clock gating hooks
7634 * @dev_priv: device private
7635 *
7636 * Setup the hooks that configure which clocks of a given platform can be
7637 * gated and also apply various GT and display specific workarounds for these
7638 * platforms. Note that some GT specific workarounds are applied separately
7639 * when GPU contexts or batchbuffers start their execution.
7640 */
7641void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7642{
7643 if (IS_SKYLAKE(dev_priv))
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007644 dev_priv->display.init_clock_gating = skylake_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007645 else if (IS_KABYLAKE(dev_priv))
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007646 dev_priv->display.init_clock_gating = kabylake_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007647 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007648 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007649 else if (IS_GEMINILAKE(dev_priv))
7650 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007651 else if (IS_BROADWELL(dev_priv))
7652 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
7653 else if (IS_CHERRYVIEW(dev_priv))
7654 dev_priv->display.init_clock_gating = cherryview_init_clock_gating;
7655 else if (IS_HASWELL(dev_priv))
7656 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
7657 else if (IS_IVYBRIDGE(dev_priv))
7658 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
7659 else if (IS_VALLEYVIEW(dev_priv))
7660 dev_priv->display.init_clock_gating = valleyview_init_clock_gating;
7661 else if (IS_GEN6(dev_priv))
7662 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
7663 else if (IS_GEN5(dev_priv))
7664 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
7665 else if (IS_G4X(dev_priv))
7666 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007667 else if (IS_I965GM(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007668 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007669 else if (IS_I965G(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007670 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7671 else if (IS_GEN3(dev_priv))
7672 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7673 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7674 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7675 else if (IS_GEN2(dev_priv))
7676 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7677 else {
7678 MISSING_CASE(INTEL_DEVID(dev_priv));
7679 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7680 }
7681}
7682
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007683/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007684void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007685{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007686 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007687
Daniel Vetterc921aba2012-04-26 23:28:17 +02007688 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007689 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007690 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007691 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007692 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02007693
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007694 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007695 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007696 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01007697 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01007698 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07007699 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007700 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007701 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007702
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007703 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007704 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007705 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007706 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007707 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007708 dev_priv->display.compute_intermediate_wm =
7709 ilk_compute_intermediate_wm;
7710 dev_priv->display.initial_watermarks =
7711 ilk_initial_watermarks;
7712 dev_priv->display.optimize_watermarks =
7713 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007714 } else {
7715 DRM_DEBUG_KMS("Failed to read display plane latency. "
7716 "Disable CxSR\n");
7717 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02007718 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007719 vlv_setup_wm_latency(dev_priv);
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007720 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007721 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007722 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007723 dev_priv->is_ddr3,
7724 dev_priv->fsb_freq,
7725 dev_priv->mem_freq)) {
7726 DRM_INFO("failed to find known CxSR latency "
7727 "(found ddr%s fsb freq %d, mem freq %d), "
7728 "disabling CxSR\n",
7729 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7730 dev_priv->fsb_freq, dev_priv->mem_freq);
7731 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007732 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007733 dev_priv->display.update_wm = NULL;
7734 } else
7735 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01007736 } else if (IS_G4X(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007737 dev_priv->display.update_wm = g4x_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007738 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007739 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007740 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007741 dev_priv->display.update_wm = i9xx_update_wm;
7742 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007743 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007744 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007745 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007746 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007747 } else {
7748 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007749 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007750 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007751 } else {
7752 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007753 }
7754}
7755
Lyude87660502016-08-17 15:55:53 -04007756static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
7757{
7758 uint32_t flags =
7759 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7760
7761 switch (flags) {
7762 case GEN6_PCODE_SUCCESS:
7763 return 0;
7764 case GEN6_PCODE_UNIMPLEMENTED_CMD:
7765 case GEN6_PCODE_ILLEGAL_CMD:
7766 return -ENXIO;
7767 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01007768 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04007769 return -EOVERFLOW;
7770 case GEN6_PCODE_TIMEOUT:
7771 return -ETIMEDOUT;
7772 default:
7773 MISSING_CASE(flags)
7774 return 0;
7775 }
7776}
7777
7778static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
7779{
7780 uint32_t flags =
7781 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7782
7783 switch (flags) {
7784 case GEN6_PCODE_SUCCESS:
7785 return 0;
7786 case GEN6_PCODE_ILLEGAL_CMD:
7787 return -ENXIO;
7788 case GEN7_PCODE_TIMEOUT:
7789 return -ETIMEDOUT;
7790 case GEN7_PCODE_ILLEGAL_DATA:
7791 return -EINVAL;
7792 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
7793 return -EOVERFLOW;
7794 default:
7795 MISSING_CASE(flags);
7796 return 0;
7797 }
7798}
7799
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007800int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007801{
Lyude87660502016-08-17 15:55:53 -04007802 int status;
7803
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007804 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007805
Chris Wilson3f5582d2016-06-30 15:32:45 +01007806 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7807 * use te fw I915_READ variants to reduce the amount of work
7808 * required when reading/writing.
7809 */
7810
7811 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007812 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7813 return -EAGAIN;
7814 }
7815
Chris Wilson3f5582d2016-06-30 15:32:45 +01007816 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
7817 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
7818 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007819
Chris Wilson3f5582d2016-06-30 15:32:45 +01007820 if (intel_wait_for_register_fw(dev_priv,
7821 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7822 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007823 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7824 return -ETIMEDOUT;
7825 }
7826
Chris Wilson3f5582d2016-06-30 15:32:45 +01007827 *val = I915_READ_FW(GEN6_PCODE_DATA);
7828 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007829
Lyude87660502016-08-17 15:55:53 -04007830 if (INTEL_GEN(dev_priv) > 6)
7831 status = gen7_check_mailbox_status(dev_priv);
7832 else
7833 status = gen6_check_mailbox_status(dev_priv);
7834
7835 if (status) {
7836 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed: %d\n",
7837 status);
7838 return status;
7839 }
7840
Ben Widawsky42c05262012-09-26 10:34:00 -07007841 return 0;
7842}
7843
Chris Wilson3f5582d2016-06-30 15:32:45 +01007844int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04007845 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007846{
Lyude87660502016-08-17 15:55:53 -04007847 int status;
7848
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007849 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007850
Chris Wilson3f5582d2016-06-30 15:32:45 +01007851 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7852 * use te fw I915_READ variants to reduce the amount of work
7853 * required when reading/writing.
7854 */
7855
7856 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007857 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7858 return -EAGAIN;
7859 }
7860
Chris Wilson3f5582d2016-06-30 15:32:45 +01007861 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02007862 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01007863 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007864
Chris Wilson3f5582d2016-06-30 15:32:45 +01007865 if (intel_wait_for_register_fw(dev_priv,
7866 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7867 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007868 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7869 return -ETIMEDOUT;
7870 }
7871
Chris Wilson3f5582d2016-06-30 15:32:45 +01007872 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007873
Lyude87660502016-08-17 15:55:53 -04007874 if (INTEL_GEN(dev_priv) > 6)
7875 status = gen7_check_mailbox_status(dev_priv);
7876 else
7877 status = gen6_check_mailbox_status(dev_priv);
7878
7879 if (status) {
7880 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed: %d\n",
7881 status);
7882 return status;
7883 }
7884
Ben Widawsky42c05262012-09-26 10:34:00 -07007885 return 0;
7886}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007887
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007888static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
7889 u32 request, u32 reply_mask, u32 reply,
7890 u32 *status)
7891{
7892 u32 val = request;
7893
7894 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
7895
7896 return *status || ((val & reply_mask) == reply);
7897}
7898
7899/**
7900 * skl_pcode_request - send PCODE request until acknowledgment
7901 * @dev_priv: device private
7902 * @mbox: PCODE mailbox ID the request is targeted for
7903 * @request: request ID
7904 * @reply_mask: mask used to check for request acknowledgment
7905 * @reply: value used to check for request acknowledgment
7906 * @timeout_base_ms: timeout for polling with preemption enabled
7907 *
7908 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
Imre Deak01299362017-02-24 16:32:10 +02007909 * reports an error or an overall timeout of @timeout_base_ms+50 ms expires.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007910 * The request is acknowledged once the PCODE reply dword equals @reply after
7911 * applying @reply_mask. Polling is first attempted with preemption enabled
Imre Deak01299362017-02-24 16:32:10 +02007912 * for @timeout_base_ms and if this times out for another 50 ms with
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007913 * preemption disabled.
7914 *
7915 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
7916 * other error as reported by PCODE.
7917 */
7918int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
7919 u32 reply_mask, u32 reply, int timeout_base_ms)
7920{
7921 u32 status;
7922 int ret;
7923
7924 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
7925
7926#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
7927 &status)
7928
7929 /*
7930 * Prime the PCODE by doing a request first. Normally it guarantees
7931 * that a subsequent request, at most @timeout_base_ms later, succeeds.
7932 * _wait_for() doesn't guarantee when its passed condition is evaluated
7933 * first, so send the first request explicitly.
7934 */
7935 if (COND) {
7936 ret = 0;
7937 goto out;
7938 }
7939 ret = _wait_for(COND, timeout_base_ms * 1000, 10);
7940 if (!ret)
7941 goto out;
7942
7943 /*
7944 * The above can time out if the number of requests was low (2 in the
7945 * worst case) _and_ PCODE was busy for some reason even after a
7946 * (queued) request and @timeout_base_ms delay. As a workaround retry
7947 * the poll with preemption disabled to maximize the number of
Imre Deak01299362017-02-24 16:32:10 +02007948 * requests. Increase the timeout from @timeout_base_ms to 50ms to
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007949 * account for interrupts that could reduce the number of these
Imre Deak01299362017-02-24 16:32:10 +02007950 * requests, and for any quirks of the PCODE firmware that delays
7951 * the request completion.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007952 */
7953 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
7954 WARN_ON_ONCE(timeout_base_ms > 3);
7955 preempt_disable();
Imre Deak01299362017-02-24 16:32:10 +02007956 ret = wait_for_atomic(COND, 50);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007957 preempt_enable();
7958
7959out:
7960 return ret ? ret : status;
7961#undef COND
7962}
7963
Ville Syrjälädd06f882014-11-10 22:55:12 +02007964static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7965{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007966 /*
7967 * N = val - 0xb7
7968 * Slow = Fast = GPLL ref * N
7969 */
7970 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007971}
7972
Fengguang Wub55dd642014-07-12 11:21:39 +02007973static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007974{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007975 return DIV_ROUND_CLOSEST(1000 * val, dev_priv->rps.gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007976}
7977
Fengguang Wub55dd642014-07-12 11:21:39 +02007978static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307979{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007980 /*
7981 * N = val / 2
7982 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
7983 */
7984 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307985}
7986
Fengguang Wub55dd642014-07-12 11:21:39 +02007987static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307988{
Ville Syrjälä1c147622014-08-18 14:42:43 +03007989 /* CHV needs even values */
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007990 return DIV_ROUND_CLOSEST(2 * 1000 * val, dev_priv->rps.gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05307991}
7992
Ville Syrjälä616bc822015-01-23 21:04:25 +02007993int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
7994{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007995 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02007996 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
7997 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03007998 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02007999 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008000 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008001 return byt_gpu_freq(dev_priv, val);
8002 else
8003 return val * GT_FREQUENCY_MULTIPLIER;
8004}
8005
Ville Syrjälä616bc822015-01-23 21:04:25 +02008006int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
8007{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008008 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008009 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
8010 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008011 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008012 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008013 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008014 return byt_freq_opcode(dev_priv, val);
8015 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008016 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05308017}
8018
Chris Wilson6ad790c2015-04-07 16:20:31 +01008019struct request_boost {
8020 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02008021 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008022};
8023
8024static void __intel_rps_boost_work(struct work_struct *work)
8025{
8026 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01008027 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008028
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008029 if (!i915_gem_request_completed(req))
Chris Wilsonc0336662016-05-06 15:40:21 +01008030 gen6_rps_boost(req->i915, NULL, req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008031
Chris Wilsone8a261e2016-07-20 13:31:49 +01008032 i915_gem_request_put(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008033 kfree(boost);
8034}
8035
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008036void intel_queue_rps_boost_for_request(struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008037{
8038 struct request_boost *boost;
8039
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008040 if (req == NULL || INTEL_GEN(req->i915) < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008041 return;
8042
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008043 if (i915_gem_request_completed(req))
Chris Wilsone61b9952015-04-27 13:41:24 +01008044 return;
8045
Chris Wilson6ad790c2015-04-07 16:20:31 +01008046 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
8047 if (boost == NULL)
8048 return;
8049
Chris Wilsone8a261e2016-07-20 13:31:49 +01008050 boost->req = i915_gem_request_get(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008051
8052 INIT_WORK(&boost->work, __intel_rps_boost_work);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008053 queue_work(req->i915->wq, &boost->work);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008054}
8055
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00008056void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01008057{
Daniel Vetterf742a552013-12-06 10:17:53 +01008058 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01008059 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01008060
Chris Wilson54b4f682016-07-21 21:16:19 +01008061 INIT_DELAYED_WORK(&dev_priv->rps.autoenable_work,
8062 __intel_autoenable_gt_powersave);
Chris Wilson1854d5c2015-04-07 16:20:32 +01008063 INIT_LIST_HEAD(&dev_priv->rps.clients);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03008064
Paulo Zanoni33688d92014-03-07 20:08:19 -03008065 dev_priv->pm.suspended = false;
Imre Deak1f814da2015-12-16 02:52:19 +02008066 atomic_set(&dev_priv->pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01008067}